Broken Link Checker - Version 1.10.5

Version Description

  • Security: Fixed an XSS vulnerability that could be used by Editors and Administrators to inject arbitrary HTML/JS code in the "Tools -> Broken Links" page.
  • Other minor security fixes.
  • Tested on WordPress 4.2 beta.
Download this release

Release Info

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

Code changes from version 1.10.4 to 1.10.5

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.10.4
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.10.5
7
  Author: Janis Elsts
8
  Author URI: http://w-shadow.com/
9
  Text Domain: broken-link-checker
core/core.php CHANGED
@@ -109,6 +109,7 @@ class wsBrokenLinkChecker {
109
  if ( !$this->conf->options['run_in_dashboard'] ){
110
  return;
111
  }
 
112
  ?>
113
  <!-- wsblc admin footer -->
114
  <script type='text/javascript'>
@@ -119,7 +120,8 @@ class wsBrokenLinkChecker {
119
  $.post(
120
  "<?php echo admin_url('admin-ajax.php'); ?>",
121
  {
122
- 'action' : 'blc_work'
 
123
  }
124
  );
125
  }
@@ -1593,7 +1595,7 @@ class wsBrokenLinkChecker {
1593
  //Create a custom filter!
1594
  check_admin_referer( 'create-custom-filter' );
1595
  $msg_class = 'updated';
1596
-
1597
  //Filter name must be set
1598
  if ( empty($_POST['name']) ){
1599
  $message = __("You must enter a filter name!", 'broken-link-checker');
@@ -1604,12 +1606,13 @@ class wsBrokenLinkChecker {
1604
  $msg_class = 'error';
1605
  } else {
1606
  //Save the new filter
 
1607
  $blc_link_query = blcLinkQuery::getInstance();
1608
- $filter_id = $blc_link_query->create_custom_filter($_POST['name'], $_POST['params']);
1609
 
1610
  if ( $filter_id ){
1611
  //Saved
1612
- $message = sprintf( __('Filter "%s" created', 'broken-link-checker'), $_POST['name']);
1613
  //A little hack to make the filter active immediately
1614
  $_GET['filter_id'] = $filter_id;
1615
  } else {
@@ -2052,6 +2055,8 @@ class wsBrokenLinkChecker {
2052
 
2053
  $message = '';
2054
  $msg_class = 'updated';
 
 
2055
 
2056
  if ( count($selected_links) > 0 ){
2057
  $q = "UPDATE {$wpdb->prefix}blc_links
@@ -2892,6 +2897,8 @@ class wsBrokenLinkChecker {
2892
  }
2893
 
2894
  function ajax_work(){
 
 
2895
  //Run the worker function
2896
  $this->work();
2897
  die();
109
  if ( !$this->conf->options['run_in_dashboard'] ){
110
  return;
111
  }
112
+ $nonce = wp_create_nonce('blc_work');
113
  ?>
114
  <!-- wsblc admin footer -->
115
  <script type='text/javascript'>
120
  $.post(
121
  "<?php echo admin_url('admin-ajax.php'); ?>",
122
  {
123
+ 'action' : 'blc_work',
124
+ '_ajax_nonce' : '<?php echo esc_js($nonce); ?>'
125
  }
126
  );
127
  }
1595
  //Create a custom filter!
1596
  check_admin_referer( 'create-custom-filter' );
1597
  $msg_class = 'updated';
1598
+
1599
  //Filter name must be set
1600
  if ( empty($_POST['name']) ){
1601
  $message = __("You must enter a filter name!", 'broken-link-checker');
1606
  $msg_class = 'error';
1607
  } else {
1608
  //Save the new filter
1609
+ $name = strip_tags(strval($_POST['name']));
1610
  $blc_link_query = blcLinkQuery::getInstance();
1611
+ $filter_id = $blc_link_query->create_custom_filter($name, $_POST['params']);
1612
 
1613
  if ( $filter_id ){
1614
  //Saved
1615
+ $message = sprintf( __('Filter "%s" created', 'broken-link-checker'), $name);
1616
  //A little hack to make the filter active immediately
1617
  $_GET['filter_id'] = $filter_id;
1618
  } else {
2055
 
2056
  $message = '';
2057
  $msg_class = 'updated';
2058
+
2059
+ check_admin_referer('bulk-action');
2060
 
2061
  if ( count($selected_links) > 0 ){
2062
  $q = "UPDATE {$wpdb->prefix}blc_links
2897
  }
2898
 
2899
  function ajax_work(){
2900
+ check_ajax_referer('blc_work');
2901
+
2902
  //Run the worker function
2903
  $this->work();
2904
  die();
includes/admin/links-page-js.php CHANGED
@@ -32,7 +32,8 @@ function replaceLinkId(old_id, new_id){
32
 
33
  master.attr('id', 'blc-row-'+new_id);
34
  master.find('.blc-link-id').html(new_id);
35
-
 
36
  var details_row = jQuery('#link-details-'+old_id);
37
  details_row.attr('id', 'link-details-'+new_id);
38
  }
@@ -661,7 +662,7 @@ jQuery(function($){
661
  eval('data = ' + data);
662
 
663
  if ( data && (typeof(data['error']) != 'undefined') ){
664
- //An internal error occured before the link could be edited.
665
  //data.error is an error message.
666
  alert(data.error);
667
  } else {
32
 
33
  master.attr('id', 'blc-row-'+new_id);
34
  master.find('.blc-link-id').html(new_id);
35
+ master.find('th.check-column input[type="checkbox"]').val(new_id);
36
+
37
  var details_row = jQuery('#link-details-'+old_id);
38
  details_row.attr('id', 'link-details-'+new_id);
39
  }
662
  eval('data = ' + data);
663
 
664
  if ( data && (typeof(data['error']) != 'undefined') ){
665
+ //An internal error occurred before the link could be edited.
666
  //data.error is an error message.
667
  alert(data.error);
668
  } else {
includes/link-query.php CHANGED
@@ -703,9 +703,15 @@ class blcLinkQuery {
703
  $class = 'class="current"';
704
  $number_class .= ' current-link-count';
705
  }
706
-
707
- $items[] = "<li><a href='tools.php?page=view-broken-links&filter_id=$filter' {$class}>
708
- {$data['name']}</a> <span class='count'>(<span class='$number_class'>{$data['count']}</span>)</span>";
 
 
 
 
 
 
709
  }
710
  echo implode(' |</li>', $items);
711
 
703
  $class = 'class="current"';
704
  $number_class .= ' current-link-count';
705
  }
706
+
707
+ $items[] = sprintf(
708
+ "<li><a href='tools.php?page=view-broken-links&filter_id=%s' %s>%s</a> <span class='count'>(<span class='%s'>%d</span>)</span>",
709
+ esc_attr($filter),
710
+ $class,
711
+ htmlentities($data['name']),
712
+ $number_class,
713
+ $data['count']
714
+ );
715
  }
716
  echo implode(' |</li>', $items);
717
 
includes/links.php CHANGED
@@ -837,8 +837,15 @@ class blcLink {
837
  __("This link is not a redirect", 'broken-link-checker')
838
  );
839
  }
 
 
 
 
 
 
 
840
 
841
- return $this->edit($this->final_url);
842
  }
843
 
844
  /**
837
  __("This link is not a redirect", 'broken-link-checker')
838
  );
839
  }
840
+
841
+ //Preserve the existing #anchor if the redirect doesn't include one.
842
+ $new_url = $this->final_url;
843
+ $anchor = @parse_url($this->url, PHP_URL_FRAGMENT);
844
+ if ( !empty($anchor) && (strrpos($new_url, '#') === false) ) {
845
+ $new_url .= '#' . $anchor;
846
+ }
847
 
848
+ return $this->edit($new_url);
849
  }
850
 
851
  /**
includes/survey.php CHANGED
@@ -36,7 +36,7 @@ function blc_display_survey_notice(){
36
 
37
  $msg = sprintf(
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
  );
@@ -49,7 +49,7 @@ function blc_display_survey_notice(){
49
  jQuery(function($){
50
  $('#blc-take-survey-link').click(function(){
51
  $('.blc-survey-notice').hide('fast');
52
- $.get('<?php echo esc_js(add_query_arg('dismiss-blc-survey', 1, admin_url())); ?>');
53
  });
54
  });
55
  </script>
36
 
37
  $msg = sprintf(
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" id="blc-dismiss-survey-notice">Hide this notice</a>',
40
  $survey_url,
41
  esc_attr(add_query_arg('dismiss-blc-survey', 1))
42
  );
49
  jQuery(function($){
50
  $('#blc-take-survey-link').click(function(){
51
  $('.blc-survey-notice').hide('fast');
52
+ $.get($('#blc-dismiss-survey-notice').attr('href'));
53
  });
54
  });
55
  </script>
languages/broken-link-checker-he_IL.mo CHANGED
Binary file
languages/broken-link-checker-he_IL.po CHANGED
@@ -1,2326 +1,2486 @@
 
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Broken Link Checker v1.9.3\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2014-03-27 21:31:48+0000\n"
7
- "Last-Translator: admin <eitan@caspi.org.il>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: CSL v1.x\n"
14
- "X-Poedit-Language: Hebrew\n"
15
- "X-Poedit-Country: ISRAEL\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
- "X-Poedit-Basepath: ../\n"
19
- "X-Poedit-Bookmarks: \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:44
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:572
77
- #@ broken-link-checker
78
- msgid "Settings saved."
79
- msgstr "ההגדרות נשמרו"
 
 
80
 
81
- #: core/core.php:578
82
- #@ broken-link-checker
83
- msgid "Thank you for your donation!"
84
- msgstr "תודה לך על תרומתך!"
 
 
85
 
86
- #: core/core.php:586
87
- #@ broken-link-checker
88
- msgid "Complete site recheck started."
89
- msgstr "החלה בדיקה חוזרת של האתר."
 
 
90
 
91
- #: core/core.php:595
92
- #@ broken-link-checker
93
- msgid "Details"
94
- msgstr "פרטים"
 
 
95
 
96
- #: core/core.php:609
97
- #@ broken-link-checker
98
- msgid "General"
99
- msgstr "כללי"
 
 
100
 
101
- #: core/core.php:610
102
- #@ broken-link-checker
103
- msgid "Look For Links In"
104
- msgstr "חיפוש קישורים על פי:"
 
 
105
 
106
- #: core/core.php:611
107
- #@ broken-link-checker
108
- msgid "Which Links To Check"
109
- msgstr "סוגי קישורים שיבדקו"
 
 
110
 
111
- #: core/core.php:612
112
- #@ broken-link-checker
113
- msgid "Protocols & APIs"
114
- msgstr "פרוטוקולים ו-APIs"
 
 
115
 
116
- #: core/core.php:613
117
- #@ broken-link-checker
118
- msgid "Advanced"
119
- msgstr "הגדרות מתקדמות"
 
 
120
 
121
- #: core/core.php:628
122
- #@ broken-link-checker
123
- msgid "Broken Link Checker Options"
124
- msgstr "הגדרות בודק קישורים שבורים"
 
 
125
 
126
- #: core/core.php:670
127
- #: includes/admin/table-printer.php:203
128
- #@ broken-link-checker
129
- msgid "Status"
130
- msgstr "סטטוס"
 
131
 
132
- #: core/core.php:672
133
- #: includes/admin/options-page-js.php:56
134
- #@ broken-link-checker
135
- msgid "Show debug info"
136
- msgstr "הצגת מידע מערכת"
 
137
 
138
- #: core/core.php:700
139
- #@ broken-link-checker
140
- msgid "Check each link"
141
- msgstr "בדיקה חוזרת של כל הקישורים"
 
 
142
 
143
- #: core/core.php:705
144
- #, php-format
145
- #@ broken-link-checker
146
- msgid "Every %s hours"
147
- msgstr "תבוצע בדיקה כל %s שעות"
 
148
 
149
- #: core/core.php:714
150
- #@ broken-link-checker
151
- msgid "Existing links will be checked this often. New links will usually be checked ASAP."
152
- msgstr "קישורים קיימים יבדקו בתכיפות הזו. קישורים חדשים בדרך כלל יבדקו בהקדם האפשרי.<br>(ערך ברירת מחדל: 72. ערך מינימום: 1. ערך מקסימום: 99999. אפס (0) אינו ערך מותר)"
 
 
153
 
154
- #: core/core.php:721
155
- #@ broken-link-checker
156
- msgid "E-mail notifications"
157
- msgstr "התראות בדואר אלקטרוני"
 
 
158
 
159
- #: core/core.php:727
160
- #@ broken-link-checker
161
- msgid "Send me e-mail notifications about newly detected broken links"
162
- msgstr "משלוח התראות בדואר אלקטרוני אודות קישורים שבורים חדשים שנמצאו"
 
 
163
 
164
- #: core/core.php:735
165
- #@ broken-link-checker
166
- msgid "Send authors e-mail notifications about broken links in their posts"
167
- msgstr "מחברי פוסטים יקבלו התראות בדואר אלקטרוני אודות קישורים שבורים בפוסטים שלהם"
 
 
168
 
169
- #: core/core.php:742
170
- #@ broken-link-checker
171
- msgid "Notification e-mail address"
172
- msgstr "כתובת הדואר האלקטרוני למשלוח התראות"
 
 
173
 
174
- #: core/core.php:754
175
- #@ broken-link-checker
176
- msgid "Leave empty to use the e-mail address specified in Settings &rarr; General."
177
- msgstr "השאירו שדה זה ריק אם ברצונכם שההתראות ישלחו לכתובת הדואר האלקטרוני הראשית של האתר, זו הרשומה בהגדרות הכלליות של וורדפרס (הגדרות -> כללי)"
 
 
178
 
179
- #: core/core.php:761
180
- #@ broken-link-checker
181
- msgid "Link tweaks"
182
- msgstr "עיצוב טקסט הקישור<br>(כאן ניתן לציין עיצוב מבוסס CSS לטקסט של קישורים על פי הסטטוס שלהם. למשל קו חוצה/מוחק על טקסט של קישור שבור, כך שהקוראים יבינו שהקישור שבור מבלי שיצטרכו להקליק על הקישור)"
 
183
 
184
- #: core/core.php:767
185
- #@ broken-link-checker
186
- msgid "Apply custom formatting to broken links"
187
- msgstr "החלת עיצוב מותאם לטקסט שהקישור שלו שבור"
 
 
188
 
189
- #: core/core.php:771
190
- #: core/core.php:802
191
- #@ broken-link-checker
192
- msgid "Edit CSS"
193
- msgstr "עריכת CSS"
 
194
 
195
- #: core/core.php:787
196
- #, php-format
197
- #@ broken-link-checker
198
- msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
199
- msgstr "דוגמה: \"גנן גידל דגן בגן, <a %s>קישור שבור</a> דגן גדול גדל בגן\"."
200
 
201
- #: core/core.php:790
202
- #: core/core.php:821
203
- #@ broken-link-checker
204
- msgid "Click \"Save Changes\" to update example output."
205
- msgstr "במידה ושיניתם את קוד ה-CSS הקליקו \"שמור שינויים\" בכדי לעדכן את הדוגמה."
206
 
207
- #: core/core.php:798
208
- #@ broken-link-checker
209
- msgid "Apply custom formatting to removed links"
210
- msgstr "החלת עיצוב מותאם לטקסט שהקישור שלו הוסר"
 
 
211
 
212
- #: core/core.php:818
213
- #, php-format
214
- #@ broken-link-checker
215
- msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
216
- msgstr "דוגמה: \"גנן גידל דגן בגן, <span %s>קישור להסרה</span> דגן גדול גדל בגן\"."
 
217
 
218
- #: core/core.php:831
219
- #@ broken-link-checker
220
- msgid "Stop search engines from following broken links"
221
- msgstr "חסימת מנועי חיפוש מלהמשיך אל עמוד היעד של קישור שבור"
 
 
 
 
222
 
223
- #: core/core.php:861
224
- #@ broken-link-checker
225
- msgid "Look for links in"
226
- msgstr "סוגי מקורות הקישורים"
 
 
227
 
228
- #: core/core.php:872
229
- #@ broken-link-checker
230
- msgid "Post statuses"
231
- msgstr "סטטוס של פוסטים"
 
 
232
 
233
- #: core/core.php:905
234
- #@ broken-link-checker
235
- msgid "Link types"
236
- msgstr "סוגי קישורים"
 
 
237
 
238
- #: core/core.php:911
239
- #@ broken-link-checker
240
- msgid "Error : All link parsers missing!"
241
- msgstr "שגיאה: כל רכיבי הניתוח (Parsers) של הקישורים לא נמצאו!"
 
 
242
 
243
- #: core/core.php:918
244
- #@ broken-link-checker
245
- msgid "Exclusion list"
246
- msgstr "רשימת התעלמות (Exclusion)"
 
 
247
 
248
- #: core/core.php:919
249
- #@ broken-link-checker
250
- msgid "Don't check links where the URL contains any of these words (one per line) :"
251
- msgstr "לא ייבדקו קישורים שכתובת האינטרנט שלהם מכילה לפחות את אחת מהמילים הבאות (יש לרשום בכל שורה רק מילה אחת):"
 
 
252
 
253
- #: core/core.php:937
254
- #@ broken-link-checker
255
- msgid "Check links using"
256
- msgstr "בדיקת קישורים בעזרת"
 
 
257
 
258
- #: core/core.php:956
259
- #: includes/links.php:867
260
- #@ broken-link-checker
261
- msgid "Timeout"
262
- msgstr "משך הבדיקה המקסימלי לכל קישור (Timeout)"
 
263
 
264
- #: core/core.php:962
265
- #: core/core.php:1031
266
- #: core/core.php:3019
267
- #, php-format
268
- #@ broken-link-checker
269
- #@ default
270
- msgid "%s seconds"
271
- msgstr "%s שניות"
 
 
 
 
 
272
 
273
- #: core/core.php:971
274
- #@ broken-link-checker
275
- msgid "Links that take longer than this to load will be marked as broken."
276
- msgstr "קישורים שלא שולחים חזרה קוד שגיאה או הפניה אך זמן הטעינה של עמוד היעד שלהם ארוך מערך זה - כנראה בעייתים מסיבה כלשהי ולכן יסומנו כשבורים.<br>(ערך ברירת מחדל: 30. ערך מינימום: 1. ערך מקסימום: 999. אפס (0) אינו ערך מותר)"
 
 
277
 
278
- #: core/core.php:978
279
- #@ broken-link-checker
280
- msgid "Link monitor"
281
- msgstr "תכיפות ניטור הקישורים<br>(שימו לב - אם שתי תיבות הסימון של הגדרה זו יהיו ריקות - התוסף למעשה יפסיק לחלוטין לבדוק קישורים! (אז תשאירו לפחות אחד מסומן))"
 
 
282
 
283
- #: core/core.php:986
284
- #@ broken-link-checker
285
- msgid "Run continuously while the Dashboard is open"
286
- msgstr "ניטור מתמשך כל עוד ממשק הניהול של וורדפרס פתוח על ידי משתמש אחד לפחות (ללא הגבלת ה-\"תפקיד\" (Role) אליו משויך המשתמש - משתמש כלשהו)"
 
 
287
 
288
- #: core/core.php:994
289
- #@ broken-link-checker
290
- msgid "Run hourly in the background"
291
- msgstr "ניטור פעם בשעה ברקע, ללא קשר למצב ממשק הניהול"
 
 
292
 
293
- #: core/core.php:1002
294
- #@ broken-link-checker
295
- msgid "Show the dashboard widget for"
296
- msgstr "הצגת וידג'ט התוסף בעמוד \"לוח בקרה\" רק למשתמשים מסוג"
 
 
 
 
297
 
298
- #: core/core.php:1007
299
- #@ broken-link-checker
300
- msgctxt "dashboard widget visibility"
301
- msgid "Administrator"
302
- msgstr "מנהל"
 
303
 
304
- #: core/core.php:1008
305
- #@ broken-link-checker
306
- msgctxt "dashboard widget visibility"
307
- msgid "Editor and above"
308
- msgstr "עורך ומעלה"
 
 
309
 
310
- #: core/core.php:1009
311
- #@ broken-link-checker
312
- msgctxt "dashboard widget visibility"
313
- msgid "Nobody (disables the widget)"
314
- msgstr "אף אחד (מכבה את הוידג'ט)"
 
 
315
 
316
- #: core/core.php:1025
317
- #@ broken-link-checker
318
- msgid "Max. execution time"
319
- msgstr "משך זמן מקסימלי לבדיקת כל הקישורים באתר"
 
 
320
 
321
- #: core/core.php:1042
322
- #@ broken-link-checker
323
- msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
324
- msgstr "התוסף פועל על ידי משימה של בדיקת קישורים אשר בוחנת את סוגי התכנים השונים באתר ומנסה למצוא בהם קישורים. אם נמצאו קישורים המשימה בודקת את תקינותם ומבצעת פעילויות אחרות שגוזלות זמן ומשאבי מערכת. בשדה זה אתם יכולים להגדיר את כמות זמן הניטור המקסימלית המותרת. לאחר משך זמן זה תופסק פעילות הניטור באופן יזום על ידי התוסף.<br>(ערך ברירת מחדל: 300. ערך מינימום: 1. ערך מקסימום: 99999. אפס (0) אינו ערך מותר)"
 
 
325
 
326
- #: core/core.php:1051
327
- #@ broken-link-checker
328
- msgid "Server load limit"
329
- msgstr "הגבלת עומס על השרת"
 
 
 
 
 
330
 
331
- #: core/core.php:1066
332
- #, php-format
333
- #@ broken-link-checker
334
- msgid "Current load : %s"
335
- msgstr "העומס הנוכחי על השרת: %s"
 
336
 
337
- #: core/core.php:1072
338
- #, php-format
339
- #@ broken-link-checker
340
- msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
341
- msgstr "משימת בדיקת הקישורים תושעה במידה וממוצע <a href=\"%s\" target=\\\"_blank\\\">העומס על השרת</a> יעלה מעל מספר זה. ניתן להשאיר שדה זה ריק בכדי לכבות אפשרות זו - אולם מומלץ מאוד שלא לעשות זאת, בכדי למנוע את השבתת האתר שלכם על ידי ספק האירוח במידה ופעולת בדיקת הקישורים באתר שלכם תגרום לעומס אשר יפריע לפעולת השרת המארח."
 
 
342
 
343
- #: core/core.php:1080
344
- #@ broken-link-checker
345
- msgid "Not available"
346
- msgstr "לא זמין"
 
 
347
 
348
- #: core/core.php:1082
349
- #@ broken-link-checker
350
- msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
351
- msgstr "הגבלת עומס על השרת פועלת רק על מערכות דמויות Linux כאשר <code>/proc/loadavg</code> קיים ונגיש."
 
 
352
 
353
- #: core/core.php:1138
354
- #@ broken-link-checker
355
- msgid "Forced recheck"
356
- msgstr "איפוס ממצאי התוסף"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
357
 
358
- #: core/core.php:1141
359
- #@ broken-link-checker
360
- msgid "Re-check all pages"
361
- msgstr "איפוס ממצאי התוסף"
 
 
 
362
 
363
- #: core/core.php:1145
364
- #@ broken-link-checker
365
- msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
366
- msgstr "***זהירות***: הקלקה על כפתור זה תמחק לחלוטין את התוכן הנוכחי של מסד הנתונים של התוסף (רק מידע שנאסף אודות הקישורים, לא ההגדרות של התוסף) ולאחר מכן תחל בדיקה מחדש של כל הקישורים באתר זה."
 
 
 
367
 
368
- #: core/core.php:1156
369
- #@ default
370
- msgid "Save Changes"
371
- msgstr "שמירת שינויים"
 
 
 
372
 
373
- #: core/core.php:1207
374
- #@ broken-link-checker
375
- msgid "Configure"
376
- msgstr "פירוט"
 
 
 
377
 
378
- #: core/core.php:1420
379
- #: core/core.php:1503
380
- #: core/core.php:1535
381
- #, php-format
382
- #@ broken-link-checker
383
- msgid "Database error : %s"
384
- msgstr "שגיאת מסד נתונים: %s"
 
 
385
 
386
- #: core/core.php:1485
387
- #@ broken-link-checker
388
- msgid "You must enter a filter name!"
389
- msgstr "חובה להזין שם מסנן!"
 
 
 
 
 
390
 
391
- #: core/core.php:1489
392
- #@ broken-link-checker
393
- msgid "Invalid search query."
394
- msgstr "שאילתת חיפוש לא תקינה."
395
-
396
- #: core/core.php:1498
397
- #, php-format
398
- #@ broken-link-checker
399
- msgid "Filter \"%s\" created"
400
- msgstr "הסינון \"%s\" נוצר"
401
-
402
- #: core/core.php:1525
403
- #@ broken-link-checker
404
- msgid "Filter ID not specified."
405
- msgstr "לא מצוין קוד זיהוי מסנן."
406
-
407
- #: core/core.php:1532
408
- #@ broken-link-checker
409
- msgid "Filter deleted"
410
- msgstr "המסנן נמחק"
411
-
412
- #: core/core.php:1580
413
- #, php-format
414
- #@ broken-link-checker
415
- msgid "Replaced %d redirect with a direct link"
416
- msgid_plural "Replaced %d redirects with direct links"
417
- msgstr[0] " %d הפניה החליפה את הקישור המקורי"
418
- msgstr[1] "%d הפניות החליפו את הקישורים המקוריים"
419
-
420
- #: core/core.php:1591
421
- #, php-format
422
- #@ broken-link-checker
423
- msgid "Failed to fix %d redirect"
424
- msgid_plural "Failed to fix %d redirects"
425
- msgstr[0] "נכשל הניסיון לתקן %d הפניה"
426
- msgstr[1] "נכשל הניסיון לתקן %d הפניות"
427
-
428
- #: core/core.php:1601
429
- #@ broken-link-checker
430
- msgid "None of the selected links are redirects!"
431
- msgstr "אף אחד מהקישורים שנבחרו אינו הפניה!"
432
-
433
- #: core/core.php:1680
434
- #, php-format
435
- #@ broken-link-checker
436
- msgid "%d link updated."
437
- msgid_plural "%d links updated."
438
- msgstr[0] "עודכן %d קישור."
439
- msgstr[1] "עודכנו %d קישורים."
440
-
441
- #: core/core.php:1691
442
- #, php-format
443
- #@ broken-link-checker
444
- msgid "Failed to update %d link."
445
- msgid_plural "Failed to update %d links."
446
- msgstr[0] "נכשל הניסיון לעדכן %d קישור."
447
- msgstr[1] "נכשל הניסיון לעדכן %d קישורים."
448
-
449
- #: core/core.php:1780
450
- #, php-format
451
- #@ broken-link-checker
452
- msgid "%d link removed"
453
- msgid_plural "%d links removed"
454
- msgstr[0] "%d קישור הוסר"
455
- msgstr[1] "הוסרו %d קישורים"
456
-
457
- #: core/core.php:1791
458
- #, php-format
459
- #@ broken-link-checker
460
- msgid "Failed to remove %d link"
461
- msgid_plural "Failed to remove %d links"
462
- msgstr[0] "נכשל הניסיון להסיר את הקישור %d"
463
- msgstr[1] "נכשל הניסיון להסיר את הקישורים %d"
464
-
465
- #: core/core.php:1900
466
- #, php-format
467
- #@ default
468
- msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
469
- msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
470
- msgstr[0] "%d פריט לא עובד בגלל שלא ניתן להעביר אותו לסל המחזור. צריך למחוק אותו ידנית."
471
- msgstr[1] "%d פריטים לא עובדו בגלל שלא ניתן להעביר אותם לסל המחזור. צריך למחוק אותם ידנית."
472
-
473
- #: core/core.php:1921
474
- #@ broken-link-checker
475
- msgid "Didn't find anything to delete!"
476
- msgstr "לא נמצאו פריטים למחיקה!"
477
-
478
- #: core/core.php:1950
479
- #, php-format
480
- #@ broken-link-checker
481
- msgid "%d link scheduled for rechecking"
482
- msgid_plural "%d links scheduled for rechecking"
483
- msgstr[0] "%d קישור תוזמן לבדיקה חוזרת"
484
- msgstr[1] "%d קישורים תוזמנו לבדיקה חוזרת"
485
-
486
- #: core/core.php:1995
487
- #: core/core.php:2637
488
- #@ broken-link-checker
489
- msgid "This link was manually marked as working by the user."
490
- msgstr "הקישור סומן ידנית כ'לא שבור' על ידי משתמש."
491
-
492
- #: core/core.php:2002
493
- #, php-format
494
- #@ broken-link-checker
495
- msgid "Couldn't modify link %d"
496
- msgstr "לא ניתן היה לשנות את הקישור %d"
497
-
498
- #: core/core.php:2013
499
- #, php-format
500
- #@ broken-link-checker
501
- msgid "%d link marked as not broken"
502
- msgid_plural "%d links marked as not broken"
503
- msgstr[0] "הקישור %d סומן כ\\\"לא שבור\\\""
504
- msgstr[1] "הקישורים %d סומנו כ\\\"לא שבור\\\""
505
-
506
- #: core/core.php:2052
507
- #@ broken-link-checker
508
- msgid "Table columns"
509
- msgstr "טורי טבלה"
510
-
511
- #: core/core.php:2071
512
- #@ default
513
- msgid "Show on screen"
514
- msgstr "הצג במסך"
515
-
516
- #: core/core.php:2078
517
- #@ broken-link-checker
518
- msgid "links"
519
- msgstr "קישורים"
520
-
521
- #: core/core.php:2079
522
- #: includes/admin/table-printer.php:171
523
- #@ default
524
- #@ broken-link-checker
525
- msgid "Apply"
526
- msgstr "ביצוע"
527
-
528
- #: core/core.php:2083
529
- #@ broken-link-checker
530
- msgid "Misc"
531
- msgstr "שונות"
532
-
533
- #: core/core.php:2098
534
- #, php-format
535
- #@ broken-link-checker
536
- msgid "Highlight links broken for at least %s days"
537
- msgstr "הדגשת הרקע של קישורים אשר שבורים כבר במשך לפחות %s ימים"
538
-
539
- #: core/core.php:2107
540
- #@ broken-link-checker
541
- msgid "Color-code status codes"
542
- msgstr "קודי סטטוס צבעוניים"
543
-
544
- #: core/core.php:2124
545
- #: core/core.php:2622
546
- #: core/core.php:2662
547
- #: core/core.php:2695
548
- #: core/core.php:2782
549
- #@ broken-link-checker
550
- msgid "You're not allowed to do that!"
551
- msgstr "אינכם מורשים לבצע פעולה זו!"
552
-
553
- #: core/core.php:2492
554
- #@ broken-link-checker
555
- msgid "View broken links"
556
- msgstr "צפיה בקישורים השבורים"
557
-
558
- #: core/core.php:2493
559
- #, php-format
560
- #@ broken-link-checker
561
- msgid "Found %d broken link"
562
- msgid_plural "Found %d broken links"
563
- msgstr[0] "נמצאו %d קישור שבור"
564
- msgstr[1] "נמצאו %d קישורים שבורים"
565
-
566
- #: core/core.php:2499
567
- #@ broken-link-checker
568
- msgid "No broken links found."
569
- msgstr "לא נמצאו קישורים שבורים."
570
-
571
- #: core/core.php:2506
572
- #, php-format
573
- #@ broken-link-checker
574
- msgid "%d URL in the work queue"
575
- msgid_plural "%d URLs in the work queue"
576
- msgstr[0] "קיימת %d ‏כתובת אינטרנט בתור המשימות"
577
- msgstr[1] "קיימות %d ‏כתובות אינטרנט בתור המשימות"
578
-
579
- #: core/core.php:2509
580
- #@ broken-link-checker
581
- msgid "No URLs in the work queue."
582
- msgstr "אין בתור המשימות כתובות אינטרנט לבדיקה"
583
-
584
- #: core/core.php:2515
585
- #, php-format
586
- #@ broken-link-checker
587
- msgctxt "for the \"Detected X unique URLs in Y links\" message"
588
- msgid "%d unique URL"
589
- msgid_plural "%d unique URLs"
590
- msgstr[0] "%d ‏כתובת אינטרנט יחודית"
591
- msgstr[1] "%d ‏כתובות אינטרנט יחודיות"
592
-
593
- #: core/core.php:2519
594
- #, php-format
595
- #@ broken-link-checker
596
- msgctxt "for the \"Detected X unique URLs in Y links\" message"
597
- msgid "%d link"
598
- msgid_plural "%d links"
599
- msgstr[0] "%d קישור"
600
- msgstr[1] "%d קישורים"
601
-
602
- #: core/core.php:2525
603
- #, php-format
604
- #@ broken-link-checker
605
- msgid "Detected %1$s in %2$s and still searching..."
606
- msgstr "נמצאו %1$s בתוך %2$s והחיפוש ממשיך..."
607
-
608
- #: core/core.php:2531
609
- #, php-format
610
- #@ broken-link-checker
611
- msgid "Detected %1$s in %2$s."
612
- msgstr "נמצאו %1$s בתוך %2$s."
613
-
614
- #: core/core.php:2538
615
- #@ broken-link-checker
616
- msgid "Searching your blog for links..."
617
- msgstr "מתבצע חיפוש קישורים באתר..."
618
-
619
- #: core/core.php:2540
620
- #@ broken-link-checker
621
- msgid "No links detected."
622
- msgstr "לא נמצאו קישורים."
623
-
624
- #: core/core.php:2566
625
- #@ broken-link-checker
626
- msgctxt "current load"
627
- msgid "Unknown"
628
- msgstr "לא ידוע"
629
-
630
- #: core/core.php:2630
631
- #: core/core.php:2670
632
- #: core/core.php:2710
633
- #: core/core.php:2792
634
- #, php-format
635
- #@ broken-link-checker
636
- msgid "Oops, I can't find the link %d"
637
- msgstr "אופס, לא נמצא הקישור %d"
638
-
639
- #: core/core.php:2643
640
- #: core/core.php:2680
641
- #@ broken-link-checker
642
- msgid "Oops, couldn't modify the link!"
643
- msgstr "אופס, לא ניתן לשנות את הקישור!"
644
-
645
- #: core/core.php:2646
646
- #: core/core.php:2683
647
- #: core/core.php:2818
648
- #@ broken-link-checker
649
- msgid "Error : link_id not specified"
650
- msgstr "שגיאה: link_id אינו מוגדר"
651
-
652
- #: core/core.php:2719
653
- #@ broken-link-checker
654
- msgid "Oops, the new URL is invalid!"
655
- msgstr "אופס, כתובת האינטרנט החדשה אינה תקינה!"
656
-
657
- #: core/core.php:2801
658
- #@ broken-link-checker
659
- msgid "An unexpected error occured!"
660
- msgstr "אירעה שגיאה לא צפויה!"
661
-
662
- #: core/core.php:2701
663
- #@ broken-link-checker
664
- msgid "Error : link_id or new_url not specified"
665
- msgstr "שגיאה: link_id או new_url אינם מוגדרים"
666
-
667
- #: core/core.php:2827
668
- #@ broken-link-checker
669
- msgid "You don't have sufficient privileges to access this information!"
670
- msgstr "אין לכם את ההרשאות המתאימות בכדי לגשת למידע זה!"
671
-
672
- #: core/core.php:2840
673
- #@ broken-link-checker
674
- msgid "Error : link ID not specified"
675
- msgstr "שגיאה: לא מוגדר קוד זיהוי קישור"
676
-
677
- #: core/core.php:2854
678
- #, php-format
679
- #@ broken-link-checker
680
- msgid "Failed to load link details (%s)"
681
- msgstr "נכשל הניסיון לטעון את פרטי הקישור (%s)"
682
-
683
- #: core/core.php:2908
684
- #@ broken-link-checker
685
- msgid "Broken Link Checker"
686
- msgstr "בודק קישורים שבורים"
687
-
688
- #: core/core.php:2928
689
- #@ broken-link-checker
690
- msgid "PHP version"
691
- msgstr "גרסת PHP"
692
 
693
- #: core/core.php:2934
694
- #@ broken-link-checker
695
- msgid "MySQL version"
696
- msgstr "גרסת MySQL"
 
 
 
697
 
698
- #: core/core.php:2947
699
- #@ broken-link-checker
700
- msgid "You have an old version of CURL. Redirect detection may not work properly."
701
- msgstr "גרסת ה-CURL באתר שלכם ישנה. בשל כך קיים סיכוי שתהליך איתור ההפניות לא יעבוד באופן תקין. כדאי לבקש ממנהלי האתר שלכם לעדכן את גרסת ה-CURL לגרסה עדכנית."
 
 
702
 
703
- #: core/core.php:2959
704
- #: core/core.php:2975
705
- #: core/core.php:2980
706
- #@ broken-link-checker
707
- msgid "Not installed"
708
- msgstr "לא מותקן"
709
 
710
- #: core/core.php:2962
711
- #@ broken-link-checker
712
- msgid "CURL version"
713
- msgstr "גרסת CURL"
 
 
714
 
715
- #: core/core.php:2968
716
- #@ broken-link-checker
717
- msgid "Installed"
718
- msgstr "מותקן"
 
 
719
 
720
- #: core/core.php:2981
721
- #@ broken-link-checker
722
- msgid "You must have either CURL or Snoopy installed for the plugin to work!"
723
- msgstr "תוכנת CURL או Snoopy חייבת להיות מותקנת בכדי שתוסף זה יעבוד באופן תקין! אנא פנו למנהלי האתר או חברת אירוח האתרים בה מתארח אתר זה ובקשו מהם להתקין את אחת מהתוכנות האלו, בגרסה עדכנית."
 
 
724
 
725
- #: core/core.php:2992
726
- #@ broken-link-checker
727
- msgid "On"
728
- msgstr "פעיל"
 
 
729
 
730
- #: core/core.php:2993
731
- #@ broken-link-checker
732
- msgid "Redirects may be detected as broken links when safe_mode is on."
733
- msgstr "ייתכן והפניות יסווגו כקישורים שבורים כאשר safe_mode פעיל."
 
 
734
 
735
- #: core/core.php:2998
736
- #: core/core.php:3012
737
- #@ broken-link-checker
738
- msgid "Off"
739
- msgstr "כבוי"
 
 
740
 
741
- #: core/core.php:3006
742
- #, php-format
743
- #@ broken-link-checker
744
- msgid "On ( %s )"
745
- msgstr "פעיל ( %s )"
 
 
746
 
747
- #: core/core.php:3007
748
- #@ broken-link-checker
749
- msgid "Redirects may be detected as broken links when open_basedir is on."
750
- msgstr "ייתכן והפניות יסווגו כקישורים שבורים כאשר open_basedir פעיל."
 
 
751
 
752
- #: core/core.php:3036
753
- #@ broken-link-checker
754
- msgid "If this value is zero even after several page reloads you have probably encountered a bug."
755
- msgstr "אם ערך זה הוא 0 (אפס) אפילו לאחר מספר טעינות עמוד חוזרות - כנראה שנתקלתם בבאג."
 
 
756
 
757
- #: core/core.php:3159
758
- #: core/core.php:3278
759
- #, php-format
760
- #@ broken-link-checker
761
- msgid "[%s] Broken links detected"
762
- msgstr "נמצאו [%s] קישורים שבורים"
763
 
764
- #: core/core.php:3165
765
- #, php-format
766
- #@ broken-link-checker
767
- msgid "Broken Link Checker has detected %d new broken link on your site."
768
- msgid_plural "Broken Link Checker has detected %d new broken links on your site."
769
- msgstr[0] "בודק קישורים שבורים איתר %d קישור שבור חדש באתר שלכם."
770
- msgstr[1] "בודק קישורים שבורים איתר %d קישורים שבורים חדשים באתר שלכם."
771
-
772
- #: core/core.php:3196
773
- #, php-format
774
- #@ broken-link-checker
775
- msgid "Here's a list of the first %d broken links:"
776
- msgid_plural "Here's a list of the first %d broken links:"
777
- msgstr[0] "הנה רשימה של %d הקישור השבור הראשון:"
778
- msgstr[1] "הנה רשימה של %d הקישורים השבורים הראשונים:"
779
-
780
- #: core/core.php:3204
781
- #@ broken-link-checker
782
- msgid "Here's a list of the new broken links: "
783
- msgstr "הנה רשימה של קישורים שבורים חדשים: "
784
 
785
- #: core/core.php:3213
786
- #, php-format
787
- #@ broken-link-checker
788
- msgid "Link text : %s"
789
- msgstr "טקסט קישור: %s"
 
790
 
791
- #: core/core.php:3214
792
- #, php-format
793
- #@ broken-link-checker
794
- msgid "Link URL : <a href=\"%s\">%s</a>"
795
- msgstr "קישור כתובת אינטרנט: ‏<a href=\"%s\">%s</a>"
 
 
 
 
 
 
 
 
796
 
797
- #: core/core.php:3215
798
- #, php-format
799
- #@ broken-link-checker
800
- msgid "Source : %s"
801
- msgstr "מקור הקישור: %s"
 
 
802
 
803
- #: core/core.php:3229
804
- #@ broken-link-checker
805
- msgid "You can see all broken links here:"
806
- msgstr "ניתן לצפות בכל הקישורים השבורים כאן:"
 
 
807
 
808
- #: core/core.php:3284
809
- #, php-format
810
- #@ broken-link-checker
811
- msgid "Broken Link Checker has detected %d new broken link in your posts."
812
- msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
813
- msgstr[0] "בודק קישורים שבורים איתר %d קישור שבור חדש בפוסטים שלכם."
814
- msgstr[1] "בודק קישורים שבורים איתר %d קישורים שבורים חדשים בפוסטים שלכם."
815
-
816
- #: core/init.php:249
817
- #@ default
818
- msgid "Once Weekly"
819
- msgstr "פעם בשבוע"
820
-
821
- #: core/init.php:255
822
- #@ default
823
- msgid "Twice a Month"
824
- msgstr "פעמיים בחודש"
825
-
826
- #: core/init.php:331
827
- #@ broken-link-checker
828
- msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
829
- msgstr "התקנת התוסף בודק קישורים שבורים נכשלה. נסו לכבות ואז להפעיל מחדש את התוסף."
830
 
831
- #: includes/admin/db-upgrade.php:95
832
- #, php-format
833
- #@ broken-link-checker
834
- msgid "Failed to delete old DB tables. Database error : %s"
835
- msgstr "נכשל הניסיון למחוק טבלאות מסד נתונים ישנות. שגיאת מסד נתונים: %s"
 
 
836
 
837
- #: includes/admin/links-page-js.php:62
838
- #: includes/admin/links-page-js.php:525
839
- #@ broken-link-checker
840
- msgid "Wait..."
841
- msgstr "המתינו..."
842
 
843
- #: includes/admin/links-page-js.php:107
844
- #: includes/admin/table-printer.php:663
845
- #@ broken-link-checker
846
- msgid "Not broken"
847
- msgstr "לא שבור"
 
848
 
849
- #: includes/admin/links-page-js.php:387
850
- #, php-format
851
- #@ broken-link-checker
852
- msgid "%d instances of the link were successfully modified."
853
- msgstr "%d מופעים של הקישור שונו בהצלחה."
 
854
 
855
- #: includes/admin/links-page-js.php:393
856
- #, php-format
857
- #@ broken-link-checker
858
- msgid "However, %d instances couldn't be edited and still point to the old URL."
859
- msgstr "אולם, לא היה ניתן לערוך %d מופעים ולכן הם עדיין מצביעים לכתובת האינטרנט הישנה."
 
860
 
861
- #: includes/admin/links-page-js.php:399
862
- #@ broken-link-checker
863
- msgid "The link could not be modified."
864
- msgstr "לא היה ניתן לשנות את הקישור."
 
 
865
 
866
- #: includes/admin/links-page-js.php:577
867
- #@ broken-link-checker
868
- msgid "The following error(s) occured :"
869
- msgstr "השגיאה או השגיאות הבאות התרחשו:"
 
 
870
 
871
- #: includes/admin/links-page-js.php:563
872
- #, php-format
873
- #@ broken-link-checker
874
- msgid "%d instances of the link were successfully unlinked."
875
- msgstr "%d פעמים שהקישור נמצא עבור הסרת קישור"
 
 
 
 
876
 
877
- #: includes/admin/links-page-js.php:569
878
- #, php-format
879
- #@ broken-link-checker
880
- msgid "However, %d instances couldn't be removed."
881
- msgstr "אולם, לא היה ניתן להסיר %d מופעים."
 
882
 
883
- #: includes/admin/links-page-js.php:574
884
- #@ broken-link-checker
885
- msgid "The plugin failed to remove the link."
886
- msgstr "התוסף לא הצליח להסיר את הקישור."
 
 
887
 
888
- #: includes/admin/links-page-js.php:585
889
- #: includes/admin/table-printer.php:281
890
- #: includes/admin/table-printer.php:657
891
- #@ broken-link-checker
892
- msgid "Unlink"
893
- msgstr "הסרת הקישור (טקסט הקישור לא יוסר)"
 
894
 
895
- #: includes/admin/links-page-js.php:629
896
- #@ broken-link-checker
897
- msgid "Enter a name for the new custom filter"
898
- msgstr "הזינו שם למסנן המותאם החדש"
 
 
899
 
900
- #: includes/admin/links-page-js.php:641
901
- #@ broken-link-checker
902
- msgid ""
903
- "You are about to delete the current filter.\n"
904
- "'Cancel' to stop, 'OK' to delete"
905
- msgstr "אתם עומדים למחוק את המסנן הפעיל. הקליקו 'Cancel' למניעת המחיקה או 'OK' לביצוע המחיקה."
906
 
907
- #: includes/admin/links-page-js.php:665
908
- #@ broken-link-checker
909
- msgid ""
910
- "Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
911
- "'Cancel' to stop, 'OK' to delete"
912
- msgstr ""
913
- "האם אתם בטוחים שאתם רוצים למחוק את כל הפוסטים, סימניות או פריטים אחרים שכוללים בתוכם את הקישורים שבחרתם? לא ניתן לבטל את המחיקה לאחר ביצועה. הקליקו \n"
914
- "'Cancel' למניעת המחיקה או 'OK' לביצוע המחיקה"
915
 
916
- #: includes/admin/links-page-js.php:679
917
- #@ broken-link-checker
918
- msgid ""
919
- "Are you sure you want to remove the selected links? This action can't be undone.\n"
920
- "'Cancel' to stop, 'OK' to remove"
921
- msgstr ""
922
- "האם אתם בטוחים שאתם רוצים להסיר את הקישורים שנבחרו? לא ניתן לבטל את המחיקה לאחר ביצועה. הקליקו \n"
923
- "'Cancel' למניעת המחיקה או 'OK' לביצוע המחיקה"
924
 
925
- #: includes/admin/links-page-js.php:791
926
- #@ broken-link-checker
927
- msgid "Enter a search string first."
928
- msgstr "ראשית הזינו טקסט חיפוש."
 
 
929
 
930
- #: includes/admin/links-page-js.php:798
931
- #@ broken-link-checker
932
- msgid "Select one or more links to edit."
933
- msgstr "בחרו קישור אחד או יותר לעריכה."
 
 
 
934
 
935
- #: includes/admin/options-page-js.php:54
936
- #@ broken-link-checker
937
- msgid "Hide debug info"
938
- msgstr "הסתרת מידע מערכת"
 
 
939
 
940
- #: includes/admin/search-form.php:16
941
- #@ broken-link-checker
942
- msgid "Save This Search As a Filter"
943
- msgstr "שמירת חיפוש זה כמסנן"
 
 
 
 
 
 
944
 
945
- #: includes/admin/search-form.php:26
946
- #@ broken-link-checker
947
- msgid "Delete This Filter"
948
- msgstr "מחיקת המסנן הפעיל"
 
 
 
 
 
 
 
 
 
 
949
 
950
- #: includes/admin/search-form.php:32
951
- #: includes/link-query.php:65
952
- #@ broken-link-checker
953
- msgid "Search"
954
- msgstr "חיפוש"
 
 
955
 
956
- #: includes/admin/search-form.php:42
957
- #@ broken-link-checker
958
- msgid "Link text"
959
- msgstr "טקסט הקישור"
 
 
 
960
 
961
- #: includes/admin/search-form.php:45
962
- #: includes/admin/table-printer.php:208
963
- #@ broken-link-checker
964
- msgid "URL"
965
- msgstr "כתובת האינטרנט"
 
 
966
 
967
- #: includes/admin/search-form.php:48
968
- #: includes/admin/table-printer.php:527
969
- #@ broken-link-checker
970
- msgid "HTTP code"
971
- msgstr "קוד HTTP‏"
 
 
972
 
973
- #: includes/admin/search-form.php:51
974
- #@ broken-link-checker
975
- msgid "Link status"
976
- msgstr "מצב הקישור"
 
 
 
977
 
978
- #: includes/admin/search-form.php:68
979
- #: includes/admin/search-form.php:85
980
- #@ broken-link-checker
981
- msgid "Link type"
982
- msgstr "סוג הקישור"
 
983
 
984
- #: includes/admin/search-form.php:70
985
- #@ broken-link-checker
986
- msgid "Any"
987
- msgstr "כלשהו"
 
 
 
988
 
989
- #: includes/admin/search-form.php:74
990
- #@ broken-link-checker
991
- msgid "Links used in"
992
- msgstr "מקורות הקישורים:"
 
 
993
 
994
- #: includes/admin/search-form.php:112
995
- #@ broken-link-checker
996
- msgid "Search Links"
997
- msgstr "חיפוש קישורים"
 
 
998
 
999
- #: includes/admin/search-form.php:113
1000
- #: includes/admin/table-printer.php:357
1001
- #: includes/admin/table-printer.php:687
1002
- #: includes/admin/table-printer.php:812
1003
- #@ broken-link-checker
 
1004
  msgid "Cancel"
1005
  msgstr "ביטול"
1006
 
1007
- #: includes/admin/sidebar.php:24
1008
- #@ broken-link-checker
1009
- msgid "More plugins by Janis Elsts"
1010
- msgstr "תוספים נוספים מאת Janis Elsts"
 
 
 
 
1011
 
1012
- #: includes/admin/sidebar.php:47
1013
- #@ broken-link-checker
1014
- msgid "Donate $10, $20 or $50!"
1015
- msgstr "תרמו 10$, 20$ או 50$!"
 
 
1016
 
1017
- #: includes/admin/sidebar.php:50
1018
- #@ broken-link-checker
1019
- msgid "If you like this plugin, please donate to support development and maintenance!"
1020
- msgstr "אם אתם אוהבים תוסף זה, בבקשה תרמו בכדי לתמוך במאמצי הפיתוח והתחזוקה של תוסף זה!"
 
 
1021
 
1022
- #: includes/admin/sidebar.php:68
1023
- #@ broken-link-checker
1024
- msgid "Return to WordPress Dashboard"
1025
- msgstr "חזרה ללוח המחוונים של Wordpress"
 
 
1026
 
1027
- #: includes/admin/table-printer.php:185
1028
- #@ broken-link-checker
1029
- msgid "Compact View"
1030
- msgstr "תצוגה מצומצמת"
 
 
1031
 
1032
- #: includes/admin/table-printer.php:186
1033
- #@ broken-link-checker
1034
- msgid "Detailed View"
1035
- msgstr "תצוגה מפורטת"
 
 
1036
 
1037
- #: includes/admin/table-printer.php:215
1038
- #@ broken-link-checker
1039
- msgid "Source"
1040
- msgstr "מקור הקישור"
 
 
1041
 
1042
- #: includes/admin/table-printer.php:221
1043
- #@ broken-link-checker
 
 
1044
  msgid "Link Text"
1045
  msgstr "טקסט הקישור"
1046
 
1047
- #: includes/admin/table-printer.php:228
1048
- #@ broken-link-checker
1049
- msgid "Redirect URL"
1050
- msgstr "כתובת ההפניה"
 
 
1051
 
1052
- #: includes/admin/table-printer.php:276
1053
- #@ broken-link-checker
1054
- msgid "Bulk Actions"
1055
- msgstr "פעולות על מספר קישורים במקביל"
 
 
 
 
 
1056
 
1057
- #: includes/admin/table-printer.php:277
1058
- #: includes/admin/table-printer.php:654
1059
- #@ broken-link-checker
1060
- msgid "Edit URL"
1061
- msgstr "עריכת הקישור"
 
 
1062
 
1063
- #: includes/admin/table-printer.php:278
1064
- #@ broken-link-checker
1065
- msgid "Recheck"
1066
- msgstr "בדיקה חוזרת"
 
 
1067
 
1068
- #: includes/admin/table-printer.php:279
1069
- #@ broken-link-checker
1070
- msgid "Fix redirects"
1071
- msgstr "החלפת הקישור המקורי בקישור ההפניה"
 
 
 
 
1072
 
1073
- #: includes/admin/table-printer.php:280
1074
- #@ broken-link-checker
1075
- msgid "Mark as not broken"
1076
- msgstr "סימון כ'לא שבור'"
 
 
 
1077
 
1078
- #: includes/admin/table-printer.php:284
1079
- #@ broken-link-checker
1080
- msgid "Move sources to Trash"
1081
- msgstr "העברה לפח (=מחיקה) של מקור הקישור (פוסט, עמוד וכדומה)"
 
 
1082
 
1083
- #: includes/admin/table-printer.php:286
1084
- #@ broken-link-checker
1085
- msgid "Delete sources"
1086
- msgstr "מחיקת מקורות הקישור"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1087
 
1088
- #: includes/admin/table-printer.php:301
1089
- #@ default
1090
- msgid "&laquo;"
1091
- msgstr "&laquo;"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1092
 
1093
- #: includes/admin/table-printer.php:302
1094
- #@ default
1095
- msgid "&raquo;"
1096
- msgstr "&raquo;"
 
 
 
1097
 
1098
- #: includes/admin/table-printer.php:310
1099
- #, php-format
1100
- #@ broken-link-checker
1101
- msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1102
- msgstr "הצגת %s&#8211;%s מתוך <span class=\"current-link-count\">%s</span>"
 
 
1103
 
1104
- #: includes/admin/table-printer.php:333
1105
- #@ broken-link-checker
1106
- msgid "Bulk Edit URLs"
1107
- msgstr "עריכה של קישורים מרובים במקביל"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1108
 
1109
- #: includes/admin/table-printer.php:335
1110
- #@ broken-link-checker
1111
- msgid "Find"
1112
- msgstr "מצא"
 
 
 
1113
 
1114
- #: includes/admin/table-printer.php:339
1115
- #@ broken-link-checker
1116
- msgid "Replace with"
1117
- msgstr "החלפה ב-"
 
 
1118
 
1119
- #: includes/admin/table-printer.php:347
1120
- #@ broken-link-checker
1121
- msgid "Case sensitive"
1122
- msgstr "עם רגישות לגודל אותיות אנגליות (Case Sensitive)"
 
 
1123
 
1124
- #: includes/admin/table-printer.php:351
1125
- #@ broken-link-checker
1126
- msgid "Regular expression"
1127
- msgstr "Regular Expression"
 
 
1128
 
1129
- #: includes/admin/table-printer.php:359
1130
- #: includes/admin/table-printer.php:813
1131
- #@ broken-link-checker
1132
- msgid "Update"
1133
- msgstr "עדכון"
 
1134
 
1135
- #: includes/admin/table-printer.php:512
1136
- #@ broken-link-checker
1137
- msgid "Post published on"
1138
- msgstr "פוסטים שפורסמו ב:"
 
 
 
 
 
 
 
 
 
 
1139
 
1140
- #: includes/admin/table-printer.php:517
1141
- #@ broken-link-checker
1142
- msgid "Link last checked"
1143
- msgstr "הקישור נבדק לאחרונה בתאריך"
 
 
1144
 
1145
- #: includes/admin/table-printer.php:521
1146
- #@ broken-link-checker
1147
- msgid "Never"
1148
- msgstr "מעולם לא"
 
 
 
 
1149
 
1150
- #: includes/admin/table-printer.php:532
1151
- #@ broken-link-checker
1152
- msgid "Response time"
1153
- msgstr "זמן תגובה"
 
 
1154
 
1155
- #: includes/admin/table-printer.php:534
1156
- #, php-format
1157
- #@ broken-link-checker
1158
- msgid "%2.3f seconds"
1159
- msgstr "%2.3f שניות"
 
1160
 
1161
- #: includes/admin/table-printer.php:537
1162
- #@ broken-link-checker
1163
- msgid "Final URL"
1164
- msgstr "כתובת אינטרנט סופית"
 
 
1165
 
1166
- #: includes/admin/table-printer.php:542
1167
- #@ broken-link-checker
1168
- msgid "Redirect count"
1169
- msgstr "כמות הפניות"
 
 
 
1170
 
1171
- #: includes/admin/table-printer.php:547
1172
- #@ broken-link-checker
1173
- msgid "Instance count"
1174
- msgstr "כמות מופעים"
 
 
1175
 
1176
- #: includes/admin/table-printer.php:556
1177
- #, php-format
1178
- #@ broken-link-checker
1179
- msgid "This link has failed %d time."
1180
- msgid_plural "This link has failed %d times."
1181
- msgstr[0] "הקישור נכשל ב-%d בדיקה."
1182
- msgstr[1] "הקישור נכשל ב-%d בדיקות."
1183
 
1184
- #: includes/admin/table-printer.php:564
1185
- #, php-format
1186
- #@ broken-link-checker
1187
- msgid "This link has been broken for %s."
1188
- msgstr "הקישור שבור במשך לפחות %s."
 
1189
 
1190
- #: includes/admin/table-printer.php:575
1191
- #@ broken-link-checker
1192
- msgid "Log"
1193
- msgstr "פרטי הבדיקה:<br>"
 
 
1194
 
1195
- #: includes/admin/table-printer.php:600
1196
- #@ broken-link-checker
1197
- msgid "Show more info about this link"
1198
- msgstr "הצג מידע נוסף אודות קישור זה"
 
 
 
 
1199
 
1200
- #: includes/admin/table-printer.php:618
1201
- #@ broken-link-checker
1202
- msgctxt "checked how long ago"
1203
- msgid "Checked"
1204
- msgstr "נבדק"
 
 
1205
 
1206
- #: includes/admin/table-printer.php:634
1207
- #@ broken-link-checker
1208
- msgid "Broken for"
1209
- msgstr "שבור כבר לפחות"
 
 
1210
 
1211
- #: includes/admin/table-printer.php:656
1212
- #@ broken-link-checker
1213
- msgid "Remove this link from all posts"
1214
- msgstr "הסרת קישור זה מכל הפוסטים בהם הוא מופיע. טקסט הקישור לא יוסר ולא ישתנה."
 
 
1215
 
1216
- #: includes/admin/table-printer.php:662
1217
- #@ broken-link-checker
1218
- msgid "Remove this link from the list of broken links and mark it as valid"
1219
- msgstr "הסרת קישור זה מהרשימה הנוכחית וסימונו כתקין"
 
 
1220
 
1221
- #: includes/admin/table-printer.php:670
1222
- #@ broken-link-checker
1223
- msgid "Hide this link and do not report it again unless its status changes"
1224
- msgstr "הקישור יועבר אל רשימת \"בהמתנה\" ולא ידווח שוב כשבור אלא אם הסטטוס שלו ישתנה"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1225
 
1226
- #: includes/admin/table-printer.php:671
1227
- #@ broken-link-checker
1228
- msgid "Dismiss"
1229
- msgstr "העברה למצב המתנה"
 
 
 
1230
 
1231
- #: includes/admin/table-printer.php:676
1232
- #@ broken-link-checker
1233
- msgid "Undismiss this link"
1234
- msgstr "הוצאת קישור זה ממצב המתנה והחזרתו לרשימת הקישורים השבורים"
 
 
 
1235
 
1236
- #: includes/admin/table-printer.php:677
1237
- #@ broken-link-checker
1238
- msgid "Undismiss"
1239
- msgstr "ביטול מצב המתנה"
 
 
1240
 
1241
- #: includes/admin/table-printer.php:688
1242
- #@ broken-link-checker
1243
- msgid "Update URL"
1244
- msgstr "עדכון כתובת אינטרנט"
 
 
 
1245
 
1246
- #: includes/admin/table-printer.php:715
1247
- #@ broken-link-checker
1248
- msgid "[An orphaned link! This is a bug.]"
1249
- msgstr "[קישור יתום! זה באג.]"
 
 
1250
 
1251
- #: includes/any-post.php:398
1252
- #: modules/containers/blogroll.php:46
1253
- #: modules/containers/comment.php:153
1254
- #: modules/containers/custom_field.php:207
1255
- #@ default
1256
- msgid "Edit"
1257
- msgstr "עריכה"
1258
-
1259
- #: includes/any-post.php:406
1260
- #: modules/containers/custom_field.php:213
1261
- #@ default
1262
- msgid "Move this item to the Trash"
1263
- msgstr "העבר פריט זה לסל המחזור"
1264
-
1265
- #: includes/any-post.php:408
1266
- #: modules/containers/custom_field.php:215
1267
- #@ default
1268
- msgid "Trash"
1269
- msgstr "סל המחזור"
1270
-
1271
- #: includes/any-post.php:413
1272
- #: modules/containers/custom_field.php:220
1273
- #@ default
1274
- msgid "Delete this item permanently"
1275
- msgstr "מחיקת פריט זה באופן מוחלט"
1276
-
1277
- #: includes/any-post.php:415
1278
- #: modules/containers/blogroll.php:47
1279
- #: modules/containers/custom_field.php:222
1280
- #@ default
1281
- msgid "Delete"
1282
- msgstr "מחיקה"
1283
-
1284
- #: includes/any-post.php:428
1285
- #, php-format
1286
- #@ default
1287
- msgid "Preview &#8220;%s&#8221;"
1288
- msgstr "תצוגה מקדימה &#8220;%s&#8221;"
1289
-
1290
- #: includes/any-post.php:429
1291
- #@ default
1292
- msgid "Preview"
1293
- msgstr "תצוגה מקדימה"
1294
-
1295
- #: includes/any-post.php:436
1296
- #, php-format
1297
- #@ default
1298
- msgid "View &#8220;%s&#8221;"
1299
- msgstr "צפיה &#8220;%s&#8221;"
1300
-
1301
- #: includes/any-post.php:437
1302
- #: modules/containers/comment.php:166
1303
- #: modules/containers/custom_field.php:227
1304
- #@ default
1305
- msgid "View"
1306
- msgstr "צפיה"
1307
-
1308
- #: includes/any-post.php:456
1309
- #: modules/containers/custom_field.php:207
1310
- #@ default
1311
- msgid "Edit this item"
1312
- msgstr "עריכת פריט זה"
1313
-
1314
- #: includes/any-post.php:520
1315
- #: modules/containers/blogroll.php:83
1316
- #: modules/containers/comment.php:43
1317
- #@ broken-link-checker
1318
- msgid "Nothing to update"
1319
- msgstr "אין מה לעדכן"
1320
 
1321
- #: includes/any-post.php:530
1322
- #, php-format
1323
- #@ broken-link-checker
1324
- msgid "Updating post %d failed"
1325
- msgstr "עדכון הפוסט %d נכשל"
 
 
1326
 
1327
- #: includes/any-post.php:567
1328
- #: modules/containers/custom_field.php:294
1329
- #, php-format
1330
- #@ broken-link-checker
1331
- msgid "Failed to delete post \"%s\" (%d)"
1332
- msgstr "נכשל הניסיון למחוק את הפוסט \"%s\" (%d)"
1333
 
1334
- #: includes/any-post.php:586
1335
- #: modules/containers/custom_field.php:313
1336
- #, php-format
1337
- #@ broken-link-checker
1338
- msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
1339
- msgstr "לא ניתן להעביר את הפוסט \"%s\" (%d) אל הפח מפני שרכיב הפח לא פעיל"
1340
 
1341
- #: includes/any-post.php:606
1342
- #: modules/containers/custom_field.php:332
1343
- #, php-format
1344
- #@ broken-link-checker
1345
- msgid "Failed to move post \"%s\" (%d) to the trash"
1346
- msgstr "נכשל הניסיון להעביר את הפוסט \"%s\" (%d) אל הפח"
1347
 
1348
- #: includes/any-post.php:714
1349
- #, php-format
1350
- #@ broken-link-checker
1351
- msgid "%d post deleted."
1352
- msgid_plural "%d posts deleted."
1353
- msgstr[0] "הפוסט %d נמחק."
1354
- msgstr[1] "הפוסטים %d נמחקו."
1355
-
1356
- #: includes/any-post.php:716
1357
- #, php-format
1358
- #@ broken-link-checker
1359
- msgid "%d page deleted."
1360
- msgid_plural "%d pages deleted."
1361
- msgstr[0] "העמוד %d נמחק."
1362
- msgstr[1] "העמודים %d נמחקו."
1363
-
1364
- #: includes/any-post.php:718
1365
- #, php-format
1366
- #@ broken-link-checker
1367
- msgid "%d \"%s\" deleted."
1368
- msgid_plural "%d \"%s\" deleted."
1369
- msgstr[0] "%d \"%s\" נמחק."
1370
- msgstr[1] "%d \"%s\" נמחקו."
1371
-
1372
- #: includes/any-post.php:737
1373
- #, php-format
1374
- #@ broken-link-checker
1375
- msgid "%d post moved to the Trash."
1376
- msgid_plural "%d posts moved to the Trash."
1377
- msgstr[0] "הפוסט %d הועבר לפח."
1378
- msgstr[1] "הפוסטים %d הועברו לפח."
1379
-
1380
- #: includes/any-post.php:739
1381
- #, php-format
1382
- #@ broken-link-checker
1383
- msgid "%d page moved to the Trash."
1384
- msgid_plural "%d pages moved to the Trash."
1385
- msgstr[0] "העמוד %d הועבר לפח."
1386
- msgstr[1] "העמודים %d הועברו לפח."
1387
-
1388
- #: includes/any-post.php:741
1389
- #, php-format
1390
- #@ broken-link-checker
1391
- msgid "%d \"%s\" moved to the Trash."
1392
- msgid_plural "%d \"%s\" moved to the Trash."
1393
- msgstr[0] "%d \"%s\" הועבר לפח."
1394
- msgstr[1] "%d \"%s\" הועברו לפח."
1395
-
1396
- #: includes/containers.php:123
1397
- #, php-format
1398
- #@ broken-link-checker
1399
- msgid "%d '%s' has been deleted"
1400
- msgid_plural "%d '%s' have been deleted"
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"
1409
- msgstr "מיכל (Container) מסוג '%s' אינו מזוהה"
1410
 
1411
- #: includes/extra-strings.php:2
1412
- #@ broken-link-checker
1413
- msgctxt "module name"
1414
- msgid "Basic HTTP"
1415
- msgstr "HTTP בסיסי"
 
1416
 
1417
- #: includes/extra-strings.php:3
1418
- #@ broken-link-checker
1419
- msgctxt "module name"
1420
- msgid "Blogroll items"
1421
- msgstr "פריטי בלוגרול"
 
1422
 
1423
- #: includes/extra-strings.php:4
1424
- #@ broken-link-checker
1425
- msgctxt "module name"
1426
- msgid "Comments"
1427
- msgstr "תגובות"
 
 
 
1428
 
1429
- #: includes/extra-strings.php:5
1430
- #@ broken-link-checker
1431
- msgctxt "module name"
1432
- msgid "Custom fields"
1433
- msgstr "שדות מותאמים"
 
1434
 
1435
- #: includes/extra-strings.php:6
1436
- #@ broken-link-checker
1437
- msgctxt "module name"
1438
- msgid "Embedded DailyMotion videos"
1439
- msgstr "סרטוני DailyMotion מוטמעים"
 
 
 
1440
 
1441
- #: includes/extra-strings.php:7
1442
- #@ broken-link-checker
1443
- msgctxt "module name"
1444
- msgid "Embedded GoogleVideo videos"
1445
- msgstr "סרטוני GoogleVideo מוטמעים"
 
 
1446
 
1447
- #: includes/extra-strings.php:8
1448
- #@ broken-link-checker
1449
- msgctxt "module name"
1450
- msgid "Embedded Megavideo videos"
1451
- msgstr "סרטוני Megavideo מוטמעים"
 
 
 
1452
 
1453
- #: includes/extra-strings.php:9
1454
- #@ broken-link-checker
1455
- msgctxt "module name"
1456
- msgid "Embedded Vimeo videos"
1457
- msgstr "סרטוני Vimeo מוטמעים"
 
 
 
 
1458
 
1459
- #: includes/extra-strings.php:10
1460
- #@ broken-link-checker
1461
- msgctxt "module name"
1462
- msgid "Embedded YouTube playlists (old embed code)"
1463
- msgstr "רשימות הקרנה מוטמעות של YouTube (קוד הטמעה ישן)"
 
 
 
1464
 
1465
- #: includes/extra-strings.php:11
1466
- #@ broken-link-checker
1467
- msgctxt "module name"
1468
- msgid "Embedded YouTube videos"
1469
- msgstr "סרטוני YouTube מוטמעים"
 
1470
 
1471
- #: includes/extra-strings.php:12
1472
- #@ broken-link-checker
1473
- msgctxt "module name"
1474
- msgid "Embedded YouTube videos (old embed code)"
1475
- msgstr "סרטוני YouTube מוטמעים (קוד הטמעה ישן)"
 
 
1476
 
1477
- #: includes/extra-strings.php:13
1478
- #@ broken-link-checker
1479
- msgctxt "module name"
1480
- msgid "FileServe API"
1481
- msgstr "FileServe API"
 
 
1482
 
1483
- #: includes/extra-strings.php:14
1484
- #@ broken-link-checker
1485
- msgctxt "module name"
1486
- msgid "HTML images"
1487
- msgstr "קישורי תמונות (HTML)"
 
 
1488
 
1489
- #: includes/extra-strings.php:15
1490
- #@ broken-link-checker
1491
- msgctxt "module name"
1492
- msgid "HTML links"
1493
- msgstr "קישורי טקסט (HTML)"
 
 
1494
 
1495
- #: includes/extra-strings.php:16
1496
- #@ broken-link-checker
1497
- msgctxt "module name"
1498
- msgid "MediaFire API"
1499
- msgstr "MediaFire API"
1500
 
1501
- #: includes/extra-strings.php:17
1502
- #@ broken-link-checker
1503
- msgctxt "module name"
1504
- msgid "MegaUpload API"
1505
- msgstr "MegaUpload API"
 
1506
 
1507
- #: includes/extra-strings.php:18
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
1515
- msgctxt "module name"
1516
- msgid "RapidShare API"
1517
- msgstr "RapidShare API"
 
1518
 
1519
- #: includes/extra-strings.php:20
1520
- #@ broken-link-checker
1521
- msgctxt "module name"
1522
- msgid "Smart YouTube httpv:// URLs"
1523
- msgstr "קישורי //:httpv של Smart YouTube"
1524
 
1525
- #: includes/extra-strings.php:21
1526
- #@ broken-link-checker
1527
- msgctxt "module name"
1528
- msgid "YouTube API"
1529
- msgstr "YouTube API"
1530
 
1531
- #: includes/extra-strings.php:22
1532
- #@ broken-link-checker
1533
- msgctxt "module name"
1534
- msgid "Posts"
1535
- msgstr "פוסטים"
 
 
1536
 
1537
- #: includes/extra-strings.php:23
1538
- #@ broken-link-checker
1539
- msgctxt "module name"
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."
1555
- msgstr "מנתח (Parser) ‏'%s' לא נמצא."
1556
 
1557
- #: includes/link-query.php:26
1558
- #@ broken-link-checker
1559
- msgid "Broken"
1560
- msgstr "שבור"
 
 
1561
 
1562
- #: includes/link-query.php:28
1563
- #@ broken-link-checker
1564
- msgid "No broken links found"
1565
- msgstr "לא נמצאו קישורים שבורים"
 
 
1566
 
1567
- #: includes/link-query.php:36
1568
- #@ broken-link-checker
1569
- msgid "Redirects"
1570
- msgstr "הפניה"
 
 
1571
 
1572
- #: includes/link-query.php:37
1573
- #@ broken-link-checker
1574
- msgid "Redirected Links"
1575
- msgstr "קישורים מופנים"
 
 
 
1576
 
1577
- #: includes/link-query.php:38
1578
- #@ broken-link-checker
1579
- msgid "No redirects found"
1580
- msgstr "לא נמצאו הפניות"
 
 
1581
 
1582
- #: includes/link-query.php:46
1583
- #@ broken-link-checker
1584
- msgid "Dismissed"
1585
- msgstr "בהמתנה"
 
 
1586
 
1587
- #: includes/link-query.php:47
1588
- #@ broken-link-checker
1589
- msgid "Dismissed Links"
1590
- msgstr "קישורים בהמתנה"
 
 
1591
 
1592
- #: includes/link-query.php:48
1593
- #@ broken-link-checker
1594
- msgid "No dismissed links found"
1595
- msgstr "לא נמצאו קישורים שמתעלמים מהם"
 
 
1596
 
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
1604
- msgid "Detected Links"
1605
- msgstr "קישורים שנמצאו"
 
 
1606
 
1607
- #: includes/link-query.php:58
1608
- #@ broken-link-checker
1609
- msgid "No links found (yet)"
1610
- msgstr "לא נמצאו קישורים (עדיין)"
 
 
1611
 
1612
- #: includes/link-query.php:66
1613
- #@ broken-link-checker
1614
- msgid "Search Results"
1615
- msgstr "תוצאות החיפוש"
 
1616
 
1617
- #: includes/link-query.php:67
1618
- #: includes/link-query.php:114
1619
- #@ broken-link-checker
1620
- msgid "No links found for your query"
1621
- msgstr "לא נמצאו קישורים על פי השאילתא שלכם"
 
1622
 
1623
- #: includes/links.php:222
1624
- #@ broken-link-checker
1625
- msgid "The plugin script was terminated while trying to check the link."
1626
- msgstr "תסריט התוסף הסתיים בזמן בדיקת הקישור."
 
 
1627
 
1628
- #: includes/links.php:268
1629
- #@ broken-link-checker
1630
- msgid "The plugin doesn't know how to check this type of link."
1631
- msgstr "התוסף אינו יודע כיצד לבדוק סוג זה של קישור."
 
 
1632
 
1633
- #: includes/links.php:361
1634
- #@ broken-link-checker
1635
- msgid "Link is valid."
1636
- msgstr "הקישור תקין."
 
1637
 
1638
- #: includes/links.php:363
1639
- #@ broken-link-checker
1640
- msgid "Link is broken."
1641
- msgstr "הקישור שבור."
 
1642
 
1643
- #: includes/links.php:582
1644
- #: includes/links.php:684
1645
- #: includes/links.php:711
1646
- #@ broken-link-checker
1647
- msgid "Link is not valid"
1648
- msgstr "הקישור אינו תקין"
 
1649
 
1650
- #: includes/links.php:599
1651
- #@ broken-link-checker
1652
- msgid "This link can not be edited because it is not used anywhere on this site."
1653
- msgstr "לא ניתן לערוך את הקישור בגלל שלא נעשה בו שימוש במקום כלשהו באתר זה."
 
 
1654
 
1655
- #: includes/links.php:625
1656
- #@ broken-link-checker
1657
- msgid "Failed to create a DB entry for the new URL."
1658
- msgstr "נכשל הניסיון ליצור רשומת מסד נתונים עבור כתובת האינטרנט החדשה."
 
 
1659
 
1660
- #: includes/links.php:691
1661
- #@ broken-link-checker
1662
- msgid "This link is not a redirect"
1663
- msgstr "הקישור אינו הפניה"
 
 
1664
 
1665
- #: includes/links.php:738
1666
- #: includes/links.php:775
1667
- #@ broken-link-checker
1668
- msgid "Couldn't delete the link's database record"
1669
- msgstr "לא ניתן למחוק את רשומת מסד הנתונים של הקישור"
 
1670
 
1671
- #: includes/links.php:849
1672
- #@ broken-link-checker
1673
- msgctxt "link status"
1674
- msgid "Unknown"
1675
- msgstr "לא ידוע"
 
1676
 
1677
- #: includes/links.php:863
1678
- #: modules/checkers/http.php:289
1679
- #: modules/extras/mediafire.php:101
1680
- #@ link status
1681
- #@ broken-link-checker
1682
- msgid "Unknown Error"
1683
- msgstr "שגיאה לא ידועה"
1684
 
1685
- #: includes/links.php:887
1686
- #@ broken-link-checker
1687
- msgid "Not checked"
1688
- msgstr "טרם נבדק"
 
 
 
 
 
 
 
 
 
 
1689
 
1690
- #: includes/links.php:890
1691
- #@ broken-link-checker
1692
- msgid "False positive"
1693
- msgstr "זיהוי שגוי כשבור (False Positive)"
 
 
1694
 
1695
- #: includes/links.php:893
1696
- #: modules/extras/fileserve.php:121
1697
- #: modules/extras/megaupload.php:115
1698
- #: modules/extras/rapidshare.php:145
1699
- #: modules/extras/rapidshare.php:151
1700
- #: modules/extras/rapidshare.php:178
1701
- #@ broken-link-checker
1702
- msgctxt "link status"
1703
- msgid "OK"
1704
- msgstr "OK"
1705
-
1706
- #: includes/module-manager.php:123
1707
- #: includes/module-manager.php:140
1708
- #@ broken-link-checker
1709
- msgctxt "module name"
1710
- msgid "Name"
1711
- msgstr "שם"
1712
-
1713
- #: includes/parsers.php:109
1714
- #, php-format
1715
- #@ broken-link-checker
1716
- msgid "Editing is not implemented in the '%s' parser"
1717
- msgstr "במנתח (Parser) ‏'%s' לא מוטמעת יכולת עריכה"
1718
 
1719
- #: includes/parsers.php:124
1720
- #, php-format
1721
- #@ broken-link-checker
1722
- msgid "Unlinking is not implemented in the '%s' parser"
1723
- msgstr "הסרת קישור אינה מוטמעת במפענח '%s'"
 
1724
 
1725
- #: includes/utility-class.php:245
1726
- #, php-format
1727
- #@ broken-link-checker
1728
- msgid "%d second"
1729
- msgid_plural "%d seconds"
1730
- msgstr[0] "%d שניה"
1731
- msgstr[1] "%d שניות"
1732
-
1733
- #: includes/utility-class.php:246
1734
- #, php-format
1735
- #@ broken-link-checker
1736
- msgid "%d second ago"
1737
- msgid_plural "%d seconds ago"
1738
- msgstr[0] "לפני %d שניה"
1739
- msgstr[1] "לפני %d שניות"
1740
-
1741
- #: includes/utility-class.php:249
1742
- #, php-format
1743
- #@ broken-link-checker
1744
- msgid "%d minute"
1745
- msgid_plural "%d minutes"
1746
- msgstr[0] "%d דקה"
1747
- msgstr[1] "%d דקות"
1748
-
1749
- #: includes/utility-class.php:250
1750
- #, php-format
1751
- #@ broken-link-checker
1752
- msgid "%d minute ago"
1753
- msgid_plural "%d minutes ago"
1754
- msgstr[0] "לפני %d דקה"
1755
- msgstr[1] "לפני %d דקות"
1756
-
1757
- #: includes/utility-class.php:253
1758
- #, php-format
1759
- #@ broken-link-checker
1760
- msgid "%d hour"
1761
- msgid_plural "%d hours"
1762
- msgstr[0] "%d שעה"
1763
- msgstr[1] "%d שעות"
1764
-
1765
- #: includes/utility-class.php:254
1766
- #, php-format
1767
- #@ broken-link-checker
1768
- msgid "%d hour ago"
1769
- msgid_plural "%d hours ago"
1770
- msgstr[0] "לפני %d שעה"
1771
- msgstr[1] "לפני %d שעות"
1772
-
1773
- #: includes/utility-class.php:257
1774
- #, php-format
1775
- #@ broken-link-checker
1776
- msgid "%d day"
1777
- msgid_plural "%d days"
1778
- msgstr[0] "%d יום"
1779
- msgstr[1] "%d ימים"
1780
-
1781
- #: includes/utility-class.php:258
1782
- #, php-format
1783
- #@ broken-link-checker
1784
- msgid "%d day ago"
1785
- msgid_plural "%d days ago"
1786
- msgstr[0] "לפני %d יום"
1787
- msgstr[1] "לפני %d ימים"
1788
-
1789
- #: includes/utility-class.php:261
1790
- #, php-format
1791
- #@ broken-link-checker
1792
- msgid "%d month"
1793
- msgid_plural "%d months"
1794
- msgstr[0] "%d חודש"
1795
- msgstr[1] "%d חודשים"
1796
-
1797
- #: includes/utility-class.php:262
1798
- #, php-format
1799
- #@ broken-link-checker
1800
- msgid "%d month ago"
1801
- msgid_plural "%d months ago"
1802
- msgstr[0] "לפני %d חודש"
1803
- msgstr[1] "לפני %d חודשים"
1804
-
1805
- #: modules/checkers/http.php:268
1806
- #@ broken-link-checker
1807
- msgid "Server Not Found"
1808
- msgstr "שרת לא נמצא"
1809
 
1810
- #: modules/checkers/http.php:283
1811
- #@ broken-link-checker
1812
- msgid "Connection Failed"
1813
- msgstr "ההתקשרות נכשלה"
 
 
1814
 
1815
- #: modules/checkers/http.php:318
1816
- #: modules/checkers/http.php:388
1817
- #, php-format
1818
- #@ broken-link-checker
1819
- msgid "HTTP code : %d"
1820
- msgstr "קוד HTTP: ‏%d"
 
1821
 
1822
- #: modules/checkers/http.php:320
1823
- #: modules/checkers/http.php:390
1824
- #@ broken-link-checker
1825
- msgid "(No response)"
1826
- msgstr "(אין תגובה)"
 
1827
 
1828
- #: modules/checkers/http.php:326
1829
- #@ broken-link-checker
1830
- msgid "Most likely the connection timed out or the domain doesn't exist."
1831
- msgstr "קיימת סבירות גבוהה שההתקשרות הסתיימה בגלל היעדר תגובה מהשרת המארח את עמוד היעד של הקישור"
 
 
1832
 
1833
- #: modules/checkers/http.php:397
1834
- #@ broken-link-checker
1835
- msgid "Request timed out."
1836
- msgstr "זמן המתנה מקסימלי (Timeout) לבקשה."
 
 
1837
 
1838
- #: modules/checkers/http.php:415
1839
- #@ broken-link-checker
1840
- msgid "Using Snoopy"
1841
- msgstr "עושה שימוש ב-Snoopy"
 
 
 
 
1842
 
1843
- #: modules/containers/blogroll.php:21
1844
- #@ broken-link-checker
1845
- msgid "Bookmark"
1846
- msgstr "סימניה"
 
1847
 
1848
- #: modules/containers/blogroll.php:27
1849
- #: modules/containers/blogroll.php:46
1850
- #@ broken-link-checker
1851
- msgid "Edit this bookmark"
1852
- msgstr "עריכת סימניה זו"
 
 
1853
 
1854
- #: modules/containers/blogroll.php:47
1855
- #, php-format
1856
- #@ default
1857
- msgid ""
1858
- "You are about to delete this link '%s'\n"
1859
- " 'Cancel' to stop, 'OK' to delete."
1860
- msgstr ""
1861
- "אתם עומדים למחוק את הקישור הזה '%s'\n"
1862
- ". הקליקו 'ביטול' לעצירה, או 'OK' למחיקה."
1863
 
1864
- #: modules/containers/blogroll.php:97
1865
- #, php-format
1866
- #@ broken-link-checker
1867
- msgid "Updating bookmark %d failed"
1868
- msgstr "עדכון הסימניה %d נכשל"
 
1869
 
1870
- #: modules/containers/blogroll.php:128
1871
- #, php-format
1872
- #@ broken-link-checker
1873
- msgid "Failed to delete blogroll link \"%s\" (%d)"
1874
- msgstr "נכשל הניסיון למחוק את קישור הבלוגרול \"%s\" (%d)"
 
1875
 
1876
- #: modules/containers/blogroll.php:299
1877
- #, php-format
1878
- #@ broken-link-checker
1879
- msgid "%d blogroll link deleted."
1880
- msgid_plural "%d blogroll links deleted."
1881
- msgstr[0] "קישור הבלוגרול %d נמחק."
1882
- msgstr[1] "קישורי הבלוגרול %d נמחקו."
1883
-
1884
- #: modules/containers/comment.php:53
1885
- #, php-format
1886
- #@ broken-link-checker
1887
- msgid "Updating comment %d failed"
1888
- msgstr "עדכון התגובה %d נכשל"
1889
 
1890
- #: modules/containers/comment.php:74
1891
- #, php-format
1892
- #@ broken-link-checker
1893
- msgid "Failed to delete comment %d"
1894
- msgstr "נכשל הניסיון למחוק את התגובה %d"
 
1895
 
1896
- #: modules/containers/comment.php:95
1897
- #, php-format
1898
- #@ broken-link-checker
1899
- msgid "Can't move comment %d to the trash"
1900
- msgstr "לא ניתן להעביר את התגובה %d לפח"
 
1901
 
1902
- #: modules/containers/comment.php:153
1903
- #: modules/containers/comment.php:195
1904
- #@ default
1905
- msgid "Edit comment"
1906
- msgstr "עריכת הערה"
1907
-
1908
- #: modules/containers/comment.php:160
1909
- #@ default
1910
- msgid "Delete Permanently"
1911
- msgstr "מחיקה מוחלטת"
1912
-
1913
- #: modules/containers/comment.php:162
1914
- #@ default
1915
- msgid "Move this comment to the trash"
1916
- msgstr "העברת ההערה הזו לסל המחזור"
1917
-
1918
- #: modules/containers/comment.php:162
1919
- #@ default
1920
- msgctxt "verb"
1921
- msgid "Trash"
1922
- msgstr "סל מחזור"
1923
-
1924
- #: modules/containers/comment.php:166
1925
- #@ broken-link-checker
1926
- msgid "View comment"
1927
- msgstr "צפיה בתגובה"
1928
 
1929
- #: modules/containers/comment.php:183
1930
- #@ broken-link-checker
1931
- msgid "Comment"
1932
- msgstr "תגובה"
 
 
 
1933
 
1934
- #: modules/containers/comment.php:356
1935
- #, php-format
1936
- #@ broken-link-checker
1937
- msgid "%d comment has been deleted."
1938
- msgid_plural "%d comments have been deleted."
1939
- msgstr[0] "התגובה %d נמחקה."
1940
- msgstr[1] "התגובות %d נמחקו."
1941
-
1942
- #: modules/containers/comment.php:375
1943
- #, php-format
1944
- #@ broken-link-checker
1945
- msgid "%d comment moved to the Trash."
1946
- msgid_plural "%d comments moved to the Trash."
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\""
1971
- msgstr "צפיה ב-\"%s\""
 
1972
 
1973
- #: modules/containers/dummy.php:34
1974
- #: modules/containers/dummy.php:45
1975
- #, php-format
1976
- #@ broken-link-checker
1977
- msgid "I don't know how to edit a '%s' [%d]."
1978
- msgstr "התוסף אינו מסוגל לערוך את '%s' [%d]."
1979
 
1980
- #: modules/extras/dailymotion-embed.php:23
1981
- #@ broken-link-checker
1982
- msgid "DailyMotion Video"
1983
- msgstr "וידיאו של DailyMotion"
 
 
1984
 
1985
- #: modules/extras/dailymotion-embed.php:24
1986
- #@ broken-link-checker
1987
- msgid "Embedded DailyMotion video"
1988
- msgstr "וידיאו מוטמע של DailyMotion"
 
 
1989
 
1990
- #: modules/extras/embed-parser-base.php:197
1991
- #@ broken-link-checker
1992
- msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
1993
- msgstr "סרטוני וידיאו מוטמעים אינם ניתנים לעריכה בעזרת תוסף זה. בבקשה בצעו עריכה או החלפה של הוידיאו המדובר באופן ידני."
 
 
 
1994
 
1995
- #: modules/extras/fileserve.php:55
1996
- #@ broken-link-checker
1997
- msgid "Using FileServe API"
1998
- msgstr "משתמש ב-FileServe API"
1999
-
2000
- #: modules/extras/fileserve.php:112
2001
- #: modules/extras/mediafire.php:91
2002
- #: modules/extras/mediafire.php:96
2003
- #: modules/extras/megaupload.php:81
2004
- #: modules/extras/megaupload.php:123
2005
- #: modules/extras/rapidshare.php:139
2006
- #@ broken-link-checker
2007
- msgid "Not Found"
2008
- msgstr "לא נמצא"
2009
 
2010
- #: modules/extras/fileserve.php:115
2011
- #, php-format
2012
- #@ broken-link-checker
2013
- msgid "FileServe : %d %s"
2014
- msgstr "FileServe : %d %s"
 
 
2015
 
2016
- #: modules/extras/googlevideo-embed.php:24
2017
- #@ broken-link-checker
2018
- msgid "GoogleVideo Video"
2019
- msgstr "וידיאו של GoogleVideo"
 
 
2020
 
2021
- #: modules/extras/googlevideo-embed.php:25
2022
- #@ broken-link-checker
2023
- msgid "Embedded GoogleVideo video"
2024
- msgstr "ודיאו מוטמע של GoogleVideo"
 
 
2025
 
2026
- #: modules/extras/megaupload.php:130
2027
- #@ broken-link-checker
2028
- msgid "File Temporarily Unavailable"
2029
- msgstr "קובץ זמנית לא זמין"
 
 
2030
 
2031
- #: modules/extras/megaupload.php:136
2032
- #@ broken-link-checker
2033
- msgid "API Error"
2034
- msgstr "שגיאת API"
 
 
2035
 
2036
- #: modules/extras/megavideo-embed.php:24
2037
- #@ broken-link-checker
2038
- msgid "Megavideo Video"
2039
- msgstr "וידיאו של Megavideo"
 
 
 
2040
 
2041
- #: modules/extras/megavideo-embed.php:25
2042
- #@ broken-link-checker
2043
- msgid "Embedded Megavideo video"
2044
- msgstr "וידיאו מוטמע של Megavideo"
 
 
2045
 
2046
- #: modules/extras/rapidshare.php:51
2047
- #@ broken-link-checker
2048
- msgid "Using RapidShare API"
2049
- msgstr "משתמש ב-API של RapidShare"
 
 
2050
 
2051
- #: modules/extras/rapidshare.php:158
2052
- #@ broken-link-checker
2053
- msgid "RS Server Down"
2054
- msgstr "שרת RS לא עונה"
 
 
2055
 
2056
- #: modules/extras/rapidshare.php:165
2057
- #@ broken-link-checker
2058
- msgid "File Blocked"
2059
- msgstr "הקובץ נחסם"
 
 
2060
 
2061
- #: modules/extras/rapidshare.php:172
2062
- #@ broken-link-checker
2063
- msgid "File Locked"
2064
- msgstr "הקובץ נעול"
 
 
2065
 
2066
- #: modules/extras/rapidshare.php:183
2067
- #, php-format
2068
- #@ broken-link-checker
2069
- msgid "RapidShare : %s"
2070
- msgstr "RapidShare : %s"
 
2071
 
2072
- #: modules/extras/rapidshare.php:189
2073
- #, php-format
2074
- #@ broken-link-checker
2075
- msgid "RapidShare API error: %s"
2076
- msgstr "שגיאת API של RapidShare: ‏%s"
 
2077
 
2078
- #: modules/extras/vimeo-embed.php:24
2079
- #@ broken-link-checker
 
 
 
2080
  msgid "Vimeo Video"
2081
  msgstr "וידיאו של Vimeo"
2082
 
2083
- #: modules/extras/vimeo-embed.php:25
2084
- #@ broken-link-checker
2085
- msgid "Embedded Vimeo video"
2086
- msgstr "וידיאו מוטמע של Vimeo"
 
 
 
2087
 
2088
- #: modules/extras/youtube-embed.php:24
2089
- #: modules/extras/youtube-iframe.php:25
2090
- #@ broken-link-checker
 
2091
  msgid "YouTube Video"
2092
  msgstr "וידיאו של YouTube"
2093
 
2094
- #: modules/extras/youtube-embed.php:25
2095
- #: modules/extras/youtube-iframe.php:26
2096
- #@ broken-link-checker
2097
- msgid "Embedded YouTube video"
2098
- msgstr "וידיאו מוטמע של YouTube"
 
 
2099
 
2100
- #: modules/extras/youtube-playlist-embed.php:24
2101
- #@ broken-link-checker
 
 
2102
  msgid "YouTube Playlist"
2103
  msgstr "רשימת הקרנה של YouTube"
2104
 
2105
- #: modules/extras/youtube-playlist-embed.php:25
2106
- #@ broken-link-checker
2107
- msgid "Embedded YouTube playlist"
2108
- msgstr "רשימת הקרנה מוטמעת של YouTube"
 
 
 
 
 
 
 
 
 
 
2109
 
2110
- #: modules/extras/youtube.php:124
2111
- #: modules/extras/youtube.php:127
2112
- #@ broken-link-checker
2113
- msgid "Video Not Found"
2114
- msgstr "הוידיאו לא נמצא"
 
 
2115
 
2116
- #: modules/extras/youtube.php:135
2117
- #@ broken-link-checker
2118
- msgid "Video Removed"
2119
- msgstr "הוידיאו הוסר"
 
 
 
2120
 
2121
- #: modules/extras/youtube.php:143
2122
- #@ broken-link-checker
2123
- msgid "Invalid Video ID"
2124
- msgstr "קוד זיהוי וידיאו לא תקין"
 
 
 
2125
 
2126
- #: modules/extras/youtube.php:155
2127
- #@ broken-link-checker
2128
- msgid "Video OK"
2129
- msgstr "הוידיאו תקין"
 
 
2130
 
2131
- #: modules/extras/youtube.php:156
2132
- #: modules/extras/youtube.php:177
2133
- #: modules/extras/youtube.php:249
2134
- #: modules/extras/youtube.php:289
2135
- #@ link status
2136
- msgid "OK"
2137
- msgstr "OK"
2138
 
2139
- #: modules/extras/youtube.php:170
2140
- #: modules/extras/youtube.php:271
2141
- #, php-format
2142
- #@ broken-link-checker
2143
- msgid "Video status : %s%s"
2144
- msgstr "מצב הוידיאו: %s%s"
 
2145
 
2146
- #: modules/extras/youtube.php:182
2147
- #: modules/extras/youtube.php:280
2148
- #@ broken-link-checker
2149
- msgid "Video Restricted"
2150
- msgstr "הגישה לוידיאו מוגבלת"
 
2151
 
2152
- #: modules/extras/youtube.php:199
2153
- #: modules/extras/youtube.php:305
2154
- #@ default
2155
- msgid "Unknown YouTube API response received."
2156
- msgstr "התקבלה תגובת YouTube API לא מוכרת."
 
 
 
 
 
 
 
 
2157
 
2158
- #: modules/extras/youtube.php:217
2159
- #: modules/extras/youtube.php:220
2160
- #@ broken-link-checker
 
2161
  msgid "Playlist Not Found"
2162
  msgstr "לא נמצאה רשימת הקרנה"
2163
 
2164
- #: modules/extras/youtube.php:227
2165
- #@ broken-link-checker
2166
- msgid "Playlist Restricted"
2167
- msgstr "רשימת ההקרנה מוגבלת"
 
 
2168
 
2169
- #: modules/extras/youtube.php:234
2170
- #@ broken-link-checker
2171
- msgid "Invalid Playlist"
2172
- msgstr "רשימת הקרנה לא תקינה"
 
 
2173
 
2174
- #: modules/extras/youtube.php:248
2175
- #@ broken-link-checker
2176
- msgid "Playlist OK"
2177
- msgstr "רשימת ההקרנה תקינה"
 
 
2178
 
2179
- #: modules/extras/youtube.php:255
2180
- #@ broken-link-checker
2181
- msgid "This playlist has no entries or all entries have been deleted."
2182
- msgstr "אין ברשימת ההתקנה רשומות בכלל או שכל הרשומות נמחקו."
 
 
2183
 
2184
- #: modules/extras/youtube.php:256
2185
- #@ link status
2186
- msgid "Empty Playlist"
2187
- msgstr "רשימת הקרנה ריקה"
 
 
2188
 
2189
- #: modules/parsers/image.php:164
2190
- #@ broken-link-checker
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:839
2200
- #@ broken-link-checker
2201
- msgctxt "settings page"
2202
- msgid "Suggestions"
2203
- msgstr "הצעות לקישור חלופי מארכיב אינטרנט"
 
2204
 
2205
- #: core/core.php:845
2206
- #@ broken-link-checker
2207
- msgid "Suggest alternatives to broken links"
2208
- msgstr "לקישורים שבורים יוצעו אפשרויות לקישור חלופי מאתר <a href=\"http://archive.org/web/\" target=\\\"_blank\\\">ארכיב אינטרנט</a>.<br> אפשרות זו מתאימה בעיקר למקרה בו העמוד המדובר (או אפילו האתר כולו) כבר לא קיים בכלל באינטרנט, ולכן עדיף לפחות לתת קישור לעמוד ארכיב של עמוד המקור במקום להסיר לגמרי את הקישור."
 
 
2209
 
2210
- #: core/core.php:1290
2211
- #@ broken-link-checker
2212
- msgid "Enter the names of custom fields you want to check (one per line). If a field contains HTML code, prefix its name with <code>html:</code>. For example, <code>html:field_name</code>."
2213
- msgstr "הזינו את שמות השדות המותאמים שברצונכם לבדוק (שם אחד בכל שורה). אם השדה מכיל קוד HTML, הוסיפו לשם השדה קידומת של <code>html:</code>. למשל <code>html:field_name</code>"
 
 
2214
 
2215
- #: core/core.php:2734
2216
- #@ broken-link-checker
2217
- msgid "An unexpected error occurred!"
2218
- msgstr "התרחשה שגיאה לא צפויה!"
 
 
2219
 
2220
- #: includes/admin/links-page-js.php:243
2221
- #@ broken-link-checker
2222
- msgctxt "link text"
2223
- msgid "(None)"
2224
- msgstr "(לא קיים)"
 
2225
 
2226
- #: includes/admin/links-page-js.php:244
2227
- #@ broken-link-checker
2228
- msgctxt "link text"
2229
- msgid "(Multiple links)"
2230
- msgstr "(הקישור משויך למספר טקסטים במקביל)"
 
2231
 
2232
- #: includes/admin/links-page-js.php:302
2233
- #@ broken-link-checker
2234
- msgctxt "link suggestions"
2235
- msgid "Searching..."
2236
- msgstr "מחפש..."
 
2237
 
2238
- #: includes/admin/links-page-js.php:303
2239
- #@ broken-link-checker
2240
- msgctxt "link suggestions"
2241
- msgid "No suggestions available."
2242
- msgstr "לא נמצאו הצעות."
 
2243
 
2244
- #: includes/admin/links-page-js.php:304
2245
- #, php-format
2246
- #@ broken-link-checker
2247
- msgctxt "link suggestions"
2248
- msgid "Archived page from %s (via the Wayback Machine)"
2249
- msgstr "עמוד ארכיב מתאריך %s (דרך ארכיב אינטרנט)"
2250
 
2251
- #: includes/admin/links-page-js.php:402
2252
- #@ broken-link-checker
2253
- msgid "The following error(s) occurred :"
2254
- msgstr "השגיאה(ות) הבאה(ות) התרחשה(ו): "
 
 
2255
 
2256
- #: includes/admin/links-page-js.php:488
2257
- #@ broken-link-checker
2258
- msgid "Error: Link URL must not be empty."
2259
- msgstr "שגיאה: קישור כתובת האינטרנט לא יכול להיות ריק."
 
 
 
 
2260
 
2261
- #: includes/admin/table-printer.php:654
2262
- #@ broken-link-checker
2263
- msgid "Edit this link"
2264
- msgstr "עריכת הקישור הזה"
 
 
2265
 
2266
- #: includes/admin/table-printer.php:792
2267
- #@ broken-link-checker
2268
- msgctxt "inline editor title"
2269
- msgid "Edit Link"
2270
- msgstr "עריכת הקישור"
 
2271
 
2272
- #: includes/admin/table-printer.php:795
2273
- #@ broken-link-checker
2274
- msgctxt "inline link editor"
2275
- msgid "Text"
2276
- msgstr "טקסט"
2277
 
2278
- #: includes/admin/table-printer.php:800
2279
- #@ broken-link-checker
2280
- msgctxt "inline link editor"
2281
- msgid "URL"
2282
- msgstr "כתובת"
 
 
2283
 
2284
- #: includes/admin/table-printer.php:805
2285
- #@ broken-link-checker
2286
- msgctxt "inline link editor"
2287
- msgid "Suggestions"
2288
- msgstr "הצעות מארכיב האינטרנט"
 
2289
 
2290
- #: includes/admin/table-printer.php:825
2291
- #@ broken-link-checker
2292
- msgid "Use this URL"
2293
- msgstr "החלפה לכתובת הזו"
 
 
2294
 
2295
- #: core/core.php:1090
2296
- #@ broken-link-checker
2297
- msgid "Logging"
2298
- msgstr "רישום אירועי התוסף (Logging)"
 
 
2299
 
2300
- #: core/core.php:1096
2301
- #@ broken-link-checker
2302
- msgid "Enable logging"
2303
- msgstr "הפעל רישום אירועי התוסף"
 
 
2304
 
2305
- #: core/core.php:1103
2306
- #@ broken-link-checker
2307
- msgid "Log file location"
2308
- msgstr "מיקום קובץ רישום אירועי התוסף"
 
 
2309
 
2310
- #: core/core.php:1112
2311
- #@ broken-link-checker
2312
- msgctxt "log file location"
2313
- msgid "Default"
2314
- msgstr "ברירת מחדל"
 
2315
 
2316
- #: core/core.php:1126
2317
- #@ broken-link-checker
2318
- msgctxt "log file location"
2319
- msgid "Custom"
2320
- msgstr "מיקום מותאם"
2321
 
2322
- #: core/init.php:335
2323
- #@ broken-link-checker
2324
- msgid "Please activate the plugin separately on each site. Network activation is not supported."
2325
- msgstr "בבקשה הפעל את התוסף בנפרד עבור כל אתר. הפעלת רשת אינה נתמכת."
 
 
 
 
 
 
 
 
2326
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This file was generated by WPML
2
+ # WPML is a WordPress plugin that can turn any WordPress or WordPressMU site into a full featured multilingual content management system.
3
+ # https://wpml.org
4
  msgid ""
5
  msgstr ""
 
 
 
 
 
 
 
6
  "Content-Type: text/plain; charset=UTF-8\n"
7
  "Content-Transfer-Encoding: 8bit\n"
8
+ "Project-Id-Version: broken-link-checker\n"
9
+ "POT-Creation-Date: \n"
10
+ "PO-Revision-Date: \n"
11
+ "Last-Translator: Ahrale <contact@atar4u.com>\n"
12
+ "Language-Team: Ahrale | Atar4U.com <contact@atar4u.com>\n"
13
+ "Language: he\n"
14
+ "MIME-Version: 1.0\n"
15
+ "X-Generator: Poedit 1.7.4\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
+ # wpml-name: a68161ef21983e22f167f20eea174f5f
19
+ #: 'not_implemented', sprintf(__("Unlinking is not implemented in the '%s'
20
+ #: parser", 'broken-link-checker'), $this->parser_type) );
21
+ msgctxt "4ddd94f026305b6feaceb07fcab5b948"
22
+ msgid "Unlinking is not implemented in the '%s' parser"
23
+ msgstr "הסרת קישור אינה מוטמעת במפענח '%s'"
24
 
25
+ # wpml-name: 1b57e25dbd2e30ca868f3d2a12107507
26
+ #: 'not_implemented', sprintf(__("Editing is not implemented in the '%s'
27
+ #: parser", 'broken-link-checker'), $this->parser_type) );
28
+ msgctxt "67a6a76c8aa475dbc7f8b3840fdae436"
29
+ msgid "Editing is not implemented in the '%s' parser"
30
+ msgstr "במנתח (Parser) ‏'%s' לא מוטמעת יכולת עריכה"
31
 
32
+ # wpml-name: c70ee8b8a06772f685c4554355826caf
33
+ #: 'update_failed', sprintf(__('Updating post %d failed',
34
+ #: 'broken-link-checker'), $this->container_id) );
35
+ msgctxt "665556eeed92c333b4bb737a3dccea5c"
36
+ msgid "Updating post %d failed"
37
+ msgstr "עדכון הפוסט %d נכשל"
38
 
39
+ # wpml-name: module name: Pages
40
+ #: _x("Posts", "module name", "broken-link-checker"); _x("Pages",
41
+ msgctxt "a6700ad3c40a5ffd407eced9ca773f9e"
42
+ msgid "Pages"
43
+ msgstr "עמודים"
44
 
45
+ # wpml-name: module name: Posts
46
+ #: _x("YouTube API", "module name", "broken-link-checker"); _x("Posts",
47
+ #: _x("Pages",
48
+ msgctxt "6590167e5f3e16d1a259622767bc18d5"
49
+ msgid "Posts"
50
+ msgstr "פוסטים"
51
 
52
+ # wpml-name: module name: YouTube API
53
+ #: _x("Smart YouTube httpv:// URLs", "module name", "broken-link-checker");
54
+ #: _x("YouTube API", _x("Posts",
55
+ msgctxt "430017dc48ea29389ec519c18f38a015"
56
+ msgid "YouTube API"
57
+ msgstr " API של YouTube"
58
 
59
+ # wpml-name: module name: Smart YouTube httpv:// URLs
60
+ #: _x("RapidShare API", "module name", "broken-link-checker"); _x("Smart
61
+ #: YouTube httpv:// URLs", _x("YouTube
62
+ msgctxt "3494ec8690c75fe3ece42a43d96d5ead"
63
+ msgid "Smart YouTube httpv:// URLs"
64
+ msgstr "כתובת URL חכמות של YouTube"
65
 
66
+ # wpml-name: module name: RapidShare API
67
+ #: _x("Plaintext URLs", "module name", "broken-link-checker"); _x("RapidShare
68
+ #: API", _x("Smart YouTube httpv://
69
+ msgctxt "4607b3d610379e1c93cc9f38cabf873f"
70
+ msgid "RapidShare API"
71
+ msgstr "API של RapidShare"
72
 
73
+ # wpml-name: module name: Plaintext URLs
74
+ #: _x("MediaFire API", "module name", "broken-link-checker"); _x("Plaintext
75
+ #: URLs", _x("RapidShare
76
+ msgctxt "21c8f0c2842fc7eae0ca2fdebebb5848"
77
+ msgid "Plaintext URLs"
78
+ msgstr "כתובות URL בטקסט פשוט"
79
 
80
+ # wpml-name: module name: MediaFire API
81
+ #: _x("HTML links", "module name", "broken-link-checker"); _x("MediaFire API",
82
+ #: _x("Plaintext URLs",
83
+ msgctxt "d64d42805d2eedcd4901f317a78a8ea6"
84
+ msgid "MediaFire API"
85
+ msgstr "API של MediaFire"
86
 
87
+ # wpml-name: module name: HTML links
88
+ #: _x("HTML images", "module name", "broken-link-checker"); links",
89
+ #: _x("MediaFire API",
90
+ msgctxt "4a51e4d801cb74aeb3eb2766e7fd0696"
91
+ msgid "HTML links"
92
+ msgstr "קישורי HTML"
93
 
94
+ # wpml-name: module name: HTML images
95
+ #: _x("Embedded YouTube videos (old embed code)", "module name",
96
+ #: "broken-link-checker"); _x("HTML images", links",
97
+ msgctxt "c0b675b6f618426a1580b6d8c0fa7525"
98
+ msgid "HTML images"
99
+ msgstr "תמונות HTML"
100
 
101
+ # wpml-name: module name: Embedded YouTube videos (old embed code)
102
+ #: _x("Embedded YouTube videos", "module name", "broken-link-checker"); videos
103
+ #: (old embed code)", _x("HTML images",
104
+ msgctxt "690b7c742b295b95c9d7edd7f0ce27b7"
105
+ msgid "Embedded YouTube videos (old embed code)"
106
+ msgstr "סרטונים מוטמעים של YouTube (קוד הטמעה ישן)"
107
 
108
+ # wpml-name: module name: Embedded YouTube videos
109
+ #: _x("Embedded YouTube playlists (old embed code)", "module name",
110
+ #: "broken-link-checker"); videos", videos
111
+ msgctxt "b8b661a915e9ab42f801facc7abbc47f"
112
+ msgid "Embedded YouTube videos"
113
+ msgstr "סרטונים מוטמעים של YouTube"
114
 
115
+ # wpml-name: module name: Embedded YouTube playlists (old embed code)
116
+ #: _x("Embedded Vimeo videos", "module name", "broken-link-checker"); YouTube
117
+ #: playlists (old embed code)",
118
+ msgctxt "866ef096a69d0ef480fea64e679f2ac1"
119
+ msgid "Embedded YouTube playlists (old embed code)"
120
+ msgstr "רשימות השמעה מוטמעות מ YouTube"
121
 
122
+ # wpml-name: module name: Embedded Vimeo videos
123
+ #: _x("Embedded GoogleVideo videos", "module name", "broken-link-checker");
124
+ #: Vimeo YouTube playlists (old embed code)",
125
+ msgctxt "0a16d4445ad94ce3dfc9ed40d20b050c"
126
+ msgid "Embedded Vimeo videos"
127
+ msgstr "סרטונים מוטמעים מ Vimeo"
128
 
129
+ # wpml-name: module name: Embedded GoogleVideo videos
130
+ #: _x("Embedded DailyMotion videos", "module name", "broken-link-checker");
131
+ #: GoogleVideo Vimeo
132
+ msgctxt "a1f5f23a564970d60b09804fa6d4aa62"
133
+ msgid "Embedded GoogleVideo videos"
134
+ msgstr "סרטונים מוטמעים מ GoogleVideo"
135
 
136
+ # wpml-name: module name: Embedded DailyMotion videos
137
+ #: _x("Custom fields", "module name", "broken-link-checker"); _x("Embedded
138
+ #: DailyMotion videos", GoogleVideo
139
+ msgctxt "95889181a59f12ce8d918758f32604c7"
140
+ msgid "Embedded DailyMotion videos"
141
+ msgstr "סרטונים מוטמעים מ DailyMotion"
142
 
143
+ # wpml-name: module name: Custom fields
144
+ #: _x("Comments", "module name", "broken-link-checker"); _x("Custom fields",
145
+ #: _x("Embedded DailyMotion videos",
146
+ msgctxt "bab2ee0471e797f9114215c9bb35c215"
147
+ msgid "Custom fields"
148
+ msgstr "שדות"
149
 
150
+ # wpml-name: module name: Comments
151
+ #: _x("Blogroll items", "module name", "broken-link-checker"); _x("Comments",
152
+ #: _x("Custom fields",
153
+ msgctxt "f632a84b5bd7a04cb8ec88c9dab2c1e8"
154
+ msgid "Comments"
155
+ msgstr "תגובות "
156
 
157
+ # wpml-name: module name: Blogroll items
158
+ #: _x("Basic HTTP", "module name", "broken-link-checker"); _x("Blogroll
159
+ #: items", _x("Comments",
160
+ msgctxt "77dcd27d726dc2da2693cf8544753bbb"
161
+ msgid "Blogroll items"
162
+ msgstr "פריטי בלוגרול"
163
 
164
+ # wpml-name: module name: Basic HTTP
165
+ #: <?php _x("Basic HTTP", "module name", "broken-link-checker"); _x("Blogroll
166
+ #: items",
167
+ msgctxt "ec8331ed7fc29a09d37074270750cd80"
168
+ msgid "Basic HTTP"
169
+ msgstr "HTTP בסיסי"
170
 
171
+ # wpml-name: 6f54db3980b8a5ca094e8d9e5c548dca
172
+ #: 'parser_not_found', sprintf(__("Parser '%s' not found.",
173
+ #: 'broken-link-checker'), $this->parser_type) );
174
+ msgctxt "521e5e13f86da7f50fb62dec7bcb4c48"
175
+ msgid "Parser '%s' not found."
176
+ msgstr "מנתח (Parser) ‏'%s' לא נמצא."
177
 
178
+ # wpml-name: 1c70e5fa74a99c1e0e7476093d7a8ea4
179
+ #: 'container_not_found', sprintf(__("Container %s[%d] not found",
180
+ #: 'broken-link-checker'), $this->container_type, $this->container_id) );
181
+ msgctxt "b1378f58d000c3d17bce122baa0c2bdf"
182
+ msgid "Container %s[%d] not found"
183
+ msgstr "מיכל (Container) ‏%s[%d] לא נמצא"
184
 
185
+ # wpml-name: 834fab4d2f4eb202294de9498a2f5aac
186
+ #: if ( is_null($manager) ){ return sprintf(__("Container type '%s' not
187
+ #: recognized", 'broken-link-checker'), $container_type); } else {
188
+ msgctxt "921d5b6f327204cdc1ee6a900910509e"
189
+ msgid "Container type '%s' not recognized"
190
+ msgstr "מיכל (Container) מסוג '%s' אינו מזוהה"
191
 
192
+ # wpml-name: 2ee62a347c0592e65c25192e3be0e503
193
+ #: } elseif ( $this->false_positive ) { $text = __('False positive',
194
+ #: 'broken-link-checker'); $code BLC_LINK_STATUS_UNKNOWN;
195
+ msgctxt "cbad8eb3eca341b76c2873c3a6cdb494"
196
+ msgid "False positive"
197
+ msgstr "זיהוי שגוי כשבור (False Positive)"
198
 
199
+ # wpml-name: 170635e560a679be3d1a532e2979d08c
200
+ #: if ( !$this->last_check ) { $text = __('Not checked',
201
+ #: 'broken-link-checker'); $code BLC_LINK_STATUS_UNKNOWN;
202
+ msgctxt "548b063e14e0edf16f2cfc9a2f2e5a1e"
203
+ msgid "Not checked"
204
+ msgstr "טרם נבדק"
205
 
206
+ # wpml-name: c4b6eb84d2e8b2180118c89ab217350d
207
+ #: "deletion_failed", __("Couldn't delete the link's database record",
208
+ #: 'broken-link-checker') )
209
+ msgctxt "2ceb3d66afee16b835f3d492e406c42f"
210
+ msgid "Couldn't delete the link's database record"
211
+ msgstr "לא ניתן למחוק את רשומת מסד הנתונים של הקישור"
212
 
213
+ # wpml-name: d9db92ab73fdfe3e8e9f590e51e512b7
214
+ #: 'not_redirect', __("This link is not a redirect", 'broken-link-checker') );
215
+ msgctxt "f2c39270f442b5687ebb93d3effd4dcf"
216
+ msgid "This link is not a redirect"
217
+ msgstr "הקישור אינו הפניה"
218
 
219
+ # wpml-name: fdda5c7af599771fdeb6d4d732281f3a
220
+ #: 'link_creation_failed', __('Failed to create a DB entry for the new URL.',
221
+ #: 'broken-link-checker') )
222
+ msgctxt "1531b03192f9680fcd9e1cc4039c014c"
223
+ msgid "Failed to create a DB entry for the new URL."
224
+ msgstr "נכשל הניסיון ליצור רשומת מסד נתונים עבור כתובת האינטרנט החדשה."
225
 
226
+ # wpml-name: 60f8077d843d5254f8b8f7b8b173ca12
227
+ #: 'no_instances_found', __('This link can not be edited because it is used
228
+ #: anywhere on this site.', 'broken-link-checker') )
229
+ msgctxt "4063fb7cfd86b95aed647bd05a005a52"
230
+ msgid "This link can not be edited because it is not used anywhere on this site."
231
+ msgstr "לא ניתן לערוך את הקישור בגלל שלא נעשה בו שימוש במקום כלשהו באתר זה."
232
 
233
+ # wpml-name: 66cfa2a7fc4855a618359ea8b36aa815
234
+ #: 'link_invalid', __("Link is not valid", 'broken-link-checker') );
235
+ msgctxt "6e049ce9377857e283a6b59537eadb1a"
236
+ msgid "Link is not valid"
237
+ msgstr "הקישור אינו תקין"
238
 
239
+ # wpml-name: 9fd74a107e4ecb9b0d92d6e33f651706
240
+ #: } else { $this->log .= "\n" . __("Link is valid.", 'broken-link-checker');
241
+ msgctxt "da61f652b787542e25582dea23eea3fb"
242
+ msgid "Link is valid."
243
+ msgstr "הקישור תקין."
244
 
245
+ # wpml-name: eac10e45a78c5b79d262dd25a8bcea04
246
+ #: if ( $this->broken || $this->warning ) { $this->log .= "\n" . __("Link is
247
+ #: broken.", 'broken-link-checker'); } else
248
+ msgctxt "429fa77c1087a780a63344bd72083de3"
249
+ msgid "Link is broken."
250
+ msgstr "הקישור שבור."
251
 
252
+ # wpml-name: ed74899431be6eb5aff9b2c78e673407
253
+ #: $this->being_checked = false; $this->log __("The plugin doesn't know how to
254
+ #: check this type of link.", 'broken-link-checker');
255
+ msgctxt "8cf55d2fc780103c4e6f887bf91cdfc9"
256
+ msgid "The plugin doesn't know how to check this type of link."
257
+ msgstr "התוסף אינו יודע כיצד לבדוק סוג זה של קישור."
258
 
259
+ # wpml-name: 00648eb3e7abaed6a5d9017d2554b581
260
+ #: //Add an explanatory notice to the link's log $error_notice = "[" . __("The
261
+ #: plugin script was terminated while trying check link.",
262
+ #: 'broken-link-checker') "]"; if ( strpos($this->log, $error_notice) ===
263
+ #: false ){
264
+ msgctxt "5e587430f5335e94e68db087ade2f9db"
265
+ msgid "The plugin script was terminated while trying to check the link."
266
+ msgstr "תסריט התוסף הסתיים בזמן בדיקת הקישור."
267
 
268
+ # wpml-name: e6388c9eaf45b6f4f931eaa538bcf1b4
269
+ #: 'heading' => ucwords($data['name']), 'heading_zero' __('No links found for
270
+ #: your query', 'broken-link-checker'), 'custom' true,
271
+ msgctxt "5ca33e4ab322f5856abdbd43c1bf0465"
272
+ msgid "No links found for your query"
273
+ msgstr "לא נמצאו קישורים על פי השאילתא שלכם"
274
 
275
+ # wpml-name: 32df01b9cf0491a879250b58ba2744ba
276
+ #: 'name' => __('Search', 'broken-link-checker'), 'heading' __('Search
277
+ #: Results', 'heading_zero' __('No links found for your query',
278
+ msgctxt "2dcb9af46d5dc705159564c98823a2b6"
279
+ msgid "Search Results"
280
+ msgstr "תוצאות החיפוש"
281
 
282
+ # wpml-name: 77440c1e775665a8352b954009e2fa51
283
+ #: 'heading' => __('Dismissed Links', 'broken-link-checker'), 'heading_zero'
284
+ #: __('No dismissed links found', 'native' true,
285
+ msgctxt "63313904cce406ee0979546d51f65d3e"
286
+ msgid "No dismissed links found"
287
+ msgstr "לא נמצאו קישורים שמתעלמים מהם"
288
 
289
+ # wpml-name: 94572ef326ae75e1d6a96e8f10cd9840
290
+ #: 'name' => __('Dismissed', 'broken-link-checker'), 'heading' __('Dismissed
291
+ #: Links', 'heading_zero' __('No dismissed links found',
292
+ msgctxt "8ef58b7850ab390da8c0d5e787298e24"
293
+ msgid "Dismissed Links"
294
+ msgstr "קישורים בהמתנה"
295
 
296
+ # wpml-name: e2ccdd369c3ae64bfd036d550bee4d1d
297
+ #: ), 'name' => __('Dismissed', 'broken-link-checker'), 'heading'
298
+ #: __('Dismissed Links',
299
+ msgctxt "d0bc8b363de0ff6ae6e377bfd3d0cfc8"
300
+ msgid "Dismissed"
301
+ msgstr "בהמתנה"
302
 
303
+ # wpml-name: 0d1466e798c884c50ab72bb010505254
304
+ #: 'heading' => __('Redirected Links', 'broken-link-checker'), 'heading_zero'
305
+ #: __('No redirects found', 'native' true,
306
+ msgctxt "db9849c85491da1a2b7cea04adb1b8c7"
307
+ msgid "No redirects found"
308
+ msgstr "לא נמצאו הפניות"
309
 
310
+ # wpml-name: f240b61f0ae885e07268e846be6e33b0
311
+ #: 'name' => __('Redirects', 'broken-link-checker'), 'heading' __('Redirected
312
+ #: Links', 'heading_zero' __('No redirects found',
313
+ msgctxt "0ba0ddc248ea3d740aa1f2d37c9c9484"
314
+ msgid "Redirected Links"
315
+ msgstr "קישורים מופנים"
316
 
317
+ # wpml-name: 08635c4f0bf6edbca5d2a8bd0da24a6c
318
+ #: ), 'name' => __('Redirects', 'broken-link-checker'), 'heading'
319
+ #: __('Redirected Links',
320
+ msgctxt "3f168bc06807ddd75451c012b9e045de"
321
+ msgid "Redirects"
322
+ msgstr "הפניה"
323
 
324
+ # wpml-name: 28b20f68ff4dee92f86f1caadaab0ade
325
+ #: 'heading' => __('Warnings', 'filter heading', 'broken-link-checker'),
326
+ #: 'heading_zero' __('No warnings found', 'native' true,
327
+ msgctxt "297fd299ea9adfe5b8c216834e1162da"
328
+ msgid "No warnings found"
329
+ msgstr "לא נמצאו אזהרות"
330
+
331
+ # wpml-name: 56c10d18e0367f88a8f4f8cc35b60376
332
+ #: 'heading' => __('Broken Links', 'broken-link-checker'), 'heading_zero'
333
+ #: __('No broken links found', 'native' true,
334
+ msgctxt "65186713752171b3a4d70541fc123073"
335
+ msgid "No broken links found"
336
+ msgstr "לא נמצאו קישורים שבורים"
337
 
338
+ # wpml-name: c98dbc22f49f1b4a644307551924f8da
339
+ #: ), 'name' => __('Broken', 'broken-link-checker'), 'heading' __('Broken
340
+ #: Links',
341
+ msgctxt "b4546a309b0ad8e0332b0ba5a183ff71"
342
+ msgid "Broken"
343
+ msgstr "שבור"
344
 
345
+ # wpml-name: 8f68159d6140a8a305d6aebb8422694d
346
+ #: 'heading' => __('Detected Links', 'broken-link-checker'), 'heading_zero'
347
+ #: __('No links found (yet)', 'native' true,
348
+ msgctxt "bb456fc50cc3590ed49158936d59296e"
349
+ msgid "No links found (yet)"
350
+ msgstr "לא נמצאו קישורים (עדיין)"
351
 
352
+ # wpml-name: 2e1bbdf556cfef47f9d802591df7ff35
353
+ #: 'name' => __('All', 'broken-link-checker'), 'heading' __('Detected Links',
354
+ #: 'heading_zero' __('No links found (yet)',
355
+ msgctxt "37e05144432f18ea685e9c562c76796d"
356
+ msgid "Detected Links"
357
+ msgstr "קישורים שנמצאו"
358
 
359
+ # wpml-name: b1c94ca2fbc3e78fc30069c8d0f01680
360
+ #: ), 'name' => __('All', 'broken-link-checker'), 'heading' __('Detected
361
+ #: Links',
362
+ msgctxt "345c97890d9de9ed3f01395678ecf352"
363
+ msgid "All"
364
+ msgstr "כל הסטטוסים"
365
 
366
+ # wpml-name: 6c8e8be13a1447d60841c3fc0494b983
367
+ #: <div id="blc-search-button-row"> <input type="submit" value="<?php
368
+ #: esc_attr_e( 'Search Links', 'broken-link-checker' ); ?>"
369
+ #: id="blc-search-button" name="search_button" class="button-primary" />
370
+ #: type="button" 'Cancel', id="blc-cancel-search" class="button"
371
+ msgctxt "27d016c5a18d40ec670a83aad9f58f00"
372
+ msgid "Search Links"
373
+ msgstr "חיפוש קישורים"
374
 
375
+ # wpml-name: 13348442cc6a27032d2b4aa28b75a5d3
376
+ #: $this->search_filter = array( 'name' => __('Search',
377
+ #: 'broken-link-checker'), 'heading' __('Search Results',
378
+ msgctxt "65b1a9078c4e75a68a1d249afd3167b1"
379
+ msgid "Search"
380
+ msgstr "חיפוש"
381
 
382
+ # wpml-name: f1b5e74524eecd38a32f5a526f735f75
383
+ #: <input type="hidden" name="action" value="delete-custom-filter" />
384
+ #: type="submit" value="<?php esc_attr_e( 'Delete This Filter',
385
+ #: 'broken-link-checker' ); ?>" id="blc-delete-filter" class="button" </form>
386
+ msgctxt "03e247ff97aa181c66541d2451122f29"
387
+ msgid "Delete This Filter"
388
+ msgstr "מחיקת המסנן הפעיל"
389
 
390
+ # wpml-name: 209c95d34e0e73ecd20b670de6f050c4
391
+ #: <input type="hidden" name="action" value="create-custom-filter" />
392
+ #: type="button" value="<?php esc_attr_e( 'Save This Search As a Filter',
393
+ #: 'broken-link-checker' ); ?>" id="blc-create-filter" class="button" </form>
394
+ msgctxt "e6f2dcffe3abb3971e6a4da2fd96fdb1"
395
+ msgid "Save This Search As a Filter"
396
+ msgstr "שמירת חיפוש זה כמסנן"
397
 
398
+ # wpml-name: ed36a1ef76a59ee3f15180e0441188ad
399
+ #: <select name="s_link_type" id="s_link_type"> <option value=""><?php
400
+ #: _e('Any', 'broken-link-checker'); ?></option> <?php
401
+ msgctxt "81c3c49935a8890887b5726640e6f60e"
402
+ msgid "Any"
403
+ msgstr "כלשהו"
404
 
405
+ # wpml-name: 2e7529e9c905d1f2a0479d39924dd0ec
406
+ #: <label for="s_filter"><?php _e('Link status', 'broken-link-checker');
407
+ #: ?></label> <select name="s_filter" id="s_filter">
408
+ msgctxt "0c74e18ff51d2d8856b822edd93d368d"
409
+ msgid "Link status"
410
+ msgstr "מצב הקישור"
411
 
412
+ # wpml-name: 63a11faa3a692d4e00fa8e03bbe8a0d6
413
+ #: <label for="s_link_text"><?php _e('Link text', 'broken-link-checker');
414
+ #: ?></label> <input type="text" name="s_link_text" value="<?php
415
+ #: if(!empty($search_params['s_link_text'])) echo
416
+ #: esc_attr($search_params['s_link_text']); ?>" id="s_link_text" class="text
417
+ #: ui-widget-content" />
418
+ msgctxt "001ceaa5bd1188ec1aa37430925628bf"
419
+ msgid "Link text"
420
+ msgstr "טקסט הקישור"
421
 
422
+ # wpml-name: e40e5cf7707c8efd70e8c220cb692b5e
423
+ #: <label for="s_link_type"><?php _e('Link type', 'broken-link-checker');
424
+ #: ?></label> <select name="s_link_type" id="s_link_type">
425
+ msgctxt "6ed26dca903c8344585eede48378343c"
426
+ msgid "Link type"
427
+ msgstr "סוג הקישור"
428
 
429
+ # wpml-name: 7f0ed61fe02ab2610d021ff41ab0c7f9
430
+ #: printf('<optgroup label="%s">', esc_attr(__('Links used in',
431
+ #: 'broken-link-checker'))); $containers =
432
+ #: $moduleManager->get_modules_by_category('container', false, true);
433
+ msgctxt "735219b6b66199483d6d9cd48e8aa030"
434
+ msgid "Links used in"
435
+ msgstr "מקורות הקישורים:"
436
 
437
+ # wpml-name: c20ef29b2c2c0fe6e1804a23da60f384
438
+ #: if( box.is(':visible') ){ toggleButton.text('<?php _e('Hide debug info',
439
+ #: 'broken-link-checker'); ?>'); } else {
440
+ msgctxt "7fb00699a1a2366ad5465771611fe55a"
441
+ msgid "Hide debug info"
442
+ msgstr "הסתרת מידע מערכת"
443
 
444
+ # wpml-name: 120c2fa28526b345952e8b2e5ce567db
445
+ #: $error = sprintf( __("Failed to delete old DB tables. Database error : %s",
446
+ #: 'broken-link-checker'), $wpdb->last_error
447
+ msgctxt "a1b608e11ef88437ec0b611151ab4d35"
448
+ msgid "Failed to delete old DB tables. Database error : %s"
449
+ msgstr "נכשל הניסיון למחוק טבלאות מסד נתונים ישנות. שגיאת מסד נתונים: %s"
450
 
451
+ # wpml-name: link suggestions: Archived page from %s (via the Wayback Machine)
452
+ #: var noSuggestionsText = '<?php echo esc_js(_x('No suggestions available.',
453
+ #: 'link suggestions', 'broken-link-checker')) ?>'; iaSuggestionName
454
+ #: esc_js(_x('Archived page from %s (via the Wayback Machine)',
455
+ #: 'broken-link-checker'));
456
+ msgctxt "42f3e0d37e3776e88343b1a59b258e3d"
457
+ msgid "Archived page from %s (via the Wayback Machine)"
458
+ msgstr "עמוד ארכיון מ %s"
459
+
460
+ # wpml-name: link suggestions: No suggestions available.
461
+ #: var searchingText = '<?php echo esc_js(_x('Searching...', 'link
462
+ #: suggestions', 'broken-link-checker')) ?>'; noSuggestionsText esc_js(_x('No
463
+ #: suggestions available.', iaSuggestionName esc_js(_x('Archived page from %s
464
+ #: (via the Wayback Machine)', 'broken-link-checker'));
465
+ msgctxt "4030b9844ef8b5b1a41915e076af63da"
466
+ msgid "No suggestions available."
467
+ msgstr "אין הצעות זמינות."
468
+
469
+ # wpml-name: link suggestions: Searching...
470
+ #: function findReplacementSuggestions(url, suggestionList) { var
471
+ #: searchingText = '<?php echo esc_js(_x('Searching...', 'link suggestions',
472
+ #: 'broken-link-checker')) ?>'; noSuggestionsText esc_js(_x('No suggestions
473
+ #: available.',
474
+ msgctxt "b69a5bbbb7ef363641010f962b0b5b62"
475
+ msgid "Searching..."
476
+ msgstr "חיפוש..."
477
 
478
+ # wpml-name: link text: (Multiple links)
479
+ #: noneText = '<?php echo esc_js(_x('(None)', 'link text',
480
+ #: 'broken-link-checker')); ?>', multipleLinksText esc_js(_x('(Multiple
481
+ #: links)', ?>';
482
+ msgctxt "c370dd5c4e6519c093132a04f3f2c796"
483
+ msgid "(Multiple links)"
484
+ msgstr "(קישורים מרובים)"
485
 
486
+ # wpml-name: link text: (None)
487
+ #: canEditUrl = master.data('can-edit-url') == 1, noneText '<?php echo
488
+ #: esc_js(_x('(None)', 'link text', 'broken-link-checker')); ?>',
489
+ #: multipleLinksText esc_js(_x('(Multiple links)', ?>';
490
+ msgctxt "a5ef8f8c2dc7dce9b43c6b9207d201fc"
491
+ msgid "(None)"
492
+ msgstr "(ללא)"
493
 
494
+ # wpml-name: 06af2e87fdf44c1260fce36a0c728876
495
+ #: if ($('tbody th.check-column input:checked').length == 0){ alert('<?php
496
+ #: echo esc_js(__('Select one or more links to edit.',
497
+ #: 'broken-link-checker')); ?>'); e.preventDefault();
498
+ msgctxt "3c6245c20388e7f88c1267f83e21c511"
499
+ msgid "Select one or more links to edit."
500
+ msgstr "בחרו קישור אחד או יותר לעריכה."
501
 
502
+ # wpml-name: cd8c69c322275a3bbfc6d2a97ac10e5c
503
+ #: if( $('#bulk-edit input[name="search"]').val() == '' ){ alert('<?php echo
504
+ #: esc_js(__('Enter a search string first.', 'broken-link-checker')); ?>');
505
+ #: input[name="search"]').focus();
506
+ msgctxt "e77f9453d5778d23169c333dbdfaf4cc"
507
+ msgid "Enter a search string first."
508
+ msgstr "ראשית הזינו טקסט חיפוש."
509
 
510
+ # wpml-name: 3d778707ceb3b17642c80b0c52cbd52f
511
+ #: html_entity_decode( __("Are you sure want to remove the selected links?
512
+ #: This action can't be undone.\n'Cancel' stop, 'OK' remove",
513
+ #: 'broken-link-checker'), ENT_QUOTES,
514
+ msgctxt "24787684550e2db4489b25c74a84353f"
515
+ msgid ""
516
+ "Are you sure you want to remove the selected links? This action can't be undone.\n"
517
+ "'Cancel' to stop, 'OK' to remove"
518
+ msgstr "האם אתם בטוחים שאתם רוצים להסיר את הקישורים שנבחרו? לא ניתן לבטל את המחיקה לאחר ביצועה. הקליק"
519
 
520
+ # wpml-name: 91b6eeaf4ea1dedc2daf0f303948c747
521
+ #: html_entity_decode( __("Are you sure want to delete all posts, bookmarks or
522
+ #: other items that contain any of the selected links? This action can't be
523
+ #: undone.\n'Cancel' stop, 'OK' delete", 'broken-link-checker'), ENT_QUOTES,
524
+ msgctxt "0c12d38c004b77846b062917a40aacee"
525
+ msgid ""
526
+ "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"
527
+ "'Cancel' to stop, 'OK' to delete"
528
+ msgstr "האם אתם בטוחים שאתם רוצים למחוק את כל הפוסטים, סימניות או פריטים אחרים שכוללים בתוכם את הקישורים שבחרתם? לא ניתן לבטל את המחיקה לאחר ביצועה. הקליק"
529
 
530
+ # wpml-name: e19e0c14310b102a9585a6b370a81f32
531
+ #: html_entity_decode( __("You are about to delete the current
532
+ #: filter.\n'Cancel' stop, 'OK' delete", 'broken-link-checker'), ENT_QUOTES,
533
+ msgctxt "caf6292331208e721583a0a1469d1ec3"
534
+ msgid ""
535
+ "You are about to delete the current filter.\n"
536
+ "'Cancel' to stop, 'OK' to delete"
537
+ msgstr "אתם עומדים למחוק את המסנן הפעיל. הקליקו 'Cancel' למניעת המחיקה או 'OK' לביצוע המחיקה."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
538
 
539
+ # wpml-name: 04527cf3d8509b15d1a205aa88a2fc98
540
+ #: $('#blc-create-filter').click(function(){ var filter_name = prompt("<?php
541
+ #: echo esc_js(__("Enter a name for the new custom filter",
542
+ #: 'broken-link-checker')); ?>", ""); if ( ){
543
+ msgctxt "d36f4e751ff96e277ca944998aff8d6c"
544
+ msgid "Enter a name for the new custom filter"
545
+ msgstr "הזינו שם למסנן המותאם החדש"
546
 
547
+ # wpml-name: b3790257269071a1aaabac4ea8c7e289
548
+ #: msg = + '\n<?php echo esc_js(__("The following error(s) occured :",
549
+ #: 'broken-link-checker')); ?>\n* '; data.errors.join('\n* ');
550
+ msgctxt "323f9874015a2dae1db38e2b23e7690a"
551
+ msgid "The following error(s) occured :"
552
+ msgstr "השגיאה או השגיאות הבאות התרחשו:"
553
 
554
+ # wpml-name: 57f8a0a9e3d46ac9ceb8cb2b2c5fd680
555
+ #: } else { msg = + '<?php echo esc_js(__("The plugin failed to remove the
556
+ #: link.", 'broken-link-checker')); ?>\n';
557
+ msgctxt "71157fe40de937cc6371af3bc4d51bc9"
558
+ msgid "The plugin failed to remove the link."
559
+ msgstr "התוסף לא הצליח להסיר את הקישור."
560
 
561
+ # wpml-name: ede88450c97abdf9a32bf4f562f700b4
562
+ #: msg = + sprintf( '<?php echo esc_js(__("However, %d instances couldn't be
563
+ #: removed.", 'broken-link-checker')); ?>\n', data.cnt_error
564
+ msgctxt "09581553377717b2ed12d6d3fb47de47"
565
+ msgid "However, %d instances couldn't be removed."
566
+ msgstr "אולם, לא היה ניתן להסיר %d מופעים."
567
 
568
+ # wpml-name: 7a6fdb6dc2f48cacca18738042dde145
569
+ #: msg = + sprintf( '<?php echo esc_js(__("%d instances of the link were
570
+ #: successfully unlinked.", 'broken-link-checker')); ?>\n', data.cnt_okay
571
+ msgctxt "2fc9c0b96846f0cb3533397aca8f8a98"
572
+ msgid "%d instances of the link were successfully unlinked."
573
+ msgstr "%d פעמים שהקישור נמצא עבור הסרת קישור"
574
 
575
+ # wpml-name: d8e6bbb17be7c4c71d1a302523562fd4
576
+ #: if ($.trim(newUrl) == '') { alert('<?php echo esc_js(__('Error: Link URL
577
+ #: must not be empty.', 'broken-link-checker')); ?>'); urlField.focus();
578
+ msgctxt "7992bd84277ed97fcb487d2a6d61c499"
579
+ msgid "Error: Link URL must not be empty."
580
+ msgstr "שגיאה: קישור כתובת האינטרנט לא יכול להיות ריק."
581
 
582
+ # wpml-name: 0aac8c769fb228abf194c9f33eac2c1a
583
+ #: msg = + '\n<?php echo esc_js(__("The following error(s) occurred :",
584
+ #: 'broken-link-checker')); ?>\n* '; response.errors.join('\n* ');
585
+ msgctxt "5df4cd81ed0247260a262b6f528578c2"
586
+ msgid "The following error(s) occurred :"
587
+ msgstr "השגיאה(ות) הבאה(ות) התרחשה(ו): "
588
 
589
+ # wpml-name: 736e65f443dfc785d57e16b32684d4c5
590
+ #: } else { msg = + '<?php echo esc_js(__('The link could not be modified.',
591
+ #: 'broken-link-checker')); ?>\n';
592
+ msgctxt "65ab88c563ae43d64e62bfa159ec6be7"
593
+ msgid "The link could not be modified."
594
+ msgstr "לא היה ניתן לשנות את הקישור."
595
 
596
+ # wpml-name: a2558ef71c372474f5b5155850c8cd36
597
+ #: fragment = sprintf( '<?php echo esc_js(__("However, %d instances couldn't
598
+ #: be edited and still point to the old URL.", 'broken-link-checker')); ?>',
599
+ #: response.cnt_error
600
+ msgctxt "3355426f612511f3ce48eb7427dfe082"
601
+ msgid "However, %d instances couldn't be edited and still point to the old URL."
602
+ msgstr "אולם, לא היה ניתן לערוך %d מופעים ולכן הם עדיין מצביעים לכתובת האינטרנט הישנה."
603
 
604
+ # wpml-name: 441c7b1e0001d03694f373758058421a
605
+ #: var fragment = sprintf( '<?php echo esc_js(__('%d instances of the link
606
+ #: were successfully modified.', 'broken-link-checker')); ?>',
607
+ #: response.cnt_okay
608
+ msgctxt "72ccc7aaa3d148e2cdb1b945cfc36303"
609
+ msgid "%d instances of the link were successfully modified."
610
+ msgstr "%d מופעים של הקישור שונו בהצלחה."
611
 
612
+ # wpml-name: ac7320d2e0ac5ce256bd02ec04fc85a0
613
+ #: var master = $(me).parents('.blc-row'); $(me).html('<?php echo
614
+ #: esc_js(__('Wait...' , 'broken-link-checker')); ?>');
615
+ msgctxt "ed2a5b154dc6fd2b95f8f8f54b8dcba8"
616
+ msgid "Wait..."
617
+ msgstr "המתינו..."
618
 
619
+ # wpml-name: 639f6aa6d7bb909290916efbcbeb6920
620
+ #: <p><?php _e('If you like this plugin, please donate to support development
621
+ #: and maintenance!', 'broken-link-checker'); ?></p>
622
+ msgctxt "44efbdea2ecc89d4890538729fb32fed"
623
+ msgid "If you like this plugin, please donate to support development and maintenance!"
624
+ msgstr "אם אתם אוהבים תוסף זה, בבקשה תרמו בכדי לתמוך במאמצי הפיתוח והתחזוקה של תוסף זה!"
625
 
626
+ # wpml-name: f6d61253264411c461fd8c519bdb94f8
627
+ #: <div id="donate" class="postbox"> <h3 class="hndle"><?php _e('Donate $10,
628
+ #: $20 or $50!', 'broken-link-checker'); ?></h3> class="inside">
629
+ msgctxt "e8e62f86fe616d74b5b50772e18bedda"
630
+ msgid "Donate $10, $20 or $50!"
631
+ msgstr "תרמו 10$, 20$ או 50$!"
632
 
633
+ # wpml-name: ddf492f44876d16bb26b518552a37b26
634
+ #: <div id="advertising" class="postbox"> <h3 class="hndle"><?php _e('More
635
+ #: plugins by Janis Elsts', 'broken-link-checker'); ?></h3> class="inside">
636
+ msgctxt "27116aaae2eb0a59dc5e2daea1a6d3ec"
637
+ msgid "More plugins by Janis Elsts"
638
+ msgstr "תוספים נוספים מאת Janis Elsts"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
639
 
640
+ # wpml-name: f6c586dc08439d8f0a30bdbbad5857f1
641
+ #: <input type="hidden" name="cbt" value="<?php echo esc_attr(__('Return to
642
+ #: WordPress Dashboard', 'broken-link-checker')); ?>" />
643
+ msgctxt "ff0524b3733b36da62f0962a2c002dd0"
644
+ msgid "Return to WordPress Dashboard"
645
+ msgstr "חזרה ללוח המחוונים של Wordpress"
646
 
647
+ # wpml-name: 9d6ff103d4a973471726bedac494e531
648
+ #: printf( _n('This link has failed %d time.', 'This times.',
649
+ #: $link->check_count, 'broken-link-checker'), $link->check_count
650
+ msgctxt "abfaef2f1ca1636b9c8a8ad8218a7719"
651
+ msgid "This link has failed %d times."
652
+ msgstr "קישור זה נכשל %d פעמים."
653
+
654
+ # wpml-name: 3605e4ec2bba1d3a41687c711ea7682c
655
+ #: printf( _n('This link has failed %d time.', 'This times.',
656
+ #: $link->check_count, 'broken-link-checker'), $link->check_count
657
+ msgctxt "1b48b892e892c43e6cb4e740e8bcf83c"
658
+ msgid "This link has failed %d time."
659
+ msgstr "הקישור נכשל ב-%d בדיקה."
660
 
661
+ # wpml-name: inline link editor: Text
662
+ #: <label> <span class="title"><?php echo _x('Text', 'inline link editor',
663
+ #: 'broken-link-checker'); ?></span> class="blc-input-text-wrap"><input
664
+ #: type="text" name="link_text" value="" class="blc-link-text-field" /></span>
665
+ msgctxt "a56509fc10aa29d0059875628fd799f6"
666
+ msgid "Text"
667
+ msgstr "טקסט"
668
 
669
+ # wpml-name: inline editor title: Edit Link
670
+ #: <div class="blc-inline-editor-content"> <h4><?php echo _x('Edit Link',
671
+ #: 'inline editor title', 'broken-link-checker'); ?></h4>
672
+ msgctxt "509d2178efb53b8b1d2a6f3bbc10fab4"
673
+ msgid "Edit Link"
674
+ msgstr "עריכת הקישור"
675
 
676
+ # wpml-name: link in the "Status" column: Details
677
+ #: esc_attr(__('Show more info about this link', 'broken-link-checker')),
678
+ #: _x('Details', 'link in the "Status" column', 'broken-link-checker') );
679
+ msgctxt "995fefdea4c02c6a380170723012f4c8"
680
+ msgid "Details"
681
+ msgstr "פרטים"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
682
 
683
+ # wpml-name: checked how long ago: Checked
684
+ #: if ( $link->last_check != 0 ){ $last_check = _x('Checked', 'checked how
685
+ #: long ago', 'broken-link-checker') . ' '; .= blcUtility::fuzzy_delta(time()
686
+ #: - $link->last_check, 'ago');
687
+ msgctxt "f5c7e3deac79961b5357d325d95f3507"
688
+ msgid "Checked"
689
+ msgstr "נבדק"
690
 
691
+ # wpml-name: 1d61d2627fbb79c243891a05bcebbbad
692
+ #: } else { _e("[An orphaned link! This is a bug.]", 'broken-link-checker');
693
+ msgctxt "1f5494eb28da307739d2df6f2f42ec07"
694
+ msgid "[An orphaned link! This is a bug.]"
695
+ msgstr "[קישור יתום! זה באג.]"
696
 
697
+ # wpml-name: ce0be71e33226e4c1db2bcea5959f16b
698
+ #: <ol style='list-style-type: none;'> <li><strong><?php _e('Log',
699
+ #: 'broken-link-checker'); ?>:</strong> <span class='blc_log'><?php
700
+ msgctxt "a3d6aee5cf3d9acef2c943792a85aa71"
701
+ msgid "Log"
702
+ msgstr "פרטי הבדיקה:<br>"
703
 
704
+ # wpml-name: 28d1e8d36e7bc8cad6707786078be789
705
+ #: <li><strong><?php _e('Instance count', 'broken-link-checker'); ?>:</strong>
706
+ #: <span class='instance_count'><?php
707
+ msgctxt "1740698725a03dda5007d1f087ebb639"
708
+ msgid "Instance count"
709
+ msgstr "כמות מופעים"
710
 
711
+ # wpml-name: d113310ef646b48b2289b14fd7b3ea47
712
+ #: <li><strong><?php _e('Redirect count', 'broken-link-checker'); ?>:</strong>
713
+ #: <span class='redirect_count'><?php
714
+ msgctxt "2409044132714eb93adc9d8aa200ff35"
715
+ msgid "Redirect count"
716
+ msgstr "כמות הפניות"
717
 
718
+ # wpml-name: 1dcec4396291e2fbdc02c03526fe2b88
719
+ #: <li><strong><?php _e('Final URL', 'broken-link-checker'); ?>:</strong>
720
+ #: <span class='final_url'><?php
721
+ msgctxt "9a649d3dcc0e4851000a8b2c10052846"
722
+ msgid "Final URL"
723
+ msgstr "כתובת אינטרנט סופית"
724
 
725
+ # wpml-name: e681e6a42b053db41f074d3ad74ef7f9
726
+ #: <li><strong><?php _e('Response time', 'broken-link-checker'); ?>:</strong>
727
+ #: <span class='request_duration'><?php
728
+ msgctxt "80a397549cc7076c1772976f58df691d"
729
+ msgid "Response time"
730
+ msgstr "זמן תגובה"
731
 
732
+ # wpml-name: 7754a2b3c29f94884ec9f3d70e8f2bf5
733
+ #: <label for="s_http_code"><?php _e('HTTP code', 'broken-link-checker');
734
+ #: ?></label> <input type="text" name="s_http_code" id="s_http_code"
735
+ #: value="<?php if(!empty($search_params['s_http_code'])) echo
736
+ #: esc_attr($search_params['s_http_code']); ?>" class="text ui-widget-content"
737
+ #: />
738
+ msgctxt "41d618582b4fc31a59d8f7fe3f5e71a8"
739
+ msgid "HTTP code"
740
+ msgstr "קוד HTTP‏"
741
 
742
+ # wpml-name: 6e7b34fa59e1bd229b207892956dc41c
743
+ #: if ( $last_check < strtotime('-10 years') ){ _e('Never',
744
+ #: 'broken-link-checker'); } else {
745
+ msgctxt "17fd71d4d6206cc26ad77d9a53017667"
746
+ msgid "Never"
747
+ msgstr "מעולם לא"
748
 
749
+ # wpml-name: d4a2af3c260ca24b9b5c57716ee5fe74
750
+ #: <?php } ?> <li><strong><?php _e('Link last checked',
751
+ #: 'broken-link-checker'); ?>:</strong> <span class='check_date'><?php
752
+ msgctxt "a0f8d1a690d5e7590ef84bb40537f9ec"
753
+ msgid "Link last checked"
754
+ msgstr "הקישור נבדק לאחרונה בתאריך"
755
 
756
+ # wpml-name: 7aaf2ca9a15a8961fd0daa358240326e
757
+ #: <?php if ( !empty($link->post_date) ) { ?> <li><strong><?php _e('Post
758
+ #: published on', 'broken-link-checker'); ?>:</strong> <span
759
+ #: class='post_date'><?php
760
+ msgctxt "eb3ec0760da3a22aa2914cfa7f86a41a"
761
+ msgid "Post published on"
762
+ msgstr "פוסטים שפורסמו ב:"
763
 
764
+ # wpml-name: 0c49a7a7a3887766b5de7ee60fdb6b7b
765
+ #: <input type="checkbox" name="regex"> <?php _e('Regular expression',
766
+ #: 'broken-link-checker'); ?> </label>
767
+ msgctxt "f8a18286c34d04def3847fb36a0dcbea"
768
+ msgid "Regular expression"
769
+ msgstr "Regular Expression"
770
 
771
+ # wpml-name: 6b8e300743e7f6d8548cbcc4ab6407a1
772
+ #: <input type="checkbox" name="case_sensitive"> <?php _e('Case sensitive',
773
+ #: 'broken-link-checker'); ?> </label>
774
+ msgctxt "cf046cea0ea0351c13b1a84ec5dcfb34"
775
+ msgid "Case sensitive"
776
+ msgstr "עם רגישות לגודל אותיות אנגליות (Case Sensitive)"
777
 
778
+ # wpml-name: 9a810a2dd2600e4fd2583a15292a3899
779
+ #: <label> <span class="title"><?php _e('Replace with',
780
+ #: 'broken-link-checker'); ?></span> <input type="text" name="replace"
781
+ #: class="text">
782
+ msgctxt "3063063a13929f1db3f5c9bcf8eb10aa"
783
+ msgid "Replace with"
784
+ msgstr "החלפה ב-"
 
785
 
786
+ # wpml-name: 4cfa6c981549e990fe2344e4c805405e
787
+ #: <label> <span class="title"><?php _e('Find', 'broken-link-checker');
788
+ #: ?></span> <input type="text" name="search" class="text">
789
+ msgctxt "0b48a6a7836900cec71b2dcdd82f590d"
790
+ msgid "Find"
791
+ msgstr "מצא"
 
 
792
 
793
+ # wpml-name: 68d41f1aa570bd4488063dad182bc78d
794
+ #: <fieldset> <h4><?php _e('Bulk Edit URLs', 'broken-link-checker'); ?></h4>
795
+ #: <label>
796
+ msgctxt "b3a5654adad3961f69d661e2203d548d"
797
+ msgid "Bulk Edit URLs"
798
+ msgstr "עריכה של קישורים מרובים במקביל"
799
 
800
+ # wpml-name: 0f91634a5903c58f3960a155b3e5533d
801
+ #: <li> <input type="button" class="button-secondary blc-use-url-button"
802
+ #: value="<?php echo esc_attr(__('Use this URL', 'broken-link-checker')); ?>"
803
+ #: />
804
+ msgctxt "27364aa72570ae228cacddb4d0282d45"
805
+ msgid "Use this URL"
806
+ msgstr "החלפה לכתובת הזו"
807
 
808
+ # wpml-name: 06933067aafd48425d67bcb01bba5cb6
809
+ #: <input type="submit" name="bulk_edit" class="button-primary alignright"
810
+ #: value="<?php _e('Update', 'broken-link-checker'); ?>" accesskey="s">
811
+ msgctxt "31e1678822de1be9ee8a0aa37bece62d"
812
+ msgid "Update"
813
+ msgstr "עדכון"
814
 
815
+ # wpml-name: 4a15f35e8d386dd1d96faa83c1e44a22
816
+ #: <input type="button" class="button-secondary cancel alignleft
817
+ #: blc-cancel-button" value="<?php echo esc_attr(__('Cancel',
818
+ #: 'broken-link-checker')); ?>" /> class="button-primary save alignright
819
+ #: blc-update-url-button" esc_attr(__('Update URL', <img class="waiting"
820
+ #: style="display:none;" src="<?php esc_url( admin_url(
821
+ #: 'images/wpspin_light.gif' ) ); alt=""
822
+ msgctxt "62cc10f8484ec65e0cace2a6613ee346"
823
+ msgid "Update URL"
824
+ msgstr "עדכון כתובת אינטרנט"
825
 
826
+ # wpml-name: 4f6f19666ccdbcc646c85a34df7ab720
827
+ #: '<a href="#" class="blc-deredirect-button" title="%s">%s</a>', __('Replace
828
+ #: this redirect with a direct link', 'broken-link-checker'), _x('Fix
829
+ #: redirect', 'link action; replace one 'broken-link-checker')
830
+ msgctxt "a7c4df669f297f5da42e0ae15ff6a23c"
831
+ msgid "Replace this redirect with a direct link"
832
+ msgstr "החלף הפניה מחדש זו בקישור ישיר"
833
+
834
+ # wpml-name: 308e824bff4bd8debaf085b5fe2955c4
835
+ #: esc_attr(__('Undismiss this link', 'broken-link-checker')), __('Undismiss',
836
+ #: 'broken-link-checker') );
837
+ msgctxt "db1fc39af961e327ba6a438f99b9833e"
838
+ msgid "Undismiss"
839
+ msgstr "ביטול מצב המתנה"
840
 
841
+ # wpml-name: 9589c5fcbf5e63eaa3f1a450807bf7d8
842
+ #: '<a href="#" title="%s" class="blc-undismiss-button">%s</a>',
843
+ #: esc_attr(__('Undismiss this link', 'broken-link-checker')), __('Undismiss',
844
+ #: 'broken-link-checker')
845
+ msgctxt "32ba6586a74b8ff9261410702033536e"
846
+ msgid "Undismiss this link"
847
+ msgstr "הוצאת קישור זה ממצב המתנה והחזרתו לרשימת הקישורים השבורים"
848
 
849
+ # wpml-name: c9cab4b3f197e301d598c0c2964391ae
850
+ #: '<a href="#" title="%s" class="blc-dismiss-button">%s</a>',
851
+ #: esc_attr(__('Hide this link and do not report it again unless its status
852
+ #: changes' , 'broken-link-checker')), __('Dismiss', 'broken-link-checker')
853
+ msgctxt "9eb1b17f7d789f84dd9278a2afe39add"
854
+ msgid "Hide this link and do not report it again unless its status changes"
855
+ msgstr "הקישור יועבר אל רשימת \"בהמתנה\" ולא ידווח שוב כשבור אלא אם הסטטוס שלו ישתנה"
856
 
857
+ # wpml-name: 18c62c40c1a73130621c53daec730560
858
+ #: '<a href="#" title="%s" class="blc-discard-button">%s</a>',
859
+ #: esc_attr(__('Remove this link from the list of broken links and mark it as
860
+ #: valid', 'broken-link-checker')), __('Not broken', 'broken-link-checker')
861
+ msgctxt "c741b1b77d061c6179bcaedcdd292361"
862
+ msgid "Remove this link from the list of broken links and mark it as valid"
863
+ msgstr "הסרת קישור זה מהרשימה הנוכחית וסימונו כתקין"
864
 
865
+ # wpml-name: dae588b4e085ace5c8520a1b75f37901
866
+ #: $actions['delete'] = "<a class='submitdelete blc-unlink-button' title='" .
867
+ #: esc_attr( __('Remove this link from all posts', 'broken-link-checker') ).
868
+ #: "' ". "href='javascript:void(0);'>" __('Unlink', "</a>";
869
+ msgctxt "7162d490d8cfe324e8c5b8cca7fb897e"
870
+ msgid "Remove this link from all posts"
871
+ msgstr "הסרת קישור זה מכל הפוסטים בהם הוא מופיע. טקסט הקישור לא יוסר ולא ישתנה."
872
 
873
+ # wpml-name: 27a5ff9957ea16466ef085b53381e26a
874
+ #: $actions['edit'] = "<a href='javascript:void(0)' class='blc-edit-button'
875
+ #: title='" . esc_attr( __('Edit this link' , 'broken-link-checker') ) "'>".
876
+ #: URL' ."</a>";
877
+ msgctxt "4e18b6f10b88c493bdc9f066d45a4353"
878
+ msgid "Edit this link"
879
+ msgstr "עריכת הקישור הזה"
880
 
881
+ # wpml-name: 511c066ac77dc50ebbf86a7b6375306f
882
+ #: '<tr class="link-broken-for"><td>%s %s</td></tr>', __('Broken for',
883
+ #: 'broken-link-checker'), $broken_for
884
+ msgctxt "eb1e2f8e8c85544ffb5642fcb6a1e625"
885
+ msgid "Broken for"
886
+ msgstr "שבור כבר לפחות"
887
 
888
+ # wpml-name: e5c27a60fd947063baba376fd756693e
889
+ #: '<span><a href="#" class="blc-details-button" title="%s">%s</a></span>',
890
+ #: esc_attr(__('Show more info about this link', 'broken-link-checker')),
891
+ #: _x('Details', 'link in the "Status" column', 'broken-link-checker')
892
+ msgctxt "9b08da45e253c1eceedf8beeeba04d1d"
893
+ msgid "Show more info about this link"
894
+ msgstr "הצג מידע נוסף אודות קישור זה"
895
 
896
+ # wpml-name: 6a1905662864a93c2221090204cac185
897
+ #: printf( __('This link has been broken for %s.', 'broken-link-checker'),
898
+ #: blcUtility::fuzzy_delta($delta)
899
+ msgctxt "00061157ae0c0ab35dc7f02473ebcd0a"
900
+ msgid "This link has been broken for %s."
901
+ msgstr "הקישור שבור במשך לפחות %s."
902
 
903
+ # wpml-name: da2b01741657596866072a187d6f4172
904
+ #: <span class='request_duration'><?php printf( __('%2.3f seconds',
905
+ #: 'broken-link-checker'), $link->request_duration); ?></span></li>
906
+ msgctxt "e77f09e9440f1df88f5e0c4d8fe61e9d"
907
+ msgid "%2.3f seconds"
908
+ msgstr "%2.3f שניות"
909
 
910
+ # wpml-name: ea4788705e6873b424c65e91c2846b19
911
+ #: <input type="submit" value="<?php esc_attr_e( 'Search Links',
912
+ #: 'broken-link-checker' ); ?>" id="blc-search-button" name="search_button"
913
+ #: class="button-primary" /> type="button" 'Cancel', id="blc-cancel-search"
914
+ #: class="button" </div>
915
+ msgctxt "f6a78e0ac501a29d85ec26c391710c02"
916
  msgid "Cancel"
917
  msgstr "ביטול"
918
 
919
+ # wpml-name: 758c5698b602da1742774df2965f4453
920
+ #: $this->pagination_html .= sprintf( '<span class="displaying-num">' . __(
921
+ #: 'Displaying %s&#8211;%s of <span class="current-link-count">%s</span>',
922
+ #: 'broken-link-checker' ) '</span>%s', number_format_i18n( ( $this->page - 1
923
+ #: * $this->per_page + ),
924
+ msgctxt "979e257cf75837724485e425d1a5d8ce"
925
+ msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
926
+ msgstr "הצגת %s&#8211;%s מתוך <span class=\"current-link-count\">%s</span>"
927
 
928
+ # wpml-name: 682d689e498eb17267765a95bd982fc4
929
+ #: } else { $bulk_actions["bulk-delete-sources"] = __('Delete sources',
930
+ #: 'broken-link-checker');
931
+ msgctxt "f3756e4ef7718f1b9a5ade4b4d28738d"
932
+ msgid "Delete sources"
933
+ msgstr "מחיקת מקורות הקישור"
934
 
935
+ # wpml-name: da25933f8aeb8643372e2644c7b35de2
936
+ #: if ( EMPTY_TRASH_DAYS ){ $bulk_actions["bulk-trash-sources"] = __('Move
937
+ #: sources to Trash', 'broken-link-checker'); } else {
938
+ msgctxt "a9dadd69b4ceeb57d89ee5a40d7d4c8a"
939
+ msgid "Move sources to Trash"
940
+ msgstr "העברה לפח (=מחיקה) של מקור הקישור (פוסט, עמוד וכדומה)"
941
 
942
+ # wpml-name: f374fa9c8b7131e5efa149ecefc27e41
943
+ #: "bulk-deredirect" => __('Fix redirects', 'broken-link-checker'),
944
+ #: "bulk-not-broken" __('Mark as not broken', "bulk-dismiss" __('Dismiss',
945
+ msgctxt "77530737deb0f193568a8ca6e0a33657"
946
+ msgid "Mark as not broken"
947
+ msgstr "סימון כ'לא שבור'"
948
 
949
+ # wpml-name: 2a9c29ad4b1cb997b672dbfef14a5970
950
+ #: "bulk-recheck" => __('Recheck', 'broken-link-checker'), "bulk-deredirect"
951
+ #: __('Fix redirects', "bulk-not-broken" __('Mark as not broken',
952
+ msgctxt "67faadbb7bdda3ab00c3f7d806763832"
953
+ msgid "Fix redirects"
954
+ msgstr "החלפת הקישור המקורי בקישור ההפניה"
955
 
956
+ # wpml-name: bfab8bcc21a91d9a7e346bbe1143c3ea
957
+ #: $bulk_actions = array( '-1' => __('Bulk Actions', 'broken-link-checker'),
958
+ #: "bulk-edit" __('Edit URL',
959
+ msgctxt "bbdad15ca3d562b01ffbeea9349f313e"
960
+ msgid "Bulk Actions"
961
+ msgstr "פעולות על מספר קישורים במקביל"
962
 
963
+ # wpml-name: 3ca7ca93df600ffff03ee0e7eac6950f
964
+ #: 'redirect-url' => array( 'heading' __('Redirect URL',
965
+ #: 'broken-link-checker'), 'content' array($this, 'column_redirect_url'),
966
+ msgctxt "f9dc67a4493013078ac98999a728fd79"
967
+ msgid "Redirect URL"
968
+ msgstr "כתובת ההפניה"
969
 
970
+ # wpml-name: bb2e52704310b28d8df62319181ae9c7
971
+ #: 'new-link-text' => array( 'heading' __('Link Text', 'broken-link-checker'),
972
+ #: 'content' array($this, 'column_new_link_text'),
973
+ msgctxt "a8f114f303211c1576ef5b1066874d54"
974
  msgid "Link Text"
975
  msgstr "טקסט הקישור"
976
 
977
+ # wpml-name: f31bbdd1b3e85bccd652680e16935819
978
+ #: 'used-in' => array( 'heading' __('Source', 'broken-link-checker'), 'class'
979
+ #: 'column-title',
980
+ msgctxt "c93e82b0ccf4b0b46e8bbea4f4b79915"
981
+ msgid "Source"
982
+ msgstr "מקור הקישור"
983
 
984
+ # wpml-name: e6b391a8d2c4d45902a23a8b6585703d
985
+ #: <label for="s_link_url"><?php _e('URL', 'broken-link-checker'); ?></label>
986
+ #: <input type="text" name="s_link_url" id="s_link_url" value="<?php
987
+ #: if(!empty($search_params['s_link_url'])) echo
988
+ #: esc_attr($search_params['s_link_url']); ?>" class="text ui-widget-content"
989
+ #: />
990
+ msgctxt "0afc8781a605fe6e83d8424ac657888c"
991
+ msgid "URL"
992
+ msgstr "כתובת האינטרנט"
993
 
994
+ # wpml-name: d3b4f342c85312195b04104eab760cf7
995
+ #: class="view-excerpt <?php if ( !$table_compact ) echo 'current'; ?>"
996
+ #: title="<?php esc_attr(__('Detailed View', 'broken-link-checker')); ?>">
997
+ #: </a>
998
+ msgctxt "7d61ccdef1073c3a383cf7f79236b248"
999
+ msgid "Detailed View"
1000
+ msgstr "תצוגה מפורטת"
1001
 
1002
+ # wpml-name: e1dcdc33bf85d498df1483dd6595692a
1003
+ #: class="view-list <?php if ( $table_compact ) echo 'current'; ?>"
1004
+ #: title="<?php esc_attr(__('Compact View', 'broken-link-checker')); ?>"> </a>
1005
+ msgctxt "5aaaba76df3a49941582ddba72c32cf2"
1006
+ msgid "Compact View"
1007
+ msgstr "תצוגה מצומצמת"
1008
 
1009
+ # wpml-name: 665bddd7325276a6296ca8e78bc72406
1010
+ #: if ( is_multisite() &&
1011
+ #: is_plugin_active_for_network(plugin_basename(BLC_PLUGIN_FILE)) ) {
1012
+ #: $messages[] = __('Please activate the plugin separately on each site.
1013
+ #: Network activation is not supported.', 'broken-link-checker'); '';
1014
+ msgctxt "122eb7d13a7395f010252a9c289708d6"
1015
+ msgid "Please activate the plugin separately on each site. Network activation is not supported."
1016
+ msgstr "בבקשה הפעל את התוסף בנפרד עבור כל אתר. הפעלת רשת אינה נתמכת."
1017
 
1018
+ # wpml-name: 998803f05f854e3dec361aace3c50031
1019
+ #: $messages = array( '<strong>' . __('Broken Link Checker installation
1020
+ #: failed. Try deactivating and then reactivating the plugin.',
1021
+ #: 'broken-link-checker') '</strong>', );
1022
+ msgctxt "16debf2e90086042c4e6f19fe5abab32"
1023
+ msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
1024
+ msgstr "התקנת התוסף בודק קישורים שבורים נכשלה. נסו לכבות ואז להפעיל מחדש את התוסף."
1025
 
1026
+ # wpml-name: current load: Unknown
1027
+ #: $code = BLC_LINK_STATUS_UNKNOWN; $text _x('Unknown', 'link status',
1028
+ #: 'broken-link-checker');
1029
+ msgctxt "48b3083dffd6fd4a3cca1e7fc9dceb4a"
1030
+ msgid "Unknown"
1031
+ msgstr "לא ידוע"
1032
 
1033
+ # wpml-name: a link from the admin notice under Tools - Broken links - Warnings: Change warning settings
1034
+ #: admin_url('options-general.php?page=link-checker-settings#blc_warning_settings'),
1035
+ #: _x( 'Change warning settings',
1036
+ msgctxt "f2a84ebb738bd38a615715104c96c0d7"
1037
+ msgid "Change warning settings"
1038
+ msgstr "שינוי הגדרות אזהרה"
1039
+
1040
+ # wpml-name: admin notice under Tools - Broken links - Warnings: Hide notice
1041
+ #: add_query_arg($notice_name, '0'), _x( 'Hide notice',
1042
+ msgctxt "6de265ac8e21aceabfa3ea3f6e34edad"
1043
+ msgid "Hide notice"
1044
+ msgstr "הסתר את ההודעה"
1045
+
1046
+ # wpml-name: log file location: Custom
1047
+ #: <?php checked($this->conf->options['custom_log_file_enabled']); ?>> echo
1048
+ #: _x('Custom', 'log file location', 'broken-link-checker'); ?> </label>
1049
+ msgctxt "ddb69869a59c4587771b71cfdcf286af"
1050
+ msgid "Custom"
1051
+ msgstr "התאמה"
1052
 
1053
+ # wpml-name: log file location: Default
1054
+ #: <?php checked(!$this->conf->options['custom_log_file_enabled']); ?>> echo
1055
+ #: _x('Default', 'log file location', 'broken-link-checker'); ?> </label>
1056
+ msgctxt "00df07dfa650623f01f869c2acb6658a"
1057
+ msgid "Default"
1058
+ msgstr "ברירת המחדל"
1059
+
1060
+ # wpml-name: settings page: Show link actions
1061
+ #: <tr valign="top"> <th scope="row"><?php echo _x('Show link actions',
1062
+ #: 'settings page', 'broken-link-checker'); ?></th> <td>
1063
+ msgctxt "a3d2d74337e3d836018bae0d662a8ea8"
1064
+ msgid "Show link actions"
1065
+ msgstr "הצג פעולות קישור"
1066
+
1067
+ # wpml-name: dashboard widget visibility: Nobody (disables the widget)
1068
+ #: _x('Editor and above', 'dashboard widget visibility',
1069
+ #: 'broken-link-checker') => 'edit_others_posts', _x('Nobody (disables the
1070
+ #: widget)', 'do_not_allow', );
1071
+ msgctxt "240c362aafaaa93c832c21294dc84c81"
1072
+ msgid "Nobody (disables the widget)"
1073
+ msgstr "אף אחד (מבטל את הוידג'ט)"
1074
 
1075
+ # wpml-name: dashboard widget visibility: Editor and above
1076
+ #: _x('Administrator', 'dashboard widget visibility', 'broken-link-checker')
1077
+ #: => 'manage_options', _x('Editor and above', 'edit_others_posts', _x('Nobody
1078
+ #: (disables the widget)', 'do_not_allow',
1079
+ msgctxt "2781a7880ffae0b1ae328ab183ce3603"
1080
+ msgid "Editor and above"
1081
+ msgstr "עורך ומעלה"
1082
 
1083
+ # wpml-name: dashboard widget visibility: Administrator
1084
+ #: $widget_caps = array( _x('Administrator', 'dashboard widget visibility',
1085
+ #: 'broken-link-checker') => 'manage_options', _x('Editor and above',
1086
+ #: 'edit_others_posts',
1087
+ msgctxt "9fc8fd95cbdf5148dc08bff23de1f277"
1088
+ msgid "Administrator"
1089
+ msgstr "מנהל"
1090
 
1091
+ # wpml-name: settings page: Warnings
1092
+ #: ), 'name' => _x('Warnings', 'filter name', 'broken-link-checker'),
1093
+ #: 'heading' __('Warnings', heading',
1094
+ msgctxt "521f1afdb2e04b8b3d70f719a9208060"
1095
+ msgid "Warnings"
1096
+ msgstr "אזהרות"
1097
+
1098
+ # wpml-name: settings page: Suggestions
1099
+ #: <div class="blc-url-replacement-suggestions" style="display: none;">
1100
+ #: <h4><?php echo _x('Suggestions', 'inline link editor',
1101
+ #: 'broken-link-checker'); ?></h4> <ul class="blc-suggestion-list">
1102
+ msgctxt "5ab19e27c9226e49f11f623db72a3993"
1103
+ msgid "Suggestions"
1104
+ msgstr "הצעות"
1105
+
1106
+ # wpml-name: Link tweaks" settings: These settings only apply to the content of posts, not comments or custom fields.
1107
+ #: <?php echo _x( 'These settings only apply to the content of posts, not
1108
+ #: comments or custom fields.',
1109
+ msgctxt "d2924dc0ab17d23ebe2a474b6e084007"
1110
+ msgid "These settings only apply to the content of posts, not comments or custom fields."
1111
+ msgstr "הגדרות אלו חלות רק על תוכן הפוסטים, לא על תגובות ושדות."
1112
+
1113
+ # wpml-name: link action; replace one redirect with a direct link: Fix redirect
1114
+ #: __('Replace this redirect with a direct link', 'broken-link-checker'),
1115
+ #: _x('Fix redirect', 'link action; replace one 'broken-link-checker') );
1116
+ msgctxt "a10e4073ec1228819e86641809224bd4"
1117
+ msgid "Fix redirect"
1118
+ msgstr "תיקון הפניה מחדש"
1119
+
1120
+ # wpml-name: d669f2498524cdb86c7106b5a6b2427d
1121
+ #: <span class="description"><?php _e('The "Nuclear Option". Click this button
1122
+ #: to make the plugin empty its link database and recheck entire site from
1123
+ #: scratch.', 'broken-link-checker');
1124
+ msgctxt "cd6ec58bacbfa9fc1f256bb00e74fce5"
1125
+ msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
1126
+ msgstr "***זהירות***: הקלקה על כפתור זה תמחק לחלוטין את התוכן הנוכחי של מסד הנתונים של התוסף (רק מידע שנאסף אודות הקישורים, לא ההגדרות של התוסף) ולאחר מכן תחל בדיקה מחדש של כל הקישורים באתר זה."
1127
 
1128
+ # wpml-name: 4ccd7ac3687b36d9b9bc746e51f5eaad
1129
+ #: <input class="button" type="button" name="start-recheck" id="start-recheck"
1130
+ #: value="<?php _e('Re-check all pages', 'broken-link-checker'); ?>" />
1131
+ #: type="hidden" name="recheck" value="" id="recheck"
1132
+ msgctxt "1b284d100e9217ce815cda4caae729a8"
1133
+ msgid "Re-check all pages"
1134
+ msgstr "איפוס ממצאי התוסף"
1135
 
1136
+ # wpml-name: c8fcb9d09cdd8ce7055ead663043bcc6
1137
+ #: <tr valign="top"> <th scope="row"><?php _e('Forced recheck',
1138
+ #: 'broken-link-checker'); ?></th> <td>
1139
+ msgctxt "2904ab584fd5cccd247a5e55a4dbd0ee"
1140
+ msgid "Forced recheck"
1141
+ msgstr "איפוס ממצאי התוסף"
1142
 
1143
+ # wpml-name: d13e01ef2af0326f4f5a6e15fee2c4bc
1144
+ #: <tr valign="top"> <th scope="row"><?php _e('Log file location',
1145
+ #: 'broken-link-checker'); ?></th> <td>
1146
+ msgctxt "dc6e98c2191831634d1e44e9eb4b9494"
1147
+ msgid "Log file location"
1148
+ msgstr "מיקום קובץ רישום אירועי התוסף"
1149
 
1150
+ # wpml-name: c218ee1f0300a1c69a0f97d6d2872fde
1151
+ #: <?php checked($this->conf->options['logging_enabled']); ?>/> _e('Enable
1152
+ #: logging', 'broken-link-checker'); ?> </label>
1153
+ msgctxt "f5150a7ad3c596bd2525753b97cd50b6"
1154
+ msgid "Enable logging"
1155
+ msgstr "הפעל רישום אירועי התוסף"
1156
 
1157
+ # wpml-name: 8db7df66ab1d7ab5f1dc947acdb5fae4
1158
+ #: <tr valign="top"> <th scope="row"><?php _e('Logging',
1159
+ #: 'broken-link-checker'); ?></th> <td>
1160
+ msgctxt "3e7413ad44191f0ef9996a32fedb04b5"
1161
+ msgid "Logging"
1162
+ msgstr "רישום אירועי התוסף (Logging)"
1163
 
1164
+ # wpml-name: 609a74f6216d00a196a4c7df7fc1e474
1165
+ #: <tr valign="top"> <th scope="row"><?php _e('Target resource usage',
1166
+ #: 'broken-link-checker'); ?></th> <td>
1167
+ msgctxt "33d70e4a057f52a80325ec88602f069f"
1168
+ msgid "Target resource usage"
1169
+ msgstr "שימוש במשאבים של היעד"
1170
+
1171
+ # wpml-name: 9864f6992dceb3aa38096372ab2af4f3
1172
+ #: echo '<span class="description">'; _e('Load limiting only works on
1173
+ #: Linux-like systems where <code>/proc/loadavg</code> is present and
1174
+ #: accessible.', 'broken-link-checker'); '</span>';
1175
+ msgctxt "34a3d9ab0847a569b881ca3b40764d2c"
1176
+ msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
1177
+ msgstr "הגבלת עומס על השרת פועלת רק על מערכות דמויות Linux כאשר <code>/proc/loadavg</code> קיים ונגיש."
1178
 
1179
+ # wpml-name: 00155a2862cf808fd605037062246122
1180
+ #: <tr valign="top"> <th scope="row"><?php _e('Server load limit',
1181
+ #: 'broken-link-checker'); ?></th> <td>
1182
+ msgctxt "945890a4537be858beef539105d07416"
1183
+ msgid "Server load limit"
1184
+ msgstr "הגבלת עומס על השרת"
1185
 
1186
+ # wpml-name: 82685accf97155b72308a81bfefe3d1d
1187
+ #: _e('The plugin works by periodically launching a background job that parses
1188
+ #: your posts for links, checks the discovered URLs, and performs other
1189
+ #: time-consuming tasks. Here you can set how long, at most, link monitor may
1190
+ #: run each time before stopping.', 'broken-link-checker');
1191
+ msgctxt "4ed0cab02d02b8db6c2c1b83317300d6"
1192
+ 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."
1193
+ msgstr "התוסף פועל על ידי משימה של בדיקת קישורים אשר בוחנת את סוגי התכנים השונים באתר ומנסה למצוא בהם קישורים. אם נמצאו קישורים המשימה בודקת את תקינותם ומבצעת פעילויות אחרות שגוזלות זמן ומשאבי מערכת. בשדה זה אתם יכולים להגדיר את כמות זמן הניטור המקסימלית המותרת. לאחר משך זמן זה תופסק פעילות הניטור באופן יזום על ידי התוסף.<br>(ערך ברירת מחדל: 300. ערך מינימום: 1. ערך מקסימום: 99999. אפס (0) אינו ערך מותר)"
1194
 
1195
+ # wpml-name: 3303a814f07829d38f57a486bb43c481
1196
+ #: <tr valign="top"> <th scope="row"><?php _e('Max. execution time',
1197
+ #: 'broken-link-checker'); ?></th> <td>
1198
+ msgctxt "21bfdd8bf1c5691d228c640659fd8755"
1199
+ msgid "Max. execution time"
1200
+ msgstr "משך זמן מקסימלי לבדיקת כל הקישורים באתר"
1201
 
1202
+ # wpml-name: e14cf4caa7b6f1238f8f072172c8b4d9
1203
+ #: <tr valign="top"> <th scope="row"><?php _e('Show the dashboard widget for',
1204
+ #: 'broken-link-checker'); ?></th> <td>
1205
+ msgctxt "881c7438c8c4f8245970ad2b2155c8e4"
1206
+ msgid "Show the dashboard widget for"
1207
+ msgstr "הצגת וידג'ט התוסף בעמוד \"לוח בקרה\" רק למשתמשים מסוג"
1208
 
1209
+ # wpml-name: dbc1fad85abff42c924bb65a69357e6c
1210
+ #: <?php if ($this->conf->options['run_via_cron']) echo ' checked="checked"';
1211
+ #: ?>/> _e('Run hourly in the background', 'broken-link-checker'); ?> </label>
1212
+ msgctxt "98f78d13151354ef00280079f23a8d7a"
1213
+ msgid "Run hourly in the background"
1214
+ msgstr "ניטור פעם בשעה ברקע, ללא קשר למצב ממשק הניהול"
1215
 
1216
+ # wpml-name: c1be9fa944afc7c1ec735d4c5a3b38d6
1217
+ #: <?php if ($this->conf->options['run_in_dashboard']) echo '
1218
+ #: checked="checked"'; ?>/> _e('Run continuously while the Dashboard is open',
1219
+ #: 'broken-link-checker'); ?> </label>
1220
+ msgctxt "f835d87f1fec478ee83ea7baab75a6d1"
1221
+ msgid "Run continuously while the Dashboard is open"
1222
+ msgstr "ניטור מתמשך כל עוד ממשק הניהול של וורדפרס פתוח על ידי משתמש אחד לפחות (ללא הגבלת ה-\"תפקיד\" (Role) אליו משויך המשתמש - משתמש כלשהו)"
1223
 
1224
+ # wpml-name: 576700fb860633bccb59ce9fb2f781ad
1225
+ #: <tr valign="top"> <th scope="row"><?php _e('Link monitor',
1226
+ #: 'broken-link-checker'); ?></th> <td>
1227
+ msgctxt "7475a5aabeb6a51a457d5fb8fc532085"
1228
+ msgid "Link monitor"
1229
+ msgstr "תכיפות ניטור הקישורים<br>(שימו לב - אם שתי תיבות הסימון של הגדרה זו יהיו ריקות - התוסף למעשה יפסיק לחלוטין לבדוק קישורים! (אז תשאירו לפחות אחד מסומן))"
1230
 
1231
+ # wpml-name: 95133c3024b6a30100f53bbae752eda1
1232
+ #: <br/><span class="description"> <?php _e('Links that take longer than this
1233
+ #: to load will be marked as broken.','broken-link-checker'); ?> </span>
1234
+ msgctxt "93ca095e25a6933fecf3d479ad437682"
1235
+ msgid "Links that take longer than this to load will be marked as broken."
1236
+ msgstr "קישורים שלא שולחים חזרה קוד שגיאה או הפניה אך זמן הטעינה של עמוד היעד שלהם ארוך מערך זה - כנראה בעייתים מסיבה כלשהי ולכן יסומנו כשבורים.<br>(ערך ברירת מחדל: 30. ערך מינימום: 1. ערך מקסימום: 999. אפס (0) אינו ערך מותר)"
 
1237
 
1238
+ # wpml-name: c85a251cc457840f1e032f1b733e9398
1239
+ #: $text = __('Timeout', 'broken-link-checker'); $code
1240
+ #: BLC_LINK_STATUS_WARNING;
1241
+ msgctxt "96c25d7f456104063985847b6b9ea2d5"
1242
+ msgid "Timeout"
1243
+ msgstr "משך הבדיקה המקסימלי לכל קישור (Timeout)"
1244
 
1245
+ # wpml-name: 380b0462e86cb2f62a7990d2243ef1c2
1246
+ #: <tr valign="top"> <th scope="row"><?php _e('Check links using',
1247
+ #: 'broken-link-checker'); ?></th> <td>
1248
+ msgctxt "10bb100292791b8f1e6f7e7da904915b"
1249
+ msgid "Check links using"
1250
+ msgstr "בדיקת קישורים בעזרת"
1251
 
1252
+ # wpml-name: 0a0ff0b04dd4cb0a38d3afaa81c137b4
1253
+ #: <th scope="row"><?php _e('Exclusion list', 'broken-link-checker'); ?></th>
1254
+ #: <td><?php _e("Don't check links where the URL contains any of these words
1255
+ #: (one per line) :", ?><br/> <textarea name="exclusion_list"
1256
+ #: id="exclusion_list" cols='45' rows='4'><?php
1257
+ msgctxt "fb4641ee1ab06b573deb3414a4148295"
1258
+ msgid "Don't check links where the URL contains any of these words (one per line) :"
1259
+ msgstr "לא ייבדקו קישורים שכתובת האינטרנט שלהם מכילה לפחות את אחת מהמילים הבאות (יש לרשום בכל שורה רק מילה אחת):"
1260
 
1261
+ # wpml-name: 75dbaa0d90272abdab3939b6232a3568
1262
+ #: <tr valign="top"> <th scope="row"><?php _e('Exclusion list',
1263
+ #: 'broken-link-checker'); ?></th> <td><?php _e("Don't check links where the
1264
+ #: URL contains any of these words (one per line) :", ?><br/>
1265
+ msgctxt "73c54df791a00379b1aad75e492fb23f"
1266
+ msgid "Exclusion list"
1267
+ msgstr "רשימת התעלמות (Exclusion)"
1268
 
1269
+ # wpml-name: a407440cd9b274d759e49793e70701da
1270
+ #: <tr valign="top"> <th scope="row"><?php _e('Link types',
1271
+ #: 'broken-link-checker'); ?></th> <td>
1272
+ msgctxt "31346d0c06270b9430d73d72cebf350d"
1273
+ msgid "Link types"
1274
+ msgstr "סוגי קישורים"
1275
 
1276
+ # wpml-name: fc1ea81cd9f8afd0c6e1c07668b29520
1277
+ #: <tr valign="top"> <th scope="row"><?php _e('Post statuses',
1278
+ #: 'broken-link-checker'); ?></th> <td>
1279
+ msgctxt "b73caabc874a1727223126c15a14fbae"
1280
+ msgid "Post statuses"
1281
+ msgstr "סטטוס של פוסטים"
1282
 
1283
+ # wpml-name: 89b80599eabf2345102bd71688eba5c0
1284
+ #: <tr valign="top"> <th scope="row"><?php _e('Look for links in',
1285
+ #: 'broken-link-checker'); ?></th> <td>
1286
+ msgctxt "a17c6fa5392ee8fe852e1a07823fbde6"
1287
+ msgid "Look for links in"
1288
+ msgstr "חיפוש קישורים על פי:"
1289
 
1290
+ # wpml-name: 9ce97ed797d113983bc6805f230966be
1291
+ #: <p class="description"><?php _e('Turning off this option will make the
1292
+ #: plugin report all problems as broken links.', 'broken-link-checker');
1293
+ #: ?></p>
1294
+ msgctxt "70c75ef519614849bf461dc6e6bf2f95"
1295
+ msgid "Turning off this option will make the plugin report all problems as broken links."
1296
+ msgstr "כיבוי אפשרות זו יגרום לתוסף לדווח על כל הבעיות כקישורים שבורים."
1297
+
1298
+ # wpml-name: 39976ecd99206afcd14fbd7cca1bf989
1299
+ #: <?php checked($this->conf->options['warnings_enabled']); ?>/> _e('Show
1300
+ #: uncertain or minor problems as "warnings" instead of "broken"',
1301
+ #: 'broken-link-checker'); ?> </label>
1302
+ msgctxt "9b1a46595f143d1a77dbd0eb55850a82"
1303
+ msgid "Show uncertain or minor problems as \"warnings\" instead of \"broken\""
1304
+ msgstr "הצג בעיות לא ברורות או מינוריות כ \"אזהרות\" במקום כ \"קישורים שבורים\""
1305
+
1306
+ # wpml-name: 04069f72752c52de7cf76ece26da5228
1307
+ #: <?php checked($this->conf->options['suggestions_enabled']); ?>/>
1308
+ #: _e('Suggest alternatives to broken links', 'broken-link-checker'); ?>
1309
+ #: </label>
1310
+ msgctxt "2cb7486daf8bb4599d12c14ae4d58dca"
1311
+ msgid "Suggest alternatives to broken links"
1312
+ msgstr "הצע חלופות לקישורים שבורים"
1313
 
1314
+ # wpml-name: ed1b207a7a01ce1286df25f3c9f80608
1315
+ #: <?php if ($this->conf->options['nofollow_broken_links']) echo '
1316
+ #: checked="checked"'; ?>/> _e('Stop search engines from following broken
1317
+ #: links', 'broken-link-checker'); ?> </label>
1318
+ msgctxt "cb9576476c5aeb93ef9923e96a2778d1"
1319
+ msgid "Stop search engines from following broken links"
1320
+ msgstr "חסימת מנועי חיפוש מלהמשיך אל עמוד היעד של קישור שבור"
1321
 
1322
+ # wpml-name: ee8692354a69a0d2e498714dd04ae8ca
1323
+ #: <?php if ($this->conf->options['mark_removed_links']) echo '
1324
+ #: checked="checked"'; ?>/> _e('Apply custom formatting to removed links',
1325
+ #: 'broken-link-checker'); ?> </label>
1326
+ msgctxt "4ee2c3fe6dc478e797484ef6c372c850"
1327
+ msgid "Apply custom formatting to removed links"
1328
+ msgstr "החלת עיצוב מותאם לטקסט שהקישור שלו הוסר"
1329
 
1330
+ # wpml-name: 1f75320580610afe43a4a6694f59db26
1331
+ #: <a id="toggle-removed-link-css-editor" href="#"
1332
+ #: class="blc-toggle-link"><?php _e('Edit CSS', 'broken-link-checker'); ?></a>
1333
+ msgctxt "cdc9dd0fa8cb43116288e411b78b5d42"
1334
+ msgid "Edit CSS"
1335
+ msgstr "עריכת CSS"
1336
 
1337
+ # wpml-name: a1bdd9016750ac60fe4548f477390f8d
1338
+ #: <?php if ($this->conf->options['mark_broken_links']) echo '
1339
+ #: checked="checked"'; ?>/> _e('Apply custom formatting to broken links',
1340
+ #: 'broken-link-checker'); ?> </label>
1341
+ msgctxt "43bc9755e5fb47dfcbd90d4894806770"
1342
+ msgid "Apply custom formatting to broken links"
1343
+ msgstr "החלת עיצוב מותאם לטקסט שהקישור שלו שבור"
1344
 
1345
+ # wpml-name: 6d25159642a573e619a547d143133a39
1346
+ #: <tr valign="top"> <th scope="row"><?php _e('Link
1347
+ #: tweaks','broken-link-checker'); ?></th> <td>
1348
+ msgctxt "57edfbf9adb9ce75ec21229e76bbd646"
1349
+ msgid "Link tweaks"
1350
+ msgstr "עיצוב טקסט הקישור<br>(כאן ניתן לציין עיצוב מבוסס CSS לטקסט של קישורים על פי הסטטוס שלהם. למשל קו חוצה/מוחק על טקסט של קישור שבור, כך שהקוראים יבינו שהקישור שבור מבלי שיצטרכו להקליק על הקישור)"
1351
 
1352
+ # wpml-name: 35ac87a361436e1b67202b9c8fde3ff3
1353
+ #: <?php if ($this->conf->options['send_authors_email_notifications']) echo '
1354
+ #: checked="checked"'; ?>/> _e('Send authors e-mail notifications about broken
1355
+ #: links in their posts', 'broken-link-checker'); ?> </label><br />
1356
+ msgctxt "1a17920177cf7107dedc6f87b95fc8db"
1357
+ msgid "Send authors e-mail notifications about broken links in their posts"
1358
+ msgstr "מחברי פוסטים יקבלו התראות בדואר אלקטרוני אודות קישורים שבורים בפוסטים שלהם"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1359
 
1360
+ # wpml-name: 39ac7e35db29f41ea783d7c4f73eed4e
1361
+ #: <?php if ($this->conf->options['send_email_notifications']) echo '
1362
+ #: checked="checked"'; ?>/> _e('Send me e-mail notifications about newly
1363
+ #: detected broken links', 'broken-link-checker'); ?> </label><br />
1364
+ msgctxt "7b71f982d182fc661a319ba5fcc54de2"
1365
+ msgid "Send me e-mail notifications about newly detected broken links"
1366
+ msgstr "משלוח התראות בדואר אלקטרוני אודות קישורים שבורים חדשים שנמצאו"
1367
 
1368
+ # wpml-name: aa60a5c8ef23afb1778defd86f5f486d
1369
+ #: <tr valign="top"> <th scope="row"><?php _e('E-mail notifications',
1370
+ #: 'broken-link-checker'); ?></th> <td>
1371
+ msgctxt "edac182ad71676b1fbf35b048a8761c0"
1372
+ msgid "E-mail notifications"
1373
+ msgstr "התראות בדואר אלקטרוני"
1374
 
1375
+ # wpml-name: 6114995f2df68d11af5cc3e9ea1a92b8
1376
+ #: <span class="description"> <?php _e('Existing links will be checked this
1377
+ #: often. New usually ASAP.', 'broken-link-checker'); ?> </span>
1378
+ msgctxt "8b1e5eb17dbb9e20329a73cb2a92b076"
1379
+ msgid "Existing links will be checked this often. New links will usually be checked ASAP."
1380
+ msgstr "קישורים קיימים יבדקו בתכיפות הזו. קישורים חדשים בדרך כלל יבדקו בהקדם האפשרי.<br>(ערך ברירת מחדל: 72. ערך מינימום: 1. ערך מקסימום: 99999. אפס (0) אינו ערך מותר)"
1381
 
1382
+ # wpml-name: 07dc99ae3f7444f448c7eee0b6d1efea
1383
+ #: <tr valign="top"> <th scope="row"><?php _e('Check each
1384
+ #: link','broken-link-checker'); ?></th> <td>
1385
+ msgctxt "16d76db645e16ec6dca79b6cb622eac7"
1386
+ msgid "Check each link"
1387
+ msgstr "בדיקה חוזרת של כל הקישורים"
1388
 
1389
+ # wpml-name: 9795882a2424ffdf79b1b931b4895177
1390
+ #: } else { toggleButton.text('<?php _e('Show debug info',
1391
+ #: 'broken-link-checker'); ?>');
1392
+ msgctxt "4b6a0e78f076920c70ff764cbd73f39b"
1393
+ msgid "Show debug info"
1394
+ msgstr "הצגת מידע מערכת"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1395
 
1396
+ # wpml-name: ec53a8c4f07baed5d8825072c89799be
1397
+ #: 'status' => array( 'heading' __('Status', 'broken-link-checker'), 'content'
1398
+ #: array($this, 'column_status'),
1399
+ msgctxt "4714bbaae8bb4abc1821db374fbd11dc"
1400
+ msgid "Status"
1401
+ msgstr "סטטוס"
1402
 
1403
+ # wpml-name: a5ed63c32631f4744339cd0e20b7c7a8
1404
+ #: <div class="wrap" id="blc-settings-wrap"> <h2><?php _e('Broken Link Checker
1405
+ #: Options', 'broken-link-checker'); ?></h2>
1406
+ msgctxt "ceb437e687eb8c19fb2ceebb08ab5648"
1407
+ msgid "Broken Link Checker Options"
1408
+ msgstr "הגדרות בודק קישורים שבורים"
1409
 
1410
+ # wpml-name: 5465ce77e4f03d3cc8938113e3846842
1411
+ #: <input id="blc-autoexpand" name="blc-autoexpand" type="checkbox" value="1"
1412
+ #: <?php if ( $this->conf->options['autoexpand_widget'] ) echo
1413
+ #: 'checked="checked"'; ?> /> _e('Automatically expand the widget broken links
1414
+ #: have been detected', 'broken-link-checker'); </label></p>
1415
+ msgctxt "ebe4259d6b7a3ddfdd75b4c2e7d66bdb"
1416
+ msgid "Automatically expand the widget if broken links have been detected"
1417
+ msgstr "הרחב אוטומטית את הוידג'ט אם נמצאו קישורים שבורים"
1418
 
1419
+ # wpml-name: eaaeb578df66bda95ef93f9c532fcb95
1420
+ #: } else { $('#wsblc_full_status').html('<?php _e('[ Network error ]',
1421
+ #: 'broken-link-checker'); ?>');
1422
+ msgctxt "7be473db94041ce6add7e8321f4bceb5"
1423
+ msgid "[ Network error ]"
1424
+ msgstr "[ שגיאת רשת ]"
1425
 
1426
+ # wpml-name: 8524de963f07201e5c086830d370797f
1427
+ #: //Load up the new link info (so sue me)
1428
+ #: details_row.find('td').html('<center><?php echo esc_js(__('Loading...' ,
1429
+ #: 'broken-link-checker')); ?></center>').load( "<?php
1430
+ #: admin_url('admin-ajax.php'); ?>",
1431
+ msgctxt "0ba37ee9cc0b65fef2d5fb272bf6d5dd"
1432
+ msgid "Loading..."
1433
+ msgstr "טוען..."
1434
 
1435
+ # wpml-name: 0898db1216c3d1e59ae47fa3276a220d
1436
+ #: if ( $add_admin_link ) { $result .= __("You can see all broken links
1437
+ #: here:", 'broken-link-checker') . "<br>"; sprintf('<a href="%1$s">%1$s</a>',
1438
+ #: admin_url('tools.php?page=view-broken-links'));
1439
+ msgctxt "861711c304a57965016deeb9ad383947"
1440
+ msgid "You can see all broken links here:"
1441
+ msgstr "ניתן לצפות בכל הקישורים השבורים כאן:"
1442
 
1443
+ # wpml-name: a622cd128642b01c08622f400d901212
1444
+ #: sprintf( __('Link URL : <a href="%s">%s</a>', 'broken-link-checker'),
1445
+ #: htmlentities($instance->get_url()),
1446
+ #: blcUtility::truncate($instance->get_url(), 70, '') ), __('Source %s',
1447
+ #: $instance->ui_get_source('email') );
1448
+ msgctxt "1ec3660792b0d2fb717eb4ab60971fcf"
1449
+ msgid "Source : %s"
1450
+ msgstr "מקור הקישור: %s"
1451
 
1452
+ # wpml-name: 977a04e1dc68046362c8dc5c1247cfa9
1453
+ #: sprintf( __('Link text : %s', 'broken-link-checker'),
1454
+ #: $instance->ui_get_link_text('email') ), URL <a href="%s">%s</a>',
1455
+ #: htmlentities($instance->get_url()),
1456
+ #: blcUtility::truncate($instance->get_url(), 70, '') __('Source
1457
+ #: $instance->ui_get_source('email')
1458
+ msgctxt "838b465e62dbc95b47e1b2f389ced77f"
1459
+ msgid "Link URL : <a href=\"%s\">%s</a>"
1460
+ msgstr "קישור כתובת אינטרנט: ‏<a href=\"%s\">%s</a>"
1461
 
1462
+ # wpml-name: a5132356c5735ce69f870238b695bd77
1463
+ #: $pieces = array( sprintf( __('Link text : %s', 'broken-link-checker'),
1464
+ #: $instance->ui_get_link_text('email') ), URL <a href="%s">%s</a>',
1465
+ #: htmlentities($instance->get_url()),
1466
+ #: blcUtility::truncate($instance->get_url(), 70, '')
1467
+ msgctxt "1dca8c9536347d8643c870f681fd8dbb"
1468
+ msgid "Link text : %s"
1469
+ msgstr "טקסט קישור: %s"
1470
 
1471
+ # wpml-name: 4fbb1cf7840816cc86f658815ff89e84
1472
+ #: } else { $line = __("Here's a list of the new broken links: ",
1473
+ #: 'broken-link-checker');
1474
+ msgctxt "1eb40e0d364efa71d1883a25e9897f2d"
1475
+ msgid "Here's a list of the new broken links: "
1476
+ msgstr "הנה רשימה של קישורים שבורים חדשים: "
1477
 
1478
+ # wpml-name: 1ac527125deb662b279820d2049b6fdf
1479
+ #: $subject = sprintf( __("[%s] Broken links detected",
1480
+ #: 'broken-link-checker'), html_entity_decode(get_option('blogname'),
1481
+ #: ENT_QUOTES)
1482
+ msgctxt "1d61a5166de69c7d7cdf6693674c9482"
1483
+ msgid "[%s] Broken links detected"
1484
+ msgstr "נמצאו [%s] קישורים שבורים"
1485
 
1486
+ # wpml-name: f9348db14dee55e0495e22c1f296b119
1487
+ #: $data['state'] = 'warning'; $data['message'] __('If this value is zero even
1488
+ #: after several page reloads you have probably encountered a bug.',
1489
+ #: 'broken-link-checker'); }
1490
+ msgctxt "af317ad6a68127a6edd889c37f80cd43"
1491
+ msgid "If this value is zero even after several page reloads you have probably encountered a bug."
1492
+ msgstr "אם ערך זה הוא 0 (אפס) אפילו לאחר מספר טעינות עמוד חוזרות - כנראה שנתקלתם בבאג."
1493
 
1494
+ # wpml-name: 72f6d67cf7020e43932dd17e8d6e966f
1495
+ #: 'value' => sprintf( __('On ( %s )', 'broken-link-checker'),
1496
+ #: ini_get('open_basedir') ), 'message' __('Redirects may be detected as
1497
+ #: broken links when open_basedir is on.', );
1498
+ msgctxt "70e09db7053b206e7fd7aaf41001f357"
1499
+ msgid "Redirects may be detected as broken links when open_basedir is on."
1500
+ msgstr "ייתכן והפניות יסווגו כקישורים שבורים כאשר open_basedir פעיל."
1501
 
1502
+ # wpml-name: b9c63dd8fde6d384ae37fac91677883f
1503
+ #: 'state' => 'warning', 'value' sprintf( __('On ( %s )',
1504
+ #: 'broken-link-checker'), ini_get('open_basedir') ), 'message' __('Redirects
1505
+ #: may be detected as broken links when open_basedir is on.',
1506
+ msgctxt "3131e55f7d76be5ef6a3630dc8b4e5ea"
1507
+ msgid "On ( %s )"
1508
+ msgstr "פעיל ( %s )"
1509
 
1510
+ # wpml-name: d15305d7a4e34e02489c74a5ef542f36
1511
+ #: 'state' => 'ok', 'value' __('Off', 'broken-link-checker'), );
1512
+ msgctxt "4424550b239e2606e4e1c0430587d1ce"
1513
+ msgid "Off"
1514
+ msgstr "כבוי"
1515
 
1516
+ # wpml-name: 6e1a1c275976b9add3ce001fcc016037
1517
+ #: 'value' => __('On', 'broken-link-checker'), 'message' __('Redirects may be
1518
+ #: detected as broken links when safe_mode is on.', );
1519
+ msgctxt "e54e8b9a76eac9c54fdaa05023a6bc29"
1520
+ msgid "Redirects may be detected as broken links when safe_mode is on."
1521
+ msgstr "ייתכן והפניות יסווגו כקישורים שבורים כאשר safe_mode פעיל."
1522
 
1523
+ # wpml-name: 521c36a31c2762741cf0f8890cbe05e3
1524
+ #: 'state' => 'warning', 'value' __('On', 'broken-link-checker'), 'message'
1525
+ #: __('Redirects may be detected as broken links when safe_mode is on.',
1526
+ msgctxt "af6f30ef64b0be8fe75c1a6a7489284a"
1527
+ msgid "On"
1528
+ msgstr "פעיל"
1529
 
1530
+ # wpml-name: 455a3ffb2f7c7a61dd5dc0955b3b8fa5
1531
+ #: 'value' => __('Not installed', 'broken-link-checker'), 'message' __('You
1532
+ #: must have either CURL or Snoopy installed for the plugin to work!', );
1533
+ msgctxt "222d4159bbfdb239462449a095054415"
1534
+ msgid "You must have either CURL or Snoopy installed for the plugin to work!"
1535
+ msgstr "תוכנת CURL או Snoopy חייבת להיות מותקנת בכדי שתוסף זה יעבוד באופן תקין! אנא פנו למנהלי האתר או חברת אירוח האתרים בה מתארח אתר זה ובקשו מהם להתקין את אחת מהתוכנות האלו, בגרסה עדכנית."
1536
 
1537
+ # wpml-name: 98dd43dfae05b11befe1f140e0ec787a
1538
+ #: 'state' => 'ok', 'value' __('Installed', 'broken-link-checker'), );
1539
+ msgctxt "a436610c22ccdeba8d7a8cf0bd4f193d"
1540
+ msgid "Installed"
1541
+ msgstr "מותקן"
1542
 
1543
+ # wpml-name: 9ebbdd42206a8cd566543db4624de928
1544
+ #: } $debug[ __('CURL version', 'broken-link-checker') ] = $data;
1545
+ msgctxt "c884068e58281ffe6be67694155006e2"
1546
+ msgid "CURL version"
1547
+ msgstr "גרסת CURL"
1548
 
1549
+ # wpml-name: d12fb360f73c34226d1e50228875d8cf
1550
+ #: 'state' => 'error', 'value' __('Not installed', 'broken-link-checker'),
1551
+ #: 'message' __('You must have either CURL or Snoopy installed for the plugin
1552
+ #: to work!',
1553
+ msgctxt "76af88fb50aefe4e2e1d2ef3a4020ccf"
1554
+ msgid "Not installed"
1555
+ msgstr "לא מותקן"
1556
 
1557
+ # wpml-name: b83115e55f158472c929578c7d329ea3
1558
+ #: 'value' => $version['version'], 'message' __('You have an old version of
1559
+ #: CURL. Redirect detection may not work properly.', 'broken-link-checker'),
1560
+ #: );
1561
+ msgctxt "eb09f243cc535416ab7106238ca3d832"
1562
+ msgid "You have an old version of CURL. Redirect detection may not work properly."
1563
+ msgstr "גרסת ה-CURL באתר שלכם ישנה. בשל כך קיים סיכוי שתהליך איתור ההפניות לא יעבוד באופן תקין. כדאי לבקש ממנהלי האתר שלכם לעדכן את גרסת ה-CURL לגרסה עדכנית."
1564
 
1565
+ # wpml-name: f52e50f86515ab9ff75a5950025692d1
1566
+ #: //MySQL version $debug[ __('MySQL version', 'broken-link-checker') ] =
1567
+ #: array( 'state' => 'ok',
1568
+ msgctxt "098bc20e114df7cd7f7b5778e3e2459c"
1569
+ msgid "MySQL version"
1570
+ msgstr "גרסת MySQL"
1571
 
1572
+ # wpml-name: fa374422dcbc5f017b5ecbc93355e02e
1573
+ #: //PHP version. Any one is fine as long WP supports it. $debug[ __('PHP
1574
+ #: version', 'broken-link-checker') ] = array( 'state' => 'ok',
1575
+ msgctxt "1ff0c47ade8bbd433d2f142366e69e83"
1576
+ msgid "PHP version"
1577
+ msgstr "גרסת PHP"
1578
 
1579
+ # wpml-name: ea0098cdfb89d219e52b1671278d971d
1580
+ #: 'blc_dashboard_widget', __('Broken Link Checker', 'broken-link-checker'),
1581
+ #: array( $this, 'dashboard_widget' ),
1582
+ msgctxt "ab3ca90ad37068411e6f04e7887081ca"
1583
+ msgid "Broken Link Checker"
1584
+ msgstr "בודק קישורים שבורים"
1585
 
1586
+ # wpml-name: 3f59263a70f90940ff976a25937bf95a
1587
+ #: } else { printf( __('Failed to load link details (%s)',
1588
+ #: 'broken-link-checker'), $wpdb->last_error ); die();
1589
+ msgctxt "9378a748447b6ea161324423f25fccf3"
1590
+ msgid "Failed to load link details (%s)"
1591
+ msgstr "נכשל הניסיון לטעון את פרטי הקישור (%s)"
1592
 
1593
+ # wpml-name: 565978f08d53b7d662b93c422b823574
1594
+ #: //FB::error('Link ID not specified, you hacking bastard.'); die( __('Error
1595
+ #: : link specified', 'broken-link-checker') ); }
1596
+ msgctxt "d5dd214b0b3bf315cacdeb8096e78bd4"
1597
+ msgid "Error : link ID not specified"
1598
+ msgstr "שגיאה: לא מוגדר קוד זיהוי קישור"
1599
 
1600
+ # wpml-name: 9c85b0bc5d732e92d0907caf1f7b47dd
1601
+ #: if (!current_user_can('edit_others_posts')){ die( __("You don't have
1602
+ #: sufficient privileges to access this information!", 'broken-link-checker')
1603
+ #: ); }
1604
+ msgctxt "bc0cfc9b5567d5bf306b48aa016d65df"
1605
+ msgid "You don't have sufficient privileges to access this information!"
1606
+ msgstr "אין לכם את ההרשאות המתאימות בכדי לגשת למידע זה!"
1607
 
1608
+ # wpml-name: 2952eb9646ad0681f444ee211cb134ef
1609
+ #: die( json_encode( array( 'error' => __("An unexpected error occured!",
1610
+ #: 'broken-link-checker') )));
1611
+ msgctxt "ff772e697dfa8d06db807f26b0ee47ad"
1612
+ msgid "An unexpected error occured!"
1613
+ msgstr "אירעה שגיאה לא צפויה!"
1614
 
1615
+ # wpml-name: 343c34a1396e0309db5fa0599551b34c
1616
+ #: die( json_encode( array( 'error' => __("An unexpected error occurred!",
1617
+ #: 'broken-link-checker') )));
1618
+ msgctxt "52ccd13353cbb4177dc049d72aaf04bb"
1619
+ msgid "An unexpected error occurred!"
1620
+ msgstr "התרחשה שגיאה לא צפויה!"
1621
 
1622
+ # wpml-name: a777f56e5fe176c61a63027598a400b8
1623
+ #: die( json_encode( array( 'error' => __("Oops, the new URL is invalid!",
1624
+ #: 'broken-link-checker') )));
1625
+ msgctxt "8a0af9ca329163198b4f7fb3b2884525"
1626
+ msgid "Oops, the new URL is invalid!"
1627
+ msgstr "אופס, כתובת האינטרנט החדשה אינה תקינה!"
1628
 
1629
+ # wpml-name: 5d64f9870f315d29d83b43a9f818fe11
1630
+ #: die( json_encode( array( 'error' => __("Error : link_id or new_url not
1631
+ #: specified", 'broken-link-checker') )));
1632
+ msgctxt "ab24f73e0b6e04bed843f158656efae9"
1633
+ msgid "Error : link_id or new_url not specified"
1634
+ msgstr "שגיאה: link_id או new_url אינם מוגדרים"
1635
 
1636
+ # wpml-name: c00354fc794b80de58fa0bb4135a347c
1637
+ #: die( json_encode( array( 'error' => __("Error : link_id not specified",
1638
+ #: 'broken-link-checker') )));
1639
+ msgctxt "c2d34e97613de17dc9325265419e6d2d"
1640
+ msgid "Error : link_id not specified"
1641
+ msgstr "שגיאה: link_id אינו מוגדר"
1642
 
1643
+ # wpml-name: 4494727036b475d1ecda3f12d303dea0
1644
+ #: } else { die( __("Oops, couldn't modify the link!", 'broken-link-checker')
1645
+ #: ) ;
1646
+ msgctxt "0b515fa0f27f295e71b89b38326648c5"
1647
+ msgid "Oops, couldn't modify the link!"
1648
+ msgstr "אופס, לא ניתן לשנות את הקישור!"
1649
 
1650
+ # wpml-name: cbb16c39ee5e6191640d91f6b8dee4be
1651
+ #: die( json_encode( array( 'error' => sprintf(__("Oops, I can't find the link
1652
+ #: %d", 'broken-link-checker'), $id) )));
1653
+ msgctxt "2b6dde188af11e2a1199ad7a06027b50"
1654
+ msgid "Oops, I can't find the link %d"
1655
+ msgstr "אופס, לא נמצא הקישור %d"
1656
 
1657
+ # wpml-name: eb6d8ded0c155aacf214fdee54667185
1658
+ #: } else { $text .= __('No links detected.', 'broken-link-checker');
1659
+ msgctxt "06a96199e402a175599071f21a3c6b7f"
1660
+ msgid "No links detected."
1661
+ msgstr "לא נמצאו קישורים."
1662
 
1663
+ # wpml-name: 0f422d129739b981133431b5abaa7364
1664
+ #: if ($this->conf->options['need_resynch']){ $text .= __('Searching your blog
1665
+ #: for links...', 'broken-link-checker'); } else {
1666
+ msgctxt "6c224edb31f3e5e3e40e9065c7e79cdc"
1667
+ msgid "Searching your blog for links..."
1668
+ msgstr "מתבצע חיפוש קישורים באתר..."
1669
 
1670
+ # wpml-name: 44c4596e2e4f62635c5175a36c4041bd
1671
+ #: $text .= sprintf( __('Detected %1$s in %2$s.', 'broken-link-checker'),
1672
+ #: $url_count,
1673
+ msgctxt "614dfe3eb9d3dad84e12ebf114afeaf0"
1674
+ msgid "Detected %1$s in %2$s."
1675
+ msgstr "נמצאו %1$s בתוך %2$s."
1676
 
1677
+ # wpml-name: c329f58f372a356dd08cd5fc2aeec1eb
1678
+ #: $text .= sprintf( __('Detected %1$s in %2$s and still searching...',
1679
+ #: 'broken-link-checker'), $url_count,
1680
+ msgctxt "026b2aabf27fb7d2036296bd227afab1"
1681
+ msgid "Detected %1$s in %2$s and still searching..."
1682
+ msgstr "נמצאו %1$s בתוך %2$s והחיפוש ממשיך..."
1683
 
1684
+ # wpml-name: bd526d6b0868ea3a4bc94f4e4a54ae29
1685
+ #: } else { $text .= __("No URLs in the work queue.", 'broken-link-checker');
1686
+ msgctxt "6d71d25103679472a8b42b1c4d256541"
1687
+ msgid "No URLs in the work queue."
1688
+ msgstr "אין בתור המשימות כתובות אינטרנט לבדיקה"
1689
 
1690
+ # wpml-name: eb19827003294848020180bfffb543d5
1691
+ #: } else { $text .= __("No broken links found.", 'broken-link-checker');
1692
+ msgctxt "c676579cf09e0fc1059b3b13fce39e1c"
1693
+ msgid "No broken links found."
1694
+ msgstr "לא נמצאו קישורים שבורים."
1695
 
1696
+ # wpml-name: 023f80c32161ca63d678a64f04d13f5f
1697
+ #: $text .= sprintf( "<a href='%s' title='" . __('View broken links',
1698
+ #: 'broken-link-checker') "'><strong>". _n('Found %d link', 'Found
1699
+ #: $status['broken_links'],
1700
+ msgctxt "f19322e827b4b92b1afc966630debc2c"
1701
+ msgid "View broken links"
1702
+ msgstr "צפיה בקישורים שבורים"
1703
 
1704
+ # wpml-name: 17d52e2ecc98c334e22872b835af1b50
1705
+ #: die( json_encode( array( 'error' => __("You're not allowed to do that!",
1706
+ #: 'broken-link-checker') )));
1707
+ msgctxt "8be79abcae568f697508b1aacc5c101f"
1708
+ msgid "You're not allowed to do that!"
1709
+ msgstr "אינכם מורשים לבצע פעולה זו!"
1710
 
1711
+ # wpml-name: c321c858a221b5564ce32ca36f0e5872
1712
+ #: $this->conf->options['table_color_code_status'] ? ' checked="checked"' :
1713
+ #: '', __('Color-code status codes', 'broken-link-checker') );
1714
+ msgctxt "4baede10117f30e6ac5d51aee1b7e400"
1715
+ msgid "Color-code status codes"
1716
+ msgstr "קודי סטטוס צבעוניים"
1717
 
1718
+ # wpml-name: d3db523f78e49567158ffb075ed776a7
1719
+ #: $html .= sprintf( __('Highlight links broken for at least %s days',
1720
+ #: 'broken-link-checker'), $input_box
1721
+ msgctxt "d1f1c4e7438a8599f5cfecdc66564171"
1722
+ msgid "Highlight links broken for at least %s days"
1723
+ msgstr "הדגשת הרקע של קישורים אשר שבורים כבר במשך לפחות %s ימים"
1724
 
1725
+ # wpml-name: 74248c725e00bf9fe04df4e35b249a19
1726
+ #: $html .= '<h5>' . __('Misc', 'broken-link-checker') '</h5>'; '<div
1727
+ #: class="screen-options">';
1728
+ msgctxt "ac49f0a1d6f618c309b1e89689738167"
1729
+ msgid "Misc"
1730
+ msgstr "שונות"
1731
 
1732
+ # wpml-name: 807765384d9d5527da8848df14a4f02f
1733
+ #: $this->conf->options['table_links_per_page'], __('links',
1734
+ #: 'broken-link-checker'), __('Apply')
1735
+ msgctxt "10f1b8ce050e1a84d70e4aa3ff6f5186"
1736
+ msgid "links"
1737
+ msgstr "קישורים"
1738
 
1739
+ # wpml-name: 0f4c96cf70000579866509bac40faedb
1740
+ #: //Let the user show/hide individual table columns $html = '<h5>' .
1741
+ #: __('Table columns', 'broken-link-checker') '</h5>';
1742
+ msgctxt "afc1074d2cfbad057920cf73f502b258"
1743
+ msgid "Table columns"
1744
+ msgstr "טורי טבלה"
 
1745
 
1746
+ # wpml-name: f2f6ebb0a768ff56ceb64543271baf22
1747
+ #: </div>', __( 'The "Warnings" page lists problems that are probably
1748
+ #: temporary or suspected to be false positives.<br> Warnings persist for a
1749
+ #: long time will usually reclassified as broken links.',
1750
+ msgctxt "c918d152a74555196b6a6729f12d4313"
1751
+ msgid "The \"Warnings\" page lists problems that are probably temporary or suspected to be false positives.<br> Warnings that persist for a long time will usually be reclassified as broken links."
1752
+ msgstr "עמוד ה \"אזהרות\" מציג רשימת בעיות שהן ככל הנראה זמניות או חשודות כדיווח שגוי.<br>אזהרות הנמשכות לאורך זמן בדרך-כלל יוגדרו מחדש כקישורים שבורים."
1753
+
1754
+ # wpml-name: 9a3f71da862c21450bdf34bb8cff48ef
1755
+ #: $messages[] = sprintf( __("Couldn't modify link %d",
1756
+ #: 'broken-link-checker'), $link_id
1757
+ msgctxt "f1fff2a705c3f4f2ff5f9ef8b5fdae1e"
1758
+ msgid "Couldn't modify link %d"
1759
+ msgstr "לא ניתן היה לשנות את הקישור %d"
1760
 
1761
+ # wpml-name: 72987dbd9aacf5bbcd8d8d2f7530d165
1762
+ #: $link->last_check_attempt = time(); $link->log __("This link was manually
1763
+ #: marked as working by the user.", 'broken-link-checker');
1764
+ msgctxt "ed354b1c0dfff7403cdd7a83d1267c87"
1765
+ msgid "This link was manually marked as working by the user."
1766
+ msgstr "הקישור סומן ידנית כ'לא שבור' על ידי משתמש."
1767
 
1768
+ # wpml-name: 60ee69ccb0ee4845bcc53cc107983127
1769
+ #: } else { $message = __("Didn't find anything to delete!",
1770
+ #: 'broken-link-checker'); $msg_class 'error';
1771
+ msgctxt "5d7f200c111dc340065b220170e46490"
1772
+ msgid "Didn't find anything to delete!"
1773
+ msgstr "לא נמצאו פריטים למחיקה!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1774
 
1775
+ # wpml-name: 214310fe5d651c7651618515f20527bf
1776
+ #: } else { $message = __('None of the selected links are redirects!',
1777
+ #: 'broken-link-checker');
1778
+ msgctxt "65e60acb2e91846d889c891f10346a18"
1779
+ msgid "None of the selected links are redirects!"
1780
+ msgstr "אף אחד מהקישורים שנבחרו אינו הפניה!"
1781
 
1782
+ # wpml-name: ff36083dfe5a3b7373da9a42a6722220
1783
+ #: //Success $message = __('Filter deleted', 'broken-link-checker'); } else {
1784
+ msgctxt "612bec31fc46c45dfee19f2ae96116c4"
1785
+ msgid "Filter deleted"
1786
+ msgstr "המסנן נמחק"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1787
 
1788
+ # wpml-name: 9a848a2af9ba08a6cb8172648fc3c0fb
1789
+ #: if ( empty($_POST['filter_id']) ){ $message = __("Filter ID not
1790
+ #: specified.", 'broken-link-checker'); $msg_class 'error';
1791
+ msgctxt "98c36f897014815f418eb376362cdf5f"
1792
+ msgid "Filter ID not specified."
1793
+ msgstr "לא מצוין קוד זיהוי מסנן."
1794
 
1795
+ # wpml-name: 3d206f4e6554bf84d8f211250337fb6b
1796
+ #: //Saved $message = sprintf( __('Filter "%s" created',
1797
+ #: 'broken-link-checker'), $_POST['name']); //A little hack to make the filter
1798
+ #: active immediately
1799
+ msgctxt "e2b05b6ad462c7fb1953c1e0f39d3789"
1800
+ msgid "Filter \"%s\" created"
1801
+ msgstr "הסינון \"%s\" נוצר"
1802
 
1803
+ # wpml-name: 5faffcf08e4c0aa27dfa11b83c158da1
1804
+ #: } elseif ( empty($_POST['params']) ){ $message = __("Invalid search
1805
+ #: query.", 'broken-link-checker'); $msg_class 'error';
1806
+ msgctxt "2a2ea6eed0687dea057e4cb131df8c41"
1807
+ msgid "Invalid search query."
1808
+ msgstr "שאילתת חיפוש לא תקינה."
1809
 
1810
+ # wpml-name: 09ed9d14796ccee8969ec6191f99814a
1811
+ #: if ( empty($_POST['name']) ){ $message = __("You must enter a filter
1812
+ #: name!", 'broken-link-checker'); $msg_class 'error';
1813
+ msgctxt "9e6741950b7be0c036effb4b2f144d71"
1814
+ msgid "You must enter a filter name!"
1815
+ msgstr "חובה להזין שם מסנן!"
1816
 
1817
+ # wpml-name: ce7471723325289bc2d5a351467edc86
1818
+ #: //Either the ID is wrong or there was some other error $message =
1819
+ #: __('Database : %s', 'broken-link-checker'); $msg_class 'error';
1820
+ msgctxt "ccb13d39370782a8f77b9d49c64cbca9"
1821
+ msgid "Database error : %s"
1822
+ msgstr "שגיאת מסד נתונים: %s"
1823
 
1824
+ # wpml-name: ae7593a16b20840ace7873c852ab3c21
1825
+ #: $html .= '<span class="description">' . __( 'Enter the names of custom
1826
+ #: fields you want to check (one per line). If a field contains HTML code,
1827
+ #: prefix its name with <code>html:</code>. For example,
1828
+ #: <code>html:field_name</code>.',
1829
+ msgctxt "24933237ae7ece1f08e2900b663e9d85"
1830
+ 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>."
1831
+ msgstr "הזינו את שמות השדות המותאמים שברצונכם לבדוק (שם אחד בכל שורה). אם השדה מכיל קוד HTML, הוסיפו לשם השדה קידומת של <code>html:</code>. למשל <code>html:field_name</code>"
1832
 
1833
+ # wpml-name: f1206f9fadc5ce41694f69129aecac26
1834
+ #: $module_id, __('Configure', 'broken-link-checker') );
1835
+ msgctxt "9b741e0e85cd1d266b508199ec76319e"
1836
+ msgid "Configure"
1837
+ msgstr "פירוט"
1838
 
1839
+ # wpml-name: 2d25c72c1b18e562f6654fff8e11711e
1840
+ #: } else { echo '<input type="text" disabled="disabled" value="',
1841
+ #: esc_attr(__('Not available', 'broken-link-checker')), '" size="13"/><br>';
1842
+ #: '<span class="description">';
1843
+ msgctxt "c0568c3786e3560e82274303d188d586"
1844
+ msgid "Not available"
1845
+ msgstr "לא זמין"
1846
 
1847
+ # wpml-name: 49d58899c5b6b86042fea832b2ebcbde
1848
+ #: printf( __( 'Link checking will be suspended if the average <a
1849
+ #: href="%s">server load</a> rises above this number. Leave field blank to
1850
+ #: disable load limiting.',
1851
+ msgctxt "3a21bad652d7e57e21eb07fde5cb33d0"
1852
+ 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."
1853
+ msgstr "בדיקת הקישורים תושעה אם ממוצע <a href=\"%s\">עומס השרת</a> עולה מעל מספר זה. השאר שדה זה ריק כדי לבטל את ההגבלה."
 
 
1854
 
1855
+ # wpml-name: 8f4d6e09ffaf2f5e61ff21f7e244bef1
1856
+ #: printf( __('Current load : %s', 'broken-link-checker'), '<span
1857
+ #: id="wsblc_current_load">...</span>'
1858
+ msgctxt "c8b2305ae489e585a30b0bddef1689c2"
1859
+ msgid "Current load : %s"
1860
+ msgstr "העומס הנוכחי על השרת: %s"
1861
 
1862
+ # wpml-name: 8641eaacafab9d58e7e93a92ff318714
1863
+ #: 'state' => 'ok', 'value' sprintf(__('%s seconds'),
1864
+ #: ini_get('max_execution_time')), );
1865
+ msgctxt "296fce0a3933e0311c497be104376535"
1866
+ msgid "%s seconds"
1867
+ msgstr "%s שניות"
1868
 
1869
+ # wpml-name: 24a40006e7c5a00e0b3d2b0b82471f22
1870
+ #: } else { echo __('Error : All link parsers missing!',
1871
+ #: 'broken-link-checker');
1872
+ msgctxt "c0d994b489687a42dfdb72f43c978bbb"
1873
+ msgid "Error : All link parsers missing!"
1874
+ msgstr "שגיאה: כל רכיבי הניתוח (Parsers) של הקישורים לא נמצאו!"
 
 
 
 
 
 
 
1875
 
1876
+ # wpml-name: efd18eb1383da67770298ab5b9624b4f
1877
+ #: printf( __('Example : Lorem ipsum <span %s>removed link</span>, dolor sit
1878
+ #: amet.', 'broken-link-checker'), ' class="removed_link"'
1879
+ msgctxt "3863f963a9e13905bc1dbf6b83161b38"
1880
+ msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
1881
+ msgstr "דוגמה: \"גנן גידל דגן בגן, <span %s>קישור להסרה</span> דגן גדול גדל בגן\"."
1882
 
1883
+ # wpml-name: 9fdecf6c5cee4a63d096a8ad8102b558
1884
+ #: ); echo ' ', __('Click "Save Changes" to update example output.',
1885
+ #: 'broken-link-checker'); ?>
1886
+ msgctxt "b5de044873478803ec674e80a9cde00f"
1887
+ msgid "Click \"Save Changes\" to update example output."
1888
+ msgstr "במידה ושיניתם את קוד ה-CSS הקליקו \"שמור שינויים\" בכדי לעדכן את הדוגמה."
1889
 
1890
+ # wpml-name: a9ec4576e4281a0475e1ddca3e6791ba
1891
+ #: printf( __('Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet.',
1892
+ #: 'broken-link-checker'), ' href="#" class="broken_link" onclick="return
1893
+ #: false;"'
1894
+ msgctxt "3054e3e0093d3e471ae4809320c1ec65"
1895
+ msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
1896
+ msgstr "דוגמה: \"גנן גידל דגן בגן, <a %s>קישור שבור</a> דגן גדול גדל בגן\"."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1897
 
1898
+ # wpml-name: fd7bfd8e4c3b7f0f0c018330a2787d68
1899
+ #: <span class="description"> <?php echo __('Leave empty to use the e-mail
1900
+ #: address specified in Settings &rarr; General.', 'broken-link-checker'); ?>
1901
+ #: </span>
1902
+ msgctxt "ddb0a610f9a0ee9bb551f2aea2747d1a"
1903
+ msgid "Leave empty to use the e-mail address specified in Settings &rarr; General."
1904
+ msgstr "השאירו שדה זה ריק אם ברצונכם שההתראות ישלחו לכתובת הדואר האלקטרוני הראשית של האתר, זו הרשומה בהגדרות הכלליות של וורדפרס (הגדרות -> כללי)"
1905
 
1906
+ # wpml-name: 8c43de933158c87d5693cfd620561be5
1907
+ #: <tr valign="top"> <th scope="row"><?php echo __('Notification e-mail
1908
+ #: address', 'broken-link-checker'); ?></th> <td>
1909
+ msgctxt "06f226d4fcd9159226add7e98dcf73a0"
1910
+ msgid "Notification e-mail address"
1911
+ msgstr "כתובת הדואר האלקטרוני למשלוח התראות"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1912
 
1913
+ # wpml-name: 328310001266fb48df9ecb2de2a16b95
1914
+ #: printf( __('Every %s hours','broken-link-checker'), sprintf(
1915
+ msgctxt "b0ca6f88f0af1a09d7995a6087fa7e1c"
1916
+ msgid "Every %s hours"
1917
+ msgstr "תבוצע בדיקה כל %s שעות"
1918
 
1919
+ # wpml-name: 9b6545e4cea9b4ad4979d41bb9170e2b
1920
+ #: 'how' => __('Protocols & APIs', 'broken-link-checker'), 'advanced'
1921
+ #: __('Advanced', );
1922
+ msgctxt "d3198b8d2f49fa4c6811f6216e4ccbcc"
1923
+ msgid "Advanced"
1924
+ msgstr "הגדרות מתקדמות"
1925
 
1926
+ # wpml-name: 0247973fd13fb1a95a484d5a52d73817
1927
+ #: 'which' => __('Which Links To Check', 'broken-link-checker'), 'how'
1928
+ #: __('Protocols & APIs', 'advanced' __('Advanced',
1929
+ msgctxt "b07c4b6dd0d6db8d6bd7d5573e92cee0"
1930
+ msgid "Protocols & APIs"
1931
+ msgstr "פרוטוקולים ו-APIs"
1932
 
1933
+ # wpml-name: 8ae28d5cb1092c2598a97b25c07dc132
1934
+ #: 'where' => __('Look For Links In', 'broken-link-checker'), 'which'
1935
+ #: __('Which To Check', 'how' __('Protocols & APIs',
1936
+ msgctxt "21be4950c20d47f8e9b1a1e1f4576ae8"
1937
+ msgid "Which Links To Check"
1938
+ msgstr "סוגי קישורים שיבדקו"
1939
 
1940
+ # wpml-name: cc3ac03efe8ae52f7e4241be16c437e8
1941
+ #: 'general' => __('General', 'broken-link-checker'), 'where' __('Look For
1942
+ #: Links In', 'which' __('Which To Check',
1943
+ msgctxt "9e5f085e615d2bb66d47b8525491fe1e"
1944
+ msgid "Look For Links In"
1945
+ msgstr "חפש קישורים ב"
1946
 
1947
+ # wpml-name: 0db377921f4ce762c62526131097968f
1948
+ #: $section_names = array( 'general' => __('General', 'broken-link-checker'),
1949
+ #: 'where' __('Look For Links In',
1950
+ msgctxt "08349efa8b5faf8fcf9449752cfbbca8"
1951
+ msgid "General"
1952
+ msgstr "כללי"
1953
 
1954
+ # wpml-name: 42a2937a759c17d87aad1c4c83f0b991
1955
+ #: echo '<div id="message" class="updated fade"><p><strong>', __('Complete
1956
+ #: site recheck started.', 'broken-link-checker'), // -- Yoda
1957
+ #: '</strong></p></div>';
1958
+ msgctxt "e7f110b3bd3c868030d94390034f518a"
1959
+ msgid "Complete site recheck started."
1960
+ msgstr "החלה בדיקה חוזרת של האתר."
1961
 
1962
+ # wpml-name: 63c3dece28f7e7d1fb4658e34b313a58
1963
+ #: if ( !empty($_GET['donated']) ){ echo '<div id="message" class="updated
1964
+ #: fade"><p><strong>',__('Thank you for your donation!',
1965
+ #: 'broken-link-checker'), '</strong></p></div>';
1966
+ #: $this->conf->set('user_has_donated', true);
1967
+ msgctxt "c67880697383744a99d95c999043363e"
1968
+ msgid "Thank you for your donation!"
1969
+ msgstr "תודה לך על תרומתך!"
 
 
 
 
 
 
1970
 
1971
+ # wpml-name: 9a7e58ee13cb727cb7c4acc68f4cafe5
1972
+ #: if ( !empty($_GET['settings-updated']) ){ echo '<div id="message"
1973
+ #: class="updated fade"><p><strong>',__('Settings saved.',
1974
+ #: 'broken-link-checker'), '</strong></p></div>';
1975
+ msgctxt "03357aa9e0055c116213a4385d1928a9"
1976
+ msgid "Settings saved."
1977
+ msgstr "ההגדרות נשמרו"
1978
 
1979
+ # wpml-name: 59cadbc710db236efb83b0395c4d105b
1980
+ #: '<a href="#" class="blc-recheck-button">%s</a>', __('Recheck',
1981
+ #: 'broken-link-checker') );
1982
+ msgctxt "afbe6b4a608f521acc70250ed937996f"
1983
+ msgid "Recheck"
1984
+ msgstr "בדיקה חוזרת"
1985
 
1986
+ # wpml-name: c8a59e7135a20b362f9c768b09454fdb
1987
+ #: esc_attr(__('Hide this link and do not report it again unless its status
1988
+ #: changes' , 'broken-link-checker')), __('Dismiss', 'broken-link-checker') );
1989
+ msgctxt "05e94ebaf6683d8fd659ecde0d639158"
1990
+ msgid "Dismiss"
1991
+ msgstr "העברה למצב המתנה"
1992
 
1993
+ # wpml-name: 66369de9f49799c8d4fbfb0cb60f119a
1994
+ #: } else { me.html('<?php echo esc_js(__('Not broken' ,
1995
+ #: 'broken-link-checker')); ?>'); alert(data);
1996
+ msgctxt "6385d994285cb26908cfaf6704564651"
1997
+ msgid "Not broken"
1998
+ msgstr "לא שבור"
1999
 
2000
+ # wpml-name: c1a39b6a60f8b2f87e23d60ab649d994
2001
+ #: $(me).html('<?php echo esc_js(__('Unlink' , 'broken-link-checker')); ?>');
2002
+ #: }
2003
+ msgctxt "0e9ffba0452e138c21490901439ddaff"
2004
+ msgid "Unlink"
2005
+ msgstr "הסרת הקישור (טקסט הקישור לא יוסר)"
2006
 
2007
+ # wpml-name: e5aee9a1436eeb9e9dc66c695a92aea5
2008
+ #: $actions['edit'] = "<a href='javascript:void(0)' class='blc-edit-button'
2009
+ #: title='" . esc_attr( __('Edit this link' , 'broken-link-checker') ) "'>".
2010
+ #: URL' ."</a>";
2011
+ msgctxt "0fbf861ab5dffe31d66ef572a5e5418c"
2012
+ msgid "Edit URL"
2013
+ msgstr "עריכת הקישור"
2014
 
2015
+ # wpml-name: 982c7730bec616b09550db44b04420d1
2016
+ #: 'blc-links-page-link', __('Go to Broken Links', 'broken-link-checker'),
2017
+ #: admin_url('tools.php?page=view-broken-links'),
2018
+ msgctxt "1d0fa5cf3c23ae6bfdaa0e418b0a96d9"
2019
+ msgid "Go to Broken Links"
2020
+ msgstr "אל הקישורים השבורים"
2021
 
2022
+ # wpml-name: bea4c2c8eb82d05891ddd71584881b56
2023
+ #: 'blc-feedback-widget', __('Feedback', 'broken-link-checker'),
2024
+ #: 'http://whiteshadow.uservoice.com/forums/58400-broken-link-checker',
2025
+ msgctxt "f02704fcba955bc287a82924d35df271"
2026
+ msgid "Feedback"
2027
+ msgstr "משוב"
2028
 
2029
+ # wpml-name: 5e02a13421fb0515c4edee8b6ddda42d
2030
+ #: $links_page_hook = add_management_page( __('View Broken Links',
2031
+ #: 'broken-link-checker'), $menu_title,
2032
+ msgctxt "abd5e26857e1e1466ac492e37c3c3b72"
2033
+ msgid "View Broken Links"
2034
+ msgstr "הצג קישורים שבורים"
2035
 
2036
+ # wpml-name: eb5b960f0536863b5dfffa3eef355201
2037
+ #: 'name' => __('Broken', 'broken-link-checker'), 'heading' __('Broken Links',
2038
+ #: 'heading_zero' __('No broken links found',
2039
+ msgctxt "133254aa11354681729abac66cd3cbc2"
2040
+ msgid "Broken Links"
2041
+ msgstr "קישורים שבורים"
2042
 
2043
+ # wpml-name: 3c05551a9d12b1bdbabae84887ecb0a5
2044
+ #: __('Link Checker Settings', 'broken-link-checker'), Checker',
2045
+ #: 'manage_options',
2046
+ msgctxt "6a67973cc0bdd5fbfaa0a9aa94aa2b4a"
2047
+ msgid "Link Checker"
2048
+ msgstr "בודק הקישורים"
2049
 
2050
+ # wpml-name: 395315d3c5b6540282d4e997904fa188
2051
+ #: $options_page_hook = add_options_page( __('Link Checker Settings',
2052
+ #: 'broken-link-checker'), Checker',
2053
+ msgctxt "6b8e305e5b2e3b801400f44f342c30ef"
2054
+ msgid "Link Checker Settings"
2055
+ msgstr "הגדרות בודק הקישורים"
2056
 
2057
+ # wpml-name: b19438b437075d68db1462fb4d7c61c5
2058
+ #: $this->short_title = __('Vimeo Video', 'broken-link-checker');
2059
+ #: $this->long_title __('Embedded Vimeo video', }
2060
+ msgctxt "420aff9c1f0939a096bc751cbcff2ce0"
2061
+ msgid "Embedded Vimeo video"
2062
+ msgstr "וידיאו מוטמע של Vimeo"
2063
 
2064
+ # wpml-name: 0a8fa1d86f71faede16c5d9c88505858
2065
+ #: $this->url_search_string = 'vimeo.com/moogaloop.swf?'; $this->short_title
2066
+ #: __('Vimeo Video', 'broken-link-checker'); $this->long_title __('Embedded
2067
+ #: Vimeo video',
2068
+ msgctxt "64473688f27ad4e5215603162bad7909"
2069
  msgid "Vimeo Video"
2070
  msgstr "וידיאו של Vimeo"
2071
 
2072
+ # wpml-name: b28c089841826a35de4c1bff91c7d7dd
2073
+ #: $this->short_title = __('YouTube Video', 'broken-link-checker');
2074
+ #: $this->long_title __('Embedded YouTube video', $this->url_search_string
2075
+ #: 'youtube.com/embed/';
2076
+ msgctxt "2053d8e69aa1aaf8d925c94a3c507e6a"
2077
+ msgid "Embedded YouTube video"
2078
+ msgstr "וידיאו מוטמע של YouTube"
2079
 
2080
+ # wpml-name: 0c4158cf22098751d31785fe58af5488
2081
+ #: parent::init(); $this->short_title = __('YouTube Video',
2082
+ #: 'broken-link-checker'); $this->long_title __('Embedded YouTube video',
2083
+ msgctxt "bed20b3faa598ce5790b2131bfbf92ce"
2084
  msgid "YouTube Video"
2085
  msgstr "וידיאו של YouTube"
2086
 
2087
+ # wpml-name: d3cfdd86df89de821f080ac04a62193b
2088
+ #: $this->short_title = __('YouTube Playlist', 'broken-link-checker');
2089
+ #: $this->long_title __('Embedded YouTube playlist', $this->url_search_string
2090
+ #: 'youtube.com/p/';
2091
+ msgctxt "0fe3d65cdf939b4e3825a61d31fb3093"
2092
+ msgid "Embedded YouTube playlist"
2093
+ msgstr "רשימת הקרנה מוטמעת של YouTube"
2094
 
2095
+ # wpml-name: aaac7f94a822f2cc9b937704630bd90d
2096
+ #: parent::init(); $this->short_title = __('YouTube Playlist',
2097
+ #: 'broken-link-checker'); $this->long_title __('Embedded YouTube playlist',
2098
+ msgctxt "19c120c48849b403ed0fe94416a30a0d"
2099
  msgid "YouTube Playlist"
2100
  msgstr "רשימת הקרנה של YouTube"
2101
 
2102
+ # wpml-name: c4a195c14e7e5b76a6c25cf8991042a3
2103
+ #: $result['status_code'] = BLC_LINK_STATUS_WARNING; $result['status_text']
2104
+ #: __('Permission Denied', 'broken-link-checker'); $result['http_code'] 0;
2105
+ msgctxt "0ac1ff723a71986da8514eb47ca47eff"
2106
+ msgid "Permission Denied"
2107
+ msgstr "ההרשאה נדחתה"
2108
+
2109
+ # wpml-name: 0137011a3ad93b7f5cac78fc0150bd91
2110
+ #: $this->short_title = __('DailyMotion Video','broken-link-checker');
2111
+ #: $this->long_title __('Embedded DailyMotion video', 'broken-link-checker');
2112
+ #: }
2113
+ msgctxt "ea49b465a658a067d77c28bb29be2346"
2114
+ msgid "Embedded DailyMotion video"
2115
+ msgstr "וידיאו מוטמע של DailyMotion"
2116
 
2117
+ # wpml-name: aa330819f65337774698dffcb6ecb642
2118
+ #: $this->url_search_string = 'dailymotion.com/swf/video/'; $this->short_title
2119
+ #: __('DailyMotion Video','broken-link-checker'); $this->long_title
2120
+ #: __('Embedded DailyMotion video', 'broken-link-checker');
2121
+ msgctxt "2c03c7b9d5982594d6985e9a1ea52b50"
2122
+ msgid "DailyMotion Video"
2123
+ msgstr "וידיאו של DailyMotion"
2124
 
2125
+ # wpml-name: d99d7b850c4fd521288212a0e867c877
2126
+ #: 'not_implemented', sprintf(__("Embedded videos can't be edited using Broken
2127
+ #: Link Checker. Please edit or replace the video in question manually.",
2128
+ #: 'broken-link-checker'), $this->parser_type) );
2129
+ msgctxt "29dd5fe84217eec76a95b9b544fb8ad8"
2130
+ msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
2131
+ msgstr "סרטוני וידיאו מוטמעים אינם ניתנים לעריכה בעזרת תוסף זה. בבקשה בצעו עריכה או החלפה של הוידיאו המדובר באופן ידני."
2132
 
2133
+ # wpml-name: 5fd3c558f0a72e01202beeb488829c39
2134
+ #: $this->short_title = __('GoogleVideo Video', 'broken-link-checker');
2135
+ #: $this->long_title __('Embedded GoogleVideo video', $this->url_search_string
2136
+ #: 'video.google.com/';
2137
+ msgctxt "f1a6e6787b88fb1331d2d398bfe1f869"
2138
+ msgid "Embedded GoogleVideo video"
2139
+ msgstr "ודיאו מוטמע של GoogleVideo"
2140
 
2141
+ # wpml-name: 89a2fb9a967d021801cef2559ef5b337
2142
+ #: parent::init(); $this->short_title = __('GoogleVideo Video',
2143
+ #: 'broken-link-checker'); $this->long_title __('Embedded GoogleVideo video',
2144
+ msgctxt "68eddada96e3e43d4a25c35b7f154c74"
2145
+ msgid "GoogleVideo Video"
2146
+ msgstr "וידיאו של GoogleVideo"
2147
 
2148
+ # wpml-name: 9a95ffd98068b432ce1ccadeccb615b0
2149
+ #: $result['log'] .= __("This playlist has no entries or all have been
2150
+ #: deleted.", 'broken-link-checker'); $result['status_text'] = __('Empty
2151
+ #: Playlist', 'link status', $result['status_code'] BLC_LINK_STATUS_WARNING;
2152
+ msgctxt "b026b69502f84caa73769540f4f86541"
2153
+ msgid "Empty Playlist"
2154
+ msgstr "רשימת השמעה ריקה"
2155
 
2156
+ # wpml-name: 40233dc915bd4bd0ee45cbc859ad465a
2157
+ #: //have been deleted. Treat it as a warning. $result['log'] .= __("This
2158
+ #: playlist has no entries or all have deleted.", 'broken-link-checker');
2159
+ #: $result['status_text'] = __('Empty Playlist', 'link status',
2160
+ msgctxt "d0ba3b2777822012dd48c1b15a78bc77"
2161
+ msgid "This playlist has no entries or all entries have been deleted."
2162
+ msgstr "אין ברשימת ההתקנה רשומות בכלל או שכל הרשומות נמחקו."
2163
 
2164
+ # wpml-name: a957a46225a6dff59f8a653fb314a71b
2165
+ #: //All is well. $result['log'] .= __("Playlist OK", 'broken-link-checker');
2166
+ #: $result['status_text'] = __('OK', 'link status',
2167
+ msgctxt "a819ee374cd0f6d9ef2246f8119e312b"
2168
+ msgid "Playlist OK"
2169
+ msgstr "רשימת ההקרנה תקינה"
2170
 
2171
+ # wpml-name: dac3d8299add226649c5cbe314fab20b
2172
+ #: $result['broken'] = true; $result['status_text'] __('Invalid Playlist',
2173
+ #: 'broken-link-checker'); $result['status_code'] BLC_LINK_STATUS_WARNING;
2174
+ msgctxt "fb73d0661509efb0bb0325dd3ed4277b"
2175
+ msgid "Invalid Playlist"
2176
+ msgstr "רשימת הקרנה לא תקינה"
2177
+
2178
+ # wpml-name: eeb9260512be2d3e36651b4d12790d38
2179
+ #: $result['broken'] = true; $result['status_text'] __('Playlist Restricted',
2180
+ #: 'broken-link-checker'); $result['status_code'] BLC_LINK_STATUS_ERROR;
2181
+ msgctxt "16950ea51e7ff72f830a6cbcabf19d2d"
2182
+ msgid "Playlist Restricted"
2183
+ msgstr "רשימת ההקרנה מוגבלת"
2184
 
2185
+ # wpml-name: 07b8b56c40a0b89126f966adbcff2baa
2186
+ #: $result['http_code'] = 0; $result['status_text'] __('Playlist Not Found',
2187
+ #: 'broken-link-checker'); $result['status_code'] BLC_LINK_STATUS_ERROR;
2188
+ msgctxt "7e0aa01834557dbcb4fa705b3dea22af"
2189
  msgid "Playlist Not Found"
2190
  msgstr "לא נמצאה רשימת הקרנה"
2191
 
2192
+ # wpml-name: d4cb729efa2af51adc3a3d828e1d291b
2193
+ #: $result['broken'] = true; $result['status_text'] __('Video Restricted',
2194
+ #: 'broken-link-checker'); $result['status_code'] BLC_LINK_STATUS_WARNING;
2195
+ msgctxt "3238b92c349ea5dc8335b93b64ff7850"
2196
+ msgid "Video Restricted"
2197
+ msgstr "הגישה לוידיאו מוגבלת"
2198
 
2199
+ # wpml-name: cf3b15f25a9fb916028c12351f39abf5
2200
+ #: $result['log'] .= sprintf( __('Video status : %s%s',
2201
+ #: 'broken-link-checker'), $state_name,
2202
+ msgctxt "734248402feda1e9de81cd88527adec4"
2203
+ msgid "Video status : %s%s"
2204
+ msgstr "מצב הוידיאו: %s%s"
2205
 
2206
+ # wpml-name: b6fac62b879b1f4573d6b3348bbc0967
2207
+ #: //Phew, no restrictions. $result['log'] .= __("Video OK",
2208
+ #: 'broken-link-checker'); $result['status_text'] = __('OK', 'link status',
2209
+ msgctxt "2deba586d80592eb8ce1482aae80c7fb"
2210
+ msgid "Video OK"
2211
+ msgstr "הוידיאו תקין"
2212
 
2213
+ # wpml-name: df66bc3633ccbce552a0cd7d71e44daa
2214
+ #: $result['http_code'] = 0; $result['status_text'] __('Invalid Video ID',
2215
+ #: 'broken-link-checker'); $result['status_code'] BLC_LINK_STATUS_WARNING;
2216
+ msgctxt "4d64f3095d1b1e991651b21c957b0423"
2217
+ msgid "Invalid Video ID"
2218
+ msgstr "קוד זיהוי וידיאו לא תקין"
2219
 
2220
+ # wpml-name: 4b3b8820256db1c8e31804d6f7493252
2221
+ #: $result['http_code'] = 0; $result['status_text'] __('Video Removed',
2222
+ #: 'broken-link-checker'); $result['status_code'] BLC_LINK_STATUS_ERROR;
2223
+ msgctxt "61b1346bda2511d37e4a5324ca5c7784"
2224
+ msgid "Video Removed"
2225
+ msgstr "הוידיאו הוסר"
2226
 
2227
+ # wpml-name: defbc9456f7d8e14d5e9a8d79966c22a
2228
+ #: $result['http_code'] = 0; $result['status_text'] __('Video Not Found',
2229
+ #: 'broken-link-checker'); $result['status_code'] BLC_LINK_STATUS_ERROR;
2230
+ msgctxt "6694c640e16708e41b9ca453c98b56f9"
2231
+ msgid "Video Not Found"
2232
+ msgstr "הוידיאו לא נמצא"
2233
 
2234
+ # wpml-name: link status: OK
2235
+ #: $result['broken'] = false; $result['status_text'] __('OK', 'link status',
2236
+ #: 'broken-link-checker'); $result['status_code'] BLC_LINK_STATUS_OK;
2237
+ msgctxt "5e51746d56cbe29bd9e17cbd54366155"
2238
+ msgid "OK"
2239
+ msgstr "אישור"
2240
 
2241
+ # wpml-name: db297311d862df3476371d45abcdf074
2242
+ #: $result['log'] .= sprintf( __('RapidShare API error: %s',
2243
+ #: 'broken-link-checker'), $response['body']
2244
+ msgctxt "f6a0d3e16c0d63fd26adde5cb2f15691"
2245
+ msgid "RapidShare API error: %s"
2246
+ msgstr "שגיאת API של RapidShare: ‏%s"
2247
 
2248
+ # wpml-name: 3f745dbbd1660f718d099d361bb3e859
2249
+ #: $result['log'] .= sprintf( __('RapidShare : %s', 'broken-link-checker'),
2250
+ #: $file_status_text
2251
+ msgctxt "9a4482963c4712c515c8bc169e37a140"
2252
+ msgid "RapidShare : %s"
2253
+ msgstr "RapidShare : %s"
2254
 
2255
+ # wpml-name: 33b6f3960a564750a6dc673d7e959caa
2256
+ #: $result['status_code'] = BLC_LINK_STATUS_WARNING; $result['status_text']
2257
+ #: __('File Locked', 'broken-link-checker'); break;
2258
+ msgctxt "e552667500a1a4286bde53a05ab877b7"
2259
+ msgid "File Locked"
2260
+ msgstr "הקובץ נעול"
2261
 
2262
+ # wpml-name: 56ce012997fa22a7c3947f9402fb5987
2263
+ #: $result['status_code'] = BLC_LINK_STATUS_ERROR; $result['status_text']
2264
+ #: __('File Blocked', 'broken-link-checker'); break;
2265
+ msgctxt "ee6b35a18147f2691945716ac4b825b9"
2266
+ msgid "File Blocked"
2267
+ msgstr "הקובץ נחסם"
2268
 
2269
+ # wpml-name: e01745019a34958198bdc31b7759f245
2270
+ #: $result['status_code'] = BLC_LINK_STATUS_WARNING; $result['status_text']
2271
+ #: __('RS Server Down', 'broken-link-checker'); break;
2272
+ msgctxt "809a9f76f078c1d192f1a474efaaa1c4"
2273
+ msgid "RS Server Down"
2274
+ msgstr "שרת RS לא עונה"
2275
 
2276
+ # wpml-name: 9d1ead73e678fa2f51a70a933b0bf017
2277
+ #: $result['status_code'] = BLC_LINK_STATUS_ERROR; $result['status_text']
2278
+ #: __('Not Found', 'broken-link-checker'); $result['http_code'] 0;
2279
+ msgctxt "3ad8790d835b190d1703f41cdccfad79"
2280
+ msgid "Not Found"
2281
+ msgstr "לא נמצא"
2282
 
2283
+ # wpml-name: 5e7a86f8ec367c0c321a22f515af78df
2284
+ #: 'broken' => false, 'log' sprintf("<em>(%s)</em>\n\n", __('Using RapidShare
2285
+ #: API', 'broken-link-checker')), 'result_hash' '',
2286
+ msgctxt "63918fb4dcd89bc410547b31675945f3"
2287
+ msgid "Using RapidShare API"
2288
+ msgstr "משתמש ב-API של RapidShare"
2289
 
2290
+ # wpml-name: cc303948c804dc123abdf0afe82ba3ef
2291
+ #: sprintf( __('Failed to move post "%s" (%d) the trash',
2292
+ #: 'broken-link-checker'), get_the_title($this->container_id),
2293
+ msgctxt "65973a0a5d15b2d3a0d03d232741fcec"
2294
+ msgid "Failed to move post \"%s\" (%d) to the trash"
2295
+ msgstr "נכשל הניסיון להעביר את הפוסט \"%s\" (%d) אל הפח"
2296
 
2297
+ # wpml-name: 5bcf8d1bc815c872f5bb32c76476f701
2298
+ #: sprintf( __('Can\'t move post "%s" (%d) to the trash because feature is
2299
+ #: disabled', 'broken-link-checker'), get_the_title($this->container_id),
2300
+ msgctxt "35b3ef6d8e0c1eb691f16f6324b545d4"
2301
+ msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
2302
+ msgstr "לא ניתן להעביר את הפוסט \"%s\" (%d) אל הפח מפני שרכיב הפח לא פעיל"
2303
 
2304
+ # wpml-name: 01ae729a01ea6815aaaa770bf37d85fe
2305
+ #: sprintf( __('Failed to delete post "%s" (%d)', 'broken-link-checker'),
2306
+ #: get_the_title($this->container_id),
2307
+ msgctxt "cfd02049a4a3f4fb26be450e18031a95"
2308
+ msgid "Failed to delete post \"%s\" (%d)"
2309
+ msgstr "נכשל הניסיון למחוק את הפוסט \"%s\" (%d)"
2310
 
2311
+ # wpml-name: bdcdd599f602f24324eda4e9d76fcf9a
2312
+ #: } $actions['view'] = '<span class="view"><a href="' .
2313
+ #: esc_url(get_permalink($this->container_id)) '" title="'
2314
+ #: esc_attr(sprintf(__('View "%s"', 'broken-link-checker'),
2315
+ #: get_the_title($this->container_id))) rel="permalink">' __('View') '</a>';
2316
+ msgctxt "8e5f8c64985434dcaf9ad22bb31315e4"
2317
+ msgid "View \"%s\""
2318
+ msgstr "צפיה ב-\"%s\""
2319
 
2320
+ # wpml-name: 112430dfe21d44289d8a89f571117771
2321
+ #: sprintf( __("Failed to delete the meta field '%s' on %s [%d]",
2322
+ #: 'broken-link-checker'), $field_name,
2323
+ msgctxt "f214cd5055d618a0ccc8d714732b07a4"
2324
+ msgid "Failed to delete the meta field '%s' on %s [%d]"
2325
+ msgstr "נכשל הניסיון למחוק את שדה ה-meta ‏'%s' ב-%s [%d]"
2326
 
2327
+ # wpml-name: fc1b2cd9fed189e565cb63519a08543c
2328
+ #: sprintf( __("Failed to update the meta field '%s' on %s [%d]",
2329
+ #: 'broken-link-checker'), $field,
2330
+ msgctxt "9f89e4c862a228fd57b65449b59b28a8"
2331
+ msgid "Failed to update the meta field '%s' on %s [%d]"
2332
+ msgstr "נכשל הניסיון לעדכן את שדה ה-meta ‏'%s' ב-%s [%d]"
2333
 
2334
+ # wpml-name: 0be8406951cdfda82f00f79328cf4efc
2335
+ #: $image, __('Comment', 'broken-link-checker') );
2336
+ msgctxt "7beae16edcd0081dd0ee240819f64e00"
2337
+ msgid "Comment"
2338
+ msgstr "תגובה"
2339
 
2340
+ # wpml-name: 11bc58159b9c8ce4129c7718149e25b7
2341
+ #: $actions['view'] = '<span class="view"><a href="' .
2342
+ #: get_comment_link($this->container_id) '" title="' esc_attr(__('View
2343
+ #: comment', 'broken-link-checker')) rel="permalink">' __('View') '</a>';
2344
+ msgctxt "aef5184aeb08445f8fb55d3467110a66"
2345
+ msgid "View comment"
2346
+ msgstr "צפיה בתגובה"
2347
 
2348
+ # wpml-name: 07d7ff0fc11aab4f5e8ebbbe88762b73
2349
+ #: sprintf( __('Can\'t move comment %d to the trash', 'broken-link-checker'),
2350
+ #: $this->container_id
2351
+ msgctxt "d6f8342ec7bf397ce43581042373abbd"
2352
+ msgid "Can't move comment %d to the trash"
2353
+ msgstr "לא ניתן להעביר את התגובה %d לפח"
2354
 
2355
+ # wpml-name: 40e6c5ab327d294b33f51286398c441f
2356
+ #: sprintf( __('Failed to delete comment %d', 'broken-link-checker'),
2357
+ #: $this->container_id
2358
+ msgctxt "c9e4fc25b69db04fe7c1363e3136024c"
2359
+ msgid "Failed to delete comment %d"
2360
+ msgstr "נכשל הניסיון למחוק את התגובה %d"
2361
 
2362
+ # wpml-name: 2befb2afcd952e22b0a2d1039d1a237e
2363
+ #: 'update_failed', sprintf(__('Updating comment %d failed',
2364
+ #: 'broken-link-checker'), $this->container_id) );
2365
+ msgctxt "a161c8aa4fb963810f4b529d80c32bca"
2366
+ msgid "Updating comment %d failed"
2367
+ msgstr "עדכון התגובה %d נכשל"
2368
 
2369
+ # wpml-name: d68e6f3c6bf5484796094b1a5b641bfc
2370
+ #: sprintf( __("I don't know how to edit a '%s' [%d].",
2371
+ #: 'broken-link-checker'), $this->container_type,
2372
+ msgctxt "9e0606bf49351331b65013db64a3f002"
2373
+ msgid "I don't know how to edit a '%s' [%d]."
2374
+ msgstr "התוסף אינו מסוגל לערוך את '%s' [%d]."
2375
 
2376
+ # wpml-name: d2734267fa4d708eda61f250deb199b1
2377
+ #: $msg = sprintf( __('Failed to delete blogroll link "%s" (%d)',
2378
+ #: 'broken-link-checker'), $link_name,
2379
+ msgctxt "fb830623f8c0c2195f16dcad4bfcc5a2"
2380
+ msgid "Failed to delete blogroll link \"%s\" (%d)"
2381
+ msgstr "נכשל הניסיון למחוק את קישור הבלוגרול \"%s\" (%d)"
2382
 
2383
+ # wpml-name: ba1ed0ffb8400d6fb5e2c1a68412877d
2384
+ #: 'update_failed', sprintf(__('Updating bookmark %d failed',
2385
+ #: 'broken-link-checker'), $this->container_id) );
2386
+ msgctxt "25590f72c6a017a40657494549c46649"
2387
+ msgid "Updating bookmark %d failed"
2388
+ msgstr "עדכון הסימניה %d נכשל"
2389
 
2390
+ # wpml-name: 458cee9621d7dad578efe570f91c5714
2391
+ #: 'no_wrapped_object', __('Nothing to update', 'broken-link-checker') );
2392
+ msgctxt "4a48a25f9bfd790c0e59c6a33e3c42e0"
2393
+ msgid "Nothing to update"
2394
+ msgstr "אין מה לעדכן"
2395
 
2396
+ # wpml-name: 91e7fd8ecca75152d8c0a55eeab02c2e
2397
+ #: if ( current_user_can('manage_links') ) { $actions['edit'] = '<span
2398
+ #: class="edit"><a href="' . $this->get_edit_url() '" title="'
2399
+ #: esc_attr(__('Edit this bookmark', 'broken-link-checker')) '">' __('Edit')
2400
+ #: '</a>'; $actions['delete'] "<span class='delete'><a class='submitdelete'
2401
+ #: href='" esc_url($delete_url) "' onclick=\"if confirm('" esc_js(sprintf(
2402
+ #: __("You are about to delete link '%s'\n 'Cancel' stop, 'OK' delete."),
2403
+ #: $bookmark->link_name)) "') return true;}return false;\">" __('Delete')
2404
+ #: "</a>";
2405
+ msgctxt "9a276b6632c1abaf8a638f76d884231d"
2406
+ msgid "Edit this bookmark"
2407
+ msgstr "עריכת סימניה זו"
2408
 
2409
+ # wpml-name: 38afb4cd458f868284f38c901da91dae
2410
+ #: esc_attr( plugins_url('/images/font-awesome/font-awesome-link.png',
2411
+ #: BLC_PLUGIN_FILE) ), __('Bookmark', 'broken-link-checker') );
2412
+ msgctxt "bf001e51b00d251afde7e187f0a73994"
2413
+ msgid "Bookmark"
2414
+ msgstr "סימניה"
2415
+
2416
+ # wpml-name: 1f9ffbe870b3eba54720772e3c70af5d
2417
+ #: $log .= "<em>(" . __('Using Snoopy', 'broken-link-checker') ")</em>";
2418
+ #: $result['log'] = $log;
2419
+ msgctxt "aee1047408099ce7528cd5547d928d3f"
2420
+ msgid "Using Snoopy"
2421
+ msgstr "עושה שימוש ב-Snoopy"
2422
+
2423
+ # wpml-name: fd587fc46b7ccd4d2f262deb1b2cad78
2424
+ #: if ($snoopy->timed_out) { $log .= __("Request timed out.",
2425
+ #: 'broken-link-checker') . "\n"; $result['timeout'] = true;
2426
+ msgctxt "b4ba568379b7f96644ce8e10d36ca667"
2427
+ msgid "Request timed out."
2428
+ msgstr "זמן המתנה מקסימלי (Timeout) לבקשה."
2429
+
2430
+ # wpml-name: cb714a1edc85be88defe88e5dccd858a
2431
+ #: if ( !empty($result['broken']) && !empty($result['timeout']) ) { $log .=
2432
+ #: "\n(" . __("Most likely the connection timed out or domain doesn't exist.",
2433
+ #: 'broken-link-checker') ')'; }
2434
+ msgctxt "a4a7bc1f606199068e7bc35fbd62ee82"
2435
+ msgid "Most likely the connection timed out or the domain doesn't exist."
2436
+ msgstr "קיימת סבירות גבוהה שההתקשרות הסתיימה בגלל היעדר תגובה מהשרת המארח את עמוד היעד של הקישור"
2437
+
2438
+ # wpml-name: ac90a1a5754d8681ddd789e59eddc8bd
2439
+ #: } else { $log .= __('(No response)', 'broken-link-checker');
2440
+ msgctxt "b64b8aa315c61d50e4fd7c1d456899a2"
2441
+ msgid "(No response)"
2442
+ msgstr "(אין תגובה)"
2443
+
2444
+ # wpml-name: e2f675690a5dd6a04ba7e5abac6cdfbb
2445
+ #: if ( $result['http_code'] ){ $log .= sprintf( __('HTTP code : %d',
2446
+ #: 'broken-link-checker'), $result['http_code']); } else {
2447
+ msgctxt "0b6508191a5d5731d62519855c90d6dc"
2448
+ msgid "HTTP code : %d"
2449
+ msgstr "קוד HTTP: ‏%d"
2450
+
2451
+ # wpml-name: b3ea5d4962bbcb423b6e3693d7a1ea9f
2452
+ #: $code = BLC_LINK_STATUS_WARNING; $text __('Unknown Error', 'link status',
2453
+ #: 'broken-link-checker');
2454
+ msgctxt "377679c5bd62845b8eeede9da321f451"
2455
+ msgid "Unknown Error"
2456
+ msgstr "שגיאה לא ידועה"
2457
+
2458
+ # wpml-name: 2044c23dfefda6c637db5b72f785a777
2459
+ #: $result['status_code'] = BLC_LINK_STATUS_WARNING; $result['status_text']
2460
+ #: __('Connection Failed', 'broken-link-checker'); $result['error_code']
2461
+ #: 'connection_failed';
2462
+ msgctxt "78d500770a74a6d0f4761c69d9fd8d1a"
2463
+ msgid "Connection Failed"
2464
+ msgstr "ההתקשרות נכשלה"
2465
+
2466
+ # wpml-name: 63160e5766369dcefc5ecce093f16bc9
2467
+ #: $result['status_code'] = BLC_LINK_STATUS_WARNING; $result['status_text']
2468
+ #: __('Server Not Found', 'broken-link-checker'); $result['error_code']
2469
+ #: 'couldnt_resolve_host';
2470
+ msgctxt "c91607b9d5e12822d81774797aaa1342"
2471
+ msgid "Server Not Found"
2472
+ msgstr "שרת לא נמצא"
2473
+
2474
+ # wpml-name: be53a0541a6d36f6ecb879fa2c584b08
2475
+ #: function ui_get_link_text($instance, $context = 'display'){ $text
2476
+ #: __('Image', 'broken-link-checker');
2477
+ msgctxt "07ed12e10ccd579608d04fd156afb2bb"
2478
+ msgid "Image"
2479
+ msgstr "תמונה"
2480
+
2481
+ # wpml-name: d5255642a07f3ac10f6962c53fe55aca
2482
+ #: esc_attr( plugins_url('/images/font-awesome/font-awesome-code.png',
2483
+ #: BLC_PLUGIN_FILE) ), __('Custom field', 'broken-link-checker') );
2484
+ msgctxt "970323acd2be2ff792f316edcfb0820d"
2485
+ msgid "Custom field"
2486
+ msgstr "שדה מותאם"
languages/broken-link-checker-pt_PT.mo CHANGED
Binary file
languages/broken-link-checker-pt_PT.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Broken Link Checker v1.9.4.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-12-11 10:00-0000\n"
6
- "PO-Revision-Date: 2014-09-04 18:39:24+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: wordpress.mowster.net <wordpress@mowster.net>\n"
9
  "MIME-Version: 1.0\n"
@@ -20,340 +20,335 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: core/core.php:153
24
  #: includes/admin/links-page-js.php:44
25
  #@ broken-link-checker
26
  msgid "Loading..."
27
  msgstr "Carregando..."
28
 
29
- #: core/core.php:177
30
  #: includes/admin/options-page-js.php:18
31
  #@ broken-link-checker
32
  msgid "[ Network error ]"
33
  msgstr "[ Problema na rede ]"
34
 
35
- #: core/core.php:204
36
  #@ broken-link-checker
37
  msgid "Automatically expand the widget if broken links have been detected"
38
  msgstr "Expandir automaticamente a caixa se existirem links offline"
39
 
40
- #: core/core.php:295
41
  #@ broken-link-checker
42
  msgid "Link Checker Settings"
43
  msgstr "Definições do Links offline"
44
 
45
- #: core/core.php:296
46
  #@ broken-link-checker
47
  msgid "Link Checker"
48
  msgstr "Links offline"
49
 
50
- #: core/core.php:301
51
- #: includes/link-query.php:27
52
  #@ broken-link-checker
53
  msgid "Broken Links"
54
  msgstr "Links offline"
55
 
56
- #: core/core.php:317
57
  #@ broken-link-checker
58
  msgid "View Broken Links"
59
  msgstr "Ver Links offline"
60
 
61
- #: core/core.php:332
62
  #@ broken-link-checker
63
  msgid "Feedback"
64
  msgstr "Feedback"
65
 
66
- #: core/core.php:340
67
  #@ broken-link-checker
68
  msgid "Go to Broken Links"
69
  msgstr "Ir a Links offline"
70
 
71
- #: core/core.php:369
72
  #@ default
73
  msgid "Settings"
74
  msgstr "Definições"
75
 
76
- #: core/core.php:585
77
  #@ broken-link-checker
78
  msgid "Settings saved."
79
  msgstr "Definições guardadas."
80
 
81
- #: core/core.php:591
82
  #@ broken-link-checker
83
  msgid "Thank you for your donation!"
84
  msgstr "Obrigado pela sua colaboração!"
85
 
86
- #: core/core.php:599
87
  #@ broken-link-checker
88
  msgid "Complete site recheck started."
89
  msgstr "Reverificação completa do sítio iniciada."
90
 
91
- #: core/core.php:608
92
- #@ broken-link-checker
93
- msgid "Details"
94
- msgstr "Detalhes"
95
-
96
- #: core/core.php:622
97
  #@ broken-link-checker
98
  msgid "General"
99
  msgstr "Geral"
100
 
101
- #: core/core.php:623
102
  #@ broken-link-checker
103
  msgid "Look For Links In"
104
  msgstr "Procurar links"
105
 
106
- #: core/core.php:624
107
  #@ broken-link-checker
108
  msgid "Which Links To Check"
109
  msgstr "Links para verificar"
110
 
111
- #: core/core.php:625
112
  #@ broken-link-checker
113
  msgid "Protocols & APIs"
114
  msgstr "Protocolos & APIs"
115
 
116
- #: core/core.php:626
117
  #@ broken-link-checker
118
  msgid "Advanced"
119
  msgstr "Avançado"
120
 
121
- #: core/core.php:641
122
  #@ broken-link-checker
123
  msgid "Broken Link Checker Options"
124
  msgstr "Opções : Links offline"
125
 
126
- #: core/core.php:683
127
  #: includes/admin/table-printer.php:211
128
  #@ broken-link-checker
129
  msgid "Status"
130
  msgstr "Estado"
131
 
132
- #: core/core.php:685
133
  #: includes/admin/options-page-js.php:56
134
  #@ broken-link-checker
135
  msgid "Show debug info"
136
  msgstr "Mostrar sistema"
137
 
138
- #: core/core.php:713
139
  #@ broken-link-checker
140
  msgid "Check each link"
141
  msgstr "Verificar cada link"
142
 
143
- #: core/core.php:718
144
  #, php-format
145
  #@ broken-link-checker
146
  msgid "Every %s hours"
147
  msgstr "Cada %s horas"
148
 
149
- #: core/core.php:727
150
  #@ broken-link-checker
151
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
152
  msgstr "Os links existentes serão verificados com esta frequência. Os novos links serão verificados logo que possível."
153
 
154
- #: core/core.php:734
155
  #@ broken-link-checker
156
  msgid "E-mail notifications"
157
  msgstr "Notificações por e-mail"
158
 
159
- #: core/core.php:740
160
  #@ broken-link-checker
161
  msgid "Send me e-mail notifications about newly detected broken links"
162
  msgstr "Enviar um e-mail notificando sobre os novos links offline encontrados"
163
 
164
- #: core/core.php:774
165
  #@ broken-link-checker
166
  msgid "Link tweaks"
167
  msgstr "Melhoria de Links"
168
 
169
- #: core/core.php:780
170
  #@ broken-link-checker
171
  msgid "Apply custom formatting to broken links"
172
  msgstr "Aplicar formatação personalizada para os links offline"
173
 
174
- #: core/core.php:784
175
- #: core/core.php:815
176
  #@ broken-link-checker
177
  msgid "Edit CSS"
178
  msgstr "Editar CSS"
179
 
180
- #: core/core.php:811
181
  #@ broken-link-checker
182
  msgid "Apply custom formatting to removed links"
183
  msgstr "Aplicar formatação personalizada para os links removidos"
184
 
185
- #: core/core.php:844
186
  #@ broken-link-checker
187
  msgid "Stop search engines from following broken links"
188
  msgstr "Não permitir aos motores de busca seguir os links offline"
189
 
190
- #: core/core.php:874
191
  #@ broken-link-checker
192
  msgid "Look for links in"
193
  msgstr "Procurar links em"
194
 
195
- #: core/core.php:885
196
  #@ broken-link-checker
197
  msgid "Post statuses"
198
  msgstr "Estado do Artigo"
199
 
200
- #: core/core.php:918
201
  #@ broken-link-checker
202
  msgid "Link types"
203
  msgstr "Tipos de link"
204
 
205
- #: core/core.php:924
206
  #@ broken-link-checker
207
  msgid "Error : All link parsers missing!"
208
  msgstr "Erro : Análises aos links não encontradas!"
209
 
210
- #: core/core.php:931
211
  #@ broken-link-checker
212
  msgid "Exclusion list"
213
  msgstr "Lista de exclusão"
214
 
215
- #: core/core.php:932
216
  #@ broken-link-checker
217
  msgid "Don't check links where the URL contains any of these words (one per line) :"
218
  msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha) :"
219
 
220
- #: core/core.php:950
221
  #@ broken-link-checker
222
  msgid "Check links using"
223
  msgstr "Verificar links utilizando"
224
 
225
- #: core/core.php:969
226
- #: includes/links.php:867
227
  #@ broken-link-checker
228
  msgid "Timeout"
229
  msgstr "Intervalo"
230
 
231
- #: core/core.php:975
232
- #: core/core.php:1044
233
- #: core/core.php:3097
234
  #, php-format
235
  #@ broken-link-checker
236
  #@ default
237
  msgid "%s seconds"
238
  msgstr "%s segundos"
239
 
240
- #: core/core.php:984
241
  #@ broken-link-checker
242
  msgid "Links that take longer than this to load will be marked as broken."
243
  msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
244
 
245
- #: core/core.php:991
246
  #@ broken-link-checker
247
  msgid "Link monitor"
248
  msgstr "Monitor de links"
249
 
250
- #: core/core.php:999
251
  #@ broken-link-checker
252
  msgid "Run continuously while the Dashboard is open"
253
  msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
254
 
255
- #: core/core.php:1007
256
  #@ broken-link-checker
257
  msgid "Run hourly in the background"
258
  msgstr "Executar a cada hora em segundo plano"
259
 
260
- #: core/core.php:1038
261
  #@ broken-link-checker
262
  msgid "Max. execution time"
263
  msgstr "Tempo máximo de execução"
264
 
265
- #: core/core.php:1055
266
  #@ broken-link-checker
267
  msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
268
  msgstr "O plugin funciona executando periodicamente uma tarefa em segundo plano que analisa os links, verifica os URL encontrados e realiza outras tarefas que consomem tempo. Aqui pode-se estabelecer a duração máxima cada vez que o monitor de links é executado antes de parar."
269
 
270
- #: core/core.php:1064
271
  #@ broken-link-checker
272
  msgid "Server load limit"
273
  msgstr "Limite de carregamento do servidor"
274
 
275
- #: core/core.php:1079
276
  #, php-format
277
  #@ broken-link-checker
278
  msgid "Current load : %s"
279
  msgstr "Carga atual : %s"
280
 
281
- #: core/core.php:1085
282
  #, php-format
283
  #@ broken-link-checker
284
  msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
285
  msgstr "A verificação dos links será suspensa se a média do <a href=\"%s\">carregamento do servidor</a> passa este valor. Deixar o campo em branco para não existir limite."
286
 
287
- #: core/core.php:1093
288
  #@ broken-link-checker
289
  msgid "Not available"
290
  msgstr "Não disponível"
291
 
292
- #: core/core.php:1095
293
  #@ broken-link-checker
294
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
295
  msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
296
 
297
- #: core/core.php:1169
298
  #@ broken-link-checker
299
  msgid "Forced recheck"
300
  msgstr "Reverificação forçada"
301
 
302
- #: core/core.php:1172
303
  #@ broken-link-checker
304
  msgid "Re-check all pages"
305
  msgstr "Verificar de novo todas as páginas"
306
 
307
- #: core/core.php:1176
308
  #@ broken-link-checker
309
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
310
  msgstr "\"Opção Nuclear\". Clique para limpar todos os dados do plugin na base de dados e reverificar todo o sítio desde o início."
311
 
312
- #: core/core.php:1187
313
  #@ default
314
  msgid "Save Changes"
315
  msgstr "Guardar alterações"
316
 
317
- #: core/core.php:1238
318
  #@ broken-link-checker
319
  msgid "Configure"
320
  msgstr "Configurar"
321
 
322
- #: core/core.php:1451
323
  #: core/core.php:1534
324
- #: core/core.php:1566
 
325
  #, php-format
326
  #@ broken-link-checker
327
  msgid "Database error : %s"
328
  msgstr "Erro na Base de dados: %s"
329
 
330
- #: core/core.php:1516
331
  #@ broken-link-checker
332
  msgid "You must enter a filter name!"
333
  msgstr "Deve introduzir um nome para o filtro!"
334
 
335
- #: core/core.php:1520
336
  #@ broken-link-checker
337
  msgid "Invalid search query."
338
  msgstr "Procura inválida."
339
 
340
- #: core/core.php:1529
341
  #, php-format
342
  #@ broken-link-checker
343
  msgid "Filter \"%s\" created"
344
  msgstr "Filtro \"%s\" criado"
345
 
346
- #: core/core.php:1556
347
  #@ broken-link-checker
348
  msgid "Filter ID not specified."
349
  msgstr "ID do Filtro não especificado."
350
 
351
- #: core/core.php:1563
352
  #@ broken-link-checker
353
  msgid "Filter deleted"
354
  msgstr "Filtro eliminado"
355
 
356
- #: core/core.php:1611
357
  #, php-format
358
  #@ broken-link-checker
359
  msgid "Replaced %d redirect with a direct link"
@@ -361,7 +356,7 @@ msgid_plural "Replaced %d redirects with direct links"
361
  msgstr[0] "Substituído %d redirect com link direto"
362
  msgstr[1] "Substituídos %d redirects com links diretos"
363
 
364
- #: core/core.php:1622
365
  #, php-format
366
  #@ broken-link-checker
367
  msgid "Failed to fix %d redirect"
@@ -369,12 +364,12 @@ msgid_plural "Failed to fix %d redirects"
369
  msgstr[0] "Não foi possível reparar %d redirect"
370
  msgstr[1] "Não foi possível reparar %d redirects"
371
 
372
- #: core/core.php:1632
373
  #@ broken-link-checker
374
  msgid "None of the selected links are redirects!"
375
  msgstr "Nenhum dos links selecionados são redirects!"
376
 
377
- #: core/core.php:1711
378
  #, php-format
379
  #@ broken-link-checker
380
  msgid "%d link updated."
@@ -382,7 +377,7 @@ msgid_plural "%d links updated."
382
  msgstr[0] "%d link atualizado."
383
  msgstr[1] "%d links atualizados."
384
 
385
- #: core/core.php:1722
386
  #, php-format
387
  #@ broken-link-checker
388
  msgid "Failed to update %d link."
@@ -390,7 +385,7 @@ msgid_plural "Failed to update %d links."
390
  msgstr[0] "Erro a atualizar %d link."
391
  msgstr[1] "Erro a atualizar %d links."
392
 
393
- #: core/core.php:1811
394
  #, php-format
395
  #@ broken-link-checker
396
  msgid "%d link removed"
@@ -398,7 +393,7 @@ msgid_plural "%d links removed"
398
  msgstr[0] "%d link eliminado"
399
  msgstr[1] "%d links eliminados"
400
 
401
- #: core/core.php:1822
402
  #, php-format
403
  #@ broken-link-checker
404
  msgid "Failed to remove %d link"
@@ -406,7 +401,7 @@ msgid_plural "Failed to remove %d links"
406
  msgstr[0] "Erro a remover %d link"
407
  msgstr[1] "Erro a remover %d links"
408
 
409
- #: core/core.php:1931
410
  #, php-format
411
  #@ default
412
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
@@ -414,12 +409,12 @@ msgid_plural "%d items were skipped because they can't be moved to the Trash. Yo
414
  msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessita de o efetuar manualmente."
415
  msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de o efetuar manualmente."
416
 
417
- #: core/core.php:1952
418
  #@ broken-link-checker
419
  msgid "Didn't find anything to delete!"
420
  msgstr "Não foi encontrado nada para apagar!"
421
 
422
- #: core/core.php:1981
423
  #, php-format
424
  #@ broken-link-checker
425
  msgid "%d link scheduled for rechecking"
@@ -427,19 +422,20 @@ msgid_plural "%d links scheduled for rechecking"
427
  msgstr[0] "%d link agendado para verificação"
428
  msgstr[1] "%d links agendados para verificação"
429
 
430
- #: core/core.php:2026
431
- #: core/core.php:2715
432
  #@ broken-link-checker
433
  msgid "This link was manually marked as working by the user."
434
  msgstr "Este link foi assinalado manualmente como válido pelo utilizador."
435
 
436
- #: core/core.php:2033
 
437
  #, php-format
438
  #@ broken-link-checker
439
  msgid "Couldn't modify link %d"
440
  msgstr "Impossível modificar o link %d"
441
 
442
- #: core/core.php:2044
443
  #, php-format
444
  #@ broken-link-checker
445
  msgid "%d link marked as not broken"
@@ -447,59 +443,61 @@ msgid_plural "%d links marked as not broken"
447
  msgstr[0] "%d link marcado como funcional"
448
  msgstr[1] "%d links marcados como funcionais"
449
 
450
- #: core/core.php:2083
451
  #@ broken-link-checker
452
  msgid "Table columns"
453
  msgstr "Colunas da Tabela"
454
 
455
- #: core/core.php:2102
456
  #@ default
457
  msgid "Show on screen"
458
  msgstr "Mostrar no ecrán"
459
 
460
- #: core/core.php:2109
461
  #@ broken-link-checker
462
  msgid "links"
463
  msgstr "links"
464
 
465
- #: core/core.php:2110
466
  #: includes/admin/table-printer.php:171
467
  #@ default
468
  #@ broken-link-checker
469
  msgid "Apply"
470
  msgstr "Aplicar"
471
 
472
- #: core/core.php:2114
473
  #@ broken-link-checker
474
  msgid "Misc"
475
  msgstr "Vários"
476
 
477
- #: core/core.php:2129
478
  #, php-format
479
  #@ broken-link-checker
480
  msgid "Highlight links broken for at least %s days"
481
  msgstr "Realçar links offline pelo menos durante %s dias"
482
 
483
- #: core/core.php:2138
484
  #@ broken-link-checker
485
  msgid "Color-code status codes"
486
  msgstr "Cor-código status códigos"
487
 
488
- #: core/core.php:2155
489
- #: core/core.php:2700
490
- #: core/core.php:2740
491
- #: core/core.php:2773
492
- #: core/core.php:2860
 
 
493
  #@ broken-link-checker
494
  msgid "You're not allowed to do that!"
495
  msgstr "Não permitido!"
496
 
497
- #: core/core.php:2570
498
  #@ broken-link-checker
499
  msgid "View broken links"
500
  msgstr "Ver links offline"
501
 
502
- #: core/core.php:2571
503
  #, php-format
504
  #@ broken-link-checker
505
  msgid "Found %d broken link"
@@ -507,12 +505,12 @@ msgid_plural "Found %d broken links"
507
  msgstr[0] "Encontrado %d Link offline"
508
  msgstr[1] "Encontrados %d Links offline"
509
 
510
- #: core/core.php:2577
511
  #@ broken-link-checker
512
  msgid "No broken links found."
513
  msgstr "Não existem links offline."
514
 
515
- #: core/core.php:2584
516
  #, php-format
517
  #@ broken-link-checker
518
  msgid "%d URL in the work queue"
@@ -520,156 +518,161 @@ msgid_plural "%d URLs in the work queue"
520
  msgstr[0] "%d URL em espera"
521
  msgstr[1] "%d URLs em espera"
522
 
523
- #: core/core.php:2587
524
  #@ broken-link-checker
525
  msgid "No URLs in the work queue."
526
  msgstr "Não existem URL em espera para verificação."
527
 
528
- #: core/core.php:2616
529
  #@ broken-link-checker
530
  msgid "Searching your blog for links..."
531
  msgstr "Procurando links..."
532
 
533
- #: core/core.php:2618
534
  #@ broken-link-checker
535
  msgid "No links detected."
536
  msgstr "Nenhuns links encontrados."
537
 
538
- #: core/core.php:2708
539
- #: core/core.php:2748
540
- #: core/core.php:2788
541
- #: core/core.php:2870
 
 
542
  #, php-format
543
  #@ broken-link-checker
544
  msgid "Oops, I can't find the link %d"
545
  msgstr "Oops, não é possível encontrar o link %d"
546
 
547
- #: core/core.php:2721
548
- #: core/core.php:2758
549
  #@ broken-link-checker
550
  msgid "Oops, couldn't modify the link!"
551
  msgstr "Oops, não é possível modificar o link!"
552
 
553
- #: core/core.php:2724
554
- #: core/core.php:2761
555
- #: core/core.php:2896
 
 
556
  #@ broken-link-checker
557
  msgid "Error : link_id not specified"
558
  msgstr "Erro : link_id não especificado"
559
 
560
- #: core/core.php:2797
 
561
  #@ broken-link-checker
562
  msgid "Oops, the new URL is invalid!"
563
  msgstr "Oops, a nova URL não é válida!"
564
 
565
- #: core/core.php:2879
566
  #@ broken-link-checker
567
  msgid "An unexpected error occured!"
568
  msgstr "Ocorreu um erro inesperado!"
569
 
570
- #: core/core.php:2779
571
  #@ broken-link-checker
572
  msgid "Error : link_id or new_url not specified"
573
  msgstr "Erro : link_id ou new_url não especificado"
574
 
575
- #: core/core.php:2905
576
  #@ broken-link-checker
577
  msgid "You don't have sufficient privileges to access this information!"
578
  msgstr "Não tem privilégios suficientes para aceder a esta informação!"
579
 
580
- #: core/core.php:2918
581
  #@ broken-link-checker
582
  msgid "Error : link ID not specified"
583
  msgstr "Erro : link ID não especificado"
584
 
585
- #: core/core.php:2932
586
  #, php-format
587
  #@ broken-link-checker
588
  msgid "Failed to load link details (%s)"
589
  msgstr "Erro a carregar os detalhes do link (%s)"
590
 
591
- #: core/core.php:2986
592
  #@ broken-link-checker
593
  msgid "Broken Link Checker"
594
  msgstr "Links offline"
595
 
596
- #: core/core.php:3006
597
  #@ broken-link-checker
598
  msgid "PHP version"
599
  msgstr "Versão PHP"
600
 
601
- #: core/core.php:3012
602
  #@ broken-link-checker
603
  msgid "MySQL version"
604
  msgstr "Versão MySQL"
605
 
606
- #: core/core.php:3025
607
  #@ broken-link-checker
608
  msgid "You have an old version of CURL. Redirect detection may not work properly."
609
  msgstr "Versão de CURL obsoleta. A deteção de redirects pode não funcionar corretamente."
610
 
611
- #: core/core.php:3037
612
- #: core/core.php:3053
613
- #: core/core.php:3058
614
  #@ broken-link-checker
615
  msgid "Not installed"
616
  msgstr "Não instalado"
617
 
618
- #: core/core.php:3040
619
  #@ broken-link-checker
620
  msgid "CURL version"
621
  msgstr "Versão CURL"
622
 
623
- #: core/core.php:3046
624
  #@ broken-link-checker
625
  msgid "Installed"
626
  msgstr "Instalado"
627
 
628
- #: core/core.php:3059
629
  #@ broken-link-checker
630
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
631
  msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
632
 
633
- #: core/core.php:3070
634
  #@ broken-link-checker
635
  msgid "On"
636
  msgstr "Ativado"
637
 
638
- #: core/core.php:3071
639
  #@ broken-link-checker
640
  msgid "Redirects may be detected as broken links when safe_mode is on."
641
  msgstr "Os redirects podem ser detetados como links offline quando o safe_mode está habilitado."
642
 
643
- #: core/core.php:3076
644
- #: core/core.php:3090
645
  #@ broken-link-checker
646
  msgid "Off"
647
  msgstr "Desativado"
648
 
649
- #: core/core.php:3084
650
  #, php-format
651
  #@ broken-link-checker
652
  msgid "On ( %s )"
653
  msgstr "Ativado ( %s )"
654
 
655
- #: core/core.php:3085
656
  #@ broken-link-checker
657
  msgid "Redirects may be detected as broken links when open_basedir is on."
658
  msgstr "Os redirects podem ser considerados links offline quando o open_basedir está ativo."
659
 
660
- #: core/core.php:3114
661
  #@ broken-link-checker
662
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
663
  msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
664
 
665
- #: core/core.php:3237
666
- #: core/core.php:3356
667
  #, php-format
668
  #@ broken-link-checker
669
  msgid "[%s] Broken links detected"
670
  msgstr "[%s] Links offline encontrados"
671
 
672
- #: core/core.php:3243
673
  #, php-format
674
  #@ broken-link-checker
675
  msgid "Broken Link Checker has detected %d new broken link on your site."
@@ -677,7 +680,7 @@ msgid_plural "Broken Link Checker has detected %d new broken links on your site.
677
  msgstr[0] "Links offline detetou %d novo link sem ligação."
678
  msgstr[1] "Links offline detetou %d novos links sem ligação."
679
 
680
- #: core/core.php:3274
681
  #, php-format
682
  #@ broken-link-checker
683
  msgid "Here's a list of the first %d broken links:"
@@ -685,147 +688,147 @@ msgid_plural "Here's a list of the first %d broken links:"
685
  msgstr[0] "Lista do primeiro %d link sem ligação:"
686
  msgstr[1] "Lista dos primeiros %d links sem ligação:"
687
 
688
- #: core/core.php:3282
689
  #@ broken-link-checker
690
  msgid "Here's a list of the new broken links: "
691
  msgstr "Novos links offline: "
692
 
693
- #: core/core.php:3291
694
  #, php-format
695
  #@ broken-link-checker
696
  msgid "Link text : %s"
697
  msgstr "Texto do Link : %s"
698
 
699
- #: core/core.php:3292
700
  #, php-format
701
  #@ broken-link-checker
702
  msgid "Link URL : <a href=\"%s\">%s</a>"
703
  msgstr "Link URL : <a href=\"%s\">%s</a>"
704
 
705
- #: core/core.php:3293
706
  #, php-format
707
  #@ broken-link-checker
708
  msgid "Source : %s"
709
  msgstr "Fonte : %s"
710
 
711
- #: core/core.php:3307
712
  #@ broken-link-checker
713
  msgid "You can see all broken links here:"
714
  msgstr "Links offline:"
715
 
716
- #: core/init.php:249
717
  #@ default
718
  msgid "Once Weekly"
719
  msgstr "Uma vez por semana"
720
 
721
- #: core/init.php:255
722
  #@ default
723
  msgid "Twice a Month"
724
  msgstr "Bi-Mensal"
725
 
726
- #: core/init.php:331
727
  #@ broken-link-checker
728
  msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
729
  msgstr "A instalação do plugin Links offline falhou. Desative e ative o plugin."
730
 
731
- #: includes/any-post.php:407
732
  #: modules/containers/blogroll.php:46
733
- #: modules/containers/comment.php:153
734
- #: modules/containers/custom_field.php:207
735
  #@ default
736
  msgid "Edit"
737
  msgstr "Editar"
738
 
739
- #: includes/any-post.php:415
740
- #: modules/containers/custom_field.php:213
741
  #@ default
742
  msgid "Move this item to the Trash"
743
  msgstr "Apagar este item"
744
 
745
- #: includes/any-post.php:417
746
- #: modules/containers/custom_field.php:215
747
  #@ default
748
  msgid "Trash"
749
  msgstr "Lixo"
750
 
751
- #: includes/any-post.php:422
752
- #: modules/containers/custom_field.php:220
753
  #@ default
754
  msgid "Delete this item permanently"
755
  msgstr "Apagar este item definitivamente"
756
 
757
- #: includes/any-post.php:424
758
  #: modules/containers/blogroll.php:47
759
- #: modules/containers/custom_field.php:222
760
  #@ default
761
  msgid "Delete"
762
  msgstr "Apagar"
763
 
764
- #: includes/any-post.php:437
765
  #, php-format
766
  #@ default
767
  msgid "Preview &#8220;%s&#8221;"
768
  msgstr "Pré-vizualizar &#8220;%s&#8221;"
769
 
770
- #: includes/any-post.php:438
771
  #@ default
772
  msgid "Preview"
773
  msgstr "Pré-visualizar"
774
 
775
- #: includes/any-post.php:445
776
  #, php-format
777
  #@ default
778
  msgid "View &#8220;%s&#8221;"
779
  msgstr "Visualizar &#8220;%s&#8221;"
780
 
781
- #: includes/any-post.php:446
782
- #: modules/containers/comment.php:166
783
- #: modules/containers/custom_field.php:227
784
  #@ default
785
  msgid "View"
786
  msgstr "Ver"
787
 
788
- #: includes/any-post.php:465
789
- #: modules/containers/custom_field.php:207
790
  #@ default
791
  msgid "Edit this item"
792
  msgstr "Editar este item"
793
 
794
- #: includes/any-post.php:529
795
  #: modules/containers/blogroll.php:83
796
  #: modules/containers/comment.php:43
797
  #@ broken-link-checker
798
  msgid "Nothing to update"
799
  msgstr "Sem atualização"
800
 
801
- #: includes/any-post.php:539
802
  #, php-format
803
  #@ broken-link-checker
804
  msgid "Updating post %d failed"
805
  msgstr "Atualização do artigo %d falhou"
806
 
807
- #: includes/any-post.php:576
808
- #: modules/containers/custom_field.php:294
809
  #, php-format
810
  #@ broken-link-checker
811
  msgid "Failed to delete post \"%s\" (%d)"
812
  msgstr "Erro ao apagar o artigo \"%s\" (%d)"
813
 
814
- #: includes/any-post.php:595
815
- #: modules/containers/custom_field.php:313
816
  #, php-format
817
  #@ broken-link-checker
818
  msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
819
  msgstr "Não é possível mover o artigo \"%s\" (%d) para o lixo porque a função está desabilitada"
820
 
821
- #: includes/any-post.php:615
822
- #: modules/containers/custom_field.php:332
823
  #, php-format
824
  #@ broken-link-checker
825
  msgid "Failed to move post \"%s\" (%d) to the trash"
826
  msgstr "Erro ao apagar o artigo \"%s\" (%d)"
827
 
828
- #: includes/any-post.php:723
829
  #, php-format
830
  #@ broken-link-checker
831
  msgid "%d post deleted."
@@ -833,7 +836,7 @@ msgid_plural "%d posts deleted."
833
  msgstr[0] "%d artigo apagado."
834
  msgstr[1] "%d artigos apagados."
835
 
836
- #: includes/any-post.php:725
837
  #, php-format
838
  #@ broken-link-checker
839
  msgid "%d page deleted."
@@ -841,7 +844,7 @@ msgid_plural "%d pages deleted."
841
  msgstr[0] "%d página apagada."
842
  msgstr[1] "%d páginas apagadas."
843
 
844
- #: includes/any-post.php:727
845
  #, php-format
846
  #@ broken-link-checker
847
  msgid "%d \"%s\" deleted."
@@ -849,7 +852,7 @@ msgid_plural "%d \"%s\" deleted."
849
  msgstr[0] "%d \"%s\" apagado."
850
  msgstr[1] "%d \"%s\" apagados."
851
 
852
- #: includes/any-post.php:746
853
  #, php-format
854
  #@ broken-link-checker
855
  msgid "%d post moved to the Trash."
@@ -857,7 +860,7 @@ msgid_plural "%d posts moved to the Trash."
857
  msgstr[0] "%d artigo transferido para o Lixo."
858
  msgstr[1] "%d artigos transferidos para o Lixo."
859
 
860
- #: includes/any-post.php:748
861
  #, php-format
862
  #@ broken-link-checker
863
  msgid "%d page moved to the Trash."
@@ -865,7 +868,7 @@ msgid_plural "%d pages moved to the Trash."
865
  msgstr[0] "%d página transferida para o Lixo."
866
  msgstr[1] "%d páginas transferidas para o Lixo."
867
 
868
- #: includes/any-post.php:750
869
  #, php-format
870
  #@ broken-link-checker
871
  msgid "%d \"%s\" moved to the Trash."
@@ -902,125 +905,125 @@ msgstr "Recipiente %s[%d] não encontrado"
902
  msgid "Parser '%s' not found."
903
  msgstr "Analisador sintático '%s' não encontrado."
904
 
905
- #: includes/link-query.php:26
906
  #@ broken-link-checker
907
  msgid "Broken"
908
  msgstr "Offline"
909
 
910
- #: includes/link-query.php:28
911
  #@ broken-link-checker
912
  msgid "No broken links found"
913
  msgstr "Links offline (0)"
914
 
915
- #: includes/link-query.php:36
916
  #@ broken-link-checker
917
  msgid "Redirects"
918
  msgstr "Redirects"
919
 
920
- #: includes/link-query.php:37
921
  #@ broken-link-checker
922
  msgid "Redirected Links"
923
  msgstr "Links Redirects"
924
 
925
- #: includes/link-query.php:38
926
  #@ broken-link-checker
927
  msgid "No redirects found"
928
  msgstr "Redirects (0)"
929
 
930
- #: includes/link-query.php:56
931
  #@ broken-link-checker
932
  msgid "All"
933
  msgstr "Todos"
934
 
935
- #: includes/link-query.php:57
936
  #@ broken-link-checker
937
  msgid "Detected Links"
938
  msgstr "Links encontrados"
939
 
940
- #: includes/link-query.php:58
941
  #@ broken-link-checker
942
  msgid "No links found (yet)"
943
  msgstr "Links (0)"
944
 
945
  #: includes/admin/search-form.php:32
946
- #: includes/link-query.php:65
947
  #@ broken-link-checker
948
  msgid "Search"
949
  msgstr "Procurar"
950
 
951
- #: includes/link-query.php:66
952
  #@ broken-link-checker
953
  msgid "Search Results"
954
  msgstr "Resultados da procura"
955
 
956
- #: includes/link-query.php:67
957
- #: includes/link-query.php:114
958
  #@ broken-link-checker
959
  msgid "No links found for your query"
960
  msgstr "Sem resultados"
961
 
962
- #: includes/links.php:222
963
  #@ broken-link-checker
964
  msgid "The plugin script was terminated while trying to check the link."
965
  msgstr "O script do plugin terminou enquanto tentava verificar o link."
966
 
967
- #: includes/links.php:268
968
  #@ broken-link-checker
969
  msgid "The plugin doesn't know how to check this type of link."
970
  msgstr "O plugin não consegue verificar este tipo de link."
971
 
972
- #: includes/links.php:361
973
  #@ broken-link-checker
974
  msgid "Link is valid."
975
  msgstr "Link operacional."
976
 
977
- #: includes/links.php:363
978
  #@ broken-link-checker
979
  msgid "Link is broken."
980
  msgstr "Link sem ligação."
981
 
982
- #: includes/links.php:582
983
- #: includes/links.php:684
984
- #: includes/links.php:711
985
  #@ broken-link-checker
986
  msgid "Link is not valid"
987
  msgstr "Link inválido"
988
 
989
- #: includes/links.php:599
990
  #@ broken-link-checker
991
  msgid "This link can not be edited because it is not used anywhere on this site."
992
  msgstr "Este link não pode ser editado porque não é utilizado no sítio."
993
 
994
- #: includes/links.php:625
995
  #@ broken-link-checker
996
  msgid "Failed to create a DB entry for the new URL."
997
  msgstr "Falhou a criação de um registo na Base de dados para um novo URL."
998
 
999
- #: includes/links.php:691
1000
  #@ broken-link-checker
1001
  msgid "This link is not a redirect"
1002
  msgstr "O link não é um redirect"
1003
 
1004
- #: includes/links.php:738
1005
- #: includes/links.php:775
1006
  #@ broken-link-checker
1007
  msgid "Couldn't delete the link's database record"
1008
  msgstr "Não é possível apagar o registo do link na Base de dados"
1009
 
1010
- #: includes/links.php:863
1011
- #: modules/checkers/http.php:304
1012
- #: modules/extras/mediafire.php:101
1013
  #@ link status
1014
  #@ broken-link-checker
1015
  msgid "Unknown Error"
1016
  msgstr "Erro Desconhecido"
1017
 
1018
- #: includes/links.php:887
1019
  #@ broken-link-checker
1020
  msgid "Not checked"
1021
  msgstr "Não verificado"
1022
 
1023
- #: includes/links.php:890
1024
  #@ broken-link-checker
1025
  msgid "False positive"
1026
  msgstr "Falso positivo"
@@ -1051,70 +1054,72 @@ msgstr "Remover links não foi implementado no '%s' analisador sintático"
1051
  msgid "Failed to delete old DB tables. Database error : %s"
1052
  msgstr "Não foi possível apagar as tabelas antigas da Base de dados. Erro de Base de dados : %s"
1053
 
1054
- #: includes/admin/links-page-js.php:62
1055
- #: includes/admin/links-page-js.php:525
1056
  #@ broken-link-checker
1057
  msgid "Wait..."
1058
  msgstr "Espere ..."
1059
 
1060
- #: includes/admin/links-page-js.php:107
1061
- #: includes/admin/table-printer.php:671
 
1062
  #@ broken-link-checker
1063
  msgid "Not broken"
1064
  msgstr "Funcional"
1065
 
1066
- #: includes/admin/links-page-js.php:387
1067
  #, php-format
1068
  #@ broken-link-checker
1069
  msgid "%d instances of the link were successfully modified."
1070
  msgstr "%d casos de links que se modificaram com sucesso."
1071
 
1072
- #: includes/admin/links-page-js.php:393
1073
  #, php-format
1074
  #@ broken-link-checker
1075
  msgid "However, %d instances couldn't be edited and still point to the old URL."
1076
  msgstr "No entanto, %d casos não puderam ser editados e ainda apontam para a antiga URL."
1077
 
1078
- #: includes/admin/links-page-js.php:399
1079
  #@ broken-link-checker
1080
  msgid "The link could not be modified."
1081
  msgstr "O link não pode ser modificado."
1082
 
1083
- #: includes/admin/links-page-js.php:577
1084
  #@ broken-link-checker
1085
  msgid "The following error(s) occured :"
1086
  msgstr "Erro(s) :"
1087
 
1088
- #: includes/admin/links-page-js.php:563
1089
  #, php-format
1090
  #@ broken-link-checker
1091
  msgid "%d instances of the link were successfully unlinked."
1092
  msgstr "%d casos de links foram removidos com sucesso."
1093
 
1094
- #: includes/admin/links-page-js.php:569
1095
  #, php-format
1096
  #@ broken-link-checker
1097
  msgid "However, %d instances couldn't be removed."
1098
  msgstr "No entanto, %d casos não foram removidos."
1099
 
1100
- #: includes/admin/links-page-js.php:574
1101
  #@ broken-link-checker
1102
  msgid "The plugin failed to remove the link."
1103
  msgstr "O plugin não apagou o link."
1104
 
1105
- #: includes/admin/links-page-js.php:585
1106
- #: includes/admin/table-printer.php:289
1107
- #: includes/admin/table-printer.php:665
 
1108
  #@ broken-link-checker
1109
  msgid "Unlink"
1110
  msgstr "Remover link"
1111
 
1112
- #: includes/admin/links-page-js.php:629
1113
  #@ broken-link-checker
1114
  msgid "Enter a name for the new custom filter"
1115
  msgstr "Introduza o nome para o novo filtro personalizado"
1116
 
1117
- #: includes/admin/links-page-js.php:641
1118
  #@ broken-link-checker
1119
  msgid ""
1120
  "You are about to delete the current filter.\n"
@@ -1123,7 +1128,7 @@ msgstr ""
1123
  "Está a ponto de apagar o filtro atual.\n"
1124
  " 'Cancelar' para sair, 'Aceitar' para apagar"
1125
 
1126
- #: includes/admin/links-page-js.php:665
1127
  #@ broken-link-checker
1128
  msgid ""
1129
  "Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
@@ -1132,7 +1137,7 @@ msgstr ""
1132
  "Tem a certeza que deseja eliminar todos os artigos, favoritos ou outros itens que contenham quaisquer dos links selecionados? Esta ação não pode ser anulada.\n"
1133
  "'Cancelar' para anular a operação, 'Aceitar' para apagar"
1134
 
1135
- #: includes/admin/links-page-js.php:679
1136
  #@ broken-link-checker
1137
  msgid ""
1138
  "Are you sure you want to remove the selected links? This action can't be undone.\n"
@@ -1141,12 +1146,12 @@ msgstr ""
1141
  "Tem a certeza que deseja eliminar todos os links selecionados? Esta ação não pode ser anulada.\n"
1142
  "'Cancelar' para anular a operação, 'Aceitar' para apagar"
1143
 
1144
- #: includes/admin/links-page-js.php:791
1145
  #@ broken-link-checker
1146
  msgid "Enter a search string first."
1147
  msgstr "Introduza primeiro uma string de procura."
1148
 
1149
- #: includes/admin/links-page-js.php:798
1150
  #@ broken-link-checker
1151
  msgid "Select one or more links to edit."
1152
  msgstr "Selecione um ou mais links para editar."
@@ -1178,7 +1183,7 @@ msgid "URL"
1178
  msgstr "URL"
1179
 
1180
  #: includes/admin/search-form.php:48
1181
- #: includes/admin/table-printer.php:535
1182
  #@ broken-link-checker
1183
  msgid "HTTP code"
1184
  msgstr "Código HTTP"
@@ -1210,9 +1215,9 @@ msgid "Search Links"
1210
  msgstr "Procurar"
1211
 
1212
  #: includes/admin/search-form.php:113
1213
- #: includes/admin/table-printer.php:365
1214
- #: includes/admin/table-printer.php:695
1215
- #: includes/admin/table-printer.php:820
1216
  #@ broken-link-checker
1217
  msgid "Cancel"
1218
  msgstr "Cancelar"
@@ -1257,131 +1262,134 @@ msgstr "Fonte"
1257
  msgid "Link Text"
1258
  msgstr "Texto do Link"
1259
 
1260
- #: includes/admin/table-printer.php:284
1261
  #@ broken-link-checker
1262
  msgid "Bulk Actions"
1263
  msgstr "Edição em Massa"
1264
 
1265
- #: includes/admin/table-printer.php:285
1266
- #: includes/admin/table-printer.php:662
 
1267
  #@ broken-link-checker
1268
  msgid "Edit URL"
1269
  msgstr "Editar URL"
1270
 
1271
- #: includes/admin/table-printer.php:286
 
 
1272
  #@ broken-link-checker
1273
  msgid "Recheck"
1274
  msgstr "Voltar a verificar"
1275
 
1276
- #: includes/admin/table-printer.php:287
1277
  #@ broken-link-checker
1278
  msgid "Fix redirects"
1279
  msgstr "Reparar redirects"
1280
 
1281
- #: includes/admin/table-printer.php:288
1282
  #@ broken-link-checker
1283
  msgid "Mark as not broken"
1284
  msgstr "Funcional"
1285
 
1286
- #: includes/admin/table-printer.php:292
1287
  #@ broken-link-checker
1288
  msgid "Move sources to Trash"
1289
  msgstr "Apagar fontes"
1290
 
1291
- #: includes/admin/table-printer.php:294
1292
  #@ broken-link-checker
1293
  msgid "Delete sources"
1294
  msgstr "Apagar fontes"
1295
 
1296
- #: includes/admin/table-printer.php:309
1297
  #@ default
1298
  msgid "&laquo;"
1299
  msgstr "&laquo;"
1300
 
1301
- #: includes/admin/table-printer.php:310
1302
  #@ default
1303
  msgid "&raquo;"
1304
  msgstr "&raquo;"
1305
 
1306
- #: includes/admin/table-printer.php:318
1307
  #, php-format
1308
  #@ broken-link-checker
1309
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1310
  msgstr "Mostrando %s&#8211;%s de <span class=\"current-link-count\">%s</span>"
1311
 
1312
- #: includes/admin/table-printer.php:341
1313
  #@ broken-link-checker
1314
  msgid "Bulk Edit URLs"
1315
  msgstr "Editar URLs em massa"
1316
 
1317
- #: includes/admin/table-printer.php:343
1318
  #@ broken-link-checker
1319
  msgid "Find"
1320
  msgstr "Procura"
1321
 
1322
- #: includes/admin/table-printer.php:347
1323
  #@ broken-link-checker
1324
  msgid "Replace with"
1325
  msgstr "Substituir com"
1326
 
1327
- #: includes/admin/table-printer.php:355
1328
  #@ broken-link-checker
1329
  msgid "Case sensitive"
1330
  msgstr "Coincidir maiúsculas/minúsculas"
1331
 
1332
- #: includes/admin/table-printer.php:359
1333
  #@ broken-link-checker
1334
  msgid "Regular expression"
1335
  msgstr "Expressão regular"
1336
 
1337
- #: includes/admin/table-printer.php:367
1338
- #: includes/admin/table-printer.php:821
1339
  #@ broken-link-checker
1340
  msgid "Update"
1341
  msgstr "Atualizar"
1342
 
1343
- #: includes/admin/table-printer.php:520
1344
  #@ broken-link-checker
1345
  msgid "Post published on"
1346
  msgstr "Artigo publicado em"
1347
 
1348
- #: includes/admin/table-printer.php:525
1349
  #@ broken-link-checker
1350
  msgid "Link last checked"
1351
  msgstr "Última verificação"
1352
 
1353
- #: includes/admin/table-printer.php:529
1354
  #@ broken-link-checker
1355
  msgid "Never"
1356
  msgstr "Nunca"
1357
 
1358
- #: includes/admin/table-printer.php:540
1359
  #@ broken-link-checker
1360
  msgid "Response time"
1361
  msgstr "Tempo de resposta"
1362
 
1363
- #: includes/admin/table-printer.php:542
1364
  #, php-format
1365
  #@ broken-link-checker
1366
  msgid "%2.3f seconds"
1367
  msgstr "%2.3f segundos"
1368
 
1369
- #: includes/admin/table-printer.php:545
1370
  #@ broken-link-checker
1371
  msgid "Final URL"
1372
  msgstr "URL final"
1373
 
1374
- #: includes/admin/table-printer.php:550
1375
  #@ broken-link-checker
1376
  msgid "Redirect count"
1377
  msgstr "Contagem de redirects"
1378
 
1379
- #: includes/admin/table-printer.php:555
1380
  #@ broken-link-checker
1381
  msgid "Instance count"
1382
  msgstr "Contagem de casos"
1383
 
1384
- #: includes/admin/table-printer.php:564
1385
  #, php-format
1386
  #@ broken-link-checker
1387
  msgid "This link has failed %d time."
@@ -1389,81 +1397,82 @@ msgid_plural "This link has failed %d times."
1389
  msgstr[0] "Este link falhou %d vez."
1390
  msgstr[1] "Este link falhou %d vezes."
1391
 
1392
- #: includes/admin/table-printer.php:572
1393
  #, php-format
1394
  #@ broken-link-checker
1395
  msgid "This link has been broken for %s."
1396
  msgstr "Link offline durante %s."
1397
 
1398
- #: includes/admin/table-printer.php:583
1399
  #@ broken-link-checker
1400
  msgid "Log"
1401
  msgstr "Registo"
1402
 
1403
- #: includes/admin/table-printer.php:608
 
1404
  #@ broken-link-checker
1405
  msgid "Show more info about this link"
1406
  msgstr "Mostrar mais informação sobre este link"
1407
 
1408
- #: includes/admin/table-printer.php:642
1409
  #@ broken-link-checker
1410
  msgid "Broken for"
1411
  msgstr "Offline"
1412
 
1413
- #: includes/admin/table-printer.php:664
1414
  #@ broken-link-checker
1415
  msgid "Remove this link from all posts"
1416
  msgstr "Eliminar este link"
1417
 
1418
- #: includes/admin/table-printer.php:670
1419
  #@ broken-link-checker
1420
  msgid "Remove this link from the list of broken links and mark it as valid"
1421
  msgstr "Eliminar este link da lista dos links offline e marcá-lo como válido"
1422
 
1423
- #: includes/admin/table-printer.php:696
1424
  #@ broken-link-checker
1425
  msgid "Update URL"
1426
  msgstr "Atualizar URL"
1427
 
1428
- #: includes/admin/table-printer.php:723
1429
  #@ broken-link-checker
1430
  msgid "[An orphaned link! This is a bug.]"
1431
  msgstr "[Um link órfão! Bug.]"
1432
 
1433
- #: modules/checkers/http.php:283
1434
  #@ broken-link-checker
1435
  msgid "Server Not Found"
1436
  msgstr "Servidor Não Encontrado"
1437
 
1438
- #: modules/checkers/http.php:298
1439
  #@ broken-link-checker
1440
  msgid "Connection Failed"
1441
  msgstr "Sem Ligação"
1442
 
1443
- #: modules/checkers/http.php:340
1444
- #: modules/checkers/http.php:410
1445
  #, php-format
1446
  #@ broken-link-checker
1447
  msgid "HTTP code : %d"
1448
  msgstr "Código HTTP : %d"
1449
 
1450
- #: modules/checkers/http.php:342
1451
- #: modules/checkers/http.php:412
1452
  #@ broken-link-checker
1453
  msgid "(No response)"
1454
  msgstr "(Sem resposta)"
1455
 
1456
- #: modules/checkers/http.php:348
1457
  #@ broken-link-checker
1458
  msgid "Most likely the connection timed out or the domain doesn't exist."
1459
  msgstr "Provável que o tempo da ligação se tenha esgotado ou que o domínio não exista."
1460
 
1461
- #: modules/checkers/http.php:419
1462
  #@ broken-link-checker
1463
  msgid "Request timed out."
1464
  msgstr "Tempo de espera esgotado."
1465
 
1466
- #: modules/checkers/http.php:437
1467
  #@ broken-link-checker
1468
  msgid "Using Snoopy"
1469
  msgstr "Utilizando Snoopy"
@@ -1527,22 +1536,22 @@ msgstr "Erro ao apagar o comentário %d"
1527
  msgid "Can't move comment %d to the trash"
1528
  msgstr "Não pode mover o comentário %d para o lixo"
1529
 
1530
- #: modules/containers/comment.php:160
1531
  #@ default
1532
  msgid "Delete Permanently"
1533
  msgstr "Apagado definitivamente"
1534
 
1535
- #: modules/containers/comment.php:166
1536
  #@ broken-link-checker
1537
  msgid "View comment"
1538
  msgstr "Ver comentário"
1539
 
1540
- #: modules/containers/comment.php:183
1541
  #@ broken-link-checker
1542
  msgid "Comment"
1543
  msgstr "Comentário"
1544
 
1545
- #: modules/containers/comment.php:359
1546
  #, php-format
1547
  #@ broken-link-checker
1548
  msgid "%d comment has been deleted."
@@ -1550,7 +1559,7 @@ msgid_plural "%d comments have been deleted."
1550
  msgstr[0] "%d comentário foi apagado."
1551
  msgstr[1] "%d comentários foram apagados."
1552
 
1553
- #: modules/containers/comment.php:378
1554
  #, php-format
1555
  #@ broken-link-checker
1556
  msgid "%d comment moved to the Trash."
@@ -1570,12 +1579,12 @@ msgstr "Falhou a atualização do campo meta '%s' em %s [%d]"
1570
  msgid "Failed to delete the meta field '%s' on %s [%d]"
1571
  msgstr "Erro ao apagar o campo meta '%s' em %s [%d]"
1572
 
1573
- #: modules/containers/custom_field.php:197
1574
  #@ default
1575
  msgid "Edit this post"
1576
  msgstr "Editar post"
1577
 
1578
- #: modules/containers/custom_field.php:227
1579
  #, php-format
1580
  #@ broken-link-checker
1581
  msgid "View \"%s\""
@@ -1603,8 +1612,8 @@ msgstr "Vídeo DailyMotion embutido"
1603
  msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
1604
  msgstr "Vídeos embutidos não podem ser editados utilizando o Links offline. Por favor, editar ou substituir manualmente o vídeo em questão."
1605
 
1606
- #: modules/extras/mediafire.php:91
1607
- #: modules/extras/mediafire.php:96
1608
  #: modules/extras/rapidshare.php:139
1609
  #@ broken-link-checker
1610
  msgid "Not Found"
@@ -1709,18 +1718,18 @@ msgstr "Imagem"
1709
  msgid "Custom field"
1710
  msgstr "Campo personalizado"
1711
 
1712
- #: core/core.php:748
1713
  #@ broken-link-checker
1714
  msgid "Send authors e-mail notifications about broken links in their posts"
1715
  msgstr "Enviar aos autores notificações por e-mail sobre links offline encontrados nos seus artigos"
1716
 
1717
- #: core/core.php:2644
1718
  #@ broken-link-checker
1719
  msgctxt "current load"
1720
  msgid "Unknown"
1721
  msgstr "Desconhecido"
1722
 
1723
- #: core/core.php:3362
1724
  #, php-format
1725
  #@ broken-link-checker
1726
  msgid "Broken Link Checker has detected %d new broken link in your posts."
@@ -1728,7 +1737,7 @@ msgid_plural "Broken Link Checker has detected %d new broken links in your posts
1728
  msgstr[0] "%d novo link offline encontrado nos seus artigos."
1729
  msgstr[1] "%d novos links offline encontrados nos seus artigos."
1730
 
1731
- #: includes/admin/table-printer.php:626
1732
  #@ broken-link-checker
1733
  msgctxt "checked how long ago"
1734
  msgid "Checked"
@@ -1830,13 +1839,13 @@ msgctxt "module name"
1830
  msgid "Pages"
1831
  msgstr "Páginas"
1832
 
1833
- #: includes/links.php:849
1834
  #@ broken-link-checker
1835
  msgctxt "link status"
1836
  msgid "Unknown"
1837
  msgstr "Desconhecido"
1838
 
1839
- #: includes/links.php:893
1840
  #: modules/extras/rapidshare.php:145
1841
  #: modules/extras/rapidshare.php:151
1842
  #: modules/extras/rapidshare.php:178
@@ -1932,36 +1941,36 @@ msgid_plural "%d months ago"
1932
  msgstr[0] "%d mês atrás"
1933
  msgstr[1] "%d meses atrás"
1934
 
1935
- #: modules/containers/comment.php:153
1936
- #: modules/containers/comment.php:195
1937
  #@ default
1938
  msgid "Edit comment"
1939
  msgstr "Editar comentário"
1940
 
1941
- #: modules/containers/comment.php:162
1942
  #@ default
1943
  msgid "Move this comment to the trash"
1944
  msgstr "Apagar comentário"
1945
 
1946
- #: modules/containers/comment.php:162
1947
  #@ default
1948
  msgctxt "verb"
1949
  msgid "Trash"
1950
  msgstr "Lixo"
1951
 
1952
- #: core/core.php:800
1953
  #, php-format
1954
  #@ broken-link-checker
1955
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
1956
  msgstr "Exemplo : Lorem ipsum <a %s>link offline</a>, dolor sit amet."
1957
 
1958
- #: core/core.php:803
1959
- #: core/core.php:834
1960
  #@ broken-link-checker
1961
  msgid "Click \"Save Changes\" to update example output."
1962
  msgstr "Clicar \"Guardar Alterações\" para atualizar a visualização do exemplo."
1963
 
1964
- #: core/core.php:831
1965
  #, php-format
1966
  #@ broken-link-checker
1967
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
@@ -1993,42 +2002,44 @@ msgstr "Utilizar RapidShare API"
1993
  msgid "Redirect URL"
1994
  msgstr "Redirect URL"
1995
 
1996
- #: includes/admin/table-printer.php:678
1997
  #@ broken-link-checker
1998
  msgid "Hide this link and do not report it again unless its status changes"
1999
  msgstr "Ocultar este link e não reportá-lo de novo expecto se houver mudança de estado "
2000
 
2001
- #: includes/admin/table-printer.php:679
 
 
2002
  #@ broken-link-checker
2003
  msgid "Dismiss"
2004
  msgstr "Descartar"
2005
 
2006
- #: includes/admin/table-printer.php:684
2007
  #@ broken-link-checker
2008
  msgid "Undismiss this link"
2009
  msgstr "Restabelecer este link"
2010
 
2011
- #: includes/admin/table-printer.php:685
2012
  #@ broken-link-checker
2013
  msgid "Undismiss"
2014
  msgstr "Restabelecer"
2015
 
2016
- #: includes/link-query.php:46
2017
  #@ broken-link-checker
2018
  msgid "Dismissed"
2019
  msgstr "Descartados"
2020
 
2021
- #: includes/link-query.php:47
2022
  #@ broken-link-checker
2023
  msgid "Dismissed Links"
2024
  msgstr "Links descartados"
2025
 
2026
- #: includes/link-query.php:48
2027
  #@ broken-link-checker
2028
  msgid "No dismissed links found"
2029
  msgstr "Nenhuns links descartados encontrados"
2030
 
2031
- #: core/core.php:2593
2032
  #, php-format
2033
  #@ broken-link-checker
2034
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
@@ -2037,7 +2048,7 @@ msgid_plural "%d unique URLs"
2037
  msgstr[0] "%d URL única"
2038
  msgstr[1] "%d URLs únicas"
2039
 
2040
- #: core/core.php:2597
2041
  #, php-format
2042
  #@ broken-link-checker
2043
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
@@ -2046,46 +2057,46 @@ msgid_plural "%d links"
2046
  msgstr[0] "%d link"
2047
  msgstr[1] "%d links"
2048
 
2049
- #: core/core.php:2603
2050
  #, php-format
2051
  #@ broken-link-checker
2052
  msgid "Detected %1$s in %2$s and still searching..."
2053
  msgstr "Encontrados %1$s em %2$s e procurando..."
2054
 
2055
- #: core/core.php:2609
2056
  #, php-format
2057
  #@ broken-link-checker
2058
  msgid "Detected %1$s in %2$s."
2059
  msgstr "Encontrados %1$s em %2$s."
2060
 
2061
- #: core/core.php:755
2062
  #@ broken-link-checker
2063
  msgid "Notification e-mail address"
2064
  msgstr "Endereço de e-mail para Notificação"
2065
 
2066
- #: core/core.php:767
2067
  #@ broken-link-checker
2068
  msgid "Leave empty to use the e-mail address specified in Settings &rarr; General."
2069
  msgstr "Deixar em branco para usar o endereço de e-mail especificado em Configurações &rarr; Geral."
2070
 
2071
- #: core/core.php:1015
2072
  #@ broken-link-checker
2073
  msgid "Show the dashboard widget for"
2074
  msgstr "Mostrar o widget do Painel para"
2075
 
2076
- #: core/core.php:1020
2077
  #@ broken-link-checker
2078
  msgctxt "dashboard widget visibility"
2079
  msgid "Administrator"
2080
  msgstr "Administrador"
2081
 
2082
- #: core/core.php:1021
2083
  #@ broken-link-checker
2084
  msgctxt "dashboard widget visibility"
2085
  msgid "Editor and above"
2086
  msgstr "Editor e superior"
2087
 
2088
- #: core/core.php:1022
2089
  #@ broken-link-checker
2090
  msgctxt "dashboard widget visibility"
2091
  msgid "Nobody (disables the widget)"
@@ -2144,136 +2155,228 @@ msgctxt "module name"
2144
  msgid "Smart YouTube httpv:// URLs"
2145
  msgstr "Smart YouTube httpv:// URLs"
2146
 
2147
- #: core/core.php:852
2148
  #@ broken-link-checker
2149
  msgctxt "settings page"
2150
  msgid "Suggestions"
2151
  msgstr "Sugestões"
2152
 
2153
- #: core/core.php:858
2154
  #@ broken-link-checker
2155
  msgid "Suggest alternatives to broken links"
2156
  msgstr "Sugerir links offline alternativos"
2157
 
2158
- #: core/core.php:1321
2159
  #@ broken-link-checker
2160
  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>."
2161
  msgstr "Introduzir os nomes dos campos personalizados que pretende verificar (um por linha).<br />Se um campo tiver código HTML, utilizar o prefixo <code>html:</code>. Por exemplo, <code>html:nome_campo</code>."
2162
 
2163
- #: core/core.php:2812
2164
  #@ broken-link-checker
2165
  msgid "An unexpected error occurred!"
2166
  msgstr "Ocorreu um erro inesperado!"
2167
 
2168
- #: includes/admin/links-page-js.php:243
2169
  #@ broken-link-checker
2170
  msgctxt "link text"
2171
  msgid "(None)"
2172
  msgstr "(Nenhum)"
2173
 
2174
- #: includes/admin/links-page-js.php:244
2175
  #@ broken-link-checker
2176
  msgctxt "link text"
2177
  msgid "(Multiple links)"
2178
  msgstr "(Múltiplos links)"
2179
 
2180
- #: includes/admin/links-page-js.php:302
2181
  #@ broken-link-checker
2182
  msgctxt "link suggestions"
2183
  msgid "Searching..."
2184
  msgstr "Procurando..."
2185
 
2186
- #: includes/admin/links-page-js.php:303
2187
  #@ broken-link-checker
2188
  msgctxt "link suggestions"
2189
  msgid "No suggestions available."
2190
  msgstr "Nenhumas sugestões disponíveis."
2191
 
2192
- #: includes/admin/links-page-js.php:304
2193
  #, php-format
2194
  #@ broken-link-checker
2195
  msgctxt "link suggestions"
2196
  msgid "Archived page from %s (via the Wayback Machine)"
2197
  msgstr "Página arquivada de %s (via Wayback Machine)"
2198
 
2199
- #: includes/admin/links-page-js.php:402
2200
  #@ broken-link-checker
2201
  msgid "The following error(s) occurred :"
2202
  msgstr "Ocorreu o seguinte erro(s): "
2203
 
2204
- #: includes/admin/links-page-js.php:488
2205
  #@ broken-link-checker
2206
  msgid "Error: Link URL must not be empty."
2207
  msgstr "Erro: URL do link não pode ser nulo."
2208
 
2209
- #: includes/admin/table-printer.php:662
2210
  #@ broken-link-checker
2211
  msgid "Edit this link"
2212
  msgstr "Editar este link"
2213
 
2214
- #: includes/admin/table-printer.php:800
2215
  #@ broken-link-checker
2216
  msgctxt "inline editor title"
2217
  msgid "Edit Link"
2218
  msgstr "Editar Link"
2219
 
2220
- #: includes/admin/table-printer.php:803
2221
  #@ broken-link-checker
2222
  msgctxt "inline link editor"
2223
  msgid "Text"
2224
  msgstr "Texto"
2225
 
2226
- #: includes/admin/table-printer.php:808
2227
  #@ broken-link-checker
2228
  msgctxt "inline link editor"
2229
  msgid "URL"
2230
  msgstr "URL"
2231
 
2232
- #: includes/admin/table-printer.php:813
2233
  #@ broken-link-checker
2234
  msgctxt "inline link editor"
2235
  msgid "Suggestions"
2236
  msgstr "Sugestões"
2237
 
2238
- #: includes/admin/table-printer.php:833
2239
  #@ broken-link-checker
2240
  msgid "Use this URL"
2241
  msgstr "Utilizar URL"
2242
 
2243
- #: core/core.php:1121
2244
  #@ broken-link-checker
2245
  msgid "Logging"
2246
  msgstr "Processar Log"
2247
 
2248
- #: core/core.php:1127
2249
  #@ broken-link-checker
2250
  msgid "Enable logging"
2251
  msgstr "Ativar Log"
2252
 
2253
- #: core/core.php:1134
2254
  #@ broken-link-checker
2255
  msgid "Log file location"
2256
  msgstr "Localização do ficheiro Log"
2257
 
2258
- #: core/core.php:1143
2259
  #@ broken-link-checker
2260
  msgctxt "log file location"
2261
  msgid "Default"
2262
  msgstr "Padrão"
2263
 
2264
- #: core/core.php:1157
2265
  #@ broken-link-checker
2266
  msgctxt "log file location"
2267
  msgid "Custom"
2268
  msgstr "Personalizado"
2269
 
2270
- #: core/init.php:335
2271
  #@ broken-link-checker
2272
  msgid "Please activate the plugin separately on each site. Network activation is not supported."
2273
  msgstr "Por favor, ativar o plugin separadamente em cada site. Não é suportada ativação em rede."
2274
 
2275
- #: core/core.php:1103
2276
  #@ broken-link-checker
2277
  msgid "Target resource usage"
2278
  msgstr "Utilização de recursos alvo"
2279
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Broken Link Checker v1.10.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-12-11 10:00-0000\n"
6
+ "PO-Revision-Date: 2015-01-07 02:35:42+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: wordpress.mowster.net <wordpress@mowster.net>\n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: core/core.php:156
24
  #: includes/admin/links-page-js.php:44
25
  #@ broken-link-checker
26
  msgid "Loading..."
27
  msgstr "Carregando..."
28
 
29
+ #: core/core.php:180
30
  #: includes/admin/options-page-js.php:18
31
  #@ broken-link-checker
32
  msgid "[ Network error ]"
33
  msgstr "[ Problema na rede ]"
34
 
35
+ #: core/core.php:207
36
  #@ broken-link-checker
37
  msgid "Automatically expand the widget if broken links have been detected"
38
  msgstr "Expandir automaticamente a caixa se existirem links offline"
39
 
40
+ #: core/core.php:298
41
  #@ broken-link-checker
42
  msgid "Link Checker Settings"
43
  msgstr "Definições do Links offline"
44
 
45
+ #: core/core.php:299
46
  #@ broken-link-checker
47
  msgid "Link Checker"
48
  msgstr "Links offline"
49
 
50
+ #: core/core.php:304
51
+ #: includes/link-query.php:37
52
  #@ broken-link-checker
53
  msgid "Broken Links"
54
  msgstr "Links offline"
55
 
56
+ #: core/core.php:320
57
  #@ broken-link-checker
58
  msgid "View Broken Links"
59
  msgstr "Ver Links offline"
60
 
61
+ #: core/core.php:335
62
  #@ broken-link-checker
63
  msgid "Feedback"
64
  msgstr "Feedback"
65
 
66
+ #: core/core.php:343
67
  #@ broken-link-checker
68
  msgid "Go to Broken Links"
69
  msgstr "Ir a Links offline"
70
 
71
+ #: core/core.php:372
72
  #@ default
73
  msgid "Settings"
74
  msgstr "Definições"
75
 
76
+ #: core/core.php:626
77
  #@ broken-link-checker
78
  msgid "Settings saved."
79
  msgstr "Definições guardadas."
80
 
81
+ #: core/core.php:632
82
  #@ broken-link-checker
83
  msgid "Thank you for your donation!"
84
  msgstr "Obrigado pela sua colaboração!"
85
 
86
+ #: core/core.php:640
87
  #@ broken-link-checker
88
  msgid "Complete site recheck started."
89
  msgstr "Reverificação completa do sítio iniciada."
90
 
91
+ #: core/core.php:662
 
 
 
 
 
92
  #@ broken-link-checker
93
  msgid "General"
94
  msgstr "Geral"
95
 
96
+ #: core/core.php:663
97
  #@ broken-link-checker
98
  msgid "Look For Links In"
99
  msgstr "Procurar links"
100
 
101
+ #: core/core.php:664
102
  #@ broken-link-checker
103
  msgid "Which Links To Check"
104
  msgstr "Links para verificar"
105
 
106
+ #: core/core.php:665
107
  #@ broken-link-checker
108
  msgid "Protocols & APIs"
109
  msgstr "Protocolos & APIs"
110
 
111
+ #: core/core.php:666
112
  #@ broken-link-checker
113
  msgid "Advanced"
114
  msgstr "Avançado"
115
 
116
+ #: core/core.php:681
117
  #@ broken-link-checker
118
  msgid "Broken Link Checker Options"
119
  msgstr "Opções : Links offline"
120
 
121
+ #: core/core.php:723
122
  #: includes/admin/table-printer.php:211
123
  #@ broken-link-checker
124
  msgid "Status"
125
  msgstr "Estado"
126
 
127
+ #: core/core.php:725
128
  #: includes/admin/options-page-js.php:56
129
  #@ broken-link-checker
130
  msgid "Show debug info"
131
  msgstr "Mostrar sistema"
132
 
133
+ #: core/core.php:753
134
  #@ broken-link-checker
135
  msgid "Check each link"
136
  msgstr "Verificar cada link"
137
 
138
+ #: core/core.php:758
139
  #, php-format
140
  #@ broken-link-checker
141
  msgid "Every %s hours"
142
  msgstr "Cada %s horas"
143
 
144
+ #: core/core.php:767
145
  #@ broken-link-checker
146
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
147
  msgstr "Os links existentes serão verificados com esta frequência. Os novos links serão verificados logo que possível."
148
 
149
+ #: core/core.php:774
150
  #@ broken-link-checker
151
  msgid "E-mail notifications"
152
  msgstr "Notificações por e-mail"
153
 
154
+ #: core/core.php:780
155
  #@ broken-link-checker
156
  msgid "Send me e-mail notifications about newly detected broken links"
157
  msgstr "Enviar um e-mail notificando sobre os novos links offline encontrados"
158
 
159
+ #: core/core.php:814
160
  #@ broken-link-checker
161
  msgid "Link tweaks"
162
  msgstr "Melhoria de Links"
163
 
164
+ #: core/core.php:820
165
  #@ broken-link-checker
166
  msgid "Apply custom formatting to broken links"
167
  msgstr "Aplicar formatação personalizada para os links offline"
168
 
169
+ #: core/core.php:824
170
+ #: core/core.php:855
171
  #@ broken-link-checker
172
  msgid "Edit CSS"
173
  msgstr "Editar CSS"
174
 
175
+ #: core/core.php:851
176
  #@ broken-link-checker
177
  msgid "Apply custom formatting to removed links"
178
  msgstr "Aplicar formatação personalizada para os links removidos"
179
 
180
+ #: core/core.php:884
181
  #@ broken-link-checker
182
  msgid "Stop search engines from following broken links"
183
  msgstr "Não permitir aos motores de busca seguir os links offline"
184
 
185
+ #: core/core.php:935
186
  #@ broken-link-checker
187
  msgid "Look for links in"
188
  msgstr "Procurar links em"
189
 
190
+ #: core/core.php:946
191
  #@ broken-link-checker
192
  msgid "Post statuses"
193
  msgstr "Estado do Artigo"
194
 
195
+ #: core/core.php:979
196
  #@ broken-link-checker
197
  msgid "Link types"
198
  msgstr "Tipos de link"
199
 
200
+ #: core/core.php:985
201
  #@ broken-link-checker
202
  msgid "Error : All link parsers missing!"
203
  msgstr "Erro : Análises aos links não encontradas!"
204
 
205
+ #: core/core.php:992
206
  #@ broken-link-checker
207
  msgid "Exclusion list"
208
  msgstr "Lista de exclusão"
209
 
210
+ #: core/core.php:993
211
  #@ broken-link-checker
212
  msgid "Don't check links where the URL contains any of these words (one per line) :"
213
  msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha) :"
214
 
215
+ #: core/core.php:1011
216
  #@ broken-link-checker
217
  msgid "Check links using"
218
  msgstr "Verificar links utilizando"
219
 
220
+ #: core/core.php:1030
221
+ #: includes/links.php:1012
222
  #@ broken-link-checker
223
  msgid "Timeout"
224
  msgstr "Intervalo"
225
 
226
+ #: core/core.php:1036
227
+ #: core/core.php:1123
228
+ #: core/core.php:3422
229
  #, php-format
230
  #@ broken-link-checker
231
  #@ default
232
  msgid "%s seconds"
233
  msgstr "%s segundos"
234
 
235
+ #: core/core.php:1045
236
  #@ broken-link-checker
237
  msgid "Links that take longer than this to load will be marked as broken."
238
  msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
239
 
240
+ #: core/core.php:1052
241
  #@ broken-link-checker
242
  msgid "Link monitor"
243
  msgstr "Monitor de links"
244
 
245
+ #: core/core.php:1060
246
  #@ broken-link-checker
247
  msgid "Run continuously while the Dashboard is open"
248
  msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
249
 
250
+ #: core/core.php:1068
251
  #@ broken-link-checker
252
  msgid "Run hourly in the background"
253
  msgstr "Executar a cada hora em segundo plano"
254
 
255
+ #: core/core.php:1117
256
  #@ broken-link-checker
257
  msgid "Max. execution time"
258
  msgstr "Tempo máximo de execução"
259
 
260
+ #: core/core.php:1134
261
  #@ broken-link-checker
262
  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."
263
  msgstr "O plugin funciona executando periodicamente uma tarefa em segundo plano que analisa os links, verifica os URL encontrados e realiza outras tarefas que consomem tempo. Aqui pode-se estabelecer a duração máxima cada vez que o monitor de links é executado antes de parar."
264
 
265
+ #: core/core.php:1143
266
  #@ broken-link-checker
267
  msgid "Server load limit"
268
  msgstr "Limite de carregamento do servidor"
269
 
270
+ #: core/core.php:1158
271
  #, php-format
272
  #@ broken-link-checker
273
  msgid "Current load : %s"
274
  msgstr "Carga atual : %s"
275
 
276
+ #: core/core.php:1164
277
  #, php-format
278
  #@ broken-link-checker
279
  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."
280
  msgstr "A verificação dos links será suspensa se a média do <a href=\"%s\">carregamento do servidor</a> passa este valor. Deixar o campo em branco para não existir limite."
281
 
282
+ #: core/core.php:1172
283
  #@ broken-link-checker
284
  msgid "Not available"
285
  msgstr "Não disponível"
286
 
287
+ #: core/core.php:1174
288
  #@ broken-link-checker
289
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
290
  msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
291
 
292
+ #: core/core.php:1248
293
  #@ broken-link-checker
294
  msgid "Forced recheck"
295
  msgstr "Reverificação forçada"
296
 
297
+ #: core/core.php:1251
298
  #@ broken-link-checker
299
  msgid "Re-check all pages"
300
  msgstr "Verificar de novo todas as páginas"
301
 
302
+ #: core/core.php:1255
303
  #@ broken-link-checker
304
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
305
  msgstr "\"Opção Nuclear\". Clique para limpar todos os dados do plugin na base de dados e reverificar todo o sítio desde o início."
306
 
307
+ #: core/core.php:1266
308
  #@ default
309
  msgid "Save Changes"
310
  msgstr "Guardar alterações"
311
 
312
+ #: core/core.php:1317
313
  #@ broken-link-checker
314
  msgid "Configure"
315
  msgstr "Configurar"
316
 
 
317
  #: core/core.php:1534
318
+ #: core/core.php:1617
319
+ #: core/core.php:1649
320
  #, php-format
321
  #@ broken-link-checker
322
  msgid "Database error : %s"
323
  msgstr "Erro na Base de dados: %s"
324
 
325
+ #: core/core.php:1599
326
  #@ broken-link-checker
327
  msgid "You must enter a filter name!"
328
  msgstr "Deve introduzir um nome para o filtro!"
329
 
330
+ #: core/core.php:1603
331
  #@ broken-link-checker
332
  msgid "Invalid search query."
333
  msgstr "Procura inválida."
334
 
335
+ #: core/core.php:1612
336
  #, php-format
337
  #@ broken-link-checker
338
  msgid "Filter \"%s\" created"
339
  msgstr "Filtro \"%s\" criado"
340
 
341
+ #: core/core.php:1639
342
  #@ broken-link-checker
343
  msgid "Filter ID not specified."
344
  msgstr "ID do Filtro não especificado."
345
 
346
+ #: core/core.php:1646
347
  #@ broken-link-checker
348
  msgid "Filter deleted"
349
  msgstr "Filtro eliminado"
350
 
351
+ #: core/core.php:1694
352
  #, php-format
353
  #@ broken-link-checker
354
  msgid "Replaced %d redirect with a direct link"
356
  msgstr[0] "Substituído %d redirect com link direto"
357
  msgstr[1] "Substituídos %d redirects com links diretos"
358
 
359
+ #: core/core.php:1705
360
  #, php-format
361
  #@ broken-link-checker
362
  msgid "Failed to fix %d redirect"
364
  msgstr[0] "Não foi possível reparar %d redirect"
365
  msgstr[1] "Não foi possível reparar %d redirects"
366
 
367
+ #: core/core.php:1715
368
  #@ broken-link-checker
369
  msgid "None of the selected links are redirects!"
370
  msgstr "Nenhum dos links selecionados são redirects!"
371
 
372
+ #: core/core.php:1794
373
  #, php-format
374
  #@ broken-link-checker
375
  msgid "%d link updated."
377
  msgstr[0] "%d link atualizado."
378
  msgstr[1] "%d links atualizados."
379
 
380
+ #: core/core.php:1805
381
  #, php-format
382
  #@ broken-link-checker
383
  msgid "Failed to update %d link."
385
  msgstr[0] "Erro a atualizar %d link."
386
  msgstr[1] "Erro a atualizar %d links."
387
 
388
+ #: core/core.php:1894
389
  #, php-format
390
  #@ broken-link-checker
391
  msgid "%d link removed"
393
  msgstr[0] "%d link eliminado"
394
  msgstr[1] "%d links eliminados"
395
 
396
+ #: core/core.php:1905
397
  #, php-format
398
  #@ broken-link-checker
399
  msgid "Failed to remove %d link"
401
  msgstr[0] "Erro a remover %d link"
402
  msgstr[1] "Erro a remover %d links"
403
 
404
+ #: core/core.php:2014
405
  #, php-format
406
  #@ default
407
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
409
  msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessita de o efetuar manualmente."
410
  msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de o efetuar manualmente."
411
 
412
+ #: core/core.php:2035
413
  #@ broken-link-checker
414
  msgid "Didn't find anything to delete!"
415
  msgstr "Não foi encontrado nada para apagar!"
416
 
417
+ #: core/core.php:2064
418
  #, php-format
419
  #@ broken-link-checker
420
  msgid "%d link scheduled for rechecking"
422
  msgstr[0] "%d link agendado para verificação"
423
  msgstr[1] "%d links agendados para verificação"
424
 
425
+ #: core/core.php:2110
426
+ #: core/core.php:2923
427
  #@ broken-link-checker
428
  msgid "This link was manually marked as working by the user."
429
  msgstr "Este link foi assinalado manualmente como válido pelo utilizador."
430
 
431
+ #: core/core.php:2117
432
+ #: core/core.php:2175
433
  #, php-format
434
  #@ broken-link-checker
435
  msgid "Couldn't modify link %d"
436
  msgstr "Impossível modificar o link %d"
437
 
438
+ #: core/core.php:2128
439
  #, php-format
440
  #@ broken-link-checker
441
  msgid "%d link marked as not broken"
443
  msgstr[0] "%d link marcado como funcional"
444
  msgstr[1] "%d links marcados como funcionais"
445
 
446
+ #: core/core.php:2278
447
  #@ broken-link-checker
448
  msgid "Table columns"
449
  msgstr "Colunas da Tabela"
450
 
451
+ #: core/core.php:2297
452
  #@ default
453
  msgid "Show on screen"
454
  msgstr "Mostrar no ecrán"
455
 
456
+ #: core/core.php:2304
457
  #@ broken-link-checker
458
  msgid "links"
459
  msgstr "links"
460
 
461
+ #: core/core.php:2305
462
  #: includes/admin/table-printer.php:171
463
  #@ default
464
  #@ broken-link-checker
465
  msgid "Apply"
466
  msgstr "Aplicar"
467
 
468
+ #: core/core.php:2309
469
  #@ broken-link-checker
470
  msgid "Misc"
471
  msgstr "Vários"
472
 
473
+ #: core/core.php:2324
474
  #, php-format
475
  #@ broken-link-checker
476
  msgid "Highlight links broken for at least %s days"
477
  msgstr "Realçar links offline pelo menos durante %s dias"
478
 
479
+ #: core/core.php:2333
480
  #@ broken-link-checker
481
  msgid "Color-code status codes"
482
  msgstr "Cor-código status códigos"
483
 
484
+ #: core/core.php:2350
485
+ #: core/core.php:2907
486
+ #: core/core.php:2948
487
+ #: core/core.php:2981
488
+ #: core/core.php:3082
489
+ #: core/core.php:3126
490
+ #: core/core.php:3188
491
  #@ broken-link-checker
492
  msgid "You're not allowed to do that!"
493
  msgstr "Não permitido!"
494
 
495
+ #: core/core.php:2778
496
  #@ broken-link-checker
497
  msgid "View broken links"
498
  msgstr "Ver links offline"
499
 
500
+ #: core/core.php:2779
501
  #, php-format
502
  #@ broken-link-checker
503
  msgid "Found %d broken link"
505
  msgstr[0] "Encontrado %d Link offline"
506
  msgstr[1] "Encontrados %d Links offline"
507
 
508
+ #: core/core.php:2785
509
  #@ broken-link-checker
510
  msgid "No broken links found."
511
  msgstr "Não existem links offline."
512
 
513
+ #: core/core.php:2792
514
  #, php-format
515
  #@ broken-link-checker
516
  msgid "%d URL in the work queue"
518
  msgstr[0] "%d URL em espera"
519
  msgstr[1] "%d URLs em espera"
520
 
521
+ #: core/core.php:2795
522
  #@ broken-link-checker
523
  msgid "No URLs in the work queue."
524
  msgstr "Não existem URL em espera para verificação."
525
 
526
+ #: core/core.php:2824
527
  #@ broken-link-checker
528
  msgid "Searching your blog for links..."
529
  msgstr "Procurando links..."
530
 
531
+ #: core/core.php:2826
532
  #@ broken-link-checker
533
  msgid "No links detected."
534
  msgstr "Nenhuns links encontrados."
535
 
536
+ #: core/core.php:2915
537
+ #: core/core.php:2956
538
+ #: core/core.php:2996
539
+ #: core/core.php:3092
540
+ #: core/core.php:3141
541
+ #: core/core.php:3203
542
  #, php-format
543
  #@ broken-link-checker
544
  msgid "Oops, I can't find the link %d"
545
  msgstr "Oops, não é possível encontrar o link %d"
546
 
547
+ #: core/core.php:2929
548
+ #: core/core.php:2966
549
  #@ broken-link-checker
550
  msgid "Oops, couldn't modify the link!"
551
  msgstr "Oops, não é possível modificar o link!"
552
 
553
+ #: core/core.php:2932
554
+ #: core/core.php:2969
555
+ #: core/core.php:3118
556
+ #: core/core.php:3132
557
+ #: core/core.php:3194
558
  #@ broken-link-checker
559
  msgid "Error : link_id not specified"
560
  msgstr "Erro : link_id não especificado"
561
 
562
+ #: core/core.php:3005
563
+ #: core/core.php:3015
564
  #@ broken-link-checker
565
  msgid "Oops, the new URL is invalid!"
566
  msgstr "Oops, a nova URL não é válida!"
567
 
568
+ #: core/core.php:3101
569
  #@ broken-link-checker
570
  msgid "An unexpected error occured!"
571
  msgstr "Ocorreu um erro inesperado!"
572
 
573
+ #: core/core.php:2987
574
  #@ broken-link-checker
575
  msgid "Error : link_id or new_url not specified"
576
  msgstr "Erro : link_id ou new_url não especificado"
577
 
578
+ #: core/core.php:3230
579
  #@ broken-link-checker
580
  msgid "You don't have sufficient privileges to access this information!"
581
  msgstr "Não tem privilégios suficientes para aceder a esta informação!"
582
 
583
+ #: core/core.php:3243
584
  #@ broken-link-checker
585
  msgid "Error : link ID not specified"
586
  msgstr "Erro : link ID não especificado"
587
 
588
+ #: core/core.php:3257
589
  #, php-format
590
  #@ broken-link-checker
591
  msgid "Failed to load link details (%s)"
592
  msgstr "Erro a carregar os detalhes do link (%s)"
593
 
594
+ #: core/core.php:3311
595
  #@ broken-link-checker
596
  msgid "Broken Link Checker"
597
  msgstr "Links offline"
598
 
599
+ #: core/core.php:3331
600
  #@ broken-link-checker
601
  msgid "PHP version"
602
  msgstr "Versão PHP"
603
 
604
+ #: core/core.php:3337
605
  #@ broken-link-checker
606
  msgid "MySQL version"
607
  msgstr "Versão MySQL"
608
 
609
+ #: core/core.php:3350
610
  #@ broken-link-checker
611
  msgid "You have an old version of CURL. Redirect detection may not work properly."
612
  msgstr "Versão de CURL obsoleta. A deteção de redirects pode não funcionar corretamente."
613
 
614
+ #: core/core.php:3362
615
+ #: core/core.php:3378
616
+ #: core/core.php:3383
617
  #@ broken-link-checker
618
  msgid "Not installed"
619
  msgstr "Não instalado"
620
 
621
+ #: core/core.php:3365
622
  #@ broken-link-checker
623
  msgid "CURL version"
624
  msgstr "Versão CURL"
625
 
626
+ #: core/core.php:3371
627
  #@ broken-link-checker
628
  msgid "Installed"
629
  msgstr "Instalado"
630
 
631
+ #: core/core.php:3384
632
  #@ broken-link-checker
633
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
634
  msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
635
 
636
+ #: core/core.php:3395
637
  #@ broken-link-checker
638
  msgid "On"
639
  msgstr "Ativado"
640
 
641
+ #: core/core.php:3396
642
  #@ broken-link-checker
643
  msgid "Redirects may be detected as broken links when safe_mode is on."
644
  msgstr "Os redirects podem ser detetados como links offline quando o safe_mode está habilitado."
645
 
646
+ #: core/core.php:3401
647
+ #: core/core.php:3415
648
  #@ broken-link-checker
649
  msgid "Off"
650
  msgstr "Desativado"
651
 
652
+ #: core/core.php:3409
653
  #, php-format
654
  #@ broken-link-checker
655
  msgid "On ( %s )"
656
  msgstr "Ativado ( %s )"
657
 
658
+ #: core/core.php:3410
659
  #@ broken-link-checker
660
  msgid "Redirects may be detected as broken links when open_basedir is on."
661
  msgstr "Os redirects podem ser considerados links offline quando o open_basedir está ativo."
662
 
663
+ #: core/core.php:3439
664
  #@ broken-link-checker
665
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
666
  msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
667
 
668
+ #: core/core.php:3562
669
+ #: core/core.php:3681
670
  #, php-format
671
  #@ broken-link-checker
672
  msgid "[%s] Broken links detected"
673
  msgstr "[%s] Links offline encontrados"
674
 
675
+ #: core/core.php:3568
676
  #, php-format
677
  #@ broken-link-checker
678
  msgid "Broken Link Checker has detected %d new broken link on your site."
680
  msgstr[0] "Links offline detetou %d novo link sem ligação."
681
  msgstr[1] "Links offline detetou %d novos links sem ligação."
682
 
683
+ #: core/core.php:3599
684
  #, php-format
685
  #@ broken-link-checker
686
  msgid "Here's a list of the first %d broken links:"
688
  msgstr[0] "Lista do primeiro %d link sem ligação:"
689
  msgstr[1] "Lista dos primeiros %d links sem ligação:"
690
 
691
+ #: core/core.php:3607
692
  #@ broken-link-checker
693
  msgid "Here's a list of the new broken links: "
694
  msgstr "Novos links offline: "
695
 
696
+ #: core/core.php:3616
697
  #, php-format
698
  #@ broken-link-checker
699
  msgid "Link text : %s"
700
  msgstr "Texto do Link : %s"
701
 
702
+ #: core/core.php:3617
703
  #, php-format
704
  #@ broken-link-checker
705
  msgid "Link URL : <a href=\"%s\">%s</a>"
706
  msgstr "Link URL : <a href=\"%s\">%s</a>"
707
 
708
+ #: core/core.php:3618
709
  #, php-format
710
  #@ broken-link-checker
711
  msgid "Source : %s"
712
  msgstr "Fonte : %s"
713
 
714
+ #: core/core.php:3632
715
  #@ broken-link-checker
716
  msgid "You can see all broken links here:"
717
  msgstr "Links offline:"
718
 
719
+ #: core/init.php:255
720
  #@ default
721
  msgid "Once Weekly"
722
  msgstr "Uma vez por semana"
723
 
724
+ #: core/init.php:261
725
  #@ default
726
  msgid "Twice a Month"
727
  msgstr "Bi-Mensal"
728
 
729
+ #: core/init.php:337
730
  #@ broken-link-checker
731
  msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
732
  msgstr "A instalação do plugin Links offline falhou. Desative e ative o plugin."
733
 
734
+ #: includes/any-post.php:426
735
  #: modules/containers/blogroll.php:46
736
+ #: modules/containers/comment.php:159
737
+ #: modules/containers/custom_field.php:230
738
  #@ default
739
  msgid "Edit"
740
  msgstr "Editar"
741
 
742
+ #: includes/any-post.php:434
743
+ #: modules/containers/custom_field.php:236
744
  #@ default
745
  msgid "Move this item to the Trash"
746
  msgstr "Apagar este item"
747
 
748
+ #: includes/any-post.php:436
749
+ #: modules/containers/custom_field.php:238
750
  #@ default
751
  msgid "Trash"
752
  msgstr "Lixo"
753
 
754
+ #: includes/any-post.php:441
755
+ #: modules/containers/custom_field.php:243
756
  #@ default
757
  msgid "Delete this item permanently"
758
  msgstr "Apagar este item definitivamente"
759
 
760
+ #: includes/any-post.php:443
761
  #: modules/containers/blogroll.php:47
762
+ #: modules/containers/custom_field.php:245
763
  #@ default
764
  msgid "Delete"
765
  msgstr "Apagar"
766
 
767
+ #: includes/any-post.php:456
768
  #, php-format
769
  #@ default
770
  msgid "Preview &#8220;%s&#8221;"
771
  msgstr "Pré-vizualizar &#8220;%s&#8221;"
772
 
773
+ #: includes/any-post.php:457
774
  #@ default
775
  msgid "Preview"
776
  msgstr "Pré-visualizar"
777
 
778
+ #: includes/any-post.php:464
779
  #, php-format
780
  #@ default
781
  msgid "View &#8220;%s&#8221;"
782
  msgstr "Visualizar &#8220;%s&#8221;"
783
 
784
+ #: includes/any-post.php:465
785
+ #: modules/containers/comment.php:172
786
+ #: modules/containers/custom_field.php:250
787
  #@ default
788
  msgid "View"
789
  msgstr "Ver"
790
 
791
+ #: includes/any-post.php:484
792
+ #: modules/containers/custom_field.php:230
793
  #@ default
794
  msgid "Edit this item"
795
  msgstr "Editar este item"
796
 
797
+ #: includes/any-post.php:548
798
  #: modules/containers/blogroll.php:83
799
  #: modules/containers/comment.php:43
800
  #@ broken-link-checker
801
  msgid "Nothing to update"
802
  msgstr "Sem atualização"
803
 
804
+ #: includes/any-post.php:558
805
  #, php-format
806
  #@ broken-link-checker
807
  msgid "Updating post %d failed"
808
  msgstr "Atualização do artigo %d falhou"
809
 
810
+ #: includes/any-post.php:595
811
+ #: modules/containers/custom_field.php:317
812
  #, php-format
813
  #@ broken-link-checker
814
  msgid "Failed to delete post \"%s\" (%d)"
815
  msgstr "Erro ao apagar o artigo \"%s\" (%d)"
816
 
817
+ #: includes/any-post.php:614
818
+ #: modules/containers/custom_field.php:336
819
  #, php-format
820
  #@ broken-link-checker
821
  msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
822
  msgstr "Não é possível mover o artigo \"%s\" (%d) para o lixo porque a função está desabilitada"
823
 
824
+ #: includes/any-post.php:634
825
+ #: modules/containers/custom_field.php:355
826
  #, php-format
827
  #@ broken-link-checker
828
  msgid "Failed to move post \"%s\" (%d) to the trash"
829
  msgstr "Erro ao apagar o artigo \"%s\" (%d)"
830
 
831
+ #: includes/any-post.php:742
832
  #, php-format
833
  #@ broken-link-checker
834
  msgid "%d post deleted."
836
  msgstr[0] "%d artigo apagado."
837
  msgstr[1] "%d artigos apagados."
838
 
839
+ #: includes/any-post.php:744
840
  #, php-format
841
  #@ broken-link-checker
842
  msgid "%d page deleted."
844
  msgstr[0] "%d página apagada."
845
  msgstr[1] "%d páginas apagadas."
846
 
847
+ #: includes/any-post.php:746
848
  #, php-format
849
  #@ broken-link-checker
850
  msgid "%d \"%s\" deleted."
852
  msgstr[0] "%d \"%s\" apagado."
853
  msgstr[1] "%d \"%s\" apagados."
854
 
855
+ #: includes/any-post.php:765
856
  #, php-format
857
  #@ broken-link-checker
858
  msgid "%d post moved to the Trash."
860
  msgstr[0] "%d artigo transferido para o Lixo."
861
  msgstr[1] "%d artigos transferidos para o Lixo."
862
 
863
+ #: includes/any-post.php:767
864
  #, php-format
865
  #@ broken-link-checker
866
  msgid "%d page moved to the Trash."
868
  msgstr[0] "%d página transferida para o Lixo."
869
  msgstr[1] "%d páginas transferidas para o Lixo."
870
 
871
+ #: includes/any-post.php:769
872
  #, php-format
873
  #@ broken-link-checker
874
  msgid "%d \"%s\" moved to the Trash."
905
  msgid "Parser '%s' not found."
906
  msgstr "Analisador sintático '%s' não encontrado."
907
 
908
+ #: includes/link-query.php:36
909
  #@ broken-link-checker
910
  msgid "Broken"
911
  msgstr "Offline"
912
 
913
+ #: includes/link-query.php:38
914
  #@ broken-link-checker
915
  msgid "No broken links found"
916
  msgstr "Links offline (0)"
917
 
918
+ #: includes/link-query.php:56
919
  #@ broken-link-checker
920
  msgid "Redirects"
921
  msgstr "Redirects"
922
 
923
+ #: includes/link-query.php:57
924
  #@ broken-link-checker
925
  msgid "Redirected Links"
926
  msgstr "Links Redirects"
927
 
928
+ #: includes/link-query.php:58
929
  #@ broken-link-checker
930
  msgid "No redirects found"
931
  msgstr "Redirects (0)"
932
 
933
+ #: includes/link-query.php:25
934
  #@ broken-link-checker
935
  msgid "All"
936
  msgstr "Todos"
937
 
938
+ #: includes/link-query.php:26
939
  #@ broken-link-checker
940
  msgid "Detected Links"
941
  msgstr "Links encontrados"
942
 
943
+ #: includes/link-query.php:27
944
  #@ broken-link-checker
945
  msgid "No links found (yet)"
946
  msgstr "Links (0)"
947
 
948
  #: includes/admin/search-form.php:32
949
+ #: includes/link-query.php:81
950
  #@ broken-link-checker
951
  msgid "Search"
952
  msgstr "Procurar"
953
 
954
+ #: includes/link-query.php:82
955
  #@ broken-link-checker
956
  msgid "Search Results"
957
  msgstr "Resultados da procura"
958
 
959
+ #: includes/link-query.php:83
960
+ #: includes/link-query.php:130
961
  #@ broken-link-checker
962
  msgid "No links found for your query"
963
  msgstr "Sem resultados"
964
 
965
+ #: includes/links.php:224
966
  #@ broken-link-checker
967
  msgid "The plugin script was terminated while trying to check the link."
968
  msgstr "O script do plugin terminou enquanto tentava verificar o link."
969
 
970
+ #: includes/links.php:271
971
  #@ broken-link-checker
972
  msgid "The plugin doesn't know how to check this type of link."
973
  msgstr "O plugin não consegue verificar este tipo de link."
974
 
975
+ #: includes/links.php:504
976
  #@ broken-link-checker
977
  msgid "Link is valid."
978
  msgstr "Link operacional."
979
 
980
+ #: includes/links.php:502
981
  #@ broken-link-checker
982
  msgid "Link is broken."
983
  msgstr "Link sem ligação."
984
 
985
+ #: includes/links.php:728
986
+ #: includes/links.php:830
987
+ #: includes/links.php:857
988
  #@ broken-link-checker
989
  msgid "Link is not valid"
990
  msgstr "Link inválido"
991
 
992
+ #: includes/links.php:745
993
  #@ broken-link-checker
994
  msgid "This link can not be edited because it is not used anywhere on this site."
995
  msgstr "Este link não pode ser editado porque não é utilizado no sítio."
996
 
997
+ #: includes/links.php:771
998
  #@ broken-link-checker
999
  msgid "Failed to create a DB entry for the new URL."
1000
  msgstr "Falhou a criação de um registo na Base de dados para um novo URL."
1001
 
1002
+ #: includes/links.php:837
1003
  #@ broken-link-checker
1004
  msgid "This link is not a redirect"
1005
  msgstr "O link não é um redirect"
1006
 
1007
+ #: includes/links.php:884
1008
+ #: includes/links.php:921
1009
  #@ broken-link-checker
1010
  msgid "Couldn't delete the link's database record"
1011
  msgstr "Não é possível apagar o registo do link na Base de dados"
1012
 
1013
+ #: includes/links.php:1008
1014
+ #: modules/checkers/http.php:308
1015
+ #: modules/extras/mediafire.php:115
1016
  #@ link status
1017
  #@ broken-link-checker
1018
  msgid "Unknown Error"
1019
  msgstr "Erro Desconhecido"
1020
 
1021
+ #: includes/links.php:1032
1022
  #@ broken-link-checker
1023
  msgid "Not checked"
1024
  msgstr "Não verificado"
1025
 
1026
+ #: includes/links.php:1035
1027
  #@ broken-link-checker
1028
  msgid "False positive"
1029
  msgstr "Falso positivo"
1054
  msgid "Failed to delete old DB tables. Database error : %s"
1055
  msgstr "Não foi possível apagar as tabelas antigas da Base de dados. Erro de Base de dados : %s"
1056
 
1057
+ #: includes/admin/links-page-js.php:63
1058
+ #: includes/admin/links-page-js.php:648
1059
  #@ broken-link-checker
1060
  msgid "Wait..."
1061
  msgstr "Espere ..."
1062
 
1063
+ #: core/core.php:403
1064
+ #: includes/admin/links-page-js.php:110
1065
+ #: includes/admin/table-printer.php:691
1066
  #@ broken-link-checker
1067
  msgid "Not broken"
1068
  msgstr "Funcional"
1069
 
1070
+ #: includes/admin/links-page-js.php:524
1071
  #, php-format
1072
  #@ broken-link-checker
1073
  msgid "%d instances of the link were successfully modified."
1074
  msgstr "%d casos de links que se modificaram com sucesso."
1075
 
1076
+ #: includes/admin/links-page-js.php:530
1077
  #, php-format
1078
  #@ broken-link-checker
1079
  msgid "However, %d instances couldn't be edited and still point to the old URL."
1080
  msgstr "No entanto, %d casos não puderam ser editados e ainda apontam para a antiga URL."
1081
 
1082
+ #: includes/admin/links-page-js.php:536
1083
  #@ broken-link-checker
1084
  msgid "The link could not be modified."
1085
  msgstr "O link não pode ser modificado."
1086
 
1087
+ #: includes/admin/links-page-js.php:700
1088
  #@ broken-link-checker
1089
  msgid "The following error(s) occured :"
1090
  msgstr "Erro(s) :"
1091
 
1092
+ #: includes/admin/links-page-js.php:686
1093
  #, php-format
1094
  #@ broken-link-checker
1095
  msgid "%d instances of the link were successfully unlinked."
1096
  msgstr "%d casos de links foram removidos com sucesso."
1097
 
1098
+ #: includes/admin/links-page-js.php:692
1099
  #, php-format
1100
  #@ broken-link-checker
1101
  msgid "However, %d instances couldn't be removed."
1102
  msgstr "No entanto, %d casos não foram removidos."
1103
 
1104
+ #: includes/admin/links-page-js.php:697
1105
  #@ broken-link-checker
1106
  msgid "The plugin failed to remove the link."
1107
  msgstr "O plugin não apagou o link."
1108
 
1109
+ #: core/core.php:402
1110
+ #: includes/admin/links-page-js.php:708
1111
+ #: includes/admin/table-printer.php:292
1112
+ #: includes/admin/table-printer.php:685
1113
  #@ broken-link-checker
1114
  msgid "Unlink"
1115
  msgstr "Remover link"
1116
 
1117
+ #: includes/admin/links-page-js.php:746
1118
  #@ broken-link-checker
1119
  msgid "Enter a name for the new custom filter"
1120
  msgstr "Introduza o nome para o novo filtro personalizado"
1121
 
1122
+ #: includes/admin/links-page-js.php:758
1123
  #@ broken-link-checker
1124
  msgid ""
1125
  "You are about to delete the current filter.\n"
1128
  "Está a ponto de apagar o filtro atual.\n"
1129
  " 'Cancelar' para sair, 'Aceitar' para apagar"
1130
 
1131
+ #: includes/admin/links-page-js.php:782
1132
  #@ broken-link-checker
1133
  msgid ""
1134
  "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"
1137
  "Tem a certeza que deseja eliminar todos os artigos, favoritos ou outros itens que contenham quaisquer dos links selecionados? Esta ação não pode ser anulada.\n"
1138
  "'Cancelar' para anular a operação, 'Aceitar' para apagar"
1139
 
1140
+ #: includes/admin/links-page-js.php:796
1141
  #@ broken-link-checker
1142
  msgid ""
1143
  "Are you sure you want to remove the selected links? This action can't be undone.\n"
1146
  "Tem a certeza que deseja eliminar todos os links selecionados? Esta ação não pode ser anulada.\n"
1147
  "'Cancelar' para anular a operação, 'Aceitar' para apagar"
1148
 
1149
+ #: includes/admin/links-page-js.php:926
1150
  #@ broken-link-checker
1151
  msgid "Enter a search string first."
1152
  msgstr "Introduza primeiro uma string de procura."
1153
 
1154
+ #: includes/admin/links-page-js.php:933
1155
  #@ broken-link-checker
1156
  msgid "Select one or more links to edit."
1157
  msgstr "Selecione um ou mais links para editar."
1183
  msgstr "URL"
1184
 
1185
  #: includes/admin/search-form.php:48
1186
+ #: includes/admin/table-printer.php:542
1187
  #@ broken-link-checker
1188
  msgid "HTTP code"
1189
  msgstr "Código HTTP"
1215
  msgstr "Procurar"
1216
 
1217
  #: includes/admin/search-form.php:113
1218
+ #: includes/admin/table-printer.php:368
1219
+ #: includes/admin/table-printer.php:751
1220
+ #: includes/admin/table-printer.php:876
1221
  #@ broken-link-checker
1222
  msgid "Cancel"
1223
  msgstr "Cancelar"
1262
  msgid "Link Text"
1263
  msgstr "Texto do Link"
1264
 
1265
+ #: includes/admin/table-printer.php:286
1266
  #@ broken-link-checker
1267
  msgid "Bulk Actions"
1268
  msgstr "Edição em Massa"
1269
 
1270
+ #: core/core.php:401
1271
+ #: includes/admin/table-printer.php:287
1272
+ #: includes/admin/table-printer.php:682
1273
  #@ broken-link-checker
1274
  msgid "Edit URL"
1275
  msgstr "Editar URL"
1276
 
1277
+ #: core/core.php:405
1278
+ #: includes/admin/table-printer.php:288
1279
+ #: includes/admin/table-printer.php:711
1280
  #@ broken-link-checker
1281
  msgid "Recheck"
1282
  msgstr "Voltar a verificar"
1283
 
1284
+ #: includes/admin/table-printer.php:289
1285
  #@ broken-link-checker
1286
  msgid "Fix redirects"
1287
  msgstr "Reparar redirects"
1288
 
1289
+ #: includes/admin/table-printer.php:290
1290
  #@ broken-link-checker
1291
  msgid "Mark as not broken"
1292
  msgstr "Funcional"
1293
 
1294
+ #: includes/admin/table-printer.php:295
1295
  #@ broken-link-checker
1296
  msgid "Move sources to Trash"
1297
  msgstr "Apagar fontes"
1298
 
1299
+ #: includes/admin/table-printer.php:297
1300
  #@ broken-link-checker
1301
  msgid "Delete sources"
1302
  msgstr "Apagar fontes"
1303
 
1304
+ #: includes/admin/table-printer.php:312
1305
  #@ default
1306
  msgid "&laquo;"
1307
  msgstr "&laquo;"
1308
 
1309
+ #: includes/admin/table-printer.php:313
1310
  #@ default
1311
  msgid "&raquo;"
1312
  msgstr "&raquo;"
1313
 
1314
+ #: includes/admin/table-printer.php:321
1315
  #, php-format
1316
  #@ broken-link-checker
1317
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1318
  msgstr "Mostrando %s&#8211;%s de <span class=\"current-link-count\">%s</span>"
1319
 
1320
+ #: includes/admin/table-printer.php:344
1321
  #@ broken-link-checker
1322
  msgid "Bulk Edit URLs"
1323
  msgstr "Editar URLs em massa"
1324
 
1325
+ #: includes/admin/table-printer.php:346
1326
  #@ broken-link-checker
1327
  msgid "Find"
1328
  msgstr "Procura"
1329
 
1330
+ #: includes/admin/table-printer.php:350
1331
  #@ broken-link-checker
1332
  msgid "Replace with"
1333
  msgstr "Substituir com"
1334
 
1335
+ #: includes/admin/table-printer.php:358
1336
  #@ broken-link-checker
1337
  msgid "Case sensitive"
1338
  msgstr "Coincidir maiúsculas/minúsculas"
1339
 
1340
+ #: includes/admin/table-printer.php:362
1341
  #@ broken-link-checker
1342
  msgid "Regular expression"
1343
  msgstr "Expressão regular"
1344
 
1345
+ #: includes/admin/table-printer.php:370
1346
+ #: includes/admin/table-printer.php:877
1347
  #@ broken-link-checker
1348
  msgid "Update"
1349
  msgstr "Atualizar"
1350
 
1351
+ #: includes/admin/table-printer.php:523
1352
  #@ broken-link-checker
1353
  msgid "Post published on"
1354
  msgstr "Artigo publicado em"
1355
 
1356
+ #: includes/admin/table-printer.php:528
1357
  #@ broken-link-checker
1358
  msgid "Link last checked"
1359
  msgstr "Última verificação"
1360
 
1361
+ #: includes/admin/table-printer.php:532
1362
  #@ broken-link-checker
1363
  msgid "Never"
1364
  msgstr "Nunca"
1365
 
1366
+ #: includes/admin/table-printer.php:547
1367
  #@ broken-link-checker
1368
  msgid "Response time"
1369
  msgstr "Tempo de resposta"
1370
 
1371
+ #: includes/admin/table-printer.php:549
1372
  #, php-format
1373
  #@ broken-link-checker
1374
  msgid "%2.3f seconds"
1375
  msgstr "%2.3f segundos"
1376
 
1377
+ #: includes/admin/table-printer.php:552
1378
  #@ broken-link-checker
1379
  msgid "Final URL"
1380
  msgstr "URL final"
1381
 
1382
+ #: includes/admin/table-printer.php:557
1383
  #@ broken-link-checker
1384
  msgid "Redirect count"
1385
  msgstr "Contagem de redirects"
1386
 
1387
+ #: includes/admin/table-printer.php:562
1388
  #@ broken-link-checker
1389
  msgid "Instance count"
1390
  msgstr "Contagem de casos"
1391
 
1392
+ #: includes/admin/table-printer.php:571
1393
  #, php-format
1394
  #@ broken-link-checker
1395
  msgid "This link has failed %d time."
1397
  msgstr[0] "Este link falhou %d vez."
1398
  msgstr[1] "Este link falhou %d vezes."
1399
 
1400
+ #: includes/admin/table-printer.php:579
1401
  #, php-format
1402
  #@ broken-link-checker
1403
  msgid "This link has been broken for %s."
1404
  msgstr "Link offline durante %s."
1405
 
1406
+ #: includes/admin/table-printer.php:590
1407
  #@ broken-link-checker
1408
  msgid "Log"
1409
  msgstr "Registo"
1410
 
1411
+ #: includes/admin/table-printer.php:615
1412
+ #: includes/admin/table-printer.php:660
1413
  #@ broken-link-checker
1414
  msgid "Show more info about this link"
1415
  msgstr "Mostrar mais informação sobre este link"
1416
 
1417
+ #: includes/admin/table-printer.php:649
1418
  #@ broken-link-checker
1419
  msgid "Broken for"
1420
  msgstr "Offline"
1421
 
1422
+ #: includes/admin/table-printer.php:684
1423
  #@ broken-link-checker
1424
  msgid "Remove this link from all posts"
1425
  msgstr "Eliminar este link"
1426
 
1427
+ #: includes/admin/table-printer.php:690
1428
  #@ broken-link-checker
1429
  msgid "Remove this link from the list of broken links and mark it as valid"
1430
  msgstr "Eliminar este link da lista dos links offline e marcá-lo como válido"
1431
 
1432
+ #: includes/admin/table-printer.php:752
1433
  #@ broken-link-checker
1434
  msgid "Update URL"
1435
  msgstr "Atualizar URL"
1436
 
1437
+ #: includes/admin/table-printer.php:779
1438
  #@ broken-link-checker
1439
  msgid "[An orphaned link! This is a bug.]"
1440
  msgstr "[Um link órfão! Bug.]"
1441
 
1442
+ #: modules/checkers/http.php:285
1443
  #@ broken-link-checker
1444
  msgid "Server Not Found"
1445
  msgstr "Servidor Não Encontrado"
1446
 
1447
+ #: modules/checkers/http.php:301
1448
  #@ broken-link-checker
1449
  msgid "Connection Failed"
1450
  msgstr "Sem Ligação"
1451
 
1452
+ #: modules/checkers/http.php:344
1453
+ #: modules/checkers/http.php:414
1454
  #, php-format
1455
  #@ broken-link-checker
1456
  msgid "HTTP code : %d"
1457
  msgstr "Código HTTP : %d"
1458
 
1459
+ #: modules/checkers/http.php:346
1460
+ #: modules/checkers/http.php:416
1461
  #@ broken-link-checker
1462
  msgid "(No response)"
1463
  msgstr "(Sem resposta)"
1464
 
1465
+ #: modules/checkers/http.php:352
1466
  #@ broken-link-checker
1467
  msgid "Most likely the connection timed out or the domain doesn't exist."
1468
  msgstr "Provável que o tempo da ligação se tenha esgotado ou que o domínio não exista."
1469
 
1470
+ #: modules/checkers/http.php:423
1471
  #@ broken-link-checker
1472
  msgid "Request timed out."
1473
  msgstr "Tempo de espera esgotado."
1474
 
1475
+ #: modules/checkers/http.php:441
1476
  #@ broken-link-checker
1477
  msgid "Using Snoopy"
1478
  msgstr "Utilizando Snoopy"
1536
  msgid "Can't move comment %d to the trash"
1537
  msgstr "Não pode mover o comentário %d para o lixo"
1538
 
1539
+ #: modules/containers/comment.php:166
1540
  #@ default
1541
  msgid "Delete Permanently"
1542
  msgstr "Apagado definitivamente"
1543
 
1544
+ #: modules/containers/comment.php:172
1545
  #@ broken-link-checker
1546
  msgid "View comment"
1547
  msgstr "Ver comentário"
1548
 
1549
+ #: modules/containers/comment.php:189
1550
  #@ broken-link-checker
1551
  msgid "Comment"
1552
  msgstr "Comentário"
1553
 
1554
+ #: modules/containers/comment.php:365
1555
  #, php-format
1556
  #@ broken-link-checker
1557
  msgid "%d comment has been deleted."
1559
  msgstr[0] "%d comentário foi apagado."
1560
  msgstr[1] "%d comentários foram apagados."
1561
 
1562
+ #: modules/containers/comment.php:384
1563
  #, php-format
1564
  #@ broken-link-checker
1565
  msgid "%d comment moved to the Trash."
1579
  msgid "Failed to delete the meta field '%s' on %s [%d]"
1580
  msgstr "Erro ao apagar o campo meta '%s' em %s [%d]"
1581
 
1582
+ #: modules/containers/custom_field.php:216
1583
  #@ default
1584
  msgid "Edit this post"
1585
  msgstr "Editar post"
1586
 
1587
+ #: modules/containers/custom_field.php:250
1588
  #, php-format
1589
  #@ broken-link-checker
1590
  msgid "View \"%s\""
1612
  msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
1613
  msgstr "Vídeos embutidos não podem ser editados utilizando o Links offline. Por favor, editar ou substituir manualmente o vídeo em questão."
1614
 
1615
+ #: modules/extras/mediafire.php:97
1616
+ #: modules/extras/mediafire.php:103
1617
  #: modules/extras/rapidshare.php:139
1618
  #@ broken-link-checker
1619
  msgid "Not Found"
1718
  msgid "Custom field"
1719
  msgstr "Campo personalizado"
1720
 
1721
+ #: core/core.php:788
1722
  #@ broken-link-checker
1723
  msgid "Send authors e-mail notifications about broken links in their posts"
1724
  msgstr "Enviar aos autores notificações por e-mail sobre links offline encontrados nos seus artigos"
1725
 
1726
+ #: core/core.php:2852
1727
  #@ broken-link-checker
1728
  msgctxt "current load"
1729
  msgid "Unknown"
1730
  msgstr "Desconhecido"
1731
 
1732
+ #: core/core.php:3687
1733
  #, php-format
1734
  #@ broken-link-checker
1735
  msgid "Broken Link Checker has detected %d new broken link in your posts."
1737
  msgstr[0] "%d novo link offline encontrado nos seus artigos."
1738
  msgstr[1] "%d novos links offline encontrados nos seus artigos."
1739
 
1740
+ #: includes/admin/table-printer.php:633
1741
  #@ broken-link-checker
1742
  msgctxt "checked how long ago"
1743
  msgid "Checked"
1839
  msgid "Pages"
1840
  msgstr "Páginas"
1841
 
1842
+ #: includes/links.php:995
1843
  #@ broken-link-checker
1844
  msgctxt "link status"
1845
  msgid "Unknown"
1846
  msgstr "Desconhecido"
1847
 
1848
+ #: includes/links.php:1038
1849
  #: modules/extras/rapidshare.php:145
1850
  #: modules/extras/rapidshare.php:151
1851
  #: modules/extras/rapidshare.php:178
1941
  msgstr[0] "%d mês atrás"
1942
  msgstr[1] "%d meses atrás"
1943
 
1944
+ #: modules/containers/comment.php:159
1945
+ #: modules/containers/comment.php:201
1946
  #@ default
1947
  msgid "Edit comment"
1948
  msgstr "Editar comentário"
1949
 
1950
+ #: modules/containers/comment.php:168
1951
  #@ default
1952
  msgid "Move this comment to the trash"
1953
  msgstr "Apagar comentário"
1954
 
1955
+ #: modules/containers/comment.php:168
1956
  #@ default
1957
  msgctxt "verb"
1958
  msgid "Trash"
1959
  msgstr "Lixo"
1960
 
1961
+ #: core/core.php:840
1962
  #, php-format
1963
  #@ broken-link-checker
1964
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
1965
  msgstr "Exemplo : Lorem ipsum <a %s>link offline</a>, dolor sit amet."
1966
 
1967
+ #: core/core.php:843
1968
+ #: core/core.php:874
1969
  #@ broken-link-checker
1970
  msgid "Click \"Save Changes\" to update example output."
1971
  msgstr "Clicar \"Guardar Alterações\" para atualizar a visualização do exemplo."
1972
 
1973
+ #: core/core.php:871
1974
  #, php-format
1975
  #@ broken-link-checker
1976
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
2002
  msgid "Redirect URL"
2003
  msgstr "Redirect URL"
2004
 
2005
+ #: includes/admin/table-printer.php:698
2006
  #@ broken-link-checker
2007
  msgid "Hide this link and do not report it again unless its status changes"
2008
  msgstr "Ocultar este link e não reportá-lo de novo expecto se houver mudança de estado "
2009
 
2010
+ #: core/core.php:404
2011
+ #: includes/admin/table-printer.php:291
2012
+ #: includes/admin/table-printer.php:699
2013
  #@ broken-link-checker
2014
  msgid "Dismiss"
2015
  msgstr "Descartar"
2016
 
2017
+ #: includes/admin/table-printer.php:704
2018
  #@ broken-link-checker
2019
  msgid "Undismiss this link"
2020
  msgstr "Restabelecer este link"
2021
 
2022
+ #: includes/admin/table-printer.php:705
2023
  #@ broken-link-checker
2024
  msgid "Undismiss"
2025
  msgstr "Restabelecer"
2026
 
2027
+ #: includes/link-query.php:66
2028
  #@ broken-link-checker
2029
  msgid "Dismissed"
2030
  msgstr "Descartados"
2031
 
2032
+ #: includes/link-query.php:67
2033
  #@ broken-link-checker
2034
  msgid "Dismissed Links"
2035
  msgstr "Links descartados"
2036
 
2037
+ #: includes/link-query.php:68
2038
  #@ broken-link-checker
2039
  msgid "No dismissed links found"
2040
  msgstr "Nenhuns links descartados encontrados"
2041
 
2042
+ #: core/core.php:2801
2043
  #, php-format
2044
  #@ broken-link-checker
2045
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
2048
  msgstr[0] "%d URL única"
2049
  msgstr[1] "%d URLs únicas"
2050
 
2051
+ #: core/core.php:2805
2052
  #, php-format
2053
  #@ broken-link-checker
2054
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
2057
  msgstr[0] "%d link"
2058
  msgstr[1] "%d links"
2059
 
2060
+ #: core/core.php:2811
2061
  #, php-format
2062
  #@ broken-link-checker
2063
  msgid "Detected %1$s in %2$s and still searching..."
2064
  msgstr "Encontrados %1$s em %2$s e procurando..."
2065
 
2066
+ #: core/core.php:2817
2067
  #, php-format
2068
  #@ broken-link-checker
2069
  msgid "Detected %1$s in %2$s."
2070
  msgstr "Encontrados %1$s em %2$s."
2071
 
2072
+ #: core/core.php:795
2073
  #@ broken-link-checker
2074
  msgid "Notification e-mail address"
2075
  msgstr "Endereço de e-mail para Notificação"
2076
 
2077
+ #: core/core.php:807
2078
  #@ broken-link-checker
2079
  msgid "Leave empty to use the e-mail address specified in Settings &rarr; General."
2080
  msgstr "Deixar em branco para usar o endereço de e-mail especificado em Configurações &rarr; Geral."
2081
 
2082
+ #: core/core.php:1076
2083
  #@ broken-link-checker
2084
  msgid "Show the dashboard widget for"
2085
  msgstr "Mostrar o widget do Painel para"
2086
 
2087
+ #: core/core.php:1081
2088
  #@ broken-link-checker
2089
  msgctxt "dashboard widget visibility"
2090
  msgid "Administrator"
2091
  msgstr "Administrador"
2092
 
2093
+ #: core/core.php:1082
2094
  #@ broken-link-checker
2095
  msgctxt "dashboard widget visibility"
2096
  msgid "Editor and above"
2097
  msgstr "Editor e superior"
2098
 
2099
+ #: core/core.php:1083
2100
  #@ broken-link-checker
2101
  msgctxt "dashboard widget visibility"
2102
  msgid "Nobody (disables the widget)"
2155
  msgid "Smart YouTube httpv:// URLs"
2156
  msgstr "Smart YouTube httpv:// URLs"
2157
 
2158
+ #: core/core.php:901
2159
  #@ broken-link-checker
2160
  msgctxt "settings page"
2161
  msgid "Suggestions"
2162
  msgstr "Sugestões"
2163
 
2164
+ #: core/core.php:906
2165
  #@ broken-link-checker
2166
  msgid "Suggest alternatives to broken links"
2167
  msgstr "Sugerir links offline alternativos"
2168
 
2169
+ #: core/core.php:1400
2170
  #@ broken-link-checker
2171
  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>."
2172
  msgstr "Introduzir os nomes dos campos personalizados que pretende verificar (um por linha).<br />Se um campo tiver código HTML, utilizar o prefixo <code>html:</code>. Por exemplo, <code>html:nome_campo</code>."
2173
 
2174
+ #: core/core.php:3031
2175
  #@ broken-link-checker
2176
  msgid "An unexpected error occurred!"
2177
  msgstr "Ocorreu um erro inesperado!"
2178
 
2179
+ #: includes/admin/links-page-js.php:369
2180
  #@ broken-link-checker
2181
  msgctxt "link text"
2182
  msgid "(None)"
2183
  msgstr "(Nenhum)"
2184
 
2185
+ #: includes/admin/links-page-js.php:370
2186
  #@ broken-link-checker
2187
  msgctxt "link text"
2188
  msgid "(Multiple links)"
2189
  msgstr "(Múltiplos links)"
2190
 
2191
+ #: includes/admin/links-page-js.php:428
2192
  #@ broken-link-checker
2193
  msgctxt "link suggestions"
2194
  msgid "Searching..."
2195
  msgstr "Procurando..."
2196
 
2197
+ #: includes/admin/links-page-js.php:429
2198
  #@ broken-link-checker
2199
  msgctxt "link suggestions"
2200
  msgid "No suggestions available."
2201
  msgstr "Nenhumas sugestões disponíveis."
2202
 
2203
+ #: includes/admin/links-page-js.php:430
2204
  #, php-format
2205
  #@ broken-link-checker
2206
  msgctxt "link suggestions"
2207
  msgid "Archived page from %s (via the Wayback Machine)"
2208
  msgstr "Página arquivada de %s (via Wayback Machine)"
2209
 
2210
+ #: includes/admin/links-page-js.php:539
2211
  #@ broken-link-checker
2212
  msgid "The following error(s) occurred :"
2213
  msgstr "Ocorreu o seguinte erro(s): "
2214
 
2215
+ #: includes/admin/links-page-js.php:611
2216
  #@ broken-link-checker
2217
  msgid "Error: Link URL must not be empty."
2218
  msgstr "Erro: URL do link não pode ser nulo."
2219
 
2220
+ #: includes/admin/table-printer.php:682
2221
  #@ broken-link-checker
2222
  msgid "Edit this link"
2223
  msgstr "Editar este link"
2224
 
2225
+ #: includes/admin/table-printer.php:856
2226
  #@ broken-link-checker
2227
  msgctxt "inline editor title"
2228
  msgid "Edit Link"
2229
  msgstr "Editar Link"
2230
 
2231
+ #: includes/admin/table-printer.php:859
2232
  #@ broken-link-checker
2233
  msgctxt "inline link editor"
2234
  msgid "Text"
2235
  msgstr "Texto"
2236
 
2237
+ #: includes/admin/table-printer.php:864
2238
  #@ broken-link-checker
2239
  msgctxt "inline link editor"
2240
  msgid "URL"
2241
  msgstr "URL"
2242
 
2243
+ #: includes/admin/table-printer.php:869
2244
  #@ broken-link-checker
2245
  msgctxt "inline link editor"
2246
  msgid "Suggestions"
2247
  msgstr "Sugestões"
2248
 
2249
+ #: includes/admin/table-printer.php:889
2250
  #@ broken-link-checker
2251
  msgid "Use this URL"
2252
  msgstr "Utilizar URL"
2253
 
2254
+ #: core/core.php:1200
2255
  #@ broken-link-checker
2256
  msgid "Logging"
2257
  msgstr "Processar Log"
2258
 
2259
+ #: core/core.php:1206
2260
  #@ broken-link-checker
2261
  msgid "Enable logging"
2262
  msgstr "Ativar Log"
2263
 
2264
+ #: core/core.php:1213
2265
  #@ broken-link-checker
2266
  msgid "Log file location"
2267
  msgstr "Localização do ficheiro Log"
2268
 
2269
+ #: core/core.php:1222
2270
  #@ broken-link-checker
2271
  msgctxt "log file location"
2272
  msgid "Default"
2273
  msgstr "Padrão"
2274
 
2275
+ #: core/core.php:1236
2276
  #@ broken-link-checker
2277
  msgctxt "log file location"
2278
  msgid "Custom"
2279
  msgstr "Personalizado"
2280
 
2281
+ #: core/init.php:341
2282
  #@ broken-link-checker
2283
  msgid "Please activate the plugin separately on each site. Network activation is not supported."
2284
  msgstr "Por favor, ativar o plugin separadamente em cada site. Não é suportada ativação em rede."
2285
 
2286
+ #: core/core.php:1182
2287
  #@ broken-link-checker
2288
  msgid "Target resource usage"
2289
  msgstr "Utilização de recursos alvo"
2290
 
2291
+ #: core/core.php:406
2292
+ #: includes/admin/table-printer.php:719
2293
+ #@ broken-link-checker
2294
+ msgctxt "link action; replace one redirect with a direct link"
2295
+ msgid "Fix redirect"
2296
+ msgstr "Reparar redirect"
2297
+
2298
+ #: core/core.php:891
2299
+ #@ broken-link-checker
2300
+ msgctxt "\"Link tweaks\" settings"
2301
+ msgid "These settings only apply to the content of posts, not comments or custom fields."
2302
+ msgstr "Estas configurações apenas se aplicam ao conteúdo dos artigos, não em comentários ou campos personalizados."
2303
+
2304
+ #: core/core.php:912
2305
+ #@ broken-link-checker
2306
+ msgctxt "settings page"
2307
+ msgid "Warnings"
2308
+ msgstr "Avisos"
2309
+
2310
+ #: core/core.php:917
2311
+ #@ broken-link-checker
2312
+ msgid "Show uncertain or minor problems as \"warnings\" instead of \"broken\""
2313
+ msgstr "Mostrar problemas irresolutos ou menores com \"avisos\" em vez de \"offline\""
2314
+
2315
+ #: core/core.php:920
2316
+ #@ broken-link-checker
2317
+ msgid "Turning off this option will make the plugin report all problems as broken links."
2318
+ msgstr "Desativando esta opção, todos os problemas serão reportados como links offline. "
2319
+
2320
+ #: core/core.php:1099
2321
+ #@ broken-link-checker
2322
+ msgctxt "settings page"
2323
+ msgid "Show link actions"
2324
+ msgstr "Mostrar ações do link"
2325
+
2326
+ #: core/core.php:2186
2327
+ #, php-format
2328
+ #@ broken-link-checker
2329
+ msgid "%d link dismissed"
2330
+ msgid_plural "%d links dismissed"
2331
+ msgstr[0] "%d link descartado"
2332
+ msgstr[1] "%d links descartados"
2333
+
2334
+ #: core/core.php:2243
2335
+ #@ broken-link-checker
2336
+ msgid "The \"Warnings\" page lists problems that are probably temporary or suspected to be false positives.<br> Warnings that persist for a long time will usually be reclassified as broken links."
2337
+ msgstr "Os \"Avisos\" exibem os problemas que são, provavelmente, temporários ou possíveis de serem falsos positivos.<br> Avisos que persistem por muito tempo serão, de uma forma geral, reclassificados como links offline."
2338
+
2339
+ #: core/core.php:2248
2340
+ #@ broken-link-checker
2341
+ msgctxt "admin notice under Tools - Broken links - Warnings"
2342
+ msgid "Hide notice"
2343
+ msgstr "Ocultar aviso"
2344
+
2345
+ #: core/core.php:2254
2346
+ #@ broken-link-checker
2347
+ msgctxt "a link from the admin notice under Tools - Broken links - Warnings"
2348
+ msgid "Change warning settings"
2349
+ msgstr "Alterar configurações de avisos"
2350
+
2351
+ #: includes/admin/table-printer.php:661
2352
+ #@ broken-link-checker
2353
+ msgctxt "link in the \"Status\" column"
2354
+ msgid "Details"
2355
+ msgstr "Detalhes"
2356
+
2357
+ #: includes/admin/table-printer.php:718
2358
+ #@ broken-link-checker
2359
+ msgid "Replace this redirect with a direct link"
2360
+ msgstr "Substituir este redirect com um link direto"
2361
+
2362
+ #: includes/link-query.php:46
2363
+ #@ broken-link-checker
2364
+ msgctxt "filter name"
2365
+ msgid "Warnings"
2366
+ msgstr "Alertas"
2367
+
2368
+ #: includes/link-query.php:47
2369
+ #@ filter heading
2370
+ msgid "Warnings"
2371
+ msgstr "Avisos"
2372
+
2373
+ #: includes/link-query.php:48
2374
+ #@ broken-link-checker
2375
+ msgid "No warnings found"
2376
+ msgstr "Alertas não encontrados"
2377
+
2378
+ #: modules/extras/mediafire.php:109
2379
+ #@ broken-link-checker
2380
+ msgid "Permission Denied"
2381
+ msgstr "Permissão Negada"
2382
+
modules/checkers/http.php CHANGED
@@ -247,11 +247,16 @@ class blcCurlHttp extends blcHttpCheckerBase {
247
 
248
  //Register a callback function which will process the HTTP header(s).
249
  //It can be called multiple times if the remote server performs a redirect.
250
- curl_setopt($ch, CURLOPT_HEADERFUNCTION, array(&$this,'read_header'));
 
 
 
 
 
251
 
252
  //Execute the request
253
  $start_time = microtime_float();
254
- curl_exec($ch);
255
  $measured_request_duration = microtime_float() - $start_time;
256
  $blclog->debug(sprintf('HTTP request took %.3f seconds', $measured_request_duration));
257
 
@@ -346,12 +351,24 @@ class blcCurlHttp extends blcHttpCheckerBase {
346
  $log .= __('(No response)', 'broken-link-checker');
347
  }
348
  $log .= " ===\n\n";
 
 
349
  $log .= $this->last_headers;
350
-
 
 
 
 
 
 
 
 
 
 
351
  if ( !empty($result['broken']) && !empty($result['timeout']) ) {
352
  $log .= "\n(" . __("Most likely the connection timed out or the domain doesn't exist.", 'broken-link-checker') . ')';
353
  }
354
-
355
  $result['log'] = $log;
356
 
357
  //The hash should contain info about all pieces of data that pertain to determining if the
247
 
248
  //Register a callback function which will process the HTTP header(s).
249
  //It can be called multiple times if the remote server performs a redirect.
250
+ curl_setopt($ch, CURLOPT_HEADERFUNCTION, array($this,'read_header'));
251
+
252
+ //Record request headers.
253
+ if ( defined('CURLINFO_HEADER_OUT') ) {
254
+ curl_setopt($ch, CURLINFO_HEADER_OUT, true);
255
+ }
256
 
257
  //Execute the request
258
  $start_time = microtime_float();
259
+ $content = curl_exec($ch);
260
  $measured_request_duration = microtime_float() - $start_time;
261
  $blclog->debug(sprintf('HTTP request took %.3f seconds', $measured_request_duration));
262
 
351
  $log .= __('(No response)', 'broken-link-checker');
352
  }
353
  $log .= " ===\n\n";
354
+
355
+ $log .= "Response headers\n" . str_repeat('=', 16) . "\n";
356
  $log .= $this->last_headers;
357
+
358
+ if ( isset($info['request_header']) ) {
359
+ $log .= "Request headers\n" . str_repeat('=', 16) . "\n";
360
+ $log .= htmlentities($info['request_header']);
361
+ }
362
+
363
+ if ( !$nobody && ($content !== false) && $result['broken'] ) {
364
+ $log .= "Response HTML\n" . str_repeat('=', 16) . "\n";
365
+ $log .= htmlentities($content);
366
+ }
367
+
368
  if ( !empty($result['broken']) && !empty($result['timeout']) ) {
369
  $log .= "\n(" . __("Most likely the connection timed out or the domain doesn't exist.", 'broken-link-checker') . ')';
370
  }
371
+
372
  $result['log'] = $log;
373
 
374
  //The hash should contain info about all pieces of data that pertain to determining if the
modules/parsers/html_link.php CHANGED
@@ -79,6 +79,7 @@ class blcHTMLLink extends blcParser {
79
 
80
  if ( !isset($parts['scheme']) ){
81
  //No scheme - likely a relative URL. Turn it into an absolute one.
 
82
  $url = $this->relative2absolute($url, $base_url); //$base_url comes from $params
83
  $blclog->info(__CLASS__ .':' . __FUNCTION__ . ' Convert relative URL to absolute. Absolute URL = "' . $url . '"');
84
  }
79
 
80
  if ( !isset($parts['scheme']) ){
81
  //No scheme - likely a relative URL. Turn it into an absolute one.
82
+ //TODO: Also log the original URL and base URL.
83
  $url = $this->relative2absolute($url, $base_url); //$base_url comes from $params
84
  $blclog->info(__CLASS__ .':' . __FUNCTION__ . ' Convert relative URL to absolute. Absolute URL = "' . $url . '"');
85
  }
modules/parsers/image.php CHANGED
@@ -30,11 +30,19 @@ class blcHTMLImage extends blcParser {
30
  * Parse a string for HTML images - <img src="URL">
31
  *
32
  * @param string $content The text to parse.
33
- * @param string $base_url The base URL to use for normalizing relative URLs. If ommitted, the blog's root URL will be used.
34
  * @param string $default_link_text
35
  * @return array An array of new blcLinkInstance objects. The objects will include info about the links found, but not about the corresponding container entity.
36
  */
37
  function parse($content, $base_url = '', $default_link_text = ''){
 
 
 
 
 
 
 
 
38
  $instances = array();
39
 
40
  //remove all <code></code> blocks first
@@ -45,11 +53,14 @@ class blcHTMLImage extends blcParser {
45
  foreach($matches as $link){
46
  $url = $raw_url = $link[3];
47
  //FB::log($url, "Found image");
 
48
 
49
  //Decode &amp; and other entities
50
- $url = html_entity_decode($url);
 
51
  $url = trim($url);
52
-
 
53
  //Allow shortcodes in image URLs.
54
  $url = do_shortcode($url);
55
 
@@ -61,14 +72,25 @@ class blcHTMLImage extends blcParser {
61
 
62
  if ( !isset($parts['scheme']) ){
63
  //No scheme - likely a relative URL. Turn it into an absolute one.
 
64
  $url = $this->relative2absolute($url, $base_url);
 
 
 
 
 
 
 
 
 
65
  }
66
 
67
  //Skip invalid URLs (again)
68
  if ( !$url || (strlen($url)<6) ) {
69
  continue;
70
- }
71
-
 
72
  //The URL is okay, create and populate a new link instance.
73
  $instance = new blcLinkInstance();
74
 
30
  * Parse a string for HTML images - <img src="URL">
31
  *
32
  * @param string $content The text to parse.
33
+ * @param string $base_url The base URL to use for normalizing relative URLs. If omitted, the blog's root URL will be used.
34
  * @param string $default_link_text
35
  * @return array An array of new blcLinkInstance objects. The objects will include info about the links found, but not about the corresponding container entity.
36
  */
37
  function parse($content, $base_url = '', $default_link_text = ''){
38
+ global $blclog;
39
+
40
+ $charset = get_bloginfo('charset');
41
+ if ( strtoupper($charset) === 'UTF8' ) {
42
+ $charset = 'UTF-8';
43
+ }
44
+ $blclog->info('Blog charset is "' . $charset . '"');
45
+
46
  $instances = array();
47
 
48
  //remove all <code></code> blocks first
53
  foreach($matches as $link){
54
  $url = $raw_url = $link[3];
55
  //FB::log($url, "Found image");
56
+ $blclog->info('Found image. SRC attribute: "' . $raw_url . '"');
57
 
58
  //Decode &amp; and other entities
59
+ $url = html_entity_decode($url, ENT_QUOTES, $charset);
60
+ $blclog->info('Decoded image URL: "' . $url . '"');
61
  $url = trim($url);
62
+ $blclog->info('Trimmed image URL: "' . $url . '"');
63
+
64
  //Allow shortcodes in image URLs.
65
  $url = do_shortcode($url);
66
 
72
 
73
  if ( !isset($parts['scheme']) ){
74
  //No scheme - likely a relative URL. Turn it into an absolute one.
75
+ $relativeUrl = $url;
76
  $url = $this->relative2absolute($url, $base_url);
77
+
78
+ $blclog->info(sprintf(
79
+ '%s:%s Resolving relative URL. Relative URL = "%s", base URL = "%s", result = "%s"',
80
+ __CLASS__,
81
+ __FUNCTION__,
82
+ $relativeUrl,
83
+ $base_url,
84
+ $url
85
+ ));
86
  }
87
 
88
  //Skip invalid URLs (again)
89
  if ( !$url || (strlen($url)<6) ) {
90
  continue;
91
+ }
92
+
93
+ $blclog->info('Final URL: "' . $url . '"');
94
  //The URL is okay, create and populate a new link instance.
95
  $instance = new blcLinkInstance();
96
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: whiteshadow
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
4
  Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
5
  Requires at least: 3.2
6
- Tested up to: 4.1
7
- Stable tag: 1.10.4
8
 
9
  This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
10
 
@@ -53,7 +53,7 @@ You can also click on the contents of the "Status" or "Link Text" columns to get
53
  * Finnish - [Jani Alha](http://www.wysiwyg.fi)
54
  * French - [Whiler](http://blogs.wittwer.fr/whiler/), Luc Capronnier, [Guillaume Boda](http://www.michtoblog.com/)
55
  * German - [Ivan Graf](http://blog.bildergallery.com/)
56
- * Hebrew - [Eitan Caspi](http://caspi.org.il/)
57
  * Hindi - [Outshine Solutions](http://outshinesolutions.com/)
58
  * Hungarian - [Language Connect](http://www.languageconnect.net/)
59
  * Irish - [Ray Gren](http://letsbefamous.com/)
@@ -98,6 +98,11 @@ To upgrade your installation
98
 
99
  == Changelog ==
100
 
 
 
 
 
 
101
  = 1.10.4 =
102
  * Tested on WordPress 4.1.
103
  * Fixed a "Use of undefined constant ENT_HTML401" notice showing up on sites running PHP 5.3 or older.
@@ -777,6 +782,9 @@ To upgrade your installation
777
 
778
  == Upgrade Notice ==
779
 
 
 
 
780
  = 1.9.2 =
781
  Fixes UI issues related to the new WP 3.8 admin style and a few security vulnerabilities.
782
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
4
  Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
5
  Requires at least: 3.2
6
+ Tested up to: 4.2-beta
7
+ Stable tag: 1.10.5
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
 
53
  * Finnish - [Jani Alha](http://www.wysiwyg.fi)
54
  * French - [Whiler](http://blogs.wittwer.fr/whiler/), Luc Capronnier, [Guillaume Boda](http://www.michtoblog.com/)
55
  * German - [Ivan Graf](http://blog.bildergallery.com/)
56
+ * Hebrew - [Ahrale](http://atar4u.com/), [Eitan Caspi](http://caspi.org.il/)
57
  * Hindi - [Outshine Solutions](http://outshinesolutions.com/)
58
  * Hungarian - [Language Connect](http://www.languageconnect.net/)
59
  * Irish - [Ray Gren](http://letsbefamous.com/)
98
 
99
  == Changelog ==
100
 
101
+ = 1.10.5 =
102
+ * Security: Fixed an XSS vulnerability that could be used by Editors and Administrators to inject arbitrary HTML/JS code in the "Tools -> Broken Links" page.
103
+ * Other minor security fixes.
104
+ * Tested on WordPress 4.2 beta.
105
+
106
  = 1.10.4 =
107
  * Tested on WordPress 4.1.
108
  * Fixed a "Use of undefined constant ENT_HTML401" notice showing up on sites running PHP 5.3 or older.
782
 
783
  == Upgrade Notice ==
784
 
785
+ = 1.10.5 =
786
+ Fixes a significant security issue.
787
+
788
  = 1.9.2 =
789
  Fixes UI issues related to the new WP 3.8 admin style and a few security vulnerabilities.
790