Version Description
- Added support for the new YouTube embed code style. It needs to be explicitly enabled in options.
- Added credits link for the Persian language translator.
- Updated Portuguese translation.
- Updated German translation.
- Partial fix for Mediafire checker failing with a fatal error in some situations.
Download this release
Release Info
Developer | whiteshadow |
Plugin | Broken Link Checker |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3 to 1.3.1
- broken-link-checker.php +1 -1
- images/youtube-iframe.png +0 -0
- includes/utility-class.php +0 -42
- languages/broken-link-checker-de_DE.mo +0 -0
- languages/broken-link-checker-de_DE.po +632 -674
- languages/broken-link-checker-pt_PT.mo +0 -0
- languages/broken-link-checker-pt_PT.po +93 -93
- modules/containers/blogroll.php +1 -1
- modules/extras/embed-parser-base.php +45 -3
- modules/extras/mediafire.php +4 -3
- modules/extras/youtube-embed.php +3 -1
- modules/extras/youtube-iframe.php +77 -0
- readme.txt +9 -2
broken-link-checker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Broken Link Checker
|
4 |
Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
|
5 |
Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
|
6 |
-
Version: 1.3
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/blog/
|
9 |
Text Domain: broken-link-checker
|
3 |
Plugin Name: Broken Link Checker
|
4 |
Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
|
5 |
Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
|
6 |
+
Version: 1.3.1
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/blog/
|
9 |
Text Domain: broken-link-checker
|
images/youtube-iframe.png
ADDED
Binary file
|
includes/utility-class.php
CHANGED
@@ -210,48 +210,6 @@ class blcUtility {
|
|
210 |
return $tags;
|
211 |
}
|
212 |
|
213 |
-
/**
|
214 |
-
* Extract <embed> elements from a HTML string.
|
215 |
-
*
|
216 |
-
* This function returns an array of <embed> elements found in the input
|
217 |
-
* string. Only <embed>'s that are inside <object>'s are considered. Embeds
|
218 |
-
* without a 'src' attribute are skipped.
|
219 |
-
*
|
220 |
-
* Each array item has the same basic structure as the array items
|
221 |
-
* returned by blcUtility::extract_tags(), plus an additional 'wrapper' key
|
222 |
-
* that contains similarly structured info about the wrapping <object> tag.
|
223 |
-
*
|
224 |
-
* @uses blcUtility::extract_tags() This function is a simple wrapper around extract_tags()
|
225 |
-
*
|
226 |
-
* @param string $html
|
227 |
-
* @return array
|
228 |
-
*/
|
229 |
-
static function extract_embeds($html){
|
230 |
-
$results = array();
|
231 |
-
|
232 |
-
//remove all <code></code> blocks first
|
233 |
-
$html = preg_replace('/<code[^>]*>.+?<\/code>/si', ' ', $html);
|
234 |
-
|
235 |
-
//Find likely-looking <object> elements
|
236 |
-
$objects = blcUtility::extract_tags($html, 'object', false, true);
|
237 |
-
foreach($objects as $candidate){
|
238 |
-
//Find the <embed> tag
|
239 |
-
$embed = blcUtility::extract_tags($candidate['full_tag'], 'embed', false);
|
240 |
-
if ( empty($embed)) continue;
|
241 |
-
$embed = reset($embed); //Take the first (and only) found <embed> element
|
242 |
-
|
243 |
-
if ( empty($embed['attributes']['src']) ){
|
244 |
-
continue;
|
245 |
-
}
|
246 |
-
|
247 |
-
$embed['wrapper'] = $candidate;
|
248 |
-
|
249 |
-
$results[] = $embed;
|
250 |
-
}
|
251 |
-
|
252 |
-
return $results;
|
253 |
-
}
|
254 |
-
|
255 |
/**
|
256 |
* Get the value of a cookie.
|
257 |
*
|
210 |
return $tags;
|
211 |
}
|
212 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
/**
|
214 |
* Get the value of a cookie.
|
215 |
*
|
languages/broken-link-checker-de_DE.mo
CHANGED
Binary file
|
languages/broken-link-checker-de_DE.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Broken Link Checker | V1.
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -19,10 +19,59 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ broken-link-checker
|
22 |
-
#: modules/
|
23 |
-
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
# @ broken-link-checker
|
28 |
#: modules/containers/custom_field.php:84
|
@@ -47,8 +96,8 @@ msgstr "Bearbeiten Sie dieses Element"
|
|
47 |
|
48 |
# @ default
|
49 |
#: modules/containers/custom_field.php:197
|
50 |
-
#: modules/containers/blogroll.php:46
|
51 |
#: modules/containers/comment.php:153
|
|
|
52 |
#: includes/any-post.php:397
|
53 |
msgid "Edit"
|
54 |
msgstr "Bearbeiten"
|
@@ -109,49 +158,12 @@ msgid "Failed to move post \"%s\" (%d) to the trash"
|
|
109 |
msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
|
110 |
|
111 |
# @ broken-link-checker
|
112 |
-
#: modules/containers/blogroll.php:21
|
113 |
-
msgid "Bookmark"
|
114 |
-
msgstr "Lesezeichen"
|
115 |
-
|
116 |
-
# @ broken-link-checker
|
117 |
-
#: modules/containers/blogroll.php:27
|
118 |
-
#: modules/containers/blogroll.php:46
|
119 |
-
msgid "Edit this bookmark"
|
120 |
-
msgstr "Lesezeichen bearbeiten"
|
121 |
-
|
122 |
-
# @ default
|
123 |
-
#: modules/containers/blogroll.php:47
|
124 |
-
msgid ""
|
125 |
-
"You are about to delete this link '%s'\n"
|
126 |
-
" 'Cancel' to stop, 'OK' to delete."
|
127 |
-
msgstr ""
|
128 |
-
"Möchten Sie diesen Link löschen '%s'\n"
|
129 |
-
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
130 |
-
|
131 |
-
# @ broken-link-checker
|
132 |
-
#: modules/containers/blogroll.php:83
|
133 |
#: modules/containers/comment.php:43
|
|
|
134 |
#: includes/any-post.php:519
|
135 |
msgid "Nothing to update"
|
136 |
msgstr "Nichts zu aktualisieren"
|
137 |
|
138 |
-
# @ broken-link-checker
|
139 |
-
#: modules/containers/blogroll.php:97
|
140 |
-
msgid "Updating bookmark %d failed"
|
141 |
-
msgstr "Lesezeichen Aktualisierung %d fehlgeschlagen"
|
142 |
-
|
143 |
-
# @ broken-link-checker
|
144 |
-
#: modules/containers/blogroll.php:128
|
145 |
-
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
146 |
-
msgstr "Löschen des Blogroll Link \"%s\" (%d) schlug fehl"
|
147 |
-
|
148 |
-
# @ broken-link-checker
|
149 |
-
#: modules/containers/blogroll.php:298
|
150 |
-
msgid "%d blogroll link deleted."
|
151 |
-
msgid_plural "%d blogroll links deleted."
|
152 |
-
msgstr[0] "%d Blogroll Link gelöscht."
|
153 |
-
msgstr[1] "%d Blogroll Links gelöscht."
|
154 |
-
|
155 |
# @ broken-link-checker
|
156 |
#: modules/containers/comment.php:53
|
157 |
msgid "Updating comment %d failed"
|
@@ -214,59 +226,68 @@ msgstr[0] "%d Kommentar in den Papierkorb verschoben."
|
|
214 |
msgstr[1] "%d Kommentare in den Papierkorb verschoben."
|
215 |
|
216 |
# @ broken-link-checker
|
217 |
-
#: modules/
|
218 |
-
msgid "
|
219 |
-
msgstr "
|
220 |
|
221 |
# @ broken-link-checker
|
222 |
-
#: modules/
|
223 |
-
|
224 |
-
|
|
|
225 |
|
226 |
-
# @
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
|
|
233 |
|
234 |
# @ broken-link-checker
|
235 |
-
#: modules/
|
236 |
-
|
237 |
-
|
238 |
-
msgstr "HTTP Code: %d"
|
239 |
|
240 |
# @ broken-link-checker
|
241 |
-
#: modules/
|
242 |
-
|
243 |
-
|
244 |
-
msgstr "(Keine Antwort)"
|
245 |
|
246 |
# @ broken-link-checker
|
247 |
-
#: modules/
|
248 |
-
msgid "
|
249 |
-
|
|
|
|
|
250 |
|
251 |
# @ broken-link-checker
|
252 |
-
#: modules/
|
253 |
-
|
254 |
-
|
|
|
255 |
|
256 |
# @ broken-link-checker
|
257 |
-
#: modules/
|
258 |
-
|
259 |
-
|
|
|
|
|
260 |
|
261 |
# @ broken-link-checker
|
262 |
-
#: modules/
|
263 |
-
msgid "
|
264 |
-
msgstr "
|
265 |
|
266 |
# @ broken-link-checker
|
267 |
-
#: modules/
|
268 |
-
msgid "
|
269 |
-
msgstr "
|
|
|
|
|
|
|
|
|
270 |
|
271 |
# @ broken-link-checker
|
272 |
#: modules/extras/dailymotion-embed.php:23
|
@@ -279,22 +300,33 @@ msgid "Embedded DailyMotion video"
|
|
279 |
msgstr "Eingebettete DailyMotion Videos"
|
280 |
|
281 |
# @ broken-link-checker
|
282 |
-
#: modules/extras/
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
|
|
|
|
|
|
287 |
|
288 |
# @ broken-link-checker
|
|
|
289 |
#: modules/extras/rapidshare.php:148
|
290 |
#: modules/extras/rapidshare.php:154
|
291 |
#: modules/extras/rapidshare.php:181
|
292 |
-
#: modules/extras/megaupload.php:101
|
293 |
#: includes/links.php:875
|
294 |
msgctxt "link status"
|
295 |
msgid "OK"
|
296 |
msgstr "OK"
|
297 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
# @ broken-link-checker
|
299 |
#: modules/extras/rapidshare.php:161
|
300 |
msgid "RS Server Down"
|
@@ -319,20 +351,6 @@ msgstr "RapidShare: %s"
|
|
319 |
msgid "RapidShare API error: %s"
|
320 |
msgstr "RapidShare API Fehler: %s"
|
321 |
|
322 |
-
#: modules/extras/embed-parser-base.php:140
|
323 |
-
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
324 |
-
msgstr "Eingebettete Videos können mit Broken Link Checker nicht editiert werden. Bitte ändern oder ersetzen Sie das betreffende Video manuell."
|
325 |
-
|
326 |
-
# @ broken-link-checker
|
327 |
-
#: modules/extras/vimeo-embed.php:24
|
328 |
-
msgid "Vimeo Video"
|
329 |
-
msgstr "Vimeo Video"
|
330 |
-
|
331 |
-
# @ broken-link-checker
|
332 |
-
#: modules/extras/vimeo-embed.php:25
|
333 |
-
msgid "Embedded Vimeo video"
|
334 |
-
msgstr "Eingebettete Vimeo Videos"
|
335 |
-
|
336 |
# @ broken-link-checker
|
337 |
#: modules/extras/youtube.php:63
|
338 |
#: modules/extras/youtube.php:66
|
@@ -354,7 +372,6 @@ msgstr "Video OK"
|
|
354 |
# @ broken-link-checker
|
355 |
#: modules/extras/youtube.php:95
|
356 |
#: modules/extras/youtube.php:122
|
357 |
-
#: core/core.php:966
|
358 |
msgid "OK"
|
359 |
msgstr "OK"
|
360 |
|
@@ -370,880 +387,900 @@ msgstr "Video mit Einschränkungen"
|
|
370 |
msgid "Unknown YouTube API response received."
|
371 |
msgstr "Unbekannte Antwort der YouTube API erhalten."
|
372 |
|
373 |
-
# @ broken-link-checker
|
374 |
-
#: modules/extras/youtube-embed.php:22
|
375 |
-
msgid "YouTube Video"
|
376 |
-
msgstr "YouTube Video"
|
377 |
-
|
378 |
-
# @ broken-link-checker
|
379 |
-
#: modules/extras/youtube-embed.php:23
|
380 |
-
msgid "Embedded YouTube video"
|
381 |
-
msgstr "Eingebettete YouTube Videos"
|
382 |
-
|
383 |
-
#: modules/extras/megaupload.php:116
|
384 |
-
msgid "File Temporarily Unavailable"
|
385 |
-
msgstr "Datei vorübergehend nicht erreichbar"
|
386 |
-
|
387 |
-
#: modules/extras/megaupload.php:122
|
388 |
-
msgid "API Error"
|
389 |
-
msgstr "API Fehler"
|
390 |
-
|
391 |
# @ default
|
392 |
-
#: core/init.php:
|
393 |
msgid "Once Weekly"
|
394 |
msgstr "Einmal wöchentlich"
|
395 |
|
396 |
# @ default
|
397 |
-
#: core/init.php:
|
398 |
msgid "Twice a Month"
|
399 |
msgstr "Zweimal im Monat"
|
400 |
|
401 |
# @ broken-link-checker
|
402 |
-
#: core/init.php:
|
403 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
404 |
msgstr "Broken Link Checker Installation fehlgeschlagen. Deaktivieren Sie das Plugin und aktivieren es anschliessend wieder."
|
405 |
|
406 |
# @ broken-link-checker
|
407 |
-
#: core/core.php:
|
408 |
#: includes/admin/links-page-js.php:37
|
409 |
msgid "Loading..."
|
410 |
msgstr "Wird geladen ..."
|
411 |
|
412 |
# @ broken-link-checker
|
413 |
-
#: core/core.php:
|
414 |
#: includes/admin/options-page-js.php:18
|
415 |
msgid "[ Network error ]"
|
416 |
msgstr "[ Netzwerk Fehler ]"
|
417 |
|
418 |
# @ broken-link-checker
|
419 |
-
#: core/core.php:
|
420 |
msgid "Automatically expand the widget if broken links have been detected"
|
421 |
msgstr "Vergrössere Widget automatisch wenn fehlerhafte Links gefunden wurden"
|
422 |
|
423 |
# @ broken-link-checker
|
424 |
-
#: core/core.php:
|
425 |
msgid "Link Checker Settings"
|
426 |
msgstr "Link Checker Einstellungen"
|
427 |
|
428 |
# @ broken-link-checker
|
429 |
-
#: core/core.php:
|
430 |
msgid "Link Checker"
|
431 |
msgstr "Link Checker"
|
432 |
|
433 |
# @ broken-link-checker
|
434 |
-
#: core/core.php:
|
435 |
#: includes/link-query.php:26
|
436 |
msgid "Broken Links"
|
437 |
msgstr "Fehlerhafte Links"
|
438 |
|
439 |
# @ broken-link-checker
|
440 |
-
#: core/core.php:
|
441 |
msgid "View Broken Links"
|
442 |
msgstr "Fehlerhafte Links anschauen"
|
443 |
|
444 |
-
#: core/core.php:
|
445 |
msgid "Feedback"
|
446 |
msgstr "Feedback"
|
447 |
|
448 |
# @ default
|
449 |
-
#: core/core.php:
|
450 |
msgid "Go to Settings"
|
451 |
msgstr "Gehe zu Einstellungen"
|
452 |
|
453 |
# @ broken-link-checker
|
454 |
-
#: core/core.php:
|
455 |
msgid "Go to Broken Links"
|
456 |
msgstr "Gehe zu fehlerhaften Links"
|
457 |
|
458 |
# @ default
|
459 |
-
#: core/core.php:
|
460 |
msgid "Settings"
|
461 |
msgstr "Einstellungen"
|
462 |
|
463 |
# @ broken-link-checker
|
464 |
-
#: core/core.php:
|
465 |
-
#: core/core.php:
|
466 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
467 |
msgstr "Error: Die Datenbanktabellen des Plugins sind nicht mehr aktuell! (Vorhandene Version: %d, neue Version: %d)"
|
468 |
|
469 |
# @ broken-link-checker
|
470 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
471 |
msgid "Settings saved."
|
472 |
msgstr "Einstellungen gespeichert."
|
473 |
|
474 |
-
#: core/core.php:
|
475 |
msgid "Thank you for your donation!"
|
476 |
msgstr "Besten Dank für Ihre Spende!"
|
477 |
|
478 |
# @ broken-link-checker
|
479 |
-
#: core/core.php:
|
480 |
msgid "Complete site recheck started."
|
481 |
msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
|
482 |
|
483 |
# @ broken-link-checker
|
484 |
-
#: core/core.php:
|
485 |
-
#: core/core.php:2768
|
486 |
msgid "Details"
|
487 |
msgstr "Details"
|
488 |
|
489 |
# @ broken-link-checker
|
490 |
-
#: core/core.php:
|
491 |
msgid "General"
|
492 |
msgstr "Allgemein"
|
493 |
|
494 |
# @ broken-link-checker
|
495 |
-
#: core/core.php:
|
496 |
msgid "Look For Links In"
|
497 |
msgstr "Suchen Sie nach Links in"
|
498 |
|
499 |
# @ broken-link-checker
|
500 |
-
#: core/core.php:
|
501 |
msgid "Which Links To Check"
|
502 |
msgstr "Welche Links überprüfen"
|
503 |
|
504 |
# @ broken-link-checker
|
505 |
-
#: core/core.php:
|
506 |
msgid "Protocols & APIs"
|
507 |
msgstr "Protokoll & Schnittstellen"
|
508 |
|
509 |
# @ broken-link-checker
|
510 |
-
#: core/core.php:
|
511 |
msgid "Advanced"
|
512 |
msgstr "Erweitert"
|
513 |
|
514 |
# @ broken-link-checker
|
515 |
-
#: core/core.php:
|
516 |
msgid "Broken Link Checker Options"
|
517 |
msgstr "Broken Link Checker Optionen"
|
518 |
|
519 |
# @ broken-link-checker
|
520 |
-
#: core/core.php:
|
521 |
#: includes/admin/table-printer.php:168
|
522 |
msgid "Status"
|
523 |
msgstr "Status"
|
524 |
|
525 |
# @ broken-link-checker
|
526 |
-
#: core/core.php:
|
527 |
#: includes/admin/options-page-js.php:56
|
528 |
msgid "Show debug info"
|
529 |
msgstr "Debug Infos anzeigen"
|
530 |
|
531 |
# @ broken-link-checker
|
532 |
-
#: core/core.php:
|
533 |
msgid "Check each link"
|
534 |
msgstr "Überprüfe jeden Link"
|
535 |
|
536 |
# @ broken-link-checker
|
537 |
-
#: core/core.php:
|
538 |
msgid "Every %s hours"
|
539 |
msgstr "Alle %s Stunden"
|
540 |
|
541 |
# @ broken-link-checker
|
542 |
-
#: core/core.php:
|
543 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
544 |
msgstr "Vorhandene Links werden nach Ablauf der Zeit automatisch kontrolliert. Neue Links werden sofort geprüft."
|
545 |
|
546 |
# @ broken-link-checker
|
547 |
-
#: core/core.php:
|
548 |
msgid "E-mail notifications"
|
549 |
msgstr "Email Benachrichtigungen"
|
550 |
|
551 |
# @ broken-link-checker
|
552 |
-
#: core/core.php:
|
553 |
msgid "Send me e-mail notifications about newly detected broken links"
|
554 |
msgstr "Senden Sie mir eine Email Benachrichtigung, wenn neue fehlerhafte Links erkannt werden"
|
555 |
|
556 |
# @ broken-link-checker
|
557 |
-
#: core/core.php:
|
558 |
msgid "Link tweaks"
|
559 |
msgstr "Link Einstellungen"
|
560 |
|
561 |
# @ broken-link-checker
|
562 |
-
#: core/core.php:
|
563 |
msgid "Apply custom formatting to broken links"
|
564 |
msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
|
565 |
|
566 |
# @ broken-link-checker
|
567 |
-
#: core/core.php:
|
568 |
-
#: core/core.php:
|
569 |
msgid "Edit CSS"
|
570 |
msgstr "Bearbeite CSS"
|
571 |
|
572 |
# @ broken-link-checker
|
573 |
-
#: core/core.php:
|
574 |
msgid "Apply custom formatting to removed links"
|
575 |
msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
|
576 |
|
577 |
# @ broken-link-checker
|
578 |
-
#: core/core.php:
|
579 |
msgid "Stop search engines from following broken links"
|
580 |
msgstr "Stoppe Suchmaschinen aus folgenden fehlerhaften Links"
|
581 |
|
582 |
# @ broken-link-checker
|
583 |
-
#: core/core.php:
|
584 |
msgid "Look for links in"
|
585 |
msgstr "Suchen Sie nach Links in"
|
586 |
|
587 |
# @ broken-link-checker
|
588 |
-
#: core/core.php:
|
589 |
msgid "Post statuses"
|
590 |
msgstr "Beitrag Status"
|
591 |
|
592 |
# @ broken-link-checker
|
593 |
-
#: core/core.php:
|
594 |
msgid "Link types"
|
595 |
msgstr "Link Typen"
|
596 |
|
597 |
# @ broken-link-checker
|
598 |
-
#: core/core.php:
|
599 |
msgid "Error : All link parsers missing!"
|
600 |
msgstr "Fehler: Alle Link-Parser fehlen!"
|
601 |
|
602 |
# @ broken-link-checker
|
603 |
-
#: core/core.php:
|
604 |
msgid "Exclusion list"
|
605 |
msgstr "Ausschlussliste"
|
606 |
|
607 |
# @ broken-link-checker
|
608 |
-
#: core/core.php:
|
609 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
610 |
msgstr "URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
|
611 |
|
612 |
# @ broken-link-checker
|
613 |
-
#: core/core.php:
|
614 |
msgid "Check links using"
|
615 |
msgstr "Überprüfe Links"
|
616 |
|
617 |
# @ broken-link-checker
|
618 |
-
#: core/core.php:
|
619 |
#: includes/links.php:849
|
620 |
msgid "Timeout"
|
621 |
msgstr "Zeitüberschreitung"
|
622 |
|
623 |
# @ broken-link-checker
|
624 |
# @ default
|
625 |
-
#: core/core.php:
|
626 |
-
#: core/core.php:
|
627 |
-
#: core/core.php:
|
628 |
msgid "%s seconds"
|
629 |
msgstr "%s Sekunden"
|
630 |
|
631 |
# @ broken-link-checker
|
632 |
-
#: core/core.php:
|
633 |
msgid "Links that take longer than this to load will be marked as broken."
|
634 |
msgstr "Links die länger zum laden brauchen als hier eingetragen, gelten als fehlerhaft."
|
635 |
|
636 |
# @ broken-link-checker
|
637 |
-
#: core/core.php:
|
638 |
msgid "Link monitor"
|
639 |
msgstr "Link Monitor"
|
640 |
|
641 |
# @ broken-link-checker
|
642 |
-
#: core/core.php:
|
643 |
msgid "Run continuously while the Dashboard is open"
|
644 |
msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
|
645 |
|
646 |
# @ broken-link-checker
|
647 |
-
#: core/core.php:
|
648 |
msgid "Run hourly in the background"
|
649 |
msgstr "Stündlich im Hintergrund arbeiten"
|
650 |
|
651 |
# @ broken-link-checker
|
652 |
-
#: core/core.php:
|
653 |
msgid "Max. execution time"
|
654 |
msgstr "Max. Ausführungszeit"
|
655 |
|
656 |
# @ broken-link-checker
|
657 |
-
#: core/core.php:
|
658 |
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."
|
659 |
msgstr "Das Plugin arbeitet in regelmässigen Abständen im Hintergrund. Ihre Beiträge werden auf Links analysiert, entdeckte URLs geprüft und andere zeitaufwendige Aufgaben ausführt. Hier können Sie einstellen, wie lange die Instanzen laufen sollen, bevor sie gestoppt werden."
|
660 |
|
661 |
# @ broken-link-checker
|
662 |
-
#: core/core.php:
|
663 |
-
msgid "Custom temporary directory"
|
664 |
-
msgstr "Temporäres Verzeichnis"
|
665 |
-
|
666 |
-
# @ broken-link-checker
|
667 |
-
#: core/core.php:969
|
668 |
-
msgid "Error : This directory isn't writable by PHP."
|
669 |
-
msgstr "Fehler: Dieses Verzeichnis ist nicht beschreibbar durch PHP."
|
670 |
-
|
671 |
-
# @ broken-link-checker
|
672 |
-
#: core/core.php:974
|
673 |
-
msgid "Error : This directory doesn't exist."
|
674 |
-
msgstr "Fehler: Dieses Verzeichnis existiert nicht."
|
675 |
-
|
676 |
-
# @ broken-link-checker
|
677 |
-
#: core/core.php:982
|
678 |
-
msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
|
679 |
-
msgstr "Verzeichnis in das Feld eingeben, wenn das Plugin ein benutzerdefiniertes Verzeichnis für die Lock-Dateien verwenden soll. Ansonsten nichts eintragen."
|
680 |
-
|
681 |
-
# @ broken-link-checker
|
682 |
-
#: core/core.php:989
|
683 |
msgid "Server load limit"
|
684 |
msgstr "Server Belastungsgrenze"
|
685 |
|
686 |
-
#: core/core.php:
|
687 |
msgid "Current load : %s"
|
688 |
msgstr "Aktuelle Belastung: %s"
|
689 |
|
690 |
# @ broken-link-checker
|
691 |
-
#: core/core.php:
|
692 |
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."
|
693 |
msgstr "Die Link Überprüfung wird ausgesetzt, wenn die durchschnittliche <a href=\"%s\">Belastung des Servers</a> über diese Zahl ansteigt. Lassen Sie dieses Feld leer, um das Ladelimit zu deaktivieren."
|
694 |
|
695 |
# @ broken-link-checker
|
696 |
-
#: core/core.php:
|
697 |
msgid "Not available"
|
698 |
msgstr "Nicht verfügbar"
|
699 |
|
700 |
# @ broken-link-checker
|
701 |
-
#: core/core.php:
|
702 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
703 |
msgstr "Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</code> vorhanden und zugänglich ist."
|
704 |
|
705 |
# @ broken-link-checker
|
706 |
-
#: core/core.php:
|
707 |
msgid "Forced recheck"
|
708 |
msgstr "Erneute Überprüfung erzwingen"
|
709 |
|
710 |
# @ broken-link-checker
|
711 |
-
#: core/core.php:
|
712 |
msgid "Re-check all pages"
|
713 |
msgstr "Überprüfe alle Seiten noch einmal"
|
714 |
|
715 |
# @ broken-link-checker
|
716 |
-
#: core/core.php:
|
717 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
718 |
msgstr "Die \"Nuklear Option\". Klicken Sie auf diese Schaltfläche, um die Link-Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
|
719 |
|
720 |
# @ default
|
721 |
-
#: core/core.php:
|
722 |
msgid "Save Changes"
|
723 |
msgstr "Änderungen speichern"
|
724 |
|
725 |
# @ broken-link-checker
|
726 |
-
#: core/core.php:
|
727 |
msgid "Configure"
|
728 |
msgstr "Konfigurieren"
|
729 |
|
730 |
# @ broken-link-checker
|
731 |
-
#: core/core.php:
|
732 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
733 |
msgstr "Überprüfe folgende URLs (eine URL pro Zeile):"
|
734 |
|
735 |
# @ broken-link-checker
|
736 |
-
#: core/core.php:
|
737 |
-
#: core/core.php:
|
738 |
-
#: core/core.php:
|
739 |
msgid "Database error : %s"
|
740 |
msgstr "Datenbank Fehler: %s"
|
741 |
|
742 |
# @ broken-link-checker
|
743 |
-
#: core/core.php:
|
744 |
msgid "You must enter a filter name!"
|
745 |
msgstr "Sie müssen einen Filter Namen eingeben!"
|
746 |
|
747 |
# @ broken-link-checker
|
748 |
-
#: core/core.php:
|
749 |
msgid "Invalid search query."
|
750 |
msgstr "Ungültige Suchanfrage."
|
751 |
|
752 |
# @ broken-link-checker
|
753 |
-
#: core/core.php:
|
754 |
msgid "Filter \"%s\" created"
|
755 |
msgstr "Filter \"%s\" erstellt"
|
756 |
|
757 |
# @ broken-link-checker
|
758 |
-
#: core/core.php:
|
759 |
msgid "Filter ID not specified."
|
760 |
msgstr "Link ID nicht spezifiziert."
|
761 |
|
762 |
# @ broken-link-checker
|
763 |
-
#: core/core.php:
|
764 |
msgid "Filter deleted"
|
765 |
msgstr "Filter gelöscht"
|
766 |
|
767 |
# @ broken-link-checker
|
768 |
-
#: core/core.php:
|
769 |
msgid "Replaced %d redirect with a direct link"
|
770 |
msgid_plural "Replaced %d redirects with direct links"
|
771 |
msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
|
772 |
msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
|
773 |
|
774 |
# @ broken-link-checker
|
775 |
-
#: core/core.php:
|
776 |
msgid "Failed to fix %d redirect"
|
777 |
msgid_plural "Failed to fix %d redirects"
|
778 |
msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
|
779 |
msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
|
780 |
|
781 |
# @ broken-link-checker
|
782 |
-
#: core/core.php:
|
783 |
msgid "None of the selected links are redirects!"
|
784 |
msgstr "Keiner der ausgewählten Links sind Umleitungen!"
|
785 |
|
786 |
# @ broken-link-checker
|
787 |
-
#: core/core.php:
|
788 |
msgid "%d link updated."
|
789 |
msgid_plural "%d links updated."
|
790 |
msgstr[0] "Link %d aktualisiert."
|
791 |
msgstr[1] "Links %d aktualisiert."
|
792 |
|
793 |
# @ broken-link-checker
|
794 |
-
#: core/core.php:
|
795 |
msgid "Failed to update %d link."
|
796 |
msgid_plural "Failed to update %d links."
|
797 |
msgstr[0] "Link %d konnte nicht aktualisiert werden."
|
798 |
msgstr[1] "Links %d konnten nicht aktualisiert werden."
|
799 |
|
800 |
# @ broken-link-checker
|
801 |
-
#: core/core.php:
|
802 |
msgid "%d link removed"
|
803 |
msgid_plural "%d links removed"
|
804 |
msgstr[0] "%d Link entfernt"
|
805 |
msgstr[1] "%d Links entfernt"
|
806 |
|
807 |
# @ broken-link-checker
|
808 |
-
#: core/core.php:
|
809 |
msgid "Failed to remove %d link"
|
810 |
msgid_plural "Failed to remove %d links"
|
811 |
msgstr[0] "Link %d konnte nicht entfernt werden"
|
812 |
msgstr[1] "Links %d konnten nicht entfernt werden"
|
813 |
|
814 |
# @ default
|
815 |
-
#: core/core.php:
|
816 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
817 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
818 |
msgstr[0] "%d Das Element wurde übersprungen, weil es nicht in den Papierkorb verschoben werden kann. Löschen Sie es manuell."
|
819 |
msgstr[1] "%d Die Elemente wurde übersprungen, weil sie nicht in den Papierkorb verschoben werden können. Löschen Sie diese manuell."
|
820 |
|
821 |
# @ broken-link-checker
|
822 |
-
#: core/core.php:
|
823 |
msgid "Didn't find anything to delete!"
|
824 |
msgstr "Nichts gefunden um zu löschen!"
|
825 |
|
826 |
# @ broken-link-checker
|
827 |
-
#: core/core.php:
|
828 |
msgid "%d link scheduled for rechecking"
|
829 |
msgid_plural "%d links scheduled for rechecking"
|
830 |
msgstr[0] "%d Link zur erneuten Überprüfung geplant"
|
831 |
msgstr[1] "%d Links zur erneuten Überprüfung geplant"
|
832 |
|
833 |
# @ broken-link-checker
|
834 |
-
#: core/core.php:
|
835 |
-
#: core/core.php:
|
836 |
msgid "This link was manually marked as working by the user."
|
837 |
msgstr "Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
|
838 |
|
839 |
# @ broken-link-checker
|
840 |
-
#: core/core.php:
|
841 |
msgid "Couldn't modify link %d"
|
842 |
msgstr "Link %d konnte nicht geändert werden"
|
843 |
|
844 |
# @ broken-link-checker
|
845 |
-
#: core/core.php:
|
846 |
msgid "%d link marked as not broken"
|
847 |
msgid_plural "%d links marked as not broken"
|
848 |
msgstr[0] "%d Link als nicht fehlerhaft markiert"
|
849 |
msgstr[1] "%d Links als nicht fehlerhaft markiert"
|
850 |
|
851 |
# @ broken-link-checker
|
852 |
-
#: core/core.php:
|
853 |
msgid "Table columns"
|
854 |
msgstr "Tabellenspalten"
|
855 |
|
856 |
# @ default
|
857 |
-
#: core/core.php:
|
858 |
msgid "Show on screen"
|
859 |
msgstr "Auf dem Bildschirm anzeigen"
|
860 |
|
861 |
# @ broken-link-checker
|
862 |
-
#: core/core.php:
|
863 |
msgid "links"
|
864 |
msgstr "Links"
|
865 |
|
866 |
# @ default
|
867 |
# @ broken-link-checker
|
868 |
-
#: core/core.php:
|
869 |
#: includes/admin/table-printer.php:136
|
870 |
msgid "Apply"
|
871 |
msgstr "Anwenden"
|
872 |
|
873 |
# @ broken-link-checker
|
874 |
-
#: core/core.php:
|
875 |
msgid "Misc"
|
876 |
msgstr "Sonstige"
|
877 |
|
878 |
# @ broken-link-checker
|
879 |
-
#: core/core.php:
|
880 |
msgid "Highlight links broken for at least %s days"
|
881 |
msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
|
882 |
|
883 |
# @ broken-link-checker
|
884 |
-
#: core/core.php:
|
885 |
msgid "Color-code status codes"
|
886 |
msgstr "Farb-Code Status Codes"
|
887 |
|
888 |
# @ broken-link-checker
|
889 |
-
#: core/core.php:
|
890 |
-
#: core/core.php:
|
891 |
-
#: core/core.php:
|
892 |
-
#: core/core.php:
|
893 |
msgid "You're not allowed to do that!"
|
894 |
msgstr "Sie haben nicht die Erlaubnis das zu tun!"
|
895 |
|
896 |
# @ broken-link-checker
|
897 |
-
#: core/core.php:
|
898 |
msgid "View broken links"
|
899 |
msgstr "Fehlerhafte Links anschauen"
|
900 |
|
901 |
# @ broken-link-checker
|
902 |
-
#: core/core.php:
|
903 |
msgid "Found %d broken link"
|
904 |
msgid_plural "Found %d broken links"
|
905 |
msgstr[0] "%d fehlerhafte Links gefunden"
|
906 |
msgstr[1] "%d fehlerhafte Links gefunden"
|
907 |
|
908 |
# @ broken-link-checker
|
909 |
-
#: core/core.php:
|
910 |
msgid "No broken links found."
|
911 |
msgstr "Keine fehlerhaften Links gefunden."
|
912 |
|
913 |
# @ broken-link-checker
|
914 |
-
#: core/core.php:
|
915 |
msgid "%d URL in the work queue"
|
916 |
msgid_plural "%d URLs in the work queue"
|
917 |
msgstr[0] "%d URL in der Warteschlange"
|
918 |
msgstr[1] "%d URLs in der Warteschlange"
|
919 |
|
920 |
# @ broken-link-checker
|
921 |
-
#: core/core.php:
|
922 |
msgid "No URLs in the work queue."
|
923 |
msgstr "Keine URLs in der Warteschlange."
|
924 |
|
925 |
# @ broken-link-checker
|
926 |
-
#: core/core.php:
|
927 |
msgid "Detected %d unique URL"
|
928 |
msgid_plural "Detected %d unique URLs"
|
929 |
msgstr[0] "%d eindeutige URL gefunden"
|
930 |
msgstr[1] "%d eindeutige URLs gefunden"
|
931 |
|
932 |
# @ broken-link-checker
|
933 |
-
#: core/core.php:
|
934 |
msgid "in %d link"
|
935 |
msgid_plural "in %d links"
|
936 |
msgstr[0] "in %d Link"
|
937 |
msgstr[1] "in %d Links"
|
938 |
|
939 |
# @ broken-link-checker
|
940 |
-
#: core/core.php:
|
941 |
msgid "and still searching..."
|
942 |
msgstr "und sucht immer noch ..."
|
943 |
|
944 |
# @ broken-link-checker
|
945 |
-
#: core/core.php:
|
946 |
msgid "Searching your blog for links..."
|
947 |
msgstr "Durchsucht Ihr Blog nach Links ..."
|
948 |
|
949 |
# @ broken-link-checker
|
950 |
-
#: core/core.php:
|
951 |
msgid "No links detected."
|
952 |
msgstr "Keine Links gefunden."
|
953 |
|
954 |
# @ broken-link-checker
|
955 |
-
#: core/core.php:
|
956 |
msgctxt "current load"
|
957 |
msgid "Unknown"
|
958 |
msgstr "Unbekannt"
|
959 |
|
960 |
# @ broken-link-checker
|
961 |
-
#: core/core.php:
|
962 |
-
#: core/core.php:
|
963 |
-
#: core/core.php:
|
964 |
msgid "Oops, I can't find the link %d"
|
965 |
-
msgstr "
|
966 |
|
967 |
# @ broken-link-checker
|
968 |
-
#: core/core.php:
|
969 |
msgid "Oops, couldn't modify the link!"
|
970 |
-
msgstr "
|
971 |
|
972 |
# @ broken-link-checker
|
973 |
-
#: core/core.php:
|
974 |
-
#: core/core.php:
|
975 |
msgid "Error : link_id not specified"
|
976 |
-
msgstr "Fehler:
|
977 |
|
978 |
# @ broken-link-checker
|
979 |
-
#: core/core.php:
|
980 |
msgid "Oops, the new URL is invalid!"
|
981 |
-
msgstr "
|
982 |
|
983 |
# @ broken-link-checker
|
984 |
-
#: core/core.php:
|
985 |
-
#: core/core.php:
|
986 |
msgid "An unexpected error occured!"
|
987 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
988 |
|
989 |
# @ broken-link-checker
|
990 |
-
#: core/core.php:
|
991 |
msgid "Error : link_id or new_url not specified"
|
992 |
-
msgstr "Fehler:
|
993 |
|
994 |
# @ broken-link-checker
|
995 |
-
#: core/core.php:
|
996 |
msgid "You don't have sufficient privileges to access this information!"
|
997 |
msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
|
998 |
|
999 |
# @ broken-link-checker
|
1000 |
-
#: core/core.php:
|
1001 |
msgid "Error : link ID not specified"
|
1002 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
1003 |
|
1004 |
# @ broken-link-checker
|
1005 |
-
#: core/core.php:
|
1006 |
msgid "Failed to load link details (%s)"
|
1007 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
1008 |
|
1009 |
# @ broken-link-checker
|
1010 |
-
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.
|
1011 |
#. Plugin Name of the plugin/theme
|
1012 |
-
#: core/core.php:
|
1013 |
msgid "Broken Link Checker"
|
1014 |
msgstr "Broken Link Checker"
|
1015 |
|
1016 |
# @ broken-link-checker
|
1017 |
-
#: core/core.php:
|
1018 |
-
msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
|
1019 |
-
msgstr "Das aktuelle temporäre Verzeichnis ist nicht erreichbar; Bitte <a href=\"%s\">setzen Sie ein anderes Verzeichnis</a>."
|
1020 |
-
|
1021 |
-
# @ broken-link-checker
|
1022 |
-
#: core/core.php:2759
|
1023 |
-
msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
|
1024 |
-
msgstr "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
|
1025 |
-
|
1026 |
-
# @ broken-link-checker
|
1027 |
-
#: core/core.php:2766
|
1028 |
-
msgid "Broken Link Checker can't create a lockfile."
|
1029 |
-
msgstr "Broken Link Checker kann keine Lock-Dateien erstellen."
|
1030 |
-
|
1031 |
-
# @ broken-link-checker
|
1032 |
-
#: core/core.php:2771
|
1033 |
-
msgid "The plugin uses a file-based locking mechanism to ensure that only one instance of the resource-heavy link checking algorithm is running at any given time. Unfortunately, BLC can't find a writable directory where it could store the lockfile - it failed to detect the location of your server's temporary directory, and the plugin's own directory isn't writable by PHP. To fix this problem, please make the plugin's directory writable or enter a specify a custom temporary directory in the plugin's settings."
|
1034 |
-
msgstr "Das Plugin verwendet ein Datei-Locking-Mechanismus um sicherzustellen, dass nur eine Instanz der Quellen Algorithmus Prüfung zu einem bestimmten Zeitpunkt läuft. Leider kann BLC kein beschreibbares Verzeichnis finden, in dem es die Lock-Datei speichern könnte - der Standort des temporären Verzeichnis Ihres Servers wurde nicht gefunden und das eigene Verzeichnis des Plugins ist nicht mit PHP beschreibbar. Um dieses Problem zu beheben, änderen Sie das Plugin-Verzeichnis auf schreibbar oder geben ein benutzerdefiniertes temporäres Verzeichnis in den Einstellungen des Plugins ein."
|
1035 |
-
|
1036 |
-
# @ broken-link-checker
|
1037 |
-
#: core/core.php:2790
|
1038 |
msgid "PHP version"
|
1039 |
msgstr "PHP Version"
|
1040 |
|
1041 |
# @ broken-link-checker
|
1042 |
-
#: core/core.php:
|
1043 |
msgid "MySQL version"
|
1044 |
msgstr "MySQL Version"
|
1045 |
|
1046 |
# @ broken-link-checker
|
1047 |
-
#: core/core.php:
|
1048 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
1049 |
msgstr "Sie haben eine veraltete Version von CURL. Erkennung von Umleitungen funktioniert eventuell nicht."
|
1050 |
|
1051 |
# @ broken-link-checker
|
1052 |
-
#: core/core.php:
|
1053 |
-
#: core/core.php:
|
1054 |
-
#: core/core.php:
|
1055 |
msgid "Not installed"
|
1056 |
msgstr "Nicht installiert"
|
1057 |
|
1058 |
# @ broken-link-checker
|
1059 |
-
#: core/core.php:
|
1060 |
msgid "CURL version"
|
1061 |
msgstr "CURL Version"
|
1062 |
|
1063 |
# @ broken-link-checker
|
1064 |
-
#: core/core.php:
|
1065 |
msgid "Installed"
|
1066 |
msgstr "Installiert"
|
1067 |
|
1068 |
# @ broken-link-checker
|
1069 |
-
#: core/core.php:
|
1070 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
1071 |
msgstr "Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin funktioniert!"
|
1072 |
|
1073 |
# @ broken-link-checker
|
1074 |
-
#: core/core.php:
|
1075 |
msgid "On"
|
1076 |
msgstr "An"
|
1077 |
|
1078 |
# @ broken-link-checker
|
1079 |
-
#: core/core.php:
|
1080 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
1081 |
msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode aktiviert ist."
|
1082 |
|
1083 |
# @ broken-link-checker
|
1084 |
-
#: core/core.php:
|
1085 |
-
#: core/core.php:
|
1086 |
msgid "Off"
|
1087 |
msgstr "Aus"
|
1088 |
|
1089 |
# @ broken-link-checker
|
1090 |
-
#: core/core.php:
|
1091 |
msgid "On ( %s )"
|
1092 |
msgstr "An (%s)"
|
1093 |
|
1094 |
# @ broken-link-checker
|
1095 |
-
#: core/core.php:
|
1096 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
1097 |
msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls open_basedir aktiviert ist."
|
1098 |
|
1099 |
# @ broken-link-checker
|
1100 |
-
#: core/core.php:
|
1101 |
-
msgid "Can't create a lockfile. Please specify a custom temporary directory."
|
1102 |
-
msgstr "Lock-Datei kann nicht erstellt werden. Bitte bestimmen Sie ein benutzerdefiniertes temporäres Verzeichnis."
|
1103 |
-
|
1104 |
-
# @ broken-link-checker
|
1105 |
-
#: core/core.php:2912
|
1106 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
1107 |
msgstr "Wenn dieser Wert nach mehreren geladenen Seiten Null ist, ist wahrscheinlich ein Fehler aufgetreten."
|
1108 |
|
1109 |
# @ broken-link-checker
|
1110 |
-
#: core/core.php:
|
1111 |
msgid "[%s] Broken links detected"
|
1112 |
msgstr "[%s] Fehlerhafte Links entdeckt"
|
1113 |
|
1114 |
# @ broken-link-checker
|
1115 |
-
#: core/core.php:
|
1116 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
1117 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
1118 |
msgstr[0] "Broken Link Checker hat %d fehlerhaften Link auf Ihrer Webseite entdeckt."
|
1119 |
msgstr[1] "Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
|
1120 |
|
1121 |
# @ broken-link-checker
|
1122 |
-
#: core/core.php:
|
1123 |
msgid "Here's a list of the first %d broken links:"
|
1124 |
msgid_plural "Here's a list of the first %d broken links:"
|
1125 |
msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
1126 |
msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
1127 |
|
1128 |
# @ broken-link-checker
|
1129 |
-
#: core/core.php:
|
1130 |
msgid "Here's a list of the new broken links: "
|
1131 |
msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
|
1132 |
|
1133 |
# @ broken-link-checker
|
1134 |
-
#: core/core.php:
|
1135 |
msgid "Link text : %s"
|
1136 |
msgstr "Linktext: %s"
|
1137 |
|
1138 |
# @ broken-link-checker
|
1139 |
-
#: core/core.php:
|
1140 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
1141 |
msgstr "Link URL: <a href=\"%s\">%s</a>"
|
1142 |
|
1143 |
# @ broken-link-checker
|
1144 |
-
#: core/core.php:
|
1145 |
msgid "Source : %s"
|
1146 |
msgstr "Quelle: %s"
|
1147 |
|
1148 |
# @ brokenk-link-checker
|
1149 |
-
#: core/core.php:
|
1150 |
msgid "You can see all broken links here:"
|
1151 |
msgstr "Hier sehen Sie alle fehlerhaften Links:"
|
1152 |
|
1153 |
# @ broken-link-checker
|
1154 |
-
#: includes/
|
1155 |
-
|
1156 |
-
|
1157 |
-
msgstr "
|
|
|
1158 |
|
1159 |
# @ broken-link-checker
|
1160 |
-
#: includes/
|
1161 |
-
#: includes/
|
1162 |
-
msgid "
|
1163 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1164 |
|
1165 |
# @ broken-link-checker
|
1166 |
-
#: includes/
|
1167 |
-
msgid "
|
1168 |
-
msgstr "
|
1169 |
|
1170 |
# @ broken-link-checker
|
1171 |
-
#: includes/
|
1172 |
-
msgid "
|
1173 |
-
msgstr "
|
1174 |
|
1175 |
# @ broken-link-checker
|
1176 |
-
#: includes/
|
1177 |
-
msgid "The
|
1178 |
-
msgstr "
|
1179 |
|
1180 |
# @ broken-link-checker
|
1181 |
-
#: includes/
|
1182 |
-
|
1183 |
-
|
1184 |
-
msgstr "Folgende Fehler sind aufgetreten:"
|
1185 |
|
1186 |
# @ broken-link-checker
|
1187 |
-
#: includes/
|
1188 |
-
msgid "
|
1189 |
-
msgstr "
|
1190 |
|
1191 |
# @ broken-link-checker
|
1192 |
-
#: includes/
|
1193 |
-
msgid "
|
1194 |
-
msgstr "
|
1195 |
|
1196 |
# @ broken-link-checker
|
1197 |
-
#: includes/
|
1198 |
-
|
1199 |
-
|
|
|
|
|
1200 |
|
1201 |
# @ broken-link-checker
|
1202 |
-
#: includes/
|
1203 |
-
|
1204 |
-
|
1205 |
-
msgid "Unlink"
|
1206 |
-
msgstr "Link aufheben"
|
1207 |
|
1208 |
# @ broken-link-checker
|
1209 |
-
#: includes/
|
1210 |
-
msgid "
|
1211 |
-
msgstr "
|
1212 |
|
1213 |
# @ broken-link-checker
|
1214 |
-
#: includes/
|
1215 |
-
msgid ""
|
1216 |
-
"
|
1217 |
-
"'Cancel' to stop, 'OK' to delete"
|
1218 |
-
msgstr ""
|
1219 |
-
"Möchten Sie den aktuellen Filter löschen '%s'\n"
|
1220 |
-
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
1221 |
|
1222 |
# @ broken-link-checker
|
1223 |
-
#: includes/
|
1224 |
-
|
1225 |
-
"
|
1226 |
-
"
|
1227 |
-
msgstr ""
|
1228 |
-
"Sind Sie sicher, dass Sie alle Beiträge, Lesezeichen oder andere Elemente die in den ausgewählten Links enthalten sind, löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n"
|
1229 |
-
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
1230 |
|
1231 |
# @ broken-link-checker
|
1232 |
-
#: includes/
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
msgstr ""
|
1237 |
-
"Sind Sie sicher, dass Sie die ausgewählten Links entfernen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n"
|
1238 |
-
" 'Abbrechen' um abzubrechen, 'OK' um zu entfernen."
|
1239 |
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
|
|
1243 |
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1247 |
|
1248 |
# @ broken-link-checker
|
1249 |
#: includes/admin/search-form.php:16
|
@@ -1312,35 +1349,118 @@ msgstr "Suche Links"
|
|
1312 |
msgid "Cancel"
|
1313 |
msgstr "Abbrechen"
|
1314 |
|
1315 |
-
#: includes/admin/sidebar.php:2
|
1316 |
-
msgid "Donate $10, $20 or $50!"
|
1317 |
-
msgstr "Spenden Sie $10, $20 oder $50!"
|
1318 |
-
|
1319 |
-
#: includes/admin/sidebar.php:5
|
1320 |
-
msgid "If you like this plugin, please donate to support development and maintenance!"
|
1321 |
-
msgstr "Mögen Sie dieses Plugin, dann helfen Sie uns mit einer Spende für die Entwicklung und Wartung."
|
1322 |
-
|
1323 |
-
#: includes/admin/sidebar.php:22
|
1324 |
-
msgid "Return to WordPress Dashboard"
|
1325 |
-
msgstr "Zurück zum Wordpress Dashboard"
|
1326 |
-
|
1327 |
# @ broken-link-checker
|
1328 |
-
#: includes/admin/
|
1329 |
-
|
1330 |
-
|
|
|
1331 |
|
1332 |
# @ broken-link-checker
|
1333 |
-
#: includes/admin/
|
1334 |
-
|
1335 |
-
|
|
|
1336 |
|
1337 |
# @ broken-link-checker
|
1338 |
-
#: includes/admin/
|
1339 |
-
msgid "
|
1340 |
-
msgstr "
|
1341 |
|
1342 |
# @ broken-link-checker
|
1343 |
-
#: includes/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1344 |
msgid "Detailed View"
|
1345 |
msgstr "Detailansicht"
|
1346 |
|
@@ -1535,211 +1655,6 @@ msgstr "Update URL"
|
|
1535 |
msgid "[An orphaned link! This is a bug.]"
|
1536 |
msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
|
1537 |
|
1538 |
-
# @ broken-link-checker
|
1539 |
-
#: includes/admin/db-upgrade.php:95
|
1540 |
-
msgid "Failed to delete old DB tables. Database error : %s"
|
1541 |
-
msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
|
1542 |
-
|
1543 |
-
# @ broken-link-checker
|
1544 |
-
#: includes/parsers.php:109
|
1545 |
-
msgid "Editing is not implemented in the '%s' parser"
|
1546 |
-
msgstr "Editieren ist nicht im '%s' Parser implementiert"
|
1547 |
-
|
1548 |
-
# @ broken-link-checker
|
1549 |
-
#: includes/parsers.php:124
|
1550 |
-
msgid "Unlinking is not implemented in the '%s' parser"
|
1551 |
-
msgstr "Aufheben der Verknüpfung ist nicht im '%s' Parser implementiert"
|
1552 |
-
|
1553 |
-
# @ broken-link-checker
|
1554 |
-
#: includes/link-query.php:25
|
1555 |
-
msgid "Broken"
|
1556 |
-
msgstr "Fehlerhaft"
|
1557 |
-
|
1558 |
-
# @ broken-link-checker
|
1559 |
-
#: includes/link-query.php:27
|
1560 |
-
msgid "No broken links found"
|
1561 |
-
msgstr "Keine fehlerhaften Links gefunden"
|
1562 |
-
|
1563 |
-
# @ broken-link-checker
|
1564 |
-
#: includes/link-query.php:34
|
1565 |
-
msgid "Redirects"
|
1566 |
-
msgstr "Umleitungen"
|
1567 |
-
|
1568 |
-
# @ broken-link-checker
|
1569 |
-
#: includes/link-query.php:35
|
1570 |
-
msgid "Redirected Links"
|
1571 |
-
msgstr "Umgeleitete Links"
|
1572 |
-
|
1573 |
-
# @ broken-link-checker
|
1574 |
-
#: includes/link-query.php:36
|
1575 |
-
msgid "No redirects found"
|
1576 |
-
msgstr "Keine umgeleiteten Links gefunden"
|
1577 |
-
|
1578 |
-
# @ broken-link-checker
|
1579 |
-
#: includes/link-query.php:44
|
1580 |
-
msgid "All"
|
1581 |
-
msgstr "Alle"
|
1582 |
-
|
1583 |
-
# @ broken-link-checker
|
1584 |
-
#: includes/link-query.php:45
|
1585 |
-
msgid "Detected Links"
|
1586 |
-
msgstr "Gefundene Links"
|
1587 |
-
|
1588 |
-
# @ broken-link-checker
|
1589 |
-
#: includes/link-query.php:46
|
1590 |
-
msgid "No links found (yet)"
|
1591 |
-
msgstr "(Noch) keine Links gefunden"
|
1592 |
-
|
1593 |
-
# @ broken-link-checker
|
1594 |
-
#: includes/link-query.php:54
|
1595 |
-
msgid "Search Results"
|
1596 |
-
msgstr "Such Resultat"
|
1597 |
-
|
1598 |
-
# @ broken-link-checker
|
1599 |
-
#: includes/link-query.php:55
|
1600 |
-
#: includes/link-query.php:106
|
1601 |
-
msgid "No links found for your query"
|
1602 |
-
msgstr "Keine Links für Deine Anfrage gefunden"
|
1603 |
-
|
1604 |
-
# @ default
|
1605 |
-
#: includes/any-post.php:427
|
1606 |
-
msgid "Preview “%s”"
|
1607 |
-
msgstr "Vorschau “%s”"
|
1608 |
-
|
1609 |
-
# @ default
|
1610 |
-
#: includes/any-post.php:428
|
1611 |
-
msgid "Preview"
|
1612 |
-
msgstr "Vorschau"
|
1613 |
-
|
1614 |
-
# @ default
|
1615 |
-
#: includes/any-post.php:435
|
1616 |
-
msgid "View “%s”"
|
1617 |
-
msgstr "Ansehen “%s”"
|
1618 |
-
|
1619 |
-
# @ broken-link-checker
|
1620 |
-
#: includes/any-post.php:529
|
1621 |
-
msgid "Updating post %d failed"
|
1622 |
-
msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
|
1623 |
-
|
1624 |
-
# @ broken-link-checker
|
1625 |
-
#: includes/any-post.php:711
|
1626 |
-
msgid "%d post deleted."
|
1627 |
-
msgid_plural "%d posts deleted."
|
1628 |
-
msgstr[0] "%d Artikel gelöscht."
|
1629 |
-
msgstr[1] "%d Artikel gelöscht."
|
1630 |
-
|
1631 |
-
# @ broken-link-checker
|
1632 |
-
#: includes/any-post.php:713
|
1633 |
-
msgid "%d page deleted."
|
1634 |
-
msgid_plural "%d pages deleted."
|
1635 |
-
msgstr[0] "%d Seite gelöscht."
|
1636 |
-
msgstr[1] "%d Seiten gelöscht."
|
1637 |
-
|
1638 |
-
# @ broken-link-checker
|
1639 |
-
#: includes/any-post.php:715
|
1640 |
-
msgid "%d \"%s\" deleted."
|
1641 |
-
msgid_plural "%d \"%s\" deleted."
|
1642 |
-
msgstr[0] "%d \"%s\" gelöscht."
|
1643 |
-
msgstr[1] "%d \"%s\" gelöscht."
|
1644 |
-
|
1645 |
-
# @ broken-link-checker
|
1646 |
-
#: includes/any-post.php:734
|
1647 |
-
msgid "%d post moved to the Trash."
|
1648 |
-
msgid_plural "%d posts moved to the Trash."
|
1649 |
-
msgstr[0] "%d Artikel in den Papierkorb verschoben."
|
1650 |
-
msgstr[1] "%d Artikel in den Papierkorb verschoben."
|
1651 |
-
|
1652 |
-
# @ broken-link-checker
|
1653 |
-
#: includes/any-post.php:736
|
1654 |
-
msgid "%d page moved to the Trash."
|
1655 |
-
msgid_plural "%d pages moved to the Trash."
|
1656 |
-
msgstr[0] "%d Seite in den Papierkorb verschoben."
|
1657 |
-
msgstr[1] "%d Seiten in den Papierkorb verschoben."
|
1658 |
-
|
1659 |
-
# @ broken-link-checker
|
1660 |
-
#: includes/any-post.php:738
|
1661 |
-
msgid "%d \"%s\" moved to the Trash."
|
1662 |
-
msgid_plural "%d \"%s\" moved to the Trash."
|
1663 |
-
msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
|
1664 |
-
msgstr[1] "%d \"%s\" in den Papierkorb verschoben."
|
1665 |
-
|
1666 |
-
# @ broken-link-checker
|
1667 |
-
#: includes/containers.php:122
|
1668 |
-
msgid "%d '%s' has been deleted"
|
1669 |
-
msgid_plural "%d '%s' have been deleted"
|
1670 |
-
msgstr[0] "%d '%s' wurde gelöscht"
|
1671 |
-
msgstr[1] "%d '%s' wurden gelöscht"
|
1672 |
-
|
1673 |
-
# @ broken-link-checker
|
1674 |
-
#: includes/containers.php:883
|
1675 |
-
#: includes/containers.php:901
|
1676 |
-
msgid "Container type '%s' not recognized"
|
1677 |
-
msgstr "Container Typ '%s' nicht erkannt"
|
1678 |
-
|
1679 |
-
# @ broken-link-checker
|
1680 |
-
#: includes/links.php:215
|
1681 |
-
msgid "The plugin script was terminated while trying to check the link."
|
1682 |
-
msgstr "Das Plugin-Skript wurde beim Versuch den Link zu überprüfen beendet."
|
1683 |
-
|
1684 |
-
# @ broken-link-checker
|
1685 |
-
#: includes/links.php:261
|
1686 |
-
msgid "The plugin doesn't know how to check this type of link."
|
1687 |
-
msgstr "Das Plugin weiss nicht genau, wie er diesen Link Typ überprüfen soll."
|
1688 |
-
|
1689 |
-
# @ broken-link-checker
|
1690 |
-
#: includes/links.php:349
|
1691 |
-
msgid "Link is valid."
|
1692 |
-
msgstr "Link ist valide."
|
1693 |
-
|
1694 |
-
# @ broken-link-checker
|
1695 |
-
#: includes/links.php:351
|
1696 |
-
msgid "Link is broken."
|
1697 |
-
msgstr "Link ist fehlerhaft."
|
1698 |
-
|
1699 |
-
# @ broken-link-checker
|
1700 |
-
#: includes/links.php:564
|
1701 |
-
#: includes/links.php:666
|
1702 |
-
#: includes/links.php:693
|
1703 |
-
msgid "Link is not valid"
|
1704 |
-
msgstr "Link ist nicht gültig"
|
1705 |
-
|
1706 |
-
# @ broken-link-checker
|
1707 |
-
#: includes/links.php:581
|
1708 |
-
msgid "This link can not be edited because it is not used anywhere on this site."
|
1709 |
-
msgstr "Dieser Link kann nicht bearbeitet werden, weil er nicht überall auf dieser Website verwendet wird."
|
1710 |
-
|
1711 |
-
# @ broken-link-checker
|
1712 |
-
#: includes/links.php:607
|
1713 |
-
msgid "Failed to create a DB entry for the new URL."
|
1714 |
-
msgstr "Das Erstellen eines Datenbankeintrages für die neue URL ist fehlgeschlagen."
|
1715 |
-
|
1716 |
-
# @ broken-link-checker
|
1717 |
-
#: includes/links.php:673
|
1718 |
-
msgid "This link is not a redirect"
|
1719 |
-
msgstr "Dieser Link ist keine Umleitung"
|
1720 |
-
|
1721 |
-
# @ broken-link-checker
|
1722 |
-
#: includes/links.php:720
|
1723 |
-
#: includes/links.php:757
|
1724 |
-
msgid "Couldn't delete the link's database record"
|
1725 |
-
msgstr "Links können nicht aus der Datenbank gelöscht werden"
|
1726 |
-
|
1727 |
-
# @ broken-link-checker
|
1728 |
-
#: includes/links.php:831
|
1729 |
-
msgctxt "link status"
|
1730 |
-
msgid "Unknown"
|
1731 |
-
msgstr "Unbekannt"
|
1732 |
-
|
1733 |
-
# @ broken-link-checker
|
1734 |
-
#: includes/links.php:869
|
1735 |
-
msgid "Not checked"
|
1736 |
-
msgstr "Nicht überprüft"
|
1737 |
-
|
1738 |
-
# @ broken-link-checker
|
1739 |
-
#: includes/links.php:872
|
1740 |
-
msgid "False positive"
|
1741 |
-
msgstr "Falsch positiv"
|
1742 |
-
|
1743 |
# @ broken-link-checker
|
1744 |
#: includes/extra-strings.php:2
|
1745 |
msgctxt "module name"
|
@@ -1836,75 +1751,56 @@ msgctxt "module name"
|
|
1836 |
msgid "Pages"
|
1837 |
msgstr "Seiten"
|
1838 |
|
1839 |
-
# @
|
1840 |
-
#: includes/
|
1841 |
-
msgid "
|
1842 |
-
|
1843 |
-
msgstr[0] "%s Sekunde"
|
1844 |
-
msgstr[1] "%s Sekunden"
|
1845 |
|
1846 |
-
# @
|
1847 |
-
#: includes/
|
1848 |
-
msgid "
|
1849 |
-
|
1850 |
-
msgstr[0] "%s Sekunde vergangen"
|
1851 |
-
msgstr[1] "%s Sekunden vergangen"
|
1852 |
|
1853 |
-
# @
|
1854 |
-
#: includes/
|
1855 |
-
msgid "
|
1856 |
-
|
1857 |
-
msgstr[0] "%d Minute"
|
1858 |
-
msgstr[1] "%d Minuten"
|
1859 |
|
1860 |
-
# @
|
1861 |
-
#: includes/
|
1862 |
-
msgid "
|
1863 |
-
|
1864 |
-
msgstr[0] "%d Minute vergangen"
|
1865 |
-
msgstr[1] "%d Minuten vergangen"
|
1866 |
|
1867 |
-
# @
|
1868 |
-
#: includes/
|
1869 |
-
msgid "
|
1870 |
-
|
1871 |
-
msgstr[0] "%d Stunde"
|
1872 |
-
msgstr[1] "%d Stunden"
|
1873 |
|
1874 |
-
# @
|
1875 |
-
#: includes/
|
1876 |
-
msgid "
|
1877 |
-
|
1878 |
-
msgstr[0] "%d Stunde vergangen"
|
1879 |
-
msgstr[1] "%d Stunden vergangen"
|
1880 |
|
1881 |
-
# @
|
1882 |
-
#: includes/
|
1883 |
-
msgid "
|
1884 |
-
|
1885 |
-
msgstr[0] "%d Tag"
|
1886 |
-
msgstr[1] "%d Tage"
|
1887 |
|
1888 |
-
# @
|
1889 |
-
#: includes/
|
1890 |
-
msgid "
|
1891 |
-
|
1892 |
-
msgstr[0] "%d Tag vergangen"
|
1893 |
-
msgstr[1] "%d Tage vergangen"
|
1894 |
|
1895 |
-
# @
|
1896 |
-
#: includes/
|
1897 |
-
msgid "
|
1898 |
-
|
1899 |
-
msgstr[0] "%d Monat"
|
1900 |
-
msgstr[1] "%d Monate"
|
1901 |
|
1902 |
-
# @
|
1903 |
-
#: includes/
|
1904 |
-
|
1905 |
-
|
1906 |
-
msgstr
|
1907 |
-
msgstr[1] "%d Monate vergangen"
|
1908 |
|
1909 |
# @ broken-link-checker
|
1910 |
#: includes/instances.php:102
|
@@ -1918,6 +1814,68 @@ msgstr "Container %s[%d] nicht gefunden"
|
|
1918 |
msgid "Parser '%s' not found."
|
1919 |
msgstr "Parser '%s' nicht gefunden."
|
1920 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1921 |
#. Plugin URI of the plugin/theme
|
1922 |
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1923 |
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Broken Link Checker | V1.3\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
5 |
+
"POT-Creation-Date: 2011-07-24 08:01:52+00:00\n"
|
6 |
+
"PO-Revision-Date: 2011-07-24 17:57+0100\n"
|
7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ broken-link-checker
|
22 |
+
#: modules/checkers/http.php:242
|
23 |
+
msgid "Server Not Found"
|
24 |
+
msgstr "Server nicht gefunden"
|
25 |
+
|
26 |
+
# @ broken-link-checker
|
27 |
+
#: modules/checkers/http.php:257
|
28 |
+
msgid "Connection Failed"
|
29 |
+
msgstr "Verbindung fehlgeschlagen"
|
30 |
+
|
31 |
+
# @ link status
|
32 |
+
# @ broken-link-checker
|
33 |
+
#: modules/checkers/http.php:263
|
34 |
+
#: modules/extras/mediafire.php:96
|
35 |
+
#: includes/links.php:845
|
36 |
+
msgid "Unknown Error"
|
37 |
+
msgstr "Unbekannter Fehler"
|
38 |
+
|
39 |
+
# @ broken-link-checker
|
40 |
+
#: modules/checkers/http.php:292
|
41 |
+
#: modules/checkers/http.php:362
|
42 |
+
msgid "HTTP code : %d"
|
43 |
+
msgstr "HTTP Code: %d"
|
44 |
+
|
45 |
+
# @ broken-link-checker
|
46 |
+
#: modules/checkers/http.php:294
|
47 |
+
#: modules/checkers/http.php:364
|
48 |
+
msgid "(No response)"
|
49 |
+
msgstr "(Keine Antwort)"
|
50 |
+
|
51 |
+
# @ broken-link-checker
|
52 |
+
#: modules/checkers/http.php:300
|
53 |
+
msgid "Most likely the connection timed out or the domain doesn't exist."
|
54 |
+
msgstr "Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
|
55 |
+
|
56 |
+
# @ broken-link-checker
|
57 |
+
#: modules/checkers/http.php:371
|
58 |
+
msgid "Request timed out."
|
59 |
+
msgstr "Erfordert Zeitlimit."
|
60 |
+
|
61 |
+
# @ broken-link-checker
|
62 |
+
#: modules/checkers/http.php:389
|
63 |
+
msgid "Using Snoopy"
|
64 |
+
msgstr "Benutzt Snoopy"
|
65 |
+
|
66 |
+
# @ broken-link-checker
|
67 |
+
#: modules/parsers/image.php:159
|
68 |
+
msgid "Image"
|
69 |
+
msgstr "Bild"
|
70 |
+
|
71 |
+
# @ broken-link-checker
|
72 |
+
#: modules/parsers/metadata.php:117
|
73 |
+
msgid "Custom field"
|
74 |
+
msgstr "Benutzerdefiniertes Feld"
|
75 |
|
76 |
# @ broken-link-checker
|
77 |
#: modules/containers/custom_field.php:84
|
96 |
|
97 |
# @ default
|
98 |
#: modules/containers/custom_field.php:197
|
|
|
99 |
#: modules/containers/comment.php:153
|
100 |
+
#: modules/containers/blogroll.php:46
|
101 |
#: includes/any-post.php:397
|
102 |
msgid "Edit"
|
103 |
msgstr "Bearbeiten"
|
158 |
msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
|
159 |
|
160 |
# @ broken-link-checker
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
#: modules/containers/comment.php:43
|
162 |
+
#: modules/containers/blogroll.php:83
|
163 |
#: includes/any-post.php:519
|
164 |
msgid "Nothing to update"
|
165 |
msgstr "Nichts zu aktualisieren"
|
166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
# @ broken-link-checker
|
168 |
#: modules/containers/comment.php:53
|
169 |
msgid "Updating comment %d failed"
|
226 |
msgstr[1] "%d Kommentare in den Papierkorb verschoben."
|
227 |
|
228 |
# @ broken-link-checker
|
229 |
+
#: modules/containers/blogroll.php:21
|
230 |
+
msgid "Bookmark"
|
231 |
+
msgstr "Lesezeichen"
|
232 |
|
233 |
# @ broken-link-checker
|
234 |
+
#: modules/containers/blogroll.php:27
|
235 |
+
#: modules/containers/blogroll.php:46
|
236 |
+
msgid "Edit this bookmark"
|
237 |
+
msgstr "Lesezeichen bearbeiten"
|
238 |
|
239 |
+
# @ default
|
240 |
+
#: modules/containers/blogroll.php:47
|
241 |
+
msgid ""
|
242 |
+
"You are about to delete this link '%s'\n"
|
243 |
+
" 'Cancel' to stop, 'OK' to delete."
|
244 |
+
msgstr ""
|
245 |
+
"Möchten Sie diesen Link löschen '%s'\n"
|
246 |
+
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
247 |
|
248 |
# @ broken-link-checker
|
249 |
+
#: modules/containers/blogroll.php:97
|
250 |
+
msgid "Updating bookmark %d failed"
|
251 |
+
msgstr "Lesezeichen Aktualisierung %d fehlgeschlagen"
|
|
|
252 |
|
253 |
# @ broken-link-checker
|
254 |
+
#: modules/containers/blogroll.php:128
|
255 |
+
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
256 |
+
msgstr "Löschen des Blogroll Link \"%s\" (%d) schlug fehl"
|
|
|
257 |
|
258 |
# @ broken-link-checker
|
259 |
+
#: modules/containers/blogroll.php:298
|
260 |
+
msgid "%d blogroll link deleted."
|
261 |
+
msgid_plural "%d blogroll links deleted."
|
262 |
+
msgstr[0] "%d Blogroll Link gelöscht."
|
263 |
+
msgstr[1] "%d Blogroll Links gelöscht."
|
264 |
|
265 |
# @ broken-link-checker
|
266 |
+
#: modules/containers/dummy.php:34
|
267 |
+
#: modules/containers/dummy.php:45
|
268 |
+
msgid "I don't know how to edit a '%s' [%d]."
|
269 |
+
msgstr "Das Bearbeiten von '%s' [%d] ist fehlgeschlagen."
|
270 |
|
271 |
# @ broken-link-checker
|
272 |
+
#: modules/extras/mediafire.php:91
|
273 |
+
#: modules/extras/megaupload.php:109
|
274 |
+
#: modules/extras/rapidshare.php:142
|
275 |
+
msgid "Not Found"
|
276 |
+
msgstr "Nicht gefunden"
|
277 |
|
278 |
# @ broken-link-checker
|
279 |
+
#: modules/extras/youtube-embed.php:22
|
280 |
+
msgid "YouTube Video"
|
281 |
+
msgstr "YouTube Video"
|
282 |
|
283 |
# @ broken-link-checker
|
284 |
+
#: modules/extras/youtube-embed.php:23
|
285 |
+
msgid "Embedded YouTube video"
|
286 |
+
msgstr "Eingebettete YouTube Videos"
|
287 |
+
|
288 |
+
#: modules/extras/embed-parser-base.php:140
|
289 |
+
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
290 |
+
msgstr "Eingebettete Videos können mit Broken Link Checker nicht editiert werden. Bitte ändern oder ersetzen Sie das betreffende Video manuell."
|
291 |
|
292 |
# @ broken-link-checker
|
293 |
#: modules/extras/dailymotion-embed.php:23
|
300 |
msgstr "Eingebettete DailyMotion Videos"
|
301 |
|
302 |
# @ broken-link-checker
|
303 |
+
#: modules/extras/vimeo-embed.php:24
|
304 |
+
msgid "Vimeo Video"
|
305 |
+
msgstr "Vimeo Video"
|
306 |
+
|
307 |
+
# @ broken-link-checker
|
308 |
+
#: modules/extras/vimeo-embed.php:25
|
309 |
+
msgid "Embedded Vimeo video"
|
310 |
+
msgstr "Eingebettete Vimeo Videos"
|
311 |
|
312 |
# @ broken-link-checker
|
313 |
+
#: modules/extras/megaupload.php:101
|
314 |
#: modules/extras/rapidshare.php:148
|
315 |
#: modules/extras/rapidshare.php:154
|
316 |
#: modules/extras/rapidshare.php:181
|
|
|
317 |
#: includes/links.php:875
|
318 |
msgctxt "link status"
|
319 |
msgid "OK"
|
320 |
msgstr "OK"
|
321 |
|
322 |
+
#: modules/extras/megaupload.php:116
|
323 |
+
msgid "File Temporarily Unavailable"
|
324 |
+
msgstr "Datei vorübergehend nicht erreichbar"
|
325 |
+
|
326 |
+
#: modules/extras/megaupload.php:122
|
327 |
+
msgid "API Error"
|
328 |
+
msgstr "API Fehler"
|
329 |
+
|
330 |
# @ broken-link-checker
|
331 |
#: modules/extras/rapidshare.php:161
|
332 |
msgid "RS Server Down"
|
351 |
msgid "RapidShare API error: %s"
|
352 |
msgstr "RapidShare API Fehler: %s"
|
353 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
# @ broken-link-checker
|
355 |
#: modules/extras/youtube.php:63
|
356 |
#: modules/extras/youtube.php:66
|
372 |
# @ broken-link-checker
|
373 |
#: modules/extras/youtube.php:95
|
374 |
#: modules/extras/youtube.php:122
|
|
|
375 |
msgid "OK"
|
376 |
msgstr "OK"
|
377 |
|
387 |
msgid "Unknown YouTube API response received."
|
388 |
msgstr "Unbekannte Antwort der YouTube API erhalten."
|
389 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
# @ default
|
391 |
+
#: core/init.php:230
|
392 |
msgid "Once Weekly"
|
393 |
msgstr "Einmal wöchentlich"
|
394 |
|
395 |
# @ default
|
396 |
+
#: core/init.php:236
|
397 |
msgid "Twice a Month"
|
398 |
msgstr "Zweimal im Monat"
|
399 |
|
400 |
# @ broken-link-checker
|
401 |
+
#: core/init.php:305
|
402 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
403 |
msgstr "Broken Link Checker Installation fehlgeschlagen. Deaktivieren Sie das Plugin und aktivieren es anschliessend wieder."
|
404 |
|
405 |
# @ broken-link-checker
|
406 |
+
#: core/core.php:146
|
407 |
#: includes/admin/links-page-js.php:37
|
408 |
msgid "Loading..."
|
409 |
msgstr "Wird geladen ..."
|
410 |
|
411 |
# @ broken-link-checker
|
412 |
+
#: core/core.php:170
|
413 |
#: includes/admin/options-page-js.php:18
|
414 |
msgid "[ Network error ]"
|
415 |
msgstr "[ Netzwerk Fehler ]"
|
416 |
|
417 |
# @ broken-link-checker
|
418 |
+
#: core/core.php:195
|
419 |
msgid "Automatically expand the widget if broken links have been detected"
|
420 |
msgstr "Vergrössere Widget automatisch wenn fehlerhafte Links gefunden wurden"
|
421 |
|
422 |
# @ broken-link-checker
|
423 |
+
#: core/core.php:317
|
424 |
msgid "Link Checker Settings"
|
425 |
msgstr "Link Checker Einstellungen"
|
426 |
|
427 |
# @ broken-link-checker
|
428 |
+
#: core/core.php:318
|
429 |
msgid "Link Checker"
|
430 |
msgstr "Link Checker"
|
431 |
|
432 |
# @ broken-link-checker
|
433 |
+
#: core/core.php:323
|
434 |
#: includes/link-query.php:26
|
435 |
msgid "Broken Links"
|
436 |
msgstr "Fehlerhafte Links"
|
437 |
|
438 |
# @ broken-link-checker
|
439 |
+
#: core/core.php:339
|
440 |
msgid "View Broken Links"
|
441 |
msgstr "Fehlerhafte Links anschauen"
|
442 |
|
443 |
+
#: core/core.php:354
|
444 |
msgid "Feedback"
|
445 |
msgstr "Feedback"
|
446 |
|
447 |
# @ default
|
448 |
+
#: core/core.php:366
|
449 |
msgid "Go to Settings"
|
450 |
msgstr "Gehe zu Einstellungen"
|
451 |
|
452 |
# @ broken-link-checker
|
453 |
+
#: core/core.php:373
|
454 |
msgid "Go to Broken Links"
|
455 |
msgstr "Gehe zu fehlerhaften Links"
|
456 |
|
457 |
# @ default
|
458 |
+
#: core/core.php:402
|
459 |
msgid "Settings"
|
460 |
msgstr "Einstellungen"
|
461 |
|
462 |
# @ broken-link-checker
|
463 |
+
#: core/core.php:414
|
464 |
+
#: core/core.php:1182
|
465 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
466 |
msgstr "Error: Die Datenbanktabellen des Plugins sind nicht mehr aktuell! (Vorhandene Version: %d, neue Version: %d)"
|
467 |
|
468 |
# @ broken-link-checker
|
469 |
+
#: core/core.php:418
|
470 |
+
#: core/core.php:1186
|
471 |
+
msgid "Try deactivating and then reactivating the plugin."
|
472 |
+
msgstr "Deaktivieren Sie das Plugin und aktivieren es anschliessend wieder."
|
473 |
+
|
474 |
+
# @ broken-link-checker
|
475 |
+
#: core/core.php:551
|
476 |
msgid "Settings saved."
|
477 |
msgstr "Einstellungen gespeichert."
|
478 |
|
479 |
+
#: core/core.php:557
|
480 |
msgid "Thank you for your donation!"
|
481 |
msgstr "Besten Dank für Ihre Spende!"
|
482 |
|
483 |
# @ broken-link-checker
|
484 |
+
#: core/core.php:564
|
485 |
msgid "Complete site recheck started."
|
486 |
msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
|
487 |
|
488 |
# @ broken-link-checker
|
489 |
+
#: core/core.php:573
|
|
|
490 |
msgid "Details"
|
491 |
msgstr "Details"
|
492 |
|
493 |
# @ broken-link-checker
|
494 |
+
#: core/core.php:587
|
495 |
msgid "General"
|
496 |
msgstr "Allgemein"
|
497 |
|
498 |
# @ broken-link-checker
|
499 |
+
#: core/core.php:588
|
500 |
msgid "Look For Links In"
|
501 |
msgstr "Suchen Sie nach Links in"
|
502 |
|
503 |
# @ broken-link-checker
|
504 |
+
#: core/core.php:589
|
505 |
msgid "Which Links To Check"
|
506 |
msgstr "Welche Links überprüfen"
|
507 |
|
508 |
# @ broken-link-checker
|
509 |
+
#: core/core.php:590
|
510 |
msgid "Protocols & APIs"
|
511 |
msgstr "Protokoll & Schnittstellen"
|
512 |
|
513 |
# @ broken-link-checker
|
514 |
+
#: core/core.php:591
|
515 |
msgid "Advanced"
|
516 |
msgstr "Erweitert"
|
517 |
|
518 |
# @ broken-link-checker
|
519 |
+
#: core/core.php:606
|
520 |
msgid "Broken Link Checker Options"
|
521 |
msgstr "Broken Link Checker Optionen"
|
522 |
|
523 |
# @ broken-link-checker
|
524 |
+
#: core/core.php:648
|
525 |
#: includes/admin/table-printer.php:168
|
526 |
msgid "Status"
|
527 |
msgstr "Status"
|
528 |
|
529 |
# @ broken-link-checker
|
530 |
+
#: core/core.php:650
|
531 |
#: includes/admin/options-page-js.php:56
|
532 |
msgid "Show debug info"
|
533 |
msgstr "Debug Infos anzeigen"
|
534 |
|
535 |
# @ broken-link-checker
|
536 |
+
#: core/core.php:678
|
537 |
msgid "Check each link"
|
538 |
msgstr "Überprüfe jeden Link"
|
539 |
|
540 |
# @ broken-link-checker
|
541 |
+
#: core/core.php:683
|
542 |
msgid "Every %s hours"
|
543 |
msgstr "Alle %s Stunden"
|
544 |
|
545 |
# @ broken-link-checker
|
546 |
+
#: core/core.php:692
|
547 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
548 |
msgstr "Vorhandene Links werden nach Ablauf der Zeit automatisch kontrolliert. Neue Links werden sofort geprüft."
|
549 |
|
550 |
# @ broken-link-checker
|
551 |
+
#: core/core.php:699
|
552 |
msgid "E-mail notifications"
|
553 |
msgstr "Email Benachrichtigungen"
|
554 |
|
555 |
# @ broken-link-checker
|
556 |
+
#: core/core.php:705
|
557 |
msgid "Send me e-mail notifications about newly detected broken links"
|
558 |
msgstr "Senden Sie mir eine Email Benachrichtigung, wenn neue fehlerhafte Links erkannt werden"
|
559 |
|
560 |
# @ broken-link-checker
|
561 |
+
#: core/core.php:712
|
562 |
msgid "Link tweaks"
|
563 |
msgstr "Link Einstellungen"
|
564 |
|
565 |
# @ broken-link-checker
|
566 |
+
#: core/core.php:718
|
567 |
msgid "Apply custom formatting to broken links"
|
568 |
msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
|
569 |
|
570 |
# @ broken-link-checker
|
571 |
+
#: core/core.php:722
|
572 |
+
#: core/core.php:750
|
573 |
msgid "Edit CSS"
|
574 |
msgstr "Bearbeite CSS"
|
575 |
|
576 |
# @ broken-link-checker
|
577 |
+
#: core/core.php:746
|
578 |
msgid "Apply custom formatting to removed links"
|
579 |
msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
|
580 |
|
581 |
# @ broken-link-checker
|
582 |
+
#: core/core.php:774
|
583 |
msgid "Stop search engines from following broken links"
|
584 |
msgstr "Stoppe Suchmaschinen aus folgenden fehlerhaften Links"
|
585 |
|
586 |
# @ broken-link-checker
|
587 |
+
#: core/core.php:791
|
588 |
msgid "Look for links in"
|
589 |
msgstr "Suchen Sie nach Links in"
|
590 |
|
591 |
# @ broken-link-checker
|
592 |
+
#: core/core.php:802
|
593 |
msgid "Post statuses"
|
594 |
msgstr "Beitrag Status"
|
595 |
|
596 |
# @ broken-link-checker
|
597 |
+
#: core/core.php:835
|
598 |
msgid "Link types"
|
599 |
msgstr "Link Typen"
|
600 |
|
601 |
# @ broken-link-checker
|
602 |
+
#: core/core.php:841
|
603 |
msgid "Error : All link parsers missing!"
|
604 |
msgstr "Fehler: Alle Link-Parser fehlen!"
|
605 |
|
606 |
# @ broken-link-checker
|
607 |
+
#: core/core.php:848
|
608 |
msgid "Exclusion list"
|
609 |
msgstr "Ausschlussliste"
|
610 |
|
611 |
# @ broken-link-checker
|
612 |
+
#: core/core.php:849
|
613 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
614 |
msgstr "URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
|
615 |
|
616 |
# @ broken-link-checker
|
617 |
+
#: core/core.php:867
|
618 |
msgid "Check links using"
|
619 |
msgstr "Überprüfe Links"
|
620 |
|
621 |
# @ broken-link-checker
|
622 |
+
#: core/core.php:886
|
623 |
#: includes/links.php:849
|
624 |
msgid "Timeout"
|
625 |
msgstr "Zeitüberschreitung"
|
626 |
|
627 |
# @ broken-link-checker
|
628 |
# @ default
|
629 |
+
#: core/core.php:892
|
630 |
+
#: core/core.php:938
|
631 |
+
#: core/core.php:2743
|
632 |
msgid "%s seconds"
|
633 |
msgstr "%s Sekunden"
|
634 |
|
635 |
# @ broken-link-checker
|
636 |
+
#: core/core.php:901
|
637 |
msgid "Links that take longer than this to load will be marked as broken."
|
638 |
msgstr "Links die länger zum laden brauchen als hier eingetragen, gelten als fehlerhaft."
|
639 |
|
640 |
# @ broken-link-checker
|
641 |
+
#: core/core.php:908
|
642 |
msgid "Link monitor"
|
643 |
msgstr "Link Monitor"
|
644 |
|
645 |
# @ broken-link-checker
|
646 |
+
#: core/core.php:916
|
647 |
msgid "Run continuously while the Dashboard is open"
|
648 |
msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
|
649 |
|
650 |
# @ broken-link-checker
|
651 |
+
#: core/core.php:924
|
652 |
msgid "Run hourly in the background"
|
653 |
msgstr "Stündlich im Hintergrund arbeiten"
|
654 |
|
655 |
# @ broken-link-checker
|
656 |
+
#: core/core.php:932
|
657 |
msgid "Max. execution time"
|
658 |
msgstr "Max. Ausführungszeit"
|
659 |
|
660 |
# @ broken-link-checker
|
661 |
+
#: core/core.php:949
|
662 |
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."
|
663 |
msgstr "Das Plugin arbeitet in regelmässigen Abständen im Hintergrund. Ihre Beiträge werden auf Links analysiert, entdeckte URLs geprüft und andere zeitaufwendige Aufgaben ausführt. Hier können Sie einstellen, wie lange die Instanzen laufen sollen, bevor sie gestoppt werden."
|
664 |
|
665 |
# @ broken-link-checker
|
666 |
+
#: core/core.php:958
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
667 |
msgid "Server load limit"
|
668 |
msgstr "Server Belastungsgrenze"
|
669 |
|
670 |
+
#: core/core.php:973
|
671 |
msgid "Current load : %s"
|
672 |
msgstr "Aktuelle Belastung: %s"
|
673 |
|
674 |
# @ broken-link-checker
|
675 |
+
#: core/core.php:978
|
676 |
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."
|
677 |
msgstr "Die Link Überprüfung wird ausgesetzt, wenn die durchschnittliche <a href=\"%s\">Belastung des Servers</a> über diese Zahl ansteigt. Lassen Sie dieses Feld leer, um das Ladelimit zu deaktivieren."
|
678 |
|
679 |
# @ broken-link-checker
|
680 |
+
#: core/core.php:987
|
681 |
msgid "Not available"
|
682 |
msgstr "Nicht verfügbar"
|
683 |
|
684 |
# @ broken-link-checker
|
685 |
+
#: core/core.php:989
|
686 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
687 |
msgstr "Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</code> vorhanden und zugänglich ist."
|
688 |
|
689 |
# @ broken-link-checker
|
690 |
+
#: core/core.php:997
|
691 |
msgid "Forced recheck"
|
692 |
msgstr "Erneute Überprüfung erzwingen"
|
693 |
|
694 |
# @ broken-link-checker
|
695 |
+
#: core/core.php:1000
|
696 |
msgid "Re-check all pages"
|
697 |
msgstr "Überprüfe alle Seiten noch einmal"
|
698 |
|
699 |
# @ broken-link-checker
|
700 |
+
#: core/core.php:1004
|
701 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
702 |
msgstr "Die \"Nuklear Option\". Klicken Sie auf diese Schaltfläche, um die Link-Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
|
703 |
|
704 |
# @ default
|
705 |
+
#: core/core.php:1015
|
706 |
msgid "Save Changes"
|
707 |
msgstr "Änderungen speichern"
|
708 |
|
709 |
# @ broken-link-checker
|
710 |
+
#: core/core.php:1066
|
711 |
msgid "Configure"
|
712 |
msgstr "Konfigurieren"
|
713 |
|
714 |
# @ broken-link-checker
|
715 |
+
#: core/core.php:1148
|
716 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
717 |
msgstr "Überprüfe folgende URLs (eine URL pro Zeile):"
|
718 |
|
719 |
# @ broken-link-checker
|
720 |
+
#: core/core.php:1283
|
721 |
+
#: core/core.php:1364
|
722 |
+
#: core/core.php:1396
|
723 |
msgid "Database error : %s"
|
724 |
msgstr "Datenbank Fehler: %s"
|
725 |
|
726 |
# @ broken-link-checker
|
727 |
+
#: core/core.php:1346
|
728 |
msgid "You must enter a filter name!"
|
729 |
msgstr "Sie müssen einen Filter Namen eingeben!"
|
730 |
|
731 |
# @ broken-link-checker
|
732 |
+
#: core/core.php:1350
|
733 |
msgid "Invalid search query."
|
734 |
msgstr "Ungültige Suchanfrage."
|
735 |
|
736 |
# @ broken-link-checker
|
737 |
+
#: core/core.php:1359
|
738 |
msgid "Filter \"%s\" created"
|
739 |
msgstr "Filter \"%s\" erstellt"
|
740 |
|
741 |
# @ broken-link-checker
|
742 |
+
#: core/core.php:1386
|
743 |
msgid "Filter ID not specified."
|
744 |
msgstr "Link ID nicht spezifiziert."
|
745 |
|
746 |
# @ broken-link-checker
|
747 |
+
#: core/core.php:1393
|
748 |
msgid "Filter deleted"
|
749 |
msgstr "Filter gelöscht"
|
750 |
|
751 |
# @ broken-link-checker
|
752 |
+
#: core/core.php:1440
|
753 |
msgid "Replaced %d redirect with a direct link"
|
754 |
msgid_plural "Replaced %d redirects with direct links"
|
755 |
msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
|
756 |
msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
|
757 |
|
758 |
# @ broken-link-checker
|
759 |
+
#: core/core.php:1451
|
760 |
msgid "Failed to fix %d redirect"
|
761 |
msgid_plural "Failed to fix %d redirects"
|
762 |
msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
|
763 |
msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
|
764 |
|
765 |
# @ broken-link-checker
|
766 |
+
#: core/core.php:1462
|
767 |
msgid "None of the selected links are redirects!"
|
768 |
msgstr "Keiner der ausgewählten Links sind Umleitungen!"
|
769 |
|
770 |
# @ broken-link-checker
|
771 |
+
#: core/core.php:1540
|
772 |
msgid "%d link updated."
|
773 |
msgid_plural "%d links updated."
|
774 |
msgstr[0] "Link %d aktualisiert."
|
775 |
msgstr[1] "Links %d aktualisiert."
|
776 |
|
777 |
# @ broken-link-checker
|
778 |
+
#: core/core.php:1551
|
779 |
msgid "Failed to update %d link."
|
780 |
msgid_plural "Failed to update %d links."
|
781 |
msgstr[0] "Link %d konnte nicht aktualisiert werden."
|
782 |
msgstr[1] "Links %d konnten nicht aktualisiert werden."
|
783 |
|
784 |
# @ broken-link-checker
|
785 |
+
#: core/core.php:1605
|
786 |
msgid "%d link removed"
|
787 |
msgid_plural "%d links removed"
|
788 |
msgstr[0] "%d Link entfernt"
|
789 |
msgstr[1] "%d Links entfernt"
|
790 |
|
791 |
# @ broken-link-checker
|
792 |
+
#: core/core.php:1616
|
793 |
msgid "Failed to remove %d link"
|
794 |
msgid_plural "Failed to remove %d links"
|
795 |
msgstr[0] "Link %d konnte nicht entfernt werden"
|
796 |
msgstr[1] "Links %d konnten nicht entfernt werden"
|
797 |
|
798 |
# @ default
|
799 |
+
#: core/core.php:1725
|
800 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
801 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
802 |
msgstr[0] "%d Das Element wurde übersprungen, weil es nicht in den Papierkorb verschoben werden kann. Löschen Sie es manuell."
|
803 |
msgstr[1] "%d Die Elemente wurde übersprungen, weil sie nicht in den Papierkorb verschoben werden können. Löschen Sie diese manuell."
|
804 |
|
805 |
# @ broken-link-checker
|
806 |
+
#: core/core.php:1747
|
807 |
msgid "Didn't find anything to delete!"
|
808 |
msgstr "Nichts gefunden um zu löschen!"
|
809 |
|
810 |
# @ broken-link-checker
|
811 |
+
#: core/core.php:1774
|
812 |
msgid "%d link scheduled for rechecking"
|
813 |
msgid_plural "%d links scheduled for rechecking"
|
814 |
msgstr[0] "%d Link zur erneuten Überprüfung geplant"
|
815 |
msgstr[1] "%d Links zur erneuten Überprüfung geplant"
|
816 |
|
817 |
# @ broken-link-checker
|
818 |
+
#: core/core.php:1820
|
819 |
+
#: core/core.php:2424
|
820 |
msgid "This link was manually marked as working by the user."
|
821 |
msgstr "Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
|
822 |
|
823 |
# @ broken-link-checker
|
824 |
+
#: core/core.php:1827
|
825 |
msgid "Couldn't modify link %d"
|
826 |
msgstr "Link %d konnte nicht geändert werden"
|
827 |
|
828 |
# @ broken-link-checker
|
829 |
+
#: core/core.php:1837
|
830 |
msgid "%d link marked as not broken"
|
831 |
msgid_plural "%d links marked as not broken"
|
832 |
msgstr[0] "%d Link als nicht fehlerhaft markiert"
|
833 |
msgstr[1] "%d Links als nicht fehlerhaft markiert"
|
834 |
|
835 |
# @ broken-link-checker
|
836 |
+
#: core/core.php:1877
|
837 |
msgid "Table columns"
|
838 |
msgstr "Tabellenspalten"
|
839 |
|
840 |
# @ default
|
841 |
+
#: core/core.php:1896
|
842 |
msgid "Show on screen"
|
843 |
msgstr "Auf dem Bildschirm anzeigen"
|
844 |
|
845 |
# @ broken-link-checker
|
846 |
+
#: core/core.php:1903
|
847 |
msgid "links"
|
848 |
msgstr "Links"
|
849 |
|
850 |
# @ default
|
851 |
# @ broken-link-checker
|
852 |
+
#: core/core.php:1904
|
853 |
#: includes/admin/table-printer.php:136
|
854 |
msgid "Apply"
|
855 |
msgstr "Anwenden"
|
856 |
|
857 |
# @ broken-link-checker
|
858 |
+
#: core/core.php:1908
|
859 |
msgid "Misc"
|
860 |
msgstr "Sonstige"
|
861 |
|
862 |
# @ broken-link-checker
|
863 |
+
#: core/core.php:1923
|
864 |
msgid "Highlight links broken for at least %s days"
|
865 |
msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
|
866 |
|
867 |
# @ broken-link-checker
|
868 |
+
#: core/core.php:1932
|
869 |
msgid "Color-code status codes"
|
870 |
msgstr "Farb-Code Status Codes"
|
871 |
|
872 |
# @ broken-link-checker
|
873 |
+
#: core/core.php:1949
|
874 |
+
#: core/core.php:2409
|
875 |
+
#: core/core.php:2445
|
876 |
+
#: core/core.php:2508
|
877 |
msgid "You're not allowed to do that!"
|
878 |
msgstr "Sie haben nicht die Erlaubnis das zu tun!"
|
879 |
|
880 |
# @ broken-link-checker
|
881 |
+
#: core/core.php:2290
|
882 |
msgid "View broken links"
|
883 |
msgstr "Fehlerhafte Links anschauen"
|
884 |
|
885 |
# @ broken-link-checker
|
886 |
+
#: core/core.php:2291
|
887 |
msgid "Found %d broken link"
|
888 |
msgid_plural "Found %d broken links"
|
889 |
msgstr[0] "%d fehlerhafte Links gefunden"
|
890 |
msgstr[1] "%d fehlerhafte Links gefunden"
|
891 |
|
892 |
# @ broken-link-checker
|
893 |
+
#: core/core.php:2297
|
894 |
msgid "No broken links found."
|
895 |
msgstr "Keine fehlerhaften Links gefunden."
|
896 |
|
897 |
# @ broken-link-checker
|
898 |
+
#: core/core.php:2304
|
899 |
msgid "%d URL in the work queue"
|
900 |
msgid_plural "%d URLs in the work queue"
|
901 |
msgstr[0] "%d URL in der Warteschlange"
|
902 |
msgstr[1] "%d URLs in der Warteschlange"
|
903 |
|
904 |
# @ broken-link-checker
|
905 |
+
#: core/core.php:2307
|
906 |
msgid "No URLs in the work queue."
|
907 |
msgstr "Keine URLs in der Warteschlange."
|
908 |
|
909 |
# @ broken-link-checker
|
910 |
+
#: core/core.php:2313
|
911 |
msgid "Detected %d unique URL"
|
912 |
msgid_plural "Detected %d unique URLs"
|
913 |
msgstr[0] "%d eindeutige URL gefunden"
|
914 |
msgstr[1] "%d eindeutige URLs gefunden"
|
915 |
|
916 |
# @ broken-link-checker
|
917 |
+
#: core/core.php:2314
|
918 |
msgid "in %d link"
|
919 |
msgid_plural "in %d links"
|
920 |
msgstr[0] "in %d Link"
|
921 |
msgstr[1] "in %d Links"
|
922 |
|
923 |
# @ broken-link-checker
|
924 |
+
#: core/core.php:2319
|
925 |
msgid "and still searching..."
|
926 |
msgstr "und sucht immer noch ..."
|
927 |
|
928 |
# @ broken-link-checker
|
929 |
+
#: core/core.php:2325
|
930 |
msgid "Searching your blog for links..."
|
931 |
msgstr "Durchsucht Ihr Blog nach Links ..."
|
932 |
|
933 |
# @ broken-link-checker
|
934 |
+
#: core/core.php:2327
|
935 |
msgid "No links detected."
|
936 |
msgstr "Keine Links gefunden."
|
937 |
|
938 |
# @ broken-link-checker
|
939 |
+
#: core/core.php:2353
|
940 |
msgctxt "current load"
|
941 |
msgid "Unknown"
|
942 |
msgstr "Unbekannt"
|
943 |
|
944 |
# @ broken-link-checker
|
945 |
+
#: core/core.php:2417
|
946 |
+
#: core/core.php:2455
|
947 |
+
#: core/core.php:2518
|
948 |
msgid "Oops, I can't find the link %d"
|
949 |
+
msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
|
950 |
|
951 |
# @ broken-link-checker
|
952 |
+
#: core/core.php:2430
|
953 |
msgid "Oops, couldn't modify the link!"
|
954 |
+
msgstr "Hoppla, der Link konnte nicht geändert werden!"
|
955 |
|
956 |
# @ broken-link-checker
|
957 |
+
#: core/core.php:2433
|
958 |
+
#: core/core.php:2544
|
959 |
msgid "Error : link_id not specified"
|
960 |
+
msgstr "Fehler: Link ID nicht spezifiziert"
|
961 |
|
962 |
# @ broken-link-checker
|
963 |
+
#: core/core.php:2465
|
964 |
msgid "Oops, the new URL is invalid!"
|
965 |
+
msgstr "Hoppla, die neue URL funktioniert nicht!"
|
966 |
|
967 |
# @ broken-link-checker
|
968 |
+
#: core/core.php:2476
|
969 |
+
#: core/core.php:2527
|
970 |
msgid "An unexpected error occured!"
|
971 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
972 |
|
973 |
# @ broken-link-checker
|
974 |
+
#: core/core.php:2494
|
975 |
msgid "Error : link_id or new_url not specified"
|
976 |
+
msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
|
977 |
|
978 |
# @ broken-link-checker
|
979 |
+
#: core/core.php:2553
|
980 |
msgid "You don't have sufficient privileges to access this information!"
|
981 |
msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
|
982 |
|
983 |
# @ broken-link-checker
|
984 |
+
#: core/core.php:2566
|
985 |
msgid "Error : link ID not specified"
|
986 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
987 |
|
988 |
# @ broken-link-checker
|
989 |
+
#: core/core.php:2580
|
990 |
msgid "Failed to load link details (%s)"
|
991 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
992 |
|
993 |
# @ broken-link-checker
|
994 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.3) #-#-#-#-#
|
995 |
#. Plugin Name of the plugin/theme
|
996 |
+
#: core/core.php:2633
|
997 |
msgid "Broken Link Checker"
|
998 |
msgstr "Broken Link Checker"
|
999 |
|
1000 |
# @ broken-link-checker
|
1001 |
+
#: core/core.php:2652
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1002 |
msgid "PHP version"
|
1003 |
msgstr "PHP Version"
|
1004 |
|
1005 |
# @ broken-link-checker
|
1006 |
+
#: core/core.php:2658
|
1007 |
msgid "MySQL version"
|
1008 |
msgstr "MySQL Version"
|
1009 |
|
1010 |
# @ broken-link-checker
|
1011 |
+
#: core/core.php:2671
|
1012 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
1013 |
msgstr "Sie haben eine veraltete Version von CURL. Erkennung von Umleitungen funktioniert eventuell nicht."
|
1014 |
|
1015 |
# @ broken-link-checker
|
1016 |
+
#: core/core.php:2683
|
1017 |
+
#: core/core.php:2699
|
1018 |
+
#: core/core.php:2704
|
1019 |
msgid "Not installed"
|
1020 |
msgstr "Nicht installiert"
|
1021 |
|
1022 |
# @ broken-link-checker
|
1023 |
+
#: core/core.php:2686
|
1024 |
msgid "CURL version"
|
1025 |
msgstr "CURL Version"
|
1026 |
|
1027 |
# @ broken-link-checker
|
1028 |
+
#: core/core.php:2692
|
1029 |
msgid "Installed"
|
1030 |
msgstr "Installiert"
|
1031 |
|
1032 |
# @ broken-link-checker
|
1033 |
+
#: core/core.php:2705
|
1034 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
1035 |
msgstr "Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin funktioniert!"
|
1036 |
|
1037 |
# @ broken-link-checker
|
1038 |
+
#: core/core.php:2716
|
1039 |
msgid "On"
|
1040 |
msgstr "An"
|
1041 |
|
1042 |
# @ broken-link-checker
|
1043 |
+
#: core/core.php:2717
|
1044 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
1045 |
msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode aktiviert ist."
|
1046 |
|
1047 |
# @ broken-link-checker
|
1048 |
+
#: core/core.php:2722
|
1049 |
+
#: core/core.php:2736
|
1050 |
msgid "Off"
|
1051 |
msgstr "Aus"
|
1052 |
|
1053 |
# @ broken-link-checker
|
1054 |
+
#: core/core.php:2730
|
1055 |
msgid "On ( %s )"
|
1056 |
msgstr "An (%s)"
|
1057 |
|
1058 |
# @ broken-link-checker
|
1059 |
+
#: core/core.php:2731
|
1060 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
1061 |
msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls open_basedir aktiviert ist."
|
1062 |
|
1063 |
# @ broken-link-checker
|
1064 |
+
#: core/core.php:2760
|
|
|
|
|
|
|
|
|
|
|
1065 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
1066 |
msgstr "Wenn dieser Wert nach mehreren geladenen Seiten Null ist, ist wahrscheinlich ein Fehler aufgetreten."
|
1067 |
|
1068 |
# @ broken-link-checker
|
1069 |
+
#: core/core.php:2831
|
1070 |
msgid "[%s] Broken links detected"
|
1071 |
msgstr "[%s] Fehlerhafte Links entdeckt"
|
1072 |
|
1073 |
# @ broken-link-checker
|
1074 |
+
#: core/core.php:2836
|
1075 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
1076 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
1077 |
msgstr[0] "Broken Link Checker hat %d fehlerhaften Link auf Ihrer Webseite entdeckt."
|
1078 |
msgstr[1] "Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
|
1079 |
|
1080 |
# @ broken-link-checker
|
1081 |
+
#: core/core.php:2851
|
1082 |
msgid "Here's a list of the first %d broken links:"
|
1083 |
msgid_plural "Here's a list of the first %d broken links:"
|
1084 |
msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
1085 |
msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
1086 |
|
1087 |
# @ broken-link-checker
|
1088 |
+
#: core/core.php:2860
|
1089 |
msgid "Here's a list of the new broken links: "
|
1090 |
msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
|
1091 |
|
1092 |
# @ broken-link-checker
|
1093 |
+
#: core/core.php:2872
|
1094 |
msgid "Link text : %s"
|
1095 |
msgstr "Linktext: %s"
|
1096 |
|
1097 |
# @ broken-link-checker
|
1098 |
+
#: core/core.php:2873
|
1099 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
1100 |
msgstr "Link URL: <a href=\"%s\">%s</a>"
|
1101 |
|
1102 |
# @ broken-link-checker
|
1103 |
+
#: core/core.php:2874
|
1104 |
msgid "Source : %s"
|
1105 |
msgstr "Quelle: %s"
|
1106 |
|
1107 |
# @ brokenk-link-checker
|
1108 |
+
#: core/core.php:2888
|
1109 |
msgid "You can see all broken links here:"
|
1110 |
msgstr "Hier sehen Sie alle fehlerhaften Links:"
|
1111 |
|
1112 |
# @ broken-link-checker
|
1113 |
+
#: includes/containers.php:122
|
1114 |
+
msgid "%d '%s' has been deleted"
|
1115 |
+
msgid_plural "%d '%s' have been deleted"
|
1116 |
+
msgstr[0] "%d '%s' wurde gelöscht"
|
1117 |
+
msgstr[1] "%d '%s' wurden gelöscht"
|
1118 |
|
1119 |
# @ broken-link-checker
|
1120 |
+
#: includes/containers.php:873
|
1121 |
+
#: includes/containers.php:891
|
1122 |
+
msgid "Container type '%s' not recognized"
|
1123 |
+
msgstr "Container Typ '%s' nicht erkannt"
|
1124 |
+
|
1125 |
+
# @ default
|
1126 |
+
#: includes/utility-class.php:286
|
1127 |
+
msgid "%d second"
|
1128 |
+
msgid_plural "%d seconds"
|
1129 |
+
msgstr[0] "%s Sekunde"
|
1130 |
+
msgstr[1] "%s Sekunden"
|
1131 |
+
|
1132 |
+
# @ default
|
1133 |
+
#: includes/utility-class.php:287
|
1134 |
+
msgid "%d second ago"
|
1135 |
+
msgid_plural "%d seconds ago"
|
1136 |
+
msgstr[0] "%s Sekunde vergangen"
|
1137 |
+
msgstr[1] "%s Sekunden vergangen"
|
1138 |
+
|
1139 |
+
# @ default
|
1140 |
+
#: includes/utility-class.php:290
|
1141 |
+
msgid "%d minute"
|
1142 |
+
msgid_plural "%d minutes"
|
1143 |
+
msgstr[0] "%d Minute"
|
1144 |
+
msgstr[1] "%d Minuten"
|
1145 |
+
|
1146 |
+
# @ default
|
1147 |
+
#: includes/utility-class.php:291
|
1148 |
+
msgid "%d minute ago"
|
1149 |
+
msgid_plural "%d minutes ago"
|
1150 |
+
msgstr[0] "%d Minute vergangen"
|
1151 |
+
msgstr[1] "%d Minuten vergangen"
|
1152 |
+
|
1153 |
+
# @ default
|
1154 |
+
#: includes/utility-class.php:294
|
1155 |
+
msgid "%d hour"
|
1156 |
+
msgid_plural "%d hours"
|
1157 |
+
msgstr[0] "%d Stunde"
|
1158 |
+
msgstr[1] "%d Stunden"
|
1159 |
+
|
1160 |
+
# @ default
|
1161 |
+
#: includes/utility-class.php:295
|
1162 |
+
msgid "%d hour ago"
|
1163 |
+
msgid_plural "%d hours ago"
|
1164 |
+
msgstr[0] "%d Stunde vergangen"
|
1165 |
+
msgstr[1] "%d Stunden vergangen"
|
1166 |
+
|
1167 |
+
# @ default
|
1168 |
+
#: includes/utility-class.php:298
|
1169 |
+
msgid "%d day"
|
1170 |
+
msgid_plural "%d days"
|
1171 |
+
msgstr[0] "%d Tag"
|
1172 |
+
msgstr[1] "%d Tage"
|
1173 |
+
|
1174 |
+
# @ default
|
1175 |
+
#: includes/utility-class.php:299
|
1176 |
+
msgid "%d day ago"
|
1177 |
+
msgid_plural "%d days ago"
|
1178 |
+
msgstr[0] "%d Tag vergangen"
|
1179 |
+
msgstr[1] "%d Tage vergangen"
|
1180 |
+
|
1181 |
+
# @ default
|
1182 |
+
#: includes/utility-class.php:302
|
1183 |
+
msgid "%d month"
|
1184 |
+
msgid_plural "%d months"
|
1185 |
+
msgstr[0] "%d Monat"
|
1186 |
+
msgstr[1] "%d Monate"
|
1187 |
+
|
1188 |
+
# @ default
|
1189 |
+
#: includes/utility-class.php:303
|
1190 |
+
msgid "%d month ago"
|
1191 |
+
msgid_plural "%d months ago"
|
1192 |
+
msgstr[0] "%d Monat vergangen"
|
1193 |
+
msgstr[1] "%d Monate vergangen"
|
1194 |
|
1195 |
# @ broken-link-checker
|
1196 |
+
#: includes/parsers.php:109
|
1197 |
+
msgid "Editing is not implemented in the '%s' parser"
|
1198 |
+
msgstr "Editieren ist nicht im '%s' Parser implementiert"
|
1199 |
|
1200 |
# @ broken-link-checker
|
1201 |
+
#: includes/parsers.php:124
|
1202 |
+
msgid "Unlinking is not implemented in the '%s' parser"
|
1203 |
+
msgstr "Aufheben der Verknüpfung ist nicht im '%s' Parser implementiert"
|
1204 |
|
1205 |
# @ broken-link-checker
|
1206 |
+
#: includes/links.php:215
|
1207 |
+
msgid "The plugin script was terminated while trying to check the link."
|
1208 |
+
msgstr "Das Plugin-Skript wurde beim Versuch den Link zu überprüfen beendet."
|
1209 |
|
1210 |
# @ broken-link-checker
|
1211 |
+
#: includes/links.php:261
|
1212 |
+
msgid "The plugin doesn't know how to check this type of link."
|
1213 |
+
msgstr "Das Plugin weiss nicht genau, wie er diesen Link Typ überprüfen soll."
|
|
|
1214 |
|
1215 |
# @ broken-link-checker
|
1216 |
+
#: includes/links.php:349
|
1217 |
+
msgid "Link is valid."
|
1218 |
+
msgstr "Link ist valide."
|
1219 |
|
1220 |
# @ broken-link-checker
|
1221 |
+
#: includes/links.php:351
|
1222 |
+
msgid "Link is broken."
|
1223 |
+
msgstr "Link ist fehlerhaft."
|
1224 |
|
1225 |
# @ broken-link-checker
|
1226 |
+
#: includes/links.php:564
|
1227 |
+
#: includes/links.php:666
|
1228 |
+
#: includes/links.php:693
|
1229 |
+
msgid "Link is not valid"
|
1230 |
+
msgstr "Link ist nicht gültig"
|
1231 |
|
1232 |
# @ broken-link-checker
|
1233 |
+
#: includes/links.php:581
|
1234 |
+
msgid "This link can not be edited because it is not used anywhere on this site."
|
1235 |
+
msgstr "Dieser Link kann nicht bearbeitet werden, weil er nicht überall auf dieser Website verwendet wird."
|
|
|
|
|
1236 |
|
1237 |
# @ broken-link-checker
|
1238 |
+
#: includes/links.php:607
|
1239 |
+
msgid "Failed to create a DB entry for the new URL."
|
1240 |
+
msgstr "Das Erstellen eines Datenbankeintrages für die neue URL ist fehlgeschlagen."
|
1241 |
|
1242 |
# @ broken-link-checker
|
1243 |
+
#: includes/links.php:673
|
1244 |
+
msgid "This link is not a redirect"
|
1245 |
+
msgstr "Dieser Link ist keine Umleitung"
|
|
|
|
|
|
|
|
|
1246 |
|
1247 |
# @ broken-link-checker
|
1248 |
+
#: includes/links.php:720
|
1249 |
+
#: includes/links.php:757
|
1250 |
+
msgid "Couldn't delete the link's database record"
|
1251 |
+
msgstr "Links können nicht aus der Datenbank gelöscht werden"
|
|
|
|
|
|
|
1252 |
|
1253 |
# @ broken-link-checker
|
1254 |
+
#: includes/links.php:831
|
1255 |
+
msgctxt "link status"
|
1256 |
+
msgid "Unknown"
|
1257 |
+
msgstr "Unbekannt"
|
|
|
|
|
|
|
1258 |
|
1259 |
+
# @ broken-link-checker
|
1260 |
+
#: includes/links.php:869
|
1261 |
+
msgid "Not checked"
|
1262 |
+
msgstr "Nicht überprüft"
|
1263 |
|
1264 |
+
# @ broken-link-checker
|
1265 |
+
#: includes/links.php:872
|
1266 |
+
msgid "False positive"
|
1267 |
+
msgstr "Falsch positiv"
|
1268 |
+
|
1269 |
+
#: includes/admin/sidebar.php:2
|
1270 |
+
msgid "Donate $10, $20 or $50!"
|
1271 |
+
msgstr "Spenden Sie $10, $20 oder $50!"
|
1272 |
+
|
1273 |
+
#: includes/admin/sidebar.php:5
|
1274 |
+
msgid "If you like this plugin, please donate to support development and maintenance!"
|
1275 |
+
msgstr "Mögen Sie dieses Plugin, dann helfen Sie uns mit einer Spende für die Entwicklung und Wartung."
|
1276 |
+
|
1277 |
+
#: includes/admin/sidebar.php:22
|
1278 |
+
msgid "Return to WordPress Dashboard"
|
1279 |
+
msgstr "Zurück zum Wordpress Dashboard"
|
1280 |
+
|
1281 |
+
#: includes/admin/sidebar.php:50
|
1282 |
+
msgid "More plugins by Janis Elsts"
|
1283 |
+
msgstr "Weitere Plugins von Janis Elsts"
|
1284 |
|
1285 |
# @ broken-link-checker
|
1286 |
#: includes/admin/search-form.php:16
|
1349 |
msgid "Cancel"
|
1350 |
msgstr "Abbrechen"
|
1351 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1352 |
# @ broken-link-checker
|
1353 |
+
#: includes/admin/links-page-js.php:58
|
1354 |
+
#: includes/admin/links-page-js.php:301
|
1355 |
+
msgid "Wait..."
|
1356 |
+
msgstr "Warte ..."
|
1357 |
|
1358 |
# @ broken-link-checker
|
1359 |
+
#: includes/admin/links-page-js.php:99
|
1360 |
+
#: includes/admin/table-printer.php:587
|
1361 |
+
msgid "Not broken"
|
1362 |
+
msgstr "Nicht fehlerhaft"
|
1363 |
|
1364 |
# @ broken-link-checker
|
1365 |
+
#: includes/admin/links-page-js.php:213
|
1366 |
+
msgid "%d instances of the link were successfully modified."
|
1367 |
+
msgstr "%d Instanzen von diesem Link wurden erfolgreich geändert."
|
1368 |
|
1369 |
# @ broken-link-checker
|
1370 |
+
#: includes/admin/links-page-js.php:219
|
1371 |
+
msgid "However, %d instances couldn't be edited and still point to the old URL."
|
1372 |
+
msgstr "Allerdings, %d Instanzen konnten nicht bearbeitet werden und verweisen zudem noch auf die alte URL."
|
1373 |
+
|
1374 |
+
# @ broken-link-checker
|
1375 |
+
#: includes/admin/links-page-js.php:225
|
1376 |
+
msgid "The link could not be modified."
|
1377 |
+
msgstr "Der Link konnte nicht geändert werden."
|
1378 |
+
|
1379 |
+
# @ broken-link-checker
|
1380 |
+
#: includes/admin/links-page-js.php:228
|
1381 |
+
#: includes/admin/links-page-js.php:353
|
1382 |
+
msgid "The following error(s) occured :"
|
1383 |
+
msgstr "Folgende Fehler sind aufgetreten:"
|
1384 |
+
|
1385 |
+
# @ broken-link-checker
|
1386 |
+
#: includes/admin/links-page-js.php:339
|
1387 |
+
msgid "%d instances of the link were successfully unlinked."
|
1388 |
+
msgstr "%d Instanzen von diesem Link wurden erfolgreich gelöscht."
|
1389 |
+
|
1390 |
+
# @ broken-link-checker
|
1391 |
+
#: includes/admin/links-page-js.php:345
|
1392 |
+
msgid "However, %d instances couldn't be removed."
|
1393 |
+
msgstr "Allerdings, %d Instanzen konnten nicht entfernt werden."
|
1394 |
+
|
1395 |
+
# @ broken-link-checker
|
1396 |
+
#: includes/admin/links-page-js.php:350
|
1397 |
+
msgid "The plugin failed to remove the link."
|
1398 |
+
msgstr "Das Plugin konnte den Link nicht entfernen."
|
1399 |
+
|
1400 |
+
# @ broken-link-checker
|
1401 |
+
#: includes/admin/links-page-js.php:361
|
1402 |
+
#: includes/admin/table-printer.php:237
|
1403 |
+
#: includes/admin/table-printer.php:581
|
1404 |
+
msgid "Unlink"
|
1405 |
+
msgstr "Link aufheben"
|
1406 |
+
|
1407 |
+
# @ broken-link-checker
|
1408 |
+
#: includes/admin/links-page-js.php:405
|
1409 |
+
msgid "Enter a name for the new custom filter"
|
1410 |
+
msgstr "Gib einen Namen für den neuen benutzerdefinierten Filter ein"
|
1411 |
+
|
1412 |
+
# @ broken-link-checker
|
1413 |
+
#: includes/admin/links-page-js.php:416
|
1414 |
+
msgid ""
|
1415 |
+
"You are about to delete the current filter.\n"
|
1416 |
+
"'Cancel' to stop, 'OK' to delete"
|
1417 |
+
msgstr ""
|
1418 |
+
"Möchten Sie den aktuellen Filter löschen '%s'\n"
|
1419 |
+
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
1420 |
+
|
1421 |
+
# @ broken-link-checker
|
1422 |
+
#: includes/admin/links-page-js.php:439
|
1423 |
+
msgid ""
|
1424 |
+
"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"
|
1425 |
+
"'Cancel' to stop, 'OK' to delete"
|
1426 |
+
msgstr ""
|
1427 |
+
"Sind Sie sicher, dass Sie alle Beiträge, Lesezeichen oder andere Elemente die in den ausgewählten Links enthalten sind, löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n"
|
1428 |
+
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
1429 |
+
|
1430 |
+
# @ broken-link-checker
|
1431 |
+
#: includes/admin/links-page-js.php:449
|
1432 |
+
msgid ""
|
1433 |
+
"Are you sure you want to remove the selected links? This action can't be undone.\n"
|
1434 |
+
"'Cancel' to stop, 'OK' to remove"
|
1435 |
+
msgstr ""
|
1436 |
+
"Sind Sie sicher, dass Sie die ausgewählten Links entfernen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n"
|
1437 |
+
" 'Abbrechen' um abzubrechen, 'OK' um zu entfernen."
|
1438 |
+
|
1439 |
+
#: includes/admin/links-page-js.php:558
|
1440 |
+
msgid "Enter a search string first."
|
1441 |
+
msgstr "Geben Sie zuerst einen Suchbegriff ein."
|
1442 |
+
|
1443 |
+
#: includes/admin/links-page-js.php:565
|
1444 |
+
msgid "Select one or more links to edit."
|
1445 |
+
msgstr "Wählen Sie einen oder mehrere Links zum bearbeiten."
|
1446 |
+
|
1447 |
+
# @ broken-link-checker
|
1448 |
+
#: includes/admin/db-upgrade.php:95
|
1449 |
+
msgid "Failed to delete old DB tables. Database error : %s"
|
1450 |
+
msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
|
1451 |
+
|
1452 |
+
# @ broken-link-checker
|
1453 |
+
#: includes/admin/options-page-js.php:54
|
1454 |
+
msgid "Hide debug info"
|
1455 |
+
msgstr "Debug Info verbergen"
|
1456 |
+
|
1457 |
+
# @ broken-link-checker
|
1458 |
+
#: includes/admin/table-printer.php:150
|
1459 |
+
msgid "Compact View"
|
1460 |
+
msgstr "Kompaktansicht"
|
1461 |
+
|
1462 |
+
# @ broken-link-checker
|
1463 |
+
#: includes/admin/table-printer.php:151
|
1464 |
msgid "Detailed View"
|
1465 |
msgstr "Detailansicht"
|
1466 |
|
1655 |
msgid "[An orphaned link! This is a bug.]"
|
1656 |
msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
|
1657 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1658 |
# @ broken-link-checker
|
1659 |
#: includes/extra-strings.php:2
|
1660 |
msgctxt "module name"
|
1751 |
msgid "Pages"
|
1752 |
msgstr "Seiten"
|
1753 |
|
1754 |
+
# @ broken-link-checker
|
1755 |
+
#: includes/link-query.php:25
|
1756 |
+
msgid "Broken"
|
1757 |
+
msgstr "Fehlerhaft"
|
|
|
|
|
1758 |
|
1759 |
+
# @ broken-link-checker
|
1760 |
+
#: includes/link-query.php:27
|
1761 |
+
msgid "No broken links found"
|
1762 |
+
msgstr "Keine fehlerhaften Links gefunden"
|
|
|
|
|
1763 |
|
1764 |
+
# @ broken-link-checker
|
1765 |
+
#: includes/link-query.php:34
|
1766 |
+
msgid "Redirects"
|
1767 |
+
msgstr "Umleitungen"
|
|
|
|
|
1768 |
|
1769 |
+
# @ broken-link-checker
|
1770 |
+
#: includes/link-query.php:35
|
1771 |
+
msgid "Redirected Links"
|
1772 |
+
msgstr "Umgeleitete Links"
|
|
|
|
|
1773 |
|
1774 |
+
# @ broken-link-checker
|
1775 |
+
#: includes/link-query.php:36
|
1776 |
+
msgid "No redirects found"
|
1777 |
+
msgstr "Keine umgeleiteten Links gefunden"
|
|
|
|
|
1778 |
|
1779 |
+
# @ broken-link-checker
|
1780 |
+
#: includes/link-query.php:44
|
1781 |
+
msgid "All"
|
1782 |
+
msgstr "Alle"
|
|
|
|
|
1783 |
|
1784 |
+
# @ broken-link-checker
|
1785 |
+
#: includes/link-query.php:45
|
1786 |
+
msgid "Detected Links"
|
1787 |
+
msgstr "Gefundene Links"
|
|
|
|
|
1788 |
|
1789 |
+
# @ broken-link-checker
|
1790 |
+
#: includes/link-query.php:46
|
1791 |
+
msgid "No links found (yet)"
|
1792 |
+
msgstr "(Noch) keine Links gefunden"
|
|
|
|
|
1793 |
|
1794 |
+
# @ broken-link-checker
|
1795 |
+
#: includes/link-query.php:54
|
1796 |
+
msgid "Search Results"
|
1797 |
+
msgstr "Such Resultat"
|
|
|
|
|
1798 |
|
1799 |
+
# @ broken-link-checker
|
1800 |
+
#: includes/link-query.php:55
|
1801 |
+
#: includes/link-query.php:102
|
1802 |
+
msgid "No links found for your query"
|
1803 |
+
msgstr "Keine Links für Deine Anfrage gefunden"
|
|
|
1804 |
|
1805 |
# @ broken-link-checker
|
1806 |
#: includes/instances.php:102
|
1814 |
msgid "Parser '%s' not found."
|
1815 |
msgstr "Parser '%s' nicht gefunden."
|
1816 |
|
1817 |
+
# @ default
|
1818 |
+
#: includes/any-post.php:427
|
1819 |
+
msgid "Preview “%s”"
|
1820 |
+
msgstr "Vorschau “%s”"
|
1821 |
+
|
1822 |
+
# @ default
|
1823 |
+
#: includes/any-post.php:428
|
1824 |
+
msgid "Preview"
|
1825 |
+
msgstr "Vorschau"
|
1826 |
+
|
1827 |
+
# @ default
|
1828 |
+
#: includes/any-post.php:435
|
1829 |
+
msgid "View “%s”"
|
1830 |
+
msgstr "Ansehen “%s”"
|
1831 |
+
|
1832 |
+
# @ broken-link-checker
|
1833 |
+
#: includes/any-post.php:529
|
1834 |
+
msgid "Updating post %d failed"
|
1835 |
+
msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
|
1836 |
+
|
1837 |
+
# @ broken-link-checker
|
1838 |
+
#: includes/any-post.php:711
|
1839 |
+
msgid "%d post deleted."
|
1840 |
+
msgid_plural "%d posts deleted."
|
1841 |
+
msgstr[0] "%d Artikel gelöscht."
|
1842 |
+
msgstr[1] "%d Artikel gelöscht."
|
1843 |
+
|
1844 |
+
# @ broken-link-checker
|
1845 |
+
#: includes/any-post.php:713
|
1846 |
+
msgid "%d page deleted."
|
1847 |
+
msgid_plural "%d pages deleted."
|
1848 |
+
msgstr[0] "%d Seite gelöscht."
|
1849 |
+
msgstr[1] "%d Seiten gelöscht."
|
1850 |
+
|
1851 |
+
# @ broken-link-checker
|
1852 |
+
#: includes/any-post.php:715
|
1853 |
+
msgid "%d \"%s\" deleted."
|
1854 |
+
msgid_plural "%d \"%s\" deleted."
|
1855 |
+
msgstr[0] "%d \"%s\" gelöscht."
|
1856 |
+
msgstr[1] "%d \"%s\" gelöscht."
|
1857 |
+
|
1858 |
+
# @ broken-link-checker
|
1859 |
+
#: includes/any-post.php:734
|
1860 |
+
msgid "%d post moved to the Trash."
|
1861 |
+
msgid_plural "%d posts moved to the Trash."
|
1862 |
+
msgstr[0] "%d Artikel in den Papierkorb verschoben."
|
1863 |
+
msgstr[1] "%d Artikel in den Papierkorb verschoben."
|
1864 |
+
|
1865 |
+
# @ broken-link-checker
|
1866 |
+
#: includes/any-post.php:736
|
1867 |
+
msgid "%d page moved to the Trash."
|
1868 |
+
msgid_plural "%d pages moved to the Trash."
|
1869 |
+
msgstr[0] "%d Seite in den Papierkorb verschoben."
|
1870 |
+
msgstr[1] "%d Seiten in den Papierkorb verschoben."
|
1871 |
+
|
1872 |
+
# @ broken-link-checker
|
1873 |
+
#: includes/any-post.php:738
|
1874 |
+
msgid "%d \"%s\" moved to the Trash."
|
1875 |
+
msgid_plural "%d \"%s\" moved to the Trash."
|
1876 |
+
msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
|
1877 |
+
msgstr[1] "%d \"%s\" in den Papierkorb verschoben."
|
1878 |
+
|
1879 |
#. Plugin URI of the plugin/theme
|
1880 |
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1881 |
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
languages/broken-link-checker-pt_PT.mo
CHANGED
Binary file
|
languages/broken-link-checker-pt_PT.po
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
# Copyright (C) 2010 Janis Elsts
|
2 |
# This file is distributed under the same license as the Broken Link Checker package.
|
3 |
-
# Tradução em português pt_PT do plugin Broken Link Checker Pro 1.
|
4 |
# Autor: PedroDM - <pm[at]mowster[dot]net>
|
5 |
# Website: http://jobs.mowster.net/ - <jobs@mowster.net>
|
6 |
#
|
@@ -8,10 +8,10 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: Broken Link Checker PT\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
-
"POT-Creation-Date: 2011-
|
12 |
"PO-Revision-Date: \n"
|
13 |
-
"Last-Translator:
|
14 |
-
"Language-Team:
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -204,7 +204,7 @@ msgstr "Intervalo"
|
|
204 |
|
205 |
#: core/core.php:892
|
206 |
#: core/core.php:938
|
207 |
-
#: core/core.php:
|
208 |
#, php-format
|
209 |
msgid "%s seconds"
|
210 |
msgstr "%s segundos"
|
@@ -280,348 +280,348 @@ msgid "Check URLs entered in these custom fields (one per line) :"
|
|
280 |
msgstr "Verificar as seguintes URL personalizadas (uma por linha):"
|
281 |
|
282 |
#: core/core.php:1283
|
283 |
-
#: core/core.php:
|
284 |
-
#: core/core.php:
|
285 |
#, php-format
|
286 |
msgid "Database error : %s"
|
287 |
msgstr "Erro na Base de dados: %s"
|
288 |
|
289 |
-
#: core/core.php:
|
290 |
msgid "You must enter a filter name!"
|
291 |
msgstr "Deve introduzir um nome para o filtro!"
|
292 |
|
293 |
-
#: core/core.php:
|
294 |
msgid "Invalid search query."
|
295 |
msgstr "Procura inválida."
|
296 |
|
297 |
-
#: core/core.php:
|
298 |
#, php-format
|
299 |
msgid "Filter \"%s\" created"
|
300 |
msgstr "Filtro \"%s\" criado"
|
301 |
|
302 |
-
#: core/core.php:
|
303 |
msgid "Filter ID not specified."
|
304 |
msgstr "ID do Filtro não especificado."
|
305 |
|
306 |
-
#: core/core.php:
|
307 |
msgid "Filter deleted"
|
308 |
msgstr "Filtro eliminado"
|
309 |
|
310 |
-
#: core/core.php:
|
311 |
#, php-format
|
312 |
msgid "Replaced %d redirect with a direct link"
|
313 |
msgid_plural "Replaced %d redirects with direct links"
|
314 |
msgstr[0] "Substituído %d redirect com link directo"
|
315 |
msgstr[1] "Substituídos %d redirects com links directos"
|
316 |
|
317 |
-
#: core/core.php:
|
318 |
#, php-format
|
319 |
msgid "Failed to fix %d redirect"
|
320 |
msgid_plural "Failed to fix %d redirects"
|
321 |
msgstr[0] "Não foi possível reparar %d redirect"
|
322 |
msgstr[1] "Não foi possível reparar %d redirects"
|
323 |
|
324 |
-
#: core/core.php:
|
325 |
msgid "None of the selected links are redirects!"
|
326 |
msgstr "Nenhum dos links seleccionados são redirects!"
|
327 |
|
328 |
-
#: core/core.php:
|
329 |
#, php-format
|
330 |
msgid "%d link updated."
|
331 |
msgid_plural "%d links updated."
|
332 |
msgstr[0] "%d link actualizado."
|
333 |
msgstr[1] "%d links actualizados."
|
334 |
|
335 |
-
#: core/core.php:
|
336 |
#, php-format
|
337 |
msgid "Failed to update %d link."
|
338 |
msgid_plural "Failed to update %d links."
|
339 |
msgstr[0] "Erro a actualizar %d link."
|
340 |
msgstr[1] "Erro a actualizar %d links."
|
341 |
|
342 |
-
#: core/core.php:
|
343 |
#, php-format
|
344 |
msgid "%d link removed"
|
345 |
msgid_plural "%d links removed"
|
346 |
msgstr[0] "%d link eliminado"
|
347 |
msgstr[1] "%d links eliminados"
|
348 |
|
349 |
-
#: core/core.php:
|
350 |
#, php-format
|
351 |
msgid "Failed to remove %d link"
|
352 |
msgid_plural "Failed to remove %d links"
|
353 |
msgstr[0] "Erro a remover %d link"
|
354 |
msgstr[1] "Erro a remover %d links"
|
355 |
|
356 |
-
#: core/core.php:
|
357 |
#, php-format
|
358 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
359 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
360 |
msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessita de efectua-lo manualmente."
|
361 |
msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de efectua-lo manualmente."
|
362 |
|
363 |
-
#: core/core.php:
|
364 |
msgid "Didn't find anything to delete!"
|
365 |
msgstr "Não foi encontrado nada para apagar!"
|
366 |
|
367 |
-
#: core/core.php:
|
368 |
#, php-format
|
369 |
msgid "%d link scheduled for rechecking"
|
370 |
msgid_plural "%d links scheduled for rechecking"
|
371 |
msgstr[0] "%d link agendado para verificação"
|
372 |
msgstr[1] "%d links agendados para verificação"
|
373 |
|
374 |
-
#: core/core.php:
|
375 |
-
#: core/core.php:
|
376 |
msgid "This link was manually marked as working by the user."
|
377 |
msgstr "Este link foi marcado manualmente como válido por outro utilizador."
|
378 |
|
379 |
-
#: core/core.php:
|
380 |
#, php-format
|
381 |
msgid "Couldn't modify link %d"
|
382 |
msgstr "Oops, impossível modificar o link %d"
|
383 |
|
384 |
-
#: core/core.php:
|
385 |
#, php-format
|
386 |
msgid "%d link marked as not broken"
|
387 |
msgid_plural "%d links marked as not broken"
|
388 |
msgstr[0] "%d link marcado como funcional"
|
389 |
msgstr[1] "%d links marcados como funcionais"
|
390 |
|
391 |
-
#: core/core.php:
|
392 |
msgid "Table columns"
|
393 |
msgstr "Colunas da Tabela"
|
394 |
|
395 |
-
#: core/core.php:
|
396 |
msgid "Show on screen"
|
397 |
msgstr "Mostrar no ecrán"
|
398 |
|
399 |
-
#: core/core.php:
|
400 |
msgid "links"
|
401 |
msgstr "links"
|
402 |
|
403 |
-
#: core/core.php:
|
404 |
msgid "Apply"
|
405 |
msgstr "Aplicar"
|
406 |
|
407 |
-
#: core/core.php:
|
408 |
msgid "Misc"
|
409 |
msgstr "Vários"
|
410 |
|
411 |
-
#: core/core.php:
|
412 |
#, php-format
|
413 |
msgid "Highlight links broken for at least %s days"
|
414 |
msgstr "Sublinhar links offline pelo menos por %s dias"
|
415 |
|
416 |
-
#: core/core.php:
|
417 |
msgid "Color-code status codes"
|
418 |
msgstr "Cor-código status códigos"
|
419 |
|
420 |
-
#: core/core.php:
|
421 |
-
#: core/core.php:
|
422 |
-
#: core/core.php:
|
423 |
-
#: core/core.php:
|
424 |
msgid "You're not allowed to do that!"
|
425 |
msgstr "Não permitido!"
|
426 |
|
427 |
-
#: core/core.php:
|
428 |
msgid "View broken links"
|
429 |
msgstr "Ver links offline"
|
430 |
|
431 |
-
#: core/core.php:
|
432 |
#, php-format
|
433 |
msgid "Found %d broken link"
|
434 |
msgid_plural "Found %d broken links"
|
435 |
msgstr[0] "Encontrado %d Link offline"
|
436 |
msgstr[1] "Encontrados %d Links offline"
|
437 |
|
438 |
-
#: core/core.php:
|
439 |
msgid "No broken links found."
|
440 |
msgstr "Não existem links offline."
|
441 |
|
442 |
-
#: core/core.php:
|
443 |
#, php-format
|
444 |
msgid "%d URL in the work queue"
|
445 |
msgid_plural "%d URLs in the work queue"
|
446 |
msgstr[0] "%d URL em espera"
|
447 |
msgstr[1] "%d URLs em espera"
|
448 |
|
449 |
-
#: core/core.php:
|
450 |
msgid "No URLs in the work queue."
|
451 |
msgstr "Não existem URL em espera para verificação."
|
452 |
|
453 |
-
#: core/core.php:
|
454 |
#, php-format
|
455 |
msgid "Detected %d unique URL"
|
456 |
msgid_plural "Detected %d unique URLs"
|
457 |
msgstr[0] "Detectada %d URL única"
|
458 |
msgstr[1] "Detectadas %d URL únicas"
|
459 |
|
460 |
-
#: core/core.php:
|
461 |
#, php-format
|
462 |
msgid "in %d link"
|
463 |
msgid_plural "in %d links"
|
464 |
msgstr[0] "em %d link"
|
465 |
msgstr[1] "em %d links"
|
466 |
|
467 |
-
#: core/core.php:
|
468 |
msgid "and still searching..."
|
469 |
msgstr "e procurando..."
|
470 |
|
471 |
-
#: core/core.php:
|
472 |
msgid "Searching your blog for links..."
|
473 |
msgstr "Procurando links..."
|
474 |
|
475 |
-
#: core/core.php:
|
476 |
msgid "No links detected."
|
477 |
msgstr "Nenhuns links encontrados."
|
478 |
|
479 |
-
#: core/core.php:
|
480 |
#: includes/links.php:831
|
481 |
msgid "Unknown"
|
482 |
msgstr "Desconhecido"
|
483 |
|
484 |
-
#: core/core.php:
|
485 |
-
#: core/core.php:
|
486 |
-
#: core/core.php:
|
487 |
#, php-format
|
488 |
msgid "Oops, I can't find the link %d"
|
489 |
msgstr "Oops, não é possível encontrar o link %d"
|
490 |
|
491 |
-
#: core/core.php:
|
492 |
msgid "Oops, couldn't modify the link!"
|
493 |
msgstr "Oops, não é possível modificar o link!"
|
494 |
|
495 |
-
#: core/core.php:
|
496 |
-
#: core/core.php:
|
497 |
msgid "Error : link_id not specified"
|
498 |
msgstr "Erro: link_id não especificado"
|
499 |
|
500 |
-
#: core/core.php:
|
501 |
msgid "Oops, the new URL is invalid!"
|
502 |
msgstr "Oops, a nova URL não é válida"
|
503 |
|
504 |
-
#: core/core.php:
|
505 |
-
#: core/core.php:
|
506 |
msgid "An unexpected error occured!"
|
507 |
msgstr "Ocorreu um erro inesperado!"
|
508 |
|
509 |
-
#: core/core.php:
|
510 |
msgid "Error : link_id or new_url not specified"
|
511 |
msgstr "Erro: link_id ou new_url não especificado"
|
512 |
|
513 |
-
#: core/core.php:
|
514 |
msgid "You don't have sufficient privileges to access this information!"
|
515 |
msgstr "Não tem previlégios suficientes para aceder a esta informação!"
|
516 |
|
517 |
-
#: core/core.php:
|
518 |
msgid "Error : link ID not specified"
|
519 |
msgstr "Erro: link ID não especificado"
|
520 |
|
521 |
-
#: core/core.php:
|
522 |
#, php-format
|
523 |
msgid "Failed to load link details (%s)"
|
524 |
msgstr "Erro a carregar os detalhes do link (%s)"
|
525 |
|
526 |
-
#: core/core.php:
|
527 |
msgid "Broken Link Checker"
|
528 |
msgstr "Links offline"
|
529 |
|
530 |
-
#: core/core.php:
|
531 |
msgid "PHP version"
|
532 |
msgstr "Versão PHP"
|
533 |
|
534 |
-
#: core/core.php:
|
535 |
msgid "MySQL version"
|
536 |
msgstr "Versão MySQL"
|
537 |
|
538 |
-
#: core/core.php:
|
539 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
540 |
msgstr "Versão de CURL obsoleta. A detecção de redirects pode não funcionar correctamente."
|
541 |
|
542 |
-
#: core/core.php:
|
543 |
-
#: core/core.php:
|
544 |
-
#: core/core.php:
|
545 |
msgid "Not installed"
|
546 |
msgstr "Não instalado"
|
547 |
|
548 |
-
#: core/core.php:
|
549 |
msgid "CURL version"
|
550 |
msgstr "Versão CURL"
|
551 |
|
552 |
-
#: core/core.php:
|
553 |
msgid "Installed"
|
554 |
msgstr "Instalado"
|
555 |
|
556 |
-
#: core/core.php:
|
557 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
558 |
msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
|
559 |
|
560 |
-
#: core/core.php:
|
561 |
msgid "On"
|
562 |
msgstr "Activado"
|
563 |
|
564 |
-
#: core/core.php:
|
565 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
566 |
msgstr "Os redirects podem ser detectados como links offline quando o safe_mode está habilitado."
|
567 |
|
568 |
-
#: core/core.php:
|
569 |
-
#: core/core.php:
|
570 |
msgid "Off"
|
571 |
msgstr "Desactivado"
|
572 |
|
573 |
-
#: core/core.php:
|
574 |
#, php-format
|
575 |
msgid "On ( %s )"
|
576 |
msgstr "Activado ( %s )"
|
577 |
|
578 |
-
#: core/core.php:
|
579 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
580 |
msgstr "Os redirects podem ser considerados links offline quando o open_basedir está activo."
|
581 |
|
582 |
-
#: core/core.php:
|
583 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
584 |
msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
|
585 |
|
586 |
-
#: core/core.php:
|
587 |
#, php-format
|
588 |
msgid "[%s] Broken links detected"
|
589 |
msgstr "[%s] Links offline encontrados"
|
590 |
|
591 |
-
#: core/core.php:
|
592 |
#, php-format
|
593 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
594 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
595 |
msgstr[0] "Links offline detectou %d novo link sem ligação."
|
596 |
msgstr[1] "Links offline detectou %d novos links sem ligação."
|
597 |
|
598 |
-
#: core/core.php:
|
599 |
#, php-format
|
600 |
msgid "Here's a list of the first %d broken links:"
|
601 |
msgid_plural "Here's a list of the first %d broken links:"
|
602 |
msgstr[0] "Lista do primeiro %d link sem ligação:"
|
603 |
msgstr[1] "Lista dos primeiros %d links sem ligação:"
|
604 |
|
605 |
-
#: core/core.php:
|
606 |
msgid "Here's a list of the new broken links: "
|
607 |
msgstr "Novos links offline:"
|
608 |
|
609 |
-
#: core/core.php:
|
610 |
#, php-format
|
611 |
msgid "Link text : %s"
|
612 |
msgstr "Texto do Link : %s"
|
613 |
|
614 |
-
#: core/core.php:
|
615 |
#, php-format
|
616 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
617 |
msgstr "Link URL : <a href=\"%s\">%s</a>"
|
618 |
|
619 |
-
#: core/core.php:
|
620 |
#, php-format
|
621 |
msgid "Source : %s"
|
622 |
msgstr "Fonte : %s"
|
623 |
|
624 |
-
#: core/core.php:
|
625 |
msgid "You can see all broken links here:"
|
626 |
msgstr "Links offline:"
|
627 |
|
@@ -752,8 +752,8 @@ msgid_plural "%d '%s' have been deleted"
|
|
752 |
msgstr[0] "%d '%s' foi apagado"
|
753 |
msgstr[1] "%d '%s' foram apagados"
|
754 |
|
755 |
-
#: includes/containers.php:
|
756 |
-
#: includes/containers.php:
|
757 |
#, php-format
|
758 |
msgid "Container type '%s' not recognized"
|
759 |
msgstr "Recipiente tipo '%s' não foi reconhecido"
|
@@ -875,7 +875,7 @@ msgid "Search Results"
|
|
875 |
msgstr "Resultados da procura"
|
876 |
|
877 |
#: includes/link-query.php:55
|
878 |
-
#: includes/link-query.php:
|
879 |
msgid "No links found for your query"
|
880 |
msgstr "Sem resultados"
|
881 |
|
@@ -1102,6 +1102,10 @@ msgstr "Se gosta deste plugin, por favor faça um donativo para financiar o seu
|
|
1102 |
msgid "Return to WordPress Dashboard"
|
1103 |
msgstr "Regressar ao Painel"
|
1104 |
|
|
|
|
|
|
|
|
|
1105 |
#: includes/admin/table-printer.php:150
|
1106 |
msgid "Compact View"
|
1107 |
msgstr "Visão compacta"
|
@@ -1503,7 +1507,3 @@ msgstr "Imagem"
|
|
1503 |
msgid "Custom field"
|
1504 |
msgstr "Campo personalizado"
|
1505 |
|
1506 |
-
#. Description of the plugin/theme
|
1507 |
-
msgid "Checks your blog for broken links and missing images and notifies you on the dashboard if any are found."
|
1508 |
-
msgstr "Verifica o blog procurando os links e imagens em falta, informa no Painel do WordPress os resultados da verificação."
|
1509 |
-
|
1 |
# Copyright (C) 2010 Janis Elsts
|
2 |
# This file is distributed under the same license as the Broken Link Checker package.
|
3 |
+
# Tradução em português pt_PT do plugin Broken Link Checker Pro 1.3 - 02/08/2011
|
4 |
# Autor: PedroDM - <pm[at]mowster[dot]net>
|
5 |
# Website: http://jobs.mowster.net/ - <jobs@mowster.net>
|
6 |
#
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: Broken Link Checker PT\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2011-08-02 13:46-0000\n"
|
12 |
"PO-Revision-Date: \n"
|
13 |
+
"Last-Translator: Janis Elsts <whiteshadow@w-shadow.com>\n"
|
14 |
+
"Language-Team: mwJobs | http://jobs.mowster.net <jobs@mowster.net>\n"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
204 |
|
205 |
#: core/core.php:892
|
206 |
#: core/core.php:938
|
207 |
+
#: core/core.php:2743
|
208 |
#, php-format
|
209 |
msgid "%s seconds"
|
210 |
msgstr "%s segundos"
|
280 |
msgstr "Verificar as seguintes URL personalizadas (uma por linha):"
|
281 |
|
282 |
#: core/core.php:1283
|
283 |
+
#: core/core.php:1364
|
284 |
+
#: core/core.php:1396
|
285 |
#, php-format
|
286 |
msgid "Database error : %s"
|
287 |
msgstr "Erro na Base de dados: %s"
|
288 |
|
289 |
+
#: core/core.php:1346
|
290 |
msgid "You must enter a filter name!"
|
291 |
msgstr "Deve introduzir um nome para o filtro!"
|
292 |
|
293 |
+
#: core/core.php:1350
|
294 |
msgid "Invalid search query."
|
295 |
msgstr "Procura inválida."
|
296 |
|
297 |
+
#: core/core.php:1359
|
298 |
#, php-format
|
299 |
msgid "Filter \"%s\" created"
|
300 |
msgstr "Filtro \"%s\" criado"
|
301 |
|
302 |
+
#: core/core.php:1386
|
303 |
msgid "Filter ID not specified."
|
304 |
msgstr "ID do Filtro não especificado."
|
305 |
|
306 |
+
#: core/core.php:1393
|
307 |
msgid "Filter deleted"
|
308 |
msgstr "Filtro eliminado"
|
309 |
|
310 |
+
#: core/core.php:1441
|
311 |
#, php-format
|
312 |
msgid "Replaced %d redirect with a direct link"
|
313 |
msgid_plural "Replaced %d redirects with direct links"
|
314 |
msgstr[0] "Substituído %d redirect com link directo"
|
315 |
msgstr[1] "Substituídos %d redirects com links directos"
|
316 |
|
317 |
+
#: core/core.php:1452
|
318 |
#, php-format
|
319 |
msgid "Failed to fix %d redirect"
|
320 |
msgid_plural "Failed to fix %d redirects"
|
321 |
msgstr[0] "Não foi possível reparar %d redirect"
|
322 |
msgstr[1] "Não foi possível reparar %d redirects"
|
323 |
|
324 |
+
#: core/core.php:1462
|
325 |
msgid "None of the selected links are redirects!"
|
326 |
msgstr "Nenhum dos links seleccionados são redirects!"
|
327 |
|
328 |
+
#: core/core.php:1541
|
329 |
#, php-format
|
330 |
msgid "%d link updated."
|
331 |
msgid_plural "%d links updated."
|
332 |
msgstr[0] "%d link actualizado."
|
333 |
msgstr[1] "%d links actualizados."
|
334 |
|
335 |
+
#: core/core.php:1552
|
336 |
#, php-format
|
337 |
msgid "Failed to update %d link."
|
338 |
msgid_plural "Failed to update %d links."
|
339 |
msgstr[0] "Erro a actualizar %d link."
|
340 |
msgstr[1] "Erro a actualizar %d links."
|
341 |
|
342 |
+
#: core/core.php:1606
|
343 |
#, php-format
|
344 |
msgid "%d link removed"
|
345 |
msgid_plural "%d links removed"
|
346 |
msgstr[0] "%d link eliminado"
|
347 |
msgstr[1] "%d links eliminados"
|
348 |
|
349 |
+
#: core/core.php:1617
|
350 |
#, php-format
|
351 |
msgid "Failed to remove %d link"
|
352 |
msgid_plural "Failed to remove %d links"
|
353 |
msgstr[0] "Erro a remover %d link"
|
354 |
msgstr[1] "Erro a remover %d links"
|
355 |
|
356 |
+
#: core/core.php:1726
|
357 |
#, php-format
|
358 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
359 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
360 |
msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessita de efectua-lo manualmente."
|
361 |
msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de efectua-lo manualmente."
|
362 |
|
363 |
+
#: core/core.php:1747
|
364 |
msgid "Didn't find anything to delete!"
|
365 |
msgstr "Não foi encontrado nada para apagar!"
|
366 |
|
367 |
+
#: core/core.php:1775
|
368 |
#, php-format
|
369 |
msgid "%d link scheduled for rechecking"
|
370 |
msgid_plural "%d links scheduled for rechecking"
|
371 |
msgstr[0] "%d link agendado para verificação"
|
372 |
msgstr[1] "%d links agendados para verificação"
|
373 |
|
374 |
+
#: core/core.php:1820
|
375 |
+
#: core/core.php:2424
|
376 |
msgid "This link was manually marked as working by the user."
|
377 |
msgstr "Este link foi marcado manualmente como válido por outro utilizador."
|
378 |
|
379 |
+
#: core/core.php:1827
|
380 |
#, php-format
|
381 |
msgid "Couldn't modify link %d"
|
382 |
msgstr "Oops, impossível modificar o link %d"
|
383 |
|
384 |
+
#: core/core.php:1838
|
385 |
#, php-format
|
386 |
msgid "%d link marked as not broken"
|
387 |
msgid_plural "%d links marked as not broken"
|
388 |
msgstr[0] "%d link marcado como funcional"
|
389 |
msgstr[1] "%d links marcados como funcionais"
|
390 |
|
391 |
+
#: core/core.php:1877
|
392 |
msgid "Table columns"
|
393 |
msgstr "Colunas da Tabela"
|
394 |
|
395 |
+
#: core/core.php:1896
|
396 |
msgid "Show on screen"
|
397 |
msgstr "Mostrar no ecrán"
|
398 |
|
399 |
+
#: core/core.php:1903
|
400 |
msgid "links"
|
401 |
msgstr "links"
|
402 |
|
403 |
+
#: core/core.php:1904
|
404 |
msgid "Apply"
|
405 |
msgstr "Aplicar"
|
406 |
|
407 |
+
#: core/core.php:1908
|
408 |
msgid "Misc"
|
409 |
msgstr "Vários"
|
410 |
|
411 |
+
#: core/core.php:1923
|
412 |
#, php-format
|
413 |
msgid "Highlight links broken for at least %s days"
|
414 |
msgstr "Sublinhar links offline pelo menos por %s dias"
|
415 |
|
416 |
+
#: core/core.php:1932
|
417 |
msgid "Color-code status codes"
|
418 |
msgstr "Cor-código status códigos"
|
419 |
|
420 |
+
#: core/core.php:1949
|
421 |
+
#: core/core.php:2409
|
422 |
+
#: core/core.php:2445
|
423 |
+
#: core/core.php:2508
|
424 |
msgid "You're not allowed to do that!"
|
425 |
msgstr "Não permitido!"
|
426 |
|
427 |
+
#: core/core.php:2290
|
428 |
msgid "View broken links"
|
429 |
msgstr "Ver links offline"
|
430 |
|
431 |
+
#: core/core.php:2291
|
432 |
#, php-format
|
433 |
msgid "Found %d broken link"
|
434 |
msgid_plural "Found %d broken links"
|
435 |
msgstr[0] "Encontrado %d Link offline"
|
436 |
msgstr[1] "Encontrados %d Links offline"
|
437 |
|
438 |
+
#: core/core.php:2297
|
439 |
msgid "No broken links found."
|
440 |
msgstr "Não existem links offline."
|
441 |
|
442 |
+
#: core/core.php:2304
|
443 |
#, php-format
|
444 |
msgid "%d URL in the work queue"
|
445 |
msgid_plural "%d URLs in the work queue"
|
446 |
msgstr[0] "%d URL em espera"
|
447 |
msgstr[1] "%d URLs em espera"
|
448 |
|
449 |
+
#: core/core.php:2307
|
450 |
msgid "No URLs in the work queue."
|
451 |
msgstr "Não existem URL em espera para verificação."
|
452 |
|
453 |
+
#: core/core.php:2313
|
454 |
#, php-format
|
455 |
msgid "Detected %d unique URL"
|
456 |
msgid_plural "Detected %d unique URLs"
|
457 |
msgstr[0] "Detectada %d URL única"
|
458 |
msgstr[1] "Detectadas %d URL únicas"
|
459 |
|
460 |
+
#: core/core.php:2314
|
461 |
#, php-format
|
462 |
msgid "in %d link"
|
463 |
msgid_plural "in %d links"
|
464 |
msgstr[0] "em %d link"
|
465 |
msgstr[1] "em %d links"
|
466 |
|
467 |
+
#: core/core.php:2319
|
468 |
msgid "and still searching..."
|
469 |
msgstr "e procurando..."
|
470 |
|
471 |
+
#: core/core.php:2325
|
472 |
msgid "Searching your blog for links..."
|
473 |
msgstr "Procurando links..."
|
474 |
|
475 |
+
#: core/core.php:2327
|
476 |
msgid "No links detected."
|
477 |
msgstr "Nenhuns links encontrados."
|
478 |
|
479 |
+
#: core/core.php:2353
|
480 |
#: includes/links.php:831
|
481 |
msgid "Unknown"
|
482 |
msgstr "Desconhecido"
|
483 |
|
484 |
+
#: core/core.php:2417
|
485 |
+
#: core/core.php:2455
|
486 |
+
#: core/core.php:2518
|
487 |
#, php-format
|
488 |
msgid "Oops, I can't find the link %d"
|
489 |
msgstr "Oops, não é possível encontrar o link %d"
|
490 |
|
491 |
+
#: core/core.php:2430
|
492 |
msgid "Oops, couldn't modify the link!"
|
493 |
msgstr "Oops, não é possível modificar o link!"
|
494 |
|
495 |
+
#: core/core.php:2433
|
496 |
+
#: core/core.php:2544
|
497 |
msgid "Error : link_id not specified"
|
498 |
msgstr "Erro: link_id não especificado"
|
499 |
|
500 |
+
#: core/core.php:2465
|
501 |
msgid "Oops, the new URL is invalid!"
|
502 |
msgstr "Oops, a nova URL não é válida"
|
503 |
|
504 |
+
#: core/core.php:2476
|
505 |
+
#: core/core.php:2527
|
506 |
msgid "An unexpected error occured!"
|
507 |
msgstr "Ocorreu um erro inesperado!"
|
508 |
|
509 |
+
#: core/core.php:2494
|
510 |
msgid "Error : link_id or new_url not specified"
|
511 |
msgstr "Erro: link_id ou new_url não especificado"
|
512 |
|
513 |
+
#: core/core.php:2553
|
514 |
msgid "You don't have sufficient privileges to access this information!"
|
515 |
msgstr "Não tem previlégios suficientes para aceder a esta informação!"
|
516 |
|
517 |
+
#: core/core.php:2566
|
518 |
msgid "Error : link ID not specified"
|
519 |
msgstr "Erro: link ID não especificado"
|
520 |
|
521 |
+
#: core/core.php:2580
|
522 |
#, php-format
|
523 |
msgid "Failed to load link details (%s)"
|
524 |
msgstr "Erro a carregar os detalhes do link (%s)"
|
525 |
|
526 |
+
#: core/core.php:2633
|
527 |
msgid "Broken Link Checker"
|
528 |
msgstr "Links offline"
|
529 |
|
530 |
+
#: core/core.php:2652
|
531 |
msgid "PHP version"
|
532 |
msgstr "Versão PHP"
|
533 |
|
534 |
+
#: core/core.php:2658
|
535 |
msgid "MySQL version"
|
536 |
msgstr "Versão MySQL"
|
537 |
|
538 |
+
#: core/core.php:2671
|
539 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
540 |
msgstr "Versão de CURL obsoleta. A detecção de redirects pode não funcionar correctamente."
|
541 |
|
542 |
+
#: core/core.php:2683
|
543 |
+
#: core/core.php:2699
|
544 |
+
#: core/core.php:2704
|
545 |
msgid "Not installed"
|
546 |
msgstr "Não instalado"
|
547 |
|
548 |
+
#: core/core.php:2686
|
549 |
msgid "CURL version"
|
550 |
msgstr "Versão CURL"
|
551 |
|
552 |
+
#: core/core.php:2692
|
553 |
msgid "Installed"
|
554 |
msgstr "Instalado"
|
555 |
|
556 |
+
#: core/core.php:2705
|
557 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
558 |
msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
|
559 |
|
560 |
+
#: core/core.php:2716
|
561 |
msgid "On"
|
562 |
msgstr "Activado"
|
563 |
|
564 |
+
#: core/core.php:2717
|
565 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
566 |
msgstr "Os redirects podem ser detectados como links offline quando o safe_mode está habilitado."
|
567 |
|
568 |
+
#: core/core.php:2722
|
569 |
+
#: core/core.php:2736
|
570 |
msgid "Off"
|
571 |
msgstr "Desactivado"
|
572 |
|
573 |
+
#: core/core.php:2730
|
574 |
#, php-format
|
575 |
msgid "On ( %s )"
|
576 |
msgstr "Activado ( %s )"
|
577 |
|
578 |
+
#: core/core.php:2731
|
579 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
580 |
msgstr "Os redirects podem ser considerados links offline quando o open_basedir está activo."
|
581 |
|
582 |
+
#: core/core.php:2760
|
583 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
584 |
msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
|
585 |
|
586 |
+
#: core/core.php:2831
|
587 |
#, php-format
|
588 |
msgid "[%s] Broken links detected"
|
589 |
msgstr "[%s] Links offline encontrados"
|
590 |
|
591 |
+
#: core/core.php:2837
|
592 |
#, php-format
|
593 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
594 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
595 |
msgstr[0] "Links offline detectou %d novo link sem ligação."
|
596 |
msgstr[1] "Links offline detectou %d novos links sem ligação."
|
597 |
|
598 |
+
#: core/core.php:2852
|
599 |
#, php-format
|
600 |
msgid "Here's a list of the first %d broken links:"
|
601 |
msgid_plural "Here's a list of the first %d broken links:"
|
602 |
msgstr[0] "Lista do primeiro %d link sem ligação:"
|
603 |
msgstr[1] "Lista dos primeiros %d links sem ligação:"
|
604 |
|
605 |
+
#: core/core.php:2860
|
606 |
msgid "Here's a list of the new broken links: "
|
607 |
msgstr "Novos links offline:"
|
608 |
|
609 |
+
#: core/core.php:2872
|
610 |
#, php-format
|
611 |
msgid "Link text : %s"
|
612 |
msgstr "Texto do Link : %s"
|
613 |
|
614 |
+
#: core/core.php:2873
|
615 |
#, php-format
|
616 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
617 |
msgstr "Link URL : <a href=\"%s\">%s</a>"
|
618 |
|
619 |
+
#: core/core.php:2874
|
620 |
#, php-format
|
621 |
msgid "Source : %s"
|
622 |
msgstr "Fonte : %s"
|
623 |
|
624 |
+
#: core/core.php:2888
|
625 |
msgid "You can see all broken links here:"
|
626 |
msgstr "Links offline:"
|
627 |
|
752 |
msgstr[0] "%d '%s' foi apagado"
|
753 |
msgstr[1] "%d '%s' foram apagados"
|
754 |
|
755 |
+
#: includes/containers.php:873
|
756 |
+
#: includes/containers.php:891
|
757 |
#, php-format
|
758 |
msgid "Container type '%s' not recognized"
|
759 |
msgstr "Recipiente tipo '%s' não foi reconhecido"
|
875 |
msgstr "Resultados da procura"
|
876 |
|
877 |
#: includes/link-query.php:55
|
878 |
+
#: includes/link-query.php:102
|
879 |
msgid "No links found for your query"
|
880 |
msgstr "Sem resultados"
|
881 |
|
1102 |
msgid "Return to WordPress Dashboard"
|
1103 |
msgstr "Regressar ao Painel"
|
1104 |
|
1105 |
+
#: includes/admin/sidebar.php:50
|
1106 |
+
msgid "More plugins by Janis Elsts"
|
1107 |
+
msgstr "Mais plugins de Janis Elsts"
|
1108 |
+
|
1109 |
#: includes/admin/table-printer.php:150
|
1110 |
msgid "Compact View"
|
1111 |
msgstr "Visão compacta"
|
1507 |
msgid "Custom field"
|
1508 |
msgstr "Campo personalizado"
|
1509 |
|
|
|
|
|
|
|
|
modules/containers/blogroll.php
CHANGED
@@ -44,7 +44,7 @@ class blcBookmark extends blcContainer{
|
|
44 |
$actions = array();
|
45 |
if ( current_user_can('manage_links') ) {
|
46 |
$actions['edit'] = '<span class="edit"><a href="' . $this->get_edit_url() . '" title="' . esc_attr(__('Edit this bookmark', 'broken-link-checker')) . '">' . __('Edit') . '</a>';
|
47 |
-
$actions['delete'] = "<span class='delete'><a class='submitdelete' href='" . esc_url($delete_url) . "' onclick=\"if ( confirm('" .
|
48 |
}
|
49 |
|
50 |
return $actions;
|
44 |
$actions = array();
|
45 |
if ( current_user_can('manage_links') ) {
|
46 |
$actions['edit'] = '<span class="edit"><a href="' . $this->get_edit_url() . '" title="' . esc_attr(__('Edit this bookmark', 'broken-link-checker')) . '">' . __('Edit') . '</a>';
|
47 |
+
$actions['delete'] = "<span class='delete'><a class='submitdelete' href='" . esc_url($delete_url) . "' onclick=\"if ( confirm('" . esc_js(sprintf( __("You are about to delete this link '%s'\n 'Cancel' to stop, 'OK' to delete."), $bookmark->link_name)) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
|
48 |
}
|
49 |
|
50 |
return $actions;
|
modules/extras/embed-parser-base.php
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
if ( !class_exists('blcEmbedParserBase') ):
|
9 |
|
10 |
/**
|
11 |
-
* Base class for
|
12 |
*
|
13 |
* Sub-classes should override the link_url_from_src() method and set the $url_search_string,
|
14 |
* $short_title and $long_title properties to meaningful values.
|
@@ -36,7 +36,7 @@ class blcEmbedParserBase extends blcParser {
|
|
36 |
$instances = array();
|
37 |
|
38 |
//Find likely-looking <embed> elements
|
39 |
-
$embeds =
|
40 |
foreach($embeds as $embed){
|
41 |
//Do we know how to handle this embed? (first-pass verification)
|
42 |
if ( strpos($embed['attributes']['src'], $this->url_search_string) === false ){
|
@@ -53,7 +53,7 @@ class blcEmbedParserBase extends blcParser {
|
|
53 |
$instance = new blcLinkInstance();
|
54 |
|
55 |
$instance->set_parser($this);
|
56 |
-
$instance->raw_url = $embed['
|
57 |
$instance->link_text = '[' . $this->short_title .']';
|
58 |
|
59 |
$link_obj = new blcLink($url); //Creates or loads the link
|
@@ -65,6 +65,48 @@ class blcEmbedParserBase extends blcParser {
|
|
65 |
return $instances;
|
66 |
}
|
67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
/**
|
69 |
* Remove all occurences of the specified embed from a string.
|
70 |
*
|
8 |
if ( !class_exists('blcEmbedParserBase') ):
|
9 |
|
10 |
/**
|
11 |
+
* Base class for embedded video/audio parsers.
|
12 |
*
|
13 |
* Sub-classes should override the link_url_from_src() method and set the $url_search_string,
|
14 |
* $short_title and $long_title properties to meaningful values.
|
36 |
$instances = array();
|
37 |
|
38 |
//Find likely-looking <embed> elements
|
39 |
+
$embeds = $this->extract_embeds($content);
|
40 |
foreach($embeds as $embed){
|
41 |
//Do we know how to handle this embed? (first-pass verification)
|
42 |
if ( strpos($embed['attributes']['src'], $this->url_search_string) === false ){
|
53 |
$instance = new blcLinkInstance();
|
54 |
|
55 |
$instance->set_parser($this);
|
56 |
+
$instance->raw_url = $embed['embed_code'];
|
57 |
$instance->link_text = '[' . $this->short_title .']';
|
58 |
|
59 |
$link_obj = new blcLink($url); //Creates or loads the link
|
65 |
return $instances;
|
66 |
}
|
67 |
|
68 |
+
/**
|
69 |
+
* Extract embedded elements from a HTML string.
|
70 |
+
*
|
71 |
+
* This function returns an array of <embed> elements found in the input
|
72 |
+
* string. Only <embed>'s that are inside <object>'s are considered. Embeds
|
73 |
+
* without a 'src' attribute are skipped.
|
74 |
+
*
|
75 |
+
* Each array item has the same basic structure as the array items
|
76 |
+
* returned by blcUtility::extract_tags(), plus an additional 'embed_code' key
|
77 |
+
* that contains the full HTML code for the entire <object> + <embed> structure.
|
78 |
+
*
|
79 |
+
* @uses blcUtility::extract_tags() This function is a simple wrapper around extract_tags()
|
80 |
+
*
|
81 |
+
* @param string $html
|
82 |
+
* @return array
|
83 |
+
*/
|
84 |
+
function extract_embeds($html){
|
85 |
+
$results = array();
|
86 |
+
|
87 |
+
//remove all <code></code> blocks first
|
88 |
+
$html = preg_replace('/<code[^>]*>.+?<\/code>/si', ' ', $html);
|
89 |
+
|
90 |
+
//Find likely-looking <object> elements
|
91 |
+
$objects = blcUtility::extract_tags($html, 'object', false, true);
|
92 |
+
foreach($objects as $candidate){
|
93 |
+
//Find the <embed> tag
|
94 |
+
$embed = blcUtility::extract_tags($candidate['full_tag'], 'embed', false);
|
95 |
+
if ( empty($embed)) continue;
|
96 |
+
$embed = reset($embed); //Take the first (and only) found <embed> element
|
97 |
+
|
98 |
+
if ( empty($embed['attributes']['src']) ){
|
99 |
+
continue;
|
100 |
+
}
|
101 |
+
|
102 |
+
$embed['embed_code'] = $candidate['full_tag'];
|
103 |
+
|
104 |
+
$results[] = $embed;
|
105 |
+
}
|
106 |
+
|
107 |
+
return $results;
|
108 |
+
}
|
109 |
+
|
110 |
/**
|
111 |
* Remove all occurences of the specified embed from a string.
|
112 |
*
|
modules/extras/mediafire.php
CHANGED
@@ -134,11 +134,12 @@ class blcMediaFireChecker extends blcChecker {
|
|
134 |
*/
|
135 |
function head($url){
|
136 |
//Only consider transports that allow redirection to be disabled.
|
137 |
-
|
|
|
138 |
$transport = new WP_Http_ExtHttp();
|
139 |
-
} else if ( true === WP_Http_Curl::test($args) ) {
|
140 |
$transport = new WP_Http_Curl();
|
141 |
-
} else if ( true === WP_Http_Fsockopen::test($args) ) {
|
142 |
$transport = new WP_Http_Fsockopen();
|
143 |
} else {
|
144 |
return new WP_Error(
|
134 |
*/
|
135 |
function head($url){
|
136 |
//Only consider transports that allow redirection to be disabled.
|
137 |
+
$args = array();
|
138 |
+
if ( class_exists('WP_Http_ExtHttp') && (true === WP_Http_ExtHttp::test($args)) ) {
|
139 |
$transport = new WP_Http_ExtHttp();
|
140 |
+
} else if ( class_exists('WP_Http_Curl') && (true === WP_Http_Curl::test($args)) ) {
|
141 |
$transport = new WP_Http_Curl();
|
142 |
+
} else if ( class_exists('WP_Http_Curl') && (true === WP_Http_Fsockopen::test($args)) ) {
|
143 |
$transport = new WP_Http_Fsockopen();
|
144 |
} else {
|
145 |
return new WP_Error(
|
modules/extras/youtube-embed.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Plugin Name: Embedded YouTube videos
|
4 |
Description: Parse embedded videos from YouTube
|
5 |
Version: 1.0
|
6 |
Author: Janis Elsts
|
@@ -9,6 +9,8 @@ ModuleCategory: parser
|
|
9 |
ModuleClassName: blcYouTubeEmbed
|
10 |
ModuleContext: on-demand
|
11 |
ModuleLazyInit: true
|
|
|
|
|
12 |
*/
|
13 |
|
14 |
if ( !class_exists('blcEmbedParserBase') ){
|
1 |
<?php
|
2 |
/*
|
3 |
+
Plugin Name: Embedded YouTube videos (old embed code)
|
4 |
Description: Parse embedded videos from YouTube
|
5 |
Version: 1.0
|
6 |
Author: Janis Elsts
|
9 |
ModuleClassName: blcYouTubeEmbed
|
10 |
ModuleContext: on-demand
|
11 |
ModuleLazyInit: true
|
12 |
+
|
13 |
+
ModulePriority: 110
|
14 |
*/
|
15 |
|
16 |
if ( !class_exists('blcEmbedParserBase') ){
|
modules/extras/youtube-iframe.php
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
Plugin Name: Embedded YouTube videos
|
4 |
+
Description: Parse embedded videos from YouTube
|
5 |
+
Version: 1.0
|
6 |
+
Author: Janis Elsts
|
7 |
+
|
8 |
+
ModuleCategory: parser
|
9 |
+
ModuleClassName: blcYouTubeIframe
|
10 |
+
ModuleContext: on-demand
|
11 |
+
ModuleLazyInit: true
|
12 |
+
|
13 |
+
ModulePriority: 120
|
14 |
+
*/
|
15 |
+
|
16 |
+
if ( !class_exists('blcEmbedParserBase') ){
|
17 |
+
require 'embed-parser-base.php';
|
18 |
+
}
|
19 |
+
|
20 |
+
class blcYouTubeIframe extends blcEmbedParserBase {
|
21 |
+
var $supported_formats = array('html');
|
22 |
+
|
23 |
+
function init(){
|
24 |
+
parent::init();
|
25 |
+
$this->short_title = __('YouTube Video', 'broken-link-checker');
|
26 |
+
$this->long_title = __('Embedded YouTube video', 'broken-link-checker');
|
27 |
+
$this->url_search_string = 'youtube.com/embed/';
|
28 |
+
}
|
29 |
+
|
30 |
+
/**
|
31 |
+
* Extract embedded elements from a HTML string.
|
32 |
+
*
|
33 |
+
* Returns an array of IFrame elements found in the input string.
|
34 |
+
* Elements without a 'src' attribute are skipped.
|
35 |
+
*
|
36 |
+
* Each array item has the same basic structure as the array items
|
37 |
+
* returned by blcUtility::extract_tags(), plus an additional 'embed_code' key
|
38 |
+
* that contains the full HTML code for the entire <ifram> tag.
|
39 |
+
*
|
40 |
+
* @uses blcUtility::extract_tags() This function is a simple wrapper around extract_tags()
|
41 |
+
*
|
42 |
+
* @param string $html
|
43 |
+
* @return array
|
44 |
+
*/
|
45 |
+
function extract_embeds($html){
|
46 |
+
$results = array();
|
47 |
+
|
48 |
+
//remove all <code></code> blocks first
|
49 |
+
$html = preg_replace('/<code[^>]*>.+?<\/code>/si', ' ', $html);
|
50 |
+
|
51 |
+
//Find likely-looking <object> elements
|
52 |
+
$iframes = blcUtility::extract_tags($html, 'iframe', false, true);
|
53 |
+
foreach($iframes as $embed){
|
54 |
+
if ( empty($embed['attributes']['src']) ){
|
55 |
+
continue;
|
56 |
+
}
|
57 |
+
|
58 |
+
$embed['embed_code'] = $embed['full_tag'];
|
59 |
+
|
60 |
+
$results[] = $embed;
|
61 |
+
}
|
62 |
+
|
63 |
+
return $results;
|
64 |
+
}
|
65 |
+
|
66 |
+
function link_url_from_src($src){
|
67 |
+
//Extract video ID from the SRC. The ID is always 11 characters.
|
68 |
+
$video_id = substr( end(explode('/', $src)), 0, 11 );
|
69 |
+
|
70 |
+
//Reconstruct the video permalink based on the ID
|
71 |
+
$url = 'http://www.youtube.com/watch?v='.$video_id;
|
72 |
+
|
73 |
+
return $url;
|
74 |
+
}
|
75 |
+
}
|
76 |
+
|
77 |
+
?>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
5 |
Requires at least: 3.2
|
6 |
Tested up to: 3.2.1
|
7 |
-
Stable tag: 1.3
|
8 |
|
9 |
This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
|
10 |
|
@@ -55,7 +55,7 @@ You can also click on the contents of the "Status" or "Link Text" columns to get
|
|
55 |
* Italian - [Gianni Diurno](http://gidibao.net/index.php/portfolio/) and [Giacomo Ross](http://www.luxemozione.com/) (alternative)
|
56 |
* Japanese - [ningendesu](http://ningendesu.com/)
|
57 |
* Korean - [MinHyeong Lim](http://ssamture.net/)
|
58 |
-
* Persian - Omid Sheerkavand
|
59 |
* Polish - [http://positionmaker.pl](http://positionmaker.pl/)
|
60 |
* Portuguese - [PedroDM](http://development.mowster.net/)
|
61 |
* Romanian - [Ovidiu](http://www.jibo.ro)
|
@@ -88,6 +88,13 @@ To upgrade your installation
|
|
88 |
|
89 |
== Changelog ==
|
90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
= 1.3 =
|
92 |
* Dropped PHP 4 support.
|
93 |
* Fixed a whole lot of PHP 5 related notices and strict-mode warnings.
|
4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
5 |
Requires at least: 3.2
|
6 |
Tested up to: 3.2.1
|
7 |
+
Stable tag: 1.3.1
|
8 |
|
9 |
This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
|
10 |
|
55 |
* Italian - [Gianni Diurno](http://gidibao.net/index.php/portfolio/) and [Giacomo Ross](http://www.luxemozione.com/) (alternative)
|
56 |
* Japanese - [ningendesu](http://ningendesu.com/)
|
57 |
* Korean - [MinHyeong Lim](http://ssamture.net/)
|
58 |
+
* Persian - [Omid Sheerkavand](http://qanal.ir/)
|
59 |
* Polish - [http://positionmaker.pl](http://positionmaker.pl/)
|
60 |
* Portuguese - [PedroDM](http://development.mowster.net/)
|
61 |
* Romanian - [Ovidiu](http://www.jibo.ro)
|
88 |
|
89 |
== Changelog ==
|
90 |
|
91 |
+
= 1.3.1 =
|
92 |
+
* Added support for the new YouTube embed code style. It needs to be explicitly enabled in options.
|
93 |
+
* Added credits link for the Persian language translator.
|
94 |
+
* Updated Portuguese translation.
|
95 |
+
* Updated German translation.
|
96 |
+
* Partial fix for Mediafire checker failing with a fatal error in some situations.
|
97 |
+
|
98 |
= 1.3 =
|
99 |
* Dropped PHP 4 support.
|
100 |
* Fixed a whole lot of PHP 5 related notices and strict-mode warnings.
|