Version Description
- Added a FileServe checker.
- Added Turkish translation.
- Added GoogleVideo and Megavideo embed support.
- Fixed Megaupload links being reported with an "Unknown error" message when it should be "Not found".
- Fixed a couple of bugs in the Rapidshare and MediaFire checkers.
- Updated German translation.
- Updated Italian translation.
- Updated Portuguese translation.
- The explanatory text for the broken link CSS and removed link CSS inputs can now be translated.
- Tested on WP 3.4-alpha-20291.
Download this release
Release Info
Developer | whiteshadow |
Plugin | Broken Link Checker |
Version | 1.5 |
Comparing to | |
See all releases |
Code changes from version 1.4 to 1.5
- broken-link-checker.php +1 -1
- core/core.php +16 -9
- css/links-page.css +17 -1
- css/options-page.css +2 -2
- images/googlevideo-embed.png +0 -0
- includes/admin/sidebar.php +39 -37
- includes/extra-strings.php +3 -0
- languages/broken-link-checker-de_DE.mo +0 -0
- languages/broken-link-checker-de_DE.po +232 -223
- languages/broken-link-checker-it_IT.mo +0 -0
- languages/broken-link-checker-it_IT.po +230 -219
- languages/broken-link-checker-pt_PT.mo +0 -0
- languages/broken-link-checker-pt_PT.po +867 -362
- languages/broken-link-checker-tr_TR.mo +0 -0
- languages/broken-link-checker-tr_TR.po +1902 -0
- languages/broken-link-checker.pot +691 -635
- modules/checkers/http.php +3 -2
- modules/extras/embed-parser-base.php +28 -14
- modules/extras/fileserve.php +147 -0
- modules/extras/googlevideo-embed.php +35 -0
- modules/extras/mediafire.php +7 -2
- modules/extras/megaupload.php +17 -3
- modules/extras/megavideo-embed.php +39 -0
- modules/extras/rapidshare.php +14 -17
- readme.txt +15 -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.
|
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.5
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/blog/
|
9 |
Text Domain: broken-link-checker
|
core/core.php
CHANGED
@@ -326,7 +326,7 @@ class wsBrokenLinkChecker {
|
|
326 |
|
327 |
//Make the Settings page link to the link list, and vice versa
|
328 |
add_screen_meta_link(
|
329 |
-
'blc-
|
330 |
__('More plugins by Janis Elsts', 'broken-link-checker'),
|
331 |
'http://w-shadow.com/MoreWpPlugins/',
|
332 |
$links_page_hook,
|
@@ -710,11 +710,13 @@ class wsBrokenLinkChecker {
|
|
710 |
if( isset($this->conf->options['broken_link_css']) )
|
711 |
echo $this->conf->options['broken_link_css'];
|
712 |
?></textarea>
|
713 |
-
<p class="description"
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
|
|
|
|
718 |
</div>
|
719 |
|
720 |
<p style="margin-bottom: 0.5em;">
|
@@ -739,9 +741,14 @@ class wsBrokenLinkChecker {
|
|
739 |
echo $this->conf->options['removed_link_css'];
|
740 |
?></textarea>
|
741 |
|
742 |
-
<p class="description"
|
743 |
-
|
744 |
-
|
|
|
|
|
|
|
|
|
|
|
745 |
</p>
|
746 |
</div>
|
747 |
|
326 |
|
327 |
//Make the Settings page link to the link list, and vice versa
|
328 |
add_screen_meta_link(
|
329 |
+
'blc-more-plugins-link',
|
330 |
__('More plugins by Janis Elsts', 'broken-link-checker'),
|
331 |
'http://w-shadow.com/MoreWpPlugins/',
|
332 |
$links_page_hook,
|
710 |
if( isset($this->conf->options['broken_link_css']) )
|
711 |
echo $this->conf->options['broken_link_css'];
|
712 |
?></textarea>
|
713 |
+
<p class="description"><?php
|
714 |
+
printf(
|
715 |
+
__('Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet.', 'broken-link-checker'),
|
716 |
+
' href="#" class="broken_link" onclick="return false;"'
|
717 |
+
);
|
718 |
+
echo ' ', __('Click "Save Changes" to update example output.', 'broken-link-checker');
|
719 |
+
?></p>
|
720 |
</div>
|
721 |
|
722 |
<p style="margin-bottom: 0.5em;">
|
741 |
echo $this->conf->options['removed_link_css'];
|
742 |
?></textarea>
|
743 |
|
744 |
+
<p class="description"><?php
|
745 |
+
printf(
|
746 |
+
__('Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet.', 'broken-link-checker'),
|
747 |
+
' class="removed_link"'
|
748 |
+
);
|
749 |
+
echo ' ', __('Click "Save Changes" to update example output.', 'broken-link-checker');
|
750 |
+
?>
|
751 |
+
|
752 |
</p>
|
753 |
</div>
|
754 |
|
css/links-page.css
CHANGED
@@ -25,7 +25,7 @@ th.column-new-url {
|
|
25 |
}
|
26 |
|
27 |
th.column-status {
|
28 |
-
width:
|
29 |
}
|
30 |
|
31 |
th.column-new-link-text {
|
@@ -351,3 +351,19 @@ div.search-box{
|
|
351 |
#s_link_type optgroup option {
|
352 |
margin-left: 1em;
|
353 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
26 |
|
27 |
th.column-status {
|
28 |
+
width: 12em;
|
29 |
}
|
30 |
|
31 |
th.column-new-link-text {
|
351 |
#s_link_type optgroup option {
|
352 |
margin-left: 1em;
|
353 |
}
|
354 |
+
|
355 |
+
/* Miscellaneous styles */
|
356 |
+
|
357 |
+
#blc-more-plugins-link-wrap {
|
358 |
+
background: #00C31F none;
|
359 |
+
}
|
360 |
+
|
361 |
+
#screen-meta-links #blc-more-plugins-link {
|
362 |
+
font-weight: bold;
|
363 |
+
color: #DEFFD8;
|
364 |
+
text-shadow: none;
|
365 |
+
}
|
366 |
+
|
367 |
+
#screen-meta-links #blc-more-plugins-link-wrap a.show-settings:hover {
|
368 |
+
color: white;
|
369 |
+
}
|
css/options-page.css
CHANGED
@@ -16,12 +16,12 @@
|
|
16 |
margin-right: 267px;
|
17 |
}
|
18 |
|
19 |
-
#
|
20 |
border-color: green !important;
|
21 |
border-width: 2px;
|
22 |
}
|
23 |
|
24 |
-
#
|
25 |
color: green;
|
26 |
}
|
27 |
|
16 |
margin-right: 267px;
|
17 |
}
|
18 |
|
19 |
+
#advertising {
|
20 |
border-color: green !important;
|
21 |
border-width: 2px;
|
22 |
}
|
23 |
|
24 |
+
#advertising h3 {
|
25 |
color: green;
|
26 |
}
|
27 |
|
images/googlevideo-embed.png
ADDED
Binary file
|
includes/admin/sidebar.php
CHANGED
@@ -1,35 +1,3 @@
|
|
1 |
-
<div id="donate" class="postbox">
|
2 |
-
<h3 class="hndle"><?php _e('Donate $10, $20 or $50!', 'broken-link-checker'); ?></h3>
|
3 |
-
<div class="inside">
|
4 |
-
<p><?php
|
5 |
-
_e('If you like this plugin, please donate to support development and maintenance!', 'broken-link-checker');
|
6 |
-
?></p>
|
7 |
-
|
8 |
-
<form style="text-align: center;" action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
9 |
-
<input type="hidden" name="cmd" value="_donations">
|
10 |
-
<input type="hidden" name="business" value="G3GGNXHBSHKYC">
|
11 |
-
<input type="hidden" name="lc" value="US">
|
12 |
-
<input type="hidden" name="item_name" value="Broken Link Checker">
|
13 |
-
<input type="hidden" name="no_note" value="1">
|
14 |
-
<input type="hidden" name="no_shipping" value="1">
|
15 |
-
<input type="hidden" name="currency_code" value="USD">
|
16 |
-
<input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHosted">
|
17 |
-
|
18 |
-
<input type="hidden" name="return" value="<?php
|
19 |
-
echo esc_attr(admin_url('options-general.php?page=link-checker-settings&donated=1'));
|
20 |
-
?>" />
|
21 |
-
<input type="hidden" name="cbt" value="<?php
|
22 |
-
echo esc_attr(__('Return to WordPress Dashboard', 'broken-link-checker'));
|
23 |
-
?>" />
|
24 |
-
<input type="hidden" name="cancel_return" value="<?php
|
25 |
-
echo esc_attr(admin_url('options-general.php?page=link-checker-settings&donation_canceled=1'));
|
26 |
-
?>" />
|
27 |
-
|
28 |
-
<input type="image" src="https://www.sandbox.paypal.com/en_US/GB/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online." style="max-width:170px;height:47px;">
|
29 |
-
</form>
|
30 |
-
</div>
|
31 |
-
</div>
|
32 |
-
|
33 |
<?php
|
34 |
if ( !function_exists('fetch_feed') ){
|
35 |
include_once(ABSPATH . WPINC . '/feed.php');
|
@@ -37,9 +5,9 @@ if ( !function_exists('fetch_feed') ){
|
|
37 |
if ( function_exists('fetch_feed') ):
|
38 |
$feed_url = 'http://w-shadow.com/files/blc-plugin-links.rss';
|
39 |
$num_items = 3;
|
40 |
-
|
41 |
$feed = fetch_feed($feed_url);
|
42 |
-
if ( !is_wp_error($feed) ):
|
43 |
?>
|
44 |
<style>
|
45 |
#advertising .inside {
|
@@ -61,9 +29,43 @@ if ( function_exists('fetch_feed') ):
|
|
61 |
}
|
62 |
?>
|
63 |
</ul>
|
64 |
-
</div>
|
65 |
</div>
|
66 |
<?php
|
67 |
-
endif;
|
68 |
-
endif;
|
69 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
if ( !function_exists('fetch_feed') ){
|
3 |
include_once(ABSPATH . WPINC . '/feed.php');
|
5 |
if ( function_exists('fetch_feed') ):
|
6 |
$feed_url = 'http://w-shadow.com/files/blc-plugin-links.rss';
|
7 |
$num_items = 3;
|
8 |
+
|
9 |
$feed = fetch_feed($feed_url);
|
10 |
+
if ( !is_wp_error($feed) ):
|
11 |
?>
|
12 |
<style>
|
13 |
#advertising .inside {
|
29 |
}
|
30 |
?>
|
31 |
</ul>
|
32 |
+
</div>
|
33 |
</div>
|
34 |
<?php
|
35 |
+
endif;
|
36 |
+
endif;
|
37 |
?>
|
38 |
+
|
39 |
+
<div id="donate" class="postbox">
|
40 |
+
<h3 class="hndle"><?php _e('Donate $10, $20 or $50!', 'broken-link-checker'); ?></h3>
|
41 |
+
<div class="inside">
|
42 |
+
<p><?php
|
43 |
+
_e('If you like this plugin, please donate to support development and maintenance!', 'broken-link-checker');
|
44 |
+
?></p>
|
45 |
+
|
46 |
+
<form style="text-align: center;" action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
47 |
+
<input type="hidden" name="cmd" value="_donations">
|
48 |
+
<input type="hidden" name="business" value="G3GGNXHBSHKYC">
|
49 |
+
<input type="hidden" name="lc" value="US">
|
50 |
+
<input type="hidden" name="item_name" value="Broken Link Checker">
|
51 |
+
<input type="hidden" name="no_note" value="1">
|
52 |
+
<input type="hidden" name="no_shipping" value="1">
|
53 |
+
<input type="hidden" name="currency_code" value="USD">
|
54 |
+
<input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHosted">
|
55 |
+
|
56 |
+
<input type="hidden" name="return" value="<?php
|
57 |
+
echo esc_attr(admin_url('options-general.php?page=link-checker-settings&donated=1'));
|
58 |
+
?>" />
|
59 |
+
<input type="hidden" name="cbt" value="<?php
|
60 |
+
echo esc_attr(__('Return to WordPress Dashboard', 'broken-link-checker'));
|
61 |
+
?>" />
|
62 |
+
<input type="hidden" name="cancel_return" value="<?php
|
63 |
+
echo esc_attr(admin_url('options-general.php?page=link-checker-settings&donation_canceled=1'));
|
64 |
+
?>" />
|
65 |
+
|
66 |
+
<input type="image" src="https://www.sandbox.paypal.com/en_US/GB/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online." style="max-width:170px;height:47px;">
|
67 |
+
</form>
|
68 |
+
</div>
|
69 |
+
</div>
|
70 |
+
|
71 |
+
|
includes/extra-strings.php
CHANGED
@@ -4,9 +4,12 @@ _x("Blogroll items", "module name", "broken-link-checker");
|
|
4 |
_x("Comments", "module name", "broken-link-checker");
|
5 |
_x("Custom fields", "module name", "broken-link-checker");
|
6 |
_x("Embedded DailyMotion videos", "module name", "broken-link-checker");
|
|
|
|
|
7 |
_x("Embedded Vimeo videos", "module name", "broken-link-checker");
|
8 |
_x("Embedded YouTube videos", "module name", "broken-link-checker");
|
9 |
_x("Embedded YouTube videos (old embed code)", "module name", "broken-link-checker");
|
|
|
10 |
_x("HTML images", "module name", "broken-link-checker");
|
11 |
_x("HTML links", "module name", "broken-link-checker");
|
12 |
_x("MediaFire API", "module name", "broken-link-checker");
|
4 |
_x("Comments", "module name", "broken-link-checker");
|
5 |
_x("Custom fields", "module name", "broken-link-checker");
|
6 |
_x("Embedded DailyMotion videos", "module name", "broken-link-checker");
|
7 |
+
_x("Embedded GoogleVideo videos", "module name", "broken-link-checker");
|
8 |
+
_x("Embedded Megavideo videos", "module name", "broken-link-checker");
|
9 |
_x("Embedded Vimeo videos", "module name", "broken-link-checker");
|
10 |
_x("Embedded YouTube videos", "module name", "broken-link-checker");
|
11 |
_x("Embedded YouTube videos (old embed code)", "module name", "broken-link-checker");
|
12 |
+
_x("FileServe API", "module name", "broken-link-checker");
|
13 |
_x("HTML images", "module name", "broken-link-checker");
|
14 |
_x("HTML links", "module name", "broken-link-checker");
|
15 |
_x("MediaFire API", "module name", "broken-link-checker");
|
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: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -200,14 +200,14 @@ msgid "Comment"
|
|
200 |
msgstr "Kommentar"
|
201 |
|
202 |
# @ broken-link-checker
|
203 |
-
#: modules/containers/comment.php:
|
204 |
msgid "%d comment has been deleted."
|
205 |
msgid_plural "%d comments have been deleted."
|
206 |
msgstr[0] "%d Kommentar wurde gelöscht."
|
207 |
msgstr[1] "%d Kommentare wurde gelöscht."
|
208 |
|
209 |
# @ broken-link-checker
|
210 |
-
#: modules/containers/comment.php:
|
211 |
msgid "%d comment moved to the Trash."
|
212 |
msgid_plural "%d comments moved to the Trash."
|
213 |
msgstr[0] "%d Kommentar in den Papierkorb verschoben."
|
@@ -346,38 +346,38 @@ msgid "Embedded Vimeo video"
|
|
346 |
msgstr "Eingebettete Vimeo Videos"
|
347 |
|
348 |
# @ broken-link-checker
|
349 |
-
#: modules/extras/youtube.php:
|
350 |
-
#: modules/extras/youtube.php:
|
351 |
msgid "Video Not Found"
|
352 |
msgstr "Video nicht gefunden"
|
353 |
|
354 |
-
#: modules/extras/youtube.php:
|
355 |
msgid "Video Removed"
|
356 |
msgstr "Video entfernt"
|
357 |
|
358 |
-
#: modules/extras/youtube.php:
|
359 |
msgid "Invalid Video ID"
|
360 |
msgstr "Ungültige Video ID"
|
361 |
|
362 |
-
#: modules/extras/youtube.php:
|
363 |
msgid "Video OK"
|
364 |
msgstr "Video OK"
|
365 |
|
366 |
# @ broken-link-checker
|
367 |
-
#: modules/extras/youtube.php:
|
368 |
-
#: modules/extras/youtube.php:
|
369 |
msgid "OK"
|
370 |
msgstr "OK"
|
371 |
|
372 |
-
#: modules/extras/youtube.php:
|
373 |
msgid "Video status : %s%s"
|
374 |
msgstr "Video Status : %s%s"
|
375 |
|
376 |
-
#: modules/extras/youtube.php:
|
377 |
msgid "Video Restricted"
|
378 |
msgstr "Video mit Einschränkungen"
|
379 |
|
380 |
-
#: modules/extras/youtube.php:
|
381 |
msgid "Unknown YouTube API response received."
|
382 |
msgstr "Unbekannte Antwort der YouTube API erhalten."
|
383 |
|
@@ -390,17 +390,17 @@ msgid "API Error"
|
|
390 |
msgstr "API Fehler"
|
391 |
|
392 |
# @ default
|
393 |
-
#: core/init.php:
|
394 |
msgid "Once Weekly"
|
395 |
msgstr "Einmal wöchentlich"
|
396 |
|
397 |
# @ default
|
398 |
-
#: core/init.php:
|
399 |
msgid "Twice a Month"
|
400 |
msgstr "Zweimal im Monat"
|
401 |
|
402 |
# @ broken-link-checker
|
403 |
-
#: core/init.php:
|
404 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
405 |
msgstr "Broken Link Checker Installation fehlgeschlagen. Deaktivieren Sie das Plugin und aktivieren es anschliessend wieder."
|
406 |
|
@@ -422,695 +422,708 @@ msgid "Automatically expand the widget if broken links have been detected"
|
|
422 |
msgstr "Vergrössere Widget automatisch wenn fehlerhafte Links gefunden wurden"
|
423 |
|
424 |
# @ broken-link-checker
|
425 |
-
#: core/core.php:
|
426 |
msgid "Link Checker Settings"
|
427 |
msgstr "Link Checker Einstellungen"
|
428 |
|
429 |
# @ broken-link-checker
|
430 |
-
#: core/core.php:
|
431 |
msgid "Link Checker"
|
432 |
msgstr "Link Checker"
|
433 |
|
434 |
# @ broken-link-checker
|
435 |
-
#: core/core.php:
|
436 |
#: includes/link-query.php:26
|
437 |
msgid "Broken Links"
|
438 |
msgstr "Fehlerhafte Links"
|
439 |
|
440 |
# @ broken-link-checker
|
441 |
-
#: core/core.php:
|
442 |
msgid "View Broken Links"
|
443 |
msgstr "Fehlerhafte Links anschauen"
|
444 |
|
445 |
-
#: core/core.php:
|
446 |
msgid "Feedback"
|
447 |
msgstr "Feedback"
|
448 |
|
449 |
-
|
450 |
-
#:
|
451 |
-
msgid "
|
452 |
-
msgstr "
|
453 |
|
454 |
# @ broken-link-checker
|
455 |
-
#: core/core.php:
|
456 |
msgid "Go to Broken Links"
|
457 |
msgstr "Gehe zu fehlerhaften Links"
|
458 |
|
459 |
# @ default
|
460 |
-
#: core/core.php:
|
461 |
msgid "Settings"
|
462 |
msgstr "Einstellungen"
|
463 |
|
464 |
# @ broken-link-checker
|
465 |
-
#: core/core.php:
|
466 |
-
#: core/core.php:
|
467 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
468 |
msgstr "Error: Die Datenbanktabellen des Plugins sind nicht mehr aktuell! (Vorhandene Version: %d, neue Version: %d)"
|
469 |
|
470 |
# @ broken-link-checker
|
471 |
-
#: core/core.php:
|
472 |
-
#: core/core.php:
|
473 |
msgid "Try deactivating and then reactivating the plugin."
|
474 |
msgstr "Deaktivieren Sie das Plugin und aktivieren es anschliessend wieder."
|
475 |
|
476 |
# @ broken-link-checker
|
477 |
-
#: core/core.php:
|
478 |
msgid "Settings saved."
|
479 |
msgstr "Einstellungen gespeichert."
|
480 |
|
481 |
-
#: core/core.php:
|
482 |
msgid "Thank you for your donation!"
|
483 |
msgstr "Besten Dank für Ihre Spende!"
|
484 |
|
485 |
# @ broken-link-checker
|
486 |
-
#: core/core.php:
|
487 |
msgid "Complete site recheck started."
|
488 |
msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
|
489 |
|
490 |
# @ broken-link-checker
|
491 |
-
#: core/core.php:
|
492 |
msgid "Details"
|
493 |
msgstr "Details"
|
494 |
|
495 |
# @ broken-link-checker
|
496 |
-
#: core/core.php:
|
497 |
msgid "General"
|
498 |
msgstr "Allgemein"
|
499 |
|
500 |
# @ broken-link-checker
|
501 |
-
#: core/core.php:
|
502 |
msgid "Look For Links In"
|
503 |
msgstr "Suchen Sie nach Links in"
|
504 |
|
505 |
# @ broken-link-checker
|
506 |
-
#: core/core.php:
|
507 |
msgid "Which Links To Check"
|
508 |
msgstr "Welche Links überprüfen"
|
509 |
|
510 |
# @ broken-link-checker
|
511 |
-
#: core/core.php:
|
512 |
msgid "Protocols & APIs"
|
513 |
msgstr "Protokoll & Schnittstellen"
|
514 |
|
515 |
# @ broken-link-checker
|
516 |
-
#: core/core.php:
|
517 |
msgid "Advanced"
|
518 |
msgstr "Erweitert"
|
519 |
|
520 |
# @ broken-link-checker
|
521 |
-
#: core/core.php:
|
522 |
msgid "Broken Link Checker Options"
|
523 |
msgstr "Broken Link Checker Optionen"
|
524 |
|
525 |
# @ broken-link-checker
|
526 |
-
#: core/core.php:
|
527 |
-
#: includes/admin/table-printer.php:
|
528 |
msgid "Status"
|
529 |
msgstr "Status"
|
530 |
|
531 |
# @ broken-link-checker
|
532 |
-
#: core/core.php:
|
533 |
#: includes/admin/options-page-js.php:56
|
534 |
msgid "Show debug info"
|
535 |
msgstr "Debug Infos anzeigen"
|
536 |
|
537 |
# @ broken-link-checker
|
538 |
-
#: core/core.php:
|
539 |
msgid "Check each link"
|
540 |
msgstr "Überprüfe jeden Link"
|
541 |
|
542 |
# @ broken-link-checker
|
543 |
-
#: core/core.php:
|
544 |
msgid "Every %s hours"
|
545 |
msgstr "Alle %s Stunden"
|
546 |
|
547 |
# @ broken-link-checker
|
548 |
-
#: core/core.php:
|
549 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
550 |
msgstr "Vorhandene Links werden nach Ablauf der Zeit automatisch kontrolliert. Neue Links werden sofort geprüft."
|
551 |
|
552 |
# @ broken-link-checker
|
553 |
-
#: core/core.php:
|
554 |
msgid "E-mail notifications"
|
555 |
-
msgstr "
|
556 |
|
557 |
# @ broken-link-checker
|
558 |
-
#: core/core.php:
|
559 |
msgid "Send me e-mail notifications about newly detected broken links"
|
560 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
561 |
|
562 |
# @ broken-link-checker
|
563 |
-
#: core/core.php:
|
564 |
msgid "Link tweaks"
|
565 |
msgstr "Link Einstellungen"
|
566 |
|
567 |
# @ broken-link-checker
|
568 |
-
#: core/core.php:
|
569 |
msgid "Apply custom formatting to broken links"
|
570 |
msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
|
571 |
|
572 |
# @ broken-link-checker
|
573 |
-
#: core/core.php:
|
574 |
-
#: core/core.php:
|
575 |
msgid "Edit CSS"
|
576 |
msgstr "Bearbeite CSS"
|
577 |
|
578 |
# @ broken-link-checker
|
579 |
-
#: core/core.php:
|
580 |
msgid "Apply custom formatting to removed links"
|
581 |
msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
|
582 |
|
583 |
# @ broken-link-checker
|
584 |
-
#: core/core.php:
|
585 |
msgid "Stop search engines from following broken links"
|
586 |
msgstr "Stoppe Suchmaschinen aus folgenden fehlerhaften Links"
|
587 |
|
588 |
# @ broken-link-checker
|
589 |
-
#: core/core.php:
|
590 |
msgid "Look for links in"
|
591 |
msgstr "Suchen Sie nach Links in"
|
592 |
|
593 |
# @ broken-link-checker
|
594 |
-
#: core/core.php:
|
595 |
msgid "Post statuses"
|
596 |
msgstr "Beitrag Status"
|
597 |
|
598 |
# @ broken-link-checker
|
599 |
-
#: core/core.php:
|
600 |
msgid "Link types"
|
601 |
msgstr "Link Typen"
|
602 |
|
603 |
# @ broken-link-checker
|
604 |
-
#: core/core.php:
|
605 |
msgid "Error : All link parsers missing!"
|
606 |
msgstr "Fehler: Alle Link-Parser fehlen!"
|
607 |
|
608 |
# @ broken-link-checker
|
609 |
-
#: core/core.php:
|
610 |
msgid "Exclusion list"
|
611 |
msgstr "Ausschlussliste"
|
612 |
|
613 |
# @ broken-link-checker
|
614 |
-
#: core/core.php:
|
615 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
616 |
msgstr "URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
|
617 |
|
618 |
# @ broken-link-checker
|
619 |
-
#: core/core.php:
|
620 |
msgid "Check links using"
|
621 |
msgstr "Überprüfe Links"
|
622 |
|
623 |
# @ broken-link-checker
|
624 |
-
#: core/core.php:
|
625 |
#: includes/links.php:849
|
626 |
msgid "Timeout"
|
627 |
msgstr "Zeitüberschreitung"
|
628 |
|
629 |
# @ broken-link-checker
|
630 |
# @ default
|
631 |
-
#: core/core.php:
|
632 |
-
#: core/core.php:
|
633 |
-
#: core/core.php:
|
634 |
msgid "%s seconds"
|
635 |
msgstr "%s Sekunden"
|
636 |
|
637 |
# @ broken-link-checker
|
638 |
-
#: core/core.php:
|
639 |
msgid "Links that take longer than this to load will be marked as broken."
|
640 |
msgstr "Links die länger zum laden brauchen als hier eingetragen, gelten als fehlerhaft."
|
641 |
|
642 |
# @ broken-link-checker
|
643 |
-
#: core/core.php:
|
644 |
msgid "Link monitor"
|
645 |
msgstr "Link Monitor"
|
646 |
|
647 |
# @ broken-link-checker
|
648 |
-
#: core/core.php:
|
649 |
msgid "Run continuously while the Dashboard is open"
|
650 |
msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
|
651 |
|
652 |
# @ broken-link-checker
|
653 |
-
#: core/core.php:
|
654 |
msgid "Run hourly in the background"
|
655 |
msgstr "Stündlich im Hintergrund arbeiten"
|
656 |
|
657 |
# @ broken-link-checker
|
658 |
-
#: core/core.php:
|
659 |
msgid "Max. execution time"
|
660 |
msgstr "Max. Ausführungszeit"
|
661 |
|
662 |
# @ broken-link-checker
|
663 |
-
#: core/core.php:
|
664 |
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."
|
665 |
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."
|
666 |
|
667 |
# @ broken-link-checker
|
668 |
-
#: core/core.php:
|
669 |
msgid "Server load limit"
|
670 |
msgstr "Server Belastungsgrenze"
|
671 |
|
672 |
-
#: core/core.php:
|
673 |
msgid "Current load : %s"
|
674 |
msgstr "Aktuelle Belastung: %s"
|
675 |
|
676 |
# @ broken-link-checker
|
677 |
-
#: core/core.php:
|
678 |
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."
|
679 |
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."
|
680 |
|
681 |
# @ broken-link-checker
|
682 |
-
#: core/core.php:
|
683 |
msgid "Not available"
|
684 |
msgstr "Nicht verfügbar"
|
685 |
|
686 |
# @ broken-link-checker
|
687 |
-
#: core/core.php:
|
688 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
689 |
msgstr "Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</code> vorhanden und zugänglich ist."
|
690 |
|
691 |
# @ broken-link-checker
|
692 |
-
#: core/core.php:
|
693 |
msgid "Forced recheck"
|
694 |
msgstr "Erneute Überprüfung erzwingen"
|
695 |
|
696 |
# @ broken-link-checker
|
697 |
-
#: core/core.php:
|
698 |
msgid "Re-check all pages"
|
699 |
msgstr "Überprüfe alle Seiten noch einmal"
|
700 |
|
701 |
# @ broken-link-checker
|
702 |
-
#: core/core.php:
|
703 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
704 |
msgstr "Die \"Nuklear Option\". Klicken Sie auf diese Schaltfläche, um die Link-Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
|
705 |
|
706 |
# @ default
|
707 |
-
#: core/core.php:
|
708 |
msgid "Save Changes"
|
709 |
msgstr "Änderungen speichern"
|
710 |
|
711 |
# @ broken-link-checker
|
712 |
-
#: core/core.php:
|
713 |
msgid "Configure"
|
714 |
msgstr "Konfigurieren"
|
715 |
|
716 |
# @ broken-link-checker
|
717 |
-
#: core/core.php:
|
718 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
719 |
msgstr "Überprüfe folgende URLs (eine URL pro Zeile):"
|
720 |
|
721 |
# @ broken-link-checker
|
722 |
-
#: core/core.php:
|
723 |
-
#: core/core.php:
|
724 |
-
#: core/core.php:
|
725 |
msgid "Database error : %s"
|
726 |
msgstr "Datenbank Fehler: %s"
|
727 |
|
728 |
# @ broken-link-checker
|
729 |
-
#: core/core.php:
|
730 |
msgid "You must enter a filter name!"
|
731 |
msgstr "Sie müssen einen Filter Namen eingeben!"
|
732 |
|
733 |
# @ broken-link-checker
|
734 |
-
#: core/core.php:
|
735 |
msgid "Invalid search query."
|
736 |
msgstr "Ungültige Suchanfrage."
|
737 |
|
738 |
# @ broken-link-checker
|
739 |
-
#: core/core.php:
|
740 |
msgid "Filter \"%s\" created"
|
741 |
msgstr "Filter \"%s\" erstellt"
|
742 |
|
743 |
# @ broken-link-checker
|
744 |
-
#: core/core.php:
|
745 |
msgid "Filter ID not specified."
|
746 |
msgstr "Link ID nicht spezifiziert."
|
747 |
|
748 |
# @ broken-link-checker
|
749 |
-
#: core/core.php:
|
750 |
msgid "Filter deleted"
|
751 |
msgstr "Filter gelöscht"
|
752 |
|
753 |
# @ broken-link-checker
|
754 |
-
#: core/core.php:
|
755 |
msgid "Replaced %d redirect with a direct link"
|
756 |
msgid_plural "Replaced %d redirects with direct links"
|
757 |
msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
|
758 |
msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
|
759 |
|
760 |
# @ broken-link-checker
|
761 |
-
#: core/core.php:
|
762 |
msgid "Failed to fix %d redirect"
|
763 |
msgid_plural "Failed to fix %d redirects"
|
764 |
msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
|
765 |
msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
|
766 |
|
767 |
# @ broken-link-checker
|
768 |
-
#: core/core.php:
|
769 |
msgid "None of the selected links are redirects!"
|
770 |
msgstr "Keiner der ausgewählten Links sind Umleitungen!"
|
771 |
|
772 |
# @ broken-link-checker
|
773 |
-
#: core/core.php:
|
774 |
msgid "%d link updated."
|
775 |
msgid_plural "%d links updated."
|
776 |
msgstr[0] "Link %d aktualisiert."
|
777 |
msgstr[1] "Links %d aktualisiert."
|
778 |
|
779 |
# @ broken-link-checker
|
780 |
-
#: core/core.php:
|
781 |
msgid "Failed to update %d link."
|
782 |
msgid_plural "Failed to update %d links."
|
783 |
msgstr[0] "Link %d konnte nicht aktualisiert werden."
|
784 |
msgstr[1] "Links %d konnten nicht aktualisiert werden."
|
785 |
|
786 |
# @ broken-link-checker
|
787 |
-
#: core/core.php:
|
788 |
msgid "%d link removed"
|
789 |
msgid_plural "%d links removed"
|
790 |
msgstr[0] "%d Link entfernt"
|
791 |
msgstr[1] "%d Links entfernt"
|
792 |
|
793 |
# @ broken-link-checker
|
794 |
-
#: core/core.php:
|
795 |
msgid "Failed to remove %d link"
|
796 |
msgid_plural "Failed to remove %d links"
|
797 |
msgstr[0] "Link %d konnte nicht entfernt werden"
|
798 |
msgstr[1] "Links %d konnten nicht entfernt werden"
|
799 |
|
800 |
# @ default
|
801 |
-
#: core/core.php:
|
802 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
803 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
804 |
msgstr[0] "%d Das Element wurde übersprungen, weil es nicht in den Papierkorb verschoben werden kann. Löschen Sie es manuell."
|
805 |
msgstr[1] "%d Die Elemente wurde übersprungen, weil sie nicht in den Papierkorb verschoben werden können. Löschen Sie diese manuell."
|
806 |
|
807 |
# @ broken-link-checker
|
808 |
-
#: core/core.php:
|
809 |
msgid "Didn't find anything to delete!"
|
810 |
msgstr "Nichts gefunden um zu löschen!"
|
811 |
|
812 |
# @ broken-link-checker
|
813 |
-
#: core/core.php:
|
814 |
msgid "%d link scheduled for rechecking"
|
815 |
msgid_plural "%d links scheduled for rechecking"
|
816 |
msgstr[0] "%d Link zur erneuten Überprüfung geplant"
|
817 |
msgstr[1] "%d Links zur erneuten Überprüfung geplant"
|
818 |
|
819 |
# @ broken-link-checker
|
820 |
-
#: core/core.php:
|
821 |
-
#: core/core.php:
|
822 |
msgid "This link was manually marked as working by the user."
|
823 |
msgstr "Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
|
824 |
|
825 |
# @ broken-link-checker
|
826 |
-
#: core/core.php:
|
827 |
msgid "Couldn't modify link %d"
|
828 |
msgstr "Link %d konnte nicht geändert werden"
|
829 |
|
830 |
# @ broken-link-checker
|
831 |
-
#: core/core.php:
|
832 |
msgid "%d link marked as not broken"
|
833 |
msgid_plural "%d links marked as not broken"
|
834 |
msgstr[0] "%d Link als nicht fehlerhaft markiert"
|
835 |
msgstr[1] "%d Links als nicht fehlerhaft markiert"
|
836 |
|
837 |
# @ broken-link-checker
|
838 |
-
#: core/core.php:
|
839 |
msgid "Table columns"
|
840 |
msgstr "Tabellenspalten"
|
841 |
|
842 |
# @ default
|
843 |
-
#: core/core.php:
|
844 |
msgid "Show on screen"
|
845 |
msgstr "Auf dem Bildschirm anzeigen"
|
846 |
|
847 |
# @ broken-link-checker
|
848 |
-
#: core/core.php:
|
849 |
msgid "links"
|
850 |
msgstr "Links"
|
851 |
|
852 |
# @ default
|
853 |
# @ broken-link-checker
|
854 |
-
#: core/core.php:
|
855 |
-
#: includes/admin/table-printer.php:
|
856 |
msgid "Apply"
|
857 |
msgstr "Anwenden"
|
858 |
|
859 |
# @ broken-link-checker
|
860 |
-
#: core/core.php:
|
861 |
msgid "Misc"
|
862 |
msgstr "Sonstige"
|
863 |
|
864 |
# @ broken-link-checker
|
865 |
-
#: core/core.php:
|
866 |
msgid "Highlight links broken for at least %s days"
|
867 |
msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
|
868 |
|
869 |
# @ broken-link-checker
|
870 |
-
#: core/core.php:
|
871 |
msgid "Color-code status codes"
|
872 |
msgstr "Farb-Code Status Codes"
|
873 |
|
874 |
# @ broken-link-checker
|
875 |
-
#: core/core.php:
|
876 |
-
#: core/core.php:
|
877 |
-
#: core/core.php:
|
878 |
-
#: core/core.php:
|
879 |
msgid "You're not allowed to do that!"
|
880 |
msgstr "Sie haben nicht die Erlaubnis das zu tun!"
|
881 |
|
882 |
# @ broken-link-checker
|
883 |
-
#: core/core.php:
|
884 |
msgid "View broken links"
|
885 |
msgstr "Fehlerhafte Links anschauen"
|
886 |
|
887 |
# @ broken-link-checker
|
888 |
-
#: core/core.php:
|
889 |
msgid "Found %d broken link"
|
890 |
msgid_plural "Found %d broken links"
|
891 |
msgstr[0] "%d fehlerhafte Links gefunden"
|
892 |
msgstr[1] "%d fehlerhafte Links gefunden"
|
893 |
|
894 |
# @ broken-link-checker
|
895 |
-
#: core/core.php:
|
896 |
msgid "No broken links found."
|
897 |
msgstr "Keine fehlerhaften Links gefunden."
|
898 |
|
899 |
# @ broken-link-checker
|
900 |
-
#: core/core.php:
|
901 |
msgid "%d URL in the work queue"
|
902 |
msgid_plural "%d URLs in the work queue"
|
903 |
msgstr[0] "%d URL in der Warteschlange"
|
904 |
msgstr[1] "%d URLs in der Warteschlange"
|
905 |
|
906 |
# @ broken-link-checker
|
907 |
-
#: core/core.php:
|
908 |
msgid "No URLs in the work queue."
|
909 |
msgstr "Keine URLs in der Warteschlange."
|
910 |
|
911 |
# @ broken-link-checker
|
912 |
-
#: core/core.php:
|
913 |
msgid "Detected %d unique URL"
|
914 |
msgid_plural "Detected %d unique URLs"
|
915 |
msgstr[0] "%d eindeutige URL gefunden"
|
916 |
msgstr[1] "%d eindeutige URLs gefunden"
|
917 |
|
918 |
# @ broken-link-checker
|
919 |
-
#: core/core.php:
|
920 |
msgid "in %d link"
|
921 |
msgid_plural "in %d links"
|
922 |
msgstr[0] "in %d Link"
|
923 |
msgstr[1] "in %d Links"
|
924 |
|
925 |
# @ broken-link-checker
|
926 |
-
#: core/core.php:
|
927 |
msgid "and still searching..."
|
928 |
msgstr "und sucht immer noch ..."
|
929 |
|
930 |
# @ broken-link-checker
|
931 |
-
#: core/core.php:
|
932 |
msgid "Searching your blog for links..."
|
933 |
msgstr "Durchsucht Ihr Blog nach Links ..."
|
934 |
|
935 |
# @ broken-link-checker
|
936 |
-
#: core/core.php:
|
937 |
msgid "No links detected."
|
938 |
msgstr "Keine Links gefunden."
|
939 |
|
940 |
# @ broken-link-checker
|
941 |
-
#: core/core.php:
|
942 |
msgctxt "current load"
|
943 |
msgid "Unknown"
|
944 |
msgstr "Unbekannt"
|
945 |
|
946 |
# @ broken-link-checker
|
947 |
-
#: core/core.php:
|
948 |
-
#: core/core.php:
|
949 |
-
#: core/core.php:
|
950 |
msgid "Oops, I can't find the link %d"
|
951 |
msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
|
952 |
|
953 |
# @ broken-link-checker
|
954 |
-
#: core/core.php:
|
955 |
msgid "Oops, couldn't modify the link!"
|
956 |
msgstr "Hoppla, der Link konnte nicht geändert werden!"
|
957 |
|
958 |
# @ broken-link-checker
|
959 |
-
#: core/core.php:
|
960 |
-
#: core/core.php:
|
961 |
msgid "Error : link_id not specified"
|
962 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
963 |
|
964 |
# @ broken-link-checker
|
965 |
-
#: core/core.php:
|
966 |
msgid "Oops, the new URL is invalid!"
|
967 |
msgstr "Hoppla, die neue URL funktioniert nicht!"
|
968 |
|
969 |
# @ broken-link-checker
|
970 |
-
#: core/core.php:
|
971 |
-
#: core/core.php:
|
972 |
msgid "An unexpected error occured!"
|
973 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
974 |
|
975 |
# @ broken-link-checker
|
976 |
-
#: core/core.php:
|
977 |
msgid "Error : link_id or new_url not specified"
|
978 |
msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
|
979 |
|
980 |
# @ broken-link-checker
|
981 |
-
#: core/core.php:
|
982 |
msgid "You don't have sufficient privileges to access this information!"
|
983 |
msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
|
984 |
|
985 |
# @ broken-link-checker
|
986 |
-
#: core/core.php:
|
987 |
msgid "Error : link ID not specified"
|
988 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
989 |
|
990 |
# @ broken-link-checker
|
991 |
-
#: core/core.php:
|
992 |
msgid "Failed to load link details (%s)"
|
993 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
994 |
|
995 |
# @ broken-link-checker
|
996 |
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.3.1) #-#-#-#-#
|
997 |
#. Plugin Name of the plugin/theme
|
998 |
-
#: core/core.php:
|
999 |
msgid "Broken Link Checker"
|
1000 |
msgstr "Broken Link Checker"
|
1001 |
|
1002 |
# @ broken-link-checker
|
1003 |
-
#: core/core.php:
|
1004 |
msgid "PHP version"
|
1005 |
msgstr "PHP Version"
|
1006 |
|
1007 |
# @ broken-link-checker
|
1008 |
-
#: core/core.php:
|
1009 |
msgid "MySQL version"
|
1010 |
msgstr "MySQL Version"
|
1011 |
|
1012 |
# @ broken-link-checker
|
1013 |
-
#: core/core.php:
|
1014 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
1015 |
msgstr "Sie haben eine veraltete Version von CURL. Erkennung von Umleitungen funktioniert eventuell nicht."
|
1016 |
|
1017 |
# @ broken-link-checker
|
1018 |
-
#: core/core.php:
|
1019 |
-
#: core/core.php:
|
1020 |
-
#: core/core.php:
|
1021 |
msgid "Not installed"
|
1022 |
msgstr "Nicht installiert"
|
1023 |
|
1024 |
# @ broken-link-checker
|
1025 |
-
#: core/core.php:
|
1026 |
msgid "CURL version"
|
1027 |
msgstr "CURL Version"
|
1028 |
|
1029 |
# @ broken-link-checker
|
1030 |
-
#: core/core.php:
|
1031 |
msgid "Installed"
|
1032 |
msgstr "Installiert"
|
1033 |
|
1034 |
# @ broken-link-checker
|
1035 |
-
#: core/core.php:
|
1036 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
1037 |
msgstr "Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin funktioniert!"
|
1038 |
|
1039 |
# @ broken-link-checker
|
1040 |
-
#: core/core.php:
|
1041 |
msgid "On"
|
1042 |
msgstr "An"
|
1043 |
|
1044 |
# @ broken-link-checker
|
1045 |
-
#: core/core.php:
|
1046 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
1047 |
msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode aktiviert ist."
|
1048 |
|
1049 |
# @ broken-link-checker
|
1050 |
-
#: core/core.php:
|
1051 |
-
#: core/core.php:
|
1052 |
msgid "Off"
|
1053 |
msgstr "Aus"
|
1054 |
|
1055 |
# @ broken-link-checker
|
1056 |
-
#: core/core.php:
|
1057 |
msgid "On ( %s )"
|
1058 |
msgstr "An (%s)"
|
1059 |
|
1060 |
# @ broken-link-checker
|
1061 |
-
#: core/core.php:
|
1062 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
1063 |
msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls open_basedir aktiviert ist."
|
1064 |
|
1065 |
# @ broken-link-checker
|
1066 |
-
#: core/core.php:
|
1067 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
1068 |
msgstr "Wenn dieser Wert nach mehreren geladenen Seiten Null ist, ist wahrscheinlich ein Fehler aufgetreten."
|
1069 |
|
1070 |
# @ broken-link-checker
|
1071 |
-
#: core/core.php:
|
|
|
1072 |
msgid "[%s] Broken links detected"
|
1073 |
msgstr "[%s] Fehlerhafte Links entdeckt"
|
1074 |
|
1075 |
# @ broken-link-checker
|
1076 |
-
#: core/core.php:
|
1077 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
1078 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
1079 |
msgstr[0] "Broken Link Checker hat %d fehlerhaften Link auf Ihrer Webseite entdeckt."
|
1080 |
msgstr[1] "Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
|
1081 |
|
1082 |
# @ broken-link-checker
|
1083 |
-
#: core/core.php:
|
1084 |
msgid "Here's a list of the first %d broken links:"
|
1085 |
msgid_plural "Here's a list of the first %d broken links:"
|
1086 |
msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
1087 |
msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
1088 |
|
1089 |
# @ broken-link-checker
|
1090 |
-
#: core/core.php:
|
1091 |
msgid "Here's a list of the new broken links: "
|
1092 |
msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
|
1093 |
|
1094 |
# @ broken-link-checker
|
1095 |
-
#: core/core.php:
|
1096 |
msgid "Link text : %s"
|
1097 |
msgstr "Linktext: %s"
|
1098 |
|
1099 |
# @ broken-link-checker
|
1100 |
-
#: core/core.php:
|
1101 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
1102 |
msgstr "Link URL: <a href=\"%s\">%s</a>"
|
1103 |
|
1104 |
# @ broken-link-checker
|
1105 |
-
#: core/core.php:
|
1106 |
msgid "Source : %s"
|
1107 |
msgstr "Quelle: %s"
|
1108 |
|
1109 |
# @ brokenk-link-checker
|
1110 |
-
#: core/core.php:
|
1111 |
msgid "You can see all broken links here:"
|
1112 |
msgstr "Hier sehen Sie alle fehlerhaften Links:"
|
1113 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1114 |
# @ broken-link-checker
|
1115 |
#: includes/admin/links-page-js.php:58
|
1116 |
#: includes/admin/links-page-js.php:301
|
@@ -1119,7 +1132,7 @@ msgstr "Warte ..."
|
|
1119 |
|
1120 |
# @ broken-link-checker
|
1121 |
#: includes/admin/links-page-js.php:99
|
1122 |
-
#: includes/admin/table-printer.php:
|
1123 |
msgid "Not broken"
|
1124 |
msgstr "Nicht fehlerhaft"
|
1125 |
|
@@ -1161,8 +1174,8 @@ msgstr "Das Plugin konnte den Link nicht entfernen."
|
|
1161 |
|
1162 |
# @ broken-link-checker
|
1163 |
#: includes/admin/links-page-js.php:361
|
1164 |
-
#: includes/admin/table-printer.php:
|
1165 |
-
#: includes/admin/table-printer.php:
|
1166 |
msgid "Unlink"
|
1167 |
msgstr "Link aufheben"
|
1168 |
|
@@ -1229,13 +1242,13 @@ msgstr "Linktext"
|
|
1229 |
|
1230 |
# @ broken-link-checker
|
1231 |
#: includes/admin/search-form.php:45
|
1232 |
-
#: includes/admin/table-printer.php:
|
1233 |
msgid "URL"
|
1234 |
msgstr "URL"
|
1235 |
|
1236 |
# @ broken-link-checker
|
1237 |
#: includes/admin/search-form.php:48
|
1238 |
-
#: includes/admin/table-printer.php:
|
1239 |
msgid "HTTP code"
|
1240 |
msgstr "HTTP Code"
|
1241 |
|
@@ -1267,9 +1280,9 @@ msgstr "Suche Links"
|
|
1267 |
|
1268 |
# @ broken-link-checker
|
1269 |
#: includes/admin/search-form.php:113
|
1270 |
-
#: includes/admin/table-printer.php:
|
1271 |
-
#: includes/admin/table-printer.php:
|
1272 |
-
#: includes/admin/table-printer.php:
|
1273 |
msgid "Cancel"
|
1274 |
msgstr "Abbrechen"
|
1275 |
|
@@ -1285,213 +1298,209 @@ msgstr "Mögen Sie dieses Plugin, dann helfen Sie uns mit einer Spende für die
|
|
1285 |
msgid "Return to WordPress Dashboard"
|
1286 |
msgstr "Zurück zum Wordpress Dashboard"
|
1287 |
|
1288 |
-
#: includes/admin/sidebar.php:50
|
1289 |
-
msgid "More plugins by Janis Elsts"
|
1290 |
-
msgstr "Weitere Plugins von Janis Elsts"
|
1291 |
-
|
1292 |
# @ broken-link-checker
|
1293 |
#: includes/admin/options-page-js.php:54
|
1294 |
msgid "Hide debug info"
|
1295 |
msgstr "Debug Info verbergen"
|
1296 |
|
1297 |
# @ broken-link-checker
|
1298 |
-
#: includes/admin/table-printer.php:
|
1299 |
msgid "Compact View"
|
1300 |
msgstr "Kompaktansicht"
|
1301 |
|
1302 |
# @ broken-link-checker
|
1303 |
-
#: includes/admin/table-printer.php:
|
1304 |
msgid "Detailed View"
|
1305 |
msgstr "Detailansicht"
|
1306 |
|
1307 |
# @ broken-link-checker
|
1308 |
-
#: includes/admin/table-printer.php:
|
1309 |
msgid "Source"
|
1310 |
msgstr "Quelle"
|
1311 |
|
1312 |
# @ broken-link-checker
|
1313 |
-
#: includes/admin/table-printer.php:
|
1314 |
msgid "Link Text"
|
1315 |
msgstr "Linktext"
|
1316 |
|
1317 |
# @ broken-link-checker
|
1318 |
-
#: includes/admin/table-printer.php:
|
1319 |
msgid "Bulk Actions"
|
1320 |
msgstr "Massenänderung"
|
1321 |
|
1322 |
# @ broken-link-checker
|
1323 |
-
#: includes/admin/table-printer.php:
|
1324 |
-
#: includes/admin/table-printer.php:
|
1325 |
msgid "Edit URL"
|
1326 |
msgstr "Bearbeite URL"
|
1327 |
|
1328 |
# @ broken-link-checker
|
1329 |
-
#: includes/admin/table-printer.php:
|
1330 |
msgid "Recheck"
|
1331 |
msgstr "Erneut überprüfen"
|
1332 |
|
1333 |
# @ broken-link-checker
|
1334 |
-
#: includes/admin/table-printer.php:
|
1335 |
msgid "Fix redirects"
|
1336 |
msgstr "Feste Umleitungen"
|
1337 |
|
1338 |
# @ broken-link-checker
|
1339 |
-
#: includes/admin/table-printer.php:
|
1340 |
msgid "Mark as not broken"
|
1341 |
msgstr "Als nicht fehlerhaft markieren"
|
1342 |
|
1343 |
# @ broken-link-checker
|
1344 |
-
#: includes/admin/table-printer.php:
|
1345 |
msgid "Move sources to Trash"
|
1346 |
msgstr "Verschiebe Quelle in den Papierkorb"
|
1347 |
|
1348 |
# @ broken-link-checker
|
1349 |
-
#: includes/admin/table-printer.php:
|
1350 |
msgid "Delete sources"
|
1351 |
msgstr "Quellen löschen"
|
1352 |
|
1353 |
# @ default
|
1354 |
-
#: includes/admin/table-printer.php:
|
1355 |
msgid "«"
|
1356 |
msgstr "«"
|
1357 |
|
1358 |
# @ default
|
1359 |
-
#: includes/admin/table-printer.php:
|
1360 |
msgid "»"
|
1361 |
msgstr "»"
|
1362 |
|
1363 |
# @ broken-link-checker
|
1364 |
-
#: includes/admin/table-printer.php:
|
1365 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1366 |
msgstr "Anzeigen %s–%s von <span class=\"current-link-count\">%s</span>"
|
1367 |
|
1368 |
# @ broken-link-checker
|
1369 |
-
#: includes/admin/table-printer.php:
|
1370 |
msgid "Bulk Edit URLs"
|
1371 |
msgstr "Mehrere URLs bearbeiten"
|
1372 |
|
1373 |
-
#: includes/admin/table-printer.php:
|
1374 |
msgid "Find"
|
1375 |
msgstr "Finden"
|
1376 |
|
1377 |
-
#: includes/admin/table-printer.php:
|
1378 |
msgid "Replace with"
|
1379 |
msgstr "Ersetzen mit"
|
1380 |
|
1381 |
# @ broken-link-checker
|
1382 |
-
#: includes/admin/table-printer.php:
|
1383 |
msgid "Case sensitive"
|
1384 |
msgstr "Gross- und Kleinschreibung"
|
1385 |
|
1386 |
-
#: includes/admin/table-printer.php:
|
1387 |
msgid "Regular expression"
|
1388 |
msgstr "Regulärer Ausdruck"
|
1389 |
|
1390 |
# @ broken-link-checker
|
1391 |
-
#: includes/admin/table-printer.php:
|
1392 |
msgid "Update"
|
1393 |
msgstr "Aktualisieren"
|
1394 |
|
1395 |
# @ broken-link-checker
|
1396 |
-
#: includes/admin/table-printer.php:
|
1397 |
msgid "Post published on"
|
1398 |
msgstr "Beitrag publiziert am"
|
1399 |
|
1400 |
# @ broken-link-checker
|
1401 |
-
#: includes/admin/table-printer.php:
|
1402 |
msgid "Link last checked"
|
1403 |
msgstr "Link zuletzt geprüft"
|
1404 |
|
1405 |
# @ broken-link-checker
|
1406 |
-
#: includes/admin/table-printer.php:
|
1407 |
msgid "Never"
|
1408 |
msgstr "Nie"
|
1409 |
|
1410 |
# @ broken-link-checker
|
1411 |
-
#: includes/admin/table-printer.php:
|
1412 |
msgid "Response time"
|
1413 |
msgstr "Reaktionszeit"
|
1414 |
|
1415 |
# @ broken-link-checker
|
1416 |
-
#: includes/admin/table-printer.php:
|
1417 |
msgid "%2.3f seconds"
|
1418 |
msgstr "%2.3f Sekunden"
|
1419 |
|
1420 |
# @ broken-link-checker
|
1421 |
-
#: includes/admin/table-printer.php:
|
1422 |
msgid "Final URL"
|
1423 |
msgstr "Endgültige URL"
|
1424 |
|
1425 |
# @ broken-link-checker
|
1426 |
-
#: includes/admin/table-printer.php:
|
1427 |
msgid "Redirect count"
|
1428 |
msgstr "Weiterleitung Anzahl"
|
1429 |
|
1430 |
# @ broken-link-checker
|
1431 |
-
#: includes/admin/table-printer.php:
|
1432 |
msgid "Instance count"
|
1433 |
msgstr "Instanz Anzahl"
|
1434 |
|
1435 |
# @ broken-link-checker
|
1436 |
-
#: includes/admin/table-printer.php:
|
1437 |
msgid "This link has failed %d time."
|
1438 |
msgid_plural "This link has failed %d times."
|
1439 |
msgstr[0] "Dieser Link schlug %d mal fehl."
|
1440 |
msgstr[1] "Dieser Link schlug %d mal fehl."
|
1441 |
|
1442 |
# @ broken-link-checker
|
1443 |
-
#: includes/admin/table-printer.php:
|
1444 |
msgid "This link has been broken for %s."
|
1445 |
msgstr "Dieser Links ist fehlerhaft seit %s."
|
1446 |
|
1447 |
# @ broken-link-checker
|
1448 |
-
#: includes/admin/table-printer.php:
|
1449 |
msgid "Log"
|
1450 |
msgstr "Log"
|
1451 |
|
1452 |
# @ broken-link-checker
|
1453 |
-
#: includes/admin/table-printer.php:
|
1454 |
msgid "Show more info about this link"
|
1455 |
msgstr "Mehr Informationen über diesen Link anzeigen"
|
1456 |
|
1457 |
# @ broken-link-checker
|
1458 |
-
#: includes/admin/table-printer.php:
|
1459 |
msgctxt "checked how long ago"
|
1460 |
msgid "Checked"
|
1461 |
msgstr "Geprüft"
|
1462 |
|
1463 |
# @ broken-link-checker
|
1464 |
-
#: includes/admin/table-printer.php:
|
1465 |
msgid "Broken for"
|
1466 |
msgstr "Fehlerhaft für"
|
1467 |
|
1468 |
# @ broken-link-checker
|
1469 |
-
#: includes/admin/table-printer.php:
|
1470 |
msgid "Edit link URL"
|
1471 |
msgstr "Bearbeite URL Link"
|
1472 |
|
1473 |
# @ broken-link-checker
|
1474 |
-
#: includes/admin/table-printer.php:
|
1475 |
msgid "Remove this link from all posts"
|
1476 |
msgstr "Löschen Sie diesen Link von allen Beiträgen"
|
1477 |
|
1478 |
# @ broken-link-checker
|
1479 |
-
#: includes/admin/table-printer.php:
|
1480 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
1481 |
msgstr "Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als gültig"
|
1482 |
|
1483 |
# @ broken-link-checker
|
1484 |
-
#: includes/admin/table-printer.php:
|
1485 |
msgid "Cancel URL editing"
|
1486 |
msgstr "URL Bearbeitung abbrechen"
|
1487 |
|
1488 |
# @ broken-link-checker
|
1489 |
-
#: includes/admin/table-printer.php:
|
1490 |
msgid "Update URL"
|
1491 |
msgstr "Update URL"
|
1492 |
|
1493 |
# @ broken-link-checker
|
1494 |
-
#: includes/admin/table-printer.php:
|
1495 |
msgid "[An orphaned link! This is a bug.]"
|
1496 |
msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
|
1497 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Broken Link Checker | V1.4\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
5 |
+
"POT-Creation-Date: 2011-12-10 11:41:41+00:00\n"
|
6 |
+
"PO-Revision-Date: 2011-12-15 18:23+0100\n"
|
7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
200 |
msgstr "Kommentar"
|
201 |
|
202 |
# @ broken-link-checker
|
203 |
+
#: modules/containers/comment.php:355
|
204 |
msgid "%d comment has been deleted."
|
205 |
msgid_plural "%d comments have been deleted."
|
206 |
msgstr[0] "%d Kommentar wurde gelöscht."
|
207 |
msgstr[1] "%d Kommentare wurde gelöscht."
|
208 |
|
209 |
# @ broken-link-checker
|
210 |
+
#: modules/containers/comment.php:374
|
211 |
msgid "%d comment moved to the Trash."
|
212 |
msgid_plural "%d comments moved to the Trash."
|
213 |
msgstr[0] "%d Kommentar in den Papierkorb verschoben."
|
346 |
msgstr "Eingebettete Vimeo Videos"
|
347 |
|
348 |
# @ broken-link-checker
|
349 |
+
#: modules/extras/youtube.php:73
|
350 |
+
#: modules/extras/youtube.php:76
|
351 |
msgid "Video Not Found"
|
352 |
msgstr "Video nicht gefunden"
|
353 |
|
354 |
+
#: modules/extras/youtube.php:84
|
355 |
msgid "Video Removed"
|
356 |
msgstr "Video entfernt"
|
357 |
|
358 |
+
#: modules/extras/youtube.php:92
|
359 |
msgid "Invalid Video ID"
|
360 |
msgstr "Ungültige Video ID"
|
361 |
|
362 |
+
#: modules/extras/youtube.php:104
|
363 |
msgid "Video OK"
|
364 |
msgstr "Video OK"
|
365 |
|
366 |
# @ broken-link-checker
|
367 |
+
#: modules/extras/youtube.php:105
|
368 |
+
#: modules/extras/youtube.php:132
|
369 |
msgid "OK"
|
370 |
msgstr "OK"
|
371 |
|
372 |
+
#: modules/extras/youtube.php:118
|
373 |
msgid "Video status : %s%s"
|
374 |
msgstr "Video Status : %s%s"
|
375 |
|
376 |
+
#: modules/extras/youtube.php:137
|
377 |
msgid "Video Restricted"
|
378 |
msgstr "Video mit Einschränkungen"
|
379 |
|
380 |
+
#: modules/extras/youtube.php:154
|
381 |
msgid "Unknown YouTube API response received."
|
382 |
msgstr "Unbekannte Antwort der YouTube API erhalten."
|
383 |
|
390 |
msgstr "API Fehler"
|
391 |
|
392 |
# @ default
|
393 |
+
#: core/init.php:231
|
394 |
msgid "Once Weekly"
|
395 |
msgstr "Einmal wöchentlich"
|
396 |
|
397 |
# @ default
|
398 |
+
#: core/init.php:237
|
399 |
msgid "Twice a Month"
|
400 |
msgstr "Zweimal im Monat"
|
401 |
|
402 |
# @ broken-link-checker
|
403 |
+
#: core/init.php:307
|
404 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
405 |
msgstr "Broken Link Checker Installation fehlgeschlagen. Deaktivieren Sie das Plugin und aktivieren es anschliessend wieder."
|
406 |
|
422 |
msgstr "Vergrössere Widget automatisch wenn fehlerhafte Links gefunden wurden"
|
423 |
|
424 |
# @ broken-link-checker
|
425 |
+
#: core/core.php:285
|
426 |
msgid "Link Checker Settings"
|
427 |
msgstr "Link Checker Einstellungen"
|
428 |
|
429 |
# @ broken-link-checker
|
430 |
+
#: core/core.php:286
|
431 |
msgid "Link Checker"
|
432 |
msgstr "Link Checker"
|
433 |
|
434 |
# @ broken-link-checker
|
435 |
+
#: core/core.php:291
|
436 |
#: includes/link-query.php:26
|
437 |
msgid "Broken Links"
|
438 |
msgstr "Fehlerhafte Links"
|
439 |
|
440 |
# @ broken-link-checker
|
441 |
+
#: core/core.php:307
|
442 |
msgid "View Broken Links"
|
443 |
msgstr "Fehlerhafte Links anschauen"
|
444 |
|
445 |
+
#: core/core.php:322
|
446 |
msgid "Feedback"
|
447 |
msgstr "Feedback"
|
448 |
|
449 |
+
#: core/core.php:330
|
450 |
+
#: includes/admin/sidebar.php:50
|
451 |
+
msgid "More plugins by Janis Elsts"
|
452 |
+
msgstr "Weitere Plugins von Janis Elsts"
|
453 |
|
454 |
# @ broken-link-checker
|
455 |
+
#: core/core.php:337
|
456 |
msgid "Go to Broken Links"
|
457 |
msgstr "Gehe zu fehlerhaften Links"
|
458 |
|
459 |
# @ default
|
460 |
+
#: core/core.php:366
|
461 |
msgid "Settings"
|
462 |
msgstr "Einstellungen"
|
463 |
|
464 |
# @ broken-link-checker
|
465 |
+
#: core/core.php:378
|
466 |
+
#: core/core.php:1160
|
467 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
468 |
msgstr "Error: Die Datenbanktabellen des Plugins sind nicht mehr aktuell! (Vorhandene Version: %d, neue Version: %d)"
|
469 |
|
470 |
# @ broken-link-checker
|
471 |
+
#: core/core.php:382
|
472 |
+
#: core/core.php:1164
|
473 |
msgid "Try deactivating and then reactivating the plugin."
|
474 |
msgstr "Deaktivieren Sie das Plugin und aktivieren es anschliessend wieder."
|
475 |
|
476 |
# @ broken-link-checker
|
477 |
+
#: core/core.php:521
|
478 |
msgid "Settings saved."
|
479 |
msgstr "Einstellungen gespeichert."
|
480 |
|
481 |
+
#: core/core.php:527
|
482 |
msgid "Thank you for your donation!"
|
483 |
msgstr "Besten Dank für Ihre Spende!"
|
484 |
|
485 |
# @ broken-link-checker
|
486 |
+
#: core/core.php:534
|
487 |
msgid "Complete site recheck started."
|
488 |
msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
|
489 |
|
490 |
# @ broken-link-checker
|
491 |
+
#: core/core.php:543
|
492 |
msgid "Details"
|
493 |
msgstr "Details"
|
494 |
|
495 |
# @ broken-link-checker
|
496 |
+
#: core/core.php:557
|
497 |
msgid "General"
|
498 |
msgstr "Allgemein"
|
499 |
|
500 |
# @ broken-link-checker
|
501 |
+
#: core/core.php:558
|
502 |
msgid "Look For Links In"
|
503 |
msgstr "Suchen Sie nach Links in"
|
504 |
|
505 |
# @ broken-link-checker
|
506 |
+
#: core/core.php:559
|
507 |
msgid "Which Links To Check"
|
508 |
msgstr "Welche Links überprüfen"
|
509 |
|
510 |
# @ broken-link-checker
|
511 |
+
#: core/core.php:560
|
512 |
msgid "Protocols & APIs"
|
513 |
msgstr "Protokoll & Schnittstellen"
|
514 |
|
515 |
# @ broken-link-checker
|
516 |
+
#: core/core.php:561
|
517 |
msgid "Advanced"
|
518 |
msgstr "Erweitert"
|
519 |
|
520 |
# @ broken-link-checker
|
521 |
+
#: core/core.php:576
|
522 |
msgid "Broken Link Checker Options"
|
523 |
msgstr "Broken Link Checker Optionen"
|
524 |
|
525 |
# @ broken-link-checker
|
526 |
+
#: core/core.php:618
|
527 |
+
#: includes/admin/table-printer.php:195
|
528 |
msgid "Status"
|
529 |
msgstr "Status"
|
530 |
|
531 |
# @ broken-link-checker
|
532 |
+
#: core/core.php:620
|
533 |
#: includes/admin/options-page-js.php:56
|
534 |
msgid "Show debug info"
|
535 |
msgstr "Debug Infos anzeigen"
|
536 |
|
537 |
# @ broken-link-checker
|
538 |
+
#: core/core.php:648
|
539 |
msgid "Check each link"
|
540 |
msgstr "Überprüfe jeden Link"
|
541 |
|
542 |
# @ broken-link-checker
|
543 |
+
#: core/core.php:653
|
544 |
msgid "Every %s hours"
|
545 |
msgstr "Alle %s Stunden"
|
546 |
|
547 |
# @ broken-link-checker
|
548 |
+
#: core/core.php:662
|
549 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
550 |
msgstr "Vorhandene Links werden nach Ablauf der Zeit automatisch kontrolliert. Neue Links werden sofort geprüft."
|
551 |
|
552 |
# @ broken-link-checker
|
553 |
+
#: core/core.php:669
|
554 |
msgid "E-mail notifications"
|
555 |
+
msgstr "E-Mail Benachrichtigungen"
|
556 |
|
557 |
# @ broken-link-checker
|
558 |
+
#: core/core.php:675
|
559 |
msgid "Send me e-mail notifications about newly detected broken links"
|
560 |
+
msgstr "Dem Administrator eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte Links erkannt werden"
|
561 |
+
|
562 |
+
# @ broken-link-checker
|
563 |
+
#: core/core.php:683
|
564 |
+
msgid "Send authors e-mail notifications about broken links in their posts"
|
565 |
+
msgstr "Den Autoren eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte Links erkannt werden"
|
566 |
|
567 |
# @ broken-link-checker
|
568 |
+
#: core/core.php:690
|
569 |
msgid "Link tweaks"
|
570 |
msgstr "Link Einstellungen"
|
571 |
|
572 |
# @ broken-link-checker
|
573 |
+
#: core/core.php:696
|
574 |
msgid "Apply custom formatting to broken links"
|
575 |
msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
|
576 |
|
577 |
# @ broken-link-checker
|
578 |
+
#: core/core.php:700
|
579 |
+
#: core/core.php:728
|
580 |
msgid "Edit CSS"
|
581 |
msgstr "Bearbeite CSS"
|
582 |
|
583 |
# @ broken-link-checker
|
584 |
+
#: core/core.php:724
|
585 |
msgid "Apply custom formatting to removed links"
|
586 |
msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
|
587 |
|
588 |
# @ broken-link-checker
|
589 |
+
#: core/core.php:752
|
590 |
msgid "Stop search engines from following broken links"
|
591 |
msgstr "Stoppe Suchmaschinen aus folgenden fehlerhaften Links"
|
592 |
|
593 |
# @ broken-link-checker
|
594 |
+
#: core/core.php:769
|
595 |
msgid "Look for links in"
|
596 |
msgstr "Suchen Sie nach Links in"
|
597 |
|
598 |
# @ broken-link-checker
|
599 |
+
#: core/core.php:780
|
600 |
msgid "Post statuses"
|
601 |
msgstr "Beitrag Status"
|
602 |
|
603 |
# @ broken-link-checker
|
604 |
+
#: core/core.php:813
|
605 |
msgid "Link types"
|
606 |
msgstr "Link Typen"
|
607 |
|
608 |
# @ broken-link-checker
|
609 |
+
#: core/core.php:819
|
610 |
msgid "Error : All link parsers missing!"
|
611 |
msgstr "Fehler: Alle Link-Parser fehlen!"
|
612 |
|
613 |
# @ broken-link-checker
|
614 |
+
#: core/core.php:826
|
615 |
msgid "Exclusion list"
|
616 |
msgstr "Ausschlussliste"
|
617 |
|
618 |
# @ broken-link-checker
|
619 |
+
#: core/core.php:827
|
620 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
621 |
msgstr "URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
|
622 |
|
623 |
# @ broken-link-checker
|
624 |
+
#: core/core.php:845
|
625 |
msgid "Check links using"
|
626 |
msgstr "Überprüfe Links"
|
627 |
|
628 |
# @ broken-link-checker
|
629 |
+
#: core/core.php:864
|
630 |
#: includes/links.php:849
|
631 |
msgid "Timeout"
|
632 |
msgstr "Zeitüberschreitung"
|
633 |
|
634 |
# @ broken-link-checker
|
635 |
# @ default
|
636 |
+
#: core/core.php:870
|
637 |
+
#: core/core.php:916
|
638 |
+
#: core/core.php:2725
|
639 |
msgid "%s seconds"
|
640 |
msgstr "%s Sekunden"
|
641 |
|
642 |
# @ broken-link-checker
|
643 |
+
#: core/core.php:879
|
644 |
msgid "Links that take longer than this to load will be marked as broken."
|
645 |
msgstr "Links die länger zum laden brauchen als hier eingetragen, gelten als fehlerhaft."
|
646 |
|
647 |
# @ broken-link-checker
|
648 |
+
#: core/core.php:886
|
649 |
msgid "Link monitor"
|
650 |
msgstr "Link Monitor"
|
651 |
|
652 |
# @ broken-link-checker
|
653 |
+
#: core/core.php:894
|
654 |
msgid "Run continuously while the Dashboard is open"
|
655 |
msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
|
656 |
|
657 |
# @ broken-link-checker
|
658 |
+
#: core/core.php:902
|
659 |
msgid "Run hourly in the background"
|
660 |
msgstr "Stündlich im Hintergrund arbeiten"
|
661 |
|
662 |
# @ broken-link-checker
|
663 |
+
#: core/core.php:910
|
664 |
msgid "Max. execution time"
|
665 |
msgstr "Max. Ausführungszeit"
|
666 |
|
667 |
# @ broken-link-checker
|
668 |
+
#: core/core.php:927
|
669 |
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."
|
670 |
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."
|
671 |
|
672 |
# @ broken-link-checker
|
673 |
+
#: core/core.php:936
|
674 |
msgid "Server load limit"
|
675 |
msgstr "Server Belastungsgrenze"
|
676 |
|
677 |
+
#: core/core.php:951
|
678 |
msgid "Current load : %s"
|
679 |
msgstr "Aktuelle Belastung: %s"
|
680 |
|
681 |
# @ broken-link-checker
|
682 |
+
#: core/core.php:956
|
683 |
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."
|
684 |
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."
|
685 |
|
686 |
# @ broken-link-checker
|
687 |
+
#: core/core.php:965
|
688 |
msgid "Not available"
|
689 |
msgstr "Nicht verfügbar"
|
690 |
|
691 |
# @ broken-link-checker
|
692 |
+
#: core/core.php:967
|
693 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
694 |
msgstr "Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</code> vorhanden und zugänglich ist."
|
695 |
|
696 |
# @ broken-link-checker
|
697 |
+
#: core/core.php:975
|
698 |
msgid "Forced recheck"
|
699 |
msgstr "Erneute Überprüfung erzwingen"
|
700 |
|
701 |
# @ broken-link-checker
|
702 |
+
#: core/core.php:978
|
703 |
msgid "Re-check all pages"
|
704 |
msgstr "Überprüfe alle Seiten noch einmal"
|
705 |
|
706 |
# @ broken-link-checker
|
707 |
+
#: core/core.php:982
|
708 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
709 |
msgstr "Die \"Nuklear Option\". Klicken Sie auf diese Schaltfläche, um die Link-Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
|
710 |
|
711 |
# @ default
|
712 |
+
#: core/core.php:993
|
713 |
msgid "Save Changes"
|
714 |
msgstr "Änderungen speichern"
|
715 |
|
716 |
# @ broken-link-checker
|
717 |
+
#: core/core.php:1044
|
718 |
msgid "Configure"
|
719 |
msgstr "Konfigurieren"
|
720 |
|
721 |
# @ broken-link-checker
|
722 |
+
#: core/core.php:1126
|
723 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
724 |
msgstr "Überprüfe folgende URLs (eine URL pro Zeile):"
|
725 |
|
726 |
# @ broken-link-checker
|
727 |
+
#: core/core.php:1263
|
728 |
+
#: core/core.php:1344
|
729 |
+
#: core/core.php:1376
|
730 |
msgid "Database error : %s"
|
731 |
msgstr "Datenbank Fehler: %s"
|
732 |
|
733 |
# @ broken-link-checker
|
734 |
+
#: core/core.php:1326
|
735 |
msgid "You must enter a filter name!"
|
736 |
msgstr "Sie müssen einen Filter Namen eingeben!"
|
737 |
|
738 |
# @ broken-link-checker
|
739 |
+
#: core/core.php:1330
|
740 |
msgid "Invalid search query."
|
741 |
msgstr "Ungültige Suchanfrage."
|
742 |
|
743 |
# @ broken-link-checker
|
744 |
+
#: core/core.php:1339
|
745 |
msgid "Filter \"%s\" created"
|
746 |
msgstr "Filter \"%s\" erstellt"
|
747 |
|
748 |
# @ broken-link-checker
|
749 |
+
#: core/core.php:1366
|
750 |
msgid "Filter ID not specified."
|
751 |
msgstr "Link ID nicht spezifiziert."
|
752 |
|
753 |
# @ broken-link-checker
|
754 |
+
#: core/core.php:1373
|
755 |
msgid "Filter deleted"
|
756 |
msgstr "Filter gelöscht"
|
757 |
|
758 |
# @ broken-link-checker
|
759 |
+
#: core/core.php:1420
|
760 |
msgid "Replaced %d redirect with a direct link"
|
761 |
msgid_plural "Replaced %d redirects with direct links"
|
762 |
msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
|
763 |
msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
|
764 |
|
765 |
# @ broken-link-checker
|
766 |
+
#: core/core.php:1431
|
767 |
msgid "Failed to fix %d redirect"
|
768 |
msgid_plural "Failed to fix %d redirects"
|
769 |
msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
|
770 |
msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
|
771 |
|
772 |
# @ broken-link-checker
|
773 |
+
#: core/core.php:1442
|
774 |
msgid "None of the selected links are redirects!"
|
775 |
msgstr "Keiner der ausgewählten Links sind Umleitungen!"
|
776 |
|
777 |
# @ broken-link-checker
|
778 |
+
#: core/core.php:1520
|
779 |
msgid "%d link updated."
|
780 |
msgid_plural "%d links updated."
|
781 |
msgstr[0] "Link %d aktualisiert."
|
782 |
msgstr[1] "Links %d aktualisiert."
|
783 |
|
784 |
# @ broken-link-checker
|
785 |
+
#: core/core.php:1531
|
786 |
msgid "Failed to update %d link."
|
787 |
msgid_plural "Failed to update %d links."
|
788 |
msgstr[0] "Link %d konnte nicht aktualisiert werden."
|
789 |
msgstr[1] "Links %d konnten nicht aktualisiert werden."
|
790 |
|
791 |
# @ broken-link-checker
|
792 |
+
#: core/core.php:1585
|
793 |
msgid "%d link removed"
|
794 |
msgid_plural "%d links removed"
|
795 |
msgstr[0] "%d Link entfernt"
|
796 |
msgstr[1] "%d Links entfernt"
|
797 |
|
798 |
# @ broken-link-checker
|
799 |
+
#: core/core.php:1596
|
800 |
msgid "Failed to remove %d link"
|
801 |
msgid_plural "Failed to remove %d links"
|
802 |
msgstr[0] "Link %d konnte nicht entfernt werden"
|
803 |
msgstr[1] "Links %d konnten nicht entfernt werden"
|
804 |
|
805 |
# @ default
|
806 |
+
#: core/core.php:1705
|
807 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
808 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
809 |
msgstr[0] "%d Das Element wurde übersprungen, weil es nicht in den Papierkorb verschoben werden kann. Löschen Sie es manuell."
|
810 |
msgstr[1] "%d Die Elemente wurde übersprungen, weil sie nicht in den Papierkorb verschoben werden können. Löschen Sie diese manuell."
|
811 |
|
812 |
# @ broken-link-checker
|
813 |
+
#: core/core.php:1727
|
814 |
msgid "Didn't find anything to delete!"
|
815 |
msgstr "Nichts gefunden um zu löschen!"
|
816 |
|
817 |
# @ broken-link-checker
|
818 |
+
#: core/core.php:1755
|
819 |
msgid "%d link scheduled for rechecking"
|
820 |
msgid_plural "%d links scheduled for rechecking"
|
821 |
msgstr[0] "%d Link zur erneuten Überprüfung geplant"
|
822 |
msgstr[1] "%d Links zur erneuten Überprüfung geplant"
|
823 |
|
824 |
# @ broken-link-checker
|
825 |
+
#: core/core.php:1801
|
826 |
+
#: core/core.php:2405
|
827 |
msgid "This link was manually marked as working by the user."
|
828 |
msgstr "Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
|
829 |
|
830 |
# @ broken-link-checker
|
831 |
+
#: core/core.php:1808
|
832 |
msgid "Couldn't modify link %d"
|
833 |
msgstr "Link %d konnte nicht geändert werden"
|
834 |
|
835 |
# @ broken-link-checker
|
836 |
+
#: core/core.php:1818
|
837 |
msgid "%d link marked as not broken"
|
838 |
msgid_plural "%d links marked as not broken"
|
839 |
msgstr[0] "%d Link als nicht fehlerhaft markiert"
|
840 |
msgstr[1] "%d Links als nicht fehlerhaft markiert"
|
841 |
|
842 |
# @ broken-link-checker
|
843 |
+
#: core/core.php:1858
|
844 |
msgid "Table columns"
|
845 |
msgstr "Tabellenspalten"
|
846 |
|
847 |
# @ default
|
848 |
+
#: core/core.php:1877
|
849 |
msgid "Show on screen"
|
850 |
msgstr "Auf dem Bildschirm anzeigen"
|
851 |
|
852 |
# @ broken-link-checker
|
853 |
+
#: core/core.php:1884
|
854 |
msgid "links"
|
855 |
msgstr "Links"
|
856 |
|
857 |
# @ default
|
858 |
# @ broken-link-checker
|
859 |
+
#: core/core.php:1885
|
860 |
+
#: includes/admin/table-printer.php:163
|
861 |
msgid "Apply"
|
862 |
msgstr "Anwenden"
|
863 |
|
864 |
# @ broken-link-checker
|
865 |
+
#: core/core.php:1889
|
866 |
msgid "Misc"
|
867 |
msgstr "Sonstige"
|
868 |
|
869 |
# @ broken-link-checker
|
870 |
+
#: core/core.php:1904
|
871 |
msgid "Highlight links broken for at least %s days"
|
872 |
msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
|
873 |
|
874 |
# @ broken-link-checker
|
875 |
+
#: core/core.php:1913
|
876 |
msgid "Color-code status codes"
|
877 |
msgstr "Farb-Code Status Codes"
|
878 |
|
879 |
# @ broken-link-checker
|
880 |
+
#: core/core.php:1930
|
881 |
+
#: core/core.php:2390
|
882 |
+
#: core/core.php:2426
|
883 |
+
#: core/core.php:2489
|
884 |
msgid "You're not allowed to do that!"
|
885 |
msgstr "Sie haben nicht die Erlaubnis das zu tun!"
|
886 |
|
887 |
# @ broken-link-checker
|
888 |
+
#: core/core.php:2271
|
889 |
msgid "View broken links"
|
890 |
msgstr "Fehlerhafte Links anschauen"
|
891 |
|
892 |
# @ broken-link-checker
|
893 |
+
#: core/core.php:2272
|
894 |
msgid "Found %d broken link"
|
895 |
msgid_plural "Found %d broken links"
|
896 |
msgstr[0] "%d fehlerhafte Links gefunden"
|
897 |
msgstr[1] "%d fehlerhafte Links gefunden"
|
898 |
|
899 |
# @ broken-link-checker
|
900 |
+
#: core/core.php:2278
|
901 |
msgid "No broken links found."
|
902 |
msgstr "Keine fehlerhaften Links gefunden."
|
903 |
|
904 |
# @ broken-link-checker
|
905 |
+
#: core/core.php:2285
|
906 |
msgid "%d URL in the work queue"
|
907 |
msgid_plural "%d URLs in the work queue"
|
908 |
msgstr[0] "%d URL in der Warteschlange"
|
909 |
msgstr[1] "%d URLs in der Warteschlange"
|
910 |
|
911 |
# @ broken-link-checker
|
912 |
+
#: core/core.php:2288
|
913 |
msgid "No URLs in the work queue."
|
914 |
msgstr "Keine URLs in der Warteschlange."
|
915 |
|
916 |
# @ broken-link-checker
|
917 |
+
#: core/core.php:2294
|
918 |
msgid "Detected %d unique URL"
|
919 |
msgid_plural "Detected %d unique URLs"
|
920 |
msgstr[0] "%d eindeutige URL gefunden"
|
921 |
msgstr[1] "%d eindeutige URLs gefunden"
|
922 |
|
923 |
# @ broken-link-checker
|
924 |
+
#: core/core.php:2295
|
925 |
msgid "in %d link"
|
926 |
msgid_plural "in %d links"
|
927 |
msgstr[0] "in %d Link"
|
928 |
msgstr[1] "in %d Links"
|
929 |
|
930 |
# @ broken-link-checker
|
931 |
+
#: core/core.php:2300
|
932 |
msgid "and still searching..."
|
933 |
msgstr "und sucht immer noch ..."
|
934 |
|
935 |
# @ broken-link-checker
|
936 |
+
#: core/core.php:2306
|
937 |
msgid "Searching your blog for links..."
|
938 |
msgstr "Durchsucht Ihr Blog nach Links ..."
|
939 |
|
940 |
# @ broken-link-checker
|
941 |
+
#: core/core.php:2308
|
942 |
msgid "No links detected."
|
943 |
msgstr "Keine Links gefunden."
|
944 |
|
945 |
# @ broken-link-checker
|
946 |
+
#: core/core.php:2334
|
947 |
msgctxt "current load"
|
948 |
msgid "Unknown"
|
949 |
msgstr "Unbekannt"
|
950 |
|
951 |
# @ broken-link-checker
|
952 |
+
#: core/core.php:2398
|
953 |
+
#: core/core.php:2436
|
954 |
+
#: core/core.php:2499
|
955 |
msgid "Oops, I can't find the link %d"
|
956 |
msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
|
957 |
|
958 |
# @ broken-link-checker
|
959 |
+
#: core/core.php:2411
|
960 |
msgid "Oops, couldn't modify the link!"
|
961 |
msgstr "Hoppla, der Link konnte nicht geändert werden!"
|
962 |
|
963 |
# @ broken-link-checker
|
964 |
+
#: core/core.php:2414
|
965 |
+
#: core/core.php:2525
|
966 |
msgid "Error : link_id not specified"
|
967 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
968 |
|
969 |
# @ broken-link-checker
|
970 |
+
#: core/core.php:2446
|
971 |
msgid "Oops, the new URL is invalid!"
|
972 |
msgstr "Hoppla, die neue URL funktioniert nicht!"
|
973 |
|
974 |
# @ broken-link-checker
|
975 |
+
#: core/core.php:2457
|
976 |
+
#: core/core.php:2508
|
977 |
msgid "An unexpected error occured!"
|
978 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
979 |
|
980 |
# @ broken-link-checker
|
981 |
+
#: core/core.php:2475
|
982 |
msgid "Error : link_id or new_url not specified"
|
983 |
msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
|
984 |
|
985 |
# @ broken-link-checker
|
986 |
+
#: core/core.php:2534
|
987 |
msgid "You don't have sufficient privileges to access this information!"
|
988 |
msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
|
989 |
|
990 |
# @ broken-link-checker
|
991 |
+
#: core/core.php:2547
|
992 |
msgid "Error : link ID not specified"
|
993 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
994 |
|
995 |
# @ broken-link-checker
|
996 |
+
#: core/core.php:2561
|
997 |
msgid "Failed to load link details (%s)"
|
998 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
999 |
|
1000 |
# @ broken-link-checker
|
1001 |
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.3.1) #-#-#-#-#
|
1002 |
#. Plugin Name of the plugin/theme
|
1003 |
+
#: core/core.php:2614
|
1004 |
msgid "Broken Link Checker"
|
1005 |
msgstr "Broken Link Checker"
|
1006 |
|
1007 |
# @ broken-link-checker
|
1008 |
+
#: core/core.php:2634
|
1009 |
msgid "PHP version"
|
1010 |
msgstr "PHP Version"
|
1011 |
|
1012 |
# @ broken-link-checker
|
1013 |
+
#: core/core.php:2640
|
1014 |
msgid "MySQL version"
|
1015 |
msgstr "MySQL Version"
|
1016 |
|
1017 |
# @ broken-link-checker
|
1018 |
+
#: core/core.php:2653
|
1019 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
1020 |
msgstr "Sie haben eine veraltete Version von CURL. Erkennung von Umleitungen funktioniert eventuell nicht."
|
1021 |
|
1022 |
# @ broken-link-checker
|
1023 |
+
#: core/core.php:2665
|
1024 |
+
#: core/core.php:2681
|
1025 |
+
#: core/core.php:2686
|
1026 |
msgid "Not installed"
|
1027 |
msgstr "Nicht installiert"
|
1028 |
|
1029 |
# @ broken-link-checker
|
1030 |
+
#: core/core.php:2668
|
1031 |
msgid "CURL version"
|
1032 |
msgstr "CURL Version"
|
1033 |
|
1034 |
# @ broken-link-checker
|
1035 |
+
#: core/core.php:2674
|
1036 |
msgid "Installed"
|
1037 |
msgstr "Installiert"
|
1038 |
|
1039 |
# @ broken-link-checker
|
1040 |
+
#: core/core.php:2687
|
1041 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
1042 |
msgstr "Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin funktioniert!"
|
1043 |
|
1044 |
# @ broken-link-checker
|
1045 |
+
#: core/core.php:2698
|
1046 |
msgid "On"
|
1047 |
msgstr "An"
|
1048 |
|
1049 |
# @ broken-link-checker
|
1050 |
+
#: core/core.php:2699
|
1051 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
1052 |
msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode aktiviert ist."
|
1053 |
|
1054 |
# @ broken-link-checker
|
1055 |
+
#: core/core.php:2704
|
1056 |
+
#: core/core.php:2718
|
1057 |
msgid "Off"
|
1058 |
msgstr "Aus"
|
1059 |
|
1060 |
# @ broken-link-checker
|
1061 |
+
#: core/core.php:2712
|
1062 |
msgid "On ( %s )"
|
1063 |
msgstr "An (%s)"
|
1064 |
|
1065 |
# @ broken-link-checker
|
1066 |
+
#: core/core.php:2713
|
1067 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
1068 |
msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls open_basedir aktiviert ist."
|
1069 |
|
1070 |
# @ broken-link-checker
|
1071 |
+
#: core/core.php:2742
|
1072 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
1073 |
msgstr "Wenn dieser Wert nach mehreren geladenen Seiten Null ist, ist wahrscheinlich ein Fehler aufgetreten."
|
1074 |
|
1075 |
# @ broken-link-checker
|
1076 |
+
#: core/core.php:2833
|
1077 |
+
#: core/core.php:2931
|
1078 |
msgid "[%s] Broken links detected"
|
1079 |
msgstr "[%s] Fehlerhafte Links entdeckt"
|
1080 |
|
1081 |
# @ broken-link-checker
|
1082 |
+
#: core/core.php:2838
|
1083 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
1084 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
1085 |
msgstr[0] "Broken Link Checker hat %d fehlerhaften Link auf Ihrer Webseite entdeckt."
|
1086 |
msgstr[1] "Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
|
1087 |
|
1088 |
# @ broken-link-checker
|
1089 |
+
#: core/core.php:2861
|
1090 |
msgid "Here's a list of the first %d broken links:"
|
1091 |
msgid_plural "Here's a list of the first %d broken links:"
|
1092 |
msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
1093 |
msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
1094 |
|
1095 |
# @ broken-link-checker
|
1096 |
+
#: core/core.php:2870
|
1097 |
msgid "Here's a list of the new broken links: "
|
1098 |
msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
|
1099 |
|
1100 |
# @ broken-link-checker
|
1101 |
+
#: core/core.php:2879
|
1102 |
msgid "Link text : %s"
|
1103 |
msgstr "Linktext: %s"
|
1104 |
|
1105 |
# @ broken-link-checker
|
1106 |
+
#: core/core.php:2880
|
1107 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
1108 |
msgstr "Link URL: <a href=\"%s\">%s</a>"
|
1109 |
|
1110 |
# @ broken-link-checker
|
1111 |
+
#: core/core.php:2881
|
1112 |
msgid "Source : %s"
|
1113 |
msgstr "Quelle: %s"
|
1114 |
|
1115 |
# @ brokenk-link-checker
|
1116 |
+
#: core/core.php:2894
|
1117 |
msgid "You can see all broken links here:"
|
1118 |
msgstr "Hier sehen Sie alle fehlerhaften Links:"
|
1119 |
|
1120 |
+
# @ broken-link-checker
|
1121 |
+
#: core/core.php:2936
|
1122 |
+
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
1123 |
+
msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
|
1124 |
+
msgstr[0] "Broken Link Checker hat %d fehlerhafter Link in einem Beitrag entdeckt."
|
1125 |
+
msgstr[1] "Broken Link Checker hat %d fehlerhafte Links in Beiträgen entdeckt."
|
1126 |
+
|
1127 |
# @ broken-link-checker
|
1128 |
#: includes/admin/links-page-js.php:58
|
1129 |
#: includes/admin/links-page-js.php:301
|
1132 |
|
1133 |
# @ broken-link-checker
|
1134 |
#: includes/admin/links-page-js.php:99
|
1135 |
+
#: includes/admin/table-printer.php:616
|
1136 |
msgid "Not broken"
|
1137 |
msgstr "Nicht fehlerhaft"
|
1138 |
|
1174 |
|
1175 |
# @ broken-link-checker
|
1176 |
#: includes/admin/links-page-js.php:361
|
1177 |
+
#: includes/admin/table-printer.php:266
|
1178 |
+
#: includes/admin/table-printer.php:610
|
1179 |
msgid "Unlink"
|
1180 |
msgstr "Link aufheben"
|
1181 |
|
1242 |
|
1243 |
# @ broken-link-checker
|
1244 |
#: includes/admin/search-form.php:45
|
1245 |
+
#: includes/admin/table-printer.php:200
|
1246 |
msgid "URL"
|
1247 |
msgstr "URL"
|
1248 |
|
1249 |
# @ broken-link-checker
|
1250 |
#: includes/admin/search-form.php:48
|
1251 |
+
#: includes/admin/table-printer.php:484
|
1252 |
msgid "HTTP code"
|
1253 |
msgstr "HTTP Code"
|
1254 |
|
1280 |
|
1281 |
# @ broken-link-checker
|
1282 |
#: includes/admin/search-form.php:113
|
1283 |
+
#: includes/admin/table-printer.php:342
|
1284 |
+
#: includes/admin/table-printer.php:624
|
1285 |
+
#: includes/admin/table-printer.php:630
|
1286 |
msgid "Cancel"
|
1287 |
msgstr "Abbrechen"
|
1288 |
|
1298 |
msgid "Return to WordPress Dashboard"
|
1299 |
msgstr "Zurück zum Wordpress Dashboard"
|
1300 |
|
|
|
|
|
|
|
|
|
1301 |
# @ broken-link-checker
|
1302 |
#: includes/admin/options-page-js.php:54
|
1303 |
msgid "Hide debug info"
|
1304 |
msgstr "Debug Info verbergen"
|
1305 |
|
1306 |
# @ broken-link-checker
|
1307 |
+
#: includes/admin/table-printer.php:177
|
1308 |
msgid "Compact View"
|
1309 |
msgstr "Kompaktansicht"
|
1310 |
|
1311 |
# @ broken-link-checker
|
1312 |
+
#: includes/admin/table-printer.php:178
|
1313 |
msgid "Detailed View"
|
1314 |
msgstr "Detailansicht"
|
1315 |
|
1316 |
# @ broken-link-checker
|
1317 |
+
#: includes/admin/table-printer.php:207
|
1318 |
msgid "Source"
|
1319 |
msgstr "Quelle"
|
1320 |
|
1321 |
# @ broken-link-checker
|
1322 |
+
#: includes/admin/table-printer.php:213
|
1323 |
msgid "Link Text"
|
1324 |
msgstr "Linktext"
|
1325 |
|
1326 |
# @ broken-link-checker
|
1327 |
+
#: includes/admin/table-printer.php:261
|
1328 |
msgid "Bulk Actions"
|
1329 |
msgstr "Massenänderung"
|
1330 |
|
1331 |
# @ broken-link-checker
|
1332 |
+
#: includes/admin/table-printer.php:262
|
1333 |
+
#: includes/admin/table-printer.php:607
|
1334 |
msgid "Edit URL"
|
1335 |
msgstr "Bearbeite URL"
|
1336 |
|
1337 |
# @ broken-link-checker
|
1338 |
+
#: includes/admin/table-printer.php:263
|
1339 |
msgid "Recheck"
|
1340 |
msgstr "Erneut überprüfen"
|
1341 |
|
1342 |
# @ broken-link-checker
|
1343 |
+
#: includes/admin/table-printer.php:264
|
1344 |
msgid "Fix redirects"
|
1345 |
msgstr "Feste Umleitungen"
|
1346 |
|
1347 |
# @ broken-link-checker
|
1348 |
+
#: includes/admin/table-printer.php:265
|
1349 |
msgid "Mark as not broken"
|
1350 |
msgstr "Als nicht fehlerhaft markieren"
|
1351 |
|
1352 |
# @ broken-link-checker
|
1353 |
+
#: includes/admin/table-printer.php:269
|
1354 |
msgid "Move sources to Trash"
|
1355 |
msgstr "Verschiebe Quelle in den Papierkorb"
|
1356 |
|
1357 |
# @ broken-link-checker
|
1358 |
+
#: includes/admin/table-printer.php:271
|
1359 |
msgid "Delete sources"
|
1360 |
msgstr "Quellen löschen"
|
1361 |
|
1362 |
# @ default
|
1363 |
+
#: includes/admin/table-printer.php:286
|
1364 |
msgid "«"
|
1365 |
msgstr "«"
|
1366 |
|
1367 |
# @ default
|
1368 |
+
#: includes/admin/table-printer.php:287
|
1369 |
msgid "»"
|
1370 |
msgstr "»"
|
1371 |
|
1372 |
# @ broken-link-checker
|
1373 |
+
#: includes/admin/table-printer.php:295
|
1374 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1375 |
msgstr "Anzeigen %s–%s von <span class=\"current-link-count\">%s</span>"
|
1376 |
|
1377 |
# @ broken-link-checker
|
1378 |
+
#: includes/admin/table-printer.php:318
|
1379 |
msgid "Bulk Edit URLs"
|
1380 |
msgstr "Mehrere URLs bearbeiten"
|
1381 |
|
1382 |
+
#: includes/admin/table-printer.php:320
|
1383 |
msgid "Find"
|
1384 |
msgstr "Finden"
|
1385 |
|
1386 |
+
#: includes/admin/table-printer.php:324
|
1387 |
msgid "Replace with"
|
1388 |
msgstr "Ersetzen mit"
|
1389 |
|
1390 |
# @ broken-link-checker
|
1391 |
+
#: includes/admin/table-printer.php:332
|
1392 |
msgid "Case sensitive"
|
1393 |
msgstr "Gross- und Kleinschreibung"
|
1394 |
|
1395 |
+
#: includes/admin/table-printer.php:336
|
1396 |
msgid "Regular expression"
|
1397 |
msgstr "Regulärer Ausdruck"
|
1398 |
|
1399 |
# @ broken-link-checker
|
1400 |
+
#: includes/admin/table-printer.php:344
|
1401 |
msgid "Update"
|
1402 |
msgstr "Aktualisieren"
|
1403 |
|
1404 |
# @ broken-link-checker
|
1405 |
+
#: includes/admin/table-printer.php:469
|
1406 |
msgid "Post published on"
|
1407 |
msgstr "Beitrag publiziert am"
|
1408 |
|
1409 |
# @ broken-link-checker
|
1410 |
+
#: includes/admin/table-printer.php:474
|
1411 |
msgid "Link last checked"
|
1412 |
msgstr "Link zuletzt geprüft"
|
1413 |
|
1414 |
# @ broken-link-checker
|
1415 |
+
#: includes/admin/table-printer.php:478
|
1416 |
msgid "Never"
|
1417 |
msgstr "Nie"
|
1418 |
|
1419 |
# @ broken-link-checker
|
1420 |
+
#: includes/admin/table-printer.php:489
|
1421 |
msgid "Response time"
|
1422 |
msgstr "Reaktionszeit"
|
1423 |
|
1424 |
# @ broken-link-checker
|
1425 |
+
#: includes/admin/table-printer.php:491
|
1426 |
msgid "%2.3f seconds"
|
1427 |
msgstr "%2.3f Sekunden"
|
1428 |
|
1429 |
# @ broken-link-checker
|
1430 |
+
#: includes/admin/table-printer.php:494
|
1431 |
msgid "Final URL"
|
1432 |
msgstr "Endgültige URL"
|
1433 |
|
1434 |
# @ broken-link-checker
|
1435 |
+
#: includes/admin/table-printer.php:499
|
1436 |
msgid "Redirect count"
|
1437 |
msgstr "Weiterleitung Anzahl"
|
1438 |
|
1439 |
# @ broken-link-checker
|
1440 |
+
#: includes/admin/table-printer.php:504
|
1441 |
msgid "Instance count"
|
1442 |
msgstr "Instanz Anzahl"
|
1443 |
|
1444 |
# @ broken-link-checker
|
1445 |
+
#: includes/admin/table-printer.php:513
|
1446 |
msgid "This link has failed %d time."
|
1447 |
msgid_plural "This link has failed %d times."
|
1448 |
msgstr[0] "Dieser Link schlug %d mal fehl."
|
1449 |
msgstr[1] "Dieser Link schlug %d mal fehl."
|
1450 |
|
1451 |
# @ broken-link-checker
|
1452 |
+
#: includes/admin/table-printer.php:521
|
1453 |
msgid "This link has been broken for %s."
|
1454 |
msgstr "Dieser Links ist fehlerhaft seit %s."
|
1455 |
|
1456 |
# @ broken-link-checker
|
1457 |
+
#: includes/admin/table-printer.php:532
|
1458 |
msgid "Log"
|
1459 |
msgstr "Log"
|
1460 |
|
1461 |
# @ broken-link-checker
|
1462 |
+
#: includes/admin/table-printer.php:553
|
1463 |
msgid "Show more info about this link"
|
1464 |
msgstr "Mehr Informationen über diesen Link anzeigen"
|
1465 |
|
1466 |
# @ broken-link-checker
|
1467 |
+
#: includes/admin/table-printer.php:571
|
1468 |
msgctxt "checked how long ago"
|
1469 |
msgid "Checked"
|
1470 |
msgstr "Geprüft"
|
1471 |
|
1472 |
# @ broken-link-checker
|
1473 |
+
#: includes/admin/table-printer.php:587
|
1474 |
msgid "Broken for"
|
1475 |
msgstr "Fehlerhaft für"
|
1476 |
|
1477 |
# @ broken-link-checker
|
1478 |
+
#: includes/admin/table-printer.php:607
|
1479 |
msgid "Edit link URL"
|
1480 |
msgstr "Bearbeite URL Link"
|
1481 |
|
1482 |
# @ broken-link-checker
|
1483 |
+
#: includes/admin/table-printer.php:609
|
1484 |
msgid "Remove this link from all posts"
|
1485 |
msgstr "Löschen Sie diesen Link von allen Beiträgen"
|
1486 |
|
1487 |
# @ broken-link-checker
|
1488 |
+
#: includes/admin/table-printer.php:615
|
1489 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
1490 |
msgstr "Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als gültig"
|
1491 |
|
1492 |
# @ broken-link-checker
|
1493 |
+
#: includes/admin/table-printer.php:624
|
1494 |
msgid "Cancel URL editing"
|
1495 |
msgstr "URL Bearbeitung abbrechen"
|
1496 |
|
1497 |
# @ broken-link-checker
|
1498 |
+
#: includes/admin/table-printer.php:631
|
1499 |
msgid "Update URL"
|
1500 |
msgstr "Update URL"
|
1501 |
|
1502 |
# @ broken-link-checker
|
1503 |
+
#: includes/admin/table-printer.php:653
|
1504 |
msgid "[An orphaned link! This is a bug.]"
|
1505 |
msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
|
1506 |
|
languages/broken-link-checker-it_IT.mo
CHANGED
Binary file
|
languages/broken-link-checker-it_IT.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Broken Link Checker in italiano\n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
10 |
-
"POT-Creation-Date: 2011-
|
11 |
-
"PO-Revision-Date: 2011-
|
12 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
13 |
"Language-Team: Gianni Diurno | gidibao.net & charmingpress.com\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -168,13 +168,13 @@ msgstr "Visualizza il commento"
|
|
168 |
msgid "Comment"
|
169 |
msgstr "Commento"
|
170 |
|
171 |
-
#: modules/containers/comment.php:
|
172 |
msgid "%d comment has been deleted."
|
173 |
msgid_plural "%d comments have been deleted."
|
174 |
msgstr[0] "%d commento é stato cancellato"
|
175 |
msgstr[1] "%d commenti sono stati cancellati"
|
176 |
|
177 |
-
#: modules/containers/comment.php:
|
178 |
msgid "%d comment moved to the Trash."
|
179 |
msgid_plural "%d comments moved to the Trash."
|
180 |
msgstr[0] "%d commento spostato nel cestino"
|
@@ -289,37 +289,37 @@ msgstr "Vimeo Video"
|
|
289 |
msgid "Embedded Vimeo video"
|
290 |
msgstr "Video incorporato Vimeo"
|
291 |
|
292 |
-
#: modules/extras/youtube.php:
|
293 |
-
#: modules/extras/youtube.php:
|
294 |
msgid "Video Not Found"
|
295 |
msgstr "Video non trovato"
|
296 |
|
297 |
-
#: modules/extras/youtube.php:
|
298 |
msgid "Video Removed"
|
299 |
msgstr "Video rimosso"
|
300 |
|
301 |
-
#: modules/extras/youtube.php:
|
302 |
msgid "Invalid Video ID"
|
303 |
msgstr "ID video non valida"
|
304 |
|
305 |
-
#: modules/extras/youtube.php:
|
306 |
msgid "Video OK"
|
307 |
msgstr "Video OK"
|
308 |
|
309 |
-
#: modules/extras/youtube.php:
|
310 |
-
#: modules/extras/youtube.php:
|
311 |
msgid "OK"
|
312 |
msgstr "OK"
|
313 |
|
314 |
-
#: modules/extras/youtube.php:
|
315 |
msgid "Video status : %s%s"
|
316 |
msgstr "Stato video : %s%s"
|
317 |
|
318 |
-
#: modules/extras/youtube.php:
|
319 |
msgid "Video Restricted"
|
320 |
msgstr "Video riservato"
|
321 |
|
322 |
-
#: modules/extras/youtube.php:
|
323 |
msgid "Unknown YouTube API response received."
|
324 |
msgstr "Risposta sconosciuta ricevuta da API YouTube."
|
325 |
|
@@ -331,15 +331,15 @@ msgstr "File temporameamente non disponibile"
|
|
331 |
msgid "API Error"
|
332 |
msgstr "Errore API"
|
333 |
|
334 |
-
#: core/init.php:
|
335 |
msgid "Once Weekly"
|
336 |
msgstr "Una volta alla settimana"
|
337 |
|
338 |
-
#: core/init.php:
|
339 |
msgid "Twice a Month"
|
340 |
msgstr "Due volte al mese"
|
341 |
|
342 |
-
#: core/init.php:
|
343 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
344 |
msgstr "L'installazione di Broken Link Checker é fallita. Prova a disattivare quindi, riattivare il plugin."
|
345 |
|
@@ -357,577 +357,589 @@ msgstr "[ Network error ]"
|
|
357 |
msgid "Automatically expand the widget if broken links have been detected"
|
358 |
msgstr "Espandi in automatico il widget qualora un link rotto fosse stato rilevato"
|
359 |
|
360 |
-
#: core/core.php:
|
361 |
msgid "Link Checker Settings"
|
362 |
msgstr "Impostazioni Link Checker"
|
363 |
|
364 |
-
#: core/core.php:
|
365 |
msgid "Link Checker"
|
366 |
msgstr "Link Checker"
|
367 |
|
368 |
-
#: core/core.php:
|
369 |
#: includes/link-query.php:26
|
370 |
msgid "Broken Links"
|
371 |
msgstr "Link rotti"
|
372 |
|
373 |
-
#: core/core.php:
|
374 |
msgid "View Broken Links"
|
375 |
msgstr "Visualizza i link rotti"
|
376 |
|
377 |
-
#: core/core.php:
|
378 |
msgid "Feedback"
|
379 |
msgstr "Feedback"
|
380 |
|
381 |
-
#: core/core.php:
|
382 |
-
|
383 |
-
|
|
|
384 |
|
385 |
-
#: core/core.php:
|
386 |
msgid "Go to Broken Links"
|
387 |
msgstr "Vai ai link rotti"
|
388 |
|
389 |
-
#: core/core.php:
|
390 |
msgid "Settings"
|
391 |
msgstr "Impostazioni"
|
392 |
|
393 |
-
#: core/core.php:
|
394 |
-
#: core/core.php:
|
395 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
396 |
msgstr "Errore: le tabelle del database di questo plugin non sono aggiornate! (versione in uso : %d, attesa : %d)"
|
397 |
|
398 |
-
#: core/core.php:
|
399 |
-
#: core/core.php:
|
400 |
msgid "Try deactivating and then reactivating the plugin."
|
401 |
msgstr "Prova a disattivare quindi, riattivare il plugin."
|
402 |
|
403 |
-
#: core/core.php:
|
404 |
msgid "Settings saved."
|
405 |
msgstr "Le impostazioni sono state salvate."
|
406 |
|
407 |
-
#: core/core.php:
|
408 |
msgid "Thank you for your donation!"
|
409 |
msgstr "Grazie per la tua donazione!"
|
410 |
|
411 |
-
#: core/core.php:
|
412 |
msgid "Complete site recheck started."
|
413 |
msgstr "E' in atto la nuova verifica completa per il sito."
|
414 |
|
415 |
-
#: core/core.php:
|
416 |
msgid "Details"
|
417 |
msgstr "Dettagli"
|
418 |
|
419 |
-
#: core/core.php:
|
420 |
msgid "General"
|
421 |
msgstr "Generale"
|
422 |
|
423 |
-
#: core/core.php:
|
424 |
msgid "Look For Links In"
|
425 |
msgstr "Cerca i link in"
|
426 |
|
427 |
-
#: core/core.php:
|
428 |
msgid "Which Links To Check"
|
429 |
msgstr "Quali link controllare"
|
430 |
|
431 |
-
#: core/core.php:
|
432 |
msgid "Protocols & APIs"
|
433 |
msgstr "Protocolli & API"
|
434 |
|
435 |
-
#: core/core.php:
|
436 |
msgid "Advanced"
|
437 |
msgstr "Avanzate"
|
438 |
|
439 |
-
#: core/core.php:
|
440 |
msgid "Broken Link Checker Options"
|
441 |
msgstr "Opzioni Broken Link Checker"
|
442 |
|
443 |
-
#: core/core.php:
|
444 |
-
#: includes/admin/table-printer.php:
|
445 |
msgid "Status"
|
446 |
msgstr "Stato"
|
447 |
|
448 |
-
#: core/core.php:
|
449 |
#: includes/admin/options-page-js.php:56
|
450 |
msgid "Show debug info"
|
451 |
msgstr "Mostra info debug"
|
452 |
|
453 |
-
#: core/core.php:
|
454 |
msgid "Check each link"
|
455 |
msgstr "Controlla i link"
|
456 |
|
457 |
-
#: core/core.php:
|
458 |
msgid "Every %s hours"
|
459 |
msgstr "Ogni %s ore"
|
460 |
|
461 |
-
#: core/core.php:
|
462 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
463 |
msgstr "I link già esistenti verranno controllati con questa frequenza i nuovi, lo saranno a breve."
|
464 |
|
465 |
-
#: core/core.php:
|
466 |
msgid "E-mail notifications"
|
467 |
msgstr "Notifiche email"
|
468 |
|
469 |
-
#: core/core.php:
|
470 |
msgid "Send me e-mail notifications about newly detected broken links"
|
471 |
msgstr "Inviami una email di notifica al rilevamento di un nuovo link rotto"
|
472 |
|
473 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
474 |
msgid "Link tweaks"
|
475 |
msgstr "Link tweaks"
|
476 |
|
477 |
-
#: core/core.php:
|
478 |
msgid "Apply custom formatting to broken links"
|
479 |
msgstr "Applica formattazione personalizzata ai link rotti"
|
480 |
|
481 |
-
#: core/core.php:
|
482 |
-
#: core/core.php:
|
483 |
msgid "Edit CSS"
|
484 |
msgstr "Modifica CSS"
|
485 |
|
486 |
-
#: core/core.php:
|
487 |
msgid "Apply custom formatting to removed links"
|
488 |
msgstr "Applica la formattazione personalizzata ai link rimossi"
|
489 |
|
490 |
-
#: core/core.php:
|
491 |
msgid "Stop search engines from following broken links"
|
492 |
msgstr "Blocca i motori di ricerca per i seguenti link"
|
493 |
|
494 |
-
#: core/core.php:
|
495 |
msgid "Look for links in"
|
496 |
msgstr "Cerca i links in"
|
497 |
|
498 |
-
#: core/core.php:
|
499 |
msgid "Post statuses"
|
500 |
msgstr "Stati articolo"
|
501 |
|
502 |
-
#: core/core.php:
|
503 |
msgid "Link types"
|
504 |
msgstr "Tipo di link"
|
505 |
|
506 |
-
#: core/core.php:
|
507 |
msgid "Error : All link parsers missing!"
|
508 |
msgstr "Errore : manca l'analisi di tutti i link!"
|
509 |
|
510 |
-
#: core/core.php:
|
511 |
msgid "Exclusion list"
|
512 |
msgstr "Lista estromessi"
|
513 |
|
514 |
-
#: core/core.php:
|
515 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
516 |
msgstr "Non controllare gli URL che contengono queste parole (una per riga):"
|
517 |
|
518 |
-
#: core/core.php:
|
519 |
msgid "Check links using"
|
520 |
msgstr "Controlla utilizzo link"
|
521 |
|
522 |
-
#: core/core.php:
|
523 |
#: includes/links.php:849
|
524 |
msgid "Timeout"
|
525 |
msgstr "Timeout"
|
526 |
|
527 |
-
#: core/core.php:
|
528 |
-
#: core/core.php:
|
529 |
-
#: core/core.php:
|
530 |
msgid "%s seconds"
|
531 |
msgstr "%s secondi"
|
532 |
|
533 |
-
#: core/core.php:
|
534 |
msgid "Links that take longer than this to load will be marked as broken."
|
535 |
msgstr "I link che impiegheranno un maggior tempo per essere caricati verranno considerati come rotti."
|
536 |
|
537 |
-
#: core/core.php:
|
538 |
msgid "Link monitor"
|
539 |
msgstr "Monitoraggio link"
|
540 |
|
541 |
-
#: core/core.php:
|
542 |
msgid "Run continuously while the Dashboard is open"
|
543 |
msgstr "Funzionamento continuo durante il periodo di login"
|
544 |
|
545 |
-
#: core/core.php:
|
546 |
msgid "Run hourly in the background"
|
547 |
msgstr "Funzionamento in background ogni ora"
|
548 |
|
549 |
-
#: core/core.php:
|
550 |
msgid "Max. execution time"
|
551 |
msgstr "Tempo max. operazione"
|
552 |
|
553 |
-
#: core/core.php:
|
554 |
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."
|
555 |
msgstr "Questo plugin opera grazie ad una richiesta periodica che lavora in background atta al rilevamento dei link contenuti nei post alla ricerca degli URL nonché compie delle operazioni che richiedono del tempo. Qui puoi impostare il tempo massimo di durata per la richiesta in background prima che essa termini."
|
556 |
|
557 |
-
#: core/core.php:
|
558 |
msgid "Server load limit"
|
559 |
msgstr "Limite server load"
|
560 |
|
561 |
-
#: core/core.php:
|
562 |
msgid "Current load : %s"
|
563 |
msgstr "In caricamento : %s"
|
564 |
|
565 |
-
#: core/core.php:
|
566 |
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."
|
567 |
msgstr "La verifica dei link sarà sospesa nel caso in cui il valore di media del <a href=\"%s\">server load</a> superasse questo numero. Lascia in bianco per disattivare il limite di caricamento."
|
568 |
|
569 |
-
#: core/core.php:
|
570 |
msgid "Not available"
|
571 |
msgstr "Non disponibile"
|
572 |
|
573 |
-
#: core/core.php:
|
574 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
575 |
msgstr "Il limite di caricamento funziona solamente per i sistemi Linux-like laddove la funzione <code>/proc/loadavg</code> sia presente ed accessibile."
|
576 |
|
577 |
-
#: core/core.php:
|
578 |
msgid "Forced recheck"
|
579 |
msgstr "Imponi nuova verifica"
|
580 |
|
581 |
-
#: core/core.php:
|
582 |
msgid "Re-check all pages"
|
583 |
msgstr "Ricontrolla tutte le pagine"
|
584 |
|
585 |
-
#: core/core.php:
|
586 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
587 |
msgstr "La \"Opzione atomica\". Clicca questo pulsante per fare sì che il plugin svuoti i link nel database ed effettui da zero un controllo del sito."
|
588 |
|
589 |
-
#: core/core.php:
|
590 |
msgid "Save Changes"
|
591 |
msgstr "Salva le modifiche"
|
592 |
|
593 |
-
#: core/core.php:
|
594 |
msgid "Configure"
|
595 |
msgstr "Configura"
|
596 |
|
597 |
-
#: core/core.php:
|
598 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
599 |
msgstr "Controlla gli URL inseriti in questi campi personalizzati (uno per riga):"
|
600 |
|
601 |
-
#: core/core.php:
|
602 |
-
#: core/core.php:
|
603 |
-
#: core/core.php:
|
604 |
msgid "Database error : %s"
|
605 |
msgstr "Errore database : %s"
|
606 |
|
607 |
-
#: core/core.php:
|
608 |
msgid "You must enter a filter name!"
|
609 |
msgstr "Deve essere inserito un nome del filtro!"
|
610 |
|
611 |
-
#: core/core.php:
|
612 |
msgid "Invalid search query."
|
613 |
msgstr "Termine di ricerca non valido."
|
614 |
|
615 |
-
#: core/core.php:
|
616 |
msgid "Filter \"%s\" created"
|
617 |
msgstr "E' stato creato il filtro \"%s\""
|
618 |
|
619 |
-
#: core/core.php:
|
620 |
msgid "Filter ID not specified."
|
621 |
msgstr "ID filtro non specificato."
|
622 |
|
623 |
-
#: core/core.php:
|
624 |
msgid "Filter deleted"
|
625 |
msgstr "Il filtro é stato cancellato"
|
626 |
|
627 |
-
#: core/core.php:
|
628 |
msgid "Replaced %d redirect with a direct link"
|
629 |
msgid_plural "Replaced %d redirects with direct links"
|
630 |
msgstr[0] "Sostituito %d reindirizzamento con un link diretto"
|
631 |
msgstr[1] "Sostituiti %d reindirizzamenti con dei link diretti"
|
632 |
|
633 |
-
#: core/core.php:
|
634 |
msgid "Failed to fix %d redirect"
|
635 |
msgid_plural "Failed to fix %d redirects"
|
636 |
msgstr[0] "Impossibile correggere il reindirizzamento per %d"
|
637 |
msgstr[1] "Impossibile correggere i reindirizzamenti per %d"
|
638 |
|
639 |
-
#: core/core.php:
|
640 |
msgid "None of the selected links are redirects!"
|
641 |
msgstr "Nessuno dei link selezionati é reindirizzato!"
|
642 |
|
643 |
-
#: core/core.php:
|
644 |
msgid "%d link updated."
|
645 |
msgid_plural "%d links updated."
|
646 |
msgstr[0] "%d link aggiornato."
|
647 |
msgstr[1] "%d link aggiornati."
|
648 |
|
649 |
-
#: core/core.php:
|
650 |
msgid "Failed to update %d link."
|
651 |
msgid_plural "Failed to update %d links."
|
652 |
msgstr[0] "Impossibile aggiornare il link %d"
|
653 |
msgstr[1] "Impossibile aggiornare i link %d"
|
654 |
|
655 |
-
#: core/core.php:
|
656 |
msgid "%d link removed"
|
657 |
msgid_plural "%d links removed"
|
658 |
msgstr[0] "%d il link é stato rimosso"
|
659 |
msgstr[1] "%d i link sono stati rimossi"
|
660 |
|
661 |
-
#: core/core.php:
|
662 |
msgid "Failed to remove %d link"
|
663 |
msgid_plural "Failed to remove %d links"
|
664 |
msgstr[0] "Impossibile rimuovere il link %d"
|
665 |
msgstr[1] "Impossibile rimuovere i link %d"
|
666 |
|
667 |
-
#: core/core.php:
|
668 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
669 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
670 |
msgstr[0] "%d l'elemento é stato saltato poiché non potrà essere spostato nel cestino. Dovrai cancellarlo manualmente."
|
671 |
msgstr[1] "%d gli elementi sono stati saltati poiché non potranno essere spostati nel cestino. Dovrai cancellarli manualmente."
|
672 |
|
673 |
-
#: core/core.php:
|
674 |
msgid "Didn't find anything to delete!"
|
675 |
msgstr "Nulla da cancellare!"
|
676 |
|
677 |
-
#: core/core.php:
|
678 |
msgid "%d link scheduled for rechecking"
|
679 |
msgid_plural "%d links scheduled for rechecking"
|
680 |
msgstr[0] "%d link in verifica programmata"
|
681 |
msgstr[1] "%d link in verifica programmata"
|
682 |
|
683 |
-
#: core/core.php:
|
684 |
-
#: core/core.php:
|
685 |
msgid "This link was manually marked as working by the user."
|
686 |
msgstr "L'utente ha segnalato manualmente che questo link é funzionante."
|
687 |
|
688 |
-
#: core/core.php:
|
689 |
msgid "Couldn't modify link %d"
|
690 |
msgstr "Non é possibile modificare il link %d"
|
691 |
|
692 |
-
#: core/core.php:
|
693 |
msgid "%d link marked as not broken"
|
694 |
msgid_plural "%d links marked as not broken"
|
695 |
msgstr[0] "%d link segnato come funzionante"
|
696 |
msgstr[1] "%d link segnati come funzionanti"
|
697 |
|
698 |
-
#: core/core.php:
|
699 |
msgid "Table columns"
|
700 |
msgstr "Colonne tabella"
|
701 |
|
702 |
-
#: core/core.php:
|
703 |
msgid "Show on screen"
|
704 |
msgstr "Mostra sullo schermo"
|
705 |
|
706 |
-
#: core/core.php:
|
707 |
msgid "links"
|
708 |
msgstr "link"
|
709 |
|
710 |
-
#: core/core.php:
|
711 |
-
#: includes/admin/table-printer.php:
|
712 |
msgid "Apply"
|
713 |
msgstr "Applica"
|
714 |
|
715 |
-
#: core/core.php:
|
716 |
msgid "Misc"
|
717 |
msgstr "Varie"
|
718 |
|
719 |
-
#: core/core.php:
|
720 |
msgid "Highlight links broken for at least %s days"
|
721 |
msgstr "Evidenzia i link rotti per gli ultimi %s giorni"
|
722 |
|
723 |
-
#: core/core.php:
|
724 |
msgid "Color-code status codes"
|
725 |
msgstr "Codici stato codice-colore"
|
726 |
|
727 |
-
#: core/core.php:
|
728 |
-
#: core/core.php:
|
729 |
-
#: core/core.php:
|
730 |
-
#: core/core.php:
|
731 |
msgid "You're not allowed to do that!"
|
732 |
msgstr "Non hai il permesso per farlo!"
|
733 |
|
734 |
-
#: core/core.php:
|
735 |
msgid "View broken links"
|
736 |
msgstr "Visualizza i link rotti"
|
737 |
|
738 |
-
#: core/core.php:
|
739 |
msgid "Found %d broken link"
|
740 |
msgid_plural "Found %d broken links"
|
741 |
msgstr[0] "E' stato trovato %d link rotto"
|
742 |
msgstr[1] "Sono stati trovati %d link rotti"
|
743 |
|
744 |
-
#: core/core.php:
|
745 |
msgid "No broken links found."
|
746 |
msgstr "Non é stato trovato alcun link rotto."
|
747 |
|
748 |
-
#: core/core.php:
|
749 |
msgid "%d URL in the work queue"
|
750 |
msgid_plural "%d URLs in the work queue"
|
751 |
msgstr[0] "%d URL in coda di elaborazione"
|
752 |
msgstr[1] "%d URL in coda di elaborazione"
|
753 |
|
754 |
-
#: core/core.php:
|
755 |
msgid "No URLs in the work queue."
|
756 |
msgstr "Nessun URL in coda di elaborazione."
|
757 |
|
758 |
-
#: core/core.php:
|
759 |
msgid "Detected %d unique URL"
|
760 |
msgid_plural "Detected %d unique URLs"
|
761 |
msgstr[0] "E' stato rilevato %d URL unico"
|
762 |
msgstr[1] "Sono stati rilevati %d URL unici"
|
763 |
|
764 |
-
#: core/core.php:
|
765 |
msgid "in %d link"
|
766 |
msgid_plural "in %d links"
|
767 |
msgstr[0] "in %d link"
|
768 |
msgstr[1] "in %d link"
|
769 |
|
770 |
-
#: core/core.php:
|
771 |
msgid "and still searching..."
|
772 |
msgstr "ricerca in corso..."
|
773 |
|
774 |
-
#: core/core.php:
|
775 |
msgid "Searching your blog for links..."
|
776 |
msgstr "Ricerca dei link in corso..."
|
777 |
|
778 |
-
#: core/core.php:
|
779 |
msgid "No links detected."
|
780 |
msgstr "Nessun link é stato rilevato."
|
781 |
|
782 |
-
#: core/core.php:
|
783 |
msgctxt "current load"
|
784 |
msgid "Unknown"
|
785 |
msgstr "Sconosciuto"
|
786 |
|
787 |
-
#: core/core.php:
|
788 |
-
#: core/core.php:
|
789 |
-
#: core/core.php:
|
790 |
msgid "Oops, I can't find the link %d"
|
791 |
msgstr "Oops, non é possibile trovare il link %d"
|
792 |
|
793 |
-
#: core/core.php:
|
794 |
msgid "Oops, couldn't modify the link!"
|
795 |
msgstr "Oops, non é possibile modificare il link!"
|
796 |
|
797 |
-
#: core/core.php:
|
798 |
-
#: core/core.php:
|
799 |
msgid "Error : link_id not specified"
|
800 |
msgstr "Errore : non é stata specificata la link_id"
|
801 |
|
802 |
-
#: core/core.php:
|
803 |
msgid "Oops, the new URL is invalid!"
|
804 |
msgstr "Oops, il nuovo URL non é valido!"
|
805 |
|
806 |
-
#: core/core.php:
|
807 |
-
#: core/core.php:
|
808 |
msgid "An unexpected error occured!"
|
809 |
msgstr "Si é verificato un errore inatteso!"
|
810 |
|
811 |
-
#: core/core.php:
|
812 |
msgid "Error : link_id or new_url not specified"
|
813 |
msgstr "Errore : non é stata specificata la link_id oppure il new_url"
|
814 |
|
815 |
-
#: core/core.php:
|
816 |
msgid "You don't have sufficient privileges to access this information!"
|
817 |
msgstr "Non hai i permessi necessari per poter accedere a questa informazione!"
|
818 |
|
819 |
-
#: core/core.php:
|
820 |
msgid "Error : link ID not specified"
|
821 |
msgstr "Errore : La ID del link non é stata specificata"
|
822 |
|
823 |
-
#: core/core.php:
|
824 |
msgid "Failed to load link details (%s)"
|
825 |
msgstr "Non é stato possibile caricare i dettagli sul link (%s)"
|
826 |
|
827 |
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.3.1) #-#-#-#-#
|
828 |
#. Plugin Name of the plugin/theme
|
829 |
-
#: core/core.php:
|
830 |
msgid "Broken Link Checker"
|
831 |
msgstr "Broken Link Checker"
|
832 |
|
833 |
-
#: core/core.php:
|
834 |
msgid "PHP version"
|
835 |
msgstr "Versione PHP"
|
836 |
|
837 |
-
#: core/core.php:
|
838 |
msgid "MySQL version"
|
839 |
msgstr "Versione MySQL"
|
840 |
|
841 |
-
#: core/core.php:
|
842 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
843 |
msgstr "Hai una versione datata del CURL. Il rilevamento del reindirizzamento potrebbe non funzionare."
|
844 |
|
845 |
-
#: core/core.php:
|
846 |
-
#: core/core.php:
|
847 |
-
#: core/core.php:
|
848 |
msgid "Not installed"
|
849 |
msgstr "Non installato"
|
850 |
|
851 |
-
#: core/core.php:
|
852 |
msgid "CURL version"
|
853 |
msgstr "Versione CURL"
|
854 |
|
855 |
-
#: core/core.php:
|
856 |
msgid "Installed"
|
857 |
msgstr "Installato"
|
858 |
|
859 |
-
#: core/core.php:
|
860 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
861 |
msgstr "E' necessario che tu abbia installato il CURL oppure Snoopy affinché il plugin possa funzionare!"
|
862 |
|
863 |
-
#: core/core.php:
|
864 |
msgid "On"
|
865 |
msgstr "On"
|
866 |
|
867 |
-
#: core/core.php:
|
868 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
869 |
msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la modalità safe_mode fosse attiva."
|
870 |
|
871 |
-
#: core/core.php:
|
872 |
-
#: core/core.php:
|
873 |
msgid "Off"
|
874 |
msgstr "Off"
|
875 |
|
876 |
-
#: core/core.php:
|
877 |
msgid "On ( %s )"
|
878 |
msgstr "On ( %s )"
|
879 |
|
880 |
-
#: core/core.php:
|
881 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
882 |
msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la funzione open_basedir fosse attiva."
|
883 |
|
884 |
-
#: core/core.php:
|
885 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
886 |
msgstr "Nel caso in cui questo valore fosse a zero nonostante tu abbia caricato più volte la pagina, é probabile che tu abbia rilevato un bug."
|
887 |
|
888 |
-
#: core/core.php:
|
|
|
889 |
msgid "[%s] Broken links detected"
|
890 |
msgstr "[%s] Link rotti rilevati"
|
891 |
|
892 |
-
#: core/core.php:
|
893 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
894 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
895 |
msgstr[0] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotto."
|
896 |
msgstr[1] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotti."
|
897 |
|
898 |
-
#: core/core.php:
|
899 |
msgid "Here's a list of the first %d broken links:"
|
900 |
msgid_plural "Here's a list of the first %d broken links:"
|
901 |
msgstr[0] "Ecco una lista del primo %d link rotto:"
|
902 |
msgstr[1] "Ecco una lista dei primi %d link rotti:"
|
903 |
|
904 |
-
#: core/core.php:
|
905 |
msgid "Here's a list of the new broken links: "
|
906 |
msgstr "Ecco una lista con i nuovi link rotti:"
|
907 |
|
908 |
-
#: core/core.php:
|
909 |
msgid "Link text : %s"
|
910 |
msgstr "Testo del link : %s"
|
911 |
|
912 |
-
#: core/core.php:
|
913 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
914 |
msgstr "URL del link : <a href=\"%s\">%s</a>"
|
915 |
|
916 |
-
#: core/core.php:
|
917 |
msgid "Source : %s"
|
918 |
msgstr "Sorgente : %s"
|
919 |
|
920 |
-
#: core/core.php:
|
921 |
msgid "You can see all broken links here:"
|
922 |
msgstr "Qui puoi vedere tutti i link rotti:"
|
923 |
|
|
|
|
|
|
|
|
|
|
|
|
|
924 |
#: includes/admin/links-page-js.php:58
|
925 |
#: includes/admin/links-page-js.php:301
|
926 |
msgid "Wait..."
|
927 |
msgstr "Attendi..."
|
928 |
|
929 |
#: includes/admin/links-page-js.php:99
|
930 |
-
#: includes/admin/table-printer.php:
|
931 |
msgid "Not broken"
|
932 |
msgstr "Non rotto"
|
933 |
|
@@ -961,8 +973,8 @@ msgid "The plugin failed to remove the link."
|
|
961 |
msgstr "Il plugin non é stato in grado di rimuovere il link."
|
962 |
|
963 |
#: includes/admin/links-page-js.php:361
|
964 |
-
#: includes/admin/table-printer.php:
|
965 |
-
#: includes/admin/table-printer.php:
|
966 |
msgid "Unlink"
|
967 |
msgstr "Scollega"
|
968 |
|
@@ -1020,12 +1032,12 @@ msgid "Link text"
|
|
1020 |
msgstr "Testo del link"
|
1021 |
|
1022 |
#: includes/admin/search-form.php:45
|
1023 |
-
#: includes/admin/table-printer.php:
|
1024 |
msgid "URL"
|
1025 |
msgstr "URL"
|
1026 |
|
1027 |
#: includes/admin/search-form.php:48
|
1028 |
-
#: includes/admin/table-printer.php:
|
1029 |
msgid "HTTP code"
|
1030 |
msgstr "Codice HTTP"
|
1031 |
|
@@ -1051,9 +1063,9 @@ msgid "Search Links"
|
|
1051 |
msgstr "Ricerca link"
|
1052 |
|
1053 |
#: includes/admin/search-form.php:113
|
1054 |
-
#: includes/admin/table-printer.php:
|
1055 |
-
#: includes/admin/table-printer.php:
|
1056 |
-
#: includes/admin/table-printer.php:
|
1057 |
msgid "Cancel"
|
1058 |
msgstr "Annulla"
|
1059 |
|
@@ -1069,175 +1081,171 @@ msgstr "Avessi gradito BLC, sostieni con una donazione il suo sviluppo ed il man
|
|
1069 |
msgid "Return to WordPress Dashboard"
|
1070 |
msgstr "Ritorna alla Bacheca WordPress"
|
1071 |
|
1072 |
-
#: includes/admin/sidebar.php:50
|
1073 |
-
msgid "More plugins by Janis Elsts"
|
1074 |
-
msgstr "Altri plugin da Janis Elsts"
|
1075 |
-
|
1076 |
#: includes/admin/options-page-js.php:54
|
1077 |
msgid "Hide debug info"
|
1078 |
msgstr "Nascondi le info debug"
|
1079 |
|
1080 |
-
#: includes/admin/table-printer.php:
|
1081 |
msgid "Compact View"
|
1082 |
msgstr "Visualizzazione compatta"
|
1083 |
|
1084 |
-
#: includes/admin/table-printer.php:
|
1085 |
msgid "Detailed View"
|
1086 |
msgstr "Visualizzazione dettagliata"
|
1087 |
|
1088 |
-
#: includes/admin/table-printer.php:
|
1089 |
msgid "Source"
|
1090 |
msgstr "Sorgente"
|
1091 |
|
1092 |
-
#: includes/admin/table-printer.php:
|
1093 |
msgid "Link Text"
|
1094 |
msgstr "Testo link"
|
1095 |
|
1096 |
-
#: includes/admin/table-printer.php:
|
1097 |
msgid "Bulk Actions"
|
1098 |
msgstr "Azione di massa"
|
1099 |
|
1100 |
-
#: includes/admin/table-printer.php:
|
1101 |
-
#: includes/admin/table-printer.php:
|
1102 |
msgid "Edit URL"
|
1103 |
msgstr "Modifica URL"
|
1104 |
|
1105 |
-
#: includes/admin/table-printer.php:
|
1106 |
msgid "Recheck"
|
1107 |
msgstr "Ricontrolla"
|
1108 |
|
1109 |
-
#: includes/admin/table-printer.php:
|
1110 |
msgid "Fix redirects"
|
1111 |
msgstr "Correggi re-indirizzamenti"
|
1112 |
|
1113 |
-
#: includes/admin/table-printer.php:
|
1114 |
msgid "Mark as not broken"
|
1115 |
msgstr "segna come non rotti"
|
1116 |
|
1117 |
-
#: includes/admin/table-printer.php:
|
1118 |
msgid "Move sources to Trash"
|
1119 |
msgstr "Sposta le fonti nel cestino"
|
1120 |
|
1121 |
-
#: includes/admin/table-printer.php:
|
1122 |
msgid "Delete sources"
|
1123 |
msgstr "Cancella soegenti"
|
1124 |
|
1125 |
-
#: includes/admin/table-printer.php:
|
1126 |
msgid "«"
|
1127 |
msgstr "«"
|
1128 |
|
1129 |
-
#: includes/admin/table-printer.php:
|
1130 |
msgid "»"
|
1131 |
msgstr "»"
|
1132 |
|
1133 |
-
#: includes/admin/table-printer.php:
|
1134 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1135 |
msgstr "Si stanno mostrando %s–%s di <span class=\"current-link-count\">%s</span>"
|
1136 |
|
1137 |
-
#: includes/admin/table-printer.php:
|
1138 |
msgid "Bulk Edit URLs"
|
1139 |
msgstr "Modifica URL (di gruppo)"
|
1140 |
|
1141 |
-
#: includes/admin/table-printer.php:
|
1142 |
msgid "Find"
|
1143 |
msgstr "Trova"
|
1144 |
|
1145 |
-
#: includes/admin/table-printer.php:
|
1146 |
msgid "Replace with"
|
1147 |
msgstr "Sostituisci con"
|
1148 |
|
1149 |
-
#: includes/admin/table-printer.php:
|
1150 |
msgid "Case sensitive"
|
1151 |
msgstr "Maiuscole/minuscole"
|
1152 |
|
1153 |
-
#: includes/admin/table-printer.php:
|
1154 |
msgid "Regular expression"
|
1155 |
msgstr "Espressione regolare"
|
1156 |
|
1157 |
-
#: includes/admin/table-printer.php:
|
1158 |
msgid "Update"
|
1159 |
msgstr "Aggiorna"
|
1160 |
|
1161 |
-
#: includes/admin/table-printer.php:
|
1162 |
msgid "Post published on"
|
1163 |
msgstr "Articolo pubblicato il"
|
1164 |
|
1165 |
-
#: includes/admin/table-printer.php:
|
1166 |
msgid "Link last checked"
|
1167 |
msgstr "Ultimo controllo link"
|
1168 |
|
1169 |
-
#: includes/admin/table-printer.php:
|
1170 |
msgid "Never"
|
1171 |
msgstr "Mai"
|
1172 |
|
1173 |
-
#: includes/admin/table-printer.php:
|
1174 |
msgid "Response time"
|
1175 |
msgstr "Tempo di risposta"
|
1176 |
|
1177 |
-
#: includes/admin/table-printer.php:
|
1178 |
msgid "%2.3f seconds"
|
1179 |
msgstr "%2.3f secondi"
|
1180 |
|
1181 |
-
#: includes/admin/table-printer.php:
|
1182 |
msgid "Final URL"
|
1183 |
msgstr "URL finale"
|
1184 |
|
1185 |
-
#: includes/admin/table-printer.php:
|
1186 |
msgid "Redirect count"
|
1187 |
msgstr "Computo reindirizzamento"
|
1188 |
|
1189 |
-
#: includes/admin/table-printer.php:
|
1190 |
msgid "Instance count"
|
1191 |
msgstr "Computo richieste"
|
1192 |
|
1193 |
-
#: includes/admin/table-printer.php:
|
1194 |
msgid "This link has failed %d time."
|
1195 |
msgid_plural "This link has failed %d times."
|
1196 |
msgstr[0] "Questo link é stato difettoso %d volte."
|
1197 |
msgstr[1] "Questi link sono stati difettosi %d volte."
|
1198 |
|
1199 |
-
#: includes/admin/table-printer.php:
|
1200 |
msgid "This link has been broken for %s."
|
1201 |
msgstr "Questo link é stato rotto per %s."
|
1202 |
|
1203 |
-
#: includes/admin/table-printer.php:
|
1204 |
msgid "Log"
|
1205 |
msgstr "Registro"
|
1206 |
|
1207 |
-
#: includes/admin/table-printer.php:
|
1208 |
msgid "Show more info about this link"
|
1209 |
msgstr "Mostra più info su questo link"
|
1210 |
|
1211 |
-
#: includes/admin/table-printer.php:
|
1212 |
msgctxt "checked how long ago"
|
1213 |
msgid "Checked"
|
1214 |
msgstr "Verificato"
|
1215 |
|
1216 |
-
#: includes/admin/table-printer.php:
|
1217 |
msgid "Broken for"
|
1218 |
msgstr "Rotto per"
|
1219 |
|
1220 |
-
#: includes/admin/table-printer.php:
|
1221 |
msgid "Edit link URL"
|
1222 |
msgstr "Modifica URL del link"
|
1223 |
|
1224 |
-
#: includes/admin/table-printer.php:
|
1225 |
msgid "Remove this link from all posts"
|
1226 |
msgstr "Rimuovi questo link da tutti gli articoli"
|
1227 |
|
1228 |
-
#: includes/admin/table-printer.php:
|
1229 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
1230 |
msgstr "Rimuovi questo link dalla lista dei link rotti e segnalo come valido"
|
1231 |
|
1232 |
-
#: includes/admin/table-printer.php:
|
1233 |
msgid "Cancel URL editing"
|
1234 |
msgstr "Annulla modifica URL"
|
1235 |
|
1236 |
-
#: includes/admin/table-printer.php:
|
1237 |
msgid "Update URL"
|
1238 |
msgstr "Aggiorna URL"
|
1239 |
|
1240 |
-
#: includes/admin/table-printer.php:
|
1241 |
msgid "[An orphaned link! This is a bug.]"
|
1242 |
msgstr "[Un link orfano! Questo é un bug.]"
|
1243 |
|
@@ -1580,6 +1588,9 @@ msgstr "Janis Elsts"
|
|
1580 |
msgid "http://w-shadow.com/blog/"
|
1581 |
msgstr "http://w-shadow.com/blog/"
|
1582 |
|
|
|
|
|
|
|
1583 |
#~ msgid "Custom temporary directory"
|
1584 |
#~ msgstr "Cartella temporanea personalizzata:"
|
1585 |
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Broken Link Checker in italiano\n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
10 |
+
"POT-Creation-Date: 2011-12-10 11:41:41+00:00\n"
|
11 |
+
"PO-Revision-Date: 2011-12-13 10:30+0100\n"
|
12 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
13 |
"Language-Team: Gianni Diurno | gidibao.net & charmingpress.com\n"
|
14 |
"MIME-Version: 1.0\n"
|
168 |
msgid "Comment"
|
169 |
msgstr "Commento"
|
170 |
|
171 |
+
#: modules/containers/comment.php:355
|
172 |
msgid "%d comment has been deleted."
|
173 |
msgid_plural "%d comments have been deleted."
|
174 |
msgstr[0] "%d commento é stato cancellato"
|
175 |
msgstr[1] "%d commenti sono stati cancellati"
|
176 |
|
177 |
+
#: modules/containers/comment.php:374
|
178 |
msgid "%d comment moved to the Trash."
|
179 |
msgid_plural "%d comments moved to the Trash."
|
180 |
msgstr[0] "%d commento spostato nel cestino"
|
289 |
msgid "Embedded Vimeo video"
|
290 |
msgstr "Video incorporato Vimeo"
|
291 |
|
292 |
+
#: modules/extras/youtube.php:73
|
293 |
+
#: modules/extras/youtube.php:76
|
294 |
msgid "Video Not Found"
|
295 |
msgstr "Video non trovato"
|
296 |
|
297 |
+
#: modules/extras/youtube.php:84
|
298 |
msgid "Video Removed"
|
299 |
msgstr "Video rimosso"
|
300 |
|
301 |
+
#: modules/extras/youtube.php:92
|
302 |
msgid "Invalid Video ID"
|
303 |
msgstr "ID video non valida"
|
304 |
|
305 |
+
#: modules/extras/youtube.php:104
|
306 |
msgid "Video OK"
|
307 |
msgstr "Video OK"
|
308 |
|
309 |
+
#: modules/extras/youtube.php:105
|
310 |
+
#: modules/extras/youtube.php:132
|
311 |
msgid "OK"
|
312 |
msgstr "OK"
|
313 |
|
314 |
+
#: modules/extras/youtube.php:118
|
315 |
msgid "Video status : %s%s"
|
316 |
msgstr "Stato video : %s%s"
|
317 |
|
318 |
+
#: modules/extras/youtube.php:137
|
319 |
msgid "Video Restricted"
|
320 |
msgstr "Video riservato"
|
321 |
|
322 |
+
#: modules/extras/youtube.php:154
|
323 |
msgid "Unknown YouTube API response received."
|
324 |
msgstr "Risposta sconosciuta ricevuta da API YouTube."
|
325 |
|
331 |
msgid "API Error"
|
332 |
msgstr "Errore API"
|
333 |
|
334 |
+
#: core/init.php:231
|
335 |
msgid "Once Weekly"
|
336 |
msgstr "Una volta alla settimana"
|
337 |
|
338 |
+
#: core/init.php:237
|
339 |
msgid "Twice a Month"
|
340 |
msgstr "Due volte al mese"
|
341 |
|
342 |
+
#: core/init.php:307
|
343 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
344 |
msgstr "L'installazione di Broken Link Checker é fallita. Prova a disattivare quindi, riattivare il plugin."
|
345 |
|
357 |
msgid "Automatically expand the widget if broken links have been detected"
|
358 |
msgstr "Espandi in automatico il widget qualora un link rotto fosse stato rilevato"
|
359 |
|
360 |
+
#: core/core.php:285
|
361 |
msgid "Link Checker Settings"
|
362 |
msgstr "Impostazioni Link Checker"
|
363 |
|
364 |
+
#: core/core.php:286
|
365 |
msgid "Link Checker"
|
366 |
msgstr "Link Checker"
|
367 |
|
368 |
+
#: core/core.php:291
|
369 |
#: includes/link-query.php:26
|
370 |
msgid "Broken Links"
|
371 |
msgstr "Link rotti"
|
372 |
|
373 |
+
#: core/core.php:307
|
374 |
msgid "View Broken Links"
|
375 |
msgstr "Visualizza i link rotti"
|
376 |
|
377 |
+
#: core/core.php:322
|
378 |
msgid "Feedback"
|
379 |
msgstr "Feedback"
|
380 |
|
381 |
+
#: core/core.php:330
|
382 |
+
#: includes/admin/sidebar.php:50
|
383 |
+
msgid "More plugins by Janis Elsts"
|
384 |
+
msgstr "Altri plugin da Janis Elsts"
|
385 |
|
386 |
+
#: core/core.php:337
|
387 |
msgid "Go to Broken Links"
|
388 |
msgstr "Vai ai link rotti"
|
389 |
|
390 |
+
#: core/core.php:366
|
391 |
msgid "Settings"
|
392 |
msgstr "Impostazioni"
|
393 |
|
394 |
+
#: core/core.php:378
|
395 |
+
#: core/core.php:1160
|
396 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
397 |
msgstr "Errore: le tabelle del database di questo plugin non sono aggiornate! (versione in uso : %d, attesa : %d)"
|
398 |
|
399 |
+
#: core/core.php:382
|
400 |
+
#: core/core.php:1164
|
401 |
msgid "Try deactivating and then reactivating the plugin."
|
402 |
msgstr "Prova a disattivare quindi, riattivare il plugin."
|
403 |
|
404 |
+
#: core/core.php:521
|
405 |
msgid "Settings saved."
|
406 |
msgstr "Le impostazioni sono state salvate."
|
407 |
|
408 |
+
#: core/core.php:527
|
409 |
msgid "Thank you for your donation!"
|
410 |
msgstr "Grazie per la tua donazione!"
|
411 |
|
412 |
+
#: core/core.php:534
|
413 |
msgid "Complete site recheck started."
|
414 |
msgstr "E' in atto la nuova verifica completa per il sito."
|
415 |
|
416 |
+
#: core/core.php:543
|
417 |
msgid "Details"
|
418 |
msgstr "Dettagli"
|
419 |
|
420 |
+
#: core/core.php:557
|
421 |
msgid "General"
|
422 |
msgstr "Generale"
|
423 |
|
424 |
+
#: core/core.php:558
|
425 |
msgid "Look For Links In"
|
426 |
msgstr "Cerca i link in"
|
427 |
|
428 |
+
#: core/core.php:559
|
429 |
msgid "Which Links To Check"
|
430 |
msgstr "Quali link controllare"
|
431 |
|
432 |
+
#: core/core.php:560
|
433 |
msgid "Protocols & APIs"
|
434 |
msgstr "Protocolli & API"
|
435 |
|
436 |
+
#: core/core.php:561
|
437 |
msgid "Advanced"
|
438 |
msgstr "Avanzate"
|
439 |
|
440 |
+
#: core/core.php:576
|
441 |
msgid "Broken Link Checker Options"
|
442 |
msgstr "Opzioni Broken Link Checker"
|
443 |
|
444 |
+
#: core/core.php:618
|
445 |
+
#: includes/admin/table-printer.php:195
|
446 |
msgid "Status"
|
447 |
msgstr "Stato"
|
448 |
|
449 |
+
#: core/core.php:620
|
450 |
#: includes/admin/options-page-js.php:56
|
451 |
msgid "Show debug info"
|
452 |
msgstr "Mostra info debug"
|
453 |
|
454 |
+
#: core/core.php:648
|
455 |
msgid "Check each link"
|
456 |
msgstr "Controlla i link"
|
457 |
|
458 |
+
#: core/core.php:653
|
459 |
msgid "Every %s hours"
|
460 |
msgstr "Ogni %s ore"
|
461 |
|
462 |
+
#: core/core.php:662
|
463 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
464 |
msgstr "I link già esistenti verranno controllati con questa frequenza i nuovi, lo saranno a breve."
|
465 |
|
466 |
+
#: core/core.php:669
|
467 |
msgid "E-mail notifications"
|
468 |
msgstr "Notifiche email"
|
469 |
|
470 |
+
#: core/core.php:675
|
471 |
msgid "Send me e-mail notifications about newly detected broken links"
|
472 |
msgstr "Inviami una email di notifica al rilevamento di un nuovo link rotto"
|
473 |
|
474 |
+
#: core/core.php:683
|
475 |
+
msgid "Send authors e-mail notifications about broken links in their posts"
|
476 |
+
msgstr "Inviami una email di notifica al rilevamento di un nuovo link rotto"
|
477 |
+
|
478 |
+
#: core/core.php:690
|
479 |
msgid "Link tweaks"
|
480 |
msgstr "Link tweaks"
|
481 |
|
482 |
+
#: core/core.php:696
|
483 |
msgid "Apply custom formatting to broken links"
|
484 |
msgstr "Applica formattazione personalizzata ai link rotti"
|
485 |
|
486 |
+
#: core/core.php:700
|
487 |
+
#: core/core.php:728
|
488 |
msgid "Edit CSS"
|
489 |
msgstr "Modifica CSS"
|
490 |
|
491 |
+
#: core/core.php:724
|
492 |
msgid "Apply custom formatting to removed links"
|
493 |
msgstr "Applica la formattazione personalizzata ai link rimossi"
|
494 |
|
495 |
+
#: core/core.php:752
|
496 |
msgid "Stop search engines from following broken links"
|
497 |
msgstr "Blocca i motori di ricerca per i seguenti link"
|
498 |
|
499 |
+
#: core/core.php:769
|
500 |
msgid "Look for links in"
|
501 |
msgstr "Cerca i links in"
|
502 |
|
503 |
+
#: core/core.php:780
|
504 |
msgid "Post statuses"
|
505 |
msgstr "Stati articolo"
|
506 |
|
507 |
+
#: core/core.php:813
|
508 |
msgid "Link types"
|
509 |
msgstr "Tipo di link"
|
510 |
|
511 |
+
#: core/core.php:819
|
512 |
msgid "Error : All link parsers missing!"
|
513 |
msgstr "Errore : manca l'analisi di tutti i link!"
|
514 |
|
515 |
+
#: core/core.php:826
|
516 |
msgid "Exclusion list"
|
517 |
msgstr "Lista estromessi"
|
518 |
|
519 |
+
#: core/core.php:827
|
520 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
521 |
msgstr "Non controllare gli URL che contengono queste parole (una per riga):"
|
522 |
|
523 |
+
#: core/core.php:845
|
524 |
msgid "Check links using"
|
525 |
msgstr "Controlla utilizzo link"
|
526 |
|
527 |
+
#: core/core.php:864
|
528 |
#: includes/links.php:849
|
529 |
msgid "Timeout"
|
530 |
msgstr "Timeout"
|
531 |
|
532 |
+
#: core/core.php:870
|
533 |
+
#: core/core.php:916
|
534 |
+
#: core/core.php:2725
|
535 |
msgid "%s seconds"
|
536 |
msgstr "%s secondi"
|
537 |
|
538 |
+
#: core/core.php:879
|
539 |
msgid "Links that take longer than this to load will be marked as broken."
|
540 |
msgstr "I link che impiegheranno un maggior tempo per essere caricati verranno considerati come rotti."
|
541 |
|
542 |
+
#: core/core.php:886
|
543 |
msgid "Link monitor"
|
544 |
msgstr "Monitoraggio link"
|
545 |
|
546 |
+
#: core/core.php:894
|
547 |
msgid "Run continuously while the Dashboard is open"
|
548 |
msgstr "Funzionamento continuo durante il periodo di login"
|
549 |
|
550 |
+
#: core/core.php:902
|
551 |
msgid "Run hourly in the background"
|
552 |
msgstr "Funzionamento in background ogni ora"
|
553 |
|
554 |
+
#: core/core.php:910
|
555 |
msgid "Max. execution time"
|
556 |
msgstr "Tempo max. operazione"
|
557 |
|
558 |
+
#: core/core.php:927
|
559 |
msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
|
560 |
msgstr "Questo plugin opera grazie ad una richiesta periodica che lavora in background atta al rilevamento dei link contenuti nei post alla ricerca degli URL nonché compie delle operazioni che richiedono del tempo. Qui puoi impostare il tempo massimo di durata per la richiesta in background prima che essa termini."
|
561 |
|
562 |
+
#: core/core.php:936
|
563 |
msgid "Server load limit"
|
564 |
msgstr "Limite server load"
|
565 |
|
566 |
+
#: core/core.php:951
|
567 |
msgid "Current load : %s"
|
568 |
msgstr "In caricamento : %s"
|
569 |
|
570 |
+
#: core/core.php:956
|
571 |
msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
|
572 |
msgstr "La verifica dei link sarà sospesa nel caso in cui il valore di media del <a href=\"%s\">server load</a> superasse questo numero. Lascia in bianco per disattivare il limite di caricamento."
|
573 |
|
574 |
+
#: core/core.php:965
|
575 |
msgid "Not available"
|
576 |
msgstr "Non disponibile"
|
577 |
|
578 |
+
#: core/core.php:967
|
579 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
580 |
msgstr "Il limite di caricamento funziona solamente per i sistemi Linux-like laddove la funzione <code>/proc/loadavg</code> sia presente ed accessibile."
|
581 |
|
582 |
+
#: core/core.php:975
|
583 |
msgid "Forced recheck"
|
584 |
msgstr "Imponi nuova verifica"
|
585 |
|
586 |
+
#: core/core.php:978
|
587 |
msgid "Re-check all pages"
|
588 |
msgstr "Ricontrolla tutte le pagine"
|
589 |
|
590 |
+
#: core/core.php:982
|
591 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
592 |
msgstr "La \"Opzione atomica\". Clicca questo pulsante per fare sì che il plugin svuoti i link nel database ed effettui da zero un controllo del sito."
|
593 |
|
594 |
+
#: core/core.php:993
|
595 |
msgid "Save Changes"
|
596 |
msgstr "Salva le modifiche"
|
597 |
|
598 |
+
#: core/core.php:1044
|
599 |
msgid "Configure"
|
600 |
msgstr "Configura"
|
601 |
|
602 |
+
#: core/core.php:1126
|
603 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
604 |
msgstr "Controlla gli URL inseriti in questi campi personalizzati (uno per riga):"
|
605 |
|
606 |
+
#: core/core.php:1263
|
607 |
+
#: core/core.php:1344
|
608 |
+
#: core/core.php:1376
|
609 |
msgid "Database error : %s"
|
610 |
msgstr "Errore database : %s"
|
611 |
|
612 |
+
#: core/core.php:1326
|
613 |
msgid "You must enter a filter name!"
|
614 |
msgstr "Deve essere inserito un nome del filtro!"
|
615 |
|
616 |
+
#: core/core.php:1330
|
617 |
msgid "Invalid search query."
|
618 |
msgstr "Termine di ricerca non valido."
|
619 |
|
620 |
+
#: core/core.php:1339
|
621 |
msgid "Filter \"%s\" created"
|
622 |
msgstr "E' stato creato il filtro \"%s\""
|
623 |
|
624 |
+
#: core/core.php:1366
|
625 |
msgid "Filter ID not specified."
|
626 |
msgstr "ID filtro non specificato."
|
627 |
|
628 |
+
#: core/core.php:1373
|
629 |
msgid "Filter deleted"
|
630 |
msgstr "Il filtro é stato cancellato"
|
631 |
|
632 |
+
#: core/core.php:1420
|
633 |
msgid "Replaced %d redirect with a direct link"
|
634 |
msgid_plural "Replaced %d redirects with direct links"
|
635 |
msgstr[0] "Sostituito %d reindirizzamento con un link diretto"
|
636 |
msgstr[1] "Sostituiti %d reindirizzamenti con dei link diretti"
|
637 |
|
638 |
+
#: core/core.php:1431
|
639 |
msgid "Failed to fix %d redirect"
|
640 |
msgid_plural "Failed to fix %d redirects"
|
641 |
msgstr[0] "Impossibile correggere il reindirizzamento per %d"
|
642 |
msgstr[1] "Impossibile correggere i reindirizzamenti per %d"
|
643 |
|
644 |
+
#: core/core.php:1442
|
645 |
msgid "None of the selected links are redirects!"
|
646 |
msgstr "Nessuno dei link selezionati é reindirizzato!"
|
647 |
|
648 |
+
#: core/core.php:1520
|
649 |
msgid "%d link updated."
|
650 |
msgid_plural "%d links updated."
|
651 |
msgstr[0] "%d link aggiornato."
|
652 |
msgstr[1] "%d link aggiornati."
|
653 |
|
654 |
+
#: core/core.php:1531
|
655 |
msgid "Failed to update %d link."
|
656 |
msgid_plural "Failed to update %d links."
|
657 |
msgstr[0] "Impossibile aggiornare il link %d"
|
658 |
msgstr[1] "Impossibile aggiornare i link %d"
|
659 |
|
660 |
+
#: core/core.php:1585
|
661 |
msgid "%d link removed"
|
662 |
msgid_plural "%d links removed"
|
663 |
msgstr[0] "%d il link é stato rimosso"
|
664 |
msgstr[1] "%d i link sono stati rimossi"
|
665 |
|
666 |
+
#: core/core.php:1596
|
667 |
msgid "Failed to remove %d link"
|
668 |
msgid_plural "Failed to remove %d links"
|
669 |
msgstr[0] "Impossibile rimuovere il link %d"
|
670 |
msgstr[1] "Impossibile rimuovere i link %d"
|
671 |
|
672 |
+
#: core/core.php:1705
|
673 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
674 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
675 |
msgstr[0] "%d l'elemento é stato saltato poiché non potrà essere spostato nel cestino. Dovrai cancellarlo manualmente."
|
676 |
msgstr[1] "%d gli elementi sono stati saltati poiché non potranno essere spostati nel cestino. Dovrai cancellarli manualmente."
|
677 |
|
678 |
+
#: core/core.php:1727
|
679 |
msgid "Didn't find anything to delete!"
|
680 |
msgstr "Nulla da cancellare!"
|
681 |
|
682 |
+
#: core/core.php:1755
|
683 |
msgid "%d link scheduled for rechecking"
|
684 |
msgid_plural "%d links scheduled for rechecking"
|
685 |
msgstr[0] "%d link in verifica programmata"
|
686 |
msgstr[1] "%d link in verifica programmata"
|
687 |
|
688 |
+
#: core/core.php:1801
|
689 |
+
#: core/core.php:2405
|
690 |
msgid "This link was manually marked as working by the user."
|
691 |
msgstr "L'utente ha segnalato manualmente che questo link é funzionante."
|
692 |
|
693 |
+
#: core/core.php:1808
|
694 |
msgid "Couldn't modify link %d"
|
695 |
msgstr "Non é possibile modificare il link %d"
|
696 |
|
697 |
+
#: core/core.php:1818
|
698 |
msgid "%d link marked as not broken"
|
699 |
msgid_plural "%d links marked as not broken"
|
700 |
msgstr[0] "%d link segnato come funzionante"
|
701 |
msgstr[1] "%d link segnati come funzionanti"
|
702 |
|
703 |
+
#: core/core.php:1858
|
704 |
msgid "Table columns"
|
705 |
msgstr "Colonne tabella"
|
706 |
|
707 |
+
#: core/core.php:1877
|
708 |
msgid "Show on screen"
|
709 |
msgstr "Mostra sullo schermo"
|
710 |
|
711 |
+
#: core/core.php:1884
|
712 |
msgid "links"
|
713 |
msgstr "link"
|
714 |
|
715 |
+
#: core/core.php:1885
|
716 |
+
#: includes/admin/table-printer.php:163
|
717 |
msgid "Apply"
|
718 |
msgstr "Applica"
|
719 |
|
720 |
+
#: core/core.php:1889
|
721 |
msgid "Misc"
|
722 |
msgstr "Varie"
|
723 |
|
724 |
+
#: core/core.php:1904
|
725 |
msgid "Highlight links broken for at least %s days"
|
726 |
msgstr "Evidenzia i link rotti per gli ultimi %s giorni"
|
727 |
|
728 |
+
#: core/core.php:1913
|
729 |
msgid "Color-code status codes"
|
730 |
msgstr "Codici stato codice-colore"
|
731 |
|
732 |
+
#: core/core.php:1930
|
733 |
+
#: core/core.php:2390
|
734 |
+
#: core/core.php:2426
|
735 |
+
#: core/core.php:2489
|
736 |
msgid "You're not allowed to do that!"
|
737 |
msgstr "Non hai il permesso per farlo!"
|
738 |
|
739 |
+
#: core/core.php:2271
|
740 |
msgid "View broken links"
|
741 |
msgstr "Visualizza i link rotti"
|
742 |
|
743 |
+
#: core/core.php:2272
|
744 |
msgid "Found %d broken link"
|
745 |
msgid_plural "Found %d broken links"
|
746 |
msgstr[0] "E' stato trovato %d link rotto"
|
747 |
msgstr[1] "Sono stati trovati %d link rotti"
|
748 |
|
749 |
+
#: core/core.php:2278
|
750 |
msgid "No broken links found."
|
751 |
msgstr "Non é stato trovato alcun link rotto."
|
752 |
|
753 |
+
#: core/core.php:2285
|
754 |
msgid "%d URL in the work queue"
|
755 |
msgid_plural "%d URLs in the work queue"
|
756 |
msgstr[0] "%d URL in coda di elaborazione"
|
757 |
msgstr[1] "%d URL in coda di elaborazione"
|
758 |
|
759 |
+
#: core/core.php:2288
|
760 |
msgid "No URLs in the work queue."
|
761 |
msgstr "Nessun URL in coda di elaborazione."
|
762 |
|
763 |
+
#: core/core.php:2294
|
764 |
msgid "Detected %d unique URL"
|
765 |
msgid_plural "Detected %d unique URLs"
|
766 |
msgstr[0] "E' stato rilevato %d URL unico"
|
767 |
msgstr[1] "Sono stati rilevati %d URL unici"
|
768 |
|
769 |
+
#: core/core.php:2295
|
770 |
msgid "in %d link"
|
771 |
msgid_plural "in %d links"
|
772 |
msgstr[0] "in %d link"
|
773 |
msgstr[1] "in %d link"
|
774 |
|
775 |
+
#: core/core.php:2300
|
776 |
msgid "and still searching..."
|
777 |
msgstr "ricerca in corso..."
|
778 |
|
779 |
+
#: core/core.php:2306
|
780 |
msgid "Searching your blog for links..."
|
781 |
msgstr "Ricerca dei link in corso..."
|
782 |
|
783 |
+
#: core/core.php:2308
|
784 |
msgid "No links detected."
|
785 |
msgstr "Nessun link é stato rilevato."
|
786 |
|
787 |
+
#: core/core.php:2334
|
788 |
msgctxt "current load"
|
789 |
msgid "Unknown"
|
790 |
msgstr "Sconosciuto"
|
791 |
|
792 |
+
#: core/core.php:2398
|
793 |
+
#: core/core.php:2436
|
794 |
+
#: core/core.php:2499
|
795 |
msgid "Oops, I can't find the link %d"
|
796 |
msgstr "Oops, non é possibile trovare il link %d"
|
797 |
|
798 |
+
#: core/core.php:2411
|
799 |
msgid "Oops, couldn't modify the link!"
|
800 |
msgstr "Oops, non é possibile modificare il link!"
|
801 |
|
802 |
+
#: core/core.php:2414
|
803 |
+
#: core/core.php:2525
|
804 |
msgid "Error : link_id not specified"
|
805 |
msgstr "Errore : non é stata specificata la link_id"
|
806 |
|
807 |
+
#: core/core.php:2446
|
808 |
msgid "Oops, the new URL is invalid!"
|
809 |
msgstr "Oops, il nuovo URL non é valido!"
|
810 |
|
811 |
+
#: core/core.php:2457
|
812 |
+
#: core/core.php:2508
|
813 |
msgid "An unexpected error occured!"
|
814 |
msgstr "Si é verificato un errore inatteso!"
|
815 |
|
816 |
+
#: core/core.php:2475
|
817 |
msgid "Error : link_id or new_url not specified"
|
818 |
msgstr "Errore : non é stata specificata la link_id oppure il new_url"
|
819 |
|
820 |
+
#: core/core.php:2534
|
821 |
msgid "You don't have sufficient privileges to access this information!"
|
822 |
msgstr "Non hai i permessi necessari per poter accedere a questa informazione!"
|
823 |
|
824 |
+
#: core/core.php:2547
|
825 |
msgid "Error : link ID not specified"
|
826 |
msgstr "Errore : La ID del link non é stata specificata"
|
827 |
|
828 |
+
#: core/core.php:2561
|
829 |
msgid "Failed to load link details (%s)"
|
830 |
msgstr "Non é stato possibile caricare i dettagli sul link (%s)"
|
831 |
|
832 |
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.3.1) #-#-#-#-#
|
833 |
#. Plugin Name of the plugin/theme
|
834 |
+
#: core/core.php:2614
|
835 |
msgid "Broken Link Checker"
|
836 |
msgstr "Broken Link Checker"
|
837 |
|
838 |
+
#: core/core.php:2634
|
839 |
msgid "PHP version"
|
840 |
msgstr "Versione PHP"
|
841 |
|
842 |
+
#: core/core.php:2640
|
843 |
msgid "MySQL version"
|
844 |
msgstr "Versione MySQL"
|
845 |
|
846 |
+
#: core/core.php:2653
|
847 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
848 |
msgstr "Hai una versione datata del CURL. Il rilevamento del reindirizzamento potrebbe non funzionare."
|
849 |
|
850 |
+
#: core/core.php:2665
|
851 |
+
#: core/core.php:2681
|
852 |
+
#: core/core.php:2686
|
853 |
msgid "Not installed"
|
854 |
msgstr "Non installato"
|
855 |
|
856 |
+
#: core/core.php:2668
|
857 |
msgid "CURL version"
|
858 |
msgstr "Versione CURL"
|
859 |
|
860 |
+
#: core/core.php:2674
|
861 |
msgid "Installed"
|
862 |
msgstr "Installato"
|
863 |
|
864 |
+
#: core/core.php:2687
|
865 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
866 |
msgstr "E' necessario che tu abbia installato il CURL oppure Snoopy affinché il plugin possa funzionare!"
|
867 |
|
868 |
+
#: core/core.php:2698
|
869 |
msgid "On"
|
870 |
msgstr "On"
|
871 |
|
872 |
+
#: core/core.php:2699
|
873 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
874 |
msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la modalità safe_mode fosse attiva."
|
875 |
|
876 |
+
#: core/core.php:2704
|
877 |
+
#: core/core.php:2718
|
878 |
msgid "Off"
|
879 |
msgstr "Off"
|
880 |
|
881 |
+
#: core/core.php:2712
|
882 |
msgid "On ( %s )"
|
883 |
msgstr "On ( %s )"
|
884 |
|
885 |
+
#: core/core.php:2713
|
886 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
887 |
msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la funzione open_basedir fosse attiva."
|
888 |
|
889 |
+
#: core/core.php:2742
|
890 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
891 |
msgstr "Nel caso in cui questo valore fosse a zero nonostante tu abbia caricato più volte la pagina, é probabile che tu abbia rilevato un bug."
|
892 |
|
893 |
+
#: core/core.php:2833
|
894 |
+
#: core/core.php:2931
|
895 |
msgid "[%s] Broken links detected"
|
896 |
msgstr "[%s] Link rotti rilevati"
|
897 |
|
898 |
+
#: core/core.php:2838
|
899 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
900 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
901 |
msgstr[0] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotto."
|
902 |
msgstr[1] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotti."
|
903 |
|
904 |
+
#: core/core.php:2861
|
905 |
msgid "Here's a list of the first %d broken links:"
|
906 |
msgid_plural "Here's a list of the first %d broken links:"
|
907 |
msgstr[0] "Ecco una lista del primo %d link rotto:"
|
908 |
msgstr[1] "Ecco una lista dei primi %d link rotti:"
|
909 |
|
910 |
+
#: core/core.php:2870
|
911 |
msgid "Here's a list of the new broken links: "
|
912 |
msgstr "Ecco una lista con i nuovi link rotti:"
|
913 |
|
914 |
+
#: core/core.php:2879
|
915 |
msgid "Link text : %s"
|
916 |
msgstr "Testo del link : %s"
|
917 |
|
918 |
+
#: core/core.php:2880
|
919 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
920 |
msgstr "URL del link : <a href=\"%s\">%s</a>"
|
921 |
|
922 |
+
#: core/core.php:2881
|
923 |
msgid "Source : %s"
|
924 |
msgstr "Sorgente : %s"
|
925 |
|
926 |
+
#: core/core.php:2894
|
927 |
msgid "You can see all broken links here:"
|
928 |
msgstr "Qui puoi vedere tutti i link rotti:"
|
929 |
|
930 |
+
#: core/core.php:2936
|
931 |
+
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
932 |
+
msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
|
933 |
+
msgstr[0] "Broken Link Checker ha rilevato nei tuoi articoli %d nuovo link rotto."
|
934 |
+
msgstr[1] "Broken Link Checker ha rilevato nei tuoi articoli %d nuovi link rotti."
|
935 |
+
|
936 |
#: includes/admin/links-page-js.php:58
|
937 |
#: includes/admin/links-page-js.php:301
|
938 |
msgid "Wait..."
|
939 |
msgstr "Attendi..."
|
940 |
|
941 |
#: includes/admin/links-page-js.php:99
|
942 |
+
#: includes/admin/table-printer.php:616
|
943 |
msgid "Not broken"
|
944 |
msgstr "Non rotto"
|
945 |
|
973 |
msgstr "Il plugin non é stato in grado di rimuovere il link."
|
974 |
|
975 |
#: includes/admin/links-page-js.php:361
|
976 |
+
#: includes/admin/table-printer.php:266
|
977 |
+
#: includes/admin/table-printer.php:610
|
978 |
msgid "Unlink"
|
979 |
msgstr "Scollega"
|
980 |
|
1032 |
msgstr "Testo del link"
|
1033 |
|
1034 |
#: includes/admin/search-form.php:45
|
1035 |
+
#: includes/admin/table-printer.php:200
|
1036 |
msgid "URL"
|
1037 |
msgstr "URL"
|
1038 |
|
1039 |
#: includes/admin/search-form.php:48
|
1040 |
+
#: includes/admin/table-printer.php:484
|
1041 |
msgid "HTTP code"
|
1042 |
msgstr "Codice HTTP"
|
1043 |
|
1063 |
msgstr "Ricerca link"
|
1064 |
|
1065 |
#: includes/admin/search-form.php:113
|
1066 |
+
#: includes/admin/table-printer.php:342
|
1067 |
+
#: includes/admin/table-printer.php:624
|
1068 |
+
#: includes/admin/table-printer.php:630
|
1069 |
msgid "Cancel"
|
1070 |
msgstr "Annulla"
|
1071 |
|
1081 |
msgid "Return to WordPress Dashboard"
|
1082 |
msgstr "Ritorna alla Bacheca WordPress"
|
1083 |
|
|
|
|
|
|
|
|
|
1084 |
#: includes/admin/options-page-js.php:54
|
1085 |
msgid "Hide debug info"
|
1086 |
msgstr "Nascondi le info debug"
|
1087 |
|
1088 |
+
#: includes/admin/table-printer.php:177
|
1089 |
msgid "Compact View"
|
1090 |
msgstr "Visualizzazione compatta"
|
1091 |
|
1092 |
+
#: includes/admin/table-printer.php:178
|
1093 |
msgid "Detailed View"
|
1094 |
msgstr "Visualizzazione dettagliata"
|
1095 |
|
1096 |
+
#: includes/admin/table-printer.php:207
|
1097 |
msgid "Source"
|
1098 |
msgstr "Sorgente"
|
1099 |
|
1100 |
+
#: includes/admin/table-printer.php:213
|
1101 |
msgid "Link Text"
|
1102 |
msgstr "Testo link"
|
1103 |
|
1104 |
+
#: includes/admin/table-printer.php:261
|
1105 |
msgid "Bulk Actions"
|
1106 |
msgstr "Azione di massa"
|
1107 |
|
1108 |
+
#: includes/admin/table-printer.php:262
|
1109 |
+
#: includes/admin/table-printer.php:607
|
1110 |
msgid "Edit URL"
|
1111 |
msgstr "Modifica URL"
|
1112 |
|
1113 |
+
#: includes/admin/table-printer.php:263
|
1114 |
msgid "Recheck"
|
1115 |
msgstr "Ricontrolla"
|
1116 |
|
1117 |
+
#: includes/admin/table-printer.php:264
|
1118 |
msgid "Fix redirects"
|
1119 |
msgstr "Correggi re-indirizzamenti"
|
1120 |
|
1121 |
+
#: includes/admin/table-printer.php:265
|
1122 |
msgid "Mark as not broken"
|
1123 |
msgstr "segna come non rotti"
|
1124 |
|
1125 |
+
#: includes/admin/table-printer.php:269
|
1126 |
msgid "Move sources to Trash"
|
1127 |
msgstr "Sposta le fonti nel cestino"
|
1128 |
|
1129 |
+
#: includes/admin/table-printer.php:271
|
1130 |
msgid "Delete sources"
|
1131 |
msgstr "Cancella soegenti"
|
1132 |
|
1133 |
+
#: includes/admin/table-printer.php:286
|
1134 |
msgid "«"
|
1135 |
msgstr "«"
|
1136 |
|
1137 |
+
#: includes/admin/table-printer.php:287
|
1138 |
msgid "»"
|
1139 |
msgstr "»"
|
1140 |
|
1141 |
+
#: includes/admin/table-printer.php:295
|
1142 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1143 |
msgstr "Si stanno mostrando %s–%s di <span class=\"current-link-count\">%s</span>"
|
1144 |
|
1145 |
+
#: includes/admin/table-printer.php:318
|
1146 |
msgid "Bulk Edit URLs"
|
1147 |
msgstr "Modifica URL (di gruppo)"
|
1148 |
|
1149 |
+
#: includes/admin/table-printer.php:320
|
1150 |
msgid "Find"
|
1151 |
msgstr "Trova"
|
1152 |
|
1153 |
+
#: includes/admin/table-printer.php:324
|
1154 |
msgid "Replace with"
|
1155 |
msgstr "Sostituisci con"
|
1156 |
|
1157 |
+
#: includes/admin/table-printer.php:332
|
1158 |
msgid "Case sensitive"
|
1159 |
msgstr "Maiuscole/minuscole"
|
1160 |
|
1161 |
+
#: includes/admin/table-printer.php:336
|
1162 |
msgid "Regular expression"
|
1163 |
msgstr "Espressione regolare"
|
1164 |
|
1165 |
+
#: includes/admin/table-printer.php:344
|
1166 |
msgid "Update"
|
1167 |
msgstr "Aggiorna"
|
1168 |
|
1169 |
+
#: includes/admin/table-printer.php:469
|
1170 |
msgid "Post published on"
|
1171 |
msgstr "Articolo pubblicato il"
|
1172 |
|
1173 |
+
#: includes/admin/table-printer.php:474
|
1174 |
msgid "Link last checked"
|
1175 |
msgstr "Ultimo controllo link"
|
1176 |
|
1177 |
+
#: includes/admin/table-printer.php:478
|
1178 |
msgid "Never"
|
1179 |
msgstr "Mai"
|
1180 |
|
1181 |
+
#: includes/admin/table-printer.php:489
|
1182 |
msgid "Response time"
|
1183 |
msgstr "Tempo di risposta"
|
1184 |
|
1185 |
+
#: includes/admin/table-printer.php:491
|
1186 |
msgid "%2.3f seconds"
|
1187 |
msgstr "%2.3f secondi"
|
1188 |
|
1189 |
+
#: includes/admin/table-printer.php:494
|
1190 |
msgid "Final URL"
|
1191 |
msgstr "URL finale"
|
1192 |
|
1193 |
+
#: includes/admin/table-printer.php:499
|
1194 |
msgid "Redirect count"
|
1195 |
msgstr "Computo reindirizzamento"
|
1196 |
|
1197 |
+
#: includes/admin/table-printer.php:504
|
1198 |
msgid "Instance count"
|
1199 |
msgstr "Computo richieste"
|
1200 |
|
1201 |
+
#: includes/admin/table-printer.php:513
|
1202 |
msgid "This link has failed %d time."
|
1203 |
msgid_plural "This link has failed %d times."
|
1204 |
msgstr[0] "Questo link é stato difettoso %d volte."
|
1205 |
msgstr[1] "Questi link sono stati difettosi %d volte."
|
1206 |
|
1207 |
+
#: includes/admin/table-printer.php:521
|
1208 |
msgid "This link has been broken for %s."
|
1209 |
msgstr "Questo link é stato rotto per %s."
|
1210 |
|
1211 |
+
#: includes/admin/table-printer.php:532
|
1212 |
msgid "Log"
|
1213 |
msgstr "Registro"
|
1214 |
|
1215 |
+
#: includes/admin/table-printer.php:553
|
1216 |
msgid "Show more info about this link"
|
1217 |
msgstr "Mostra più info su questo link"
|
1218 |
|
1219 |
+
#: includes/admin/table-printer.php:571
|
1220 |
msgctxt "checked how long ago"
|
1221 |
msgid "Checked"
|
1222 |
msgstr "Verificato"
|
1223 |
|
1224 |
+
#: includes/admin/table-printer.php:587
|
1225 |
msgid "Broken for"
|
1226 |
msgstr "Rotto per"
|
1227 |
|
1228 |
+
#: includes/admin/table-printer.php:607
|
1229 |
msgid "Edit link URL"
|
1230 |
msgstr "Modifica URL del link"
|
1231 |
|
1232 |
+
#: includes/admin/table-printer.php:609
|
1233 |
msgid "Remove this link from all posts"
|
1234 |
msgstr "Rimuovi questo link da tutti gli articoli"
|
1235 |
|
1236 |
+
#: includes/admin/table-printer.php:615
|
1237 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
1238 |
msgstr "Rimuovi questo link dalla lista dei link rotti e segnalo come valido"
|
1239 |
|
1240 |
+
#: includes/admin/table-printer.php:624
|
1241 |
msgid "Cancel URL editing"
|
1242 |
msgstr "Annulla modifica URL"
|
1243 |
|
1244 |
+
#: includes/admin/table-printer.php:631
|
1245 |
msgid "Update URL"
|
1246 |
msgstr "Aggiorna URL"
|
1247 |
|
1248 |
+
#: includes/admin/table-printer.php:653
|
1249 |
msgid "[An orphaned link! This is a bug.]"
|
1250 |
msgstr "[Un link orfano! Questo é un bug.]"
|
1251 |
|
1588 |
msgid "http://w-shadow.com/blog/"
|
1589 |
msgstr "http://w-shadow.com/blog/"
|
1590 |
|
1591 |
+
#~ msgid "Go to Settings"
|
1592 |
+
#~ msgstr "Vai alle impostazioni"
|
1593 |
+
|
1594 |
#~ msgid "Custom temporary directory"
|
1595 |
#~ msgstr "Cartella temporanea personalizzata:"
|
1596 |
|
languages/broken-link-checker-pt_PT.mo
CHANGED
Binary file
|
languages/broken-link-checker-pt_PT.po
CHANGED
@@ -1,715 +1,879 @@
|
|
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 |
#
|
7 |
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: Janis Elsts <whiteshadow@w-shadow.com>\n"
|
14 |
-
"Language-Team:
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
-
"Plural-Forms: nplurals=2; plural=
|
19 |
"X-Poedit-Language: Portuguese\n"
|
20 |
"X-Poedit-Country: PORTUGAL\n"
|
21 |
"X-Poedit-SourceCharset: utf-8\n"
|
22 |
-
"X-Poedit-KeywordsList: __;_n;
|
23 |
"X-Poedit-Basepath: ..\n"
|
|
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
|
|
|
26 |
#: core/core.php:146
|
|
|
27 |
msgid "Loading..."
|
28 |
msgstr "Carregando..."
|
29 |
|
|
|
30 |
#: core/core.php:170
|
|
|
31 |
msgid "[ Network error ]"
|
32 |
msgstr "[ Problema na rede ]"
|
33 |
|
|
|
34 |
#: core/core.php:195
|
35 |
msgid "Automatically expand the widget if broken links have been detected"
|
36 |
msgstr "Expandir automaticamente a caixa se existirem links offline"
|
37 |
|
38 |
-
|
|
|
39 |
msgid "Link Checker Settings"
|
40 |
msgstr "Definições do Links offline"
|
41 |
|
42 |
-
|
|
|
43 |
msgid "Link Checker"
|
44 |
msgstr "Links offline"
|
45 |
|
46 |
-
|
|
|
47 |
#: includes/link-query.php:26
|
48 |
msgid "Broken Links"
|
49 |
msgstr "Links offline"
|
50 |
|
51 |
-
|
|
|
52 |
msgid "View Broken Links"
|
53 |
msgstr "Ver Links offline"
|
54 |
|
55 |
-
|
|
|
56 |
msgid "Feedback"
|
57 |
msgstr "Feedback"
|
58 |
|
59 |
-
|
60 |
-
|
61 |
-
msgstr "Ir a Definições"
|
62 |
-
|
63 |
-
#: core/core.php:373
|
64 |
msgid "Go to Broken Links"
|
65 |
msgstr "Ir a Links offline"
|
66 |
|
67 |
-
|
|
|
68 |
msgid "Settings"
|
69 |
msgstr "Definições"
|
70 |
|
71 |
-
|
72 |
-
#: core/core.php:
|
|
|
73 |
#, php-format
|
74 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
75 |
-
msgstr "Erro: As tabelas do plugin na Base de dados não estão
|
76 |
|
77 |
-
|
78 |
-
#: core/core.php:
|
|
|
79 |
msgid "Try deactivating and then reactivating the plugin."
|
80 |
-
msgstr "Tente
|
81 |
|
82 |
-
|
|
|
83 |
msgid "Settings saved."
|
84 |
msgstr "Definições guardadas."
|
85 |
|
86 |
-
|
|
|
87 |
msgid "Thank you for your donation!"
|
88 |
msgstr "Obrigado pela sua colaboração!"
|
89 |
|
90 |
-
|
|
|
91 |
msgid "Complete site recheck started."
|
92 |
msgstr "Re-verificação completa do sitío iniciada."
|
93 |
|
94 |
-
|
|
|
95 |
msgid "Details"
|
96 |
msgstr "Detalhes"
|
97 |
|
98 |
-
|
|
|
99 |
msgid "General"
|
100 |
msgstr "Geral"
|
101 |
|
102 |
-
|
|
|
103 |
msgid "Look For Links In"
|
104 |
msgstr "Procurar links"
|
105 |
|
106 |
-
|
|
|
107 |
msgid "Which Links To Check"
|
108 |
msgstr "Links para verificar"
|
109 |
|
110 |
-
|
|
|
111 |
msgid "Protocols & APIs"
|
112 |
msgstr "Protocolos & APIs"
|
113 |
|
114 |
-
|
|
|
115 |
msgid "Advanced"
|
116 |
msgstr "Avançado"
|
117 |
|
118 |
-
|
|
|
119 |
msgid "Broken Link Checker Options"
|
120 |
msgstr "Opções : Links offline"
|
121 |
|
122 |
-
|
|
|
|
|
123 |
msgid "Status"
|
124 |
msgstr "Estado"
|
125 |
|
126 |
-
|
|
|
|
|
127 |
msgid "Show debug info"
|
128 |
msgstr "Mostrar sistema"
|
129 |
|
130 |
-
|
|
|
131 |
msgid "Check each link"
|
132 |
msgstr "Verificar cada link"
|
133 |
|
134 |
-
|
|
|
135 |
#, php-format
|
136 |
msgid "Every %s hours"
|
137 |
msgstr "Cada %s horas"
|
138 |
|
139 |
-
|
|
|
140 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
141 |
-
msgstr "Os links existentes serão verificados com esta frequência. Os novos links
|
142 |
|
143 |
-
|
|
|
144 |
msgid "E-mail notifications"
|
145 |
msgstr "Notificações por e-mail"
|
146 |
|
147 |
-
|
|
|
148 |
msgid "Send me e-mail notifications about newly detected broken links"
|
149 |
-
msgstr "Enviar um e-mail notificando sobre os novos links offline
|
150 |
|
151 |
-
|
|
|
152 |
msgid "Link tweaks"
|
153 |
-
msgstr "Links
|
154 |
|
155 |
-
|
|
|
156 |
msgid "Apply custom formatting to broken links"
|
157 |
msgstr "Aplicar formatação personalizada para os links offline"
|
158 |
|
159 |
-
|
160 |
-
#: core/core.php:
|
|
|
161 |
msgid "Edit CSS"
|
162 |
msgstr "Editar CSS"
|
163 |
|
164 |
-
|
|
|
165 |
msgid "Apply custom formatting to removed links"
|
166 |
msgstr "Aplicar formatação personalizada para os links removidos"
|
167 |
|
168 |
-
|
|
|
169 |
msgid "Stop search engines from following broken links"
|
170 |
msgstr "Não permitir aos motores de busca seguir os links offline"
|
171 |
|
172 |
-
|
|
|
173 |
msgid "Look for links in"
|
174 |
msgstr "Procurar links em"
|
175 |
|
176 |
-
|
|
|
177 |
msgid "Post statuses"
|
178 |
-
msgstr "Estado do
|
179 |
|
180 |
-
|
|
|
181 |
msgid "Link types"
|
182 |
msgstr "Tipos de link"
|
183 |
|
184 |
-
|
|
|
185 |
msgid "Error : All link parsers missing!"
|
186 |
-
msgstr "Erro: Análises aos links não encontradas!"
|
187 |
|
188 |
-
|
|
|
189 |
msgid "Exclusion list"
|
190 |
msgstr "Lista de exclusão"
|
191 |
|
192 |
-
|
|
|
193 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
194 |
-
msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha):"
|
195 |
|
196 |
-
|
|
|
197 |
msgid "Check links using"
|
198 |
-
msgstr "Verificar links
|
199 |
|
200 |
-
|
|
|
201 |
#: includes/links.php:849
|
202 |
msgid "Timeout"
|
203 |
msgstr "Intervalo"
|
204 |
|
205 |
-
|
206 |
-
|
207 |
-
#: core/core.php:
|
|
|
|
|
208 |
#, php-format
|
209 |
msgid "%s seconds"
|
210 |
msgstr "%s segundos"
|
211 |
|
212 |
-
|
|
|
213 |
msgid "Links that take longer than this to load will be marked as broken."
|
214 |
msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
|
215 |
|
216 |
-
|
|
|
217 |
msgid "Link monitor"
|
218 |
msgstr "Monitor de links"
|
219 |
|
220 |
-
|
|
|
221 |
msgid "Run continuously while the Dashboard is open"
|
222 |
msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
|
223 |
|
224 |
-
|
|
|
225 |
msgid "Run hourly in the background"
|
226 |
msgstr "Executar a cada hora em segundo plano"
|
227 |
|
228 |
-
|
|
|
229 |
msgid "Max. execution time"
|
230 |
msgstr "Tempo máximo de execução"
|
231 |
|
232 |
-
|
|
|
233 |
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."
|
234 |
msgstr "O plugin funciona executando periodicamente uma tarefa em segundo plano que analiza os links, verifica os URL encontrados e realiza outras tarefas que consomem tempo. Aqui pode-se estabelecer a duração máxima cada vez que o monitor de links é executado antes de parar."
|
235 |
|
236 |
-
|
|
|
237 |
msgid "Server load limit"
|
238 |
msgstr "Limite de carregamento do servidor"
|
239 |
|
240 |
-
|
|
|
241 |
#, php-format
|
242 |
msgid "Current load : %s"
|
243 |
msgstr "Carga actual : %s"
|
244 |
|
245 |
-
|
|
|
246 |
#, php-format
|
247 |
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."
|
248 |
msgstr "A verificação dos links será suspensa se a média do <a href=\"%s\">carregamento do servidor</a> passa este valor. Deixar o campo em branco para não existir limite."
|
249 |
|
250 |
-
|
|
|
251 |
msgid "Not available"
|
252 |
msgstr "Não disponível"
|
253 |
|
254 |
-
|
|
|
255 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
256 |
msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
|
257 |
|
258 |
-
|
|
|
259 |
msgid "Forced recheck"
|
260 |
msgstr "Re-verificação forçada"
|
261 |
|
262 |
-
|
|
|
263 |
msgid "Re-check all pages"
|
264 |
msgstr "Verificar de novo todas as páginas"
|
265 |
|
266 |
-
|
|
|
267 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
268 |
-
msgstr "\"Opção Nuclear\". Clique para limpar todos os dados do plugin na base de dados
|
269 |
|
270 |
-
|
|
|
271 |
msgid "Save Changes"
|
272 |
msgstr "Guardar alterações"
|
273 |
|
274 |
-
|
|
|
275 |
msgid "Configure"
|
276 |
msgstr "Configurar"
|
277 |
|
278 |
-
|
|
|
279 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
280 |
-
msgstr "Verificar
|
281 |
|
282 |
-
|
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 |
-
|
|
|
290 |
msgid "You must enter a filter name!"
|
291 |
msgstr "Deve introduzir um nome para o filtro!"
|
292 |
|
293 |
-
|
|
|
294 |
msgid "Invalid search query."
|
295 |
msgstr "Procura inválida."
|
296 |
|
297 |
-
|
|
|
298 |
#, php-format
|
299 |
msgid "Filter \"%s\" created"
|
300 |
msgstr "Filtro \"%s\" criado"
|
301 |
|
302 |
-
|
|
|
303 |
msgid "Filter ID not specified."
|
304 |
msgstr "ID do Filtro não especificado."
|
305 |
|
306 |
-
|
|
|
307 |
msgid "Filter deleted"
|
308 |
msgstr "Filtro eliminado"
|
309 |
|
310 |
-
|
|
|
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
|
315 |
-
msgstr[1] "Substituídos %d redirects com links
|
316 |
|
317 |
-
|
|
|
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 |
-
|
|
|
325 |
msgid "None of the selected links are redirects!"
|
326 |
-
msgstr "Nenhum dos links
|
327 |
|
328 |
-
|
|
|
329 |
#, php-format
|
330 |
msgid "%d link updated."
|
331 |
msgid_plural "%d links updated."
|
332 |
-
msgstr[0] "%d link
|
333 |
-
msgstr[1] "%d links
|
334 |
|
335 |
-
|
|
|
336 |
#, php-format
|
337 |
msgid "Failed to update %d link."
|
338 |
msgid_plural "Failed to update %d links."
|
339 |
-
msgstr[0] "Erro a
|
340 |
-
msgstr[1] "Erro a
|
341 |
|
342 |
-
|
|
|
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 |
-
|
|
|
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 |
-
|
|
|
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
|
361 |
-
msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de
|
362 |
|
363 |
-
|
|
|
364 |
msgid "Didn't find anything to delete!"
|
365 |
msgstr "Não foi encontrado nada para apagar!"
|
366 |
|
367 |
-
|
|
|
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 |
-
|
375 |
-
#: core/core.php:
|
|
|
376 |
msgid "This link was manually marked as working by the user."
|
377 |
-
msgstr "Este link foi
|
378 |
|
379 |
-
|
|
|
380 |
#, php-format
|
381 |
msgid "Couldn't modify link %d"
|
382 |
-
msgstr "
|
383 |
|
384 |
-
|
|
|
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 |
-
|
|
|
392 |
msgid "Table columns"
|
393 |
msgstr "Colunas da Tabela"
|
394 |
|
395 |
-
|
|
|
396 |
msgid "Show on screen"
|
397 |
msgstr "Mostrar no ecrán"
|
398 |
|
399 |
-
|
|
|
400 |
msgid "links"
|
401 |
msgstr "links"
|
402 |
|
403 |
-
|
|
|
|
|
|
|
404 |
msgid "Apply"
|
405 |
msgstr "Aplicar"
|
406 |
|
407 |
-
|
|
|
408 |
msgid "Misc"
|
409 |
msgstr "Vários"
|
410 |
|
411 |
-
|
|
|
412 |
#, php-format
|
413 |
msgid "Highlight links broken for at least %s days"
|
414 |
-
msgstr "
|
415 |
|
416 |
-
|
|
|
417 |
msgid "Color-code status codes"
|
418 |
msgstr "Cor-código status códigos"
|
419 |
|
420 |
-
|
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 |
-
|
|
|
428 |
msgid "View broken links"
|
429 |
msgstr "Ver links offline"
|
430 |
|
431 |
-
|
|
|
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 |
-
|
|
|
439 |
msgid "No broken links found."
|
440 |
msgstr "Não existem links offline."
|
441 |
|
442 |
-
|
|
|
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 |
-
|
|
|
450 |
msgid "No URLs in the work queue."
|
451 |
msgstr "Não existem URL em espera para verificação."
|
452 |
|
453 |
-
|
|
|
454 |
#, php-format
|
455 |
msgid "Detected %d unique URL"
|
456 |
msgid_plural "Detected %d unique URLs"
|
457 |
-
msgstr[0] "
|
458 |
-
msgstr[1] "
|
459 |
|
460 |
-
|
|
|
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 |
-
|
|
|
468 |
msgid "and still searching..."
|
469 |
msgstr "e procurando..."
|
470 |
|
471 |
-
|
|
|
472 |
msgid "Searching your blog for links..."
|
473 |
msgstr "Procurando links..."
|
474 |
|
475 |
-
|
|
|
476 |
msgid "No links detected."
|
477 |
msgstr "Nenhuns links encontrados."
|
478 |
|
479 |
-
|
480 |
-
#:
|
481 |
-
|
482 |
-
|
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 |
-
|
|
|
492 |
msgid "Oops, couldn't modify the link!"
|
493 |
msgstr "Oops, não é possível modificar o link!"
|
494 |
|
495 |
-
|
496 |
-
#: core/core.php:
|
|
|
497 |
msgid "Error : link_id not specified"
|
498 |
-
msgstr "Erro: link_id não especificado"
|
499 |
|
500 |
-
|
|
|
501 |
msgid "Oops, the new URL is invalid!"
|
502 |
-
msgstr "Oops, a nova URL não é válida"
|
503 |
|
504 |
-
|
505 |
-
#: core/core.php:
|
|
|
506 |
msgid "An unexpected error occured!"
|
507 |
msgstr "Ocorreu um erro inesperado!"
|
508 |
|
509 |
-
|
|
|
510 |
msgid "Error : link_id or new_url not specified"
|
511 |
-
msgstr "Erro: link_id ou new_url não especificado"
|
512 |
|
513 |
-
|
|
|
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 |
-
|
|
|
518 |
msgid "Error : link ID not specified"
|
519 |
-
msgstr "Erro: link ID não especificado"
|
520 |
|
521 |
-
|
|
|
522 |
#, php-format
|
523 |
msgid "Failed to load link details (%s)"
|
524 |
msgstr "Erro a carregar os detalhes do link (%s)"
|
525 |
|
526 |
-
|
|
|
527 |
msgid "Broken Link Checker"
|
528 |
msgstr "Links offline"
|
529 |
|
530 |
-
|
|
|
531 |
msgid "PHP version"
|
532 |
msgstr "Versão PHP"
|
533 |
|
534 |
-
|
|
|
535 |
msgid "MySQL version"
|
536 |
msgstr "Versão MySQL"
|
537 |
|
538 |
-
|
|
|
539 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
540 |
-
msgstr "Versão de CURL obsoleta. A
|
541 |
|
542 |
-
|
543 |
-
#: core/core.php:
|
544 |
-
#: core/core.php:
|
|
|
545 |
msgid "Not installed"
|
546 |
msgstr "Não instalado"
|
547 |
|
548 |
-
|
|
|
549 |
msgid "CURL version"
|
550 |
msgstr "Versão CURL"
|
551 |
|
552 |
-
|
|
|
553 |
msgid "Installed"
|
554 |
msgstr "Instalado"
|
555 |
|
556 |
-
|
|
|
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 |
-
|
|
|
561 |
msgid "On"
|
562 |
-
msgstr "
|
563 |
|
564 |
-
|
|
|
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 |
-
|
569 |
-
#: core/core.php:
|
|
|
570 |
msgid "Off"
|
571 |
-
msgstr "
|
572 |
|
573 |
-
|
|
|
574 |
#, php-format
|
575 |
msgid "On ( %s )"
|
576 |
-
msgstr "
|
577 |
|
578 |
-
|
|
|
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á
|
581 |
|
582 |
-
|
|
|
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 |
-
|
|
|
|
|
587 |
#, php-format
|
588 |
msgid "[%s] Broken links detected"
|
589 |
msgstr "[%s] Links offline encontrados"
|
590 |
|
591 |
-
|
|
|
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
|
596 |
-
msgstr[1] "Links offline
|
597 |
|
598 |
-
|
|
|
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 |
-
|
|
|
606 |
msgid "Here's a list of the new broken links: "
|
607 |
msgstr "Novos links offline:"
|
608 |
|
609 |
-
|
|
|
610 |
#, php-format
|
611 |
msgid "Link text : %s"
|
612 |
msgstr "Texto do Link : %s"
|
613 |
|
614 |
-
|
|
|
615 |
#, php-format
|
616 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
617 |
msgstr "Link URL : <a href=\"%s\">%s</a>"
|
618 |
|
619 |
-
|
|
|
620 |
#, php-format
|
621 |
msgid "Source : %s"
|
622 |
msgstr "Fonte : %s"
|
623 |
|
624 |
-
|
|
|
625 |
msgid "You can see all broken links here:"
|
626 |
msgstr "Links offline:"
|
627 |
|
628 |
-
|
|
|
629 |
msgid "Once Weekly"
|
630 |
msgstr "Uma vez por semana"
|
631 |
|
632 |
-
|
|
|
633 |
msgid "Twice a Month"
|
634 |
msgstr "Bi-Mensal"
|
635 |
|
636 |
-
|
|
|
637 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
638 |
-
msgstr "A instalação do plugin Links offline falhou.
|
639 |
|
|
|
640 |
#: includes/any-post.php:397
|
|
|
|
|
|
|
641 |
msgid "Edit"
|
642 |
msgstr "Editar"
|
643 |
|
|
|
644 |
#: includes/any-post.php:405
|
|
|
645 |
msgid "Move this item to the Trash"
|
646 |
-
msgstr "
|
647 |
|
|
|
648 |
#: includes/any-post.php:407
|
|
|
649 |
msgid "Trash"
|
650 |
msgstr "Lixo"
|
651 |
|
|
|
652 |
#: includes/any-post.php:412
|
|
|
653 |
msgid "Delete this item permanently"
|
654 |
-
msgstr "Apagar este
|
655 |
|
|
|
656 |
#: includes/any-post.php:414
|
|
|
|
|
657 |
msgid "Delete"
|
658 |
msgstr "Apagar"
|
659 |
|
|
|
660 |
#: includes/any-post.php:427
|
661 |
#, php-format
|
662 |
msgid "Preview “%s”"
|
663 |
-
msgstr "
|
664 |
|
|
|
665 |
#: includes/any-post.php:428
|
666 |
msgid "Preview"
|
667 |
msgstr "Pré-visualizar"
|
668 |
|
|
|
669 |
#: includes/any-post.php:435
|
670 |
#, php-format
|
671 |
msgid "View “%s”"
|
672 |
msgstr "Visualizar “%s”"
|
673 |
|
|
|
674 |
#: includes/any-post.php:436
|
|
|
|
|
675 |
msgid "View"
|
676 |
msgstr "Ver"
|
677 |
|
|
|
678 |
#: includes/any-post.php:455
|
|
|
679 |
msgid "Edit this item"
|
680 |
-
msgstr "Editar
|
681 |
|
|
|
682 |
#: includes/any-post.php:519
|
|
|
|
|
683 |
msgid "Nothing to update"
|
684 |
-
msgstr "Sem
|
685 |
|
|
|
686 |
#: includes/any-post.php:529
|
687 |
#, php-format
|
688 |
msgid "Updating post %d failed"
|
689 |
-
msgstr "
|
690 |
|
|
|
691 |
#: includes/any-post.php:564
|
|
|
692 |
#, php-format
|
693 |
msgid "Failed to delete post \"%s\" (%d)"
|
694 |
-
msgstr "Erro ao apagar o
|
695 |
|
|
|
696 |
#: includes/any-post.php:583
|
|
|
697 |
#, php-format
|
698 |
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
699 |
-
msgstr "Não é possível mover o
|
700 |
|
|
|
701 |
#: includes/any-post.php:603
|
|
|
702 |
#, php-format
|
703 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
704 |
-
msgstr "Erro ao apagar o
|
705 |
|
|
|
706 |
#: includes/any-post.php:711
|
707 |
#, php-format
|
708 |
msgid "%d post deleted."
|
709 |
msgid_plural "%d posts deleted."
|
710 |
-
msgstr[0] "%d
|
711 |
-
msgstr[1] "%d
|
712 |
|
|
|
713 |
#: includes/any-post.php:713
|
714 |
#, php-format
|
715 |
msgid "%d page deleted."
|
@@ -717,6 +881,7 @@ msgid_plural "%d pages deleted."
|
|
717 |
msgstr[0] "%d página apagada."
|
718 |
msgstr[1] "%d páginas apagadas."
|
719 |
|
|
|
720 |
#: includes/any-post.php:715
|
721 |
#, php-format
|
722 |
msgid "%d \"%s\" deleted."
|
@@ -724,13 +889,15 @@ msgid_plural "%d \"%s\" deleted."
|
|
724 |
msgstr[0] "%d \"%s\" apagado."
|
725 |
msgstr[1] "%d \"%s\" apagados."
|
726 |
|
|
|
727 |
#: includes/any-post.php:734
|
728 |
#, php-format
|
729 |
msgid "%d post moved to the Trash."
|
730 |
msgid_plural "%d posts moved to the Trash."
|
731 |
-
msgstr[0] "%d
|
732 |
-
msgstr[1] "%d
|
733 |
|
|
|
734 |
#: includes/any-post.php:736
|
735 |
#, php-format
|
736 |
msgid "%d page moved to the Trash."
|
@@ -738,6 +905,7 @@ msgid_plural "%d pages moved to the Trash."
|
|
738 |
msgstr[0] "%d página transferida para o Lixo."
|
739 |
msgstr[1] "%d páginas transferidas para o Lixo."
|
740 |
|
|
|
741 |
#: includes/any-post.php:738
|
742 |
#, php-format
|
743 |
msgid "%d \"%s\" moved to the Trash."
|
@@ -745,6 +913,7 @@ msgid_plural "%d \"%s\" moved to the Trash."
|
|
745 |
msgstr[0] "%d \"%s\" transferido para o Lixo."
|
746 |
msgstr[1] "%d \"%s\" transferidos para o Lixo."
|
747 |
|
|
|
748 |
#: includes/containers.php:123
|
749 |
#, php-format
|
750 |
msgid "%d '%s' has been deleted"
|
@@ -752,567 +921,614 @@ 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: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"
|
760 |
|
761 |
-
|
762 |
-
msgid "Basic HTTP"
|
763 |
-
msgstr "HTTP Básico"
|
764 |
-
|
765 |
-
#: includes/extra-strings.php:3
|
766 |
-
msgid "Blogroll items"
|
767 |
-
msgstr "Blogroll itens"
|
768 |
-
|
769 |
-
#: includes/extra-strings.php:4
|
770 |
-
msgid "Comments"
|
771 |
-
msgstr "Comentários"
|
772 |
-
|
773 |
-
#: includes/extra-strings.php:5
|
774 |
-
msgid "Custom fields"
|
775 |
-
msgstr "Campos personalizados"
|
776 |
-
|
777 |
-
#: includes/extra-strings.php:6
|
778 |
-
msgid "Embedded DailyMotion videos"
|
779 |
-
msgstr "Vídeo DailyMotion embutido"
|
780 |
-
|
781 |
-
#: includes/extra-strings.php:7
|
782 |
-
msgid "Embedded Vimeo videos"
|
783 |
-
msgstr "Vídeo Vimeo embutido"
|
784 |
-
|
785 |
-
#: includes/extra-strings.php:8
|
786 |
-
msgid "Embedded YouTube videos"
|
787 |
-
msgstr "Vídeo YouTube embutido"
|
788 |
-
|
789 |
-
#: includes/extra-strings.php:9
|
790 |
-
msgid "HTML images"
|
791 |
-
msgstr "Imagens HTML"
|
792 |
-
|
793 |
-
#: includes/extra-strings.php:10
|
794 |
-
msgid "HTML links"
|
795 |
-
msgstr "HTML links"
|
796 |
-
|
797 |
-
#: includes/extra-strings.php:11
|
798 |
-
msgid "MediaFire API"
|
799 |
-
msgstr "MediaFire API"
|
800 |
-
|
801 |
-
#: includes/extra-strings.php:12
|
802 |
-
msgid "MegaUpload API"
|
803 |
-
msgstr "MegaUpload API"
|
804 |
-
|
805 |
-
#: includes/extra-strings.php:13
|
806 |
-
msgid "Plaintext URLs"
|
807 |
-
msgstr "Texto URLs"
|
808 |
-
|
809 |
-
#: includes/extra-strings.php:14
|
810 |
-
msgid "RapidShare API"
|
811 |
-
msgstr "Rapidshare API"
|
812 |
-
|
813 |
-
#: includes/extra-strings.php:15
|
814 |
-
msgid "YouTube API"
|
815 |
-
msgstr "YouTube API"
|
816 |
-
|
817 |
-
#: includes/extra-strings.php:16
|
818 |
-
msgid "Posts"
|
819 |
-
msgstr "Posts"
|
820 |
-
|
821 |
-
#: includes/extra-strings.php:17
|
822 |
-
msgid "Pages"
|
823 |
-
msgstr "Páginas"
|
824 |
-
|
825 |
#: includes/instances.php:102
|
826 |
#: includes/instances.php:158
|
827 |
#, php-format
|
828 |
msgid "Container %s[%d] not found"
|
829 |
msgstr "Recipiente %s[%d] não encontrado"
|
830 |
|
|
|
831 |
#: includes/instances.php:111
|
832 |
#: includes/instances.php:167
|
833 |
#, php-format
|
834 |
msgid "Parser '%s' not found."
|
835 |
msgstr "Analizador sintáctico '%s' não encontrado."
|
836 |
|
|
|
837 |
#: includes/link-query.php:25
|
838 |
msgid "Broken"
|
839 |
msgstr "Offline"
|
840 |
|
|
|
841 |
#: includes/link-query.php:27
|
842 |
msgid "No broken links found"
|
843 |
msgstr "Links offline (0)"
|
844 |
|
|
|
845 |
#: includes/link-query.php:34
|
846 |
msgid "Redirects"
|
847 |
msgstr "Redirects"
|
848 |
|
|
|
849 |
#: includes/link-query.php:35
|
850 |
msgid "Redirected Links"
|
851 |
msgstr "Links Redirects"
|
852 |
|
|
|
853 |
#: includes/link-query.php:36
|
854 |
msgid "No redirects found"
|
855 |
msgstr "Redirects (0)"
|
856 |
|
|
|
857 |
#: includes/link-query.php:44
|
858 |
msgid "All"
|
859 |
msgstr "Todos"
|
860 |
|
|
|
861 |
#: includes/link-query.php:45
|
862 |
msgid "Detected Links"
|
863 |
msgstr "Links encontrados"
|
864 |
|
|
|
865 |
#: includes/link-query.php:46
|
866 |
msgid "No links found (yet)"
|
867 |
msgstr "Links (0)"
|
868 |
|
|
|
|
|
869 |
#: includes/link-query.php:53
|
870 |
msgid "Search"
|
871 |
msgstr "Procurar"
|
872 |
|
|
|
873 |
#: includes/link-query.php:54
|
874 |
msgid "Search Results"
|
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 |
|
|
|
882 |
#: includes/links.php:215
|
883 |
msgid "The plugin script was terminated while trying to check the link."
|
884 |
msgstr "O script do plugin terminou enquanto tentava verificar o link."
|
885 |
|
|
|
886 |
#: includes/links.php:261
|
887 |
msgid "The plugin doesn't know how to check this type of link."
|
888 |
msgstr "O plugin não consegue verificar este tipo de link."
|
889 |
|
|
|
890 |
#: includes/links.php:349
|
891 |
msgid "Link is valid."
|
892 |
msgstr "Link operacional."
|
893 |
|
|
|
894 |
#: includes/links.php:351
|
895 |
msgid "Link is broken."
|
896 |
msgstr "Link sem ligação."
|
897 |
|
|
|
898 |
#: includes/links.php:564
|
899 |
#: includes/links.php:666
|
900 |
#: includes/links.php:693
|
901 |
msgid "Link is not valid"
|
902 |
-
msgstr "Link
|
903 |
|
|
|
904 |
#: includes/links.php:581
|
905 |
msgid "This link can not be edited because it is not used anywhere on this site."
|
906 |
-
msgstr "Este link não pode ser editado porque não é utilizado
|
907 |
|
|
|
908 |
#: includes/links.php:607
|
909 |
msgid "Failed to create a DB entry for the new URL."
|
910 |
msgstr "Falhou a criação de um registro na Base de dados para um novo URL."
|
911 |
|
|
|
912 |
#: includes/links.php:673
|
913 |
msgid "This link is not a redirect"
|
914 |
msgstr "O link não é um redirect"
|
915 |
|
|
|
916 |
#: includes/links.php:720
|
917 |
#: includes/links.php:757
|
918 |
msgid "Couldn't delete the link's database record"
|
919 |
msgstr "Não é possível apagar o registro do link na Base de dados"
|
920 |
|
|
|
|
|
921 |
#: includes/links.php:845
|
|
|
|
|
922 |
msgid "Unknown Error"
|
923 |
msgstr "Erro Desconhecido"
|
924 |
|
|
|
925 |
#: includes/links.php:869
|
926 |
msgid "Not checked"
|
927 |
msgstr "Não verificado"
|
928 |
|
|
|
929 |
#: includes/links.php:872
|
930 |
msgid "False positive"
|
931 |
msgstr "Falso postivo"
|
932 |
|
933 |
-
|
|
|
|
|
934 |
msgid "OK"
|
935 |
-
msgstr "
|
936 |
|
|
|
937 |
#: includes/parsers.php:109
|
938 |
#, php-format
|
939 |
msgid "Editing is not implemented in the '%s' parser"
|
940 |
msgstr "Edição não implementada no '%s' analizador sintáctico"
|
941 |
|
|
|
942 |
#: includes/parsers.php:124
|
943 |
#, php-format
|
944 |
msgid "Unlinking is not implemented in the '%s' parser"
|
945 |
msgstr "Remover links não foi implementado no '%s' analizador sintáctico"
|
946 |
|
|
|
947 |
#: includes/admin/db-upgrade.php:95
|
948 |
#, php-format
|
949 |
msgid "Failed to delete old DB tables. Database error : %s"
|
950 |
msgstr "Não foi possível apagar as tabelas antigas da Base de dados. Erro de Base de dados : %s"
|
951 |
|
|
|
952 |
#: includes/admin/links-page-js.php:58
|
953 |
#: includes/admin/links-page-js.php:301
|
954 |
msgid "Wait..."
|
955 |
msgstr "Espere ..."
|
956 |
|
|
|
957 |
#: includes/admin/links-page-js.php:99
|
958 |
-
#: includes/admin/table-printer.php:
|
959 |
msgid "Not broken"
|
960 |
msgstr "Funcional"
|
961 |
|
|
|
962 |
#: includes/admin/links-page-js.php:213
|
963 |
#, php-format
|
964 |
msgid "%d instances of the link were successfully modified."
|
965 |
msgstr "%d casos de links que se modificaram com sucesso."
|
966 |
|
|
|
967 |
#: includes/admin/links-page-js.php:219
|
968 |
#, php-format
|
969 |
msgid "However, %d instances couldn't be edited and still point to the old URL."
|
970 |
msgstr "No entanto, %d casos não puderam ser editados e ainda apontam para a antiga URL."
|
971 |
|
|
|
972 |
#: includes/admin/links-page-js.php:225
|
973 |
msgid "The link could not be modified."
|
974 |
msgstr "O link não pode ser modificado."
|
975 |
|
|
|
976 |
#: includes/admin/links-page-js.php:228
|
977 |
#: includes/admin/links-page-js.php:353
|
978 |
msgid "The following error(s) occured :"
|
979 |
msgstr "Erro(s) :"
|
980 |
|
|
|
981 |
#: includes/admin/links-page-js.php:339
|
982 |
#, php-format
|
983 |
msgid "%d instances of the link were successfully unlinked."
|
984 |
msgstr "%d casos de links foram removidos com sucesso."
|
985 |
|
|
|
986 |
#: includes/admin/links-page-js.php:345
|
987 |
#, php-format
|
988 |
msgid "However, %d instances couldn't be removed."
|
989 |
msgstr "No entanto, %d casos não foram removidos."
|
990 |
|
|
|
991 |
#: includes/admin/links-page-js.php:350
|
992 |
msgid "The plugin failed to remove the link."
|
993 |
-
msgstr "O plugin não
|
994 |
|
|
|
995 |
#: includes/admin/links-page-js.php:361
|
996 |
-
#: includes/admin/table-printer.php:
|
997 |
-
#: includes/admin/table-printer.php:
|
998 |
msgid "Unlink"
|
999 |
msgstr "Remover link"
|
1000 |
|
|
|
1001 |
#: includes/admin/links-page-js.php:405
|
1002 |
msgid "Enter a name for the new custom filter"
|
1003 |
msgstr "Introduza o nome para o novo filtro personalizado"
|
1004 |
|
|
|
1005 |
#: includes/admin/links-page-js.php:416
|
1006 |
msgid ""
|
1007 |
"You are about to delete the current filter.\n"
|
1008 |
"'Cancel' to stop, 'OK' to delete"
|
1009 |
msgstr ""
|
1010 |
"Está a ponto de apagar o filtro actual.\n"
|
1011 |
-
" 'Cancelar' para sair, 'Aceitar' para apagar
|
1012 |
|
|
|
1013 |
#: includes/admin/links-page-js.php:439
|
1014 |
msgid ""
|
1015 |
"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"
|
1016 |
"'Cancel' to stop, 'OK' to delete"
|
1017 |
msgstr ""
|
1018 |
-
"
|
1019 |
-
"Esta acção não pode ser anulada.\n"
|
1020 |
"'Cancelar' para anular a operação, 'Aceitar' para apagar"
|
1021 |
|
|
|
1022 |
#: includes/admin/links-page-js.php:449
|
1023 |
msgid ""
|
1024 |
"Are you sure you want to remove the selected links? This action can't be undone.\n"
|
1025 |
"'Cancel' to stop, 'OK' to remove"
|
1026 |
msgstr ""
|
1027 |
-
"
|
1028 |
-
"Esta acção não pode ser anulada.\n"
|
1029 |
"'Cancelar' para anular a operação, 'Aceitar' para apagar"
|
1030 |
|
|
|
1031 |
#: includes/admin/links-page-js.php:558
|
1032 |
msgid "Enter a search string first."
|
1033 |
msgstr "Introduza primeiro uma string de procura."
|
1034 |
|
|
|
1035 |
#: includes/admin/links-page-js.php:565
|
1036 |
msgid "Select one or more links to edit."
|
1037 |
msgstr "Selecione um ou mais links para editar."
|
1038 |
|
|
|
1039 |
#: includes/admin/options-page-js.php:54
|
1040 |
msgid "Hide debug info"
|
1041 |
msgstr "Ocultar informação"
|
1042 |
|
|
|
1043 |
#: includes/admin/search-form.php:16
|
1044 |
msgid "Save This Search As a Filter"
|
1045 |
-
msgstr "Gravar esta Procura como um
|
1046 |
|
|
|
1047 |
#: includes/admin/search-form.php:26
|
1048 |
msgid "Delete This Filter"
|
1049 |
-
msgstr "Apagar
|
1050 |
|
|
|
1051 |
#: includes/admin/search-form.php:42
|
1052 |
msgid "Link text"
|
1053 |
msgstr "Texto do link"
|
1054 |
|
|
|
1055 |
#: includes/admin/search-form.php:45
|
1056 |
-
#: includes/admin/table-printer.php:
|
1057 |
msgid "URL"
|
1058 |
msgstr "URL"
|
1059 |
|
|
|
1060 |
#: includes/admin/search-form.php:48
|
1061 |
-
#: includes/admin/table-printer.php:
|
1062 |
msgid "HTTP code"
|
1063 |
msgstr "Código HTTP"
|
1064 |
|
|
|
1065 |
#: includes/admin/search-form.php:51
|
1066 |
msgid "Link status"
|
1067 |
msgstr "Estado do link"
|
1068 |
|
|
|
1069 |
#: includes/admin/search-form.php:68
|
1070 |
#: includes/admin/search-form.php:85
|
1071 |
msgid "Link type"
|
1072 |
msgstr "Tipo de link"
|
1073 |
|
|
|
1074 |
#: includes/admin/search-form.php:70
|
1075 |
msgid "Any"
|
1076 |
msgstr "Qualquer"
|
1077 |
|
|
|
1078 |
#: includes/admin/search-form.php:74
|
1079 |
msgid "Links used in"
|
1080 |
msgstr "Links utilizados em"
|
1081 |
|
|
|
1082 |
#: includes/admin/search-form.php:112
|
1083 |
msgid "Search Links"
|
1084 |
msgstr "Procurar"
|
1085 |
|
|
|
1086 |
#: includes/admin/search-form.php:113
|
1087 |
-
#: includes/admin/table-printer.php:
|
1088 |
-
#: includes/admin/table-printer.php:
|
1089 |
-
#: includes/admin/table-printer.php:
|
1090 |
msgid "Cancel"
|
1091 |
msgstr "Cancelar"
|
1092 |
|
|
|
1093 |
#: includes/admin/sidebar.php:2
|
1094 |
msgid "Donate $10, $20 or $50!"
|
1095 |
-
msgstr "
|
1096 |
|
|
|
1097 |
#: includes/admin/sidebar.php:5
|
1098 |
msgid "If you like this plugin, please donate to support development and maintenance!"
|
1099 |
msgstr "Se gosta deste plugin, por favor faça um donativo para financiar o seu desenvolvimento e manutenção!"
|
1100 |
|
|
|
1101 |
#: includes/admin/sidebar.php:22
|
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 |
-
|
|
|
1110 |
msgid "Compact View"
|
1111 |
msgstr "Visão compacta"
|
1112 |
|
1113 |
-
|
|
|
1114 |
msgid "Detailed View"
|
1115 |
msgstr "Detalhes"
|
1116 |
|
1117 |
-
|
|
|
1118 |
msgid "Source"
|
1119 |
msgstr "Fonte"
|
1120 |
|
1121 |
-
|
|
|
1122 |
msgid "Link Text"
|
1123 |
msgstr "Texto do Link"
|
1124 |
|
1125 |
-
|
|
|
1126 |
msgid "Bulk Actions"
|
1127 |
msgstr "Edição em Massa"
|
1128 |
|
1129 |
-
|
1130 |
-
#: includes/admin/table-printer.php:
|
|
|
1131 |
msgid "Edit URL"
|
1132 |
msgstr "Editar URL"
|
1133 |
|
1134 |
-
|
|
|
1135 |
msgid "Recheck"
|
1136 |
msgstr "Voltar a verificar"
|
1137 |
|
1138 |
-
|
|
|
1139 |
msgid "Fix redirects"
|
1140 |
msgstr "Reparar redirects"
|
1141 |
|
1142 |
-
|
|
|
1143 |
msgid "Mark as not broken"
|
1144 |
msgstr "Funcional"
|
1145 |
|
1146 |
-
|
|
|
1147 |
msgid "Move sources to Trash"
|
1148 |
-
msgstr "
|
1149 |
|
1150 |
-
|
|
|
1151 |
msgid "Delete sources"
|
1152 |
msgstr "Apagar fontes"
|
1153 |
|
1154 |
-
|
|
|
1155 |
msgid "«"
|
1156 |
msgstr "«"
|
1157 |
|
1158 |
-
|
|
|
1159 |
msgid "»"
|
1160 |
msgstr "»"
|
1161 |
|
1162 |
-
|
|
|
1163 |
#, php-format
|
1164 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1165 |
msgstr "Mostrando %s–%s de <span class=\"current-link-count\">%s</span>"
|
1166 |
|
1167 |
-
|
|
|
1168 |
msgid "Bulk Edit URLs"
|
1169 |
msgstr "Editar URLs em massa"
|
1170 |
|
1171 |
-
|
|
|
1172 |
msgid "Find"
|
1173 |
msgstr "Procura"
|
1174 |
|
1175 |
-
|
|
|
1176 |
msgid "Replace with"
|
1177 |
msgstr "Substituir com"
|
1178 |
|
1179 |
-
|
|
|
1180 |
msgid "Case sensitive"
|
1181 |
msgstr "Coincidir maiúsculas/minúsculas"
|
1182 |
|
1183 |
-
|
|
|
1184 |
msgid "Regular expression"
|
1185 |
msgstr "Expressão regular"
|
1186 |
|
1187 |
-
|
|
|
1188 |
msgid "Update"
|
1189 |
-
msgstr "
|
1190 |
|
1191 |
-
|
|
|
1192 |
msgid "Post published on"
|
1193 |
msgstr "Post publicado em"
|
1194 |
|
1195 |
-
|
|
|
1196 |
msgid "Link last checked"
|
1197 |
msgstr "Última verificação"
|
1198 |
|
1199 |
-
|
|
|
1200 |
msgid "Never"
|
1201 |
msgstr "Nunca"
|
1202 |
|
1203 |
-
|
|
|
1204 |
msgid "Response time"
|
1205 |
msgstr "Tempo de resposta"
|
1206 |
|
1207 |
-
|
|
|
1208 |
#, php-format
|
1209 |
msgid "%2.3f seconds"
|
1210 |
msgstr "%2.3f segundos"
|
1211 |
|
1212 |
-
|
|
|
1213 |
msgid "Final URL"
|
1214 |
msgstr "URL final"
|
1215 |
|
1216 |
-
|
|
|
1217 |
msgid "Redirect count"
|
1218 |
msgstr "Contagem de redirects"
|
1219 |
|
1220 |
-
|
|
|
1221 |
msgid "Instance count"
|
1222 |
msgstr "Contagem de casos"
|
1223 |
|
1224 |
-
|
|
|
1225 |
#, php-format
|
1226 |
msgid "This link has failed %d time."
|
1227 |
msgid_plural "This link has failed %d times."
|
1228 |
msgstr[0] "Este link falhou %d vez."
|
1229 |
msgstr[1] "Este link falhou %d vezes."
|
1230 |
|
1231 |
-
|
|
|
1232 |
#, php-format
|
1233 |
msgid "This link has been broken for %s."
|
1234 |
msgstr "Link offline durante %s."
|
1235 |
|
1236 |
-
|
|
|
1237 |
msgid "Log"
|
1238 |
msgstr "Registro"
|
1239 |
|
1240 |
-
|
|
|
1241 |
msgid "Show more info about this link"
|
1242 |
msgstr "Mostrar mais informação sobre este link"
|
1243 |
|
1244 |
-
|
1245 |
-
|
1246 |
-
msgstr "Verificado"
|
1247 |
-
|
1248 |
-
#: includes/admin/table-printer.php:558
|
1249 |
msgid "Broken for"
|
1250 |
msgstr "Offline"
|
1251 |
|
1252 |
-
|
|
|
1253 |
msgid "Edit link URL"
|
1254 |
msgstr "Editar URL do link"
|
1255 |
|
1256 |
-
|
|
|
1257 |
msgid "Remove this link from all posts"
|
1258 |
msgstr "Eliminar este link"
|
1259 |
|
1260 |
-
|
|
|
1261 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
1262 |
-
msgstr "Eliminar este link da lista dos links offline e
|
1263 |
|
1264 |
-
|
|
|
1265 |
msgid "Cancel URL editing"
|
1266 |
msgstr "Cancelar a edição do URL"
|
1267 |
|
1268 |
-
|
|
|
1269 |
msgid "Update URL"
|
1270 |
-
msgstr "
|
1271 |
|
1272 |
-
|
|
|
1273 |
msgid "[An orphaned link! This is a bug.]"
|
1274 |
msgstr "[Um link orfão! Bug.]"
|
1275 |
|
|
|
1276 |
#: modules/checkers/http.php:242
|
1277 |
msgid "Server Not Found"
|
1278 |
msgstr "Servidor Não Encontrado"
|
1279 |
|
|
|
1280 |
#: modules/checkers/http.php:257
|
1281 |
msgid "Connection Failed"
|
1282 |
msgstr "Sem Ligação"
|
1283 |
|
|
|
1284 |
#: modules/checkers/http.php:292
|
1285 |
#: modules/checkers/http.php:362
|
1286 |
#, php-format
|
1287 |
msgid "HTTP code : %d"
|
1288 |
msgstr "Código HTTP : %d"
|
1289 |
|
|
|
1290 |
#: modules/checkers/http.php:294
|
1291 |
#: modules/checkers/http.php:364
|
1292 |
msgid "(No response)"
|
1293 |
msgstr "(Sem resposta)"
|
1294 |
|
|
|
1295 |
#: modules/checkers/http.php:300
|
1296 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
1297 |
msgstr "Provável que o tempo da ligação se tenha esgotado ou que o domínio não exista."
|
1298 |
|
|
|
1299 |
#: modules/checkers/http.php:371
|
1300 |
msgid "Request timed out."
|
1301 |
msgstr "Tempo de espera esgotado."
|
1302 |
|
|
|
1303 |
#: modules/checkers/http.php:389
|
1304 |
msgid "Using Snoopy"
|
1305 |
msgstr "Utilizando Snoopy"
|
1306 |
|
|
|
1307 |
#: modules/containers/blogroll.php:21
|
1308 |
msgid "Bookmark"
|
1309 |
msgstr "Favorito"
|
1310 |
|
|
|
1311 |
#: modules/containers/blogroll.php:27
|
1312 |
#: modules/containers/blogroll.php:46
|
1313 |
msgid "Edit this bookmark"
|
1314 |
msgstr "Editar este favorito"
|
1315 |
|
|
|
1316 |
#: modules/containers/blogroll.php:47
|
1317 |
#, php-format
|
1318 |
msgid ""
|
@@ -1322,16 +1538,19 @@ msgstr ""
|
|
1322 |
"Está a ponto de apagar este link '%s'\n"
|
1323 |
" 'Cancelar' para sair, 'Aceitar' para apagar."
|
1324 |
|
|
|
1325 |
#: modules/containers/blogroll.php:97
|
1326 |
#, php-format
|
1327 |
msgid "Updating bookmark %d failed"
|
1328 |
-
msgstr "
|
1329 |
|
|
|
1330 |
#: modules/containers/blogroll.php:128
|
1331 |
#, php-format
|
1332 |
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
1333 |
msgstr "Não foi possível eliminar o link blogroll \"%s\" (%d)"
|
1334 |
|
|
|
1335 |
#: modules/containers/blogroll.php:299
|
1336 |
#, php-format
|
1337 |
msgid "%d blogroll link deleted."
|
@@ -1339,171 +1558,457 @@ msgid_plural "%d blogroll links deleted."
|
|
1339 |
msgstr[0] "%d link blogroll apagado."
|
1340 |
msgstr[1] "%d links blogroll apagados."
|
1341 |
|
|
|
1342 |
#: modules/containers/comment.php:53
|
1343 |
#, php-format
|
1344 |
msgid "Updating comment %d failed"
|
1345 |
-
msgstr "Não foi possível
|
1346 |
|
|
|
1347 |
#: modules/containers/comment.php:74
|
1348 |
#, php-format
|
1349 |
msgid "Failed to delete comment %d"
|
1350 |
msgstr "Erro ao apagar o comentário %d"
|
1351 |
|
|
|
1352 |
#: modules/containers/comment.php:95
|
1353 |
#, php-format
|
1354 |
msgid "Can't move comment %d to the trash"
|
1355 |
msgstr "Não pode mover o comentário %d para o lixo"
|
1356 |
|
|
|
1357 |
#: modules/containers/comment.php:160
|
1358 |
msgid "Delete Permanently"
|
1359 |
msgstr "Apagado definitivamente"
|
1360 |
|
|
|
1361 |
#: modules/containers/comment.php:166
|
1362 |
msgid "View comment"
|
1363 |
msgstr "Ver comentário"
|
1364 |
|
|
|
1365 |
#: modules/containers/comment.php:183
|
1366 |
msgid "Comment"
|
1367 |
msgstr "Comentário"
|
1368 |
|
1369 |
-
|
|
|
1370 |
#, php-format
|
1371 |
msgid "%d comment has been deleted."
|
1372 |
msgid_plural "%d comments have been deleted."
|
1373 |
msgstr[0] "%d comentário foi apagado."
|
1374 |
msgstr[1] "%d comentários foram apagados."
|
1375 |
|
1376 |
-
|
|
|
1377 |
#, php-format
|
1378 |
msgid "%d comment moved to the Trash."
|
1379 |
msgid_plural "%d comments moved to the Trash."
|
1380 |
msgstr[0] "%d comentário apagado."
|
1381 |
msgstr[1] "%d comentários apagados."
|
1382 |
|
|
|
1383 |
#: modules/containers/custom_field.php:84
|
1384 |
#, php-format
|
1385 |
msgid "Failed to update the meta field '%s' on %s [%d]"
|
1386 |
-
msgstr "Falhou a
|
1387 |
|
|
|
1388 |
#: modules/containers/custom_field.php:110
|
1389 |
#, php-format
|
1390 |
msgid "Failed to delete the meta field '%s' on %s [%d]"
|
1391 |
msgstr "Erro ao apagar o campo meta '%s' em %s [%d]"
|
1392 |
|
|
|
1393 |
#: modules/containers/custom_field.php:187
|
1394 |
msgid "Edit this post"
|
1395 |
msgstr "Editar post"
|
1396 |
|
|
|
1397 |
#: modules/containers/custom_field.php:217
|
1398 |
#, php-format
|
1399 |
msgid "View \"%s\""
|
1400 |
msgstr "Ver \"%s\""
|
1401 |
|
|
|
1402 |
#: modules/containers/dummy.php:34
|
1403 |
#: modules/containers/dummy.php:45
|
1404 |
#, php-format
|
1405 |
msgid "I don't know how to edit a '%s' [%d]."
|
1406 |
msgstr "Não é possível editar '%s' [%d]."
|
1407 |
|
|
|
1408 |
#: modules/extras/dailymotion-embed.php:23
|
1409 |
msgid "DailyMotion Video"
|
1410 |
msgstr "Vídeo DailyMotion"
|
1411 |
|
|
|
1412 |
#: modules/extras/dailymotion-embed.php:24
|
1413 |
msgid "Embedded DailyMotion video"
|
1414 |
msgstr "Vídeo DailyMotion embutido"
|
1415 |
|
1416 |
-
|
|
|
1417 |
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
1418 |
msgstr "Vídeos embutidos não podem ser editados utilizando o Links offline. Por favor, editar ou substituir manualmente o vídeo em questão."
|
1419 |
|
|
|
1420 |
#: modules/extras/mediafire.php:91
|
1421 |
#: modules/extras/megaupload.php:109
|
1422 |
#: modules/extras/rapidshare.php:142
|
1423 |
msgid "Not Found"
|
1424 |
msgstr "Não Encontrado"
|
1425 |
|
|
|
1426 |
#: modules/extras/megaupload.php:116
|
1427 |
msgid "File Temporarily Unavailable"
|
1428 |
msgstr "Ficheiro Temporariamente Indisponível"
|
1429 |
|
|
|
1430 |
#: modules/extras/megaupload.php:122
|
1431 |
msgid "API Error"
|
1432 |
msgstr "Erro API"
|
1433 |
|
|
|
1434 |
#: modules/extras/rapidshare.php:161
|
1435 |
msgid "RS Server Down"
|
1436 |
msgstr "Servidor RS Desligado"
|
1437 |
|
|
|
1438 |
#: modules/extras/rapidshare.php:168
|
1439 |
msgid "File Blocked"
|
1440 |
msgstr "Ficheiro Bloqueado"
|
1441 |
|
|
|
1442 |
#: modules/extras/rapidshare.php:175
|
1443 |
msgid "File Locked"
|
1444 |
msgstr "Ficheiro Bloqueado"
|
1445 |
|
|
|
1446 |
#: modules/extras/rapidshare.php:186
|
1447 |
#, php-format
|
1448 |
msgid "RapidShare : %s"
|
1449 |
msgstr "Rapidshare : %s"
|
1450 |
|
|
|
1451 |
#: modules/extras/rapidshare.php:192
|
1452 |
#, php-format
|
1453 |
msgid "RapidShare API error: %s"
|
1454 |
msgstr "Rapidshare erro API: %s"
|
1455 |
|
|
|
1456 |
#: modules/extras/vimeo-embed.php:24
|
1457 |
msgid "Vimeo Video"
|
1458 |
msgstr "Vídeo Vimeo"
|
1459 |
|
|
|
1460 |
#: modules/extras/vimeo-embed.php:25
|
1461 |
msgid "Embedded Vimeo video"
|
1462 |
msgstr "Vídeo Vimeo embutido"
|
1463 |
|
1464 |
-
|
|
|
|
|
1465 |
msgid "YouTube Video"
|
1466 |
msgstr "Vídeo YouTube"
|
1467 |
|
1468 |
-
|
|
|
|
|
1469 |
msgid "Embedded YouTube video"
|
1470 |
msgstr "Vídeo YouTube embutido"
|
1471 |
|
1472 |
-
|
1473 |
-
#: modules/extras/youtube.php:
|
|
|
1474 |
msgid "Video Not Found"
|
1475 |
msgstr "Vídeo Não Encontrado"
|
1476 |
|
1477 |
-
|
|
|
1478 |
msgid "Video Removed"
|
1479 |
msgstr "Vídeo Apagado"
|
1480 |
|
1481 |
-
|
|
|
1482 |
msgid "Invalid Video ID"
|
1483 |
msgstr "Vídeo ID Inválido"
|
1484 |
|
1485 |
-
|
|
|
1486 |
msgid "Video OK"
|
1487 |
-
msgstr "Vídeo
|
1488 |
|
1489 |
-
|
|
|
1490 |
#, php-format
|
1491 |
msgid "Video status : %s%s"
|
1492 |
msgstr "Vídeo status : %s%s"
|
1493 |
|
1494 |
-
|
|
|
1495 |
msgid "Video Restricted"
|
1496 |
-
msgstr "Vídeo
|
1497 |
|
1498 |
-
|
|
|
1499 |
msgid "Unknown YouTube API response received."
|
1500 |
msgstr "Resposta API YouTube desconhecida."
|
1501 |
|
|
|
1502 |
#: modules/parsers/image.php:159
|
1503 |
msgid "Image"
|
1504 |
msgstr "Imagem"
|
1505 |
|
|
|
1506 |
#: modules/parsers/metadata.php:117
|
1507 |
msgid "Custom field"
|
1508 |
msgstr "Campo personalizado"
|
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.4 - 11/12/2011
|
4 |
# Autor: PedroDM - <pm[at]mowster[dot]net>
|
5 |
# Website: http://jobs.mowster.net/ - <jobs@mowster.net>
|
6 |
#
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
+
"Project-Id-Version: Broken Link Checker 1.4 PT\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2011-12-11 10:00-0000\n"
|
12 |
"PO-Revision-Date: \n"
|
13 |
"Last-Translator: Janis Elsts <whiteshadow@w-shadow.com>\n"
|
14 |
+
"Language-Team: mowsterJobs @ 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"
|
18 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
19 |
"X-Poedit-Language: Portuguese\n"
|
20 |
"X-Poedit-Country: PORTUGAL\n"
|
21 |
"X-Poedit-SourceCharset: utf-8\n"
|
22 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
23 |
"X-Poedit-Basepath: ..\n"
|
24 |
+
"X-Textdomain-Support: yes\n"
|
25 |
"X-Poedit-SearchPath-0: .\n"
|
26 |
|
27 |
+
#@ broken-link-checker
|
28 |
#: core/core.php:146
|
29 |
+
#: includes/admin/links-page-js.php:37
|
30 |
msgid "Loading..."
|
31 |
msgstr "Carregando..."
|
32 |
|
33 |
+
#@ broken-link-checker
|
34 |
#: core/core.php:170
|
35 |
+
#: includes/admin/options-page-js.php:18
|
36 |
msgid "[ Network error ]"
|
37 |
msgstr "[ Problema na rede ]"
|
38 |
|
39 |
+
#@ broken-link-checker
|
40 |
#: core/core.php:195
|
41 |
msgid "Automatically expand the widget if broken links have been detected"
|
42 |
msgstr "Expandir automaticamente a caixa se existirem links offline"
|
43 |
|
44 |
+
#@ broken-link-checker
|
45 |
+
#: core/core.php:285
|
46 |
msgid "Link Checker Settings"
|
47 |
msgstr "Definições do Links offline"
|
48 |
|
49 |
+
#@ broken-link-checker
|
50 |
+
#: core/core.php:286
|
51 |
msgid "Link Checker"
|
52 |
msgstr "Links offline"
|
53 |
|
54 |
+
#@ broken-link-checker
|
55 |
+
#: core/core.php:291
|
56 |
#: includes/link-query.php:26
|
57 |
msgid "Broken Links"
|
58 |
msgstr "Links offline"
|
59 |
|
60 |
+
#@ broken-link-checker
|
61 |
+
#: core/core.php:307
|
62 |
msgid "View Broken Links"
|
63 |
msgstr "Ver Links offline"
|
64 |
|
65 |
+
#@ broken-link-checker
|
66 |
+
#: core/core.php:322
|
67 |
msgid "Feedback"
|
68 |
msgstr "Feedback"
|
69 |
|
70 |
+
#@ broken-link-checker
|
71 |
+
#: core/core.php:337
|
|
|
|
|
|
|
72 |
msgid "Go to Broken Links"
|
73 |
msgstr "Ir a Links offline"
|
74 |
|
75 |
+
#@ default
|
76 |
+
#: core/core.php:366
|
77 |
msgid "Settings"
|
78 |
msgstr "Definições"
|
79 |
|
80 |
+
#@ broken-link-checker
|
81 |
+
#: core/core.php:378
|
82 |
+
#: core/core.php:1160
|
83 |
#, php-format
|
84 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
85 |
+
msgstr "Erro: As tabelas do plugin na Base de dados não estão atualizadas! (Versão atual : %d, obrigatória : %d)"
|
86 |
|
87 |
+
#@ broken-link-checker
|
88 |
+
#: core/core.php:382
|
89 |
+
#: core/core.php:1164
|
90 |
msgid "Try deactivating and then reactivating the plugin."
|
91 |
+
msgstr "Tente desativar e ativar o plugin."
|
92 |
|
93 |
+
#@ broken-link-checker
|
94 |
+
#: core/core.php:521
|
95 |
msgid "Settings saved."
|
96 |
msgstr "Definições guardadas."
|
97 |
|
98 |
+
#@ broken-link-checker
|
99 |
+
#: core/core.php:527
|
100 |
msgid "Thank you for your donation!"
|
101 |
msgstr "Obrigado pela sua colaboração!"
|
102 |
|
103 |
+
#@ broken-link-checker
|
104 |
+
#: core/core.php:534
|
105 |
msgid "Complete site recheck started."
|
106 |
msgstr "Re-verificação completa do sitío iniciada."
|
107 |
|
108 |
+
#@ broken-link-checker
|
109 |
+
#: core/core.php:543
|
110 |
msgid "Details"
|
111 |
msgstr "Detalhes"
|
112 |
|
113 |
+
#@ broken-link-checker
|
114 |
+
#: core/core.php:557
|
115 |
msgid "General"
|
116 |
msgstr "Geral"
|
117 |
|
118 |
+
#@ broken-link-checker
|
119 |
+
#: core/core.php:558
|
120 |
msgid "Look For Links In"
|
121 |
msgstr "Procurar links"
|
122 |
|
123 |
+
#@ broken-link-checker
|
124 |
+
#: core/core.php:559
|
125 |
msgid "Which Links To Check"
|
126 |
msgstr "Links para verificar"
|
127 |
|
128 |
+
#@ broken-link-checker
|
129 |
+
#: core/core.php:560
|
130 |
msgid "Protocols & APIs"
|
131 |
msgstr "Protocolos & APIs"
|
132 |
|
133 |
+
#@ broken-link-checker
|
134 |
+
#: core/core.php:561
|
135 |
msgid "Advanced"
|
136 |
msgstr "Avançado"
|
137 |
|
138 |
+
#@ broken-link-checker
|
139 |
+
#: core/core.php:576
|
140 |
msgid "Broken Link Checker Options"
|
141 |
msgstr "Opções : Links offline"
|
142 |
|
143 |
+
#@ broken-link-checker
|
144 |
+
#: core/core.php:618
|
145 |
+
#: includes/admin/table-printer.php:195
|
146 |
msgid "Status"
|
147 |
msgstr "Estado"
|
148 |
|
149 |
+
#@ broken-link-checker
|
150 |
+
#: core/core.php:620
|
151 |
+
#: includes/admin/options-page-js.php:56
|
152 |
msgid "Show debug info"
|
153 |
msgstr "Mostrar sistema"
|
154 |
|
155 |
+
#@ broken-link-checker
|
156 |
+
#: core/core.php:648
|
157 |
msgid "Check each link"
|
158 |
msgstr "Verificar cada link"
|
159 |
|
160 |
+
#@ broken-link-checker
|
161 |
+
#: core/core.php:653
|
162 |
#, php-format
|
163 |
msgid "Every %s hours"
|
164 |
msgstr "Cada %s horas"
|
165 |
|
166 |
+
#@ broken-link-checker
|
167 |
+
#: core/core.php:662
|
168 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
169 |
+
msgstr "Os links existentes serão verificados com esta frequência. Os novos links serão verificados logo que possível."
|
170 |
|
171 |
+
#@ broken-link-checker
|
172 |
+
#: core/core.php:669
|
173 |
msgid "E-mail notifications"
|
174 |
msgstr "Notificações por e-mail"
|
175 |
|
176 |
+
#@ broken-link-checker
|
177 |
+
#: core/core.php:675
|
178 |
msgid "Send me e-mail notifications about newly detected broken links"
|
179 |
+
msgstr "Enviar um e-mail notificando sobre os novos links offline encontrados"
|
180 |
|
181 |
+
#@ broken-link-checker
|
182 |
+
#: core/core.php:690
|
183 |
msgid "Link tweaks"
|
184 |
+
msgstr "Melhoria de Links"
|
185 |
|
186 |
+
#@ broken-link-checker
|
187 |
+
#: core/core.php:696
|
188 |
msgid "Apply custom formatting to broken links"
|
189 |
msgstr "Aplicar formatação personalizada para os links offline"
|
190 |
|
191 |
+
#@ broken-link-checker
|
192 |
+
#: core/core.php:700
|
193 |
+
#: core/core.php:728
|
194 |
msgid "Edit CSS"
|
195 |
msgstr "Editar CSS"
|
196 |
|
197 |
+
#@ broken-link-checker
|
198 |
+
#: core/core.php:724
|
199 |
msgid "Apply custom formatting to removed links"
|
200 |
msgstr "Aplicar formatação personalizada para os links removidos"
|
201 |
|
202 |
+
#@ broken-link-checker
|
203 |
+
#: core/core.php:752
|
204 |
msgid "Stop search engines from following broken links"
|
205 |
msgstr "Não permitir aos motores de busca seguir os links offline"
|
206 |
|
207 |
+
#@ broken-link-checker
|
208 |
+
#: core/core.php:769
|
209 |
msgid "Look for links in"
|
210 |
msgstr "Procurar links em"
|
211 |
|
212 |
+
#@ broken-link-checker
|
213 |
+
#: core/core.php:780
|
214 |
msgid "Post statuses"
|
215 |
+
msgstr "Estado do Artigo"
|
216 |
|
217 |
+
#@ broken-link-checker
|
218 |
+
#: core/core.php:813
|
219 |
msgid "Link types"
|
220 |
msgstr "Tipos de link"
|
221 |
|
222 |
+
#@ broken-link-checker
|
223 |
+
#: core/core.php:819
|
224 |
msgid "Error : All link parsers missing!"
|
225 |
+
msgstr "Erro : Análises aos links não encontradas!"
|
226 |
|
227 |
+
#@ broken-link-checker
|
228 |
+
#: core/core.php:826
|
229 |
msgid "Exclusion list"
|
230 |
msgstr "Lista de exclusão"
|
231 |
|
232 |
+
#@ broken-link-checker
|
233 |
+
#: core/core.php:827
|
234 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
235 |
+
msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha) :"
|
236 |
|
237 |
+
#@ broken-link-checker
|
238 |
+
#: core/core.php:845
|
239 |
msgid "Check links using"
|
240 |
+
msgstr "Verificar links utilizando"
|
241 |
|
242 |
+
#@ broken-link-checker
|
243 |
+
#: core/core.php:864
|
244 |
#: includes/links.php:849
|
245 |
msgid "Timeout"
|
246 |
msgstr "Intervalo"
|
247 |
|
248 |
+
#@ broken-link-checker
|
249 |
+
#@ default
|
250 |
+
#: core/core.php:870
|
251 |
+
#: core/core.php:916
|
252 |
+
#: core/core.php:2725
|
253 |
#, php-format
|
254 |
msgid "%s seconds"
|
255 |
msgstr "%s segundos"
|
256 |
|
257 |
+
#@ broken-link-checker
|
258 |
+
#: core/core.php:879
|
259 |
msgid "Links that take longer than this to load will be marked as broken."
|
260 |
msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
|
261 |
|
262 |
+
#@ broken-link-checker
|
263 |
+
#: core/core.php:886
|
264 |
msgid "Link monitor"
|
265 |
msgstr "Monitor de links"
|
266 |
|
267 |
+
#@ broken-link-checker
|
268 |
+
#: core/core.php:894
|
269 |
msgid "Run continuously while the Dashboard is open"
|
270 |
msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
|
271 |
|
272 |
+
#@ broken-link-checker
|
273 |
+
#: core/core.php:902
|
274 |
msgid "Run hourly in the background"
|
275 |
msgstr "Executar a cada hora em segundo plano"
|
276 |
|
277 |
+
#@ broken-link-checker
|
278 |
+
#: core/core.php:910
|
279 |
msgid "Max. execution time"
|
280 |
msgstr "Tempo máximo de execução"
|
281 |
|
282 |
+
#@ broken-link-checker
|
283 |
+
#: core/core.php:927
|
284 |
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."
|
285 |
msgstr "O plugin funciona executando periodicamente uma tarefa em segundo plano que analiza os links, verifica os URL encontrados e realiza outras tarefas que consomem tempo. Aqui pode-se estabelecer a duração máxima cada vez que o monitor de links é executado antes de parar."
|
286 |
|
287 |
+
#@ broken-link-checker
|
288 |
+
#: core/core.php:936
|
289 |
msgid "Server load limit"
|
290 |
msgstr "Limite de carregamento do servidor"
|
291 |
|
292 |
+
#@ broken-link-checker
|
293 |
+
#: core/core.php:951
|
294 |
#, php-format
|
295 |
msgid "Current load : %s"
|
296 |
msgstr "Carga actual : %s"
|
297 |
|
298 |
+
#@ broken-link-checker
|
299 |
+
#: core/core.php:957
|
300 |
#, php-format
|
301 |
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."
|
302 |
msgstr "A verificação dos links será suspensa se a média do <a href=\"%s\">carregamento do servidor</a> passa este valor. Deixar o campo em branco para não existir limite."
|
303 |
|
304 |
+
#@ broken-link-checker
|
305 |
+
#: core/core.php:965
|
306 |
msgid "Not available"
|
307 |
msgstr "Não disponível"
|
308 |
|
309 |
+
#@ broken-link-checker
|
310 |
+
#: core/core.php:967
|
311 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
312 |
msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
|
313 |
|
314 |
+
#@ broken-link-checker
|
315 |
+
#: core/core.php:975
|
316 |
msgid "Forced recheck"
|
317 |
msgstr "Re-verificação forçada"
|
318 |
|
319 |
+
#@ broken-link-checker
|
320 |
+
#: core/core.php:978
|
321 |
msgid "Re-check all pages"
|
322 |
msgstr "Verificar de novo todas as páginas"
|
323 |
|
324 |
+
#@ broken-link-checker
|
325 |
+
#: core/core.php:982
|
326 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
327 |
+
msgstr "\"Opção Nuclear\". Clique para limpar todos os dados do plugin na base de dados e re-verificar todo o sítio desde o início."
|
328 |
|
329 |
+
#@ default
|
330 |
+
#: core/core.php:993
|
331 |
msgid "Save Changes"
|
332 |
msgstr "Guardar alterações"
|
333 |
|
334 |
+
#@ broken-link-checker
|
335 |
+
#: core/core.php:1044
|
336 |
msgid "Configure"
|
337 |
msgstr "Configurar"
|
338 |
|
339 |
+
#@ broken-link-checker
|
340 |
+
#: core/core.php:1126
|
341 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
342 |
+
msgstr "Verificar URLs nos campos personalizados (um por linha):"
|
343 |
|
344 |
+
#@ broken-link-checker
|
345 |
+
#: core/core.php:1263
|
346 |
+
#: core/core.php:1344
|
347 |
+
#: core/core.php:1376
|
348 |
#, php-format
|
349 |
msgid "Database error : %s"
|
350 |
msgstr "Erro na Base de dados: %s"
|
351 |
|
352 |
+
#@ broken-link-checker
|
353 |
+
#: core/core.php:1326
|
354 |
msgid "You must enter a filter name!"
|
355 |
msgstr "Deve introduzir um nome para o filtro!"
|
356 |
|
357 |
+
#@ broken-link-checker
|
358 |
+
#: core/core.php:1330
|
359 |
msgid "Invalid search query."
|
360 |
msgstr "Procura inválida."
|
361 |
|
362 |
+
#@ broken-link-checker
|
363 |
+
#: core/core.php:1339
|
364 |
#, php-format
|
365 |
msgid "Filter \"%s\" created"
|
366 |
msgstr "Filtro \"%s\" criado"
|
367 |
|
368 |
+
#@ broken-link-checker
|
369 |
+
#: core/core.php:1366
|
370 |
msgid "Filter ID not specified."
|
371 |
msgstr "ID do Filtro não especificado."
|
372 |
|
373 |
+
#@ broken-link-checker
|
374 |
+
#: core/core.php:1373
|
375 |
msgid "Filter deleted"
|
376 |
msgstr "Filtro eliminado"
|
377 |
|
378 |
+
#@ broken-link-checker
|
379 |
+
#: core/core.php:1421
|
380 |
#, php-format
|
381 |
msgid "Replaced %d redirect with a direct link"
|
382 |
msgid_plural "Replaced %d redirects with direct links"
|
383 |
+
msgstr[0] "Substituído %d redirect com link direto"
|
384 |
+
msgstr[1] "Substituídos %d redirects com links diretos"
|
385 |
|
386 |
+
#@ broken-link-checker
|
387 |
+
#: core/core.php:1432
|
388 |
#, php-format
|
389 |
msgid "Failed to fix %d redirect"
|
390 |
msgid_plural "Failed to fix %d redirects"
|
391 |
msgstr[0] "Não foi possível reparar %d redirect"
|
392 |
msgstr[1] "Não foi possível reparar %d redirects"
|
393 |
|
394 |
+
#@ broken-link-checker
|
395 |
+
#: core/core.php:1442
|
396 |
msgid "None of the selected links are redirects!"
|
397 |
+
msgstr "Nenhum dos links selecionados são redirects!"
|
398 |
|
399 |
+
#@ broken-link-checker
|
400 |
+
#: core/core.php:1521
|
401 |
#, php-format
|
402 |
msgid "%d link updated."
|
403 |
msgid_plural "%d links updated."
|
404 |
+
msgstr[0] "%d link atualizado."
|
405 |
+
msgstr[1] "%d links atualizados."
|
406 |
|
407 |
+
#@ broken-link-checker
|
408 |
+
#: core/core.php:1532
|
409 |
#, php-format
|
410 |
msgid "Failed to update %d link."
|
411 |
msgid_plural "Failed to update %d links."
|
412 |
+
msgstr[0] "Erro a atualizar %d link."
|
413 |
+
msgstr[1] "Erro a atualizar %d links."
|
414 |
|
415 |
+
#@ broken-link-checker
|
416 |
+
#: core/core.php:1586
|
417 |
#, php-format
|
418 |
msgid "%d link removed"
|
419 |
msgid_plural "%d links removed"
|
420 |
msgstr[0] "%d link eliminado"
|
421 |
msgstr[1] "%d links eliminados"
|
422 |
|
423 |
+
#@ broken-link-checker
|
424 |
+
#: core/core.php:1597
|
425 |
#, php-format
|
426 |
msgid "Failed to remove %d link"
|
427 |
msgid_plural "Failed to remove %d links"
|
428 |
msgstr[0] "Erro a remover %d link"
|
429 |
msgstr[1] "Erro a remover %d links"
|
430 |
|
431 |
+
#@ default
|
432 |
+
#: core/core.php:1706
|
433 |
#, php-format
|
434 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
435 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
436 |
+
msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessita de o efetuar manualmente."
|
437 |
+
msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de o efetuar manualmente."
|
438 |
|
439 |
+
#@ broken-link-checker
|
440 |
+
#: core/core.php:1727
|
441 |
msgid "Didn't find anything to delete!"
|
442 |
msgstr "Não foi encontrado nada para apagar!"
|
443 |
|
444 |
+
#@ broken-link-checker
|
445 |
+
#: core/core.php:1756
|
446 |
#, php-format
|
447 |
msgid "%d link scheduled for rechecking"
|
448 |
msgid_plural "%d links scheduled for rechecking"
|
449 |
msgstr[0] "%d link agendado para verificação"
|
450 |
msgstr[1] "%d links agendados para verificação"
|
451 |
|
452 |
+
#@ broken-link-checker
|
453 |
+
#: core/core.php:1801
|
454 |
+
#: core/core.php:2405
|
455 |
msgid "This link was manually marked as working by the user."
|
456 |
+
msgstr "Este link foi assinalado manualmente como válido pelo utilizador."
|
457 |
|
458 |
+
#@ broken-link-checker
|
459 |
+
#: core/core.php:1808
|
460 |
#, php-format
|
461 |
msgid "Couldn't modify link %d"
|
462 |
+
msgstr "Impossível modificar o link %d"
|
463 |
|
464 |
+
#@ broken-link-checker
|
465 |
+
#: core/core.php:1819
|
466 |
#, php-format
|
467 |
msgid "%d link marked as not broken"
|
468 |
msgid_plural "%d links marked as not broken"
|
469 |
msgstr[0] "%d link marcado como funcional"
|
470 |
msgstr[1] "%d links marcados como funcionais"
|
471 |
|
472 |
+
#@ broken-link-checker
|
473 |
+
#: core/core.php:1858
|
474 |
msgid "Table columns"
|
475 |
msgstr "Colunas da Tabela"
|
476 |
|
477 |
+
#@ default
|
478 |
+
#: core/core.php:1877
|
479 |
msgid "Show on screen"
|
480 |
msgstr "Mostrar no ecrán"
|
481 |
|
482 |
+
#@ broken-link-checker
|
483 |
+
#: core/core.php:1884
|
484 |
msgid "links"
|
485 |
msgstr "links"
|
486 |
|
487 |
+
#@ default
|
488 |
+
#@ broken-link-checker
|
489 |
+
#: core/core.php:1885
|
490 |
+
#: includes/admin/table-printer.php:163
|
491 |
msgid "Apply"
|
492 |
msgstr "Aplicar"
|
493 |
|
494 |
+
#@ broken-link-checker
|
495 |
+
#: core/core.php:1889
|
496 |
msgid "Misc"
|
497 |
msgstr "Vários"
|
498 |
|
499 |
+
#@ broken-link-checker
|
500 |
+
#: core/core.php:1904
|
501 |
#, php-format
|
502 |
msgid "Highlight links broken for at least %s days"
|
503 |
+
msgstr "Realçar links offline pelo menos durante %s dias"
|
504 |
|
505 |
+
#@ broken-link-checker
|
506 |
+
#: core/core.php:1913
|
507 |
msgid "Color-code status codes"
|
508 |
msgstr "Cor-código status códigos"
|
509 |
|
510 |
+
#@ broken-link-checker
|
511 |
+
#: core/core.php:1930
|
512 |
+
#: core/core.php:2390
|
513 |
+
#: core/core.php:2426
|
514 |
+
#: core/core.php:2489
|
515 |
msgid "You're not allowed to do that!"
|
516 |
msgstr "Não permitido!"
|
517 |
|
518 |
+
#@ broken-link-checker
|
519 |
+
#: core/core.php:2271
|
520 |
msgid "View broken links"
|
521 |
msgstr "Ver links offline"
|
522 |
|
523 |
+
#@ broken-link-checker
|
524 |
+
#: core/core.php:2272
|
525 |
#, php-format
|
526 |
msgid "Found %d broken link"
|
527 |
msgid_plural "Found %d broken links"
|
528 |
msgstr[0] "Encontrado %d Link offline"
|
529 |
msgstr[1] "Encontrados %d Links offline"
|
530 |
|
531 |
+
#@ broken-link-checker
|
532 |
+
#: core/core.php:2278
|
533 |
msgid "No broken links found."
|
534 |
msgstr "Não existem links offline."
|
535 |
|
536 |
+
#@ broken-link-checker
|
537 |
+
#: core/core.php:2285
|
538 |
#, php-format
|
539 |
msgid "%d URL in the work queue"
|
540 |
msgid_plural "%d URLs in the work queue"
|
541 |
msgstr[0] "%d URL em espera"
|
542 |
msgstr[1] "%d URLs em espera"
|
543 |
|
544 |
+
#@ broken-link-checker
|
545 |
+
#: core/core.php:2288
|
546 |
msgid "No URLs in the work queue."
|
547 |
msgstr "Não existem URL em espera para verificação."
|
548 |
|
549 |
+
#@ broken-link-checker
|
550 |
+
#: core/core.php:2294
|
551 |
#, php-format
|
552 |
msgid "Detected %d unique URL"
|
553 |
msgid_plural "Detected %d unique URLs"
|
554 |
+
msgstr[0] "Encontrada %d URL única"
|
555 |
+
msgstr[1] "Encontradas %d URL únicas"
|
556 |
|
557 |
+
#@ broken-link-checker
|
558 |
+
#: core/core.php:2295
|
559 |
#, php-format
|
560 |
msgid "in %d link"
|
561 |
msgid_plural "in %d links"
|
562 |
msgstr[0] "em %d link"
|
563 |
msgstr[1] "em %d links"
|
564 |
|
565 |
+
#@ broken-link-checker
|
566 |
+
#: core/core.php:2300
|
567 |
msgid "and still searching..."
|
568 |
msgstr "e procurando..."
|
569 |
|
570 |
+
#@ broken-link-checker
|
571 |
+
#: core/core.php:2306
|
572 |
msgid "Searching your blog for links..."
|
573 |
msgstr "Procurando links..."
|
574 |
|
575 |
+
#@ broken-link-checker
|
576 |
+
#: core/core.php:2308
|
577 |
msgid "No links detected."
|
578 |
msgstr "Nenhuns links encontrados."
|
579 |
|
580 |
+
#@ broken-link-checker
|
581 |
+
#: core/core.php:2398
|
582 |
+
#: core/core.php:2436
|
583 |
+
#: core/core.php:2499
|
|
|
|
|
|
|
|
|
584 |
#, php-format
|
585 |
msgid "Oops, I can't find the link %d"
|
586 |
msgstr "Oops, não é possível encontrar o link %d"
|
587 |
|
588 |
+
#@ broken-link-checker
|
589 |
+
#: core/core.php:2411
|
590 |
msgid "Oops, couldn't modify the link!"
|
591 |
msgstr "Oops, não é possível modificar o link!"
|
592 |
|
593 |
+
#@ broken-link-checker
|
594 |
+
#: core/core.php:2414
|
595 |
+
#: core/core.php:2525
|
596 |
msgid "Error : link_id not specified"
|
597 |
+
msgstr "Erro : link_id não especificado"
|
598 |
|
599 |
+
#@ broken-link-checker
|
600 |
+
#: core/core.php:2446
|
601 |
msgid "Oops, the new URL is invalid!"
|
602 |
+
msgstr "Oops, a nova URL não é válida!"
|
603 |
|
604 |
+
#@ broken-link-checker
|
605 |
+
#: core/core.php:2457
|
606 |
+
#: core/core.php:2508
|
607 |
msgid "An unexpected error occured!"
|
608 |
msgstr "Ocorreu um erro inesperado!"
|
609 |
|
610 |
+
#@ broken-link-checker
|
611 |
+
#: core/core.php:2475
|
612 |
msgid "Error : link_id or new_url not specified"
|
613 |
+
msgstr "Erro : link_id ou new_url não especificado"
|
614 |
|
615 |
+
#@ broken-link-checker
|
616 |
+
#: core/core.php:2534
|
617 |
msgid "You don't have sufficient privileges to access this information!"
|
618 |
msgstr "Não tem previlégios suficientes para aceder a esta informação!"
|
619 |
|
620 |
+
#@ broken-link-checker
|
621 |
+
#: core/core.php:2547
|
622 |
msgid "Error : link ID not specified"
|
623 |
+
msgstr "Erro : link ID não especificado"
|
624 |
|
625 |
+
#@ broken-link-checker
|
626 |
+
#: core/core.php:2561
|
627 |
#, php-format
|
628 |
msgid "Failed to load link details (%s)"
|
629 |
msgstr "Erro a carregar os detalhes do link (%s)"
|
630 |
|
631 |
+
#@ broken-link-checker
|
632 |
+
#: core/core.php:2614
|
633 |
msgid "Broken Link Checker"
|
634 |
msgstr "Links offline"
|
635 |
|
636 |
+
#@ broken-link-checker
|
637 |
+
#: core/core.php:2634
|
638 |
msgid "PHP version"
|
639 |
msgstr "Versão PHP"
|
640 |
|
641 |
+
#@ broken-link-checker
|
642 |
+
#: core/core.php:2640
|
643 |
msgid "MySQL version"
|
644 |
msgstr "Versão MySQL"
|
645 |
|
646 |
+
#@ broken-link-checker
|
647 |
+
#: core/core.php:2653
|
648 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
649 |
+
msgstr "Versão de CURL obsoleta. A deteção de redirects pode não funcionar corretamente."
|
650 |
|
651 |
+
#@ broken-link-checker
|
652 |
+
#: core/core.php:2665
|
653 |
+
#: core/core.php:2681
|
654 |
+
#: core/core.php:2686
|
655 |
msgid "Not installed"
|
656 |
msgstr "Não instalado"
|
657 |
|
658 |
+
#@ broken-link-checker
|
659 |
+
#: core/core.php:2668
|
660 |
msgid "CURL version"
|
661 |
msgstr "Versão CURL"
|
662 |
|
663 |
+
#@ broken-link-checker
|
664 |
+
#: core/core.php:2674
|
665 |
msgid "Installed"
|
666 |
msgstr "Instalado"
|
667 |
|
668 |
+
#@ broken-link-checker
|
669 |
+
#: core/core.php:2687
|
670 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
671 |
msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
|
672 |
|
673 |
+
#@ broken-link-checker
|
674 |
+
#: core/core.php:2698
|
675 |
msgid "On"
|
676 |
+
msgstr "Ativado"
|
677 |
|
678 |
+
#@ broken-link-checker
|
679 |
+
#: core/core.php:2699
|
680 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
681 |
msgstr "Os redirects podem ser detectados como links offline quando o safe_mode está habilitado."
|
682 |
|
683 |
+
#@ broken-link-checker
|
684 |
+
#: core/core.php:2704
|
685 |
+
#: core/core.php:2718
|
686 |
msgid "Off"
|
687 |
+
msgstr "Desativado"
|
688 |
|
689 |
+
#@ broken-link-checker
|
690 |
+
#: core/core.php:2712
|
691 |
#, php-format
|
692 |
msgid "On ( %s )"
|
693 |
+
msgstr "Ativado ( %s )"
|
694 |
|
695 |
+
#@ broken-link-checker
|
696 |
+
#: core/core.php:2713
|
697 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
698 |
+
msgstr "Os redirects podem ser considerados links offline quando o open_basedir está ativo."
|
699 |
|
700 |
+
#@ broken-link-checker
|
701 |
+
#: core/core.php:2742
|
702 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
703 |
msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
|
704 |
|
705 |
+
#@ broken-link-checker
|
706 |
+
#: core/core.php:2833
|
707 |
+
#: core/core.php:2931
|
708 |
#, php-format
|
709 |
msgid "[%s] Broken links detected"
|
710 |
msgstr "[%s] Links offline encontrados"
|
711 |
|
712 |
+
#@ broken-link-checker
|
713 |
+
#: core/core.php:2839
|
714 |
#, php-format
|
715 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
716 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
717 |
+
msgstr[0] "Links offline detetou %d novo link sem ligação."
|
718 |
+
msgstr[1] "Links offline detetou %d novos links sem ligação."
|
719 |
|
720 |
+
#@ broken-link-checker
|
721 |
+
#: core/core.php:2862
|
722 |
#, php-format
|
723 |
msgid "Here's a list of the first %d broken links:"
|
724 |
msgid_plural "Here's a list of the first %d broken links:"
|
725 |
msgstr[0] "Lista do primeiro %d link sem ligação:"
|
726 |
msgstr[1] "Lista dos primeiros %d links sem ligação:"
|
727 |
|
728 |
+
#@ broken-link-checker
|
729 |
+
#: core/core.php:2870
|
730 |
msgid "Here's a list of the new broken links: "
|
731 |
msgstr "Novos links offline:"
|
732 |
|
733 |
+
#@ broken-link-checker
|
734 |
+
#: core/core.php:2879
|
735 |
#, php-format
|
736 |
msgid "Link text : %s"
|
737 |
msgstr "Texto do Link : %s"
|
738 |
|
739 |
+
#@ broken-link-checker
|
740 |
+
#: core/core.php:2880
|
741 |
#, php-format
|
742 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
743 |
msgstr "Link URL : <a href=\"%s\">%s</a>"
|
744 |
|
745 |
+
#@ broken-link-checker
|
746 |
+
#: core/core.php:2881
|
747 |
#, php-format
|
748 |
msgid "Source : %s"
|
749 |
msgstr "Fonte : %s"
|
750 |
|
751 |
+
#@ broken-link-checker
|
752 |
+
#: core/core.php:2894
|
753 |
msgid "You can see all broken links here:"
|
754 |
msgstr "Links offline:"
|
755 |
|
756 |
+
#@ default
|
757 |
+
#: core/init.php:231
|
758 |
msgid "Once Weekly"
|
759 |
msgstr "Uma vez por semana"
|
760 |
|
761 |
+
#@ default
|
762 |
+
#: core/init.php:237
|
763 |
msgid "Twice a Month"
|
764 |
msgstr "Bi-Mensal"
|
765 |
|
766 |
+
#@ broken-link-checker
|
767 |
+
#: core/init.php:307
|
768 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
769 |
+
msgstr "A instalação do plugin Links offline falhou. Desative e ative o plugin."
|
770 |
|
771 |
+
#@ default
|
772 |
#: includes/any-post.php:397
|
773 |
+
#: modules/containers/blogroll.php:46
|
774 |
+
#: modules/containers/comment.php:153
|
775 |
+
#: modules/containers/custom_field.php:197
|
776 |
msgid "Edit"
|
777 |
msgstr "Editar"
|
778 |
|
779 |
+
#@ default
|
780 |
#: includes/any-post.php:405
|
781 |
+
#: modules/containers/custom_field.php:203
|
782 |
msgid "Move this item to the Trash"
|
783 |
+
msgstr "Apagar este item"
|
784 |
|
785 |
+
#@ default
|
786 |
#: includes/any-post.php:407
|
787 |
+
#: modules/containers/custom_field.php:205
|
788 |
msgid "Trash"
|
789 |
msgstr "Lixo"
|
790 |
|
791 |
+
#@ default
|
792 |
#: includes/any-post.php:412
|
793 |
+
#: modules/containers/custom_field.php:210
|
794 |
msgid "Delete this item permanently"
|
795 |
+
msgstr "Apagar este item definitivamente"
|
796 |
|
797 |
+
#@ default
|
798 |
#: includes/any-post.php:414
|
799 |
+
#: modules/containers/blogroll.php:47
|
800 |
+
#: modules/containers/custom_field.php:212
|
801 |
msgid "Delete"
|
802 |
msgstr "Apagar"
|
803 |
|
804 |
+
#@ default
|
805 |
#: includes/any-post.php:427
|
806 |
#, php-format
|
807 |
msgid "Preview “%s”"
|
808 |
+
msgstr "Pré-vizualizar “%s”"
|
809 |
|
810 |
+
#@ default
|
811 |
#: includes/any-post.php:428
|
812 |
msgid "Preview"
|
813 |
msgstr "Pré-visualizar"
|
814 |
|
815 |
+
#@ default
|
816 |
#: includes/any-post.php:435
|
817 |
#, php-format
|
818 |
msgid "View “%s”"
|
819 |
msgstr "Visualizar “%s”"
|
820 |
|
821 |
+
#@ default
|
822 |
#: includes/any-post.php:436
|
823 |
+
#: modules/containers/comment.php:166
|
824 |
+
#: modules/containers/custom_field.php:217
|
825 |
msgid "View"
|
826 |
msgstr "Ver"
|
827 |
|
828 |
+
#@ default
|
829 |
#: includes/any-post.php:455
|
830 |
+
#: modules/containers/custom_field.php:197
|
831 |
msgid "Edit this item"
|
832 |
+
msgstr "Editar este item"
|
833 |
|
834 |
+
#@ broken-link-checker
|
835 |
#: includes/any-post.php:519
|
836 |
+
#: modules/containers/blogroll.php:83
|
837 |
+
#: modules/containers/comment.php:43
|
838 |
msgid "Nothing to update"
|
839 |
+
msgstr "Sem atualização"
|
840 |
|
841 |
+
#@ broken-link-checker
|
842 |
#: includes/any-post.php:529
|
843 |
#, php-format
|
844 |
msgid "Updating post %d failed"
|
845 |
+
msgstr "Atualização do artigo %d falhou"
|
846 |
|
847 |
+
#@ broken-link-checker
|
848 |
#: includes/any-post.php:564
|
849 |
+
#: modules/containers/custom_field.php:284
|
850 |
#, php-format
|
851 |
msgid "Failed to delete post \"%s\" (%d)"
|
852 |
+
msgstr "Erro ao apagar o artigo \"%s\" (%d)"
|
853 |
|
854 |
+
#@ broken-link-checker
|
855 |
#: includes/any-post.php:583
|
856 |
+
#: modules/containers/custom_field.php:303
|
857 |
#, php-format
|
858 |
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
859 |
+
msgstr "Não é possível mover o artigo \"%s\" (%d) para o lixo porque a função está desabilitada"
|
860 |
|
861 |
+
#@ broken-link-checker
|
862 |
#: includes/any-post.php:603
|
863 |
+
#: modules/containers/custom_field.php:322
|
864 |
#, php-format
|
865 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
866 |
+
msgstr "Erro ao apagar o artigo \"%s\" (%d)"
|
867 |
|
868 |
+
#@ broken-link-checker
|
869 |
#: includes/any-post.php:711
|
870 |
#, php-format
|
871 |
msgid "%d post deleted."
|
872 |
msgid_plural "%d posts deleted."
|
873 |
+
msgstr[0] "%d artigo apagado."
|
874 |
+
msgstr[1] "%d artigos apagados."
|
875 |
|
876 |
+
#@ broken-link-checker
|
877 |
#: includes/any-post.php:713
|
878 |
#, php-format
|
879 |
msgid "%d page deleted."
|
881 |
msgstr[0] "%d página apagada."
|
882 |
msgstr[1] "%d páginas apagadas."
|
883 |
|
884 |
+
#@ broken-link-checker
|
885 |
#: includes/any-post.php:715
|
886 |
#, php-format
|
887 |
msgid "%d \"%s\" deleted."
|
889 |
msgstr[0] "%d \"%s\" apagado."
|
890 |
msgstr[1] "%d \"%s\" apagados."
|
891 |
|
892 |
+
#@ broken-link-checker
|
893 |
#: includes/any-post.php:734
|
894 |
#, php-format
|
895 |
msgid "%d post moved to the Trash."
|
896 |
msgid_plural "%d posts moved to the Trash."
|
897 |
+
msgstr[0] "%d artigo transferido para o Lixo."
|
898 |
+
msgstr[1] "%d artigos transferidos para o Lixo."
|
899 |
|
900 |
+
#@ broken-link-checker
|
901 |
#: includes/any-post.php:736
|
902 |
#, php-format
|
903 |
msgid "%d page moved to the Trash."
|
905 |
msgstr[0] "%d página transferida para o Lixo."
|
906 |
msgstr[1] "%d páginas transferidas para o Lixo."
|
907 |
|
908 |
+
#@ broken-link-checker
|
909 |
#: includes/any-post.php:738
|
910 |
#, php-format
|
911 |
msgid "%d \"%s\" moved to the Trash."
|
913 |
msgstr[0] "%d \"%s\" transferido para o Lixo."
|
914 |
msgstr[1] "%d \"%s\" transferidos para o Lixo."
|
915 |
|
916 |
+
#@ broken-link-checker
|
917 |
#: includes/containers.php:123
|
918 |
#, php-format
|
919 |
msgid "%d '%s' has been deleted"
|
921 |
msgstr[0] "%d '%s' foi apagado"
|
922 |
msgstr[1] "%d '%s' foram apagados"
|
923 |
|
924 |
+
#@ broken-link-checker
|
925 |
#: includes/containers.php:873
|
926 |
#: includes/containers.php:891
|
927 |
#, php-format
|
928 |
msgid "Container type '%s' not recognized"
|
929 |
msgstr "Recipiente tipo '%s' não foi reconhecido"
|
930 |
|
931 |
+
#@ broken-link-checker
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
932 |
#: includes/instances.php:102
|
933 |
#: includes/instances.php:158
|
934 |
#, php-format
|
935 |
msgid "Container %s[%d] not found"
|
936 |
msgstr "Recipiente %s[%d] não encontrado"
|
937 |
|
938 |
+
#@ broken-link-checker
|
939 |
#: includes/instances.php:111
|
940 |
#: includes/instances.php:167
|
941 |
#, php-format
|
942 |
msgid "Parser '%s' not found."
|
943 |
msgstr "Analizador sintáctico '%s' não encontrado."
|
944 |
|
945 |
+
#@ broken-link-checker
|
946 |
#: includes/link-query.php:25
|
947 |
msgid "Broken"
|
948 |
msgstr "Offline"
|
949 |
|
950 |
+
#@ broken-link-checker
|
951 |
#: includes/link-query.php:27
|
952 |
msgid "No broken links found"
|
953 |
msgstr "Links offline (0)"
|
954 |
|
955 |
+
#@ broken-link-checker
|
956 |
#: includes/link-query.php:34
|
957 |
msgid "Redirects"
|
958 |
msgstr "Redirects"
|
959 |
|
960 |
+
#@ broken-link-checker
|
961 |
#: includes/link-query.php:35
|
962 |
msgid "Redirected Links"
|
963 |
msgstr "Links Redirects"
|
964 |
|
965 |
+
#@ broken-link-checker
|
966 |
#: includes/link-query.php:36
|
967 |
msgid "No redirects found"
|
968 |
msgstr "Redirects (0)"
|
969 |
|
970 |
+
#@ broken-link-checker
|
971 |
#: includes/link-query.php:44
|
972 |
msgid "All"
|
973 |
msgstr "Todos"
|
974 |
|
975 |
+
#@ broken-link-checker
|
976 |
#: includes/link-query.php:45
|
977 |
msgid "Detected Links"
|
978 |
msgstr "Links encontrados"
|
979 |
|
980 |
+
#@ broken-link-checker
|
981 |
#: includes/link-query.php:46
|
982 |
msgid "No links found (yet)"
|
983 |
msgstr "Links (0)"
|
984 |
|
985 |
+
#@ broken-link-checker
|
986 |
+
#: includes/admin/search-form.php:32
|
987 |
#: includes/link-query.php:53
|
988 |
msgid "Search"
|
989 |
msgstr "Procurar"
|
990 |
|
991 |
+
#@ broken-link-checker
|
992 |
#: includes/link-query.php:54
|
993 |
msgid "Search Results"
|
994 |
msgstr "Resultados da procura"
|
995 |
|
996 |
+
#@ broken-link-checker
|
997 |
#: includes/link-query.php:55
|
998 |
#: includes/link-query.php:102
|
999 |
msgid "No links found for your query"
|
1000 |
msgstr "Sem resultados"
|
1001 |
|
1002 |
+
#@ broken-link-checker
|
1003 |
#: includes/links.php:215
|
1004 |
msgid "The plugin script was terminated while trying to check the link."
|
1005 |
msgstr "O script do plugin terminou enquanto tentava verificar o link."
|
1006 |
|
1007 |
+
#@ broken-link-checker
|
1008 |
#: includes/links.php:261
|
1009 |
msgid "The plugin doesn't know how to check this type of link."
|
1010 |
msgstr "O plugin não consegue verificar este tipo de link."
|
1011 |
|
1012 |
+
#@ broken-link-checker
|
1013 |
#: includes/links.php:349
|
1014 |
msgid "Link is valid."
|
1015 |
msgstr "Link operacional."
|
1016 |
|
1017 |
+
#@ broken-link-checker
|
1018 |
#: includes/links.php:351
|
1019 |
msgid "Link is broken."
|
1020 |
msgstr "Link sem ligação."
|
1021 |
|
1022 |
+
#@ broken-link-checker
|
1023 |
#: includes/links.php:564
|
1024 |
#: includes/links.php:666
|
1025 |
#: includes/links.php:693
|
1026 |
msgid "Link is not valid"
|
1027 |
+
msgstr "Link inválido"
|
1028 |
|
1029 |
+
#@ broken-link-checker
|
1030 |
#: includes/links.php:581
|
1031 |
msgid "This link can not be edited because it is not used anywhere on this site."
|
1032 |
+
msgstr "Este link não pode ser editado porque não é utilizado no sítio."
|
1033 |
|
1034 |
+
#@ broken-link-checker
|
1035 |
#: includes/links.php:607
|
1036 |
msgid "Failed to create a DB entry for the new URL."
|
1037 |
msgstr "Falhou a criação de um registro na Base de dados para um novo URL."
|
1038 |
|
1039 |
+
#@ broken-link-checker
|
1040 |
#: includes/links.php:673
|
1041 |
msgid "This link is not a redirect"
|
1042 |
msgstr "O link não é um redirect"
|
1043 |
|
1044 |
+
#@ broken-link-checker
|
1045 |
#: includes/links.php:720
|
1046 |
#: includes/links.php:757
|
1047 |
msgid "Couldn't delete the link's database record"
|
1048 |
msgstr "Não é possível apagar o registro do link na Base de dados"
|
1049 |
|
1050 |
+
#@ link status
|
1051 |
+
#@ broken-link-checker
|
1052 |
#: includes/links.php:845
|
1053 |
+
#: modules/checkers/http.php:263
|
1054 |
+
#: modules/extras/mediafire.php:96
|
1055 |
msgid "Unknown Error"
|
1056 |
msgstr "Erro Desconhecido"
|
1057 |
|
1058 |
+
#@ broken-link-checker
|
1059 |
#: includes/links.php:869
|
1060 |
msgid "Not checked"
|
1061 |
msgstr "Não verificado"
|
1062 |
|
1063 |
+
#@ broken-link-checker
|
1064 |
#: includes/links.php:872
|
1065 |
msgid "False positive"
|
1066 |
msgstr "Falso postivo"
|
1067 |
|
1068 |
+
#@ link status
|
1069 |
+
#: modules/extras/youtube.php:105
|
1070 |
+
#: modules/extras/youtube.php:132
|
1071 |
msgid "OK"
|
1072 |
+
msgstr "OK"
|
1073 |
|
1074 |
+
#@ broken-link-checker
|
1075 |
#: includes/parsers.php:109
|
1076 |
#, php-format
|
1077 |
msgid "Editing is not implemented in the '%s' parser"
|
1078 |
msgstr "Edição não implementada no '%s' analizador sintáctico"
|
1079 |
|
1080 |
+
#@ broken-link-checker
|
1081 |
#: includes/parsers.php:124
|
1082 |
#, php-format
|
1083 |
msgid "Unlinking is not implemented in the '%s' parser"
|
1084 |
msgstr "Remover links não foi implementado no '%s' analizador sintáctico"
|
1085 |
|
1086 |
+
#@ broken-link-checker
|
1087 |
#: includes/admin/db-upgrade.php:95
|
1088 |
#, php-format
|
1089 |
msgid "Failed to delete old DB tables. Database error : %s"
|
1090 |
msgstr "Não foi possível apagar as tabelas antigas da Base de dados. Erro de Base de dados : %s"
|
1091 |
|
1092 |
+
#@ broken-link-checker
|
1093 |
#: includes/admin/links-page-js.php:58
|
1094 |
#: includes/admin/links-page-js.php:301
|
1095 |
msgid "Wait..."
|
1096 |
msgstr "Espere ..."
|
1097 |
|
1098 |
+
#@ broken-link-checker
|
1099 |
#: includes/admin/links-page-js.php:99
|
1100 |
+
#: includes/admin/table-printer.php:616
|
1101 |
msgid "Not broken"
|
1102 |
msgstr "Funcional"
|
1103 |
|
1104 |
+
#@ broken-link-checker
|
1105 |
#: includes/admin/links-page-js.php:213
|
1106 |
#, php-format
|
1107 |
msgid "%d instances of the link were successfully modified."
|
1108 |
msgstr "%d casos de links que se modificaram com sucesso."
|
1109 |
|
1110 |
+
#@ broken-link-checker
|
1111 |
#: includes/admin/links-page-js.php:219
|
1112 |
#, php-format
|
1113 |
msgid "However, %d instances couldn't be edited and still point to the old URL."
|
1114 |
msgstr "No entanto, %d casos não puderam ser editados e ainda apontam para a antiga URL."
|
1115 |
|
1116 |
+
#@ broken-link-checker
|
1117 |
#: includes/admin/links-page-js.php:225
|
1118 |
msgid "The link could not be modified."
|
1119 |
msgstr "O link não pode ser modificado."
|
1120 |
|
1121 |
+
#@ broken-link-checker
|
1122 |
#: includes/admin/links-page-js.php:228
|
1123 |
#: includes/admin/links-page-js.php:353
|
1124 |
msgid "The following error(s) occured :"
|
1125 |
msgstr "Erro(s) :"
|
1126 |
|
1127 |
+
#@ broken-link-checker
|
1128 |
#: includes/admin/links-page-js.php:339
|
1129 |
#, php-format
|
1130 |
msgid "%d instances of the link were successfully unlinked."
|
1131 |
msgstr "%d casos de links foram removidos com sucesso."
|
1132 |
|
1133 |
+
#@ broken-link-checker
|
1134 |
#: includes/admin/links-page-js.php:345
|
1135 |
#, php-format
|
1136 |
msgid "However, %d instances couldn't be removed."
|
1137 |
msgstr "No entanto, %d casos não foram removidos."
|
1138 |
|
1139 |
+
#@ broken-link-checker
|
1140 |
#: includes/admin/links-page-js.php:350
|
1141 |
msgid "The plugin failed to remove the link."
|
1142 |
+
msgstr "O plugin não apagou o link."
|
1143 |
|
1144 |
+
#@ broken-link-checker
|
1145 |
#: includes/admin/links-page-js.php:361
|
1146 |
+
#: includes/admin/table-printer.php:266
|
1147 |
+
#: includes/admin/table-printer.php:610
|
1148 |
msgid "Unlink"
|
1149 |
msgstr "Remover link"
|
1150 |
|
1151 |
+
#@ broken-link-checker
|
1152 |
#: includes/admin/links-page-js.php:405
|
1153 |
msgid "Enter a name for the new custom filter"
|
1154 |
msgstr "Introduza o nome para o novo filtro personalizado"
|
1155 |
|
1156 |
+
#@ broken-link-checker
|
1157 |
#: includes/admin/links-page-js.php:416
|
1158 |
msgid ""
|
1159 |
"You are about to delete the current filter.\n"
|
1160 |
"'Cancel' to stop, 'OK' to delete"
|
1161 |
msgstr ""
|
1162 |
"Está a ponto de apagar o filtro actual.\n"
|
1163 |
+
" 'Cancelar' para sair, 'Aceitar' para apagar"
|
1164 |
|
1165 |
+
#@ broken-link-checker
|
1166 |
#: includes/admin/links-page-js.php:439
|
1167 |
msgid ""
|
1168 |
"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"
|
1169 |
"'Cancel' to stop, 'OK' to delete"
|
1170 |
msgstr ""
|
1171 |
+
"Tem a certeza que deseja eliminar todos os artigos, favoritos ou outros itens que contenham quaisquer dos links seleccionados? Esta ação não pode ser anulada.\n"
|
|
|
1172 |
"'Cancelar' para anular a operação, 'Aceitar' para apagar"
|
1173 |
|
1174 |
+
#@ broken-link-checker
|
1175 |
#: includes/admin/links-page-js.php:449
|
1176 |
msgid ""
|
1177 |
"Are you sure you want to remove the selected links? This action can't be undone.\n"
|
1178 |
"'Cancel' to stop, 'OK' to remove"
|
1179 |
msgstr ""
|
1180 |
+
"Tem a certeza que deseja eliminar todos os links selecionados? Esta ação não pode ser anulada.\n"
|
|
|
1181 |
"'Cancelar' para anular a operação, 'Aceitar' para apagar"
|
1182 |
|
1183 |
+
#@ broken-link-checker
|
1184 |
#: includes/admin/links-page-js.php:558
|
1185 |
msgid "Enter a search string first."
|
1186 |
msgstr "Introduza primeiro uma string de procura."
|
1187 |
|
1188 |
+
#@ broken-link-checker
|
1189 |
#: includes/admin/links-page-js.php:565
|
1190 |
msgid "Select one or more links to edit."
|
1191 |
msgstr "Selecione um ou mais links para editar."
|
1192 |
|
1193 |
+
#@ broken-link-checker
|
1194 |
#: includes/admin/options-page-js.php:54
|
1195 |
msgid "Hide debug info"
|
1196 |
msgstr "Ocultar informação"
|
1197 |
|
1198 |
+
#@ broken-link-checker
|
1199 |
#: includes/admin/search-form.php:16
|
1200 |
msgid "Save This Search As a Filter"
|
1201 |
+
msgstr "Gravar esta Procura como um Filtro"
|
1202 |
|
1203 |
+
#@ broken-link-checker
|
1204 |
#: includes/admin/search-form.php:26
|
1205 |
msgid "Delete This Filter"
|
1206 |
+
msgstr "Apagar Filtro"
|
1207 |
|
1208 |
+
#@ broken-link-checker
|
1209 |
#: includes/admin/search-form.php:42
|
1210 |
msgid "Link text"
|
1211 |
msgstr "Texto do link"
|
1212 |
|
1213 |
+
#@ broken-link-checker
|
1214 |
#: includes/admin/search-form.php:45
|
1215 |
+
#: includes/admin/table-printer.php:200
|
1216 |
msgid "URL"
|
1217 |
msgstr "URL"
|
1218 |
|
1219 |
+
#@ broken-link-checker
|
1220 |
#: includes/admin/search-form.php:48
|
1221 |
+
#: includes/admin/table-printer.php:484
|
1222 |
msgid "HTTP code"
|
1223 |
msgstr "Código HTTP"
|
1224 |
|
1225 |
+
#@ broken-link-checker
|
1226 |
#: includes/admin/search-form.php:51
|
1227 |
msgid "Link status"
|
1228 |
msgstr "Estado do link"
|
1229 |
|
1230 |
+
#@ broken-link-checker
|
1231 |
#: includes/admin/search-form.php:68
|
1232 |
#: includes/admin/search-form.php:85
|
1233 |
msgid "Link type"
|
1234 |
msgstr "Tipo de link"
|
1235 |
|
1236 |
+
#@ broken-link-checker
|
1237 |
#: includes/admin/search-form.php:70
|
1238 |
msgid "Any"
|
1239 |
msgstr "Qualquer"
|
1240 |
|
1241 |
+
#@ broken-link-checker
|
1242 |
#: includes/admin/search-form.php:74
|
1243 |
msgid "Links used in"
|
1244 |
msgstr "Links utilizados em"
|
1245 |
|
1246 |
+
#@ broken-link-checker
|
1247 |
#: includes/admin/search-form.php:112
|
1248 |
msgid "Search Links"
|
1249 |
msgstr "Procurar"
|
1250 |
|
1251 |
+
#@ broken-link-checker
|
1252 |
#: includes/admin/search-form.php:113
|
1253 |
+
#: includes/admin/table-printer.php:342
|
1254 |
+
#: includes/admin/table-printer.php:624
|
1255 |
+
#: includes/admin/table-printer.php:630
|
1256 |
msgid "Cancel"
|
1257 |
msgstr "Cancelar"
|
1258 |
|
1259 |
+
#@ broken-link-checker
|
1260 |
#: includes/admin/sidebar.php:2
|
1261 |
msgid "Donate $10, $20 or $50!"
|
1262 |
+
msgstr "Doar $10, $20 ou $50!"
|
1263 |
|
1264 |
+
#@ broken-link-checker
|
1265 |
#: includes/admin/sidebar.php:5
|
1266 |
msgid "If you like this plugin, please donate to support development and maintenance!"
|
1267 |
msgstr "Se gosta deste plugin, por favor faça um donativo para financiar o seu desenvolvimento e manutenção!"
|
1268 |
|
1269 |
+
#@ broken-link-checker
|
1270 |
#: includes/admin/sidebar.php:22
|
1271 |
msgid "Return to WordPress Dashboard"
|
1272 |
msgstr "Regressar ao Painel"
|
1273 |
|
1274 |
+
#@ broken-link-checker
|
1275 |
+
#: core/core.php:330
|
1276 |
#: includes/admin/sidebar.php:50
|
1277 |
msgid "More plugins by Janis Elsts"
|
1278 |
msgstr "Mais plugins de Janis Elsts"
|
1279 |
|
1280 |
+
#@ broken-link-checker
|
1281 |
+
#: includes/admin/table-printer.php:177
|
1282 |
msgid "Compact View"
|
1283 |
msgstr "Visão compacta"
|
1284 |
|
1285 |
+
#@ broken-link-checker
|
1286 |
+
#: includes/admin/table-printer.php:178
|
1287 |
msgid "Detailed View"
|
1288 |
msgstr "Detalhes"
|
1289 |
|
1290 |
+
#@ broken-link-checker
|
1291 |
+
#: includes/admin/table-printer.php:207
|
1292 |
msgid "Source"
|
1293 |
msgstr "Fonte"
|
1294 |
|
1295 |
+
#@ broken-link-checker
|
1296 |
+
#: includes/admin/table-printer.php:213
|
1297 |
msgid "Link Text"
|
1298 |
msgstr "Texto do Link"
|
1299 |
|
1300 |
+
#@ broken-link-checker
|
1301 |
+
#: includes/admin/table-printer.php:261
|
1302 |
msgid "Bulk Actions"
|
1303 |
msgstr "Edição em Massa"
|
1304 |
|
1305 |
+
#@ broken-link-checker
|
1306 |
+
#: includes/admin/table-printer.php:262
|
1307 |
+
#: includes/admin/table-printer.php:607
|
1308 |
msgid "Edit URL"
|
1309 |
msgstr "Editar URL"
|
1310 |
|
1311 |
+
#@ broken-link-checker
|
1312 |
+
#: includes/admin/table-printer.php:263
|
1313 |
msgid "Recheck"
|
1314 |
msgstr "Voltar a verificar"
|
1315 |
|
1316 |
+
#@ broken-link-checker
|
1317 |
+
#: includes/admin/table-printer.php:264
|
1318 |
msgid "Fix redirects"
|
1319 |
msgstr "Reparar redirects"
|
1320 |
|
1321 |
+
#@ broken-link-checker
|
1322 |
+
#: includes/admin/table-printer.php:265
|
1323 |
msgid "Mark as not broken"
|
1324 |
msgstr "Funcional"
|
1325 |
|
1326 |
+
#@ broken-link-checker
|
1327 |
+
#: includes/admin/table-printer.php:269
|
1328 |
msgid "Move sources to Trash"
|
1329 |
+
msgstr "Apagar fontes"
|
1330 |
|
1331 |
+
#@ broken-link-checker
|
1332 |
+
#: includes/admin/table-printer.php:271
|
1333 |
msgid "Delete sources"
|
1334 |
msgstr "Apagar fontes"
|
1335 |
|
1336 |
+
#@ default
|
1337 |
+
#: includes/admin/table-printer.php:286
|
1338 |
msgid "«"
|
1339 |
msgstr "«"
|
1340 |
|
1341 |
+
#@ default
|
1342 |
+
#: includes/admin/table-printer.php:287
|
1343 |
msgid "»"
|
1344 |
msgstr "»"
|
1345 |
|
1346 |
+
#@ broken-link-checker
|
1347 |
+
#: includes/admin/table-printer.php:295
|
1348 |
#, php-format
|
1349 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1350 |
msgstr "Mostrando %s–%s de <span class=\"current-link-count\">%s</span>"
|
1351 |
|
1352 |
+
#@ default
|
1353 |
+
#: includes/admin/table-printer.php:318
|
1354 |
msgid "Bulk Edit URLs"
|
1355 |
msgstr "Editar URLs em massa"
|
1356 |
|
1357 |
+
#@ broken-link-checker
|
1358 |
+
#: includes/admin/table-printer.php:320
|
1359 |
msgid "Find"
|
1360 |
msgstr "Procura"
|
1361 |
|
1362 |
+
#@ broken-link-checker
|
1363 |
+
#: includes/admin/table-printer.php:324
|
1364 |
msgid "Replace with"
|
1365 |
msgstr "Substituir com"
|
1366 |
|
1367 |
+
#@ broken-link-checker
|
1368 |
+
#: includes/admin/table-printer.php:332
|
1369 |
msgid "Case sensitive"
|
1370 |
msgstr "Coincidir maiúsculas/minúsculas"
|
1371 |
|
1372 |
+
#@ broken-link-checker
|
1373 |
+
#: includes/admin/table-printer.php:336
|
1374 |
msgid "Regular expression"
|
1375 |
msgstr "Expressão regular"
|
1376 |
|
1377 |
+
#@ broken-link-checker
|
1378 |
+
#: includes/admin/table-printer.php:344
|
1379 |
msgid "Update"
|
1380 |
+
msgstr "Atualizar"
|
1381 |
|
1382 |
+
#@ broken-link-checker
|
1383 |
+
#: includes/admin/table-printer.php:469
|
1384 |
msgid "Post published on"
|
1385 |
msgstr "Post publicado em"
|
1386 |
|
1387 |
+
#@ broken-link-checker
|
1388 |
+
#: includes/admin/table-printer.php:474
|
1389 |
msgid "Link last checked"
|
1390 |
msgstr "Última verificação"
|
1391 |
|
1392 |
+
#@ broken-link-checker
|
1393 |
+
#: includes/admin/table-printer.php:478
|
1394 |
msgid "Never"
|
1395 |
msgstr "Nunca"
|
1396 |
|
1397 |
+
#@ broken-link-checker
|
1398 |
+
#: includes/admin/table-printer.php:489
|
1399 |
msgid "Response time"
|
1400 |
msgstr "Tempo de resposta"
|
1401 |
|
1402 |
+
#@ broken-link-checker
|
1403 |
+
#: includes/admin/table-printer.php:491
|
1404 |
#, php-format
|
1405 |
msgid "%2.3f seconds"
|
1406 |
msgstr "%2.3f segundos"
|
1407 |
|
1408 |
+
#@ broken-link-checker
|
1409 |
+
#: includes/admin/table-printer.php:494
|
1410 |
msgid "Final URL"
|
1411 |
msgstr "URL final"
|
1412 |
|
1413 |
+
#@ broken-link-checker
|
1414 |
+
#: includes/admin/table-printer.php:499
|
1415 |
msgid "Redirect count"
|
1416 |
msgstr "Contagem de redirects"
|
1417 |
|
1418 |
+
#@ broken-link-checker
|
1419 |
+
#: includes/admin/table-printer.php:504
|
1420 |
msgid "Instance count"
|
1421 |
msgstr "Contagem de casos"
|
1422 |
|
1423 |
+
#@ broken-link-checker
|
1424 |
+
#: includes/admin/table-printer.php:513
|
1425 |
#, php-format
|
1426 |
msgid "This link has failed %d time."
|
1427 |
msgid_plural "This link has failed %d times."
|
1428 |
msgstr[0] "Este link falhou %d vez."
|
1429 |
msgstr[1] "Este link falhou %d vezes."
|
1430 |
|
1431 |
+
#@ broken-link-checker
|
1432 |
+
#: includes/admin/table-printer.php:521
|
1433 |
#, php-format
|
1434 |
msgid "This link has been broken for %s."
|
1435 |
msgstr "Link offline durante %s."
|
1436 |
|
1437 |
+
#@ broken-link-checker
|
1438 |
+
#: includes/admin/table-printer.php:532
|
1439 |
msgid "Log"
|
1440 |
msgstr "Registro"
|
1441 |
|
1442 |
+
#@ broken-link-checker
|
1443 |
+
#: includes/admin/table-printer.php:553
|
1444 |
msgid "Show more info about this link"
|
1445 |
msgstr "Mostrar mais informação sobre este link"
|
1446 |
|
1447 |
+
#@ broken-link-checker
|
1448 |
+
#: includes/admin/table-printer.php:587
|
|
|
|
|
|
|
1449 |
msgid "Broken for"
|
1450 |
msgstr "Offline"
|
1451 |
|
1452 |
+
#@ broken-link-checker
|
1453 |
+
#: includes/admin/table-printer.php:607
|
1454 |
msgid "Edit link URL"
|
1455 |
msgstr "Editar URL do link"
|
1456 |
|
1457 |
+
#@ broken-link-checker
|
1458 |
+
#: includes/admin/table-printer.php:609
|
1459 |
msgid "Remove this link from all posts"
|
1460 |
msgstr "Eliminar este link"
|
1461 |
|
1462 |
+
#@ broken-link-checker
|
1463 |
+
#: includes/admin/table-printer.php:615
|
1464 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
1465 |
+
msgstr "Eliminar este link da lista dos links offline e marcá-lo como válido"
|
1466 |
|
1467 |
+
#@ broken-link-checker
|
1468 |
+
#: includes/admin/table-printer.php:624
|
1469 |
msgid "Cancel URL editing"
|
1470 |
msgstr "Cancelar a edição do URL"
|
1471 |
|
1472 |
+
#@ broken-link-checker
|
1473 |
+
#: includes/admin/table-printer.php:631
|
1474 |
msgid "Update URL"
|
1475 |
+
msgstr "Atualizar URL"
|
1476 |
|
1477 |
+
#@ broken-link-checker
|
1478 |
+
#: includes/admin/table-printer.php:653
|
1479 |
msgid "[An orphaned link! This is a bug.]"
|
1480 |
msgstr "[Um link orfão! Bug.]"
|
1481 |
|
1482 |
+
#@ broken-link-checker
|
1483 |
#: modules/checkers/http.php:242
|
1484 |
msgid "Server Not Found"
|
1485 |
msgstr "Servidor Não Encontrado"
|
1486 |
|
1487 |
+
#@ broken-link-checker
|
1488 |
#: modules/checkers/http.php:257
|
1489 |
msgid "Connection Failed"
|
1490 |
msgstr "Sem Ligação"
|
1491 |
|
1492 |
+
#@ broken-link-checker
|
1493 |
#: modules/checkers/http.php:292
|
1494 |
#: modules/checkers/http.php:362
|
1495 |
#, php-format
|
1496 |
msgid "HTTP code : %d"
|
1497 |
msgstr "Código HTTP : %d"
|
1498 |
|
1499 |
+
#@ broken-link-checker
|
1500 |
#: modules/checkers/http.php:294
|
1501 |
#: modules/checkers/http.php:364
|
1502 |
msgid "(No response)"
|
1503 |
msgstr "(Sem resposta)"
|
1504 |
|
1505 |
+
#@ broken-link-checker
|
1506 |
#: modules/checkers/http.php:300
|
1507 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
1508 |
msgstr "Provável que o tempo da ligação se tenha esgotado ou que o domínio não exista."
|
1509 |
|
1510 |
+
#@ broken-link-checker
|
1511 |
#: modules/checkers/http.php:371
|
1512 |
msgid "Request timed out."
|
1513 |
msgstr "Tempo de espera esgotado."
|
1514 |
|
1515 |
+
#@ broken-link-checker
|
1516 |
#: modules/checkers/http.php:389
|
1517 |
msgid "Using Snoopy"
|
1518 |
msgstr "Utilizando Snoopy"
|
1519 |
|
1520 |
+
#@ broken-link-checker
|
1521 |
#: modules/containers/blogroll.php:21
|
1522 |
msgid "Bookmark"
|
1523 |
msgstr "Favorito"
|
1524 |
|
1525 |
+
#@ broken-link-checker
|
1526 |
#: modules/containers/blogroll.php:27
|
1527 |
#: modules/containers/blogroll.php:46
|
1528 |
msgid "Edit this bookmark"
|
1529 |
msgstr "Editar este favorito"
|
1530 |
|
1531 |
+
#@ default
|
1532 |
#: modules/containers/blogroll.php:47
|
1533 |
#, php-format
|
1534 |
msgid ""
|
1538 |
"Está a ponto de apagar este link '%s'\n"
|
1539 |
" 'Cancelar' para sair, 'Aceitar' para apagar."
|
1540 |
|
1541 |
+
#@ broken-link-checker
|
1542 |
#: modules/containers/blogroll.php:97
|
1543 |
#, php-format
|
1544 |
msgid "Updating bookmark %d failed"
|
1545 |
+
msgstr "Atualização do favorito %d falhou"
|
1546 |
|
1547 |
+
#@ broken-link-checker
|
1548 |
#: modules/containers/blogroll.php:128
|
1549 |
#, php-format
|
1550 |
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
1551 |
msgstr "Não foi possível eliminar o link blogroll \"%s\" (%d)"
|
1552 |
|
1553 |
+
#@ broken-link-checker
|
1554 |
#: modules/containers/blogroll.php:299
|
1555 |
#, php-format
|
1556 |
msgid "%d blogroll link deleted."
|
1558 |
msgstr[0] "%d link blogroll apagado."
|
1559 |
msgstr[1] "%d links blogroll apagados."
|
1560 |
|
1561 |
+
#@ broken-link-checker
|
1562 |
#: modules/containers/comment.php:53
|
1563 |
#, php-format
|
1564 |
msgid "Updating comment %d failed"
|
1565 |
+
msgstr "Não foi possível atualizar o comentário %d"
|
1566 |
|
1567 |
+
#@ broken-link-checker
|
1568 |
#: modules/containers/comment.php:74
|
1569 |
#, php-format
|
1570 |
msgid "Failed to delete comment %d"
|
1571 |
msgstr "Erro ao apagar o comentário %d"
|
1572 |
|
1573 |
+
#@ broken-link-checker
|
1574 |
#: modules/containers/comment.php:95
|
1575 |
#, php-format
|
1576 |
msgid "Can't move comment %d to the trash"
|
1577 |
msgstr "Não pode mover o comentário %d para o lixo"
|
1578 |
|
1579 |
+
#@ default
|
1580 |
#: modules/containers/comment.php:160
|
1581 |
msgid "Delete Permanently"
|
1582 |
msgstr "Apagado definitivamente"
|
1583 |
|
1584 |
+
#@ broken-link-checker
|
1585 |
#: modules/containers/comment.php:166
|
1586 |
msgid "View comment"
|
1587 |
msgstr "Ver comentário"
|
1588 |
|
1589 |
+
#@ broken-link-checker
|
1590 |
#: modules/containers/comment.php:183
|
1591 |
msgid "Comment"
|
1592 |
msgstr "Comentário"
|
1593 |
|
1594 |
+
#@ broken-link-checker
|
1595 |
+
#: modules/containers/comment.php:356
|
1596 |
#, php-format
|
1597 |
msgid "%d comment has been deleted."
|
1598 |
msgid_plural "%d comments have been deleted."
|
1599 |
msgstr[0] "%d comentário foi apagado."
|
1600 |
msgstr[1] "%d comentários foram apagados."
|
1601 |
|
1602 |
+
#@ broken-link-checker
|
1603 |
+
#: modules/containers/comment.php:375
|
1604 |
#, php-format
|
1605 |
msgid "%d comment moved to the Trash."
|
1606 |
msgid_plural "%d comments moved to the Trash."
|
1607 |
msgstr[0] "%d comentário apagado."
|
1608 |
msgstr[1] "%d comentários apagados."
|
1609 |
|
1610 |
+
#@ broken-link-checker
|
1611 |
#: modules/containers/custom_field.php:84
|
1612 |
#, php-format
|
1613 |
msgid "Failed to update the meta field '%s' on %s [%d]"
|
1614 |
+
msgstr "Falhou a atualização do campo meta '%s' em %s [%d]"
|
1615 |
|
1616 |
+
#@ broken-link-checker
|
1617 |
#: modules/containers/custom_field.php:110
|
1618 |
#, php-format
|
1619 |
msgid "Failed to delete the meta field '%s' on %s [%d]"
|
1620 |
msgstr "Erro ao apagar o campo meta '%s' em %s [%d]"
|
1621 |
|
1622 |
+
#@ default
|
1623 |
#: modules/containers/custom_field.php:187
|
1624 |
msgid "Edit this post"
|
1625 |
msgstr "Editar post"
|
1626 |
|
1627 |
+
#@ broken-link-checker
|
1628 |
#: modules/containers/custom_field.php:217
|
1629 |
#, php-format
|
1630 |
msgid "View \"%s\""
|
1631 |
msgstr "Ver \"%s\""
|
1632 |
|
1633 |
+
#@ broken-link-checker
|
1634 |
#: modules/containers/dummy.php:34
|
1635 |
#: modules/containers/dummy.php:45
|
1636 |
#, php-format
|
1637 |
msgid "I don't know how to edit a '%s' [%d]."
|
1638 |
msgstr "Não é possível editar '%s' [%d]."
|
1639 |
|
1640 |
+
#@ broken-link-checker
|
1641 |
#: modules/extras/dailymotion-embed.php:23
|
1642 |
msgid "DailyMotion Video"
|
1643 |
msgstr "Vídeo DailyMotion"
|
1644 |
|
1645 |
+
#@ broken-link-checker
|
1646 |
#: modules/extras/dailymotion-embed.php:24
|
1647 |
msgid "Embedded DailyMotion video"
|
1648 |
msgstr "Vídeo DailyMotion embutido"
|
1649 |
|
1650 |
+
#@ broken-link-checker
|
1651 |
+
#: modules/extras/embed-parser-base.php:182
|
1652 |
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
1653 |
msgstr "Vídeos embutidos não podem ser editados utilizando o Links offline. Por favor, editar ou substituir manualmente o vídeo em questão."
|
1654 |
|
1655 |
+
#@ broken-link-checker
|
1656 |
#: modules/extras/mediafire.php:91
|
1657 |
#: modules/extras/megaupload.php:109
|
1658 |
#: modules/extras/rapidshare.php:142
|
1659 |
msgid "Not Found"
|
1660 |
msgstr "Não Encontrado"
|
1661 |
|
1662 |
+
#@ broken-link-checker
|
1663 |
#: modules/extras/megaupload.php:116
|
1664 |
msgid "File Temporarily Unavailable"
|
1665 |
msgstr "Ficheiro Temporariamente Indisponível"
|
1666 |
|
1667 |
+
#@ broken-link-checker
|
1668 |
#: modules/extras/megaupload.php:122
|
1669 |
msgid "API Error"
|
1670 |
msgstr "Erro API"
|
1671 |
|
1672 |
+
#@ broken-link-checker
|
1673 |
#: modules/extras/rapidshare.php:161
|
1674 |
msgid "RS Server Down"
|
1675 |
msgstr "Servidor RS Desligado"
|
1676 |
|
1677 |
+
#@ broken-link-checker
|
1678 |
#: modules/extras/rapidshare.php:168
|
1679 |
msgid "File Blocked"
|
1680 |
msgstr "Ficheiro Bloqueado"
|
1681 |
|
1682 |
+
#@ broken-link-checker
|
1683 |
#: modules/extras/rapidshare.php:175
|
1684 |
msgid "File Locked"
|
1685 |
msgstr "Ficheiro Bloqueado"
|
1686 |
|
1687 |
+
#@ broken-link-checker
|
1688 |
#: modules/extras/rapidshare.php:186
|
1689 |
#, php-format
|
1690 |
msgid "RapidShare : %s"
|
1691 |
msgstr "Rapidshare : %s"
|
1692 |
|
1693 |
+
#@ broken-link-checker
|
1694 |
#: modules/extras/rapidshare.php:192
|
1695 |
#, php-format
|
1696 |
msgid "RapidShare API error: %s"
|
1697 |
msgstr "Rapidshare erro API: %s"
|
1698 |
|
1699 |
+
#@ broken-link-checker
|
1700 |
#: modules/extras/vimeo-embed.php:24
|
1701 |
msgid "Vimeo Video"
|
1702 |
msgstr "Vídeo Vimeo"
|
1703 |
|
1704 |
+
#@ broken-link-checker
|
1705 |
#: modules/extras/vimeo-embed.php:25
|
1706 |
msgid "Embedded Vimeo video"
|
1707 |
msgstr "Vídeo Vimeo embutido"
|
1708 |
|
1709 |
+
#@ broken-link-checker
|
1710 |
+
#: modules/extras/youtube-embed.php:24
|
1711 |
+
#: modules/extras/youtube-iframe.php:25
|
1712 |
msgid "YouTube Video"
|
1713 |
msgstr "Vídeo YouTube"
|
1714 |
|
1715 |
+
#@ broken-link-checker
|
1716 |
+
#: modules/extras/youtube-embed.php:25
|
1717 |
+
#: modules/extras/youtube-iframe.php:26
|
1718 |
msgid "Embedded YouTube video"
|
1719 |
msgstr "Vídeo YouTube embutido"
|
1720 |
|
1721 |
+
#@ broken-link-checker
|
1722 |
+
#: modules/extras/youtube.php:73
|
1723 |
+
#: modules/extras/youtube.php:76
|
1724 |
msgid "Video Not Found"
|
1725 |
msgstr "Vídeo Não Encontrado"
|
1726 |
|
1727 |
+
#@ broken-link-checker
|
1728 |
+
#: modules/extras/youtube.php:84
|
1729 |
msgid "Video Removed"
|
1730 |
msgstr "Vídeo Apagado"
|
1731 |
|
1732 |
+
#@ broken-link-checker
|
1733 |
+
#: modules/extras/youtube.php:92
|
1734 |
msgid "Invalid Video ID"
|
1735 |
msgstr "Vídeo ID Inválido"
|
1736 |
|
1737 |
+
#@ broken-link-checker
|
1738 |
+
#: modules/extras/youtube.php:104
|
1739 |
msgid "Video OK"
|
1740 |
+
msgstr "Vídeo OK"
|
1741 |
|
1742 |
+
#@ broken-link-checker
|
1743 |
+
#: modules/extras/youtube.php:118
|
1744 |
#, php-format
|
1745 |
msgid "Video status : %s%s"
|
1746 |
msgstr "Vídeo status : %s%s"
|
1747 |
|
1748 |
+
#@ broken-link-checker
|
1749 |
+
#: modules/extras/youtube.php:137
|
1750 |
msgid "Video Restricted"
|
1751 |
+
msgstr "Vídeo Restrito"
|
1752 |
|
1753 |
+
#@ default
|
1754 |
+
#: modules/extras/youtube.php:154
|
1755 |
msgid "Unknown YouTube API response received."
|
1756 |
msgstr "Resposta API YouTube desconhecida."
|
1757 |
|
1758 |
+
#@ broken-link-checker
|
1759 |
#: modules/parsers/image.php:159
|
1760 |
msgid "Image"
|
1761 |
msgstr "Imagem"
|
1762 |
|
1763 |
+
#@ broken-link-checker
|
1764 |
#: modules/parsers/metadata.php:117
|
1765 |
msgid "Custom field"
|
1766 |
msgstr "Campo personalizado"
|
1767 |
|
1768 |
+
#@ broken-link-checker
|
1769 |
+
#: core/core.php:683
|
1770 |
+
msgid "Send authors e-mail notifications about broken links in their posts"
|
1771 |
+
msgstr "Enviar aos autores notificações por e-mail sobre links offline encontrados nos seus artigos"
|
1772 |
+
|
1773 |
+
#@ broken-link-checker
|
1774 |
+
#: core/core.php:2334
|
1775 |
+
msgctxt "current load"
|
1776 |
+
msgid "Unknown"
|
1777 |
+
msgstr "Desconhecido"
|
1778 |
+
|
1779 |
+
#@ broken-link-checker
|
1780 |
+
#: core/core.php:2937
|
1781 |
+
#, php-format
|
1782 |
+
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
1783 |
+
msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
|
1784 |
+
msgstr[0] "%d novo link offline encontrado nos seus artigos."
|
1785 |
+
msgstr[1] "%d novos links offline encontrados nos seus artigos."
|
1786 |
+
|
1787 |
+
#@ broken-link-checker
|
1788 |
+
#: includes/admin/table-printer.php:571
|
1789 |
+
msgctxt "checked how long ago"
|
1790 |
+
msgid "Checked"
|
1791 |
+
msgstr "Verificado"
|
1792 |
+
|
1793 |
+
#@ broken-link-checker
|
1794 |
+
#: includes/extra-strings.php:2
|
1795 |
+
msgctxt "module name"
|
1796 |
+
msgid "Basic HTTP"
|
1797 |
+
msgstr "HTTP Básico"
|
1798 |
+
|
1799 |
+
#@ broken-link-checker
|
1800 |
+
#: includes/extra-strings.php:3
|
1801 |
+
msgctxt "module name"
|
1802 |
+
msgid "Blogroll items"
|
1803 |
+
msgstr "Itens blogroll"
|
1804 |
+
|
1805 |
+
#@ broken-link-checker
|
1806 |
+
#: includes/extra-strings.php:4
|
1807 |
+
msgctxt "module name"
|
1808 |
+
msgid "Comments"
|
1809 |
+
msgstr "Comentários"
|
1810 |
+
|
1811 |
+
#@ broken-link-checker
|
1812 |
+
#: includes/extra-strings.php:5
|
1813 |
+
msgctxt "module name"
|
1814 |
+
msgid "Custom fields"
|
1815 |
+
msgstr "Campos personalizados"
|
1816 |
+
|
1817 |
+
#@ broken-link-checker
|
1818 |
+
#: includes/extra-strings.php:6
|
1819 |
+
msgctxt "module name"
|
1820 |
+
msgid "Embedded DailyMotion videos"
|
1821 |
+
msgstr "Vídeos DailyMotion embutido"
|
1822 |
+
|
1823 |
+
#@ broken-link-checker
|
1824 |
+
#: includes/extra-strings.php:7
|
1825 |
+
msgctxt "module name"
|
1826 |
+
msgid "Embedded Vimeo videos"
|
1827 |
+
msgstr "Vídeo Vimeo embutido"
|
1828 |
+
|
1829 |
+
#@ broken-link-checker
|
1830 |
+
#: includes/extra-strings.php:8
|
1831 |
+
msgctxt "module name"
|
1832 |
+
msgid "Embedded YouTube videos"
|
1833 |
+
msgstr "Vídeos YouTube embutido"
|
1834 |
+
|
1835 |
+
#@ broken-link-checker
|
1836 |
+
#: includes/extra-strings.php:9
|
1837 |
+
msgctxt "module name"
|
1838 |
+
msgid "Embedded YouTube videos (old embed code)"
|
1839 |
+
msgstr "Vídeos YouTube embutido (código antigo)"
|
1840 |
+
|
1841 |
+
#@ broken-link-checker
|
1842 |
+
#: includes/extra-strings.php:10
|
1843 |
+
msgctxt "module name"
|
1844 |
+
msgid "HTML images"
|
1845 |
+
msgstr "Imagens HTML"
|
1846 |
+
|
1847 |
+
#@ broken-link-checker
|
1848 |
+
#: includes/extra-strings.php:11
|
1849 |
+
msgctxt "module name"
|
1850 |
+
msgid "HTML links"
|
1851 |
+
msgstr "HTML links"
|
1852 |
+
|
1853 |
+
#@ broken-link-checker
|
1854 |
+
#: includes/extra-strings.php:12
|
1855 |
+
msgctxt "module name"
|
1856 |
+
msgid "MediaFire API"
|
1857 |
+
msgstr "MediaFire API"
|
1858 |
+
|
1859 |
+
#@ broken-link-checker
|
1860 |
+
#: includes/extra-strings.php:13
|
1861 |
+
msgctxt "module name"
|
1862 |
+
msgid "MegaUpload API"
|
1863 |
+
msgstr "MegaUpload API"
|
1864 |
+
|
1865 |
+
#@ broken-link-checker
|
1866 |
+
#: includes/extra-strings.php:14
|
1867 |
+
msgctxt "module name"
|
1868 |
+
msgid "Plaintext URLs"
|
1869 |
+
msgstr "Texto URLs"
|
1870 |
+
|
1871 |
+
#@ broken-link-checker
|
1872 |
+
#: includes/extra-strings.php:15
|
1873 |
+
msgctxt "module name"
|
1874 |
+
msgid "RapidShare API"
|
1875 |
+
msgstr "RapidShare API"
|
1876 |
+
|
1877 |
+
#@ broken-link-checker
|
1878 |
+
#: includes/extra-strings.php:16
|
1879 |
+
msgctxt "module name"
|
1880 |
+
msgid "YouTube API"
|
1881 |
+
msgstr "YouTube API"
|
1882 |
+
|
1883 |
+
#@ broken-link-checker
|
1884 |
+
#: includes/extra-strings.php:17
|
1885 |
+
msgctxt "module name"
|
1886 |
+
msgid "Posts"
|
1887 |
+
msgstr "Artigos"
|
1888 |
+
|
1889 |
+
#@ broken-link-checker
|
1890 |
+
#: includes/extra-strings.php:18
|
1891 |
+
msgctxt "module name"
|
1892 |
+
msgid "Pages"
|
1893 |
+
msgstr "Páginas"
|
1894 |
+
|
1895 |
+
#@ broken-link-checker
|
1896 |
+
#: includes/links.php:831
|
1897 |
+
msgctxt "link status"
|
1898 |
+
msgid "Unknown"
|
1899 |
+
msgstr "Desconhecido"
|
1900 |
+
|
1901 |
+
#@ broken-link-checker
|
1902 |
+
#: includes/links.php:875
|
1903 |
+
#: modules/extras/megaupload.php:101
|
1904 |
+
#: modules/extras/rapidshare.php:148
|
1905 |
+
#: modules/extras/rapidshare.php:154
|
1906 |
+
#: modules/extras/rapidshare.php:181
|
1907 |
+
msgctxt "link status"
|
1908 |
+
msgid "OK"
|
1909 |
+
msgstr "OK"
|
1910 |
+
|
1911 |
+
#@ broken-link-checker
|
1912 |
+
#: includes/module-manager.php:123
|
1913 |
+
#: includes/module-manager.php:140
|
1914 |
+
msgctxt "module name"
|
1915 |
+
msgid "Name"
|
1916 |
+
msgstr "Nome"
|
1917 |
+
|
1918 |
+
#@ broken-link-checker
|
1919 |
+
#: includes/utility-class.php:244
|
1920 |
+
#, php-format
|
1921 |
+
msgid "%d second"
|
1922 |
+
msgid_plural "%d seconds"
|
1923 |
+
msgstr[0] "%d segundo"
|
1924 |
+
msgstr[1] "%d segundos"
|
1925 |
+
|
1926 |
+
#@ broken-link-checker
|
1927 |
+
#: includes/utility-class.php:245
|
1928 |
+
#, php-format
|
1929 |
+
msgid "%d second ago"
|
1930 |
+
msgid_plural "%d seconds ago"
|
1931 |
+
msgstr[0] "%d segundo atrás"
|
1932 |
+
msgstr[1] "%d segundos atrás"
|
1933 |
+
|
1934 |
+
#@ broken-link-checker
|
1935 |
+
#: includes/utility-class.php:248
|
1936 |
+
#, php-format
|
1937 |
+
msgid "%d minute"
|
1938 |
+
msgid_plural "%d minutes"
|
1939 |
+
msgstr[0] "%d minuto"
|
1940 |
+
msgstr[1] "%d minutos"
|
1941 |
+
|
1942 |
+
#@ broken-link-checker
|
1943 |
+
#: includes/utility-class.php:249
|
1944 |
+
#, php-format
|
1945 |
+
msgid "%d minute ago"
|
1946 |
+
msgid_plural "%d minutes ago"
|
1947 |
+
msgstr[0] "%d minuto atrás"
|
1948 |
+
msgstr[1] "%d minutos atrás"
|
1949 |
+
|
1950 |
+
#@ broken-link-checker
|
1951 |
+
#: includes/utility-class.php:252
|
1952 |
+
#, php-format
|
1953 |
+
msgid "%d hour"
|
1954 |
+
msgid_plural "%d hours"
|
1955 |
+
msgstr[0] "%d hora"
|
1956 |
+
msgstr[1] "%d horas"
|
1957 |
+
|
1958 |
+
#@ broken-link-checker
|
1959 |
+
#: includes/utility-class.php:253
|
1960 |
+
#, php-format
|
1961 |
+
msgid "%d hour ago"
|
1962 |
+
msgid_plural "%d hours ago"
|
1963 |
+
msgstr[0] "%d hora atrás"
|
1964 |
+
msgstr[1] "%d horas atrás"
|
1965 |
+
|
1966 |
+
#@ broken-link-checker
|
1967 |
+
#: includes/utility-class.php:256
|
1968 |
+
#, php-format
|
1969 |
+
msgid "%d day"
|
1970 |
+
msgid_plural "%d days"
|
1971 |
+
msgstr[0] "%d dia"
|
1972 |
+
msgstr[1] "%d dias"
|
1973 |
+
|
1974 |
+
#@ broken-link-checker
|
1975 |
+
#: includes/utility-class.php:257
|
1976 |
+
#, php-format
|
1977 |
+
msgid "%d day ago"
|
1978 |
+
msgid_plural "%d days ago"
|
1979 |
+
msgstr[0] "%d dia atrás"
|
1980 |
+
msgstr[1] "%d dias atrás"
|
1981 |
+
|
1982 |
+
#@ broken-link-checker
|
1983 |
+
#: includes/utility-class.php:260
|
1984 |
+
#, php-format
|
1985 |
+
msgid "%d month"
|
1986 |
+
msgid_plural "%d months"
|
1987 |
+
msgstr[0] "%d mês"
|
1988 |
+
msgstr[1] "%d meses"
|
1989 |
+
|
1990 |
+
#@ broken-link-checker
|
1991 |
+
#: includes/utility-class.php:261
|
1992 |
+
#, php-format
|
1993 |
+
msgid "%d month ago"
|
1994 |
+
msgid_plural "%d months ago"
|
1995 |
+
msgstr[0] "%d mês atrás"
|
1996 |
+
msgstr[1] "%d meses atrás"
|
1997 |
+
|
1998 |
+
#@ default
|
1999 |
+
#: modules/containers/comment.php:153
|
2000 |
+
#: modules/containers/comment.php:195
|
2001 |
+
msgid "Edit comment"
|
2002 |
+
msgstr "Editar comentário"
|
2003 |
+
|
2004 |
+
#@ default
|
2005 |
+
#: modules/containers/comment.php:162
|
2006 |
+
msgid "Move this comment to the trash"
|
2007 |
+
msgstr "Apagar comentário"
|
2008 |
+
|
2009 |
+
#@ default
|
2010 |
+
#: modules/containers/comment.php:162
|
2011 |
+
msgctxt "verb"
|
2012 |
+
msgid "Trash"
|
2013 |
+
msgstr "Lixo"
|
2014 |
+
|
languages/broken-link-checker-tr_TR.mo
ADDED
Binary file
|
languages/broken-link-checker-tr_TR.po
ADDED
@@ -0,0 +1,1902 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Broken Link Checker | V1.3.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
5 |
+
"POT-Creation-Date: 2011-08-25 16:05:37+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-01-21 15:30+0200\n"
|
7 |
+
"Last-Translator: Murat DURGUN <muratdur@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: German\n"
|
14 |
+
"X-Poedit-Country: SWITZERLAND\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
+
"X-Textdomain-Support: yes\n"
|
18 |
+
"X-Poedit-Basepath: .\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
|
21 |
+
# @ broken-link-checker
|
22 |
+
#: modules/containers/dummy.php:34
|
23 |
+
#: modules/containers/dummy.php:45
|
24 |
+
msgid "I don't know how to edit a '%s' [%d]."
|
25 |
+
msgstr "Düzenlemek için ne yapmam gerektiğini bilmiyorum. '%s' [%d]"
|
26 |
+
|
27 |
+
# @ broken-link-checker
|
28 |
+
#: modules/containers/custom_field.php:84
|
29 |
+
msgid "Failed to update the meta field '%s' on %s [%d]"
|
30 |
+
msgstr "Meta alanında '%s' güncelleştirilemedi. %s [%d] "
|
31 |
+
|
32 |
+
# @ broken-link-checker
|
33 |
+
#: modules/containers/custom_field.php:110
|
34 |
+
msgid "Failed to delete the meta field '%s' on %s [%d]"
|
35 |
+
msgstr "Meta alanında '%s' silinemedi. %s [%d]"
|
36 |
+
|
37 |
+
# @ default
|
38 |
+
#: modules/containers/custom_field.php:187
|
39 |
+
msgid "Edit this post"
|
40 |
+
msgstr "Bu yazıyı düzenle"
|
41 |
+
|
42 |
+
# @ default
|
43 |
+
#: modules/containers/custom_field.php:197
|
44 |
+
#: includes/any-post.php:455
|
45 |
+
msgid "Edit this item"
|
46 |
+
msgstr "Bu öğeyi düzenle"
|
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 "Düzenle"
|
55 |
+
|
56 |
+
# @ default
|
57 |
+
#: modules/containers/custom_field.php:203
|
58 |
+
#: includes/any-post.php:405
|
59 |
+
msgid "Move this item to the Trash"
|
60 |
+
msgstr "Bu öğeyi çöp kutusuna taşıyın."
|
61 |
+
|
62 |
+
# @ default
|
63 |
+
#: modules/containers/custom_field.php:205
|
64 |
+
#: includes/any-post.php:407
|
65 |
+
msgid "Trash"
|
66 |
+
msgstr "Çöp"
|
67 |
+
|
68 |
+
# @ default
|
69 |
+
#: modules/containers/custom_field.php:210
|
70 |
+
#: includes/any-post.php:412
|
71 |
+
msgid "Delete this item permanently"
|
72 |
+
msgstr "Öğeyi kalıcı olarak sil"
|
73 |
+
|
74 |
+
# @ default
|
75 |
+
#: modules/containers/custom_field.php:212
|
76 |
+
#: modules/containers/blogroll.php:47
|
77 |
+
#: includes/any-post.php:414
|
78 |
+
msgid "Delete"
|
79 |
+
msgstr "Sil"
|
80 |
+
|
81 |
+
# @ broken-link-checker
|
82 |
+
#: modules/containers/custom_field.php:217
|
83 |
+
msgid "View \"%s\""
|
84 |
+
msgstr "Görüntüle \"%s\""
|
85 |
+
|
86 |
+
# @ default
|
87 |
+
#: modules/containers/custom_field.php:217
|
88 |
+
#: modules/containers/comment.php:166
|
89 |
+
#: includes/any-post.php:436
|
90 |
+
msgid "View"
|
91 |
+
msgstr "Görüntüle"
|
92 |
+
|
93 |
+
# @ broken-link-checker
|
94 |
+
#: modules/containers/custom_field.php:284
|
95 |
+
#: includes/any-post.php:564
|
96 |
+
msgid "Failed to delete post \"%s\" (%d)"
|
97 |
+
msgstr "Makalenin silinmesi \"%s\" (%d) başarısız oldu."
|
98 |
+
|
99 |
+
# @ broken-link-checker
|
100 |
+
#: modules/containers/custom_field.php:303
|
101 |
+
#: includes/any-post.php:583
|
102 |
+
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
103 |
+
msgstr "Mesaj çöp kutusuna taşınamaz \"%s\" (%d) çünkü çöp kutusu devre dışı bırakılmıştır."
|
104 |
+
|
105 |
+
# @ broken-link-checker
|
106 |
+
#: modules/containers/custom_field.php:322
|
107 |
+
#: includes/any-post.php:603
|
108 |
+
msgid "Failed to move post \"%s\" (%d) to the trash"
|
109 |
+
msgstr "Bu yazı \"%s\" (%d) çöp kutusuna taşınamadı."
|
110 |
+
|
111 |
+
# @ broken-link-checker
|
112 |
+
#: modules/containers/blogroll.php:21
|
113 |
+
msgid "Bookmark"
|
114 |
+
msgstr "Yer imleri"
|
115 |
+
|
116 |
+
# @ broken-link-checker
|
117 |
+
#: modules/containers/blogroll.php:27
|
118 |
+
#: modules/containers/blogroll.php:46
|
119 |
+
msgid "Edit this bookmark"
|
120 |
+
msgstr "Yer imleri düzenle"
|
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 |
+
"Bu bağlantıyı '%s'\n"
|
129 |
+
" silmek üzeresiniz silmek için 'Tamam', iptal etmek için 'İptal'"
|
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 "Güncelleme malesef bulunamadı."
|
137 |
+
|
138 |
+
# @ broken-link-checker
|
139 |
+
#: modules/containers/blogroll.php:97
|
140 |
+
msgid "Updating bookmark %d failed"
|
141 |
+
msgstr "Yer imleri %d güncellenemedi."
|
142 |
+
|
143 |
+
# @ broken-link-checker
|
144 |
+
#: modules/containers/blogroll.php:128
|
145 |
+
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
146 |
+
msgstr "Blogroll bağlantısı silinmesi \"%s\" (%d) başarısız oldu."
|
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 bağlantısı silindi."
|
153 |
+
msgstr[1] "%d Blogroll bağlantılar silindi."
|
154 |
+
|
155 |
+
# @ broken-link-checker
|
156 |
+
#: modules/containers/comment.php:53
|
157 |
+
msgid "Updating comment %d failed"
|
158 |
+
msgstr "Yorum güncellenmesi %d yapılamadı."
|
159 |
+
|
160 |
+
# @ broken-link-checker
|
161 |
+
#: modules/containers/comment.php:74
|
162 |
+
msgid "Failed to delete comment %d"
|
163 |
+
msgstr "Yorum silinemedi. %d"
|
164 |
+
|
165 |
+
# @ broken-link-checker
|
166 |
+
#: modules/containers/comment.php:95
|
167 |
+
msgid "Can't move comment %d to the trash"
|
168 |
+
msgstr "Yorumlar %d çöp kutusuna taşınamadı."
|
169 |
+
|
170 |
+
# @ default
|
171 |
+
#: modules/containers/comment.php:153
|
172 |
+
#: modules/containers/comment.php:195
|
173 |
+
msgid "Edit comment"
|
174 |
+
msgstr "Yorumu düzenle"
|
175 |
+
|
176 |
+
# @ default
|
177 |
+
#: modules/containers/comment.php:160
|
178 |
+
msgid "Delete Permanently"
|
179 |
+
msgstr "Kalıcı olarak sil"
|
180 |
+
|
181 |
+
# @ default
|
182 |
+
#: modules/containers/comment.php:162
|
183 |
+
msgid "Move this comment to the trash"
|
184 |
+
msgstr "%d Bu Yorumu çöp kutusuna taşı"
|
185 |
+
|
186 |
+
# @ default
|
187 |
+
#: modules/containers/comment.php:162
|
188 |
+
msgctxt "verb"
|
189 |
+
msgid "Trash"
|
190 |
+
msgstr "Çöp kutusu"
|
191 |
+
|
192 |
+
# @ broken-link-checker
|
193 |
+
#: modules/containers/comment.php:166
|
194 |
+
msgid "View comment"
|
195 |
+
msgstr "Yorumu görüntüle"
|
196 |
+
|
197 |
+
# @ broken-link-checker
|
198 |
+
#: modules/containers/comment.php:183
|
199 |
+
msgid "Comment"
|
200 |
+
msgstr "Yorum"
|
201 |
+
|
202 |
+
# @ broken-link-checker
|
203 |
+
#: modules/containers/comment.php:371
|
204 |
+
msgid "%d comment has been deleted."
|
205 |
+
msgid_plural "%d comments have been deleted."
|
206 |
+
msgstr[0] "%d yorum silindi."
|
207 |
+
msgstr[1] "%d yorumlar silindi."
|
208 |
+
|
209 |
+
# @ broken-link-checker
|
210 |
+
#: modules/containers/comment.php:390
|
211 |
+
msgid "%d comment moved to the Trash."
|
212 |
+
msgid_plural "%d comments moved to the Trash."
|
213 |
+
msgstr[0] "%d Yorum çöp kutusuna taşındı."
|
214 |
+
msgstr[1] "%d Yorumlar çöp kutusuna taşındı."
|
215 |
+
|
216 |
+
# @ broken-link-checker
|
217 |
+
#: modules/checkers/http.php:242
|
218 |
+
msgid "Server Not Found"
|
219 |
+
msgstr "Sunucu bulunamadı."
|
220 |
+
|
221 |
+
# @ broken-link-checker
|
222 |
+
#: modules/checkers/http.php:257
|
223 |
+
msgid "Connection Failed"
|
224 |
+
msgstr "Bağlantı başarısız."
|
225 |
+
|
226 |
+
# @ link status
|
227 |
+
# @ broken-link-checker
|
228 |
+
#: modules/checkers/http.php:263
|
229 |
+
#: modules/extras/mediafire.php:96
|
230 |
+
#: includes/links.php:845
|
231 |
+
msgid "Unknown Error"
|
232 |
+
msgstr "Bilinmeyen hata"
|
233 |
+
|
234 |
+
# @ broken-link-checker
|
235 |
+
#: modules/checkers/http.php:292
|
236 |
+
#: modules/checkers/http.php:362
|
237 |
+
msgid "HTTP code : %d"
|
238 |
+
msgstr "HTTP kodu: %d"
|
239 |
+
|
240 |
+
# @ broken-link-checker
|
241 |
+
#: modules/checkers/http.php:294
|
242 |
+
#: modules/checkers/http.php:364
|
243 |
+
msgid "(No response)"
|
244 |
+
msgstr "(Yanıt yok)"
|
245 |
+
|
246 |
+
# @ broken-link-checker
|
247 |
+
#: modules/checkers/http.php:300
|
248 |
+
msgid "Most likely the connection timed out or the domain doesn't exist."
|
249 |
+
msgstr "Muhtemelen bağlantı zaman aşımına veya etki alanı yok."
|
250 |
+
|
251 |
+
# @ broken-link-checker
|
252 |
+
#: modules/checkers/http.php:371
|
253 |
+
msgid "Request timed out."
|
254 |
+
msgstr "İstek zaman aşımına uğradı."
|
255 |
+
|
256 |
+
# @ broken-link-checker
|
257 |
+
#: modules/checkers/http.php:389
|
258 |
+
msgid "Using Snoopy"
|
259 |
+
msgstr "Snoopy kullanır"
|
260 |
+
|
261 |
+
# @ broken-link-checker
|
262 |
+
#: modules/parsers/image.php:159
|
263 |
+
msgid "Image"
|
264 |
+
msgstr "Fotoğraf"
|
265 |
+
|
266 |
+
# @ broken-link-checker
|
267 |
+
#: modules/parsers/metadata.php:117
|
268 |
+
msgid "Custom field"
|
269 |
+
msgstr "Özel Alan"
|
270 |
+
|
271 |
+
# @ broken-link-checker
|
272 |
+
#: modules/extras/youtube-iframe.php:25
|
273 |
+
#: modules/extras/youtube-embed.php:24
|
274 |
+
msgid "YouTube Video"
|
275 |
+
msgstr "YouTube Video"
|
276 |
+
|
277 |
+
# @ broken-link-checker
|
278 |
+
#: modules/extras/youtube-iframe.php:26
|
279 |
+
#: modules/extras/youtube-embed.php:25
|
280 |
+
msgid "Embedded YouTube video"
|
281 |
+
msgstr "Gömülü YouTube videosu"
|
282 |
+
|
283 |
+
# @ broken-link-checker
|
284 |
+
#: modules/extras/dailymotion-embed.php:23
|
285 |
+
msgid "DailyMotion Video"
|
286 |
+
msgstr "DailyMotion Video"
|
287 |
+
|
288 |
+
# @ broken-link-checker
|
289 |
+
#: modules/extras/dailymotion-embed.php:24
|
290 |
+
msgid "Embedded DailyMotion video"
|
291 |
+
msgstr "Gömülü DailyMotion Videosu"
|
292 |
+
|
293 |
+
# @ broken-link-checker
|
294 |
+
#: modules/extras/rapidshare.php:142
|
295 |
+
#: modules/extras/mediafire.php:91
|
296 |
+
#: modules/extras/megaupload.php:109
|
297 |
+
msgid "Not Found"
|
298 |
+
msgstr "Bulunamadı"
|
299 |
+
|
300 |
+
# @ broken-link-checker
|
301 |
+
#: modules/extras/rapidshare.php:148
|
302 |
+
#: modules/extras/rapidshare.php:154
|
303 |
+
#: modules/extras/rapidshare.php:181
|
304 |
+
#: modules/extras/megaupload.php:101
|
305 |
+
#: includes/links.php:875
|
306 |
+
msgctxt "link status"
|
307 |
+
msgid "OK"
|
308 |
+
msgstr "TAMAM"
|
309 |
+
|
310 |
+
# @ broken-link-checker
|
311 |
+
#: modules/extras/rapidshare.php:161
|
312 |
+
msgid "RS Server Down"
|
313 |
+
msgstr "RS sunucu düşük"
|
314 |
+
|
315 |
+
# @ broken-link-checker
|
316 |
+
#: modules/extras/rapidshare.php:168
|
317 |
+
msgid "File Blocked"
|
318 |
+
msgstr "Dosya engellendi"
|
319 |
+
|
320 |
+
#: modules/extras/rapidshare.php:175
|
321 |
+
msgid "File Locked"
|
322 |
+
msgstr "Dosya kilitli"
|
323 |
+
|
324 |
+
# @ broken-link-checker
|
325 |
+
#: modules/extras/rapidshare.php:186
|
326 |
+
msgid "RapidShare : %s"
|
327 |
+
msgstr "RapidShare: %s"
|
328 |
+
|
329 |
+
# @ broken-link-checker
|
330 |
+
#: modules/extras/rapidshare.php:192
|
331 |
+
msgid "RapidShare API error: %s"
|
332 |
+
msgstr "RapidShare API hata: %s"
|
333 |
+
|
334 |
+
#: modules/extras/embed-parser-base.php:182
|
335 |
+
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
336 |
+
msgstr "Bu gömülü video çalışmadığından Kırık Bağlantı Bildirici tarafından düzenlenemez. Lütfen söz konusu bu video düzentin veya değiştirin."
|
337 |
+
|
338 |
+
# @ broken-link-checker
|
339 |
+
#: modules/extras/vimeo-embed.php:24
|
340 |
+
msgid "Vimeo Video"
|
341 |
+
msgstr "Vimeo Video"
|
342 |
+
|
343 |
+
# @ broken-link-checker
|
344 |
+
#: modules/extras/vimeo-embed.php:25
|
345 |
+
msgid "Embedded Vimeo video"
|
346 |
+
msgstr "Gömülü Vimeo Videosu"
|
347 |
+
|
348 |
+
# @ broken-link-checker
|
349 |
+
#: modules/extras/youtube.php:63
|
350 |
+
#: modules/extras/youtube.php:66
|
351 |
+
msgid "Video Not Found"
|
352 |
+
msgstr "Video bulunamadı."
|
353 |
+
|
354 |
+
#: modules/extras/youtube.php:74
|
355 |
+
msgid "Video Removed"
|
356 |
+
msgstr "Video kaldırıldı."
|
357 |
+
|
358 |
+
#: modules/extras/youtube.php:82
|
359 |
+
msgid "Invalid Video ID"
|
360 |
+
msgstr "Geçersiz video kimliği"
|
361 |
+
|
362 |
+
#: modules/extras/youtube.php:94
|
363 |
+
msgid "Video OK"
|
364 |
+
msgstr "Video TAMAM"
|
365 |
+
|
366 |
+
# @ broken-link-checker
|
367 |
+
#: modules/extras/youtube.php:95
|
368 |
+
#: modules/extras/youtube.php:122
|
369 |
+
msgid "OK"
|
370 |
+
msgstr "TAMAM"
|
371 |
+
|
372 |
+
#: modules/extras/youtube.php:108
|
373 |
+
msgid "Video status : %s%s"
|
374 |
+
msgstr "Video durumu : %s%s"
|
375 |
+
|
376 |
+
#: modules/extras/youtube.php:127
|
377 |
+
msgid "Video Restricted"
|
378 |
+
msgstr "Kısıtlı video"
|
379 |
+
|
380 |
+
#: modules/extras/youtube.php:144
|
381 |
+
msgid "Unknown YouTube API response received."
|
382 |
+
msgstr "Bilinmeyen YouTube API yanıtı aldı."
|
383 |
+
|
384 |
+
#: modules/extras/megaupload.php:116
|
385 |
+
msgid "File Temporarily Unavailable"
|
386 |
+
msgstr "Geçici dosya bulunamadı."
|
387 |
+
|
388 |
+
#: modules/extras/megaupload.php:122
|
389 |
+
msgid "API Error"
|
390 |
+
msgstr "API Hatası"
|
391 |
+
|
392 |
+
# @ default
|
393 |
+
#: core/init.php:230
|
394 |
+
msgid "Once Weekly"
|
395 |
+
msgstr "Haftada bir"
|
396 |
+
|
397 |
+
# @ default
|
398 |
+
#: core/init.php:236
|
399 |
+
msgid "Twice a Month"
|
400 |
+
msgstr "Ayda iki defa"
|
401 |
+
|
402 |
+
# @ broken-link-checker
|
403 |
+
#: core/init.php:305
|
404 |
+
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
405 |
+
msgstr "Kırık Bağlantı Bildirici yükleme başarısız oldu. Eklentiyi devre dışı bırakın ve sonra yeniden etkinleştirin."
|
406 |
+
|
407 |
+
# @ broken-link-checker
|
408 |
+
#: core/core.php:146
|
409 |
+
#: includes/admin/links-page-js.php:37
|
410 |
+
msgid "Loading..."
|
411 |
+
msgstr "Yükleniyor..."
|
412 |
+
|
413 |
+
# @ broken-link-checker
|
414 |
+
#: core/core.php:170
|
415 |
+
#: includes/admin/options-page-js.php:18
|
416 |
+
msgid "[ Network error ]"
|
417 |
+
msgstr "[ Ağ Hatası ]"
|
418 |
+
|
419 |
+
# @ broken-link-checker
|
420 |
+
#: core/core.php:195
|
421 |
+
msgid "Automatically expand the widget if broken links have been detected"
|
422 |
+
msgstr "Otomatik olarak Widget üzerinde kırık adres tespit edildi."
|
423 |
+
|
424 |
+
# @ broken-link-checker
|
425 |
+
#: core/core.php:317
|
426 |
+
msgid "Link Checker Settings"
|
427 |
+
msgstr "Bağlantı Bildirici Ayarları"
|
428 |
+
|
429 |
+
# @ broken-link-checker
|
430 |
+
#: core/core.php:318
|
431 |
+
msgid "Link Checker"
|
432 |
+
msgstr "Bağlantı Bildirici"
|
433 |
+
|
434 |
+
# @ broken-link-checker
|
435 |
+
#: core/core.php:323
|
436 |
+
#: includes/link-query.php:26
|
437 |
+
msgid "Broken Links"
|
438 |
+
msgstr "Kırık Bağlantılar"
|
439 |
+
|
440 |
+
# @ broken-link-checker
|
441 |
+
#: core/core.php:339
|
442 |
+
msgid "View Broken Links"
|
443 |
+
msgstr "Kırık Bağlantıları görüntüle"
|
444 |
+
|
445 |
+
#: core/core.php:354
|
446 |
+
msgid "Feedback"
|
447 |
+
msgstr "Geri besleme"
|
448 |
+
|
449 |
+
# @ default
|
450 |
+
#: core/core.php:366
|
451 |
+
msgid "Go to Settings"
|
452 |
+
msgstr "Ayarlara git"
|
453 |
+
|
454 |
+
# @ broken-link-checker
|
455 |
+
#: core/core.php:373
|
456 |
+
msgid "Go to Broken Links"
|
457 |
+
msgstr "Krık bağlantılara git"
|
458 |
+
|
459 |
+
# @ default
|
460 |
+
#: core/core.php:402
|
461 |
+
msgid "Settings"
|
462 |
+
msgstr "Ayarlar"
|
463 |
+
|
464 |
+
# @ broken-link-checker
|
465 |
+
#: core/core.php:414
|
466 |
+
#: core/core.php:1182
|
467 |
+
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
468 |
+
msgstr "Hata: Eklenti veritabanı tablosu güncel değil! (Mevcut sürümü: %d, Yeni sürümü: %d)"
|
469 |
+
|
470 |
+
# @ broken-link-checker
|
471 |
+
#: core/core.php:418
|
472 |
+
#: core/core.php:1186
|
473 |
+
msgid "Try deactivating and then reactivating the plugin."
|
474 |
+
msgstr "Eklentiyi devre dışı bırakın ve daha sonra yeniden etkinleştirin."
|
475 |
+
|
476 |
+
# @ broken-link-checker
|
477 |
+
#: core/core.php:551
|
478 |
+
msgid "Settings saved."
|
479 |
+
msgstr "Ayarlar kaydedildi."
|
480 |
+
|
481 |
+
#: core/core.php:557
|
482 |
+
msgid "Thank you for your donation!"
|
483 |
+
msgstr "Bağış ettiğinizden dolayı teşekkür ederim."
|
484 |
+
|
485 |
+
# @ broken-link-checker
|
486 |
+
#: core/core.php:564
|
487 |
+
msgid "Complete site recheck started."
|
488 |
+
msgstr "Web siteniz incelemeye yeniden başlatıldı."
|
489 |
+
|
490 |
+
# @ broken-link-checker
|
491 |
+
#: core/core.php:573
|
492 |
+
msgid "Details"
|
493 |
+
msgstr "Ayrıntılar"
|
494 |
+
|
495 |
+
# @ broken-link-checker
|
496 |
+
#: core/core.php:587
|
497 |
+
msgid "General"
|
498 |
+
msgstr "Genel"
|
499 |
+
|
500 |
+
# @ broken-link-checker
|
501 |
+
#: core/core.php:588
|
502 |
+
msgid "Look For Links In"
|
503 |
+
msgstr "Kırık Bağlantı Aranan İçerikler"
|
504 |
+
|
505 |
+
# @ broken-link-checker
|
506 |
+
#: core/core.php:589
|
507 |
+
msgid "Which Links To Check"
|
508 |
+
msgstr "Aranılan Bağlantılar Türleri"
|
509 |
+
|
510 |
+
# @ broken-link-checker
|
511 |
+
#: core/core.php:590
|
512 |
+
msgid "Protocols & APIs"
|
513 |
+
msgstr "Protokoller ve API'ler"
|
514 |
+
|
515 |
+
# @ broken-link-checker
|
516 |
+
#: core/core.php:591
|
517 |
+
msgid "Advanced"
|
518 |
+
msgstr "Gelişmiş"
|
519 |
+
|
520 |
+
# @ broken-link-checker
|
521 |
+
#: core/core.php:606
|
522 |
+
msgid "Broken Link Checker Options"
|
523 |
+
msgstr "Kırık bağlantı Bildirici Seçenekleri"
|
524 |
+
|
525 |
+
# @ broken-link-checker
|
526 |
+
#: core/core.php:648
|
527 |
+
#: includes/admin/table-printer.php:168
|
528 |
+
msgid "Status"
|
529 |
+
msgstr "Durum"
|
530 |
+
|
531 |
+
# @ broken-link-checker
|
532 |
+
#: core/core.php:650
|
533 |
+
#: includes/admin/options-page-js.php:56
|
534 |
+
msgid "Show debug info"
|
535 |
+
msgstr "Hata ayıklama bilgisi"
|
536 |
+
|
537 |
+
# @ broken-link-checker
|
538 |
+
#: core/core.php:678
|
539 |
+
msgid "Check each link"
|
540 |
+
msgstr "Bağlantıyı otomatik kontrol et"
|
541 |
+
|
542 |
+
# @ broken-link-checker
|
543 |
+
#: core/core.php:683
|
544 |
+
msgid "Every %s hours"
|
545 |
+
msgstr "Her %s saate"
|
546 |
+
|
547 |
+
# @ broken-link-checker
|
548 |
+
#: core/core.php:692
|
549 |
+
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
550 |
+
msgstr "Mevcut bağlantıları belirtilen saate kontrol edilecektir. Yeni bağlantılar genellikle kısa sürede kontrol edilecektir."
|
551 |
+
|
552 |
+
# @ broken-link-checker
|
553 |
+
#: core/core.php:699
|
554 |
+
msgid "E-mail notifications"
|
555 |
+
msgstr "E-posta ile bildir"
|
556 |
+
|
557 |
+
# @ broken-link-checker
|
558 |
+
#: core/core.php:705
|
559 |
+
msgid "Send me e-mail notifications about newly detected broken links"
|
560 |
+
msgstr "Kırık bağlantı tespit edildiğinde bana e-posta ile bildir."
|
561 |
+
|
562 |
+
# @ broken-link-checker
|
563 |
+
#: core/core.php:712
|
564 |
+
msgid "Link tweaks"
|
565 |
+
msgstr "Bağlantıyı düzenle"
|
566 |
+
|
567 |
+
# @ broken-link-checker
|
568 |
+
#: core/core.php:718
|
569 |
+
msgid "Apply custom formatting to broken links"
|
570 |
+
msgstr "Kırık bağlantılar için özel biçimlendirme uygula"
|
571 |
+
|
572 |
+
# @ broken-link-checker
|
573 |
+
#: core/core.php:722
|
574 |
+
#: core/core.php:750
|
575 |
+
msgid "Edit CSS"
|
576 |
+
msgstr "CSS Düzenle"
|
577 |
+
|
578 |
+
# @ broken-link-checker
|
579 |
+
#: core/core.php:746
|
580 |
+
msgid "Apply custom formatting to removed links"
|
581 |
+
msgstr "Silinen bağlantılar için özel biçimlendirme uygula"
|
582 |
+
|
583 |
+
# @ broken-link-checker
|
584 |
+
#: core/core.php:774
|
585 |
+
msgid "Stop search engines from following broken links"
|
586 |
+
msgstr "Arama motorlarında kırık bağlantıları indekslemelerine izin verme."
|
587 |
+
|
588 |
+
# @ broken-link-checker
|
589 |
+
#: core/core.php:791
|
590 |
+
msgid "Look for links in"
|
591 |
+
msgstr "Aranan İçerikler"
|
592 |
+
|
593 |
+
# @ broken-link-checker
|
594 |
+
#: core/core.php:802
|
595 |
+
msgid "Post statuses"
|
596 |
+
msgstr "Aranılan Mesajlar"
|
597 |
+
|
598 |
+
# @ broken-link-checker
|
599 |
+
#: core/core.php:835
|
600 |
+
msgid "Link types"
|
601 |
+
msgstr "Bağlantı türleri"
|
602 |
+
|
603 |
+
# @ broken-link-checker
|
604 |
+
#: core/core.php:841
|
605 |
+
msgid "Error : All link parsers missing!"
|
606 |
+
msgstr "Hata: Tüm bağlantı ayrıştırıcıları eksik!"
|
607 |
+
|
608 |
+
# @ broken-link-checker
|
609 |
+
#: core/core.php:848
|
610 |
+
msgid "Exclusion list"
|
611 |
+
msgstr "Yoksay listesi"
|
612 |
+
|
613 |
+
# @ broken-link-checker
|
614 |
+
#: core/core.php:849
|
615 |
+
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
616 |
+
msgstr "Adres içindeki kelimelerin nerede olduğunu kontrol et (Her satırdaki):"
|
617 |
+
|
618 |
+
# @ broken-link-checker
|
619 |
+
#: core/core.php:867
|
620 |
+
msgid "Check links using"
|
621 |
+
msgstr "Bu Bağlantıları Kontrol Et"
|
622 |
+
|
623 |
+
# @ broken-link-checker
|
624 |
+
#: core/core.php:886
|
625 |
+
#: includes/links.php:849
|
626 |
+
msgid "Timeout"
|
627 |
+
msgstr "Zaman aşımı"
|
628 |
+
|
629 |
+
# @ broken-link-checker
|
630 |
+
# @ default
|
631 |
+
#: core/core.php:892
|
632 |
+
#: core/core.php:938
|
633 |
+
#: core/core.php:2743
|
634 |
+
msgid "%s seconds"
|
635 |
+
msgstr "%s Saniye"
|
636 |
+
|
637 |
+
# @ broken-link-checker
|
638 |
+
#: core/core.php:901
|
639 |
+
msgid "Links that take longer than this to load will be marked as broken."
|
640 |
+
msgstr "Yükleme uzun sürebilir bağlantılar kırık olarak işaretlenmiş olacak"
|
641 |
+
|
642 |
+
# @ broken-link-checker
|
643 |
+
#: core/core.php:908
|
644 |
+
msgid "Link monitor"
|
645 |
+
msgstr "Bağlantı izleyicisi"
|
646 |
+
|
647 |
+
# @ broken-link-checker
|
648 |
+
#: core/core.php:916
|
649 |
+
msgid "Run continuously while the Dashboard is open"
|
650 |
+
msgstr "Ana Giriş Paneli açık ise, kesintisiz çalıştırın"
|
651 |
+
|
652 |
+
# @ broken-link-checker
|
653 |
+
#: core/core.php:924
|
654 |
+
msgid "Run hourly in the background"
|
655 |
+
msgstr "Arka planda saatlik olarak çalıştır"
|
656 |
+
|
657 |
+
# @ broken-link-checker
|
658 |
+
#: core/core.php:932
|
659 |
+
msgid "Max. execution time"
|
660 |
+
msgstr "Max. yürütme zamanı"
|
661 |
+
|
662 |
+
# @ broken-link-checker
|
663 |
+
#: core/core.php:949
|
664 |
+
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."
|
665 |
+
msgstr "Eklenti arka planda düzenli aralıkla çalışır. Mesajınızı analiz edilecektir. Bağlantıları kontrol ve diğer zaman alan görevleri gerçekleştirecektir. Durdurabilir ve daha sonra çalıştırabilirsiniz."
|
666 |
+
|
667 |
+
# @ broken-link-checker
|
668 |
+
#: core/core.php:958
|
669 |
+
msgid "Server load limit"
|
670 |
+
msgstr "Sunucu yüklenme sınırı"
|
671 |
+
|
672 |
+
#: core/core.php:973
|
673 |
+
msgid "Current load : %s"
|
674 |
+
msgstr "Mevcut yüklenme: % s"
|
675 |
+
|
676 |
+
# @ broken-link-checker
|
677 |
+
#: core/core.php:978
|
678 |
+
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."
|
679 |
+
msgstr "Bağlantıyı kontrol ettikten sonra beklemede olacak, eğer ortalama bir <a href=\"%s\"> sunucu yük </ a> bu sayı üzerinde yükselmektedir. Yük sınırlayıcı devre dışı bırakmak için bu alanı boş bırakın."
|
680 |
+
|
681 |
+
# @ broken-link-checker
|
682 |
+
#: core/core.php:987
|
683 |
+
msgid "Not available"
|
684 |
+
msgstr "Mevcut değil"
|
685 |
+
|
686 |
+
# @ broken-link-checker
|
687 |
+
#: core/core.php:989
|
688 |
+
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
689 |
+
msgstr "Linux gibi işetim sistemlerde çalışır yük sınırlayan <code> / proc / loadavg </ code>, mevcut ve erişilebilir."
|
690 |
+
|
691 |
+
# @ broken-link-checker
|
692 |
+
#: core/core.php:997
|
693 |
+
msgid "Forced recheck"
|
694 |
+
msgstr "Yeniden değerlendirilecek"
|
695 |
+
|
696 |
+
# @ broken-link-checker
|
697 |
+
#: core/core.php:1000
|
698 |
+
msgid "Re-check all pages"
|
699 |
+
msgstr "Tekrar tüm sayfaları kontrol edin"
|
700 |
+
|
701 |
+
# @ broken-link-checker
|
702 |
+
#: core/core.php:1004
|
703 |
+
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
704 |
+
msgstr " \"Nuclear Option\". Kurulu ayarların yeniden inşa etmek için eklenti veritabanı bağlantı için Butona tıklatın."
|
705 |
+
|
706 |
+
# @ default
|
707 |
+
#: core/core.php:1015
|
708 |
+
msgid "Save Changes"
|
709 |
+
msgstr "Değişiklikleri kaydet"
|
710 |
+
|
711 |
+
# @ broken-link-checker
|
712 |
+
#: core/core.php:1066
|
713 |
+
msgid "Configure"
|
714 |
+
msgstr "Yapılandırın"
|
715 |
+
|
716 |
+
# @ broken-link-checker
|
717 |
+
#: core/core.php:1148
|
718 |
+
msgid "Check URLs entered in these custom fields (one per line) :"
|
719 |
+
msgstr "Aşağıdaki bağlantıları kontrol edin (Satır başındaki):"
|
720 |
+
|
721 |
+
# @ broken-link-checker
|
722 |
+
#: core/core.php:1283
|
723 |
+
#: core/core.php:1364
|
724 |
+
#: core/core.php:1396
|
725 |
+
msgid "Database error : %s"
|
726 |
+
msgstr "Veritabanı hatası: %s"
|
727 |
+
|
728 |
+
# @ broken-link-checker
|
729 |
+
#: core/core.php:1346
|
730 |
+
msgid "You must enter a filter name!"
|
731 |
+
msgstr "Bir filtre adı girmeniz gerekir!"
|
732 |
+
|
733 |
+
# @ broken-link-checker
|
734 |
+
#: core/core.php:1350
|
735 |
+
msgid "Invalid search query."
|
736 |
+
msgstr "Geçersiz sorgu."
|
737 |
+
|
738 |
+
# @ broken-link-checker
|
739 |
+
#: core/core.php:1359
|
740 |
+
msgid "Filter \"%s\" created"
|
741 |
+
msgstr "Filitre \"%s\" oluşturuldu."
|
742 |
+
|
743 |
+
# @ broken-link-checker
|
744 |
+
#: core/core.php:1386
|
745 |
+
msgid "Filter ID not specified."
|
746 |
+
msgstr "Filtre kimliği belirtilmedi."
|
747 |
+
|
748 |
+
# @ broken-link-checker
|
749 |
+
#: core/core.php:1393
|
750 |
+
msgid "Filter deleted"
|
751 |
+
msgstr "Filitre silindi."
|
752 |
+
|
753 |
+
# @ broken-link-checker
|
754 |
+
#: core/core.php:1440
|
755 |
+
msgid "Replaced %d redirect with a direct link"
|
756 |
+
msgid_plural "Replaced %d redirects with direct links"
|
757 |
+
msgstr[0] "Değiştirilen %d bağlantı doğrudan yönlendirildi."
|
758 |
+
msgstr[1] "Değiştirilen %d bağlantılar doğrudan yönlendirildi."
|
759 |
+
|
760 |
+
# @ broken-link-checker
|
761 |
+
#: core/core.php:1451
|
762 |
+
msgid "Failed to fix %d redirect"
|
763 |
+
msgid_plural "Failed to fix %d redirects"
|
764 |
+
msgstr[0] " %d yönlendirme başarısız"
|
765 |
+
msgstr[1] " %d yönlendirmeler başarısız"
|
766 |
+
|
767 |
+
# @ broken-link-checker
|
768 |
+
#: core/core.php:1462
|
769 |
+
msgid "None of the selected links are redirects!"
|
770 |
+
msgstr "Seçilen bağlantıların hiçbiri doğrudan yönlendirilemedi."
|
771 |
+
|
772 |
+
# @ broken-link-checker
|
773 |
+
#: core/core.php:1540
|
774 |
+
msgid "%d link updated."
|
775 |
+
msgid_plural "%d links updated."
|
776 |
+
msgstr[0] "%d bağlantı güncellendi."
|
777 |
+
msgstr[1] "%d bağlantılar güncellendi."
|
778 |
+
|
779 |
+
# @ broken-link-checker
|
780 |
+
#: core/core.php:1551
|
781 |
+
msgid "Failed to update %d link."
|
782 |
+
msgid_plural "Failed to update %d links."
|
783 |
+
msgstr[0] "%d bağlantı güncellenemedi."
|
784 |
+
msgstr[1] "%d bağlantılar güncellenemedi."
|
785 |
+
|
786 |
+
# @ broken-link-checker
|
787 |
+
#: core/core.php:1605
|
788 |
+
msgid "%d link removed"
|
789 |
+
msgid_plural "%d links removed"
|
790 |
+
msgstr[0] "%d bağlantı silindi."
|
791 |
+
msgstr[1] "%d bağlantılar silindi."
|
792 |
+
|
793 |
+
# @ broken-link-checker
|
794 |
+
#: core/core.php:1616
|
795 |
+
msgid "Failed to remove %d link"
|
796 |
+
msgid_plural "Failed to remove %d links"
|
797 |
+
msgstr[0] "%d bağlantı silinemedi."
|
798 |
+
msgstr[1] "%d bağlantılar silinemedi."
|
799 |
+
|
800 |
+
# @ default
|
801 |
+
#: core/core.php:1725
|
802 |
+
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
803 |
+
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
804 |
+
msgstr[0] "%d öğe atlandı, çünkü çöp kutusuna taşınamadı. Elle silmek gerekiyor."
|
805 |
+
msgstr[1] "%d öğeler atlandı, çünkü çöp kutusuna taşınamadı. Elle silmek gerekiyor."
|
806 |
+
|
807 |
+
# @ broken-link-checker
|
808 |
+
#: core/core.php:1747
|
809 |
+
msgid "Didn't find anything to delete!"
|
810 |
+
msgstr "Silmek için hiçbir şey bulunamadı!"
|
811 |
+
|
812 |
+
# @ broken-link-checker
|
813 |
+
#: core/core.php:1774
|
814 |
+
msgid "%d link scheduled for rechecking"
|
815 |
+
msgid_plural "%d links scheduled for rechecking"
|
816 |
+
msgstr[0] "%d Bağlantı yeniden yapılandırıldı"
|
817 |
+
msgstr[1] "%d Bağlantılar yeniden yapılandırıldı"
|
818 |
+
|
819 |
+
# @ broken-link-checker
|
820 |
+
#: core/core.php:1820
|
821 |
+
#: core/core.php:2424
|
822 |
+
msgid "This link was manually marked as working by the user."
|
823 |
+
msgstr "Bu bağlantı, kullanıcı tarafından manuel olarak çalıştırıldı."
|
824 |
+
|
825 |
+
# @ broken-link-checker
|
826 |
+
#: core/core.php:1827
|
827 |
+
msgid "Couldn't modify link %d"
|
828 |
+
msgstr "Bu bağlantı %d değiştirilemedi."
|
829 |
+
|
830 |
+
# @ broken-link-checker
|
831 |
+
#: core/core.php:1837
|
832 |
+
msgid "%d link marked as not broken"
|
833 |
+
msgid_plural "%d links marked as not broken"
|
834 |
+
msgstr[0] "%d Seçili bağlantı kırık değil"
|
835 |
+
msgstr[1] "%d Seçili bağlantılar kırık değil"
|
836 |
+
|
837 |
+
# @ broken-link-checker
|
838 |
+
#: core/core.php:1877
|
839 |
+
msgid "Table columns"
|
840 |
+
msgstr "Tablo sütunları"
|
841 |
+
|
842 |
+
# @ default
|
843 |
+
#: core/core.php:1896
|
844 |
+
msgid "Show on screen"
|
845 |
+
msgstr "Ekranda görüntüle"
|
846 |
+
|
847 |
+
# @ broken-link-checker
|
848 |
+
#: core/core.php:1903
|
849 |
+
msgid "links"
|
850 |
+
msgstr "Bağlantıyı görüntüle"
|
851 |
+
|
852 |
+
# @ default
|
853 |
+
# @ broken-link-checker
|
854 |
+
#: core/core.php:1904
|
855 |
+
#: includes/admin/table-printer.php:136
|
856 |
+
msgid "Apply"
|
857 |
+
msgstr "Uygula"
|
858 |
+
|
859 |
+
# @ broken-link-checker
|
860 |
+
#: core/core.php:1908
|
861 |
+
msgid "Misc"
|
862 |
+
msgstr "Diğer"
|
863 |
+
|
864 |
+
# @ broken-link-checker
|
865 |
+
#: core/core.php:1923
|
866 |
+
msgid "Highlight links broken for at least %s days"
|
867 |
+
msgstr "%s günde hatalı bağlantıyı vurgula"
|
868 |
+
|
869 |
+
# @ broken-link-checker
|
870 |
+
#: core/core.php:1932
|
871 |
+
msgid "Color-code status codes"
|
872 |
+
msgstr "Renk kodu durum kodları"
|
873 |
+
|
874 |
+
# @ broken-link-checker
|
875 |
+
#: core/core.php:1949
|
876 |
+
#: core/core.php:2409
|
877 |
+
#: core/core.php:2445
|
878 |
+
#: core/core.php:2508
|
879 |
+
msgid "You're not allowed to do that!"
|
880 |
+
msgstr "Bunu yapmak için izin verilmiyor!"
|
881 |
+
|
882 |
+
# @ broken-link-checker
|
883 |
+
#: core/core.php:2290
|
884 |
+
msgid "View broken links"
|
885 |
+
msgstr "Kırık bağlantıları görüntüle"
|
886 |
+
|
887 |
+
# @ broken-link-checker
|
888 |
+
#: core/core.php:2291
|
889 |
+
msgid "Found %d broken link"
|
890 |
+
msgid_plural "Found %d broken links"
|
891 |
+
msgstr[0] "%d kırık bağlantı bulundu"
|
892 |
+
msgstr[1] "%d kırık bağlantılar bulundu"
|
893 |
+
|
894 |
+
# @ broken-link-checker
|
895 |
+
#: core/core.php:2297
|
896 |
+
msgid "No broken links found."
|
897 |
+
msgstr "Kırık bağlantılar bulunamadı"
|
898 |
+
|
899 |
+
# @ broken-link-checker
|
900 |
+
#: core/core.php:2304
|
901 |
+
msgid "%d URL in the work queue"
|
902 |
+
msgid_plural "%d URLs in the work queue"
|
903 |
+
msgstr[0] "%d Adresin çalışma sırası"
|
904 |
+
msgstr[1] "%d Adreslerin çalışma sırası"
|
905 |
+
|
906 |
+
# @ broken-link-checker
|
907 |
+
#: core/core.php:2307
|
908 |
+
msgid "No URLs in the work queue."
|
909 |
+
msgstr "Çalışan adres kuyruğu yok."
|
910 |
+
|
911 |
+
# @ broken-link-checker
|
912 |
+
#: core/core.php:2313
|
913 |
+
msgid "Detected %d unique URL"
|
914 |
+
msgid_plural "Detected %d unique URLs"
|
915 |
+
msgstr[0] "%d adres tespit edildi."
|
916 |
+
msgstr[1] "%d adres tespit edildi."
|
917 |
+
|
918 |
+
# @ broken-link-checker
|
919 |
+
#: core/core.php:2314
|
920 |
+
msgid "in %d link"
|
921 |
+
msgid_plural "in %d links"
|
922 |
+
msgstr[0] "%d tutulan adres"
|
923 |
+
msgstr[1] "%d tutulan adresler"
|
924 |
+
|
925 |
+
# @ broken-link-checker
|
926 |
+
#: core/core.php:2319
|
927 |
+
msgid "and still searching..."
|
928 |
+
msgstr "ve hala arıyor..."
|
929 |
+
|
930 |
+
# @ broken-link-checker
|
931 |
+
#: core/core.php:2325
|
932 |
+
msgid "Searching your blog for links..."
|
933 |
+
msgstr "Blogunuzda bağlantılar aranıyor..."
|
934 |
+
|
935 |
+
# @ broken-link-checker
|
936 |
+
#: core/core.php:2327
|
937 |
+
msgid "No links detected."
|
938 |
+
msgstr "Malesef bağlantı bulunamadı."
|
939 |
+
|
940 |
+
# @ broken-link-checker
|
941 |
+
#: core/core.php:2353
|
942 |
+
msgctxt "current load"
|
943 |
+
msgid "Unknown"
|
944 |
+
msgstr "Bilinmeyen"
|
945 |
+
|
946 |
+
# @ broken-link-checker
|
947 |
+
#: core/core.php:2417
|
948 |
+
#: core/core.php:2455
|
949 |
+
#: core/core.php:2518
|
950 |
+
msgid "Oops, I can't find the link %d"
|
951 |
+
msgstr "Üzgünüz, %d adres bulamıyorum!"
|
952 |
+
|
953 |
+
# @ broken-link-checker
|
954 |
+
#: core/core.php:2430
|
955 |
+
msgid "Oops, couldn't modify the link!"
|
956 |
+
msgstr "Üzgünüz, bağlantı değiştirmez!"
|
957 |
+
|
958 |
+
# @ broken-link-checker
|
959 |
+
#: core/core.php:2433
|
960 |
+
#: core/core.php:2544
|
961 |
+
msgid "Error : link_id not specified"
|
962 |
+
msgstr "Hata: Adres ID belirtilmemiş"
|
963 |
+
|
964 |
+
# @ broken-link-checker
|
965 |
+
#: core/core.php:2465
|
966 |
+
msgid "Oops, the new URL is invalid!"
|
967 |
+
msgstr "Üzgünüz, geçersiz bir adres!"
|
968 |
+
|
969 |
+
# @ broken-link-checker
|
970 |
+
#: core/core.php:2476
|
971 |
+
#: core/core.php:2527
|
972 |
+
msgid "An unexpected error occured!"
|
973 |
+
msgstr "Beklenmeyen bir hata oluştu!"
|
974 |
+
|
975 |
+
# @ broken-link-checker
|
976 |
+
#: core/core.php:2494
|
977 |
+
msgid "Error : link_id or new_url not specified"
|
978 |
+
msgstr "Hata: Bağlantı adı yada adres belirtilmemiş"
|
979 |
+
|
980 |
+
# @ broken-link-checker
|
981 |
+
#: core/core.php:2553
|
982 |
+
msgid "You don't have sufficient privileges to access this information!"
|
983 |
+
msgstr "Bu bilgileri görmek için yeterli haklara sahip değilsiniz!"
|
984 |
+
|
985 |
+
# @ broken-link-checker
|
986 |
+
#: core/core.php:2566
|
987 |
+
msgid "Error : link ID not specified"
|
988 |
+
msgstr "Hata: Bağlantı adı belirtilmemiş"
|
989 |
+
|
990 |
+
# @ broken-link-checker
|
991 |
+
#: core/core.php:2580
|
992 |
+
msgid "Failed to load link details (%s)"
|
993 |
+
msgstr "(%s) Bağlantı detayları yüklenemedi."
|
994 |
+
|
995 |
+
# @ broken-link-checker
|
996 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.3.1) #-#-#-#-#
|
997 |
+
#. Plugin Name of the plugin/theme
|
998 |
+
#: core/core.php:2633
|
999 |
+
msgid "Broken Link Checker"
|
1000 |
+
msgstr "Kırık Bağlantı Bildirici"
|
1001 |
+
|
1002 |
+
# @ broken-link-checker
|
1003 |
+
#: core/core.php:2652
|
1004 |
+
msgid "PHP version"
|
1005 |
+
msgstr "PHP versiyonu"
|
1006 |
+
|
1007 |
+
# @ broken-link-checker
|
1008 |
+
#: core/core.php:2658
|
1009 |
+
msgid "MySQL version"
|
1010 |
+
msgstr "MySQL versiyonu"
|
1011 |
+
|
1012 |
+
# @ broken-link-checker
|
1013 |
+
#: core/core.php:2671
|
1014 |
+
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
1015 |
+
msgstr "CURL eski bir sürümü var. Yönlendirme düzgün çalışmayabilir."
|
1016 |
+
|
1017 |
+
# @ broken-link-checker
|
1018 |
+
#: core/core.php:2683
|
1019 |
+
#: core/core.php:2699
|
1020 |
+
#: core/core.php:2704
|
1021 |
+
msgid "Not installed"
|
1022 |
+
msgstr "Yüklü değil"
|
1023 |
+
|
1024 |
+
# @ broken-link-checker
|
1025 |
+
#: core/core.php:2686
|
1026 |
+
msgid "CURL version"
|
1027 |
+
msgstr "CURL Versiyonu"
|
1028 |
+
|
1029 |
+
# @ broken-link-checker
|
1030 |
+
#: core/core.php:2692
|
1031 |
+
msgid "Installed"
|
1032 |
+
msgstr "Yüklendi"
|
1033 |
+
|
1034 |
+
# @ broken-link-checker
|
1035 |
+
#: core/core.php:2705
|
1036 |
+
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
1037 |
+
msgstr "Eklenti çalışması için ya CURL veya Snoopy yüklü olmalıdır!"
|
1038 |
+
|
1039 |
+
# @ broken-link-checker
|
1040 |
+
#: core/core.php:2716
|
1041 |
+
msgid "On"
|
1042 |
+
msgstr "Açık"
|
1043 |
+
|
1044 |
+
# @ broken-link-checker
|
1045 |
+
#: core/core.php:2717
|
1046 |
+
msgid "Redirects may be detected as broken links when safe_mode is on."
|
1047 |
+
msgstr "Güvenli_Mod üzerinde yönlendirilen bozuk bağlantılar tespit edildi."
|
1048 |
+
|
1049 |
+
# @ broken-link-checker
|
1050 |
+
#: core/core.php:2722
|
1051 |
+
#: core/core.php:2736
|
1052 |
+
msgid "Off"
|
1053 |
+
msgstr "Kapalı"
|
1054 |
+
|
1055 |
+
# @ broken-link-checker
|
1056 |
+
#: core/core.php:2730
|
1057 |
+
msgid "On ( %s )"
|
1058 |
+
msgstr "Açık (%s)"
|
1059 |
+
|
1060 |
+
# @ broken-link-checker
|
1061 |
+
#: core/core.php:2731
|
1062 |
+
msgid "Redirects may be detected as broken links when open_basedir is on."
|
1063 |
+
msgstr "open_basedir üzerinde yönlendirilen bozuk bağlantı tespit edildi."
|
1064 |
+
|
1065 |
+
# @ broken-link-checker
|
1066 |
+
#: core/core.php:2760
|
1067 |
+
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
1068 |
+
msgstr "Bu değer bile birkaç sayfayı yeniden yükledikten sonra sıfır ise muhtemelen bir hata karşılandı."
|
1069 |
+
|
1070 |
+
# @ broken-link-checker
|
1071 |
+
#: core/core.php:2831
|
1072 |
+
msgid "[%s] Broken links detected"
|
1073 |
+
msgstr "[%s] Kırık bağlantı tespit edildi."
|
1074 |
+
|
1075 |
+
# @ broken-link-checker
|
1076 |
+
#: core/core.php:2836
|
1077 |
+
msgid "Broken Link Checker has detected %d new broken link on your site."
|
1078 |
+
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
1079 |
+
msgstr[0] "Kırık Bağlantı Bildirici %d yeni kırık bağlantı tespit etti."
|
1080 |
+
msgstr[1] "Kırık Bağlantı Bildirici %d yeni kırık bağlantı tespit etti."
|
1081 |
+
|
1082 |
+
# @ broken-link-checker
|
1083 |
+
#: core/core.php:2851
|
1084 |
+
msgid "Here's a list of the first %d broken links:"
|
1085 |
+
msgid_plural "Here's a list of the first %d broken links:"
|
1086 |
+
msgstr[0] "Listenizde %d kırık bağlantı var:"
|
1087 |
+
msgstr[1] "Listenizde %d kırık bağlantı var:"
|
1088 |
+
|
1089 |
+
# @ broken-link-checker
|
1090 |
+
#: core/core.php:2860
|
1091 |
+
msgid "Here's a list of the new broken links: "
|
1092 |
+
msgstr "Yeni kırık bağlantı listenizde var:"
|
1093 |
+
|
1094 |
+
# @ broken-link-checker
|
1095 |
+
#: core/core.php:2872
|
1096 |
+
msgid "Link text : %s"
|
1097 |
+
msgstr "Bağlantı metni: %s"
|
1098 |
+
|
1099 |
+
# @ broken-link-checker
|
1100 |
+
#: core/core.php:2873
|
1101 |
+
msgid "Link URL : <a href=\"%s\">%s</a>"
|
1102 |
+
msgstr "Bağlantı adresi: <a href=\"%s\">%s</a>"
|
1103 |
+
|
1104 |
+
# @ broken-link-checker
|
1105 |
+
#: core/core.php:2874
|
1106 |
+
msgid "Source : %s"
|
1107 |
+
msgstr "Kaynak: %s"
|
1108 |
+
|
1109 |
+
# @ brokenk-link-checker
|
1110 |
+
#: core/core.php:2888
|
1111 |
+
msgid "You can see all broken links here:"
|
1112 |
+
msgstr "Burada tüm kırık bağlantılarınızı görebilirsiniz:"
|
1113 |
+
|
1114 |
+
# @ broken-link-checker
|
1115 |
+
#: includes/admin/links-page-js.php:58
|
1116 |
+
#: includes/admin/links-page-js.php:301
|
1117 |
+
msgid "Wait..."
|
1118 |
+
msgstr "Bekleyiniz..."
|
1119 |
+
|
1120 |
+
# @ broken-link-checker
|
1121 |
+
#: includes/admin/links-page-js.php:99
|
1122 |
+
#: includes/admin/table-printer.php:587
|
1123 |
+
msgid "Not broken"
|
1124 |
+
msgstr "Kırık değil"
|
1125 |
+
|
1126 |
+
# @ broken-link-checker
|
1127 |
+
#: includes/admin/links-page-js.php:213
|
1128 |
+
msgid "%d instances of the link were successfully modified."
|
1129 |
+
msgstr "%d link örneklerini başarılı bir şekilde modifiye edilmiştir."
|
1130 |
+
|
1131 |
+
# @ broken-link-checker
|
1132 |
+
#: includes/admin/links-page-js.php:219
|
1133 |
+
msgid "However, %d instances couldn't be edited and still point to the old URL."
|
1134 |
+
msgstr "Ancak, %d durumlarda düzenlenebilir ve hala eski adrese işaretmektedir."
|
1135 |
+
|
1136 |
+
# @ broken-link-checker
|
1137 |
+
#: includes/admin/links-page-js.php:225
|
1138 |
+
msgid "The link could not be modified."
|
1139 |
+
msgstr "Bağlantı değiştirilemez olabilir."
|
1140 |
+
|
1141 |
+
# @ broken-link-checker
|
1142 |
+
#: includes/admin/links-page-js.php:228
|
1143 |
+
#: includes/admin/links-page-js.php:353
|
1144 |
+
msgid "The following error(s) occured :"
|
1145 |
+
msgstr "Aşağıdaki hatalar oluştu:"
|
1146 |
+
|
1147 |
+
# @ broken-link-checker
|
1148 |
+
#: includes/admin/links-page-js.php:339
|
1149 |
+
msgid "%d instances of the link were successfully unlinked."
|
1150 |
+
msgstr "%d Bu bağlantının örnekleri başarıyla silindi."
|
1151 |
+
|
1152 |
+
# @ broken-link-checker
|
1153 |
+
#: includes/admin/links-page-js.php:345
|
1154 |
+
msgid "However, %d instances couldn't be removed."
|
1155 |
+
msgstr "elbette, %d Örneklerini kaldırılamadı."
|
1156 |
+
|
1157 |
+
# @ broken-link-checker
|
1158 |
+
#: includes/admin/links-page-js.php:350
|
1159 |
+
msgid "The plugin failed to remove the link."
|
1160 |
+
msgstr "Bu eklenti bağlantıyı kaldırmak için başarısız oldu."
|
1161 |
+
|
1162 |
+
# @ broken-link-checker
|
1163 |
+
#: includes/admin/links-page-js.php:361
|
1164 |
+
#: includes/admin/table-printer.php:237
|
1165 |
+
#: includes/admin/table-printer.php:581
|
1166 |
+
msgid "Unlink"
|
1167 |
+
msgstr "Bağlantı iptal"
|
1168 |
+
|
1169 |
+
# @ broken-link-checker
|
1170 |
+
#: includes/admin/links-page-js.php:405
|
1171 |
+
msgid "Enter a name for the new custom filter"
|
1172 |
+
msgstr "Yeni özel filtre için bir ad giriniz"
|
1173 |
+
|
1174 |
+
# @ broken-link-checker
|
1175 |
+
#: includes/admin/links-page-js.php:416
|
1176 |
+
msgid ""
|
1177 |
+
"You are about to delete the current filter.\n"
|
1178 |
+
"'Cancel' to stop, 'OK' to delete"
|
1179 |
+
msgstr ""
|
1180 |
+
"Geçerli Filtre silmek istediğinizden emin misiniz '% s' \n"
|
1181 |
+
" Silmek için 'Tamam', iptal etmek için 'İptal'."
|
1182 |
+
|
1183 |
+
# @ broken-link-checker
|
1184 |
+
#: includes/admin/links-page-js.php:439
|
1185 |
+
msgid ""
|
1186 |
+
"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"
|
1187 |
+
"'Cancel' to stop, 'OK' to delete"
|
1188 |
+
msgstr ""
|
1189 |
+
"Eğer bütün Mesajları, yer imleri ve seçilmiş bağlantılar diğer unsurları silinecektir. Yapmak emin misiniz? Bu eylem geri alınamaz. \n"
|
1190 |
+
" 'Cancel' to stop, 'OK' to delete Silmek için 'Tamam', iptal etmek için 'İptal'."
|
1191 |
+
|
1192 |
+
# @ broken-link-checker
|
1193 |
+
#: includes/admin/links-page-js.php:449
|
1194 |
+
msgid ""
|
1195 |
+
"Are you sure you want to remove the selected links? This action can't be undone.\n"
|
1196 |
+
"'Cancel' to stop, 'OK' to remove"
|
1197 |
+
msgstr ""
|
1198 |
+
"Seçili bağlantıları kaldırmak istediğinizden emin misiniz? Bu eylem geri alınamaz. \n"
|
1199 |
+
" Kaldırmak için 'Tamam', iptal etmek için 'İptal'."
|
1200 |
+
|
1201 |
+
#: includes/admin/links-page-js.php:558
|
1202 |
+
msgid "Enter a search string first."
|
1203 |
+
msgstr "Öncelikle bir arama dizisi girin."
|
1204 |
+
|
1205 |
+
#: includes/admin/links-page-js.php:565
|
1206 |
+
msgid "Select one or more links to edit."
|
1207 |
+
msgstr "Düzenlemek için bir veya daha fazla bağlanti seçin."
|
1208 |
+
|
1209 |
+
# @ broken-link-checker
|
1210 |
+
#: includes/admin/search-form.php:16
|
1211 |
+
msgid "Save This Search As a Filter"
|
1212 |
+
msgstr "Bu aramayı filitre olarak kaydet"
|
1213 |
+
|
1214 |
+
# @ broken-link-checker
|
1215 |
+
#: includes/admin/search-form.php:26
|
1216 |
+
msgid "Delete This Filter"
|
1217 |
+
msgstr "Bu filtre sil"
|
1218 |
+
|
1219 |
+
# @ broken-link-checker
|
1220 |
+
#: includes/admin/search-form.php:32
|
1221 |
+
#: includes/link-query.php:53
|
1222 |
+
msgid "Search"
|
1223 |
+
msgstr "Arama"
|
1224 |
+
|
1225 |
+
# @ broken-link-checker
|
1226 |
+
#: includes/admin/search-form.php:42
|
1227 |
+
msgid "Link text"
|
1228 |
+
msgstr "Bağlantı metni"
|
1229 |
+
|
1230 |
+
# @ broken-link-checker
|
1231 |
+
#: includes/admin/search-form.php:45
|
1232 |
+
#: includes/admin/table-printer.php:173
|
1233 |
+
msgid "URL"
|
1234 |
+
msgstr "Adres"
|
1235 |
+
|
1236 |
+
# @ broken-link-checker
|
1237 |
+
#: includes/admin/search-form.php:48
|
1238 |
+
#: includes/admin/table-printer.php:455
|
1239 |
+
msgid "HTTP code"
|
1240 |
+
msgstr "HTTP Kodu"
|
1241 |
+
|
1242 |
+
# @ broken-link-checker
|
1243 |
+
#: includes/admin/search-form.php:51
|
1244 |
+
msgid "Link status"
|
1245 |
+
msgstr "Bağlantı durumu"
|
1246 |
+
|
1247 |
+
# @ broken-link-checker
|
1248 |
+
#: includes/admin/search-form.php:68
|
1249 |
+
#: includes/admin/search-form.php:85
|
1250 |
+
msgid "Link type"
|
1251 |
+
msgstr "Bağlantı tipi"
|
1252 |
+
|
1253 |
+
# @ broken-link-checker
|
1254 |
+
#: includes/admin/search-form.php:70
|
1255 |
+
msgid "Any"
|
1256 |
+
msgstr "Herhangi"
|
1257 |
+
|
1258 |
+
# @ broken-link-checker
|
1259 |
+
#: includes/admin/search-form.php:74
|
1260 |
+
msgid "Links used in"
|
1261 |
+
msgstr "Kullanılan bağlantılar"
|
1262 |
+
|
1263 |
+
# @ broken-link-checker
|
1264 |
+
#: includes/admin/search-form.php:112
|
1265 |
+
msgid "Search Links"
|
1266 |
+
msgstr "Aranan bağlantılar"
|
1267 |
+
|
1268 |
+
# @ broken-link-checker
|
1269 |
+
#: includes/admin/search-form.php:113
|
1270 |
+
#: includes/admin/table-printer.php:313
|
1271 |
+
#: includes/admin/table-printer.php:595
|
1272 |
+
#: includes/admin/table-printer.php:601
|
1273 |
+
msgid "Cancel"
|
1274 |
+
msgstr "İptal"
|
1275 |
+
|
1276 |
+
#: includes/admin/sidebar.php:2
|
1277 |
+
msgid "Donate $10, $20 or $50!"
|
1278 |
+
msgstr "Bağış yap 10 TL, 20 TL veya 50 TL!"
|
1279 |
+
|
1280 |
+
#: includes/admin/sidebar.php:5
|
1281 |
+
msgid "If you like this plugin, please donate to support development and maintenance!"
|
1282 |
+
msgstr "Bu eklenti beğendiniz ise geliştirilmesini ve düzenlenmesini isterseniz bağışta bulunabilirsiniz."
|
1283 |
+
|
1284 |
+
#: includes/admin/sidebar.php:22
|
1285 |
+
msgid "Return to WordPress Dashboard"
|
1286 |
+
msgstr "Wordpress Ana Giriş Paneline geri dön"
|
1287 |
+
|
1288 |
+
#: includes/admin/sidebar.php:50
|
1289 |
+
msgid "More plugins by Janis Elsts"
|
1290 |
+
msgstr "Diğer eklentiler için by Janis Elsts"
|
1291 |
+
|
1292 |
+
# @ broken-link-checker
|
1293 |
+
#: includes/admin/options-page-js.php:54
|
1294 |
+
msgid "Hide debug info"
|
1295 |
+
msgstr "Bilgi hata ayıklama gizle"
|
1296 |
+
|
1297 |
+
# @ broken-link-checker
|
1298 |
+
#: includes/admin/table-printer.php:150
|
1299 |
+
msgid "Compact View"
|
1300 |
+
msgstr "Kompakt Görünüm"
|
1301 |
+
|
1302 |
+
# @ broken-link-checker
|
1303 |
+
#: includes/admin/table-printer.php:151
|
1304 |
+
msgid "Detailed View"
|
1305 |
+
msgstr "Detaylı Görünüm"
|
1306 |
+
|
1307 |
+
# @ broken-link-checker
|
1308 |
+
#: includes/admin/table-printer.php:178
|
1309 |
+
msgid "Source"
|
1310 |
+
msgstr "Kaynak"
|
1311 |
+
|
1312 |
+
# @ broken-link-checker
|
1313 |
+
#: includes/admin/table-printer.php:184
|
1314 |
+
msgid "Link Text"
|
1315 |
+
msgstr "Adres metni"
|
1316 |
+
|
1317 |
+
# @ broken-link-checker
|
1318 |
+
#: includes/admin/table-printer.php:232
|
1319 |
+
msgid "Bulk Actions"
|
1320 |
+
msgstr "Toplu Değiştir"
|
1321 |
+
|
1322 |
+
# @ broken-link-checker
|
1323 |
+
#: includes/admin/table-printer.php:233
|
1324 |
+
#: includes/admin/table-printer.php:578
|
1325 |
+
msgid "Edit URL"
|
1326 |
+
msgstr "Adres düzenleme"
|
1327 |
+
|
1328 |
+
# @ broken-link-checker
|
1329 |
+
#: includes/admin/table-printer.php:234
|
1330 |
+
msgid "Recheck"
|
1331 |
+
msgstr "Tekrar kontrol edin"
|
1332 |
+
|
1333 |
+
# @ broken-link-checker
|
1334 |
+
#: includes/admin/table-printer.php:235
|
1335 |
+
msgid "Fix redirects"
|
1336 |
+
msgstr "Sabit yönlendirme"
|
1337 |
+
|
1338 |
+
# @ broken-link-checker
|
1339 |
+
#: includes/admin/table-printer.php:236
|
1340 |
+
msgid "Mark as not broken"
|
1341 |
+
msgstr "Kırık değil olarak işaretle"
|
1342 |
+
|
1343 |
+
# @ broken-link-checker
|
1344 |
+
#: includes/admin/table-printer.php:240
|
1345 |
+
msgid "Move sources to Trash"
|
1346 |
+
msgstr "Kaynakları Çöp Kutusuna Taşı"
|
1347 |
+
|
1348 |
+
# @ broken-link-checker
|
1349 |
+
#: includes/admin/table-printer.php:242
|
1350 |
+
msgid "Delete sources"
|
1351 |
+
msgstr "Kaynakları Sil"
|
1352 |
+
|
1353 |
+
# @ default
|
1354 |
+
#: includes/admin/table-printer.php:257
|
1355 |
+
msgid "«"
|
1356 |
+
msgstr "«"
|
1357 |
+
|
1358 |
+
# @ default
|
1359 |
+
#: includes/admin/table-printer.php:258
|
1360 |
+
msgid "»"
|
1361 |
+
msgstr "»"
|
1362 |
+
|
1363 |
+
# @ broken-link-checker
|
1364 |
+
#: includes/admin/table-printer.php:266
|
1365 |
+
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1366 |
+
msgstr "%s–%s görüntüleniyor.<span class=\"current-link-count\">%s</span>"
|
1367 |
+
|
1368 |
+
# @ broken-link-checker
|
1369 |
+
#: includes/admin/table-printer.php:289
|
1370 |
+
msgid "Bulk Edit URLs"
|
1371 |
+
msgstr "Adresleri toplu Düzenleme "
|
1372 |
+
|
1373 |
+
#: includes/admin/table-printer.php:291
|
1374 |
+
msgid "Find"
|
1375 |
+
msgstr "Bul"
|
1376 |
+
|
1377 |
+
#: includes/admin/table-printer.php:295
|
1378 |
+
msgid "Replace with"
|
1379 |
+
msgstr "ile değiştirin"
|
1380 |
+
|
1381 |
+
# @ broken-link-checker
|
1382 |
+
#: includes/admin/table-printer.php:303
|
1383 |
+
msgid "Case sensitive"
|
1384 |
+
msgstr "Büyük ve küçük harf"
|
1385 |
+
|
1386 |
+
#: includes/admin/table-printer.php:307
|
1387 |
+
msgid "Regular expression"
|
1388 |
+
msgstr "Düzenli ifade"
|
1389 |
+
|
1390 |
+
# @ broken-link-checker
|
1391 |
+
#: includes/admin/table-printer.php:315
|
1392 |
+
msgid "Update"
|
1393 |
+
msgstr "Güncelleştirme"
|
1394 |
+
|
1395 |
+
# @ broken-link-checker
|
1396 |
+
#: includes/admin/table-printer.php:440
|
1397 |
+
msgid "Post published on"
|
1398 |
+
msgstr "Yayınlanan Mesaj"
|
1399 |
+
|
1400 |
+
# @ broken-link-checker
|
1401 |
+
#: includes/admin/table-printer.php:445
|
1402 |
+
msgid "Link last checked"
|
1403 |
+
msgstr "Son kontrol Bağlantı"
|
1404 |
+
|
1405 |
+
# @ broken-link-checker
|
1406 |
+
#: includes/admin/table-printer.php:449
|
1407 |
+
msgid "Never"
|
1408 |
+
msgstr "Asla"
|
1409 |
+
|
1410 |
+
# @ broken-link-checker
|
1411 |
+
#: includes/admin/table-printer.php:460
|
1412 |
+
msgid "Response time"
|
1413 |
+
msgstr "Tepki süresi"
|
1414 |
+
|
1415 |
+
# @ broken-link-checker
|
1416 |
+
#: includes/admin/table-printer.php:462
|
1417 |
+
msgid "%2.3f seconds"
|
1418 |
+
msgstr "%2.3f Saniye"
|
1419 |
+
|
1420 |
+
# @ broken-link-checker
|
1421 |
+
#: includes/admin/table-printer.php:465
|
1422 |
+
msgid "Final URL"
|
1423 |
+
msgstr "Final adres"
|
1424 |
+
|
1425 |
+
# @ broken-link-checker
|
1426 |
+
#: includes/admin/table-printer.php:470
|
1427 |
+
msgid "Redirect count"
|
1428 |
+
msgstr "Yönlendirme numarası"
|
1429 |
+
|
1430 |
+
# @ broken-link-checker
|
1431 |
+
#: includes/admin/table-printer.php:475
|
1432 |
+
msgid "Instance count"
|
1433 |
+
msgstr "Örnek sayısı"
|
1434 |
+
|
1435 |
+
# @ broken-link-checker
|
1436 |
+
#: includes/admin/table-printer.php:484
|
1437 |
+
msgid "This link has failed %d time."
|
1438 |
+
msgid_plural "This link has failed %d times."
|
1439 |
+
msgstr[0] "Bu bağlantı başarısız oldu %d zamanı"
|
1440 |
+
msgstr[1] "Bu bağlantı başarısız oldu %d zamanı"
|
1441 |
+
|
1442 |
+
# @ broken-link-checker
|
1443 |
+
#: includes/admin/table-printer.php:492
|
1444 |
+
msgid "This link has been broken for %s."
|
1445 |
+
msgstr "Bu bağlantı kesildi için %s."
|
1446 |
+
|
1447 |
+
# @ broken-link-checker
|
1448 |
+
#: includes/admin/table-printer.php:503
|
1449 |
+
msgid "Log"
|
1450 |
+
msgstr "Log"
|
1451 |
+
|
1452 |
+
# @ broken-link-checker
|
1453 |
+
#: includes/admin/table-printer.php:524
|
1454 |
+
msgid "Show more info about this link"
|
1455 |
+
msgstr "Bu bağlantı hakkında daha fazla bilgi göster"
|
1456 |
+
|
1457 |
+
# @ broken-link-checker
|
1458 |
+
#: includes/admin/table-printer.php:542
|
1459 |
+
msgctxt "checked how long ago"
|
1460 |
+
msgid "Checked"
|
1461 |
+
msgstr "Kontrol Edildi."
|
1462 |
+
|
1463 |
+
# @ broken-link-checker
|
1464 |
+
#: includes/admin/table-printer.php:558
|
1465 |
+
msgid "Broken for"
|
1466 |
+
msgstr "Kırık için"
|
1467 |
+
|
1468 |
+
# @ broken-link-checker
|
1469 |
+
#: includes/admin/table-printer.php:578
|
1470 |
+
msgid "Edit link URL"
|
1471 |
+
msgstr "Bağlantı adresini düzenleme"
|
1472 |
+
|
1473 |
+
# @ broken-link-checker
|
1474 |
+
#: includes/admin/table-printer.php:580
|
1475 |
+
msgid "Remove this link from all posts"
|
1476 |
+
msgstr "Bu bağlantının tüm mesajlarını kaldırıldı"
|
1477 |
+
|
1478 |
+
# @ broken-link-checker
|
1479 |
+
#: includes/admin/table-printer.php:586
|
1480 |
+
msgid "Remove this link from the list of broken links and mark it as valid"
|
1481 |
+
msgstr "Kırık bağlantı listesine bu bağlantıyı çıkarın ve geçerli olarak işaretleyin"
|
1482 |
+
|
1483 |
+
# @ broken-link-checker
|
1484 |
+
#: includes/admin/table-printer.php:595
|
1485 |
+
msgid "Cancel URL editing"
|
1486 |
+
msgstr "Adres düzenlemeyi iptal et"
|
1487 |
+
|
1488 |
+
# @ broken-link-checker
|
1489 |
+
#: includes/admin/table-printer.php:602
|
1490 |
+
msgid "Update URL"
|
1491 |
+
msgstr "Adresi güncelle"
|
1492 |
+
|
1493 |
+
# @ broken-link-checker
|
1494 |
+
#: includes/admin/table-printer.php:624
|
1495 |
+
msgid "[An orphaned link! This is a bug.]"
|
1496 |
+
msgstr "[Artık bir bağlantı! Bu bir hatadır.]"
|
1497 |
+
|
1498 |
+
# @ broken-link-checker
|
1499 |
+
#: includes/admin/db-upgrade.php:95
|
1500 |
+
msgid "Failed to delete old DB tables. Database error : %s"
|
1501 |
+
msgstr "Eski DB tablolar silinemedi. Veri tabanı Hatası: %s"
|
1502 |
+
|
1503 |
+
# @ broken-link-checker
|
1504 |
+
#: includes/parsers.php:109
|
1505 |
+
msgid "Editing is not implemented in the '%s' parser"
|
1506 |
+
msgstr "Düzenleme, '% s' ayrıştırıcı içinde uygulanabilir değildir"
|
1507 |
+
|
1508 |
+
# @ broken-link-checker
|
1509 |
+
#: includes/parsers.php:124
|
1510 |
+
msgid "Unlinking is not implemented in the '%s' parser"
|
1511 |
+
msgstr "'% S' ayrıştırıcı bağlantısını kaldırma uygulanabilir değildir"
|
1512 |
+
|
1513 |
+
# @ broken-link-checker
|
1514 |
+
#: includes/link-query.php:25
|
1515 |
+
msgid "Broken"
|
1516 |
+
msgstr "Kırık"
|
1517 |
+
|
1518 |
+
# @ broken-link-checker
|
1519 |
+
#: includes/link-query.php:27
|
1520 |
+
msgid "No broken links found"
|
1521 |
+
msgstr "Kırık bağlantı bulunamadı."
|
1522 |
+
|
1523 |
+
# @ broken-link-checker
|
1524 |
+
#: includes/link-query.php:34
|
1525 |
+
msgid "Redirects"
|
1526 |
+
msgstr "Yönlendirmeler"
|
1527 |
+
|
1528 |
+
# @ broken-link-checker
|
1529 |
+
#: includes/link-query.php:35
|
1530 |
+
msgid "Redirected Links"
|
1531 |
+
msgstr "Yönlendirilen bağlantılar"
|
1532 |
+
|
1533 |
+
# @ broken-link-checker
|
1534 |
+
#: includes/link-query.php:36
|
1535 |
+
msgid "No redirects found"
|
1536 |
+
msgstr "Yönlendirilen bağlantı bulunamadı."
|
1537 |
+
|
1538 |
+
# @ broken-link-checker
|
1539 |
+
#: includes/link-query.php:44
|
1540 |
+
msgid "All"
|
1541 |
+
msgstr "Tüm"
|
1542 |
+
|
1543 |
+
# @ broken-link-checker
|
1544 |
+
#: includes/link-query.php:45
|
1545 |
+
msgid "Detected Links"
|
1546 |
+
msgstr "Bağlantılar bulundu."
|
1547 |
+
|
1548 |
+
# @ broken-link-checker
|
1549 |
+
#: includes/link-query.php:46
|
1550 |
+
msgid "No links found (yet)"
|
1551 |
+
msgstr "Adresler bulunamadı (henüz)"
|
1552 |
+
|
1553 |
+
# @ broken-link-checker
|
1554 |
+
#: includes/link-query.php:54
|
1555 |
+
msgid "Search Results"
|
1556 |
+
msgstr "Arama Sonuçları"
|
1557 |
+
|
1558 |
+
# @ broken-link-checker
|
1559 |
+
#: includes/link-query.php:55
|
1560 |
+
#: includes/link-query.php:102
|
1561 |
+
msgid "No links found for your query"
|
1562 |
+
msgstr "Sorgulamanızda adres bulunamadı"
|
1563 |
+
|
1564 |
+
# @ default
|
1565 |
+
#: includes/any-post.php:427
|
1566 |
+
msgid "Preview “%s”"
|
1567 |
+
msgstr "Önizleme “%s”"
|
1568 |
+
|
1569 |
+
# @ default
|
1570 |
+
#: includes/any-post.php:428
|
1571 |
+
msgid "Preview"
|
1572 |
+
msgstr "Önizleme"
|
1573 |
+
|
1574 |
+
# @ default
|
1575 |
+
#: includes/any-post.php:435
|
1576 |
+
msgid "View “%s”"
|
1577 |
+
msgstr "Görüntüle “%s”"
|
1578 |
+
|
1579 |
+
# @ broken-link-checker
|
1580 |
+
#: includes/any-post.php:529
|
1581 |
+
msgid "Updating post %d failed"
|
1582 |
+
msgstr "Mesaj güncellemesi %d başarısız oldu"
|
1583 |
+
|
1584 |
+
# @ broken-link-checker
|
1585 |
+
#: includes/any-post.php:711
|
1586 |
+
msgid "%d post deleted."
|
1587 |
+
msgid_plural "%d posts deleted."
|
1588 |
+
msgstr[0] "%d mesaj silindi."
|
1589 |
+
msgstr[1] "%d mesajlar silindi."
|
1590 |
+
|
1591 |
+
# @ broken-link-checker
|
1592 |
+
#: includes/any-post.php:713
|
1593 |
+
msgid "%d page deleted."
|
1594 |
+
msgid_plural "%d pages deleted."
|
1595 |
+
msgstr[0] "%d sayfa silindi."
|
1596 |
+
msgstr[1] "%d sayfalar silindi."
|
1597 |
+
|
1598 |
+
# @ broken-link-checker
|
1599 |
+
#: includes/any-post.php:715
|
1600 |
+
msgid "%d \"%s\" deleted."
|
1601 |
+
msgid_plural "%d \"%s\" deleted."
|
1602 |
+
msgstr[0] "%d \"%s\" silindi."
|
1603 |
+
msgstr[1] "%d \"%s\" silindi."
|
1604 |
+
|
1605 |
+
# @ broken-link-checker
|
1606 |
+
#: includes/any-post.php:734
|
1607 |
+
msgid "%d post moved to the Trash."
|
1608 |
+
msgid_plural "%d posts moved to the Trash."
|
1609 |
+
msgstr[0] "%d mesaj çöp kutusuna taşındı."
|
1610 |
+
msgstr[1] "%d mesajlar çöp kutusuna taşındı."
|
1611 |
+
|
1612 |
+
# @ broken-link-checker
|
1613 |
+
#: includes/any-post.php:736
|
1614 |
+
msgid "%d page moved to the Trash."
|
1615 |
+
msgid_plural "%d pages moved to the Trash."
|
1616 |
+
msgstr[0] "%d sayfa çöp kutusuna taşındı."
|
1617 |
+
msgstr[1] "%d sayfalar çöp kutusuna taşındı."
|
1618 |
+
|
1619 |
+
# @ broken-link-checker
|
1620 |
+
#: includes/any-post.php:738
|
1621 |
+
msgid "%d \"%s\" moved to the Trash."
|
1622 |
+
msgid_plural "%d \"%s\" moved to the Trash."
|
1623 |
+
msgstr[0] "%d \"%s\" çöp kutusuna taşındı."
|
1624 |
+
msgstr[1] "%d \"%s\" çöp kutusuna taşındı."
|
1625 |
+
|
1626 |
+
# @ broken-link-checker
|
1627 |
+
#: includes/containers.php:122
|
1628 |
+
msgid "%d '%s' has been deleted"
|
1629 |
+
msgid_plural "%d '%s' have been deleted"
|
1630 |
+
msgstr[0] "%d '%s' silindi."
|
1631 |
+
msgstr[1] "%d '%s' silindi."
|
1632 |
+
|
1633 |
+
# @ broken-link-checker
|
1634 |
+
#: includes/containers.php:873
|
1635 |
+
#: includes/containers.php:891
|
1636 |
+
msgid "Container type '%s' not recognized"
|
1637 |
+
msgstr "Konteyner tipi '%s' tanınmıyor"
|
1638 |
+
|
1639 |
+
# @ broken-link-checker
|
1640 |
+
#: includes/links.php:215
|
1641 |
+
msgid "The plugin script was terminated while trying to check the link."
|
1642 |
+
msgstr "Adresi kontrol etmeye çalıştığınızda eklenti komutu tamamlandı."
|
1643 |
+
|
1644 |
+
# @ broken-link-checker
|
1645 |
+
#: includes/links.php:261
|
1646 |
+
msgid "The plugin doesn't know how to check this type of link."
|
1647 |
+
msgstr "bu bağlantı türünü kontrol etmelisiniz tam olarak ne olduğunu bilmiyor."
|
1648 |
+
|
1649 |
+
# @ broken-link-checker
|
1650 |
+
#: includes/links.php:349
|
1651 |
+
msgid "Link is valid."
|
1652 |
+
msgstr "Bağlantı geçerli."
|
1653 |
+
|
1654 |
+
# @ broken-link-checker
|
1655 |
+
#: includes/links.php:351
|
1656 |
+
msgid "Link is broken."
|
1657 |
+
msgstr "Bağlantı kırık."
|
1658 |
+
|
1659 |
+
# @ broken-link-checker
|
1660 |
+
#: includes/links.php:564
|
1661 |
+
#: includes/links.php:666
|
1662 |
+
#: includes/links.php:693
|
1663 |
+
msgid "Link is not valid"
|
1664 |
+
msgstr "Bağlantı geçerli değil."
|
1665 |
+
|
1666 |
+
# @ broken-link-checker
|
1667 |
+
#: includes/links.php:581
|
1668 |
+
msgid "This link can not be edited because it is not used anywhere on this site."
|
1669 |
+
msgstr "Bu bağlantı, bu sitede herhangi bir yerde kullanılmaz, çünkü düzenlenemez."
|
1670 |
+
|
1671 |
+
# @ broken-link-checker
|
1672 |
+
#: includes/links.php:607
|
1673 |
+
msgid "Failed to create a DB entry for the new URL."
|
1674 |
+
msgstr "Yeni bir adres için bir veritabanı girişi oluşturulamadı."
|
1675 |
+
|
1676 |
+
# @ broken-link-checker
|
1677 |
+
#: includes/links.php:673
|
1678 |
+
msgid "This link is not a redirect"
|
1679 |
+
msgstr "Bu bağlantı yönlendirilemez."
|
1680 |
+
|
1681 |
+
# @ broken-link-checker
|
1682 |
+
#: includes/links.php:720
|
1683 |
+
#: includes/links.php:757
|
1684 |
+
msgid "Couldn't delete the link's database record"
|
1685 |
+
msgstr "Bağlantı veritabanına kayıt silinemedi"
|
1686 |
+
|
1687 |
+
# @ broken-link-checker
|
1688 |
+
#: includes/links.php:831
|
1689 |
+
msgctxt "link status"
|
1690 |
+
msgid "Unknown"
|
1691 |
+
msgstr "Bilinmeyen"
|
1692 |
+
|
1693 |
+
# @ broken-link-checker
|
1694 |
+
#: includes/links.php:869
|
1695 |
+
msgid "Not checked"
|
1696 |
+
msgstr "Kontrol edilmez"
|
1697 |
+
|
1698 |
+
# @ broken-link-checker
|
1699 |
+
#: includes/links.php:872
|
1700 |
+
msgid "False positive"
|
1701 |
+
msgstr "Yanlış pozitif"
|
1702 |
+
|
1703 |
+
# @ broken-link-checker
|
1704 |
+
#: includes/extra-strings.php:2
|
1705 |
+
msgctxt "module name"
|
1706 |
+
msgid "Basic HTTP"
|
1707 |
+
msgstr "Basit HTTP"
|
1708 |
+
|
1709 |
+
# @ broken-link-checker
|
1710 |
+
#: includes/extra-strings.php:3
|
1711 |
+
msgctxt "module name"
|
1712 |
+
msgid "Blogroll items"
|
1713 |
+
msgstr "Blogroll öğeleri"
|
1714 |
+
|
1715 |
+
# @ broken-link-checker
|
1716 |
+
#: includes/extra-strings.php:4
|
1717 |
+
msgctxt "module name"
|
1718 |
+
msgid "Comments"
|
1719 |
+
msgstr "Yorumlar"
|
1720 |
+
|
1721 |
+
# @ broken-link-checker
|
1722 |
+
#: includes/extra-strings.php:5
|
1723 |
+
msgctxt "module name"
|
1724 |
+
msgid "Custom fields"
|
1725 |
+
msgstr "Özel alanlar"
|
1726 |
+
|
1727 |
+
# @ broken-link-checker
|
1728 |
+
#: includes/extra-strings.php:6
|
1729 |
+
msgctxt "module name"
|
1730 |
+
msgid "Embedded DailyMotion videos"
|
1731 |
+
msgstr "Gömülü DailyMotion Videolar"
|
1732 |
+
|
1733 |
+
# @ broken-link-checker
|
1734 |
+
#: includes/extra-strings.php:7
|
1735 |
+
msgctxt "module name"
|
1736 |
+
msgid "Embedded Vimeo videos"
|
1737 |
+
msgstr "Gömülü Vimeo Videolar"
|
1738 |
+
|
1739 |
+
# @ broken-link-checker
|
1740 |
+
#: includes/extra-strings.php:8
|
1741 |
+
msgctxt "module name"
|
1742 |
+
msgid "Embedded YouTube videos"
|
1743 |
+
msgstr "Gömülü YouTube Videolar"
|
1744 |
+
|
1745 |
+
# @ broken-link-checker
|
1746 |
+
#: includes/extra-strings.php:9
|
1747 |
+
msgctxt "module name"
|
1748 |
+
msgid "Embedded YouTube videos (old embed code)"
|
1749 |
+
msgstr "Gömülü YouTube Videolar (Eski Gömülü Kod)"
|
1750 |
+
|
1751 |
+
# @ broken-link-checker
|
1752 |
+
#: includes/extra-strings.php:10
|
1753 |
+
msgctxt "module name"
|
1754 |
+
msgid "HTML images"
|
1755 |
+
msgstr "HTML Resimler"
|
1756 |
+
|
1757 |
+
# @ broken-link-checker
|
1758 |
+
#: includes/extra-strings.php:11
|
1759 |
+
msgctxt "module name"
|
1760 |
+
msgid "HTML links"
|
1761 |
+
msgstr "HTML Bağlantılar"
|
1762 |
+
|
1763 |
+
# @ broken-link-checker
|
1764 |
+
#: includes/extra-strings.php:12
|
1765 |
+
msgctxt "module name"
|
1766 |
+
msgid "MediaFire API"
|
1767 |
+
msgstr "MediaFire API"
|
1768 |
+
|
1769 |
+
# @ broken-link-checker
|
1770 |
+
#: includes/extra-strings.php:13
|
1771 |
+
msgctxt "module name"
|
1772 |
+
msgid "MegaUpload API"
|
1773 |
+
msgstr "MegaUpload API"
|
1774 |
+
|
1775 |
+
# @ broken-link-checker
|
1776 |
+
#: includes/extra-strings.php:14
|
1777 |
+
msgctxt "module name"
|
1778 |
+
msgid "Plaintext URLs"
|
1779 |
+
msgstr "Klartext Adresler"
|
1780 |
+
|
1781 |
+
# @ broken-link-checker
|
1782 |
+
#: includes/extra-strings.php:15
|
1783 |
+
msgctxt "module name"
|
1784 |
+
msgid "RapidShare API"
|
1785 |
+
msgstr "RapidShare API"
|
1786 |
+
|
1787 |
+
# @ broken-link-checker
|
1788 |
+
#: includes/extra-strings.php:16
|
1789 |
+
msgctxt "module name"
|
1790 |
+
msgid "YouTube API"
|
1791 |
+
msgstr "YouTube API"
|
1792 |
+
|
1793 |
+
# @ broken-link-checker
|
1794 |
+
#: includes/extra-strings.php:17
|
1795 |
+
msgctxt "module name"
|
1796 |
+
msgid "Posts"
|
1797 |
+
msgstr "Mesajlar"
|
1798 |
+
|
1799 |
+
# @ broken-link-checker
|
1800 |
+
#: includes/extra-strings.php:18
|
1801 |
+
msgctxt "module name"
|
1802 |
+
msgid "Pages"
|
1803 |
+
msgstr "Sayfalar"
|
1804 |
+
|
1805 |
+
# @ default
|
1806 |
+
#: includes/utility-class.php:244
|
1807 |
+
msgid "%d second"
|
1808 |
+
msgid_plural "%d seconds"
|
1809 |
+
msgstr[0] "%s Saniye"
|
1810 |
+
msgstr[1] "%s Saniye"
|
1811 |
+
|
1812 |
+
# @ default
|
1813 |
+
#: includes/utility-class.php:245
|
1814 |
+
msgid "%d second ago"
|
1815 |
+
msgid_plural "%d seconds ago"
|
1816 |
+
msgstr[0] "Kalan saniye %s"
|
1817 |
+
msgstr[1] "Kalan saniye %s"
|
1818 |
+
|
1819 |
+
# @ default
|
1820 |
+
#: includes/utility-class.php:248
|
1821 |
+
msgid "%d minute"
|
1822 |
+
msgid_plural "%d minutes"
|
1823 |
+
msgstr[0] "%d Dakika"
|
1824 |
+
msgstr[1] "%d Dakika"
|
1825 |
+
|
1826 |
+
# @ default
|
1827 |
+
#: includes/utility-class.php:249
|
1828 |
+
msgid "%d minute ago"
|
1829 |
+
msgid_plural "%d minutes ago"
|
1830 |
+
msgstr[0] "Kalan Dakika %d"
|
1831 |
+
msgstr[1] "Kalan Dakika %d"
|
1832 |
+
|
1833 |
+
# @ default
|
1834 |
+
#: includes/utility-class.php:252
|
1835 |
+
msgid "%d hour"
|
1836 |
+
msgid_plural "%d hours"
|
1837 |
+
msgstr[0] "%d Saat"
|
1838 |
+
msgstr[1] "%d Saat"
|
1839 |
+
|
1840 |
+
# @ default
|
1841 |
+
#: includes/utility-class.php:253
|
1842 |
+
msgid "%d hour ago"
|
1843 |
+
msgid_plural "%d hours ago"
|
1844 |
+
msgstr[0] "%d Stunde vergangen"
|
1845 |
+
msgstr[1] "Kalan saat %d "
|
1846 |
+
|
1847 |
+
# @ default
|
1848 |
+
#: includes/utility-class.php:256
|
1849 |
+
msgid "%d day"
|
1850 |
+
msgid_plural "%d days"
|
1851 |
+
msgstr[0] "%d Gün"
|
1852 |
+
msgstr[1] "%d Gün"
|
1853 |
+
|
1854 |
+
# @ default
|
1855 |
+
#: includes/utility-class.php:257
|
1856 |
+
msgid "%d day ago"
|
1857 |
+
msgid_plural "%d days ago"
|
1858 |
+
msgstr[0] "Kontrol için %d gün kaldı. "
|
1859 |
+
msgstr[1] "Kontrol için %d gün kaldı. "
|
1860 |
+
|
1861 |
+
# @ default
|
1862 |
+
#: includes/utility-class.php:260
|
1863 |
+
msgid "%d month"
|
1864 |
+
msgid_plural "%d months"
|
1865 |
+
msgstr[0] "%d Ay"
|
1866 |
+
msgstr[1] "%d Ay"
|
1867 |
+
|
1868 |
+
# @ default
|
1869 |
+
#: includes/utility-class.php:261
|
1870 |
+
msgid "%d month ago"
|
1871 |
+
msgid_plural "%d months ago"
|
1872 |
+
msgstr[0] "Kalan ay %d"
|
1873 |
+
msgstr[1] "Kalan ay %d"
|
1874 |
+
|
1875 |
+
# @ broken-link-checker
|
1876 |
+
#: includes/instances.php:102
|
1877 |
+
#: includes/instances.php:158
|
1878 |
+
msgid "Container %s[%d] not found"
|
1879 |
+
msgstr "konteynerr %s[%d] Bulunamadı"
|
1880 |
+
|
1881 |
+
# @ broken-link-checker
|
1882 |
+
#: includes/instances.php:111
|
1883 |
+
#: includes/instances.php:167
|
1884 |
+
msgid "Parser '%s' not found."
|
1885 |
+
msgstr "Ayrıştırıcı '%s' Bulunamadı."
|
1886 |
+
|
1887 |
+
#. Plugin URI of the plugin/theme
|
1888 |
+
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1889 |
+
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1890 |
+
|
1891 |
+
#. Description of the plugin/theme
|
1892 |
+
msgid "Checks your blog for broken links and missing images and notifies you on the dashboard if any are found."
|
1893 |
+
msgstr "Kırık bağlantıları ve eksik görüntüler blogunuza denetler ve herhangi biri varsa, pano sizi uyarır."
|
1894 |
+
|
1895 |
+
#. Author of the plugin/theme
|
1896 |
+
msgid "Janis Elsts"
|
1897 |
+
msgstr "Çeviren: Murat DURGUN"
|
1898 |
+
|
1899 |
+
#. Author URI of the plugin/theme
|
1900 |
+
msgid "http://w-shadow.com/blog/"
|
1901 |
+
msgstr "http://www.lanwifi.net/"
|
1902 |
+
|
languages/broken-link-checker.pot
CHANGED
@@ -1,649 +1,357 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Broken Link Checker package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Broken Link Checker 1.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#:
|
16 |
-
msgid "
|
17 |
msgstr ""
|
18 |
|
19 |
-
#:
|
20 |
-
msgid "
|
21 |
msgstr ""
|
22 |
|
23 |
-
#:
|
24 |
-
msgid "
|
25 |
msgstr ""
|
26 |
|
27 |
-
#:
|
28 |
-
msgid "
|
29 |
msgstr ""
|
30 |
|
31 |
-
#:
|
32 |
-
msgid "
|
33 |
msgstr ""
|
34 |
|
35 |
-
#:
|
36 |
-
|
37 |
-
msgid "Edit"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#:
|
41 |
-
msgid "
|
42 |
msgstr ""
|
43 |
|
44 |
-
#:
|
45 |
-
msgid "
|
46 |
msgstr ""
|
47 |
|
48 |
-
#:
|
49 |
-
msgid "
|
50 |
msgstr ""
|
51 |
|
52 |
-
#:
|
53 |
-
|
54 |
-
msgid "Delete"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#:
|
58 |
-
msgid "
|
59 |
msgstr ""
|
60 |
|
61 |
-
#:
|
62 |
-
|
63 |
-
|
|
|
64 |
msgstr ""
|
65 |
|
66 |
-
#:
|
67 |
-
msgid "
|
68 |
msgstr ""
|
69 |
|
70 |
-
#:
|
71 |
-
msgid ""
|
72 |
-
"Can't move post \"%s\" (%d) to the trash because the trash feature is "
|
73 |
-
"disabled"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#:
|
77 |
-
msgid "
|
78 |
msgstr ""
|
79 |
|
80 |
-
#:
|
81 |
-
msgid "
|
82 |
msgstr ""
|
83 |
|
84 |
-
#:
|
85 |
-
msgid "
|
86 |
msgstr ""
|
87 |
|
88 |
-
#:
|
89 |
-
msgid ""
|
90 |
-
"You are about to delete this link '%s'\n"
|
91 |
-
" 'Cancel' to stop, 'OK' to delete."
|
92 |
msgstr ""
|
93 |
|
94 |
-
#:
|
95 |
-
|
96 |
-
msgid "Nothing to update"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#:
|
100 |
-
msgid "
|
101 |
msgstr ""
|
102 |
|
103 |
-
#:
|
104 |
-
msgid "
|
105 |
msgstr ""
|
106 |
|
107 |
-
#:
|
108 |
-
msgid "
|
109 |
-
msgid_plural "%d blogroll links deleted."
|
110 |
-
msgstr[0] ""
|
111 |
-
msgstr[1] ""
|
112 |
-
|
113 |
-
#: modules/containers/comment.php:53
|
114 |
-
msgid "Updating comment %d failed"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#:
|
118 |
-
msgid "
|
119 |
msgstr ""
|
120 |
|
121 |
-
#:
|
122 |
-
msgid "
|
123 |
msgstr ""
|
124 |
|
125 |
-
#:
|
126 |
-
msgid "
|
127 |
msgstr ""
|
128 |
|
129 |
-
#:
|
130 |
-
msgid "
|
131 |
msgstr ""
|
132 |
|
133 |
-
#:
|
134 |
-
msgid "
|
135 |
msgstr ""
|
136 |
|
137 |
-
#:
|
138 |
-
|
139 |
-
|
|
|
140 |
msgstr ""
|
141 |
|
142 |
-
#:
|
143 |
-
msgid "
|
144 |
msgstr ""
|
145 |
|
146 |
-
#:
|
147 |
-
msgid "
|
148 |
msgstr ""
|
149 |
|
150 |
-
#:
|
151 |
-
msgid "
|
152 |
-
msgid_plural "%d comments have been deleted."
|
153 |
-
msgstr[0] ""
|
154 |
-
msgstr[1] ""
|
155 |
-
|
156 |
-
#: modules/containers/comment.php:374
|
157 |
-
msgid "%d comment moved to the Trash."
|
158 |
-
msgid_plural "%d comments moved to the Trash."
|
159 |
-
msgstr[0] ""
|
160 |
-
msgstr[1] ""
|
161 |
-
|
162 |
-
#: modules/checkers/http.php:242
|
163 |
-
msgid "Server Not Found"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#:
|
167 |
-
msgid "
|
168 |
msgstr ""
|
169 |
|
170 |
-
#:
|
171 |
-
|
172 |
-
msgid "Unknown Error"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#:
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#:
|
180 |
-
msgid "
|
181 |
msgstr ""
|
182 |
|
183 |
-
#:
|
184 |
-
msgid "
|
185 |
msgstr ""
|
186 |
|
187 |
-
#:
|
188 |
-
msgid "
|
189 |
msgstr ""
|
190 |
|
191 |
-
#:
|
192 |
-
msgid "
|
193 |
msgstr ""
|
194 |
|
195 |
-
#:
|
196 |
-
msgid "
|
197 |
msgstr ""
|
198 |
|
199 |
-
#:
|
200 |
-
msgid "
|
201 |
msgstr ""
|
202 |
|
203 |
-
#:
|
204 |
-
msgid "
|
205 |
msgstr ""
|
206 |
|
207 |
-
#:
|
208 |
-
msgid "
|
209 |
msgstr ""
|
210 |
|
211 |
-
#:
|
212 |
-
msgid "
|
213 |
msgstr ""
|
214 |
|
215 |
-
#:
|
216 |
-
msgid "
|
217 |
msgstr ""
|
218 |
|
219 |
-
#:
|
220 |
-
|
221 |
-
|
222 |
msgstr ""
|
223 |
|
224 |
-
#:
|
225 |
-
|
226 |
-
#: includes/links.php:875
|
227 |
-
msgctxt "link status"
|
228 |
-
msgid "OK"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#:
|
232 |
-
msgid "
|
233 |
msgstr ""
|
234 |
|
235 |
-
#:
|
236 |
-
msgid "
|
237 |
msgstr ""
|
238 |
|
239 |
-
#:
|
240 |
-
msgid "
|
241 |
msgstr ""
|
242 |
|
243 |
-
#:
|
244 |
-
msgid "
|
245 |
msgstr ""
|
246 |
|
247 |
-
#:
|
248 |
-
msgid "
|
249 |
msgstr ""
|
250 |
|
251 |
-
#:
|
252 |
-
msgid ""
|
253 |
-
"Embedded videos can't be edited using Broken Link Checker. Please edit or "
|
254 |
-
"replace the video in question manually."
|
255 |
msgstr ""
|
256 |
|
257 |
-
#:
|
258 |
-
msgid "
|
259 |
msgstr ""
|
260 |
|
261 |
-
#:
|
262 |
-
msgid "
|
|
|
|
|
|
|
|
|
263 |
msgstr ""
|
264 |
|
265 |
-
#:
|
266 |
-
msgid "
|
267 |
msgstr ""
|
268 |
|
269 |
-
#:
|
270 |
-
msgid "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#:
|
274 |
-
msgid "
|
|
|
|
|
275 |
msgstr ""
|
276 |
|
277 |
-
#:
|
278 |
-
msgid "
|
279 |
msgstr ""
|
280 |
|
281 |
-
#:
|
282 |
-
msgid "
|
|
|
|
|
283 |
msgstr ""
|
284 |
|
285 |
-
#:
|
286 |
-
msgid "
|
287 |
msgstr ""
|
288 |
|
289 |
-
#:
|
290 |
-
msgid "
|
291 |
msgstr ""
|
292 |
|
293 |
-
#:
|
294 |
-
msgid "
|
|
|
|
|
295 |
msgstr ""
|
296 |
|
297 |
-
#:
|
298 |
-
msgid "
|
299 |
msgstr ""
|
300 |
|
301 |
-
#:
|
302 |
-
msgid "
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: core/
|
306 |
-
msgid "
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: core/
|
310 |
-
msgid "
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: core/
|
314 |
-
msgid ""
|
315 |
-
"Broken Link Checker installation failed. Try deactivating and then "
|
316 |
-
"reactivating the plugin."
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: core/core.php:
|
320 |
-
msgid "
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: core/core.php:
|
324 |
-
msgid "
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: core/core.php:
|
328 |
-
msgid "
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: core/core.php:
|
332 |
-
msgid "
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: core/core.php:
|
336 |
-
msgid "Link Checker"
|
337 |
-
msgstr ""
|
338 |
-
|
339 |
-
#: core/core.php:291 includes/link-query.php:26
|
340 |
-
msgid "Broken Links"
|
341 |
-
msgstr ""
|
342 |
-
|
343 |
-
#: core/core.php:307
|
344 |
-
msgid "View Broken Links"
|
345 |
-
msgstr ""
|
346 |
-
|
347 |
-
#: core/core.php:322
|
348 |
-
msgid "Feedback"
|
349 |
-
msgstr ""
|
350 |
-
|
351 |
-
#: core/core.php:330 includes/admin/sidebar.php:50
|
352 |
-
msgid "More plugins by Janis Elsts"
|
353 |
-
msgstr ""
|
354 |
-
|
355 |
-
#: core/core.php:337
|
356 |
-
msgid "Go to Broken Links"
|
357 |
-
msgstr ""
|
358 |
-
|
359 |
-
#: core/core.php:366
|
360 |
-
msgid "Settings"
|
361 |
-
msgstr ""
|
362 |
-
|
363 |
-
#: core/core.php:378 core/core.php:1160
|
364 |
-
msgid ""
|
365 |
-
"Error: The plugin's database tables are not up to date! (Current version : %"
|
366 |
-
"d, expected : %d)"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: core/core.php:382 core/core.php:1164
|
370 |
-
msgid "Try deactivating and then reactivating the plugin."
|
371 |
-
msgstr ""
|
372 |
-
|
373 |
-
#: core/core.php:521
|
374 |
-
msgid "Settings saved."
|
375 |
-
msgstr ""
|
376 |
-
|
377 |
-
#: core/core.php:527
|
378 |
-
msgid "Thank you for your donation!"
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: core/core.php:534
|
382 |
-
msgid "Complete site recheck started."
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: core/core.php:543
|
386 |
-
msgid "Details"
|
387 |
-
msgstr ""
|
388 |
-
|
389 |
-
#: core/core.php:557
|
390 |
-
msgid "General"
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
#: core/core.php:558
|
394 |
-
msgid "Look For Links In"
|
395 |
-
msgstr ""
|
396 |
-
|
397 |
-
#: core/core.php:559
|
398 |
-
msgid "Which Links To Check"
|
399 |
-
msgstr ""
|
400 |
-
|
401 |
-
#: core/core.php:560
|
402 |
-
msgid "Protocols & APIs"
|
403 |
-
msgstr ""
|
404 |
-
|
405 |
-
#: core/core.php:561
|
406 |
-
msgid "Advanced"
|
407 |
-
msgstr ""
|
408 |
-
|
409 |
-
#: core/core.php:576
|
410 |
-
msgid "Broken Link Checker Options"
|
411 |
-
msgstr ""
|
412 |
-
|
413 |
-
#: core/core.php:618 includes/admin/table-printer.php:195
|
414 |
-
msgid "Status"
|
415 |
-
msgstr ""
|
416 |
-
|
417 |
-
#: core/core.php:620 includes/admin/options-page-js.php:56
|
418 |
-
msgid "Show debug info"
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#: core/core.php:648
|
422 |
-
msgid "Check each link"
|
423 |
-
msgstr ""
|
424 |
-
|
425 |
-
#: core/core.php:653
|
426 |
-
msgid "Every %s hours"
|
427 |
-
msgstr ""
|
428 |
-
|
429 |
-
#: core/core.php:662
|
430 |
-
msgid ""
|
431 |
-
"Existing links will be checked this often. New links will usually be checked "
|
432 |
-
"ASAP."
|
433 |
-
msgstr ""
|
434 |
-
|
435 |
-
#: core/core.php:669
|
436 |
-
msgid "E-mail notifications"
|
437 |
-
msgstr ""
|
438 |
-
|
439 |
-
#: core/core.php:675
|
440 |
-
msgid "Send me e-mail notifications about newly detected broken links"
|
441 |
-
msgstr ""
|
442 |
-
|
443 |
-
#: core/core.php:683
|
444 |
-
msgid "Send authors e-mail notifications about broken links in their posts"
|
445 |
-
msgstr ""
|
446 |
-
|
447 |
-
#: core/core.php:690
|
448 |
-
msgid "Link tweaks"
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: core/core.php:696
|
452 |
-
msgid "Apply custom formatting to broken links"
|
453 |
-
msgstr ""
|
454 |
-
|
455 |
-
#: core/core.php:700 core/core.php:728
|
456 |
-
msgid "Edit CSS"
|
457 |
-
msgstr ""
|
458 |
-
|
459 |
-
#: core/core.php:724
|
460 |
-
msgid "Apply custom formatting to removed links"
|
461 |
-
msgstr ""
|
462 |
-
|
463 |
-
#: core/core.php:752
|
464 |
-
msgid "Stop search engines from following broken links"
|
465 |
-
msgstr ""
|
466 |
-
|
467 |
-
#: core/core.php:769
|
468 |
-
msgid "Look for links in"
|
469 |
-
msgstr ""
|
470 |
-
|
471 |
-
#: core/core.php:780
|
472 |
-
msgid "Post statuses"
|
473 |
-
msgstr ""
|
474 |
-
|
475 |
-
#: core/core.php:813
|
476 |
-
msgid "Link types"
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: core/core.php:819
|
480 |
-
msgid "Error : All link parsers missing!"
|
481 |
-
msgstr ""
|
482 |
-
|
483 |
-
#: core/core.php:826
|
484 |
-
msgid "Exclusion list"
|
485 |
-
msgstr ""
|
486 |
-
|
487 |
-
#: core/core.php:827
|
488 |
-
msgid ""
|
489 |
-
"Don't check links where the URL contains any of these words (one per line) :"
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
#: core/core.php:845
|
493 |
-
msgid "Check links using"
|
494 |
-
msgstr ""
|
495 |
-
|
496 |
-
#: core/core.php:864 includes/links.php:849
|
497 |
-
msgid "Timeout"
|
498 |
-
msgstr ""
|
499 |
-
|
500 |
-
#: core/core.php:870 core/core.php:916 core/core.php:2725
|
501 |
-
msgid "%s seconds"
|
502 |
-
msgstr ""
|
503 |
-
|
504 |
-
#: core/core.php:879
|
505 |
-
msgid "Links that take longer than this to load will be marked as broken."
|
506 |
-
msgstr ""
|
507 |
-
|
508 |
-
#: core/core.php:886
|
509 |
-
msgid "Link monitor"
|
510 |
-
msgstr ""
|
511 |
-
|
512 |
-
#: core/core.php:894
|
513 |
-
msgid "Run continuously while the Dashboard is open"
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: core/core.php:902
|
517 |
-
msgid "Run hourly in the background"
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: core/core.php:910
|
521 |
-
msgid "Max. execution time"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: core/core.php:927
|
525 |
-
msgid ""
|
526 |
-
"The plugin works by periodically launching a background job that parses your "
|
527 |
-
"posts for links, checks the discovered URLs, and performs other time-"
|
528 |
-
"consuming tasks. Here you can set for how long, at most, the link monitor "
|
529 |
-
"may run each time before stopping."
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
-
#: core/core.php:936
|
533 |
-
msgid "Server load limit"
|
534 |
-
msgstr ""
|
535 |
-
|
536 |
-
#: core/core.php:951
|
537 |
-
msgid "Current load : %s"
|
538 |
-
msgstr ""
|
539 |
-
|
540 |
-
#: core/core.php:956
|
541 |
-
msgid ""
|
542 |
-
"Link checking will be suspended if the average <a href=\"%s\">server load</"
|
543 |
-
"a> rises above this number. Leave this field blank to disable load limiting."
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: core/core.php:965
|
547 |
-
msgid "Not available"
|
548 |
-
msgstr ""
|
549 |
-
|
550 |
-
#: core/core.php:967
|
551 |
-
msgid ""
|
552 |
-
"Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
|
553 |
-
"code> is present and accessible."
|
554 |
-
msgstr ""
|
555 |
-
|
556 |
-
#: core/core.php:975
|
557 |
-
msgid "Forced recheck"
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
#: core/core.php:978
|
561 |
-
msgid "Re-check all pages"
|
562 |
-
msgstr ""
|
563 |
-
|
564 |
-
#: core/core.php:982
|
565 |
-
msgid ""
|
566 |
-
"The \"Nuclear Option\". Click this button to make the plugin empty its link "
|
567 |
-
"database and recheck the entire site from scratch."
|
568 |
-
msgstr ""
|
569 |
-
|
570 |
-
#: core/core.php:993
|
571 |
-
msgid "Save Changes"
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
#: core/core.php:1044
|
575 |
-
msgid "Configure"
|
576 |
-
msgstr ""
|
577 |
-
|
578 |
-
#: core/core.php:1126
|
579 |
-
msgid "Check URLs entered in these custom fields (one per line) :"
|
580 |
-
msgstr ""
|
581 |
-
|
582 |
-
#: core/core.php:1263 core/core.php:1344 core/core.php:1376
|
583 |
-
msgid "Database error : %s"
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#: core/core.php:1326
|
587 |
-
msgid "You must enter a filter name!"
|
588 |
-
msgstr ""
|
589 |
-
|
590 |
-
#: core/core.php:1330
|
591 |
-
msgid "Invalid search query."
|
592 |
-
msgstr ""
|
593 |
-
|
594 |
-
#: core/core.php:1339
|
595 |
-
msgid "Filter \"%s\" created"
|
596 |
-
msgstr ""
|
597 |
-
|
598 |
-
#: core/core.php:1366
|
599 |
-
msgid "Filter ID not specified."
|
600 |
-
msgstr ""
|
601 |
-
|
602 |
-
#: core/core.php:1373
|
603 |
-
msgid "Filter deleted"
|
604 |
-
msgstr ""
|
605 |
-
|
606 |
-
#: core/core.php:1420
|
607 |
msgid "Replaced %d redirect with a direct link"
|
608 |
msgid_plural "Replaced %d redirects with direct links"
|
609 |
msgstr[0] ""
|
610 |
msgstr[1] ""
|
611 |
|
612 |
-
#: core/core.php:
|
613 |
msgid "Failed to fix %d redirect"
|
614 |
msgid_plural "Failed to fix %d redirects"
|
615 |
msgstr[0] ""
|
616 |
msgstr[1] ""
|
617 |
|
618 |
-
#: core/core.php:
|
619 |
msgid "None of the selected links are redirects!"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: core/core.php:
|
623 |
msgid "%d link updated."
|
624 |
msgid_plural "%d links updated."
|
625 |
msgstr[0] ""
|
626 |
msgstr[1] ""
|
627 |
|
628 |
-
#: core/core.php:
|
629 |
msgid "Failed to update %d link."
|
630 |
msgid_plural "Failed to update %d links."
|
631 |
msgstr[0] ""
|
632 |
msgstr[1] ""
|
633 |
|
634 |
-
#: core/core.php:
|
635 |
msgid "%d link removed"
|
636 |
msgid_plural "%d links removed"
|
637 |
msgstr[0] ""
|
638 |
msgstr[1] ""
|
639 |
|
640 |
-
#: core/core.php:
|
641 |
msgid "Failed to remove %d link"
|
642 |
msgid_plural "Failed to remove %d links"
|
643 |
msgstr[0] ""
|
644 |
msgstr[1] ""
|
645 |
|
646 |
-
#: core/core.php:
|
647 |
msgid ""
|
648 |
"%d item was skipped because it can't be moved to the Trash. You need to "
|
649 |
"delete it manually."
|
@@ -653,267 +361,285 @@ msgid_plural ""
|
|
653 |
msgstr[0] ""
|
654 |
msgstr[1] ""
|
655 |
|
656 |
-
#: core/core.php:
|
657 |
msgid "Didn't find anything to delete!"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: core/core.php:
|
661 |
msgid "%d link scheduled for rechecking"
|
662 |
msgid_plural "%d links scheduled for rechecking"
|
663 |
msgstr[0] ""
|
664 |
msgstr[1] ""
|
665 |
|
666 |
-
#: core/core.php:
|
667 |
msgid "This link was manually marked as working by the user."
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: core/core.php:
|
671 |
msgid "Couldn't modify link %d"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: core/core.php:
|
675 |
msgid "%d link marked as not broken"
|
676 |
msgid_plural "%d links marked as not broken"
|
677 |
msgstr[0] ""
|
678 |
msgstr[1] ""
|
679 |
|
680 |
-
#: core/core.php:
|
681 |
msgid "Table columns"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: core/core.php:
|
685 |
msgid "Show on screen"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: core/core.php:
|
689 |
msgid "links"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: core/core.php:
|
693 |
msgid "Apply"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: core/core.php:
|
697 |
msgid "Misc"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: core/core.php:
|
701 |
msgid "Highlight links broken for at least %s days"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: core/core.php:
|
705 |
msgid "Color-code status codes"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: core/core.php:
|
709 |
msgid "You're not allowed to do that!"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: core/core.php:
|
713 |
msgid "View broken links"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: core/core.php:
|
717 |
msgid "Found %d broken link"
|
718 |
msgid_plural "Found %d broken links"
|
719 |
msgstr[0] ""
|
720 |
msgstr[1] ""
|
721 |
|
722 |
-
#: core/core.php:
|
723 |
msgid "No broken links found."
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: core/core.php:
|
727 |
msgid "%d URL in the work queue"
|
728 |
msgid_plural "%d URLs in the work queue"
|
729 |
msgstr[0] ""
|
730 |
msgstr[1] ""
|
731 |
|
732 |
-
#: core/core.php:
|
733 |
msgid "No URLs in the work queue."
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: core/core.php:
|
737 |
msgid "Detected %d unique URL"
|
738 |
msgid_plural "Detected %d unique URLs"
|
739 |
msgstr[0] ""
|
740 |
msgstr[1] ""
|
741 |
|
742 |
-
#: core/core.php:
|
743 |
msgid "in %d link"
|
744 |
msgid_plural "in %d links"
|
745 |
msgstr[0] ""
|
746 |
msgstr[1] ""
|
747 |
|
748 |
-
#: core/core.php:
|
749 |
msgid "and still searching..."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: core/core.php:
|
753 |
msgid "Searching your blog for links..."
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: core/core.php:
|
757 |
msgid "No links detected."
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: core/core.php:
|
761 |
msgctxt "current load"
|
762 |
msgid "Unknown"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: core/core.php:
|
766 |
msgid "Oops, I can't find the link %d"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: core/core.php:
|
770 |
msgid "Oops, couldn't modify the link!"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: core/core.php:
|
774 |
msgid "Error : link_id not specified"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: core/core.php:
|
778 |
msgid "Oops, the new URL is invalid!"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: core/core.php:
|
782 |
msgid "An unexpected error occured!"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: core/core.php:
|
786 |
msgid "Error : link_id or new_url not specified"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: core/core.php:
|
790 |
msgid "You don't have sufficient privileges to access this information!"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: core/core.php:
|
794 |
msgid "Error : link ID not specified"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: core/core.php:
|
798 |
msgid "Failed to load link details (%s)"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.
|
802 |
#. Plugin Name of the plugin/theme
|
803 |
-
#: core/core.php:
|
804 |
msgid "Broken Link Checker"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: core/core.php:
|
808 |
msgid "PHP version"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: core/core.php:
|
812 |
msgid "MySQL version"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: core/core.php:
|
816 |
msgid ""
|
817 |
"You have an old version of CURL. Redirect detection may not work properly."
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: core/core.php:
|
821 |
msgid "Not installed"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: core/core.php:
|
825 |
msgid "CURL version"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: core/core.php:
|
829 |
msgid "Installed"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: core/core.php:
|
833 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: core/core.php:
|
837 |
msgid "On"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: core/core.php:
|
841 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: core/core.php:
|
845 |
msgid "Off"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: core/core.php:
|
849 |
msgid "On ( %s )"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: core/core.php:
|
853 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: core/core.php:
|
857 |
msgid ""
|
858 |
"If this value is zero even after several page reloads you have probably "
|
859 |
"encountered a bug."
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: core/core.php:
|
863 |
msgid "[%s] Broken links detected"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: core/core.php:
|
867 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
868 |
msgid_plural ""
|
869 |
"Broken Link Checker has detected %d new broken links on your site."
|
870 |
msgstr[0] ""
|
871 |
msgstr[1] ""
|
872 |
|
873 |
-
#: core/core.php:
|
874 |
msgid "Here's a list of the first %d broken links:"
|
875 |
msgid_plural "Here's a list of the first %d broken links:"
|
876 |
msgstr[0] ""
|
877 |
msgstr[1] ""
|
878 |
|
879 |
-
#: core/core.php:
|
880 |
msgid "Here's a list of the new broken links: "
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: core/core.php:
|
884 |
msgid "Link text : %s"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: core/core.php:
|
888 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: core/core.php:
|
892 |
msgid "Source : %s"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: core/core.php:
|
896 |
msgid "You can see all broken links here:"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: core/core.php:
|
900 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
901 |
msgid_plural ""
|
902 |
"Broken Link Checker has detected %d new broken links in your posts."
|
903 |
msgstr[0] ""
|
904 |
msgstr[1] ""
|
905 |
|
906 |
-
#:
|
907 |
-
msgid "
|
908 |
msgstr ""
|
909 |
|
910 |
-
#:
|
911 |
-
msgid "
|
912 |
msgstr ""
|
913 |
|
914 |
-
#:
|
915 |
-
msgid "
|
916 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
917 |
|
918 |
#: includes/admin/links-page-js.php:219
|
919 |
msgid ""
|
@@ -977,6 +703,10 @@ msgstr ""
|
|
977 |
msgid "Select one or more links to edit."
|
978 |
msgstr ""
|
979 |
|
|
|
|
|
|
|
|
|
980 |
#: includes/admin/search-form.php:16
|
981 |
msgid "Save This Search As a Filter"
|
982 |
msgstr ""
|
@@ -1026,24 +756,20 @@ msgstr ""
|
|
1026 |
msgid "Cancel"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: includes/admin/sidebar.php:
|
1030 |
msgid "Donate $10, $20 or $50!"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: includes/admin/sidebar.php:
|
1034 |
msgid ""
|
1035 |
"If you like this plugin, please donate to support development and "
|
1036 |
"maintenance!"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: includes/admin/sidebar.php:
|
1040 |
msgid "Return to WordPress Dashboard"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/admin/options-page-js.php:54
|
1044 |
-
msgid "Hide debug info"
|
1045 |
-
msgstr ""
|
1046 |
-
|
1047 |
#: includes/admin/table-printer.php:177
|
1048 |
msgid "Compact View"
|
1049 |
msgstr ""
|
@@ -1207,72 +933,70 @@ msgstr ""
|
|
1207 |
msgid "[An orphaned link! This is a bug.]"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: includes/
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
#: includes/parsers.php:109
|
1215 |
-
msgid "Editing is not implemented in the '%s' parser"
|
1216 |
-
msgstr ""
|
1217 |
-
|
1218 |
-
#: includes/parsers.php:124
|
1219 |
-
msgid "Unlinking is not implemented in the '%s' parser"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: includes/
|
1223 |
-
msgid "
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: includes/
|
1227 |
-
msgid "
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: includes/
|
1231 |
-
msgid "
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: includes/
|
1235 |
-
|
|
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: includes/
|
1239 |
-
msgid "
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/
|
1243 |
-
msgid "
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/
|
1247 |
-
msgid "
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: includes/
|
1251 |
-
|
|
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/
|
1255 |
-
msgid "
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: includes/
|
1259 |
-
|
|
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: includes/any-post.php:
|
1263 |
-
msgid "
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: includes/any-post.php:
|
1267 |
-
msgid "
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: includes/any-post.php:
|
1271 |
-
msgid "
|
|
|
|
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: includes/any-post.php:
|
1275 |
-
msgid "
|
1276 |
msgstr ""
|
1277 |
|
1278 |
#: includes/any-post.php:711
|
@@ -1321,56 +1045,6 @@ msgstr[1] ""
|
|
1321 |
msgid "Container type '%s' not recognized"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: includes/links.php:215
|
1325 |
-
msgid "The plugin script was terminated while trying to check the link."
|
1326 |
-
msgstr ""
|
1327 |
-
|
1328 |
-
#: includes/links.php:261
|
1329 |
-
msgid "The plugin doesn't know how to check this type of link."
|
1330 |
-
msgstr ""
|
1331 |
-
|
1332 |
-
#: includes/links.php:349
|
1333 |
-
msgid "Link is valid."
|
1334 |
-
msgstr ""
|
1335 |
-
|
1336 |
-
#: includes/links.php:351
|
1337 |
-
msgid "Link is broken."
|
1338 |
-
msgstr ""
|
1339 |
-
|
1340 |
-
#: includes/links.php:564 includes/links.php:666 includes/links.php:693
|
1341 |
-
msgid "Link is not valid"
|
1342 |
-
msgstr ""
|
1343 |
-
|
1344 |
-
#: includes/links.php:581
|
1345 |
-
msgid ""
|
1346 |
-
"This link can not be edited because it is not used anywhere on this site."
|
1347 |
-
msgstr ""
|
1348 |
-
|
1349 |
-
#: includes/links.php:607
|
1350 |
-
msgid "Failed to create a DB entry for the new URL."
|
1351 |
-
msgstr ""
|
1352 |
-
|
1353 |
-
#: includes/links.php:673
|
1354 |
-
msgid "This link is not a redirect"
|
1355 |
-
msgstr ""
|
1356 |
-
|
1357 |
-
#: includes/links.php:720 includes/links.php:757
|
1358 |
-
msgid "Couldn't delete the link's database record"
|
1359 |
-
msgstr ""
|
1360 |
-
|
1361 |
-
#: includes/links.php:831
|
1362 |
-
msgctxt "link status"
|
1363 |
-
msgid "Unknown"
|
1364 |
-
msgstr ""
|
1365 |
-
|
1366 |
-
#: includes/links.php:869
|
1367 |
-
msgid "Not checked"
|
1368 |
-
msgstr ""
|
1369 |
-
|
1370 |
-
#: includes/links.php:872
|
1371 |
-
msgid "False positive"
|
1372 |
-
msgstr ""
|
1373 |
-
|
1374 |
#: includes/extra-strings.php:2
|
1375 |
msgctxt "module name"
|
1376 |
msgid "Basic HTTP"
|
@@ -1398,64 +1072,197 @@ msgstr ""
|
|
1398 |
|
1399 |
#: includes/extra-strings.php:7
|
1400 |
msgctxt "module name"
|
1401 |
-
msgid "Embedded
|
1402 |
msgstr ""
|
1403 |
|
1404 |
#: includes/extra-strings.php:8
|
1405 |
msgctxt "module name"
|
1406 |
-
msgid "Embedded
|
1407 |
msgstr ""
|
1408 |
|
1409 |
#: includes/extra-strings.php:9
|
1410 |
msgctxt "module name"
|
1411 |
-
msgid "Embedded
|
1412 |
msgstr ""
|
1413 |
|
1414 |
#: includes/extra-strings.php:10
|
1415 |
msgctxt "module name"
|
1416 |
-
msgid "
|
1417 |
msgstr ""
|
1418 |
|
1419 |
#: includes/extra-strings.php:11
|
1420 |
msgctxt "module name"
|
1421 |
-
msgid "
|
1422 |
msgstr ""
|
1423 |
|
1424 |
#: includes/extra-strings.php:12
|
1425 |
msgctxt "module name"
|
1426 |
-
msgid "
|
1427 |
msgstr ""
|
1428 |
|
1429 |
#: includes/extra-strings.php:13
|
1430 |
msgctxt "module name"
|
1431 |
-
msgid "
|
1432 |
msgstr ""
|
1433 |
|
1434 |
#: includes/extra-strings.php:14
|
1435 |
msgctxt "module name"
|
1436 |
-
msgid "
|
1437 |
msgstr ""
|
1438 |
|
1439 |
#: includes/extra-strings.php:15
|
1440 |
msgctxt "module name"
|
1441 |
-
msgid "
|
1442 |
msgstr ""
|
1443 |
|
1444 |
#: includes/extra-strings.php:16
|
1445 |
msgctxt "module name"
|
1446 |
-
msgid "
|
1447 |
msgstr ""
|
1448 |
|
1449 |
#: includes/extra-strings.php:17
|
1450 |
msgctxt "module name"
|
1451 |
-
msgid "
|
1452 |
msgstr ""
|
1453 |
|
1454 |
#: includes/extra-strings.php:18
|
1455 |
msgctxt "module name"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1456 |
msgid "Pages"
|
1457 |
msgstr ""
|
1458 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1459 |
#: includes/utility-class.php:244
|
1460 |
msgid "%d second"
|
1461 |
msgid_plural "%d seconds"
|
@@ -1516,12 +1323,261 @@ msgid_plural "%d months ago"
|
|
1516 |
msgstr[0] ""
|
1517 |
msgstr[1] ""
|
1518 |
|
1519 |
-
#:
|
1520 |
-
msgid "
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#:
|
1524 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1525 |
msgstr ""
|
1526 |
|
1527 |
#. Plugin URI of the plugin/theme
|
1 |
+
# Copyright (C) 2012 Broken Link Checker
|
2 |
# This file is distributed under the same license as the Broken Link Checker package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Broken Link Checker 1.4\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
7 |
+
"POT-Creation-Date: 2012-03-27 09:01:12+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2012-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: core/core.php:146 includes/admin/links-page-js.php:37
|
16 |
+
msgid "Loading..."
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: core/core.php:170 includes/admin/options-page-js.php:18
|
20 |
+
msgid "[ Network error ]"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: core/core.php:195
|
24 |
+
msgid "Automatically expand the widget if broken links have been detected"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: core/core.php:285
|
28 |
+
msgid "Link Checker Settings"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: core/core.php:286
|
32 |
+
msgid "Link Checker"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: core/core.php:291 includes/link-query.php:26
|
36 |
+
msgid "Broken Links"
|
|
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: core/core.php:307
|
40 |
+
msgid "View Broken Links"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: core/core.php:322
|
44 |
+
msgid "Feedback"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: core/core.php:330 includes/admin/sidebar.php:18
|
48 |
+
msgid "More plugins by Janis Elsts"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: core/core.php:337
|
52 |
+
msgid "Go to Broken Links"
|
|
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: core/core.php:366
|
56 |
+
msgid "Settings"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: core/core.php:378 core/core.php:1167
|
60 |
+
msgid ""
|
61 |
+
"Error: The plugin's database tables are not up to date! (Current version : %"
|
62 |
+
"d, expected : %d)"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: core/core.php:382 core/core.php:1171
|
66 |
+
msgid "Try deactivating and then reactivating the plugin."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: core/core.php:521
|
70 |
+
msgid "Settings saved."
|
|
|
|
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: core/core.php:527
|
74 |
+
msgid "Thank you for your donation!"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: core/core.php:534
|
78 |
+
msgid "Complete site recheck started."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: core/core.php:543
|
82 |
+
msgid "Details"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: core/core.php:557
|
86 |
+
msgid "General"
|
|
|
|
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: core/core.php:558
|
90 |
+
msgid "Look For Links In"
|
|
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: core/core.php:559
|
94 |
+
msgid "Which Links To Check"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: core/core.php:560
|
98 |
+
msgid "Protocols & APIs"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: core/core.php:561
|
102 |
+
msgid "Advanced"
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: core/core.php:576
|
106 |
+
msgid "Broken Link Checker Options"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: core/core.php:618 includes/admin/table-printer.php:195
|
110 |
+
msgid "Status"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: core/core.php:620 includes/admin/options-page-js.php:56
|
114 |
+
msgid "Show debug info"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: core/core.php:648
|
118 |
+
msgid "Check each link"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: core/core.php:653
|
122 |
+
msgid "Every %s hours"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: core/core.php:662
|
126 |
+
msgid ""
|
127 |
+
"Existing links will be checked this often. New links will usually be checked "
|
128 |
+
"ASAP."
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: core/core.php:669
|
132 |
+
msgid "E-mail notifications"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: core/core.php:675
|
136 |
+
msgid "Send me e-mail notifications about newly detected broken links"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: core/core.php:683
|
140 |
+
msgid "Send authors e-mail notifications about broken links in their posts"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: core/core.php:690
|
144 |
+
msgid "Link tweaks"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: core/core.php:696
|
148 |
+
msgid "Apply custom formatting to broken links"
|
|
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: core/core.php:700 core/core.php:730
|
152 |
+
msgid "Edit CSS"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: core/core.php:715
|
156 |
+
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: core/core.php:718 core/core.php:749
|
160 |
+
msgid "Click \"Save Changes\" to update example output."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: core/core.php:726
|
164 |
+
msgid "Apply custom formatting to removed links"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: core/core.php:746
|
168 |
+
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: core/core.php:759
|
172 |
+
msgid "Stop search engines from following broken links"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: core/core.php:776
|
176 |
+
msgid "Look for links in"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: core/core.php:787
|
180 |
+
msgid "Post statuses"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: core/core.php:820
|
184 |
+
msgid "Link types"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: core/core.php:826
|
188 |
+
msgid "Error : All link parsers missing!"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: core/core.php:833
|
192 |
+
msgid "Exclusion list"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: core/core.php:834
|
196 |
+
msgid ""
|
197 |
+
"Don't check links where the URL contains any of these words (one per line) :"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: core/core.php:852
|
201 |
+
msgid "Check links using"
|
|
|
|
|
|
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: core/core.php:871 includes/links.php:849
|
205 |
+
msgid "Timeout"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: core/core.php:877 core/core.php:923 core/core.php:2732
|
209 |
+
msgid "%s seconds"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: core/core.php:886
|
213 |
+
msgid "Links that take longer than this to load will be marked as broken."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: core/core.php:893
|
217 |
+
msgid "Link monitor"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: core/core.php:901
|
221 |
+
msgid "Run continuously while the Dashboard is open"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: core/core.php:909
|
225 |
+
msgid "Run hourly in the background"
|
|
|
|
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: core/core.php:917
|
229 |
+
msgid "Max. execution time"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: core/core.php:934
|
233 |
+
msgid ""
|
234 |
+
"The plugin works by periodically launching a background job that parses your "
|
235 |
+
"posts for links, checks the discovered URLs, and performs other time-"
|
236 |
+
"consuming tasks. Here you can set for how long, at most, the link monitor "
|
237 |
+
"may run each time before stopping."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: core/core.php:943
|
241 |
+
msgid "Server load limit"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: core/core.php:958
|
245 |
+
msgid "Current load : %s"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: core/core.php:963
|
249 |
+
msgid ""
|
250 |
+
"Link checking will be suspended if the average <a href=\"%s\">server load</"
|
251 |
+
"a> rises above this number. Leave this field blank to disable load limiting."
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: core/core.php:972
|
255 |
+
msgid "Not available"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: core/core.php:974
|
259 |
+
msgid ""
|
260 |
+
"Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
|
261 |
+
"code> is present and accessible."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: core/core.php:982
|
265 |
+
msgid "Forced recheck"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: core/core.php:985
|
269 |
+
msgid "Re-check all pages"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: core/core.php:989
|
273 |
+
msgid ""
|
274 |
+
"The \"Nuclear Option\". Click this button to make the plugin empty its link "
|
275 |
+
"database and recheck the entire site from scratch."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: core/core.php:1000
|
279 |
+
msgid "Save Changes"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: core/core.php:1051
|
283 |
+
msgid "Configure"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: core/core.php:1133
|
287 |
+
msgid "Check URLs entered in these custom fields (one per line) :"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: core/core.php:1270 core/core.php:1351 core/core.php:1383
|
291 |
+
msgid "Database error : %s"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: core/core.php:1333
|
295 |
+
msgid "You must enter a filter name!"
|
|
|
|
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: core/core.php:1337
|
299 |
+
msgid "Invalid search query."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: core/core.php:1346
|
303 |
+
msgid "Filter \"%s\" created"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: core/core.php:1373
|
307 |
+
msgid "Filter ID not specified."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: core/core.php:1380
|
311 |
+
msgid "Filter deleted"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: core/core.php:1427
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
315 |
msgid "Replaced %d redirect with a direct link"
|
316 |
msgid_plural "Replaced %d redirects with direct links"
|
317 |
msgstr[0] ""
|
318 |
msgstr[1] ""
|
319 |
|
320 |
+
#: core/core.php:1438
|
321 |
msgid "Failed to fix %d redirect"
|
322 |
msgid_plural "Failed to fix %d redirects"
|
323 |
msgstr[0] ""
|
324 |
msgstr[1] ""
|
325 |
|
326 |
+
#: core/core.php:1449
|
327 |
msgid "None of the selected links are redirects!"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: core/core.php:1527
|
331 |
msgid "%d link updated."
|
332 |
msgid_plural "%d links updated."
|
333 |
msgstr[0] ""
|
334 |
msgstr[1] ""
|
335 |
|
336 |
+
#: core/core.php:1538
|
337 |
msgid "Failed to update %d link."
|
338 |
msgid_plural "Failed to update %d links."
|
339 |
msgstr[0] ""
|
340 |
msgstr[1] ""
|
341 |
|
342 |
+
#: core/core.php:1592
|
343 |
msgid "%d link removed"
|
344 |
msgid_plural "%d links removed"
|
345 |
msgstr[0] ""
|
346 |
msgstr[1] ""
|
347 |
|
348 |
+
#: core/core.php:1603
|
349 |
msgid "Failed to remove %d link"
|
350 |
msgid_plural "Failed to remove %d links"
|
351 |
msgstr[0] ""
|
352 |
msgstr[1] ""
|
353 |
|
354 |
+
#: core/core.php:1712
|
355 |
msgid ""
|
356 |
"%d item was skipped because it can't be moved to the Trash. You need to "
|
357 |
"delete it manually."
|
361 |
msgstr[0] ""
|
362 |
msgstr[1] ""
|
363 |
|
364 |
+
#: core/core.php:1734
|
365 |
msgid "Didn't find anything to delete!"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: core/core.php:1762
|
369 |
msgid "%d link scheduled for rechecking"
|
370 |
msgid_plural "%d links scheduled for rechecking"
|
371 |
msgstr[0] ""
|
372 |
msgstr[1] ""
|
373 |
|
374 |
+
#: core/core.php:1808 core/core.php:2412
|
375 |
msgid "This link was manually marked as working by the user."
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: core/core.php:1815
|
379 |
msgid "Couldn't modify link %d"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: core/core.php:1825
|
383 |
msgid "%d link marked as not broken"
|
384 |
msgid_plural "%d links marked as not broken"
|
385 |
msgstr[0] ""
|
386 |
msgstr[1] ""
|
387 |
|
388 |
+
#: core/core.php:1865
|
389 |
msgid "Table columns"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: core/core.php:1884
|
393 |
msgid "Show on screen"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: core/core.php:1891
|
397 |
msgid "links"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: core/core.php:1892 includes/admin/table-printer.php:163
|
401 |
msgid "Apply"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: core/core.php:1896
|
405 |
msgid "Misc"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: core/core.php:1911
|
409 |
msgid "Highlight links broken for at least %s days"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: core/core.php:1920
|
413 |
msgid "Color-code status codes"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: core/core.php:1937 core/core.php:2397 core/core.php:2433 core/core.php:2496
|
417 |
msgid "You're not allowed to do that!"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: core/core.php:2278
|
421 |
msgid "View broken links"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: core/core.php:2279
|
425 |
msgid "Found %d broken link"
|
426 |
msgid_plural "Found %d broken links"
|
427 |
msgstr[0] ""
|
428 |
msgstr[1] ""
|
429 |
|
430 |
+
#: core/core.php:2285
|
431 |
msgid "No broken links found."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: core/core.php:2292
|
435 |
msgid "%d URL in the work queue"
|
436 |
msgid_plural "%d URLs in the work queue"
|
437 |
msgstr[0] ""
|
438 |
msgstr[1] ""
|
439 |
|
440 |
+
#: core/core.php:2295
|
441 |
msgid "No URLs in the work queue."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: core/core.php:2301
|
445 |
msgid "Detected %d unique URL"
|
446 |
msgid_plural "Detected %d unique URLs"
|
447 |
msgstr[0] ""
|
448 |
msgstr[1] ""
|
449 |
|
450 |
+
#: core/core.php:2302
|
451 |
msgid "in %d link"
|
452 |
msgid_plural "in %d links"
|
453 |
msgstr[0] ""
|
454 |
msgstr[1] ""
|
455 |
|
456 |
+
#: core/core.php:2307
|
457 |
msgid "and still searching..."
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: core/core.php:2313
|
461 |
msgid "Searching your blog for links..."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: core/core.php:2315
|
465 |
msgid "No links detected."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: core/core.php:2341
|
469 |
msgctxt "current load"
|
470 |
msgid "Unknown"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: core/core.php:2405 core/core.php:2443 core/core.php:2506
|
474 |
msgid "Oops, I can't find the link %d"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: core/core.php:2418
|
478 |
msgid "Oops, couldn't modify the link!"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: core/core.php:2421 core/core.php:2532
|
482 |
msgid "Error : link_id not specified"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: core/core.php:2453
|
486 |
msgid "Oops, the new URL is invalid!"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: core/core.php:2464 core/core.php:2515
|
490 |
msgid "An unexpected error occured!"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: core/core.php:2482
|
494 |
msgid "Error : link_id or new_url not specified"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: core/core.php:2541
|
498 |
msgid "You don't have sufficient privileges to access this information!"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: core/core.php:2554
|
502 |
msgid "Error : link ID not specified"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: core/core.php:2568
|
506 |
msgid "Failed to load link details (%s)"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.4) #-#-#-#-#
|
510 |
#. Plugin Name of the plugin/theme
|
511 |
+
#: core/core.php:2621
|
512 |
msgid "Broken Link Checker"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: core/core.php:2641
|
516 |
msgid "PHP version"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: core/core.php:2647
|
520 |
msgid "MySQL version"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: core/core.php:2660
|
524 |
msgid ""
|
525 |
"You have an old version of CURL. Redirect detection may not work properly."
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: core/core.php:2672 core/core.php:2688 core/core.php:2693
|
529 |
msgid "Not installed"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: core/core.php:2675
|
533 |
msgid "CURL version"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: core/core.php:2681
|
537 |
msgid "Installed"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: core/core.php:2694
|
541 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: core/core.php:2705
|
545 |
msgid "On"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: core/core.php:2706
|
549 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: core/core.php:2711 core/core.php:2725
|
553 |
msgid "Off"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: core/core.php:2719
|
557 |
msgid "On ( %s )"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: core/core.php:2720
|
561 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: core/core.php:2749
|
565 |
msgid ""
|
566 |
"If this value is zero even after several page reloads you have probably "
|
567 |
"encountered a bug."
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: core/core.php:2840 core/core.php:2938
|
571 |
msgid "[%s] Broken links detected"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: core/core.php:2845
|
575 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
576 |
msgid_plural ""
|
577 |
"Broken Link Checker has detected %d new broken links on your site."
|
578 |
msgstr[0] ""
|
579 |
msgstr[1] ""
|
580 |
|
581 |
+
#: core/core.php:2868
|
582 |
msgid "Here's a list of the first %d broken links:"
|
583 |
msgid_plural "Here's a list of the first %d broken links:"
|
584 |
msgstr[0] ""
|
585 |
msgstr[1] ""
|
586 |
|
587 |
+
#: core/core.php:2877
|
588 |
msgid "Here's a list of the new broken links: "
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: core/core.php:2886
|
592 |
msgid "Link text : %s"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: core/core.php:2887
|
596 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: core/core.php:2888
|
600 |
msgid "Source : %s"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: core/core.php:2901
|
604 |
msgid "You can see all broken links here:"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: core/core.php:2943
|
608 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
609 |
msgid_plural ""
|
610 |
"Broken Link Checker has detected %d new broken links in your posts."
|
611 |
msgstr[0] ""
|
612 |
msgstr[1] ""
|
613 |
|
614 |
+
#: core/init.php:231
|
615 |
+
msgid "Once Weekly"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: core/init.php:237
|
619 |
+
msgid "Twice a Month"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: core/init.php:307
|
623 |
+
msgid ""
|
624 |
+
"Broken Link Checker installation failed. Try deactivating and then "
|
625 |
+
"reactivating the plugin."
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: includes/admin/db-upgrade.php:95
|
629 |
+
msgid "Failed to delete old DB tables. Database error : %s"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: includes/admin/links-page-js.php:58 includes/admin/links-page-js.php:301
|
633 |
+
msgid "Wait..."
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: includes/admin/links-page-js.php:99 includes/admin/table-printer.php:616
|
637 |
+
msgid "Not broken"
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
+
#: includes/admin/links-page-js.php:213
|
641 |
+
msgid "%d instances of the link were successfully modified."
|
642 |
+
msgstr ""
|
643 |
|
644 |
#: includes/admin/links-page-js.php:219
|
645 |
msgid ""
|
703 |
msgid "Select one or more links to edit."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: includes/admin/options-page-js.php:54
|
707 |
+
msgid "Hide debug info"
|
708 |
+
msgstr ""
|
709 |
+
|
710 |
#: includes/admin/search-form.php:16
|
711 |
msgid "Save This Search As a Filter"
|
712 |
msgstr ""
|
756 |
msgid "Cancel"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: includes/admin/sidebar.php:40
|
760 |
msgid "Donate $10, $20 or $50!"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: includes/admin/sidebar.php:43
|
764 |
msgid ""
|
765 |
"If you like this plugin, please donate to support development and "
|
766 |
"maintenance!"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: includes/admin/sidebar.php:60
|
770 |
msgid "Return to WordPress Dashboard"
|
771 |
msgstr ""
|
772 |
|
|
|
|
|
|
|
|
|
773 |
#: includes/admin/table-printer.php:177
|
774 |
msgid "Compact View"
|
775 |
msgstr ""
|
933 |
msgid "[An orphaned link! This is a bug.]"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: includes/any-post.php:397 modules/containers/blogroll.php:46
|
937 |
+
#: modules/containers/comment.php:153 modules/containers/custom_field.php:197
|
938 |
+
msgid "Edit"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: includes/any-post.php:405 modules/containers/custom_field.php:203
|
942 |
+
msgid "Move this item to the Trash"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: includes/any-post.php:407 modules/containers/custom_field.php:205
|
946 |
+
msgid "Trash"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: includes/any-post.php:412 modules/containers/custom_field.php:210
|
950 |
+
msgid "Delete this item permanently"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/any-post.php:414 modules/containers/blogroll.php:47
|
954 |
+
#: modules/containers/custom_field.php:212
|
955 |
+
msgid "Delete"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: includes/any-post.php:427
|
959 |
+
msgid "Preview “%s”"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: includes/any-post.php:428
|
963 |
+
msgid "Preview"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: includes/any-post.php:435
|
967 |
+
msgid "View “%s”"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: includes/any-post.php:436 modules/containers/comment.php:166
|
971 |
+
#: modules/containers/custom_field.php:217
|
972 |
+
msgid "View"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: includes/any-post.php:455 modules/containers/custom_field.php:197
|
976 |
+
msgid "Edit this item"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: includes/any-post.php:519 modules/containers/blogroll.php:83
|
980 |
+
#: modules/containers/comment.php:43
|
981 |
+
msgid "Nothing to update"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: includes/any-post.php:529
|
985 |
+
msgid "Updating post %d failed"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: includes/any-post.php:564 modules/containers/custom_field.php:284
|
989 |
+
msgid "Failed to delete post \"%s\" (%d)"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: includes/any-post.php:583 modules/containers/custom_field.php:303
|
993 |
+
msgid ""
|
994 |
+
"Can't move post \"%s\" (%d) to the trash because the trash feature is "
|
995 |
+
"disabled"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: includes/any-post.php:603 modules/containers/custom_field.php:322
|
999 |
+
msgid "Failed to move post \"%s\" (%d) to the trash"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
#: includes/any-post.php:711
|
1045 |
msgid "Container type '%s' not recognized"
|
1046 |
msgstr ""
|
1047 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1048 |
#: includes/extra-strings.php:2
|
1049 |
msgctxt "module name"
|
1050 |
msgid "Basic HTTP"
|
1072 |
|
1073 |
#: includes/extra-strings.php:7
|
1074 |
msgctxt "module name"
|
1075 |
+
msgid "Embedded GoogleVideo videos"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
#: includes/extra-strings.php:8
|
1079 |
msgctxt "module name"
|
1080 |
+
msgid "Embedded Megavideo videos"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
#: includes/extra-strings.php:9
|
1084 |
msgctxt "module name"
|
1085 |
+
msgid "Embedded Vimeo videos"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
#: includes/extra-strings.php:10
|
1089 |
msgctxt "module name"
|
1090 |
+
msgid "Embedded YouTube videos"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
#: includes/extra-strings.php:11
|
1094 |
msgctxt "module name"
|
1095 |
+
msgid "Embedded YouTube videos (old embed code)"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
#: includes/extra-strings.php:12
|
1099 |
msgctxt "module name"
|
1100 |
+
msgid "FileServe API"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
#: includes/extra-strings.php:13
|
1104 |
msgctxt "module name"
|
1105 |
+
msgid "HTML images"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
#: includes/extra-strings.php:14
|
1109 |
msgctxt "module name"
|
1110 |
+
msgid "HTML links"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
#: includes/extra-strings.php:15
|
1114 |
msgctxt "module name"
|
1115 |
+
msgid "MediaFire API"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
#: includes/extra-strings.php:16
|
1119 |
msgctxt "module name"
|
1120 |
+
msgid "MegaUpload API"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
#: includes/extra-strings.php:17
|
1124 |
msgctxt "module name"
|
1125 |
+
msgid "Plaintext URLs"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
#: includes/extra-strings.php:18
|
1129 |
msgctxt "module name"
|
1130 |
+
msgid "RapidShare API"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: includes/extra-strings.php:19
|
1134 |
+
msgctxt "module name"
|
1135 |
+
msgid "YouTube API"
|
1136 |
+
msgstr ""
|
1137 |
+
|
1138 |
+
#: includes/extra-strings.php:20
|
1139 |
+
msgctxt "module name"
|
1140 |
+
msgid "Posts"
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: includes/extra-strings.php:21
|
1144 |
+
msgctxt "module name"
|
1145 |
msgid "Pages"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: includes/instances.php:102 includes/instances.php:158
|
1149 |
+
msgid "Container %s[%d] not found"
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: includes/instances.php:111 includes/instances.php:167
|
1153 |
+
msgid "Parser '%s' not found."
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: includes/link-query.php:25
|
1157 |
+
msgid "Broken"
|
1158 |
+
msgstr ""
|
1159 |
+
|
1160 |
+
#: includes/link-query.php:27
|
1161 |
+
msgid "No broken links found"
|
1162 |
+
msgstr ""
|
1163 |
+
|
1164 |
+
#: includes/link-query.php:34
|
1165 |
+
msgid "Redirects"
|
1166 |
+
msgstr ""
|
1167 |
+
|
1168 |
+
#: includes/link-query.php:35
|
1169 |
+
msgid "Redirected Links"
|
1170 |
+
msgstr ""
|
1171 |
+
|
1172 |
+
#: includes/link-query.php:36
|
1173 |
+
msgid "No redirects found"
|
1174 |
+
msgstr ""
|
1175 |
+
|
1176 |
+
#: includes/link-query.php:44
|
1177 |
+
msgid "All"
|
1178 |
+
msgstr ""
|
1179 |
+
|
1180 |
+
#: includes/link-query.php:45
|
1181 |
+
msgid "Detected Links"
|
1182 |
+
msgstr ""
|
1183 |
+
|
1184 |
+
#: includes/link-query.php:46
|
1185 |
+
msgid "No links found (yet)"
|
1186 |
+
msgstr ""
|
1187 |
+
|
1188 |
+
#: includes/link-query.php:54
|
1189 |
+
msgid "Search Results"
|
1190 |
+
msgstr ""
|
1191 |
+
|
1192 |
+
#: includes/link-query.php:55 includes/link-query.php:102
|
1193 |
+
msgid "No links found for your query"
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: includes/links.php:215
|
1197 |
+
msgid "The plugin script was terminated while trying to check the link."
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: includes/links.php:261
|
1201 |
+
msgid "The plugin doesn't know how to check this type of link."
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: includes/links.php:349
|
1205 |
+
msgid "Link is valid."
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: includes/links.php:351
|
1209 |
+
msgid "Link is broken."
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: includes/links.php:564 includes/links.php:666 includes/links.php:693
|
1213 |
+
msgid "Link is not valid"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: includes/links.php:581
|
1217 |
+
msgid ""
|
1218 |
+
"This link can not be edited because it is not used anywhere on this site."
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: includes/links.php:607
|
1222 |
+
msgid "Failed to create a DB entry for the new URL."
|
1223 |
+
msgstr ""
|
1224 |
+
|
1225 |
+
#: includes/links.php:673
|
1226 |
+
msgid "This link is not a redirect"
|
1227 |
+
msgstr ""
|
1228 |
+
|
1229 |
+
#: includes/links.php:720 includes/links.php:757
|
1230 |
+
msgid "Couldn't delete the link's database record"
|
1231 |
+
msgstr ""
|
1232 |
+
|
1233 |
+
#: includes/links.php:831
|
1234 |
+
msgctxt "link status"
|
1235 |
+
msgid "Unknown"
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: includes/links.php:845 modules/checkers/http.php:264
|
1239 |
+
#: modules/extras/mediafire.php:101
|
1240 |
+
msgid "Unknown Error"
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: includes/links.php:869
|
1244 |
+
msgid "Not checked"
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
#: includes/links.php:872
|
1248 |
+
msgid "False positive"
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: includes/links.php:875 modules/extras/fileserve.php:121
|
1252 |
+
#: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
|
1253 |
+
#: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
|
1254 |
+
msgctxt "link status"
|
1255 |
+
msgid "OK"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: includes/parsers.php:109
|
1259 |
+
msgid "Editing is not implemented in the '%s' parser"
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: includes/parsers.php:124
|
1263 |
+
msgid "Unlinking is not implemented in the '%s' parser"
|
1264 |
+
msgstr ""
|
1265 |
+
|
1266 |
#: includes/utility-class.php:244
|
1267 |
msgid "%d second"
|
1268 |
msgid_plural "%d seconds"
|
1323 |
msgstr[0] ""
|
1324 |
msgstr[1] ""
|
1325 |
|
1326 |
+
#: modules/checkers/http.php:243
|
1327 |
+
msgid "Server Not Found"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: modules/checkers/http.php:258
|
1331 |
+
msgid "Connection Failed"
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: modules/checkers/http.php:293 modules/checkers/http.php:363
|
1335 |
+
msgid "HTTP code : %d"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: modules/checkers/http.php:295 modules/checkers/http.php:365
|
1339 |
+
msgid "(No response)"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: modules/checkers/http.php:301
|
1343 |
+
msgid "Most likely the connection timed out or the domain doesn't exist."
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: modules/checkers/http.php:372
|
1347 |
+
msgid "Request timed out."
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: modules/checkers/http.php:390
|
1351 |
+
msgid "Using Snoopy"
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: modules/containers/blogroll.php:21
|
1355 |
+
msgid "Bookmark"
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: modules/containers/blogroll.php:27 modules/containers/blogroll.php:46
|
1359 |
+
msgid "Edit this bookmark"
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: modules/containers/blogroll.php:47
|
1363 |
+
msgid ""
|
1364 |
+
"You are about to delete this link '%s'\n"
|
1365 |
+
" 'Cancel' to stop, 'OK' to delete."
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: modules/containers/blogroll.php:97
|
1369 |
+
msgid "Updating bookmark %d failed"
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: modules/containers/blogroll.php:128
|
1373 |
+
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: modules/containers/blogroll.php:298
|
1377 |
+
msgid "%d blogroll link deleted."
|
1378 |
+
msgid_plural "%d blogroll links deleted."
|
1379 |
+
msgstr[0] ""
|
1380 |
+
msgstr[1] ""
|
1381 |
+
|
1382 |
+
#: modules/containers/comment.php:53
|
1383 |
+
msgid "Updating comment %d failed"
|
1384 |
+
msgstr ""
|
1385 |
+
|
1386 |
+
#: modules/containers/comment.php:74
|
1387 |
+
msgid "Failed to delete comment %d"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: modules/containers/comment.php:95
|
1391 |
+
msgid "Can't move comment %d to the trash"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: modules/containers/comment.php:153 modules/containers/comment.php:195
|
1395 |
+
msgid "Edit comment"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: modules/containers/comment.php:160
|
1399 |
+
msgid "Delete Permanently"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: modules/containers/comment.php:162
|
1403 |
+
msgid "Move this comment to the trash"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: modules/containers/comment.php:162
|
1407 |
+
msgctxt "verb"
|
1408 |
+
msgid "Trash"
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
#: modules/containers/comment.php:166
|
1412 |
+
msgid "View comment"
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: modules/containers/comment.php:183
|
1416 |
+
msgid "Comment"
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: modules/containers/comment.php:355
|
1420 |
+
msgid "%d comment has been deleted."
|
1421 |
+
msgid_plural "%d comments have been deleted."
|
1422 |
+
msgstr[0] ""
|
1423 |
+
msgstr[1] ""
|
1424 |
+
|
1425 |
+
#: modules/containers/comment.php:374
|
1426 |
+
msgid "%d comment moved to the Trash."
|
1427 |
+
msgid_plural "%d comments moved to the Trash."
|
1428 |
+
msgstr[0] ""
|
1429 |
+
msgstr[1] ""
|
1430 |
+
|
1431 |
+
#: modules/containers/custom_field.php:84
|
1432 |
+
msgid "Failed to update the meta field '%s' on %s [%d]"
|
1433 |
+
msgstr ""
|
1434 |
+
|
1435 |
+
#: modules/containers/custom_field.php:110
|
1436 |
+
msgid "Failed to delete the meta field '%s' on %s [%d]"
|
1437 |
+
msgstr ""
|
1438 |
+
|
1439 |
+
#: modules/containers/custom_field.php:187
|
1440 |
+
msgid "Edit this post"
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: modules/containers/custom_field.php:217
|
1444 |
+
msgid "View \"%s\""
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: modules/containers/dummy.php:34 modules/containers/dummy.php:45
|
1448 |
+
msgid "I don't know how to edit a '%s' [%d]."
|
1449 |
+
msgstr ""
|
1450 |
+
|
1451 |
+
#: modules/extras/dailymotion-embed.php:23
|
1452 |
+
msgid "DailyMotion Video"
|
1453 |
+
msgstr ""
|
1454 |
+
|
1455 |
+
#: modules/extras/dailymotion-embed.php:24
|
1456 |
+
msgid "Embedded DailyMotion video"
|
1457 |
+
msgstr ""
|
1458 |
+
|
1459 |
+
#: modules/extras/embed-parser-base.php:196
|
1460 |
+
msgid ""
|
1461 |
+
"Embedded videos can't be edited using Broken Link Checker. Please edit or "
|
1462 |
+
"replace the video in question manually."
|
1463 |
+
msgstr ""
|
1464 |
+
|
1465 |
+
#: modules/extras/fileserve.php:55
|
1466 |
+
msgid "Using FileServe API"
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
+
#: modules/extras/fileserve.php:112 modules/extras/mediafire.php:91
|
1470 |
+
#: modules/extras/mediafire.php:96 modules/extras/megaupload.php:81
|
1471 |
+
#: modules/extras/megaupload.php:123 modules/extras/rapidshare.php:139
|
1472 |
+
msgid "Not Found"
|
1473 |
+
msgstr ""
|
1474 |
+
|
1475 |
+
#: modules/extras/fileserve.php:115
|
1476 |
+
msgid "FileServe : %d %s"
|
1477 |
+
msgstr ""
|
1478 |
+
|
1479 |
+
#: modules/extras/googlevideo-embed.php:24
|
1480 |
+
msgid "GoogleVideo Video"
|
1481 |
+
msgstr ""
|
1482 |
+
|
1483 |
+
#: modules/extras/googlevideo-embed.php:25
|
1484 |
+
msgid "Embedded GoogleVideo video"
|
1485 |
+
msgstr ""
|
1486 |
+
|
1487 |
+
#: modules/extras/megaupload.php:130
|
1488 |
+
msgid "File Temporarily Unavailable"
|
1489 |
+
msgstr ""
|
1490 |
+
|
1491 |
+
#: modules/extras/megaupload.php:136
|
1492 |
+
msgid "API Error"
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: modules/extras/megavideo-embed.php:24
|
1496 |
+
msgid "Megavideo Video"
|
1497 |
+
msgstr ""
|
1498 |
+
|
1499 |
+
#: modules/extras/megavideo-embed.php:25
|
1500 |
+
msgid "Embedded Megavideo video"
|
1501 |
+
msgstr ""
|
1502 |
+
|
1503 |
+
#: modules/extras/rapidshare.php:51
|
1504 |
+
msgid "Using RapidShare API"
|
1505 |
+
msgstr ""
|
1506 |
+
|
1507 |
+
#: modules/extras/rapidshare.php:158
|
1508 |
+
msgid "RS Server Down"
|
1509 |
+
msgstr ""
|
1510 |
+
|
1511 |
+
#: modules/extras/rapidshare.php:165
|
1512 |
+
msgid "File Blocked"
|
1513 |
+
msgstr ""
|
1514 |
+
|
1515 |
+
#: modules/extras/rapidshare.php:172
|
1516 |
+
msgid "File Locked"
|
1517 |
+
msgstr ""
|
1518 |
+
|
1519 |
+
#: modules/extras/rapidshare.php:183
|
1520 |
+
msgid "RapidShare : %s"
|
1521 |
+
msgstr ""
|
1522 |
+
|
1523 |
+
#: modules/extras/rapidshare.php:189
|
1524 |
+
msgid "RapidShare API error: %s"
|
1525 |
+
msgstr ""
|
1526 |
+
|
1527 |
+
#: modules/extras/vimeo-embed.php:24
|
1528 |
+
msgid "Vimeo Video"
|
1529 |
+
msgstr ""
|
1530 |
+
|
1531 |
+
#: modules/extras/vimeo-embed.php:25
|
1532 |
+
msgid "Embedded Vimeo video"
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: modules/extras/youtube-embed.php:24 modules/extras/youtube-iframe.php:25
|
1536 |
+
msgid "YouTube Video"
|
1537 |
+
msgstr ""
|
1538 |
+
|
1539 |
+
#: modules/extras/youtube-embed.php:25 modules/extras/youtube-iframe.php:26
|
1540 |
+
msgid "Embedded YouTube video"
|
1541 |
+
msgstr ""
|
1542 |
+
|
1543 |
+
#: modules/extras/youtube.php:73 modules/extras/youtube.php:76
|
1544 |
+
msgid "Video Not Found"
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: modules/extras/youtube.php:84
|
1548 |
+
msgid "Video Removed"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: modules/extras/youtube.php:92
|
1552 |
+
msgid "Invalid Video ID"
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: modules/extras/youtube.php:104
|
1556 |
+
msgid "Video OK"
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
+
#: modules/extras/youtube.php:105 modules/extras/youtube.php:132
|
1560 |
+
msgid "OK"
|
1561 |
+
msgstr ""
|
1562 |
+
|
1563 |
+
#: modules/extras/youtube.php:118
|
1564 |
+
msgid "Video status : %s%s"
|
1565 |
+
msgstr ""
|
1566 |
+
|
1567 |
+
#: modules/extras/youtube.php:137
|
1568 |
+
msgid "Video Restricted"
|
1569 |
+
msgstr ""
|
1570 |
+
|
1571 |
+
#: modules/extras/youtube.php:154
|
1572 |
+
msgid "Unknown YouTube API response received."
|
1573 |
+
msgstr ""
|
1574 |
+
|
1575 |
+
#: modules/parsers/image.php:159
|
1576 |
+
msgid "Image"
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: modules/parsers/metadata.php:117
|
1580 |
+
msgid "Custom field"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
#. Plugin URI of the plugin/theme
|
modules/checkers/http.php
CHANGED
@@ -16,6 +16,7 @@ ModulePriority: -1
|
|
16 |
|
17 |
//TODO: Rewrite sub-classes as transports, not stand-alone checkers
|
18 |
class blcHttpChecker extends blcChecker {
|
|
|
19 |
var $implementation = null;
|
20 |
|
21 |
function init(){
|
@@ -100,7 +101,7 @@ class blcHttpCheckerBase extends blcChecker {
|
|
100 |
* This checker only accepts HTTP(s) links.
|
101 |
*
|
102 |
* @param string $url
|
103 |
-
* @param array|
|
104 |
* @return bool
|
105 |
*/
|
106 |
function can_check($url, $parsed){
|
@@ -112,7 +113,7 @@ class blcHttpCheckerBase extends blcChecker {
|
|
112 |
/**
|
113 |
* Takes an URL and replaces spaces and some other non-alphanumeric characters with their urlencoded equivalents.
|
114 |
*
|
115 |
-
* @param string $
|
116 |
* @return string
|
117 |
*/
|
118 |
function urlencodefix($url){
|
16 |
|
17 |
//TODO: Rewrite sub-classes as transports, not stand-alone checkers
|
18 |
class blcHttpChecker extends blcChecker {
|
19 |
+
/* @var blcChecker */
|
20 |
var $implementation = null;
|
21 |
|
22 |
function init(){
|
101 |
* This checker only accepts HTTP(s) links.
|
102 |
*
|
103 |
* @param string $url
|
104 |
+
* @param array|bool $parsed
|
105 |
* @return bool
|
106 |
*/
|
107 |
function can_check($url, $parsed){
|
113 |
/**
|
114 |
* Takes an URL and replaces spaces and some other non-alphanumeric characters with their urlencoded equivalents.
|
115 |
*
|
116 |
+
* @param string $url
|
117 |
* @return string
|
118 |
*/
|
119 |
function urlencodefix($url){
|
modules/extras/embed-parser-base.php
CHANGED
@@ -69,12 +69,13 @@ class blcEmbedParserBase extends blcParser {
|
|
69 |
* Extract embedded elements from a HTML string.
|
70 |
*
|
71 |
* This function returns an array of <embed> elements found in the input
|
72 |
-
* string.
|
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
|
|
|
|
|
78 |
*
|
79 |
* @uses blcUtility::extract_tags() This function is a simple wrapper around extract_tags()
|
80 |
*
|
@@ -86,7 +87,7 @@ class blcEmbedParserBase extends blcParser {
|
|
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){
|
@@ -100,15 +101,27 @@ class blcEmbedParserBase extends blcParser {
|
|
100 |
}
|
101 |
|
102 |
$embed['embed_code'] = $candidate['full_tag'];
|
103 |
-
|
104 |
$results[] = $embed;
|
|
|
|
|
|
|
105 |
}
|
106 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
return $results;
|
108 |
}
|
109 |
|
110 |
/**
|
111 |
-
* Remove all
|
112 |
*
|
113 |
* @param string $content Look for embeds in this string.
|
114 |
* @param string $url Ignored.
|
@@ -123,12 +136,13 @@ class blcEmbedParserBase extends blcParser {
|
|
123 |
return str_replace($embed_code, '', $content); //Super-simple.
|
124 |
}
|
125 |
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
|
|
132 |
function ui_get_link_text($instance, $context = 'display'){
|
133 |
$image_url = sprintf(
|
134 |
'/images/%s.png',
|
@@ -152,7 +166,7 @@ class blcEmbedParserBase extends blcParser {
|
|
152 |
|
153 |
return $field_html;
|
154 |
}
|
155 |
-
|
156 |
/**
|
157 |
* Determine the original URL of an embedded object by analysing its SRC attribute.
|
158 |
*
|
69 |
* Extract embedded elements from a HTML string.
|
70 |
*
|
71 |
* This function returns an array of <embed> elements found in the input
|
72 |
+
* string. Embeds without a 'src' attribute are skipped.
|
|
|
73 |
*
|
74 |
* Each array item has the same basic structure as the array items
|
75 |
* returned by blcUtility::extract_tags(), plus an additional 'embed_code' key
|
76 |
+
* that contains the HTML code for the element. If the embed element is wrapped
|
77 |
+
* in an <object>, the 'embed_code' key contains the full HTML for the entire
|
78 |
+
* <object> + <embed> structure.
|
79 |
*
|
80 |
* @uses blcUtility::extract_tags() This function is a simple wrapper around extract_tags()
|
81 |
*
|
87 |
|
88 |
//remove all <code></code> blocks first
|
89 |
$html = preg_replace('/<code[^>]*>.+?<\/code>/si', ' ', $html);
|
90 |
+
|
91 |
//Find likely-looking <object> elements
|
92 |
$objects = blcUtility::extract_tags($html, 'object', false, true);
|
93 |
foreach($objects as $candidate){
|
101 |
}
|
102 |
|
103 |
$embed['embed_code'] = $candidate['full_tag'];
|
104 |
+
|
105 |
$results[] = $embed;
|
106 |
+
|
107 |
+
//Remove the element so it doesn't come up when we search for plain <embed> elements.
|
108 |
+
$html = str_replace($candidate['full_tag'], ' ', $html);
|
109 |
}
|
110 |
+
|
111 |
+
//Find <embed> elements not wrapped in an <object> element.
|
112 |
+
$embeds = blcUtility::extract_tags($html, 'embed', false, true);
|
113 |
+
foreach($embeds as $embed) {
|
114 |
+
if ( !empty($embed['attributes']['src']) ){
|
115 |
+
$embed['embed_code'] = $embed['full_tag'];
|
116 |
+
$results[] = $embed;
|
117 |
+
}
|
118 |
+
}
|
119 |
+
|
120 |
return $results;
|
121 |
}
|
122 |
|
123 |
/**
|
124 |
+
* Remove all occurrences of the specified embed from a string.
|
125 |
*
|
126 |
* @param string $content Look for embeds in this string.
|
127 |
* @param string $url Ignored.
|
136 |
return str_replace($embed_code, '', $content); //Super-simple.
|
137 |
}
|
138 |
|
139 |
+
/**
|
140 |
+
* Get the link text for printing in the "Broken Links" table.
|
141 |
+
*
|
142 |
+
* @param blcLinkInstance $instance
|
143 |
+
* @param string $context
|
144 |
+
* @return string HTML
|
145 |
+
*/
|
146 |
function ui_get_link_text($instance, $context = 'display'){
|
147 |
$image_url = sprintf(
|
148 |
'/images/%s.png',
|
166 |
|
167 |
return $field_html;
|
168 |
}
|
169 |
+
|
170 |
/**
|
171 |
* Determine the original URL of an embedded object by analysing its SRC attribute.
|
172 |
*
|
modules/extras/fileserve.php
ADDED
@@ -0,0 +1,147 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
Plugin Name: FileServe API
|
4 |
+
Description: Check links to FileServe files using the FileServe API.
|
5 |
+
Version: 1.0
|
6 |
+
Author: Janis Elsts
|
7 |
+
|
8 |
+
ModuleID: fileserve-checker
|
9 |
+
ModuleCategory: checker
|
10 |
+
ModuleContext: on-demand
|
11 |
+
ModuleLazyInit: true
|
12 |
+
ModuleClassName: blcFileServeChecker
|
13 |
+
ModulePriority: 100
|
14 |
+
|
15 |
+
ModuleCheckerUrlPattern: @^http://(?:www\.)?fileserve\.com/file/([\w\d]+?)(?:/|$|[?#])@i
|
16 |
+
*/
|
17 |
+
|
18 |
+
/**
|
19 |
+
* FileServe API link checker.
|
20 |
+
*
|
21 |
+
* @package Broken Link Checker
|
22 |
+
* @author Janis Elsts
|
23 |
+
* @access public
|
24 |
+
*/
|
25 |
+
class blcFileServeChecker extends blcChecker {
|
26 |
+
private $fileserve_api_url = 'http://app.fileserve.com/api/download/free/';
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Determine if the checker can parse a specific URL.
|
30 |
+
* Always returns true because the ModuleCheckerUrlPattern header constitutes sufficient verification.
|
31 |
+
*
|
32 |
+
* @param string $url
|
33 |
+
* @param array $parsed
|
34 |
+
* @return bool True.
|
35 |
+
*/
|
36 |
+
function can_check($url, $parsed){
|
37 |
+
return true;
|
38 |
+
}
|
39 |
+
|
40 |
+
/**
|
41 |
+
* Check a FileServe link.
|
42 |
+
*
|
43 |
+
* See the FileServe API documentation for details:
|
44 |
+
* http://app.fileserve.com/api/download/
|
45 |
+
*
|
46 |
+
* @param string $url File URL.
|
47 |
+
* @return array
|
48 |
+
*/
|
49 |
+
function check($url){
|
50 |
+
$result = array(
|
51 |
+
'final_url' => $url,
|
52 |
+
'redirect_count' => 0,
|
53 |
+
'timeout' => false,
|
54 |
+
'broken' => false,
|
55 |
+
'log' => sprintf("<em>(%s)</em>\n\n", __('Using FileServe API', 'broken-link-checker')),
|
56 |
+
'result_hash' => '',
|
57 |
+
'status_code' => '',
|
58 |
+
'status_text' => '',
|
59 |
+
);
|
60 |
+
|
61 |
+
//We know the URL will match because ModuleCheckerUrlPattern matched.
|
62 |
+
preg_match('@^http://(?:www\.)?fileserve\.com/file/([\w\d]+?)(?:/|$|[?#])@i', $url, $matches);
|
63 |
+
$file_id = $matches[1];
|
64 |
+
|
65 |
+
$conf = blc_get_configuration();
|
66 |
+
$args = array(
|
67 |
+
'timeout' => $conf->options['timeout'],
|
68 |
+
'body' => array(
|
69 |
+
'shorten' => $file_id
|
70 |
+
),
|
71 |
+
);
|
72 |
+
|
73 |
+
$start = microtime_float();
|
74 |
+
$response = wp_remote_post($this->fileserve_api_url, $args);
|
75 |
+
$result['request_duration'] = microtime_float() - $start;
|
76 |
+
|
77 |
+
$error_code = 0;
|
78 |
+
|
79 |
+
if ( is_wp_error($response) ){
|
80 |
+
$result['log'] .= "Error : " . $response->get_error_message();
|
81 |
+
$result['broken'] = true;
|
82 |
+
$result['http_code'] = 0;
|
83 |
+
} else {
|
84 |
+
$result['http_code'] = intval($response['response']['code']);
|
85 |
+
|
86 |
+
if ( $result['http_code'] == 200 ){
|
87 |
+
//In this case, the HTTP code returned by is not meaningful in itself,
|
88 |
+
//so we won't store it or display it to the user.
|
89 |
+
$result['http_code'] = 0;
|
90 |
+
|
91 |
+
$json = json_decode($response['body'], false);
|
92 |
+
|
93 |
+
if ( isset($json->error_code) ) {
|
94 |
+
$error_code = intval($json->error_code);
|
95 |
+
}
|
96 |
+
$failure_codes = array(
|
97 |
+
310 => 'Invalid request',
|
98 |
+
403 => 'Not premium',
|
99 |
+
404 => 'Invalid link',
|
100 |
+
601 => 'Limited free download',
|
101 |
+
602 => 'Number of concurrent download exceeded',
|
102 |
+
603 => 'Too many invalid capcha',
|
103 |
+
605 => 'Expired premium',
|
104 |
+
606 => 'Invalid file ID',
|
105 |
+
607 => 'File not available',
|
106 |
+
608 => 'File not available',
|
107 |
+
);
|
108 |
+
|
109 |
+
if ( array_key_exists($error_code, $failure_codes) ) {
|
110 |
+
$result['broken'] = true;
|
111 |
+
$result['status_code'] = BLC_LINK_STATUS_ERROR;
|
112 |
+
$result['status_text'] = __('Not Found', 'broken-link-checker');
|
113 |
+
|
114 |
+
$result['log'] .= sprintf(
|
115 |
+
__('FileServe : %d %s', 'broken-link-checker') . "\n",
|
116 |
+
$error_code,
|
117 |
+
$failure_codes[$error_code]
|
118 |
+
);
|
119 |
+
} else {
|
120 |
+
$result['status_code'] = BLC_LINK_STATUS_OK;
|
121 |
+
$result['status_text'] = _x('OK', 'link status', 'broken-link-checker');
|
122 |
+
}
|
123 |
+
|
124 |
+
//$result['log'] .= "API response :\n" . htmlspecialchars(print_r((array)$json, true));
|
125 |
+
$result['log'] .= "API response :\n<code>" . htmlspecialchars($response['body'])."</code>\n";
|
126 |
+
|
127 |
+
} else {
|
128 |
+
//Unexpected error.
|
129 |
+
$result['log'] .= $response['body'];
|
130 |
+
$result['broken'] = true;
|
131 |
+
}
|
132 |
+
}
|
133 |
+
|
134 |
+
//Generate the result hash (used for detecting false positives)
|
135 |
+
$result['result_hash'] = implode('|', array(
|
136 |
+
'fileserve',
|
137 |
+
$result['http_code'],
|
138 |
+
$result['broken']?'broken':'0',
|
139 |
+
$result['timeout']?'timeout':'0',
|
140 |
+
$error_code
|
141 |
+
));
|
142 |
+
|
143 |
+
return $result;
|
144 |
+
}
|
145 |
+
|
146 |
+
}
|
147 |
+
|
modules/extras/googlevideo-embed.php
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
Plugin Name: Embedded GoogleVideo videos
|
4 |
+
Description: Parse embedded videos from GoogleVideo
|
5 |
+
Version: 1.0
|
6 |
+
Author: Janis Elsts
|
7 |
+
|
8 |
+
ModuleCategory: parser
|
9 |
+
ModuleClassName: blcGoogleVideoEmbed
|
10 |
+
ModuleContext: on-demand
|
11 |
+
ModuleLazyInit: true
|
12 |
+
|
13 |
+
ModulePriority: 110
|
14 |
+
*/
|
15 |
+
|
16 |
+
if ( !class_exists('blcEmbedParserBase') ){
|
17 |
+
require 'embed-parser-base.php';
|
18 |
+
}
|
19 |
+
|
20 |
+
class blcGoogleVideoEmbed extends blcEmbedParserBase {
|
21 |
+
|
22 |
+
function init(){
|
23 |
+
parent::init();
|
24 |
+
$this->short_title = __('GoogleVideo Video', 'broken-link-checker');
|
25 |
+
$this->long_title = __('Embedded GoogleVideo video', 'broken-link-checker');
|
26 |
+
$this->url_search_string = 'video.google.com/';
|
27 |
+
}
|
28 |
+
|
29 |
+
function link_url_from_src($src){
|
30 |
+
parse_str(parse_url($src, PHP_URL_QUERY), $query);
|
31 |
+
$url = 'http://video.google.com/videoplay?' . build_query(array('docid' => $query['docid']));
|
32 |
+
return $url;
|
33 |
+
}
|
34 |
+
}
|
35 |
+
|
modules/extras/mediafire.php
CHANGED
@@ -67,8 +67,8 @@ class blcMediaFireChecker extends blcChecker {
|
|
67 |
|
68 |
//An unexpected error.
|
69 |
$result['broken'] = true;
|
70 |
-
$result['log'] .= "Error : " . $
|
71 |
-
if ( $data = $
|
72 |
$result['log'] .= "\n\nError data : " . print_r($data, true);
|
73 |
}
|
74 |
|
@@ -91,6 +91,11 @@ class blcMediaFireChecker extends blcChecker {
|
|
91 |
$result['status_text'] = __('Not Found', 'broken-link-checker');
|
92 |
$result['http_code'] = 0;
|
93 |
$result['log'] .= "The file is invalid or has been removed.";
|
|
|
|
|
|
|
|
|
|
|
94 |
} else {
|
95 |
$result['status_code'] = BLC_LINK_STATUS_INFO;
|
96 |
$result['status_text'] = __('Unknown Error', 'broken-link-checker');
|
67 |
|
68 |
//An unexpected error.
|
69 |
$result['broken'] = true;
|
70 |
+
$result['log'] .= "Error : " . $rez->get_error_message();
|
71 |
+
if ( $data = $rez->get_error_data() ){
|
72 |
$result['log'] .= "\n\nError data : " . print_r($data, true);
|
73 |
}
|
74 |
|
91 |
$result['status_text'] = __('Not Found', 'broken-link-checker');
|
92 |
$result['http_code'] = 0;
|
93 |
$result['log'] .= "The file is invalid or has been removed.";
|
94 |
+
} else if ( strpos($rez['headers']['location'], 'errno=378') !== false ){
|
95 |
+
$result['status_code'] = BLC_LINK_STATUS_ERROR;
|
96 |
+
$result['status_text'] = __('Not Found', 'broken-link-checker');
|
97 |
+
$result['http_code'] = 0;
|
98 |
+
$result['log'] .= "The file has been removed due to a violation of MediaFire ToS.";
|
99 |
} else {
|
100 |
$result['status_code'] = BLC_LINK_STATUS_INFO;
|
101 |
$result['status_text'] = __('Unknown Error', 'broken-link-checker');
|
modules/extras/megaupload.php
CHANGED
@@ -1,4 +1,8 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
2 |
/*
|
3 |
Plugin Name: MegaUpload API
|
4 |
Description: Check links to MegaUpload files.
|
@@ -17,7 +21,7 @@ ModuleCheckerUrlPattern: @^http://[\w\.]*?megaupload\.com/.*?(?:\?|&)d=([0-9A-Za
|
|
17 |
|
18 |
/**
|
19 |
* MegaUpload API link checker.
|
20 |
-
*
|
21 |
* @package Broken Link Checker
|
22 |
* @author Janis Elsts
|
23 |
* @access public
|
@@ -67,9 +71,19 @@ class blcMegaUploadChecker extends blcChecker {
|
|
67 |
|
68 |
//An unexpected error. Connection problems, IP blocks - it all goes here.
|
69 |
$result['broken'] = true;
|
70 |
-
$result['log'] .= "Error : " . $info->get_error_message();
|
71 |
if ( $data = $info->get_error_data() ){
|
72 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
}
|
74 |
|
75 |
} else {
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Megaupload.com has been seized by the USA government, rendering this module irrelevant.
|
4 |
+
*/
|
5 |
+
|
6 |
/*
|
7 |
Plugin Name: MegaUpload API
|
8 |
Description: Check links to MegaUpload files.
|
21 |
|
22 |
/**
|
23 |
* MegaUpload API link checker.
|
24 |
+
*
|
25 |
* @package Broken Link Checker
|
26 |
* @author Janis Elsts
|
27 |
* @access public
|
71 |
|
72 |
//An unexpected error. Connection problems, IP blocks - it all goes here.
|
73 |
$result['broken'] = true;
|
|
|
74 |
if ( $data = $info->get_error_data() ){
|
75 |
+
//Check for the "domain seized" message.
|
76 |
+
$code = isset($data['response']['code']) ? $data['response']['code'] : 0;
|
77 |
+
$body = isset($data['body']) ? $data['body'] : '';
|
78 |
+
if ( ($code == 404) && (strpos($body, '<title>NOTICE</title>') !== false) ) {
|
79 |
+
$result['log'] .= "The domain megaupload.com has been seized.";
|
80 |
+
$result['status_code'] = BLC_LINK_STATUS_ERROR;
|
81 |
+
$result['status_text'] = __('Not Found', 'broken-link-checker');
|
82 |
+
$result['http_code'] = 404;
|
83 |
+
} else {
|
84 |
+
$result['log'] .= "Error : " . $info->get_error_message();
|
85 |
+
$result['log'] .= "\n\nError data : " . print_r($data, true);
|
86 |
+
}
|
87 |
}
|
88 |
|
89 |
} else {
|
modules/extras/megavideo-embed.php
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
Plugin Name: Embedded Megavideo videos
|
4 |
+
Description: Parse embedded videos from Megavideo
|
5 |
+
Version: 1.0
|
6 |
+
Author: Janis Elsts
|
7 |
+
|
8 |
+
ModuleCategory: parser
|
9 |
+
ModuleClassName: blcMegavideoEmbed
|
10 |
+
ModuleContext: on-demand
|
11 |
+
ModuleLazyInit: true
|
12 |
+
|
13 |
+
ModulePriority: 110
|
14 |
+
*/
|
15 |
+
|
16 |
+
if ( !class_exists('blcEmbedParserBase') ){
|
17 |
+
require 'embed-parser-base.php';
|
18 |
+
}
|
19 |
+
|
20 |
+
class blcMegavideoEmbed extends blcEmbedParserBase {
|
21 |
+
|
22 |
+
function init(){
|
23 |
+
parent::init();
|
24 |
+
$this->short_title = __('Megavideo Video', 'broken-link-checker');
|
25 |
+
$this->long_title = __('Embedded Megavideo video', 'broken-link-checker');
|
26 |
+
$this->url_search_string = 'megavideo.com/v/';
|
27 |
+
}
|
28 |
+
|
29 |
+
function link_url_from_src($src){
|
30 |
+
//It doesn't really matter what URL we use here, since Megavideo has been
|
31 |
+
//taken down and all URLs will fail anyway.
|
32 |
+
return $src;
|
33 |
+
}
|
34 |
+
|
35 |
+
function ui_get_link_text($instance, $context = 'display'){
|
36 |
+
return '[' . $this->short_title . ']';
|
37 |
+
}
|
38 |
+
}
|
39 |
+
|
modules/extras/rapidshare.php
CHANGED
@@ -48,7 +48,7 @@ class blcRapidShareChecker extends blcChecker {
|
|
48 |
'redirect_count' => 0,
|
49 |
'timeout' => false,
|
50 |
'broken' => false,
|
51 |
-
'log' => "<em>(
|
52 |
'result_hash' => '',
|
53 |
'status_code' => '',
|
54 |
'status_text' => '',
|
@@ -61,42 +61,39 @@ class blcRapidShareChecker extends blcChecker {
|
|
61 |
$file_name = $matches[2];
|
62 |
|
63 |
/*
|
64 |
-
We use the
|
65 |
http://images.rapidshare.com/apidoc.txt
|
66 |
|
67 |
The relevant function is documented thusly :
|
68 |
|
69 |
-
|
70 |
|
71 |
-
Description:
|
72 |
-
|
73 |
-
|
74 |
-
|
|
|
75 |
files=comma separated list of file ids
|
76 |
filenames=comma separated list of the respective filename. Example: files=50444381,50444382 filenames=test1.rar,test2.rar
|
77 |
-
|
78 |
-
|
79 |
-
Reply fields:
|
80 |
1:File ID
|
81 |
2:Filename
|
82 |
3:Size (in bytes. If size is 0, this file does not exist.)
|
83 |
4:Server ID
|
84 |
5:Status integer, which can have the following numeric values:
|
85 |
0=File not found
|
86 |
-
1=File OK
|
87 |
-
2=File OK (TrafficShare direct download without any logging)
|
88 |
3=Server down
|
89 |
4=File marked as illegal
|
90 |
-
5=Anonymous file locked, because it has more than 10 downloads already
|
91 |
-
6=File OK (TrafficShare direct download with enabled logging. Read our privacy policy to see what is logged.)
|
92 |
6:Short host (Use the short host to get the best download mirror: http://rs$serverid$shorthost.rapidshare.com/files/$fileid/$filename)
|
93 |
-
7:
|
94 |
-
|
95 |
Reply format: integer,string,integer,integer,integer,string,string
|
96 |
*/
|
97 |
|
98 |
$api_url = sprintf(
|
99 |
-
'http://api.rapidshare.com/cgi-bin/rsapi.cgi?sub=
|
100 |
$file_id,
|
101 |
$file_name
|
102 |
);
|
48 |
'redirect_count' => 0,
|
49 |
'timeout' => false,
|
50 |
'broken' => false,
|
51 |
+
'log' => sprintf("<em>(%s)</em>\n\n", __('Using RapidShare API', 'broken-link-checker')),
|
52 |
'result_hash' => '',
|
53 |
'status_code' => '',
|
54 |
'status_text' => '',
|
61 |
$file_name = $matches[2];
|
62 |
|
63 |
/*
|
64 |
+
We use the checkfiles function to check file status. The RapidShare API docs can be found here :
|
65 |
http://images.rapidshare.com/apidoc.txt
|
66 |
|
67 |
The relevant function is documented thusly :
|
68 |
|
69 |
+
sub=checkfiles
|
70 |
|
71 |
+
Description:
|
72 |
+
Gets status details about a list of given files. (files parameter limited to 3000 bytes.
|
73 |
+
filenames parameter limited to 30000 bytes.)
|
74 |
+
|
75 |
+
Parameters:
|
76 |
files=comma separated list of file ids
|
77 |
filenames=comma separated list of the respective filename. Example: files=50444381,50444382 filenames=test1.rar,test2.rar
|
78 |
+
|
79 |
+
Reply fields:
|
|
|
80 |
1:File ID
|
81 |
2:Filename
|
82 |
3:Size (in bytes. If size is 0, this file does not exist.)
|
83 |
4:Server ID
|
84 |
5:Status integer, which can have the following numeric values:
|
85 |
0=File not found
|
86 |
+
1=File OK
|
|
|
87 |
3=Server down
|
88 |
4=File marked as illegal
|
|
|
|
|
89 |
6:Short host (Use the short host to get the best download mirror: http://rs$serverid$shorthost.rapidshare.com/files/$fileid/$filename)
|
90 |
+
7:MD5 (hexadecimal)
|
91 |
+
|
92 |
Reply format: integer,string,integer,integer,integer,string,string
|
93 |
*/
|
94 |
|
95 |
$api_url = sprintf(
|
96 |
+
'http://api.rapidshare.com/cgi-bin/rsapi.cgi?sub=checkfiles&files=%d&filenames=%s',
|
97 |
$file_id,
|
98 |
$file_name
|
99 |
);
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: whiteshadow
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
5 |
Requires at least: 3.2
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 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 |
|
@@ -62,6 +62,7 @@ You can also click on the contents of the "Status" or "Link Text" columns to get
|
|
62 |
* Romanian - [Ovidiu](http://www.jibo.ro)
|
63 |
* Russian - [Anna Ozeritskaya](http://hweia.ru/)
|
64 |
* Spanish - [Neoshinji](http://blog.tuayudainformatica.com/traducciones-de-plugins-wordpress/)
|
|
|
65 |
* Ukrainian - [Stas Mykhajlyuk](http://www.kosivart.com/)
|
66 |
|
67 |
*Note: Some translations are not entirely up to date with the latest release, so parts of the interface may appear untranslated.*
|
@@ -89,6 +90,18 @@ To upgrade your installation
|
|
89 |
|
90 |
== Changelog ==
|
91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
= 1.4 =
|
93 |
* Added an option to send post authors notifications about broken links in their posts.
|
94 |
* Added the ability to sort links by URL (click the column header).
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
5 |
Requires at least: 3.2
|
6 |
+
Tested up to: 3.4-alpha
|
7 |
+
Stable tag: 1.5
|
8 |
|
9 |
This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
|
10 |
|
62 |
* Romanian - [Ovidiu](http://www.jibo.ro)
|
63 |
* Russian - [Anna Ozeritskaya](http://hweia.ru/)
|
64 |
* Spanish - [Neoshinji](http://blog.tuayudainformatica.com/traducciones-de-plugins-wordpress/)
|
65 |
+
* Turkish - [Murat Durgun](http://www.lanwifi.net/)
|
66 |
* Ukrainian - [Stas Mykhajlyuk](http://www.kosivart.com/)
|
67 |
|
68 |
*Note: Some translations are not entirely up to date with the latest release, so parts of the interface may appear untranslated.*
|
90 |
|
91 |
== Changelog ==
|
92 |
|
93 |
+
= 1.5 =
|
94 |
+
* Added a FileServe checker.
|
95 |
+
* Added Turkish translation.
|
96 |
+
* Added GoogleVideo and Megavideo embed support.
|
97 |
+
* Fixed Megaupload links being reported with an "Unknown error" message when it should be "Not found".
|
98 |
+
* Fixed a couple of bugs in the Rapidshare and MediaFire checkers.
|
99 |
+
* Updated German translation.
|
100 |
+
* Updated Italian translation.
|
101 |
+
* Updated Portuguese translation.
|
102 |
+
* The explanatory text for the broken link CSS and removed link CSS inputs can now be translated.
|
103 |
+
* Tested on WP 3.4-alpha-20291.
|
104 |
+
|
105 |
= 1.4 =
|
106 |
* Added an option to send post authors notifications about broken links in their posts.
|
107 |
* Added the ability to sort links by URL (click the column header).
|