Version Description
- Updated Portuguese translation.
- Updated German translation.
- Fixed the donation link to properly return to the Dashboard upon completion.
- Do not display ads to users who have donated.
Download this release
Release Info
Developer | whiteshadow |
Plugin | Broken Link Checker |
Version | 1.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.5 to 1.5.1
- broken-link-checker.php +1 -1
- core/core.php +12 -9
- core/init.php +1 -0
- images/themefuse-250x250.jpg +0 -0
- includes/admin/sidebar.php +22 -3
- includes/config-manager.php +1 -1
- languages/broken-link-checker-de_DE.mo +0 -0
- languages/broken-link-checker-de_DE.po +908 -840
- languages/broken-link-checker-pt_PT.mo +0 -0
- languages/broken-link-checker-pt_PT.po +236 -166
- readme.txt +8 -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.5
|
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.1
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/blog/
|
9 |
Text Domain: broken-link-checker
|
core/core.php
CHANGED
@@ -324,14 +324,17 @@ class wsBrokenLinkChecker {
|
|
324 |
array($options_page_hook, $links_page_hook)
|
325 |
);
|
326 |
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
|
|
|
|
|
|
335 |
add_screen_meta_link(
|
336 |
'blc-links-page-link',
|
337 |
__('Go to Broken Links', 'broken-link-checker'),
|
@@ -525,7 +528,7 @@ class wsBrokenLinkChecker {
|
|
525 |
//Show a thank-you message when a donation is made.
|
526 |
if ( !empty($_GET['donated']) ){
|
527 |
echo '<div id="message" class="updated fade"><p><strong>',__('Thank you for your donation!', 'broken-link-checker'), '</strong></p></div>';
|
528 |
-
|
529 |
}
|
530 |
|
531 |
//Show one when recheck is started, too.
|
324 |
array($options_page_hook, $links_page_hook)
|
325 |
);
|
326 |
|
327 |
+
if ( !$this->conf->get('user_has_donated') ) {
|
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,
|
333 |
+
array('style' => 'font-weight: bold;')
|
334 |
+
);
|
335 |
+
}
|
336 |
+
|
337 |
+
//Make the Settings page link to the link list
|
338 |
add_screen_meta_link(
|
339 |
'blc-links-page-link',
|
340 |
__('Go to Broken Links', 'broken-link-checker'),
|
528 |
//Show a thank-you message when a donation is made.
|
529 |
if ( !empty($_GET['donated']) ){
|
530 |
echo '<div id="message" class="updated fade"><p><strong>',__('Thank you for your donation!', 'broken-link-checker'), '</strong></p></div>';
|
531 |
+
$this->conf->set('user_has_donated', true);
|
532 |
}
|
533 |
|
534 |
//Show one when recheck is started, too.
|
core/init.php
CHANGED
@@ -108,6 +108,7 @@ $blc_config_manager = new blcConfigurationManager(
|
|
108 |
//recovered after this many days.
|
109 |
|
110 |
'installation_complete' => false,
|
|
|
111 |
)
|
112 |
);
|
113 |
|
108 |
//recovered after this many days.
|
109 |
|
110 |
'installation_complete' => false,
|
111 |
+
'user_has_donated' => true, //Whether the user has donated to the plugin.
|
112 |
)
|
113 |
);
|
114 |
|
images/themefuse-250x250.jpg
ADDED
Binary file
|
includes/admin/sidebar.php
CHANGED
@@ -1,15 +1,17 @@
|
|
1 |
<?php
|
|
|
|
|
2 |
if ( !function_exists('fetch_feed') ){
|
3 |
include_once(ABSPATH . WPINC . '/feed.php');
|
4 |
}
|
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 {
|
14 |
text-align: left;
|
15 |
}
|
@@ -53,6 +55,7 @@ endif;
|
|
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 |
?>" />
|
@@ -68,4 +71,20 @@ endif;
|
|
68 |
</div>
|
69 |
</div>
|
70 |
|
71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
+
$configuration = blc_get_configuration();
|
3 |
+
|
4 |
if ( !function_exists('fetch_feed') ){
|
5 |
include_once(ABSPATH . WPINC . '/feed.php');
|
6 |
}
|
7 |
+
if ( !$configuration->get('user_has_donated', false) && function_exists('fetch_feed') ):
|
8 |
$feed_url = 'http://w-shadow.com/files/blc-plugin-links.rss';
|
9 |
$num_items = 3;
|
10 |
|
11 |
$feed = fetch_feed($feed_url);
|
12 |
if ( !is_wp_error($feed) ):
|
13 |
?>
|
14 |
+
<style type="text/css">
|
15 |
#advertising .inside {
|
16 |
text-align: left;
|
17 |
}
|
55 |
<input type="hidden" name="currency_code" value="USD">
|
56 |
<input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHosted">
|
57 |
|
58 |
+
<input type="hidden" name="rm" value="2">
|
59 |
<input type="hidden" name="return" value="<?php
|
60 |
echo esc_attr(admin_url('options-general.php?page=link-checker-settings&donated=1'));
|
61 |
?>" />
|
71 |
</div>
|
72 |
</div>
|
73 |
|
74 |
+
<?php if ( !$configuration->get('user_has_donated') ): ?>
|
75 |
+
<style type="text/css">
|
76 |
+
#themefuse-ad .inside {
|
77 |
+
padding: 2px 0 0 0;
|
78 |
+
margin: 0;
|
79 |
+
text-align: center;
|
80 |
+
}
|
81 |
+
</style>
|
82 |
+
<div id="themefuse-ad" class="postbox">
|
83 |
+
<!--<h3 class="hndle">ThemeFuse</h3> -->
|
84 |
+
<div class="inside">
|
85 |
+
<a href="http://themefuse.com/wp-themes-shop/?plugin=broken-link-checker" title="ThemeFuse themes">
|
86 |
+
<img src="<?php echo plugins_url('images/themefuse-250x250.jpg', BLC_PLUGIN_FILE) ?>" width="250" height="250" alt="ThemeFuse">
|
87 |
+
</a>
|
88 |
+
</div>
|
89 |
+
</div>
|
90 |
+
<?php endif; ?>
|
includes/config-manager.php
CHANGED
@@ -83,7 +83,7 @@ class blcConfigurationManager {
|
|
83 |
}
|
84 |
|
85 |
/**
|
86 |
-
* Retrieve a
|
87 |
*
|
88 |
* @param string $key
|
89 |
* @param mixed $default
|
83 |
}
|
84 |
|
85 |
/**
|
86 |
+
* Retrieve a specific setting.
|
87 |
*
|
88 |
* @param string $key
|
89 |
* @param mixed $default
|
languages/broken-link-checker-de_DE.mo
CHANGED
Binary file
|
languages/broken-link-checker-de_DE.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Broken Link Checker | V1.
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -18,392 +18,6 @@ msgstr ""
|
|
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 "Das Bearbeiten von '%s' [%d] ist fehlgeschlagen."
|
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 "Aktualisieren des Meta-Feldes '%s' in %s [%d] schlug fehl"
|
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 "Löschen des Meta-Feldes '%s' in %s [%d] schlug fehl"
|
36 |
-
|
37 |
-
# @ default
|
38 |
-
#: modules/containers/custom_field.php:187
|
39 |
-
msgid "Edit this post"
|
40 |
-
msgstr "Bearbeiten Sie diesen Beitrag"
|
41 |
-
|
42 |
-
# @ default
|
43 |
-
#: modules/containers/custom_field.php:197
|
44 |
-
#: includes/any-post.php:455
|
45 |
-
msgid "Edit this item"
|
46 |
-
msgstr "Bearbeiten Sie dieses Element"
|
47 |
-
|
48 |
-
# @ default
|
49 |
-
#: modules/containers/custom_field.php:197
|
50 |
-
#: modules/containers/blogroll.php:46
|
51 |
-
#: modules/containers/comment.php:153
|
52 |
-
#: includes/any-post.php:397
|
53 |
-
msgid "Edit"
|
54 |
-
msgstr "Bearbeiten"
|
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 "Element in den Papierkorb verschieben"
|
61 |
-
|
62 |
-
# @ default
|
63 |
-
#: modules/containers/custom_field.php:205
|
64 |
-
#: includes/any-post.php:407
|
65 |
-
msgid "Trash"
|
66 |
-
msgstr "Papierkorb"
|
67 |
-
|
68 |
-
# @ default
|
69 |
-
#: modules/containers/custom_field.php:210
|
70 |
-
#: includes/any-post.php:412
|
71 |
-
msgid "Delete this item permanently"
|
72 |
-
msgstr "Element endgültig löschen"
|
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 "Löschen"
|
80 |
-
|
81 |
-
# @ broken-link-checker
|
82 |
-
#: modules/containers/custom_field.php:217
|
83 |
-
msgid "View \"%s\""
|
84 |
-
msgstr "\"%s\" ansehen"
|
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 "Ansehen"
|
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 "Löschen des Beitrages \"%s\" (%d) schlug fehl"
|
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 "Der Beitrag \"%s\" (%d) kann nicht in den Papierkorb verschoben werden, weil diese Funktion deaktiviert ist"
|
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 "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
|
110 |
-
|
111 |
-
# @ broken-link-checker
|
112 |
-
#: modules/containers/blogroll.php:21
|
113 |
-
msgid "Bookmark"
|
114 |
-
msgstr "Lesezeichen"
|
115 |
-
|
116 |
-
# @ broken-link-checker
|
117 |
-
#: modules/containers/blogroll.php:27
|
118 |
-
#: modules/containers/blogroll.php:46
|
119 |
-
msgid "Edit this bookmark"
|
120 |
-
msgstr "Lesezeichen bearbeiten"
|
121 |
-
|
122 |
-
# @ default
|
123 |
-
#: modules/containers/blogroll.php:47
|
124 |
-
msgid ""
|
125 |
-
"You are about to delete this link '%s'\n"
|
126 |
-
" 'Cancel' to stop, 'OK' to delete."
|
127 |
-
msgstr ""
|
128 |
-
"Möchten Sie diesen Link löschen '%s'\n"
|
129 |
-
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
130 |
-
|
131 |
-
# @ broken-link-checker
|
132 |
-
#: modules/containers/blogroll.php:83
|
133 |
-
#: modules/containers/comment.php:43
|
134 |
-
#: includes/any-post.php:519
|
135 |
-
msgid "Nothing to update"
|
136 |
-
msgstr "Nichts zu aktualisieren"
|
137 |
-
|
138 |
-
# @ broken-link-checker
|
139 |
-
#: modules/containers/blogroll.php:97
|
140 |
-
msgid "Updating bookmark %d failed"
|
141 |
-
msgstr "Lesezeichen Aktualisierung %d fehlgeschlagen"
|
142 |
-
|
143 |
-
# @ broken-link-checker
|
144 |
-
#: modules/containers/blogroll.php:128
|
145 |
-
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
146 |
-
msgstr "Löschen des Blogroll Link \"%s\" (%d) schlug fehl"
|
147 |
-
|
148 |
-
# @ broken-link-checker
|
149 |
-
#: modules/containers/blogroll.php:298
|
150 |
-
msgid "%d blogroll link deleted."
|
151 |
-
msgid_plural "%d blogroll links deleted."
|
152 |
-
msgstr[0] "%d Blogroll Link gelöscht."
|
153 |
-
msgstr[1] "%d Blogroll Links gelöscht."
|
154 |
-
|
155 |
-
# @ broken-link-checker
|
156 |
-
#: modules/containers/comment.php:53
|
157 |
-
msgid "Updating comment %d failed"
|
158 |
-
msgstr "Kommentar Aktualisierung %d fehlgeschlagen"
|
159 |
-
|
160 |
-
# @ broken-link-checker
|
161 |
-
#: modules/containers/comment.php:74
|
162 |
-
msgid "Failed to delete comment %d"
|
163 |
-
msgstr "Fehler beim Kommentar löschen %d"
|
164 |
-
|
165 |
-
# @ broken-link-checker
|
166 |
-
#: modules/containers/comment.php:95
|
167 |
-
msgid "Can't move comment %d to the trash"
|
168 |
-
msgstr "Kommentar %d kann nicht in den Papierkorb verschoben werden"
|
169 |
-
|
170 |
-
# @ default
|
171 |
-
#: modules/containers/comment.php:153
|
172 |
-
#: modules/containers/comment.php:195
|
173 |
-
msgid "Edit comment"
|
174 |
-
msgstr "Kommentar bearbeiten"
|
175 |
-
|
176 |
-
# @ default
|
177 |
-
#: modules/containers/comment.php:160
|
178 |
-
msgid "Delete Permanently"
|
179 |
-
msgstr "Endgültig löschen"
|
180 |
-
|
181 |
-
# @ default
|
182 |
-
#: modules/containers/comment.php:162
|
183 |
-
msgid "Move this comment to the trash"
|
184 |
-
msgstr "%d Kommentar in den Papierkorb verschieben"
|
185 |
-
|
186 |
-
# @ default
|
187 |
-
#: modules/containers/comment.php:162
|
188 |
-
msgctxt "verb"
|
189 |
-
msgid "Trash"
|
190 |
-
msgstr "Papierkorb"
|
191 |
-
|
192 |
-
# @ broken-link-checker
|
193 |
-
#: modules/containers/comment.php:166
|
194 |
-
msgid "View comment"
|
195 |
-
msgstr "Kommentar ansehen"
|
196 |
-
|
197 |
-
# @ broken-link-checker
|
198 |
-
#: modules/containers/comment.php:183
|
199 |
-
msgid "Comment"
|
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."
|
214 |
-
msgstr[1] "%d Kommentare in den Papierkorb verschoben."
|
215 |
-
|
216 |
-
# @ broken-link-checker
|
217 |
-
#: modules/checkers/http.php:242
|
218 |
-
msgid "Server Not Found"
|
219 |
-
msgstr "Server nicht gefunden"
|
220 |
-
|
221 |
-
# @ broken-link-checker
|
222 |
-
#: modules/checkers/http.php:257
|
223 |
-
msgid "Connection Failed"
|
224 |
-
msgstr "Verbindung fehlgeschlagen"
|
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 "Unbekannter Fehler"
|
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 Code: %d"
|
239 |
-
|
240 |
-
# @ broken-link-checker
|
241 |
-
#: modules/checkers/http.php:294
|
242 |
-
#: modules/checkers/http.php:364
|
243 |
-
msgid "(No response)"
|
244 |
-
msgstr "(Keine Antwort)"
|
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 "Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
|
250 |
-
|
251 |
-
# @ broken-link-checker
|
252 |
-
#: modules/checkers/http.php:371
|
253 |
-
msgid "Request timed out."
|
254 |
-
msgstr "Erfordert Zeitlimit."
|
255 |
-
|
256 |
-
# @ broken-link-checker
|
257 |
-
#: modules/checkers/http.php:389
|
258 |
-
msgid "Using Snoopy"
|
259 |
-
msgstr "Benutzt Snoopy"
|
260 |
-
|
261 |
-
# @ broken-link-checker
|
262 |
-
#: modules/parsers/image.php:159
|
263 |
-
msgid "Image"
|
264 |
-
msgstr "Bild"
|
265 |
-
|
266 |
-
# @ broken-link-checker
|
267 |
-
#: modules/parsers/metadata.php:117
|
268 |
-
msgid "Custom field"
|
269 |
-
msgstr "Benutzerdefiniertes Feld"
|
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 "Eingebettete YouTube Videos"
|
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 "Eingebettete DailyMotion Videos"
|
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 "Nicht gefunden"
|
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 "OK"
|
309 |
-
|
310 |
-
# @ broken-link-checker
|
311 |
-
#: modules/extras/rapidshare.php:161
|
312 |
-
msgid "RS Server Down"
|
313 |
-
msgstr "RS Server nicht verfügbar"
|
314 |
-
|
315 |
-
# @ broken-link-checker
|
316 |
-
#: modules/extras/rapidshare.php:168
|
317 |
-
msgid "File Blocked"
|
318 |
-
msgstr "Datei blockiert"
|
319 |
-
|
320 |
-
#: modules/extras/rapidshare.php:175
|
321 |
-
msgid "File Locked"
|
322 |
-
msgstr "Datei gesperrt"
|
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 Fehler: %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 "Eingebettete Videos können mit Broken Link Checker nicht editiert werden. Bitte ändern oder ersetzen Sie das betreffende Video manuell."
|
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 "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 |
-
|
384 |
-
#: modules/extras/megaupload.php:116
|
385 |
-
msgid "File Temporarily Unavailable"
|
386 |
-
msgstr "Datei vorübergehend nicht erreichbar"
|
387 |
-
|
388 |
-
#: modules/extras/megaupload.php:122
|
389 |
-
msgid "API Error"
|
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 |
-
|
407 |
# @ broken-link-checker
|
408 |
#: core/core.php:146
|
409 |
#: includes/admin/links-page-js.php:37
|
@@ -447,7 +61,7 @@ msgid "Feedback"
|
|
447 |
msgstr "Feedback"
|
448 |
|
449 |
#: core/core.php:330
|
450 |
-
#: includes/admin/sidebar.php:
|
451 |
msgid "More plugins by Janis Elsts"
|
452 |
msgstr "Weitere Plugins von Janis Elsts"
|
453 |
|
@@ -463,13 +77,13 @@ msgstr "Einstellungen"
|
|
463 |
|
464 |
# @ broken-link-checker
|
465 |
#: core/core.php:378
|
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:382
|
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 |
|
@@ -576,553 +190,586 @@ msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
|
|
576 |
|
577 |
# @ broken-link-checker
|
578 |
#: core/core.php:700
|
579 |
-
#: core/core.php:
|
580 |
msgid "Edit CSS"
|
581 |
msgstr "Bearbeite CSS"
|
582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
583 |
# @ broken-link-checker
|
584 |
-
#: core/core.php:
|
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:
|
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:
|
595 |
msgid "Look for links in"
|
596 |
msgstr "Suchen Sie nach Links in"
|
597 |
|
598 |
# @ broken-link-checker
|
599 |
-
#: core/core.php:
|
600 |
msgid "Post statuses"
|
601 |
msgstr "Beitrag Status"
|
602 |
|
603 |
# @ broken-link-checker
|
604 |
-
#: core/core.php:
|
605 |
msgid "Link types"
|
606 |
msgstr "Link Typen"
|
607 |
|
608 |
# @ broken-link-checker
|
609 |
-
#: core/core.php:
|
610 |
msgid "Error : All link parsers missing!"
|
611 |
msgstr "Fehler: Alle Link-Parser fehlen!"
|
612 |
|
613 |
# @ broken-link-checker
|
614 |
-
#: core/core.php:
|
615 |
msgid "Exclusion list"
|
616 |
msgstr "Ausschlussliste"
|
617 |
|
618 |
# @ broken-link-checker
|
619 |
-
#: core/core.php:
|
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:
|
625 |
msgid "Check links using"
|
626 |
msgstr "Überprüfe Links"
|
627 |
|
628 |
# @ broken-link-checker
|
629 |
-
#: core/core.php:
|
630 |
#: includes/links.php:849
|
631 |
msgid "Timeout"
|
632 |
msgstr "Zeitüberschreitung"
|
633 |
|
634 |
# @ broken-link-checker
|
635 |
# @ default
|
636 |
-
#: core/core.php:
|
637 |
-
#: core/core.php:
|
638 |
-
#: core/core.php:
|
639 |
msgid "%s seconds"
|
640 |
msgstr "%s Sekunden"
|
641 |
|
642 |
# @ broken-link-checker
|
643 |
-
#: core/core.php:
|
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:
|
649 |
msgid "Link monitor"
|
650 |
msgstr "Link Monitor"
|
651 |
|
652 |
# @ broken-link-checker
|
653 |
-
#: core/core.php:
|
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:
|
659 |
msgid "Run hourly in the background"
|
660 |
msgstr "Stündlich im Hintergrund arbeiten"
|
661 |
|
662 |
# @ broken-link-checker
|
663 |
-
#: core/core.php:
|
664 |
msgid "Max. execution time"
|
665 |
msgstr "Max. Ausführungszeit"
|
666 |
|
667 |
# @ broken-link-checker
|
668 |
-
#: core/core.php:
|
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:
|
674 |
msgid "Server load limit"
|
675 |
msgstr "Server Belastungsgrenze"
|
676 |
|
677 |
-
#: core/core.php:
|
678 |
msgid "Current load : %s"
|
679 |
msgstr "Aktuelle Belastung: %s"
|
680 |
|
681 |
# @ broken-link-checker
|
682 |
-
#: core/core.php:
|
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:
|
688 |
msgid "Not available"
|
689 |
msgstr "Nicht verfügbar"
|
690 |
|
691 |
# @ broken-link-checker
|
692 |
-
#: core/core.php:
|
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:
|
698 |
msgid "Forced recheck"
|
699 |
msgstr "Erneute Überprüfung erzwingen"
|
700 |
|
701 |
# @ broken-link-checker
|
702 |
-
#: core/core.php:
|
703 |
msgid "Re-check all pages"
|
704 |
msgstr "Überprüfe alle Seiten noch einmal"
|
705 |
|
706 |
# @ broken-link-checker
|
707 |
-
#: core/core.php:
|
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:
|
713 |
msgid "Save Changes"
|
714 |
msgstr "Änderungen speichern"
|
715 |
|
716 |
# @ broken-link-checker
|
717 |
-
#: core/core.php:
|
718 |
msgid "Configure"
|
719 |
msgstr "Konfigurieren"
|
720 |
|
721 |
# @ broken-link-checker
|
722 |
-
#: core/core.php:
|
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:
|
728 |
-
#: core/core.php:
|
729 |
-
#: core/core.php:
|
730 |
msgid "Database error : %s"
|
731 |
msgstr "Datenbank Fehler: %s"
|
732 |
|
733 |
# @ broken-link-checker
|
734 |
-
#: core/core.php:
|
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:
|
740 |
msgid "Invalid search query."
|
741 |
msgstr "Ungültige Suchanfrage."
|
742 |
|
743 |
# @ broken-link-checker
|
744 |
-
#: core/core.php:
|
745 |
msgid "Filter \"%s\" created"
|
746 |
msgstr "Filter \"%s\" erstellt"
|
747 |
|
748 |
# @ broken-link-checker
|
749 |
-
#: core/core.php:
|
750 |
msgid "Filter ID not specified."
|
751 |
msgstr "Link ID nicht spezifiziert."
|
752 |
|
753 |
# @ broken-link-checker
|
754 |
-
#: core/core.php:
|
755 |
msgid "Filter deleted"
|
756 |
msgstr "Filter gelöscht"
|
757 |
|
758 |
# @ broken-link-checker
|
759 |
-
#: core/core.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
826 |
-
#: core/core.php:
|
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:
|
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:
|
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:
|
844 |
msgid "Table columns"
|
845 |
msgstr "Tabellenspalten"
|
846 |
|
847 |
# @ default
|
848 |
-
#: core/core.php:
|
849 |
msgid "Show on screen"
|
850 |
msgstr "Auf dem Bildschirm anzeigen"
|
851 |
|
852 |
# @ broken-link-checker
|
853 |
-
#: core/core.php:
|
854 |
msgid "links"
|
855 |
msgstr "Links"
|
856 |
|
857 |
# @ default
|
858 |
# @ broken-link-checker
|
859 |
-
#: core/core.php:
|
860 |
#: includes/admin/table-printer.php:163
|
861 |
msgid "Apply"
|
862 |
msgstr "Anwenden"
|
863 |
|
864 |
# @ broken-link-checker
|
865 |
-
#: core/core.php:
|
866 |
msgid "Misc"
|
867 |
msgstr "Sonstige"
|
868 |
|
869 |
# @ broken-link-checker
|
870 |
-
#: core/core.php:
|
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:
|
876 |
msgid "Color-code status codes"
|
877 |
msgstr "Farb-Code Status Codes"
|
878 |
|
879 |
# @ broken-link-checker
|
880 |
-
#: core/core.php:
|
881 |
-
#: core/core.php:
|
882 |
-
#: core/core.php:
|
883 |
-
#: core/core.php:
|
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:
|
889 |
msgid "View broken links"
|
890 |
msgstr "Fehlerhafte Links anschauen"
|
891 |
|
892 |
# @ broken-link-checker
|
893 |
-
#: core/core.php:
|
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:
|
901 |
msgid "No broken links found."
|
902 |
msgstr "Keine fehlerhaften Links gefunden."
|
903 |
|
904 |
# @ broken-link-checker
|
905 |
-
#: core/core.php:
|
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:
|
913 |
msgid "No URLs in the work queue."
|
914 |
msgstr "Keine URLs in der Warteschlange."
|
915 |
|
916 |
# @ broken-link-checker
|
917 |
-
#: core/core.php:
|
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:
|
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:
|
932 |
msgid "and still searching..."
|
933 |
msgstr "und sucht immer noch ..."
|
934 |
|
935 |
# @ broken-link-checker
|
936 |
-
#: core/core.php:
|
937 |
msgid "Searching your blog for links..."
|
938 |
msgstr "Durchsucht Ihr Blog nach Links ..."
|
939 |
|
940 |
# @ broken-link-checker
|
941 |
-
#: core/core.php:
|
942 |
msgid "No links detected."
|
943 |
msgstr "Keine Links gefunden."
|
944 |
|
945 |
# @ broken-link-checker
|
946 |
-
#: core/core.php:
|
947 |
msgctxt "current load"
|
948 |
msgid "Unknown"
|
949 |
msgstr "Unbekannt"
|
950 |
|
951 |
# @ broken-link-checker
|
952 |
-
#: core/core.php:
|
953 |
-
#: core/core.php:
|
954 |
-
#: core/core.php:
|
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:
|
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:
|
965 |
-
#: core/core.php:
|
966 |
msgid "Error : link_id not specified"
|
967 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
968 |
|
969 |
# @ broken-link-checker
|
970 |
-
#: core/core.php:
|
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:
|
976 |
-
#: core/core.php:
|
977 |
msgid "An unexpected error occured!"
|
978 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
979 |
|
980 |
# @ broken-link-checker
|
981 |
-
#: core/core.php:
|
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:
|
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:
|
992 |
msgid "Error : link ID not specified"
|
993 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
994 |
|
995 |
# @ broken-link-checker
|
996 |
-
#: core/core.php:
|
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.
|
1002 |
#. Plugin Name of the plugin/theme
|
1003 |
-
#: core/core.php:
|
1004 |
msgid "Broken Link Checker"
|
1005 |
msgstr "Broken Link Checker"
|
1006 |
|
1007 |
# @ broken-link-checker
|
1008 |
-
#: core/core.php:
|
1009 |
msgid "PHP version"
|
1010 |
msgstr "PHP Version"
|
1011 |
|
1012 |
# @ broken-link-checker
|
1013 |
-
#: core/core.php:
|
1014 |
msgid "MySQL version"
|
1015 |
msgstr "MySQL Version"
|
1016 |
|
1017 |
# @ broken-link-checker
|
1018 |
-
#: core/core.php:
|
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:
|
1024 |
-
#: core/core.php:
|
1025 |
-
#: core/core.php:
|
1026 |
msgid "Not installed"
|
1027 |
msgstr "Nicht installiert"
|
1028 |
|
1029 |
# @ broken-link-checker
|
1030 |
-
#: core/core.php:
|
1031 |
msgid "CURL version"
|
1032 |
msgstr "CURL Version"
|
1033 |
|
1034 |
# @ broken-link-checker
|
1035 |
-
#: core/core.php:
|
1036 |
msgid "Installed"
|
1037 |
msgstr "Installiert"
|
1038 |
|
1039 |
# @ broken-link-checker
|
1040 |
-
#: core/core.php:
|
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:
|
1046 |
msgid "On"
|
1047 |
msgstr "An"
|
1048 |
|
1049 |
# @ broken-link-checker
|
1050 |
-
#: core/core.php:
|
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:
|
1056 |
-
#: core/core.php:
|
1057 |
msgid "Off"
|
1058 |
msgstr "Aus"
|
1059 |
|
1060 |
# @ broken-link-checker
|
1061 |
-
#: core/core.php:
|
1062 |
msgid "On ( %s )"
|
1063 |
msgstr "An (%s)"
|
1064 |
|
1065 |
# @ broken-link-checker
|
1066 |
-
#: core/core.php:
|
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:
|
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:
|
1077 |
-
#: core/core.php:
|
1078 |
msgid "[%s] Broken links detected"
|
1079 |
msgstr "[%s] Fehlerhafte Links entdeckt"
|
1080 |
|
1081 |
# @ broken-link-checker
|
1082 |
-
#: core/core.php:
|
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:
|
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:
|
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:
|
1102 |
msgid "Link text : %s"
|
1103 |
msgstr "Linktext: %s"
|
1104 |
|
1105 |
# @ broken-link-checker
|
1106 |
-
#: core/core.php:
|
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:
|
1112 |
msgid "Source : %s"
|
1113 |
msgstr "Quelle: %s"
|
1114 |
|
1115 |
# @ brokenk-link-checker
|
1116 |
-
#: core/core.php:
|
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:
|
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
|
@@ -1219,6 +866,11 @@ msgstr "Geben Sie zuerst einen Suchbegriff ein."
|
|
1219 |
msgid "Select one or more links to edit."
|
1220 |
msgstr "Wählen Sie einen oder mehrere Links zum bearbeiten."
|
1221 |
|
|
|
|
|
|
|
|
|
|
|
1222 |
# @ broken-link-checker
|
1223 |
#: includes/admin/search-form.php:16
|
1224 |
msgid "Save This Search As a Filter"
|
@@ -1286,23 +938,18 @@ msgstr "Suche Links"
|
|
1286 |
msgid "Cancel"
|
1287 |
msgstr "Abbrechen"
|
1288 |
|
1289 |
-
#: includes/admin/sidebar.php:
|
1290 |
msgid "Donate $10, $20 or $50!"
|
1291 |
msgstr "Spenden Sie $10, $20 oder $50!"
|
1292 |
|
1293 |
-
#: includes/admin/sidebar.php:
|
1294 |
msgid "If you like this plugin, please donate to support development and maintenance!"
|
1295 |
msgstr "Mögen Sie dieses Plugin, dann helfen Sie uns mit einer Spende für die Entwicklung und Wartung."
|
1296 |
|
1297 |
-
#: includes/admin/sidebar.php:
|
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"
|
@@ -1388,136 +1035,399 @@ 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 |
-
|
1396 |
-
|
1397 |
-
|
|
|
|
|
|
|
1398 |
|
1399 |
# @ broken-link-checker
|
1400 |
-
#: includes/
|
1401 |
-
msgid "
|
1402 |
-
|
|
|
|
|
1403 |
|
1404 |
# @ broken-link-checker
|
1405 |
-
#: includes/
|
1406 |
-
|
1407 |
-
|
|
|
1408 |
|
1409 |
# @ broken-link-checker
|
1410 |
-
#: includes/
|
1411 |
-
|
1412 |
-
|
|
|
1413 |
|
1414 |
# @ broken-link-checker
|
1415 |
-
#: includes/
|
1416 |
-
|
1417 |
-
|
|
|
1418 |
|
1419 |
# @ broken-link-checker
|
1420 |
-
#: includes/
|
1421 |
-
|
1422 |
-
|
|
|
1423 |
|
1424 |
# @ broken-link-checker
|
1425 |
-
#: includes/
|
1426 |
-
|
1427 |
-
|
|
|
1428 |
|
1429 |
# @ broken-link-checker
|
1430 |
-
#: includes/
|
1431 |
-
|
1432 |
-
|
|
|
1433 |
|
1434 |
# @ broken-link-checker
|
1435 |
-
#: includes/
|
1436 |
-
|
1437 |
-
|
|
|
1438 |
|
1439 |
# @ broken-link-checker
|
1440 |
-
#: includes/
|
1441 |
-
|
1442 |
-
|
|
|
1443 |
|
1444 |
# @ broken-link-checker
|
1445 |
-
#: includes/
|
1446 |
-
|
1447 |
-
|
1448 |
-
msgstr
|
1449 |
-
msgstr[1] "Dieser Link schlug %d mal fehl."
|
1450 |
|
1451 |
# @ broken-link-checker
|
1452 |
-
#: includes/
|
1453 |
-
|
1454 |
-
|
|
|
1455 |
|
1456 |
# @ broken-link-checker
|
1457 |
-
#: includes/
|
1458 |
-
|
1459 |
-
|
|
|
1460 |
|
1461 |
# @ broken-link-checker
|
1462 |
-
#: includes/
|
1463 |
-
|
1464 |
-
|
|
|
1465 |
|
1466 |
# @ broken-link-checker
|
1467 |
-
#: includes/
|
1468 |
-
msgctxt "
|
1469 |
-
msgid "
|
1470 |
-
msgstr "
|
1471 |
|
1472 |
# @ broken-link-checker
|
1473 |
-
#: includes/
|
1474 |
-
|
1475 |
-
|
|
|
1476 |
|
1477 |
# @ broken-link-checker
|
1478 |
-
#: includes/
|
1479 |
-
|
1480 |
-
|
|
|
1481 |
|
1482 |
# @ broken-link-checker
|
1483 |
-
#: includes/
|
1484 |
-
|
1485 |
-
|
|
|
1486 |
|
1487 |
# @ broken-link-checker
|
1488 |
-
#: includes/
|
1489 |
-
|
1490 |
-
|
|
|
1491 |
|
1492 |
# @ broken-link-checker
|
1493 |
-
#: includes/
|
1494 |
-
|
1495 |
-
|
|
|
1496 |
|
1497 |
# @ broken-link-checker
|
1498 |
-
#: includes/
|
1499 |
-
|
1500 |
-
|
|
|
1501 |
|
1502 |
# @ broken-link-checker
|
1503 |
-
#: includes/
|
1504 |
-
|
1505 |
-
|
|
|
1506 |
|
1507 |
# @ broken-link-checker
|
1508 |
-
#: includes/
|
1509 |
-
|
1510 |
-
|
|
|
1511 |
|
1512 |
# @ broken-link-checker
|
1513 |
-
#: includes/
|
1514 |
-
|
1515 |
-
|
|
|
1516 |
|
1517 |
# @ broken-link-checker
|
1518 |
-
#: includes/
|
1519 |
-
|
1520 |
-
|
|
|
1521 |
|
1522 |
# @ broken-link-checker
|
1523 |
#: includes/link-query.php:25
|
@@ -1542,108 +1452,33 @@ msgstr "Umgeleitete Links"
|
|
1542 |
# @ broken-link-checker
|
1543 |
#: includes/link-query.php:36
|
1544 |
msgid "No redirects found"
|
1545 |
-
msgstr "Keine umgeleiteten Links gefunden"
|
1546 |
-
|
1547 |
-
# @ broken-link-checker
|
1548 |
-
#: includes/link-query.php:44
|
1549 |
-
msgid "All"
|
1550 |
-
msgstr "Alle"
|
1551 |
-
|
1552 |
-
# @ broken-link-checker
|
1553 |
-
#: includes/link-query.php:45
|
1554 |
-
msgid "Detected Links"
|
1555 |
-
msgstr "Gefundene Links"
|
1556 |
-
|
1557 |
-
# @ broken-link-checker
|
1558 |
-
#: includes/link-query.php:46
|
1559 |
-
msgid "No links found (yet)"
|
1560 |
-
msgstr "(Noch) keine Links gefunden"
|
1561 |
-
|
1562 |
-
# @ broken-link-checker
|
1563 |
-
#: includes/link-query.php:54
|
1564 |
-
msgid "Search Results"
|
1565 |
-
msgstr "Such Resultat"
|
1566 |
-
|
1567 |
-
# @ broken-link-checker
|
1568 |
-
#: includes/link-query.php:55
|
1569 |
-
#: includes/link-query.php:102
|
1570 |
-
msgid "No links found for your query"
|
1571 |
-
msgstr "Keine Links für Deine Anfrage gefunden"
|
1572 |
-
|
1573 |
-
# @ default
|
1574 |
-
#: includes/any-post.php:427
|
1575 |
-
msgid "Preview “%s”"
|
1576 |
-
msgstr "Vorschau “%s”"
|
1577 |
-
|
1578 |
-
# @ default
|
1579 |
-
#: includes/any-post.php:428
|
1580 |
-
msgid "Preview"
|
1581 |
-
msgstr "Vorschau"
|
1582 |
-
|
1583 |
-
# @ default
|
1584 |
-
#: includes/any-post.php:435
|
1585 |
-
msgid "View “%s”"
|
1586 |
-
msgstr "Ansehen “%s”"
|
1587 |
-
|
1588 |
-
# @ broken-link-checker
|
1589 |
-
#: includes/any-post.php:529
|
1590 |
-
msgid "Updating post %d failed"
|
1591 |
-
msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
|
1592 |
-
|
1593 |
-
# @ broken-link-checker
|
1594 |
-
#: includes/any-post.php:711
|
1595 |
-
msgid "%d post deleted."
|
1596 |
-
msgid_plural "%d posts deleted."
|
1597 |
-
msgstr[0] "%d Artikel gelöscht."
|
1598 |
-
msgstr[1] "%d Artikel gelöscht."
|
1599 |
-
|
1600 |
-
# @ broken-link-checker
|
1601 |
-
#: includes/any-post.php:713
|
1602 |
-
msgid "%d page deleted."
|
1603 |
-
msgid_plural "%d pages deleted."
|
1604 |
-
msgstr[0] "%d Seite gelöscht."
|
1605 |
-
msgstr[1] "%d Seiten gelöscht."
|
1606 |
-
|
1607 |
-
# @ broken-link-checker
|
1608 |
-
#: includes/any-post.php:715
|
1609 |
-
msgid "%d \"%s\" deleted."
|
1610 |
-
msgid_plural "%d \"%s\" deleted."
|
1611 |
-
msgstr[0] "%d \"%s\" gelöscht."
|
1612 |
-
msgstr[1] "%d \"%s\" gelöscht."
|
1613 |
-
|
1614 |
-
# @ broken-link-checker
|
1615 |
-
#: includes/any-post.php:734
|
1616 |
-
msgid "%d post moved to the Trash."
|
1617 |
-
msgid_plural "%d posts moved to the Trash."
|
1618 |
-
msgstr[0] "%d Artikel in den Papierkorb verschoben."
|
1619 |
-
msgstr[1] "%d Artikel in den Papierkorb verschoben."
|
1620 |
|
1621 |
# @ broken-link-checker
|
1622 |
-
#: includes/
|
1623 |
-
msgid "
|
1624 |
-
|
1625 |
-
msgstr[0] "%d Seite in den Papierkorb verschoben."
|
1626 |
-
msgstr[1] "%d Seiten in den Papierkorb verschoben."
|
1627 |
|
1628 |
# @ broken-link-checker
|
1629 |
-
#: includes/
|
1630 |
-
msgid "
|
1631 |
-
|
1632 |
-
msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
|
1633 |
-
msgstr[1] "%d \"%s\" in den Papierkorb verschoben."
|
1634 |
|
1635 |
# @ broken-link-checker
|
1636 |
-
#: includes/
|
1637 |
-
msgid "
|
1638 |
-
|
1639 |
-
msgstr[0] "%d '%s' wurde gelöscht"
|
1640 |
-
msgstr[1] "%d '%s' wurden gelöscht"
|
1641 |
|
1642 |
# @ broken-link-checker
|
1643 |
-
#: includes/
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
|
|
|
|
|
|
|
|
|
|
1647 |
|
1648 |
# @ broken-link-checker
|
1649 |
#: includes/links.php:215
|
@@ -1694,204 +1529,437 @@ msgid "Couldn't delete the link's database record"
|
|
1694 |
msgstr "Links können nicht aus der Datenbank gelöscht werden"
|
1695 |
|
1696 |
# @ broken-link-checker
|
1697 |
-
#: includes/links.php:831
|
1698 |
-
msgctxt "link status"
|
1699 |
-
msgid "Unknown"
|
1700 |
-
msgstr "Unbekannt"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1701 |
|
1702 |
# @ broken-link-checker
|
1703 |
-
#:
|
1704 |
-
msgid "
|
1705 |
-
|
|
|
|
|
1706 |
|
1707 |
# @ broken-link-checker
|
1708 |
-
#:
|
1709 |
-
msgid "
|
1710 |
-
msgstr "
|
1711 |
|
1712 |
# @ broken-link-checker
|
1713 |
-
#:
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
|
|
|
|
|
|
|
|
1717 |
|
1718 |
# @ broken-link-checker
|
1719 |
-
#:
|
1720 |
-
|
1721 |
-
|
1722 |
-
msgstr "Blogroll Elemente"
|
1723 |
|
1724 |
# @ broken-link-checker
|
1725 |
-
#:
|
1726 |
-
|
1727 |
-
msgid "
|
1728 |
-
msgstr "
|
1729 |
|
1730 |
# @ broken-link-checker
|
1731 |
-
#:
|
1732 |
-
|
1733 |
-
|
1734 |
-
msgstr "Benutzerdefinierte Felder"
|
1735 |
|
1736 |
# @ broken-link-checker
|
1737 |
-
#:
|
1738 |
-
|
1739 |
-
msgid "Embedded DailyMotion videos"
|
1740 |
msgstr "Eingebettete DailyMotion Videos"
|
1741 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1742 |
# @ broken-link-checker
|
1743 |
-
#:
|
1744 |
-
|
1745 |
-
|
1746 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1747 |
|
1748 |
# @ broken-link-checker
|
1749 |
-
#:
|
1750 |
-
|
1751 |
-
|
1752 |
-
msgstr "Eingebettete YouTube Videos"
|
1753 |
|
1754 |
# @ broken-link-checker
|
1755 |
-
#:
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1759 |
|
1760 |
# @ broken-link-checker
|
1761 |
-
#:
|
1762 |
-
|
1763 |
-
|
1764 |
-
msgstr "HTML Bilder"
|
1765 |
|
1766 |
# @ broken-link-checker
|
1767 |
-
#:
|
1768 |
-
|
1769 |
-
|
1770 |
-
msgstr "HTML Links"
|
1771 |
|
1772 |
# @ broken-link-checker
|
1773 |
-
#:
|
1774 |
-
|
1775 |
-
|
1776 |
-
msgstr "MediaFire API"
|
1777 |
|
1778 |
# @ broken-link-checker
|
1779 |
-
#:
|
1780 |
-
|
1781 |
-
|
1782 |
-
msgstr "MegaUpload API"
|
1783 |
|
1784 |
# @ broken-link-checker
|
1785 |
-
#:
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
|
|
|
|
|
|
1789 |
|
1790 |
# @ broken-link-checker
|
1791 |
-
#:
|
1792 |
-
|
1793 |
-
|
1794 |
-
msgstr "RapidShare API"
|
1795 |
|
1796 |
# @ broken-link-checker
|
1797 |
-
#:
|
1798 |
-
|
1799 |
-
|
1800 |
-
msgstr "YouTube API"
|
1801 |
|
1802 |
# @ broken-link-checker
|
1803 |
-
#:
|
1804 |
-
|
1805 |
-
|
1806 |
-
msgstr "Beiträge"
|
1807 |
|
1808 |
# @ broken-link-checker
|
1809 |
-
#:
|
1810 |
-
|
1811 |
-
|
1812 |
-
msgstr "Seiten"
|
1813 |
|
1814 |
-
# @
|
1815 |
-
#:
|
1816 |
-
|
1817 |
-
|
1818 |
-
msgstr
|
1819 |
-
msgstr[1] "%s Sekunden"
|
1820 |
|
1821 |
-
# @
|
1822 |
-
#:
|
1823 |
-
|
1824 |
-
|
1825 |
-
msgstr
|
1826 |
-
msgstr[1] "%s Sekunden vergangen"
|
1827 |
|
1828 |
-
# @
|
1829 |
-
#:
|
1830 |
-
|
1831 |
-
|
1832 |
-
msgstr
|
1833 |
-
msgstr[1] "%d Minuten"
|
1834 |
|
1835 |
-
|
1836 |
-
|
1837 |
-
|
1838 |
-
msgid_plural "%d minutes ago"
|
1839 |
-
msgstr[0] "%d Minute vergangen"
|
1840 |
-
msgstr[1] "%d Minuten vergangen"
|
1841 |
|
1842 |
-
|
1843 |
-
|
1844 |
-
|
1845 |
-
msgid_plural "%d hours"
|
1846 |
-
msgstr[0] "%d Stunde"
|
1847 |
-
msgstr[1] "%d Stunden"
|
1848 |
|
1849 |
-
|
1850 |
-
|
1851 |
-
|
1852 |
-
msgid_plural "%d hours ago"
|
1853 |
-
msgstr[0] "%d Stunde vergangen"
|
1854 |
-
msgstr[1] "%d Stunden vergangen"
|
1855 |
|
1856 |
-
# @
|
1857 |
-
#:
|
1858 |
-
|
1859 |
-
|
1860 |
-
msgstr
|
1861 |
-
msgstr[1] "%d Tage"
|
1862 |
|
1863 |
-
|
1864 |
-
|
1865 |
-
|
1866 |
-
msgid_plural "%d days ago"
|
1867 |
-
msgstr[0] "%d Tag vergangen"
|
1868 |
-
msgstr[1] "%d Tage vergangen"
|
1869 |
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
msgid_plural "%d months"
|
1874 |
-
msgstr[0] "%d Monat"
|
1875 |
-
msgstr[1] "%d Monate"
|
1876 |
|
1877 |
-
|
1878 |
-
|
1879 |
-
|
1880 |
-
msgid_plural "%d months ago"
|
1881 |
-
msgstr[0] "%d Monat vergangen"
|
1882 |
-
msgstr[1] "%d Monate vergangen"
|
1883 |
|
1884 |
# @ broken-link-checker
|
1885 |
-
#:
|
1886 |
-
|
1887 |
-
|
1888 |
-
msgstr "Container %s[%d] nicht gefunden"
|
1889 |
|
1890 |
# @ broken-link-checker
|
1891 |
-
#:
|
1892 |
-
|
1893 |
-
|
1894 |
-
msgstr "Parser '%s' nicht gefunden."
|
1895 |
|
1896 |
#. Plugin URI of the plugin/theme
|
1897 |
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Broken Link Checker | V1.5\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
5 |
+
"POT-Creation-Date: 2012-03-27 09:01:12+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-04-09 14:50+0100\n"
|
7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
18 |
"X-Poedit-Basepath: .\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
# @ broken-link-checker
|
22 |
#: core/core.php:146
|
23 |
#: includes/admin/links-page-js.php:37
|
61 |
msgstr "Feedback"
|
62 |
|
63 |
#: core/core.php:330
|
64 |
+
#: includes/admin/sidebar.php:18
|
65 |
msgid "More plugins by Janis Elsts"
|
66 |
msgstr "Weitere Plugins von Janis Elsts"
|
67 |
|
77 |
|
78 |
# @ broken-link-checker
|
79 |
#: core/core.php:378
|
80 |
+
#: core/core.php:1167
|
81 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
82 |
msgstr "Error: Die Datenbanktabellen des Plugins sind nicht mehr aktuell! (Vorhandene Version: %d, neue Version: %d)"
|
83 |
|
84 |
# @ broken-link-checker
|
85 |
#: core/core.php:382
|
86 |
+
#: core/core.php:1171
|
87 |
msgid "Try deactivating and then reactivating the plugin."
|
88 |
msgstr "Deaktivieren Sie das Plugin und aktivieren es anschliessend wieder."
|
89 |
|
190 |
|
191 |
# @ broken-link-checker
|
192 |
#: core/core.php:700
|
193 |
+
#: core/core.php:730
|
194 |
msgid "Edit CSS"
|
195 |
msgstr "Bearbeite CSS"
|
196 |
|
197 |
+
#: core/core.php:715
|
198 |
+
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
199 |
+
msgstr "Beispiel : Lorem ipsum <a %s>fehlerhafter Link</a>, dolor sit amet."
|
200 |
+
|
201 |
+
#: core/core.php:718
|
202 |
+
#: core/core.php:749
|
203 |
+
msgid "Click \"Save Changes\" to update example output."
|
204 |
+
msgstr "Drücken Sie \"Änderung übernehmen\", um das Beispiel zu aktualisieren."
|
205 |
+
|
206 |
# @ broken-link-checker
|
207 |
+
#: core/core.php:726
|
208 |
msgid "Apply custom formatting to removed links"
|
209 |
msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
|
210 |
|
211 |
+
#: core/core.php:746
|
212 |
+
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
213 |
+
msgstr "Beispiel : Lorem ipsum <span %s>entfernter Link</span>, dolor sit amet."
|
214 |
+
|
215 |
# @ broken-link-checker
|
216 |
+
#: core/core.php:759
|
217 |
msgid "Stop search engines from following broken links"
|
218 |
msgstr "Stoppe Suchmaschinen aus folgenden fehlerhaften Links"
|
219 |
|
220 |
# @ broken-link-checker
|
221 |
+
#: core/core.php:776
|
222 |
msgid "Look for links in"
|
223 |
msgstr "Suchen Sie nach Links in"
|
224 |
|
225 |
# @ broken-link-checker
|
226 |
+
#: core/core.php:787
|
227 |
msgid "Post statuses"
|
228 |
msgstr "Beitrag Status"
|
229 |
|
230 |
# @ broken-link-checker
|
231 |
+
#: core/core.php:820
|
232 |
msgid "Link types"
|
233 |
msgstr "Link Typen"
|
234 |
|
235 |
# @ broken-link-checker
|
236 |
+
#: core/core.php:826
|
237 |
msgid "Error : All link parsers missing!"
|
238 |
msgstr "Fehler: Alle Link-Parser fehlen!"
|
239 |
|
240 |
# @ broken-link-checker
|
241 |
+
#: core/core.php:833
|
242 |
msgid "Exclusion list"
|
243 |
msgstr "Ausschlussliste"
|
244 |
|
245 |
# @ broken-link-checker
|
246 |
+
#: core/core.php:834
|
247 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
248 |
msgstr "URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
|
249 |
|
250 |
# @ broken-link-checker
|
251 |
+
#: core/core.php:852
|
252 |
msgid "Check links using"
|
253 |
msgstr "Überprüfe Links"
|
254 |
|
255 |
# @ broken-link-checker
|
256 |
+
#: core/core.php:871
|
257 |
#: includes/links.php:849
|
258 |
msgid "Timeout"
|
259 |
msgstr "Zeitüberschreitung"
|
260 |
|
261 |
# @ broken-link-checker
|
262 |
# @ default
|
263 |
+
#: core/core.php:877
|
264 |
+
#: core/core.php:923
|
265 |
+
#: core/core.php:2732
|
266 |
msgid "%s seconds"
|
267 |
msgstr "%s Sekunden"
|
268 |
|
269 |
# @ broken-link-checker
|
270 |
+
#: core/core.php:886
|
271 |
msgid "Links that take longer than this to load will be marked as broken."
|
272 |
msgstr "Links die länger zum laden brauchen als hier eingetragen, gelten als fehlerhaft."
|
273 |
|
274 |
# @ broken-link-checker
|
275 |
+
#: core/core.php:893
|
276 |
msgid "Link monitor"
|
277 |
msgstr "Link Monitor"
|
278 |
|
279 |
# @ broken-link-checker
|
280 |
+
#: core/core.php:901
|
281 |
msgid "Run continuously while the Dashboard is open"
|
282 |
msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
|
283 |
|
284 |
# @ broken-link-checker
|
285 |
+
#: core/core.php:909
|
286 |
msgid "Run hourly in the background"
|
287 |
msgstr "Stündlich im Hintergrund arbeiten"
|
288 |
|
289 |
# @ broken-link-checker
|
290 |
+
#: core/core.php:917
|
291 |
msgid "Max. execution time"
|
292 |
msgstr "Max. Ausführungszeit"
|
293 |
|
294 |
# @ broken-link-checker
|
295 |
+
#: core/core.php:934
|
296 |
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."
|
297 |
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."
|
298 |
|
299 |
# @ broken-link-checker
|
300 |
+
#: core/core.php:943
|
301 |
msgid "Server load limit"
|
302 |
msgstr "Server Belastungsgrenze"
|
303 |
|
304 |
+
#: core/core.php:958
|
305 |
msgid "Current load : %s"
|
306 |
msgstr "Aktuelle Belastung: %s"
|
307 |
|
308 |
# @ broken-link-checker
|
309 |
+
#: core/core.php:963
|
310 |
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."
|
311 |
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."
|
312 |
|
313 |
# @ broken-link-checker
|
314 |
+
#: core/core.php:972
|
315 |
msgid "Not available"
|
316 |
msgstr "Nicht verfügbar"
|
317 |
|
318 |
# @ broken-link-checker
|
319 |
+
#: core/core.php:974
|
320 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
321 |
msgstr "Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</code> vorhanden und zugänglich ist."
|
322 |
|
323 |
# @ broken-link-checker
|
324 |
+
#: core/core.php:982
|
325 |
msgid "Forced recheck"
|
326 |
msgstr "Erneute Überprüfung erzwingen"
|
327 |
|
328 |
# @ broken-link-checker
|
329 |
+
#: core/core.php:985
|
330 |
msgid "Re-check all pages"
|
331 |
msgstr "Überprüfe alle Seiten noch einmal"
|
332 |
|
333 |
# @ broken-link-checker
|
334 |
+
#: core/core.php:989
|
335 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
336 |
msgstr "Die \"Nuklear Option\". Klicken Sie auf diese Schaltfläche, um die Link-Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
|
337 |
|
338 |
# @ default
|
339 |
+
#: core/core.php:1000
|
340 |
msgid "Save Changes"
|
341 |
msgstr "Änderungen speichern"
|
342 |
|
343 |
# @ broken-link-checker
|
344 |
+
#: core/core.php:1051
|
345 |
msgid "Configure"
|
346 |
msgstr "Konfigurieren"
|
347 |
|
348 |
# @ broken-link-checker
|
349 |
+
#: core/core.php:1133
|
350 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
351 |
msgstr "Überprüfe folgende URLs (eine URL pro Zeile):"
|
352 |
|
353 |
# @ broken-link-checker
|
354 |
+
#: core/core.php:1270
|
355 |
+
#: core/core.php:1351
|
356 |
+
#: core/core.php:1383
|
357 |
msgid "Database error : %s"
|
358 |
msgstr "Datenbank Fehler: %s"
|
359 |
|
360 |
# @ broken-link-checker
|
361 |
+
#: core/core.php:1333
|
362 |
msgid "You must enter a filter name!"
|
363 |
msgstr "Sie müssen einen Filter Namen eingeben!"
|
364 |
|
365 |
# @ broken-link-checker
|
366 |
+
#: core/core.php:1337
|
367 |
msgid "Invalid search query."
|
368 |
msgstr "Ungültige Suchanfrage."
|
369 |
|
370 |
# @ broken-link-checker
|
371 |
+
#: core/core.php:1346
|
372 |
msgid "Filter \"%s\" created"
|
373 |
msgstr "Filter \"%s\" erstellt"
|
374 |
|
375 |
# @ broken-link-checker
|
376 |
+
#: core/core.php:1373
|
377 |
msgid "Filter ID not specified."
|
378 |
msgstr "Link ID nicht spezifiziert."
|
379 |
|
380 |
# @ broken-link-checker
|
381 |
+
#: core/core.php:1380
|
382 |
msgid "Filter deleted"
|
383 |
msgstr "Filter gelöscht"
|
384 |
|
385 |
# @ broken-link-checker
|
386 |
+
#: core/core.php:1427
|
387 |
msgid "Replaced %d redirect with a direct link"
|
388 |
msgid_plural "Replaced %d redirects with direct links"
|
389 |
msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
|
390 |
msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
|
391 |
|
392 |
# @ broken-link-checker
|
393 |
+
#: core/core.php:1438
|
394 |
msgid "Failed to fix %d redirect"
|
395 |
msgid_plural "Failed to fix %d redirects"
|
396 |
msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
|
397 |
msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
|
398 |
|
399 |
# @ broken-link-checker
|
400 |
+
#: core/core.php:1449
|
401 |
msgid "None of the selected links are redirects!"
|
402 |
msgstr "Keiner der ausgewählten Links sind Umleitungen!"
|
403 |
|
404 |
# @ broken-link-checker
|
405 |
+
#: core/core.php:1527
|
406 |
msgid "%d link updated."
|
407 |
msgid_plural "%d links updated."
|
408 |
msgstr[0] "Link %d aktualisiert."
|
409 |
msgstr[1] "Links %d aktualisiert."
|
410 |
|
411 |
# @ broken-link-checker
|
412 |
+
#: core/core.php:1538
|
413 |
msgid "Failed to update %d link."
|
414 |
msgid_plural "Failed to update %d links."
|
415 |
msgstr[0] "Link %d konnte nicht aktualisiert werden."
|
416 |
msgstr[1] "Links %d konnten nicht aktualisiert werden."
|
417 |
|
418 |
# @ broken-link-checker
|
419 |
+
#: core/core.php:1592
|
420 |
msgid "%d link removed"
|
421 |
msgid_plural "%d links removed"
|
422 |
msgstr[0] "%d Link entfernt"
|
423 |
msgstr[1] "%d Links entfernt"
|
424 |
|
425 |
# @ broken-link-checker
|
426 |
+
#: core/core.php:1603
|
427 |
msgid "Failed to remove %d link"
|
428 |
msgid_plural "Failed to remove %d links"
|
429 |
msgstr[0] "Link %d konnte nicht entfernt werden"
|
430 |
msgstr[1] "Links %d konnten nicht entfernt werden"
|
431 |
|
432 |
# @ default
|
433 |
+
#: core/core.php:1712
|
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 Das Element wurde übersprungen, weil es nicht in den Papierkorb verschoben werden kann. Löschen Sie es manuell."
|
437 |
msgstr[1] "%d Die Elemente wurde übersprungen, weil sie nicht in den Papierkorb verschoben werden können. Löschen Sie diese manuell."
|
438 |
|
439 |
# @ broken-link-checker
|
440 |
+
#: core/core.php:1734
|
441 |
msgid "Didn't find anything to delete!"
|
442 |
msgstr "Nichts gefunden um zu löschen!"
|
443 |
|
444 |
# @ broken-link-checker
|
445 |
+
#: core/core.php:1762
|
446 |
msgid "%d link scheduled for rechecking"
|
447 |
msgid_plural "%d links scheduled for rechecking"
|
448 |
msgstr[0] "%d Link zur erneuten Überprüfung geplant"
|
449 |
msgstr[1] "%d Links zur erneuten Überprüfung geplant"
|
450 |
|
451 |
# @ broken-link-checker
|
452 |
+
#: core/core.php:1808
|
453 |
+
#: core/core.php:2412
|
454 |
msgid "This link was manually marked as working by the user."
|
455 |
msgstr "Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
|
456 |
|
457 |
# @ broken-link-checker
|
458 |
+
#: core/core.php:1815
|
459 |
msgid "Couldn't modify link %d"
|
460 |
msgstr "Link %d konnte nicht geändert werden"
|
461 |
|
462 |
# @ broken-link-checker
|
463 |
+
#: core/core.php:1825
|
464 |
msgid "%d link marked as not broken"
|
465 |
msgid_plural "%d links marked as not broken"
|
466 |
msgstr[0] "%d Link als nicht fehlerhaft markiert"
|
467 |
msgstr[1] "%d Links als nicht fehlerhaft markiert"
|
468 |
|
469 |
# @ broken-link-checker
|
470 |
+
#: core/core.php:1865
|
471 |
msgid "Table columns"
|
472 |
msgstr "Tabellenspalten"
|
473 |
|
474 |
# @ default
|
475 |
+
#: core/core.php:1884
|
476 |
msgid "Show on screen"
|
477 |
msgstr "Auf dem Bildschirm anzeigen"
|
478 |
|
479 |
# @ broken-link-checker
|
480 |
+
#: core/core.php:1891
|
481 |
msgid "links"
|
482 |
msgstr "Links"
|
483 |
|
484 |
# @ default
|
485 |
# @ broken-link-checker
|
486 |
+
#: core/core.php:1892
|
487 |
#: includes/admin/table-printer.php:163
|
488 |
msgid "Apply"
|
489 |
msgstr "Anwenden"
|
490 |
|
491 |
# @ broken-link-checker
|
492 |
+
#: core/core.php:1896
|
493 |
msgid "Misc"
|
494 |
msgstr "Sonstige"
|
495 |
|
496 |
# @ broken-link-checker
|
497 |
+
#: core/core.php:1911
|
498 |
msgid "Highlight links broken for at least %s days"
|
499 |
msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
|
500 |
|
501 |
# @ broken-link-checker
|
502 |
+
#: core/core.php:1920
|
503 |
msgid "Color-code status codes"
|
504 |
msgstr "Farb-Code Status Codes"
|
505 |
|
506 |
# @ broken-link-checker
|
507 |
+
#: core/core.php:1937
|
508 |
+
#: core/core.php:2397
|
509 |
+
#: core/core.php:2433
|
510 |
+
#: core/core.php:2496
|
511 |
msgid "You're not allowed to do that!"
|
512 |
msgstr "Sie haben nicht die Erlaubnis das zu tun!"
|
513 |
|
514 |
# @ broken-link-checker
|
515 |
+
#: core/core.php:2278
|
516 |
msgid "View broken links"
|
517 |
msgstr "Fehlerhafte Links anschauen"
|
518 |
|
519 |
# @ broken-link-checker
|
520 |
+
#: core/core.php:2279
|
521 |
msgid "Found %d broken link"
|
522 |
msgid_plural "Found %d broken links"
|
523 |
msgstr[0] "%d fehlerhafte Links gefunden"
|
524 |
msgstr[1] "%d fehlerhafte Links gefunden"
|
525 |
|
526 |
# @ broken-link-checker
|
527 |
+
#: core/core.php:2285
|
528 |
msgid "No broken links found."
|
529 |
msgstr "Keine fehlerhaften Links gefunden."
|
530 |
|
531 |
# @ broken-link-checker
|
532 |
+
#: core/core.php:2292
|
533 |
msgid "%d URL in the work queue"
|
534 |
msgid_plural "%d URLs in the work queue"
|
535 |
msgstr[0] "%d URL in der Warteschlange"
|
536 |
msgstr[1] "%d URLs in der Warteschlange"
|
537 |
|
538 |
# @ broken-link-checker
|
539 |
+
#: core/core.php:2295
|
540 |
msgid "No URLs in the work queue."
|
541 |
msgstr "Keine URLs in der Warteschlange."
|
542 |
|
543 |
# @ broken-link-checker
|
544 |
+
#: core/core.php:2301
|
545 |
msgid "Detected %d unique URL"
|
546 |
msgid_plural "Detected %d unique URLs"
|
547 |
msgstr[0] "%d eindeutige URL gefunden"
|
548 |
msgstr[1] "%d eindeutige URLs gefunden"
|
549 |
|
550 |
# @ broken-link-checker
|
551 |
+
#: core/core.php:2302
|
552 |
msgid "in %d link"
|
553 |
msgid_plural "in %d links"
|
554 |
msgstr[0] "in %d Link"
|
555 |
msgstr[1] "in %d Links"
|
556 |
|
557 |
# @ broken-link-checker
|
558 |
+
#: core/core.php:2307
|
559 |
msgid "and still searching..."
|
560 |
msgstr "und sucht immer noch ..."
|
561 |
|
562 |
# @ broken-link-checker
|
563 |
+
#: core/core.php:2313
|
564 |
msgid "Searching your blog for links..."
|
565 |
msgstr "Durchsucht Ihr Blog nach Links ..."
|
566 |
|
567 |
# @ broken-link-checker
|
568 |
+
#: core/core.php:2315
|
569 |
msgid "No links detected."
|
570 |
msgstr "Keine Links gefunden."
|
571 |
|
572 |
# @ broken-link-checker
|
573 |
+
#: core/core.php:2341
|
574 |
msgctxt "current load"
|
575 |
msgid "Unknown"
|
576 |
msgstr "Unbekannt"
|
577 |
|
578 |
# @ broken-link-checker
|
579 |
+
#: core/core.php:2405
|
580 |
+
#: core/core.php:2443
|
581 |
+
#: core/core.php:2506
|
582 |
msgid "Oops, I can't find the link %d"
|
583 |
msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
|
584 |
|
585 |
# @ broken-link-checker
|
586 |
+
#: core/core.php:2418
|
587 |
msgid "Oops, couldn't modify the link!"
|
588 |
msgstr "Hoppla, der Link konnte nicht geändert werden!"
|
589 |
|
590 |
# @ broken-link-checker
|
591 |
+
#: core/core.php:2421
|
592 |
+
#: core/core.php:2532
|
593 |
msgid "Error : link_id not specified"
|
594 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
595 |
|
596 |
# @ broken-link-checker
|
597 |
+
#: core/core.php:2453
|
598 |
msgid "Oops, the new URL is invalid!"
|
599 |
msgstr "Hoppla, die neue URL funktioniert nicht!"
|
600 |
|
601 |
# @ broken-link-checker
|
602 |
+
#: core/core.php:2464
|
603 |
+
#: core/core.php:2515
|
604 |
msgid "An unexpected error occured!"
|
605 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
606 |
|
607 |
# @ broken-link-checker
|
608 |
+
#: core/core.php:2482
|
609 |
msgid "Error : link_id or new_url not specified"
|
610 |
msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
|
611 |
|
612 |
# @ broken-link-checker
|
613 |
+
#: core/core.php:2541
|
614 |
msgid "You don't have sufficient privileges to access this information!"
|
615 |
msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
|
616 |
|
617 |
# @ broken-link-checker
|
618 |
+
#: core/core.php:2554
|
619 |
msgid "Error : link ID not specified"
|
620 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
621 |
|
622 |
# @ broken-link-checker
|
623 |
+
#: core/core.php:2568
|
624 |
msgid "Failed to load link details (%s)"
|
625 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
626 |
|
627 |
# @ broken-link-checker
|
628 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.4) #-#-#-#-#
|
629 |
#. Plugin Name of the plugin/theme
|
630 |
+
#: core/core.php:2621
|
631 |
msgid "Broken Link Checker"
|
632 |
msgstr "Broken Link Checker"
|
633 |
|
634 |
# @ broken-link-checker
|
635 |
+
#: core/core.php:2641
|
636 |
msgid "PHP version"
|
637 |
msgstr "PHP Version"
|
638 |
|
639 |
# @ broken-link-checker
|
640 |
+
#: core/core.php:2647
|
641 |
msgid "MySQL version"
|
642 |
msgstr "MySQL Version"
|
643 |
|
644 |
# @ broken-link-checker
|
645 |
+
#: core/core.php:2660
|
646 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
647 |
msgstr "Sie haben eine veraltete Version von CURL. Erkennung von Umleitungen funktioniert eventuell nicht."
|
648 |
|
649 |
# @ broken-link-checker
|
650 |
+
#: core/core.php:2672
|
651 |
+
#: core/core.php:2688
|
652 |
+
#: core/core.php:2693
|
653 |
msgid "Not installed"
|
654 |
msgstr "Nicht installiert"
|
655 |
|
656 |
# @ broken-link-checker
|
657 |
+
#: core/core.php:2675
|
658 |
msgid "CURL version"
|
659 |
msgstr "CURL Version"
|
660 |
|
661 |
# @ broken-link-checker
|
662 |
+
#: core/core.php:2681
|
663 |
msgid "Installed"
|
664 |
msgstr "Installiert"
|
665 |
|
666 |
# @ broken-link-checker
|
667 |
+
#: core/core.php:2694
|
668 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
669 |
msgstr "Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin funktioniert!"
|
670 |
|
671 |
# @ broken-link-checker
|
672 |
+
#: core/core.php:2705
|
673 |
msgid "On"
|
674 |
msgstr "An"
|
675 |
|
676 |
# @ broken-link-checker
|
677 |
+
#: core/core.php:2706
|
678 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
679 |
msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode aktiviert ist."
|
680 |
|
681 |
# @ broken-link-checker
|
682 |
+
#: core/core.php:2711
|
683 |
+
#: core/core.php:2725
|
684 |
msgid "Off"
|
685 |
msgstr "Aus"
|
686 |
|
687 |
# @ broken-link-checker
|
688 |
+
#: core/core.php:2719
|
689 |
msgid "On ( %s )"
|
690 |
msgstr "An (%s)"
|
691 |
|
692 |
# @ broken-link-checker
|
693 |
+
#: core/core.php:2720
|
694 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
695 |
msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls open_basedir aktiviert ist."
|
696 |
|
697 |
# @ broken-link-checker
|
698 |
+
#: core/core.php:2749
|
699 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
700 |
msgstr "Wenn dieser Wert nach mehreren geladenen Seiten Null ist, ist wahrscheinlich ein Fehler aufgetreten."
|
701 |
|
702 |
# @ broken-link-checker
|
703 |
+
#: core/core.php:2840
|
704 |
+
#: core/core.php:2938
|
705 |
msgid "[%s] Broken links detected"
|
706 |
msgstr "[%s] Fehlerhafte Links entdeckt"
|
707 |
|
708 |
# @ broken-link-checker
|
709 |
+
#: core/core.php:2845
|
710 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
711 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
712 |
msgstr[0] "Broken Link Checker hat %d fehlerhaften Link auf Ihrer Webseite entdeckt."
|
713 |
msgstr[1] "Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
|
714 |
|
715 |
# @ broken-link-checker
|
716 |
+
#: core/core.php:2868
|
717 |
msgid "Here's a list of the first %d broken links:"
|
718 |
msgid_plural "Here's a list of the first %d broken links:"
|
719 |
msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
720 |
msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
721 |
|
722 |
# @ broken-link-checker
|
723 |
+
#: core/core.php:2877
|
724 |
msgid "Here's a list of the new broken links: "
|
725 |
msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
|
726 |
|
727 |
# @ broken-link-checker
|
728 |
+
#: core/core.php:2886
|
729 |
msgid "Link text : %s"
|
730 |
msgstr "Linktext: %s"
|
731 |
|
732 |
# @ broken-link-checker
|
733 |
+
#: core/core.php:2887
|
734 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
735 |
msgstr "Link URL: <a href=\"%s\">%s</a>"
|
736 |
|
737 |
# @ broken-link-checker
|
738 |
+
#: core/core.php:2888
|
739 |
msgid "Source : %s"
|
740 |
msgstr "Quelle: %s"
|
741 |
|
742 |
# @ brokenk-link-checker
|
743 |
+
#: core/core.php:2901
|
744 |
msgid "You can see all broken links here:"
|
745 |
msgstr "Hier sehen Sie alle fehlerhaften Links:"
|
746 |
|
747 |
# @ broken-link-checker
|
748 |
+
#: core/core.php:2943
|
749 |
+
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
750 |
+
msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
|
751 |
+
msgstr[0] "Broken Link Checker hat %d fehlerhafter Link in einem Beitrag entdeckt."
|
752 |
+
msgstr[1] "Broken Link Checker hat %d fehlerhafte Links in Beiträgen entdeckt."
|
753 |
+
|
754 |
+
# @ default
|
755 |
+
#: core/init.php:231
|
756 |
+
msgid "Once Weekly"
|
757 |
+
msgstr "Einmal wöchentlich"
|
758 |
+
|
759 |
+
# @ default
|
760 |
+
#: core/init.php:237
|
761 |
+
msgid "Twice a Month"
|
762 |
+
msgstr "Zweimal im Monat"
|
763 |
+
|
764 |
+
# @ broken-link-checker
|
765 |
+
#: core/init.php:307
|
766 |
+
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
767 |
+
msgstr "Broken Link Checker Installation fehlgeschlagen. Deaktivieren Sie das Plugin und aktivieren es anschliessend wieder."
|
768 |
+
|
769 |
+
# @ broken-link-checker
|
770 |
+
#: includes/admin/db-upgrade.php:95
|
771 |
+
msgid "Failed to delete old DB tables. Database error : %s"
|
772 |
+
msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
|
773 |
|
774 |
# @ broken-link-checker
|
775 |
#: includes/admin/links-page-js.php:58
|
866 |
msgid "Select one or more links to edit."
|
867 |
msgstr "Wählen Sie einen oder mehrere Links zum bearbeiten."
|
868 |
|
869 |
+
# @ broken-link-checker
|
870 |
+
#: includes/admin/options-page-js.php:54
|
871 |
+
msgid "Hide debug info"
|
872 |
+
msgstr "Debug Info verbergen"
|
873 |
+
|
874 |
# @ broken-link-checker
|
875 |
#: includes/admin/search-form.php:16
|
876 |
msgid "Save This Search As a Filter"
|
938 |
msgid "Cancel"
|
939 |
msgstr "Abbrechen"
|
940 |
|
941 |
+
#: includes/admin/sidebar.php:40
|
942 |
msgid "Donate $10, $20 or $50!"
|
943 |
msgstr "Spenden Sie $10, $20 oder $50!"
|
944 |
|
945 |
+
#: includes/admin/sidebar.php:43
|
946 |
msgid "If you like this plugin, please donate to support development and maintenance!"
|
947 |
msgstr "Mögen Sie dieses Plugin, dann helfen Sie uns mit einer Spende für die Entwicklung und Wartung."
|
948 |
|
949 |
+
#: includes/admin/sidebar.php:60
|
950 |
msgid "Return to WordPress Dashboard"
|
951 |
msgstr "Zurück zum Wordpress Dashboard"
|
952 |
|
|
|
|
|
|
|
|
|
|
|
953 |
# @ broken-link-checker
|
954 |
#: includes/admin/table-printer.php:177
|
955 |
msgid "Compact View"
|
1035 |
msgstr "Ersetzen mit"
|
1036 |
|
1037 |
# @ broken-link-checker
|
1038 |
+
#: includes/admin/table-printer.php:332
|
1039 |
+
msgid "Case sensitive"
|
1040 |
+
msgstr "Gross- und Kleinschreibung"
|
1041 |
+
|
1042 |
+
#: includes/admin/table-printer.php:336
|
1043 |
+
msgid "Regular expression"
|
1044 |
+
msgstr "Regulärer Ausdruck"
|
1045 |
+
|
1046 |
+
# @ broken-link-checker
|
1047 |
+
#: includes/admin/table-printer.php:344
|
1048 |
+
msgid "Update"
|
1049 |
+
msgstr "Aktualisieren"
|
1050 |
+
|
1051 |
+
# @ broken-link-checker
|
1052 |
+
#: includes/admin/table-printer.php:469
|
1053 |
+
msgid "Post published on"
|
1054 |
+
msgstr "Beitrag publiziert am"
|
1055 |
+
|
1056 |
+
# @ broken-link-checker
|
1057 |
+
#: includes/admin/table-printer.php:474
|
1058 |
+
msgid "Link last checked"
|
1059 |
+
msgstr "Link zuletzt geprüft"
|
1060 |
+
|
1061 |
+
# @ broken-link-checker
|
1062 |
+
#: includes/admin/table-printer.php:478
|
1063 |
+
msgid "Never"
|
1064 |
+
msgstr "Nie"
|
1065 |
+
|
1066 |
+
# @ broken-link-checker
|
1067 |
+
#: includes/admin/table-printer.php:489
|
1068 |
+
msgid "Response time"
|
1069 |
+
msgstr "Reaktionszeit"
|
1070 |
+
|
1071 |
+
# @ broken-link-checker
|
1072 |
+
#: includes/admin/table-printer.php:491
|
1073 |
+
msgid "%2.3f seconds"
|
1074 |
+
msgstr "%2.3f Sekunden"
|
1075 |
+
|
1076 |
+
# @ broken-link-checker
|
1077 |
+
#: includes/admin/table-printer.php:494
|
1078 |
+
msgid "Final URL"
|
1079 |
+
msgstr "Endgültige URL"
|
1080 |
+
|
1081 |
+
# @ broken-link-checker
|
1082 |
+
#: includes/admin/table-printer.php:499
|
1083 |
+
msgid "Redirect count"
|
1084 |
+
msgstr "Weiterleitung Anzahl"
|
1085 |
+
|
1086 |
+
# @ broken-link-checker
|
1087 |
+
#: includes/admin/table-printer.php:504
|
1088 |
+
msgid "Instance count"
|
1089 |
+
msgstr "Instanz Anzahl"
|
1090 |
+
|
1091 |
+
# @ broken-link-checker
|
1092 |
+
#: includes/admin/table-printer.php:513
|
1093 |
+
msgid "This link has failed %d time."
|
1094 |
+
msgid_plural "This link has failed %d times."
|
1095 |
+
msgstr[0] "Dieser Link schlug %d mal fehl."
|
1096 |
+
msgstr[1] "Dieser Link schlug %d mal fehl."
|
1097 |
+
|
1098 |
+
# @ broken-link-checker
|
1099 |
+
#: includes/admin/table-printer.php:521
|
1100 |
+
msgid "This link has been broken for %s."
|
1101 |
+
msgstr "Dieser Links ist fehlerhaft seit %s."
|
1102 |
+
|
1103 |
+
# @ broken-link-checker
|
1104 |
+
#: includes/admin/table-printer.php:532
|
1105 |
+
msgid "Log"
|
1106 |
+
msgstr "Log"
|
1107 |
+
|
1108 |
+
# @ broken-link-checker
|
1109 |
+
#: includes/admin/table-printer.php:553
|
1110 |
+
msgid "Show more info about this link"
|
1111 |
+
msgstr "Mehr Informationen über diesen Link anzeigen"
|
1112 |
+
|
1113 |
+
# @ broken-link-checker
|
1114 |
+
#: includes/admin/table-printer.php:571
|
1115 |
+
msgctxt "checked how long ago"
|
1116 |
+
msgid "Checked"
|
1117 |
+
msgstr "Geprüft"
|
1118 |
+
|
1119 |
+
# @ broken-link-checker
|
1120 |
+
#: includes/admin/table-printer.php:587
|
1121 |
+
msgid "Broken for"
|
1122 |
+
msgstr "Fehlerhaft für"
|
1123 |
+
|
1124 |
+
# @ broken-link-checker
|
1125 |
+
#: includes/admin/table-printer.php:607
|
1126 |
+
msgid "Edit link URL"
|
1127 |
+
msgstr "Bearbeite URL Link"
|
1128 |
+
|
1129 |
+
# @ broken-link-checker
|
1130 |
+
#: includes/admin/table-printer.php:609
|
1131 |
+
msgid "Remove this link from all posts"
|
1132 |
+
msgstr "Löschen Sie diesen Link von allen Beiträgen"
|
1133 |
+
|
1134 |
+
# @ broken-link-checker
|
1135 |
+
#: includes/admin/table-printer.php:615
|
1136 |
+
msgid "Remove this link from the list of broken links and mark it as valid"
|
1137 |
+
msgstr "Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als gültig"
|
1138 |
+
|
1139 |
+
# @ broken-link-checker
|
1140 |
+
#: includes/admin/table-printer.php:624
|
1141 |
+
msgid "Cancel URL editing"
|
1142 |
+
msgstr "URL Bearbeitung abbrechen"
|
1143 |
+
|
1144 |
+
# @ broken-link-checker
|
1145 |
+
#: includes/admin/table-printer.php:631
|
1146 |
+
msgid "Update URL"
|
1147 |
+
msgstr "Aktualisiere URL"
|
1148 |
+
|
1149 |
+
# @ broken-link-checker
|
1150 |
+
#: includes/admin/table-printer.php:653
|
1151 |
+
msgid "[An orphaned link! This is a bug.]"
|
1152 |
+
msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
|
1153 |
+
|
1154 |
+
# @ default
|
1155 |
+
#: includes/any-post.php:397
|
1156 |
+
#: modules/containers/blogroll.php:46
|
1157 |
+
#: modules/containers/comment.php:153
|
1158 |
+
#: modules/containers/custom_field.php:197
|
1159 |
+
msgid "Edit"
|
1160 |
+
msgstr "Bearbeiten"
|
1161 |
+
|
1162 |
+
# @ default
|
1163 |
+
#: includes/any-post.php:405
|
1164 |
+
#: modules/containers/custom_field.php:203
|
1165 |
+
msgid "Move this item to the Trash"
|
1166 |
+
msgstr "Element in den Papierkorb verschieben"
|
1167 |
+
|
1168 |
+
# @ default
|
1169 |
+
#: includes/any-post.php:407
|
1170 |
+
#: modules/containers/custom_field.php:205
|
1171 |
+
msgid "Trash"
|
1172 |
+
msgstr "Papierkorb"
|
1173 |
+
|
1174 |
+
# @ default
|
1175 |
+
#: includes/any-post.php:412
|
1176 |
+
#: modules/containers/custom_field.php:210
|
1177 |
+
msgid "Delete this item permanently"
|
1178 |
+
msgstr "Element endgültig löschen"
|
1179 |
+
|
1180 |
+
# @ default
|
1181 |
+
#: includes/any-post.php:414
|
1182 |
+
#: modules/containers/blogroll.php:47
|
1183 |
+
#: modules/containers/custom_field.php:212
|
1184 |
+
msgid "Delete"
|
1185 |
+
msgstr "Löschen"
|
1186 |
+
|
1187 |
+
# @ default
|
1188 |
+
#: includes/any-post.php:427
|
1189 |
+
msgid "Preview “%s”"
|
1190 |
+
msgstr "Vorschau “%s”"
|
1191 |
+
|
1192 |
+
# @ default
|
1193 |
+
#: includes/any-post.php:428
|
1194 |
+
msgid "Preview"
|
1195 |
+
msgstr "Vorschau"
|
1196 |
+
|
1197 |
+
# @ default
|
1198 |
+
#: includes/any-post.php:435
|
1199 |
+
msgid "View “%s”"
|
1200 |
+
msgstr "Ansehen “%s”"
|
1201 |
+
|
1202 |
+
# @ default
|
1203 |
+
#: includes/any-post.php:436
|
1204 |
+
#: modules/containers/comment.php:166
|
1205 |
+
#: modules/containers/custom_field.php:217
|
1206 |
+
msgid "View"
|
1207 |
+
msgstr "Ansehen"
|
1208 |
+
|
1209 |
+
# @ default
|
1210 |
+
#: includes/any-post.php:455
|
1211 |
+
#: modules/containers/custom_field.php:197
|
1212 |
+
msgid "Edit this item"
|
1213 |
+
msgstr "Bearbeiten Sie dieses Element"
|
1214 |
+
|
1215 |
+
# @ broken-link-checker
|
1216 |
+
#: includes/any-post.php:519
|
1217 |
+
#: modules/containers/blogroll.php:83
|
1218 |
+
#: modules/containers/comment.php:43
|
1219 |
+
msgid "Nothing to update"
|
1220 |
+
msgstr "Nichts zu aktualisieren"
|
1221 |
+
|
1222 |
+
# @ broken-link-checker
|
1223 |
+
#: includes/any-post.php:529
|
1224 |
+
msgid "Updating post %d failed"
|
1225 |
+
msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
|
1226 |
+
|
1227 |
+
# @ broken-link-checker
|
1228 |
+
#: includes/any-post.php:564
|
1229 |
+
#: modules/containers/custom_field.php:284
|
1230 |
+
msgid "Failed to delete post \"%s\" (%d)"
|
1231 |
+
msgstr "Löschen des Beitrages \"%s\" (%d) schlug fehl"
|
1232 |
+
|
1233 |
+
# @ broken-link-checker
|
1234 |
+
#: includes/any-post.php:583
|
1235 |
+
#: modules/containers/custom_field.php:303
|
1236 |
+
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
1237 |
+
msgstr "Der Beitrag \"%s\" (%d) kann nicht in den Papierkorb verschoben werden, weil diese Funktion deaktiviert ist"
|
1238 |
+
|
1239 |
+
# @ broken-link-checker
|
1240 |
+
#: includes/any-post.php:603
|
1241 |
+
#: modules/containers/custom_field.php:322
|
1242 |
+
msgid "Failed to move post \"%s\" (%d) to the trash"
|
1243 |
+
msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
|
1244 |
+
|
1245 |
+
# @ broken-link-checker
|
1246 |
+
#: includes/any-post.php:711
|
1247 |
+
msgid "%d post deleted."
|
1248 |
+
msgid_plural "%d posts deleted."
|
1249 |
+
msgstr[0] "%d Artikel gelöscht."
|
1250 |
+
msgstr[1] "%d Artikel gelöscht."
|
1251 |
+
|
1252 |
+
# @ broken-link-checker
|
1253 |
+
#: includes/any-post.php:713
|
1254 |
+
msgid "%d page deleted."
|
1255 |
+
msgid_plural "%d pages deleted."
|
1256 |
+
msgstr[0] "%d Seite gelöscht."
|
1257 |
+
msgstr[1] "%d Seiten gelöscht."
|
1258 |
+
|
1259 |
+
# @ broken-link-checker
|
1260 |
+
#: includes/any-post.php:715
|
1261 |
+
msgid "%d \"%s\" deleted."
|
1262 |
+
msgid_plural "%d \"%s\" deleted."
|
1263 |
+
msgstr[0] "%d \"%s\" gelöscht."
|
1264 |
+
msgstr[1] "%d \"%s\" gelöscht."
|
1265 |
+
|
1266 |
+
# @ broken-link-checker
|
1267 |
+
#: includes/any-post.php:734
|
1268 |
+
msgid "%d post moved to the Trash."
|
1269 |
+
msgid_plural "%d posts moved to the Trash."
|
1270 |
+
msgstr[0] "%d Artikel in den Papierkorb verschoben."
|
1271 |
+
msgstr[1] "%d Artikel in den Papierkorb verschoben."
|
1272 |
+
|
1273 |
+
# @ broken-link-checker
|
1274 |
+
#: includes/any-post.php:736
|
1275 |
+
msgid "%d page moved to the Trash."
|
1276 |
+
msgid_plural "%d pages moved to the Trash."
|
1277 |
+
msgstr[0] "%d Seite in den Papierkorb verschoben."
|
1278 |
+
msgstr[1] "%d Seiten in den Papierkorb verschoben."
|
1279 |
|
1280 |
+
# @ broken-link-checker
|
1281 |
+
#: includes/any-post.php:738
|
1282 |
+
msgid "%d \"%s\" moved to the Trash."
|
1283 |
+
msgid_plural "%d \"%s\" moved to the Trash."
|
1284 |
+
msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
|
1285 |
+
msgstr[1] "%d \"%s\" in den Papierkorb verschoben."
|
1286 |
|
1287 |
# @ broken-link-checker
|
1288 |
+
#: includes/containers.php:122
|
1289 |
+
msgid "%d '%s' has been deleted"
|
1290 |
+
msgid_plural "%d '%s' have been deleted"
|
1291 |
+
msgstr[0] "%d '%s' wurde gelöscht"
|
1292 |
+
msgstr[1] "%d '%s' wurden gelöscht"
|
1293 |
|
1294 |
# @ broken-link-checker
|
1295 |
+
#: includes/containers.php:873
|
1296 |
+
#: includes/containers.php:891
|
1297 |
+
msgid "Container type '%s' not recognized"
|
1298 |
+
msgstr "Container Typ '%s' nicht erkannt"
|
1299 |
|
1300 |
# @ broken-link-checker
|
1301 |
+
#: includes/extra-strings.php:2
|
1302 |
+
msgctxt "module name"
|
1303 |
+
msgid "Basic HTTP"
|
1304 |
+
msgstr "Standard HTTP"
|
1305 |
|
1306 |
# @ broken-link-checker
|
1307 |
+
#: includes/extra-strings.php:3
|
1308 |
+
msgctxt "module name"
|
1309 |
+
msgid "Blogroll items"
|
1310 |
+
msgstr "Blogroll Elemente"
|
1311 |
|
1312 |
# @ broken-link-checker
|
1313 |
+
#: includes/extra-strings.php:4
|
1314 |
+
msgctxt "module name"
|
1315 |
+
msgid "Comments"
|
1316 |
+
msgstr "Kommentare"
|
1317 |
|
1318 |
# @ broken-link-checker
|
1319 |
+
#: includes/extra-strings.php:5
|
1320 |
+
msgctxt "module name"
|
1321 |
+
msgid "Custom fields"
|
1322 |
+
msgstr "Benutzerdefinierte Felder"
|
1323 |
|
1324 |
# @ broken-link-checker
|
1325 |
+
#: includes/extra-strings.php:6
|
1326 |
+
msgctxt "module name"
|
1327 |
+
msgid "Embedded DailyMotion videos"
|
1328 |
+
msgstr "Eingebettete DailyMotion Videos"
|
1329 |
|
1330 |
# @ broken-link-checker
|
1331 |
+
#: includes/extra-strings.php:7
|
1332 |
+
msgctxt "module name"
|
1333 |
+
msgid "Embedded GoogleVideo videos"
|
1334 |
+
msgstr "Eingebettete GoogleVideo Videos"
|
1335 |
|
1336 |
# @ broken-link-checker
|
1337 |
+
#: includes/extra-strings.php:8
|
1338 |
+
msgctxt "module name"
|
1339 |
+
msgid "Embedded Megavideo videos"
|
1340 |
+
msgstr "Eingebettete Megavideo Videos"
|
1341 |
|
1342 |
# @ broken-link-checker
|
1343 |
+
#: includes/extra-strings.php:9
|
1344 |
+
msgctxt "module name"
|
1345 |
+
msgid "Embedded Vimeo videos"
|
1346 |
+
msgstr "Eingebettete Vimeo Videos"
|
|
|
1347 |
|
1348 |
# @ broken-link-checker
|
1349 |
+
#: includes/extra-strings.php:10
|
1350 |
+
msgctxt "module name"
|
1351 |
+
msgid "Embedded YouTube videos"
|
1352 |
+
msgstr "Eingebettete YouTube Videos"
|
1353 |
|
1354 |
# @ broken-link-checker
|
1355 |
+
#: includes/extra-strings.php:11
|
1356 |
+
msgctxt "module name"
|
1357 |
+
msgid "Embedded YouTube videos (old embed code)"
|
1358 |
+
msgstr "Eingebettete YouTube Videos (Alter Code)"
|
1359 |
|
1360 |
# @ broken-link-checker
|
1361 |
+
#: includes/extra-strings.php:12
|
1362 |
+
msgctxt "module name"
|
1363 |
+
msgid "FileServe API"
|
1364 |
+
msgstr "FileServe API"
|
1365 |
|
1366 |
# @ broken-link-checker
|
1367 |
+
#: includes/extra-strings.php:13
|
1368 |
+
msgctxt "module name"
|
1369 |
+
msgid "HTML images"
|
1370 |
+
msgstr "HTML Bilder"
|
1371 |
|
1372 |
# @ broken-link-checker
|
1373 |
+
#: includes/extra-strings.php:14
|
1374 |
+
msgctxt "module name"
|
1375 |
+
msgid "HTML links"
|
1376 |
+
msgstr "HTML Links"
|
1377 |
|
1378 |
# @ broken-link-checker
|
1379 |
+
#: includes/extra-strings.php:15
|
1380 |
+
msgctxt "module name"
|
1381 |
+
msgid "MediaFire API"
|
1382 |
+
msgstr "MediaFire API"
|
1383 |
|
1384 |
# @ broken-link-checker
|
1385 |
+
#: includes/extra-strings.php:16
|
1386 |
+
msgctxt "module name"
|
1387 |
+
msgid "MegaUpload API"
|
1388 |
+
msgstr "MegaUpload API"
|
1389 |
|
1390 |
# @ broken-link-checker
|
1391 |
+
#: includes/extra-strings.php:17
|
1392 |
+
msgctxt "module name"
|
1393 |
+
msgid "Plaintext URLs"
|
1394 |
+
msgstr "Klartext URLs"
|
1395 |
|
1396 |
# @ broken-link-checker
|
1397 |
+
#: includes/extra-strings.php:18
|
1398 |
+
msgctxt "module name"
|
1399 |
+
msgid "RapidShare API"
|
1400 |
+
msgstr "RapidShare API"
|
1401 |
|
1402 |
# @ broken-link-checker
|
1403 |
+
#: includes/extra-strings.php:19
|
1404 |
+
msgctxt "module name"
|
1405 |
+
msgid "YouTube API"
|
1406 |
+
msgstr "YouTube API"
|
1407 |
|
1408 |
# @ broken-link-checker
|
1409 |
+
#: includes/extra-strings.php:20
|
1410 |
+
msgctxt "module name"
|
1411 |
+
msgid "Posts"
|
1412 |
+
msgstr "Beiträge"
|
1413 |
|
1414 |
# @ broken-link-checker
|
1415 |
+
#: includes/extra-strings.php:21
|
1416 |
+
msgctxt "module name"
|
1417 |
+
msgid "Pages"
|
1418 |
+
msgstr "Seiten"
|
1419 |
|
1420 |
# @ broken-link-checker
|
1421 |
+
#: includes/instances.php:102
|
1422 |
+
#: includes/instances.php:158
|
1423 |
+
msgid "Container %s[%d] not found"
|
1424 |
+
msgstr "Container %s[%d] nicht gefunden"
|
1425 |
|
1426 |
# @ broken-link-checker
|
1427 |
+
#: includes/instances.php:111
|
1428 |
+
#: includes/instances.php:167
|
1429 |
+
msgid "Parser '%s' not found."
|
1430 |
+
msgstr "Parser '%s' nicht gefunden."
|
1431 |
|
1432 |
# @ broken-link-checker
|
1433 |
#: includes/link-query.php:25
|
1452 |
# @ broken-link-checker
|
1453 |
#: includes/link-query.php:36
|
1454 |
msgid "No redirects found"
|
1455 |
+
msgstr "Keine umgeleiteten Links gefunden"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1456 |
|
1457 |
# @ broken-link-checker
|
1458 |
+
#: includes/link-query.php:44
|
1459 |
+
msgid "All"
|
1460 |
+
msgstr "Alle"
|
|
|
|
|
1461 |
|
1462 |
# @ broken-link-checker
|
1463 |
+
#: includes/link-query.php:45
|
1464 |
+
msgid "Detected Links"
|
1465 |
+
msgstr "Gefundene Links"
|
|
|
|
|
1466 |
|
1467 |
# @ broken-link-checker
|
1468 |
+
#: includes/link-query.php:46
|
1469 |
+
msgid "No links found (yet)"
|
1470 |
+
msgstr "(Noch) keine Links gefunden"
|
|
|
|
|
1471 |
|
1472 |
# @ broken-link-checker
|
1473 |
+
#: includes/link-query.php:54
|
1474 |
+
msgid "Search Results"
|
1475 |
+
msgstr "Such Resultat"
|
1476 |
+
|
1477 |
+
# @ broken-link-checker
|
1478 |
+
#: includes/link-query.php:55
|
1479 |
+
#: includes/link-query.php:102
|
1480 |
+
msgid "No links found for your query"
|
1481 |
+
msgstr "Keine Links für Deine Anfrage gefunden"
|
1482 |
|
1483 |
# @ broken-link-checker
|
1484 |
#: includes/links.php:215
|
1529 |
msgstr "Links können nicht aus der Datenbank gelöscht werden"
|
1530 |
|
1531 |
# @ broken-link-checker
|
1532 |
+
#: includes/links.php:831
|
1533 |
+
msgctxt "link status"
|
1534 |
+
msgid "Unknown"
|
1535 |
+
msgstr "Unbekannt"
|
1536 |
+
|
1537 |
+
# @ link status
|
1538 |
+
# @ broken-link-checker
|
1539 |
+
#: includes/links.php:845
|
1540 |
+
#: modules/checkers/http.php:264
|
1541 |
+
#: modules/extras/mediafire.php:101
|
1542 |
+
msgid "Unknown Error"
|
1543 |
+
msgstr "Unbekannter Fehler"
|
1544 |
+
|
1545 |
+
# @ broken-link-checker
|
1546 |
+
#: includes/links.php:869
|
1547 |
+
msgid "Not checked"
|
1548 |
+
msgstr "Nicht überprüft"
|
1549 |
+
|
1550 |
+
# @ broken-link-checker
|
1551 |
+
#: includes/links.php:872
|
1552 |
+
msgid "False positive"
|
1553 |
+
msgstr "Falsch positiv"
|
1554 |
+
|
1555 |
+
# @ broken-link-checker
|
1556 |
+
#: includes/links.php:875
|
1557 |
+
#: modules/extras/fileserve.php:121
|
1558 |
+
#: modules/extras/megaupload.php:115
|
1559 |
+
#: modules/extras/rapidshare.php:145
|
1560 |
+
#: modules/extras/rapidshare.php:151
|
1561 |
+
#: modules/extras/rapidshare.php:178
|
1562 |
+
msgctxt "link status"
|
1563 |
+
msgid "OK"
|
1564 |
+
msgstr "OK"
|
1565 |
+
|
1566 |
+
# @ broken-link-checker
|
1567 |
+
#: includes/parsers.php:109
|
1568 |
+
msgid "Editing is not implemented in the '%s' parser"
|
1569 |
+
msgstr "Editieren ist nicht im '%s' Parser implementiert"
|
1570 |
+
|
1571 |
+
# @ broken-link-checker
|
1572 |
+
#: includes/parsers.php:124
|
1573 |
+
msgid "Unlinking is not implemented in the '%s' parser"
|
1574 |
+
msgstr "Aufheben der Verknüpfung ist nicht im '%s' Parser implementiert"
|
1575 |
+
|
1576 |
+
# @ default
|
1577 |
+
#: includes/utility-class.php:244
|
1578 |
+
msgid "%d second"
|
1579 |
+
msgid_plural "%d seconds"
|
1580 |
+
msgstr[0] "%s Sekunde"
|
1581 |
+
msgstr[1] "%s Sekunden"
|
1582 |
+
|
1583 |
+
# @ default
|
1584 |
+
#: includes/utility-class.php:245
|
1585 |
+
msgid "%d second ago"
|
1586 |
+
msgid_plural "%d seconds ago"
|
1587 |
+
msgstr[0] "%s Sekunde vergangen"
|
1588 |
+
msgstr[1] "%s Sekunden vergangen"
|
1589 |
+
|
1590 |
+
# @ default
|
1591 |
+
#: includes/utility-class.php:248
|
1592 |
+
msgid "%d minute"
|
1593 |
+
msgid_plural "%d minutes"
|
1594 |
+
msgstr[0] "%d Minute"
|
1595 |
+
msgstr[1] "%d Minuten"
|
1596 |
+
|
1597 |
+
# @ default
|
1598 |
+
#: includes/utility-class.php:249
|
1599 |
+
msgid "%d minute ago"
|
1600 |
+
msgid_plural "%d minutes ago"
|
1601 |
+
msgstr[0] "%d Minute vergangen"
|
1602 |
+
msgstr[1] "%d Minuten vergangen"
|
1603 |
+
|
1604 |
+
# @ default
|
1605 |
+
#: includes/utility-class.php:252
|
1606 |
+
msgid "%d hour"
|
1607 |
+
msgid_plural "%d hours"
|
1608 |
+
msgstr[0] "%d Stunde"
|
1609 |
+
msgstr[1] "%d Stunden"
|
1610 |
+
|
1611 |
+
# @ default
|
1612 |
+
#: includes/utility-class.php:253
|
1613 |
+
msgid "%d hour ago"
|
1614 |
+
msgid_plural "%d hours ago"
|
1615 |
+
msgstr[0] "%d Stunde vergangen"
|
1616 |
+
msgstr[1] "%d Stunden vergangen"
|
1617 |
+
|
1618 |
+
# @ default
|
1619 |
+
#: includes/utility-class.php:256
|
1620 |
+
msgid "%d day"
|
1621 |
+
msgid_plural "%d days"
|
1622 |
+
msgstr[0] "%d Tag"
|
1623 |
+
msgstr[1] "%d Tage"
|
1624 |
+
|
1625 |
+
# @ default
|
1626 |
+
#: includes/utility-class.php:257
|
1627 |
+
msgid "%d day ago"
|
1628 |
+
msgid_plural "%d days ago"
|
1629 |
+
msgstr[0] "%d Tag vergangen"
|
1630 |
+
msgstr[1] "%d Tage vergangen"
|
1631 |
+
|
1632 |
+
# @ default
|
1633 |
+
#: includes/utility-class.php:260
|
1634 |
+
msgid "%d month"
|
1635 |
+
msgid_plural "%d months"
|
1636 |
+
msgstr[0] "%d Monat"
|
1637 |
+
msgstr[1] "%d Monate"
|
1638 |
+
|
1639 |
+
# @ default
|
1640 |
+
#: includes/utility-class.php:261
|
1641 |
+
msgid "%d month ago"
|
1642 |
+
msgid_plural "%d months ago"
|
1643 |
+
msgstr[0] "%d Monat vergangen"
|
1644 |
+
msgstr[1] "%d Monate vergangen"
|
1645 |
+
|
1646 |
+
# @ broken-link-checker
|
1647 |
+
#: modules/checkers/http.php:243
|
1648 |
+
msgid "Server Not Found"
|
1649 |
+
msgstr "Server nicht gefunden"
|
1650 |
+
|
1651 |
+
# @ broken-link-checker
|
1652 |
+
#: modules/checkers/http.php:258
|
1653 |
+
msgid "Connection Failed"
|
1654 |
+
msgstr "Verbindung fehlgeschlagen"
|
1655 |
+
|
1656 |
+
# @ broken-link-checker
|
1657 |
+
#: modules/checkers/http.php:293
|
1658 |
+
#: modules/checkers/http.php:363
|
1659 |
+
msgid "HTTP code : %d"
|
1660 |
+
msgstr "HTTP Code: %d"
|
1661 |
+
|
1662 |
+
# @ broken-link-checker
|
1663 |
+
#: modules/checkers/http.php:295
|
1664 |
+
#: modules/checkers/http.php:365
|
1665 |
+
msgid "(No response)"
|
1666 |
+
msgstr "(Keine Antwort)"
|
1667 |
+
|
1668 |
+
# @ broken-link-checker
|
1669 |
+
#: modules/checkers/http.php:301
|
1670 |
+
msgid "Most likely the connection timed out or the domain doesn't exist."
|
1671 |
+
msgstr "Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
|
1672 |
+
|
1673 |
+
# @ broken-link-checker
|
1674 |
+
#: modules/checkers/http.php:372
|
1675 |
+
msgid "Request timed out."
|
1676 |
+
msgstr "Erfordert Zeitlimit."
|
1677 |
+
|
1678 |
+
# @ broken-link-checker
|
1679 |
+
#: modules/checkers/http.php:390
|
1680 |
+
msgid "Using Snoopy"
|
1681 |
+
msgstr "Benutzt Snoopy"
|
1682 |
+
|
1683 |
+
# @ broken-link-checker
|
1684 |
+
#: modules/containers/blogroll.php:21
|
1685 |
+
msgid "Bookmark"
|
1686 |
+
msgstr "Lesezeichen"
|
1687 |
+
|
1688 |
+
# @ broken-link-checker
|
1689 |
+
#: modules/containers/blogroll.php:27
|
1690 |
+
#: modules/containers/blogroll.php:46
|
1691 |
+
msgid "Edit this bookmark"
|
1692 |
+
msgstr "Lesezeichen bearbeiten"
|
1693 |
+
|
1694 |
+
# @ default
|
1695 |
+
#: modules/containers/blogroll.php:47
|
1696 |
+
msgid ""
|
1697 |
+
"You are about to delete this link '%s'\n"
|
1698 |
+
" 'Cancel' to stop, 'OK' to delete."
|
1699 |
+
msgstr ""
|
1700 |
+
"Möchten Sie diesen Link löschen '%s'\n"
|
1701 |
+
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
1702 |
+
|
1703 |
+
# @ broken-link-checker
|
1704 |
+
#: modules/containers/blogroll.php:97
|
1705 |
+
msgid "Updating bookmark %d failed"
|
1706 |
+
msgstr "Lesezeichen Aktualisierung %d fehlgeschlagen"
|
1707 |
+
|
1708 |
+
# @ broken-link-checker
|
1709 |
+
#: modules/containers/blogroll.php:128
|
1710 |
+
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
1711 |
+
msgstr "Löschen des Blogroll Link \"%s\" (%d) schlug fehl"
|
1712 |
+
|
1713 |
+
# @ broken-link-checker
|
1714 |
+
#: modules/containers/blogroll.php:298
|
1715 |
+
msgid "%d blogroll link deleted."
|
1716 |
+
msgid_plural "%d blogroll links deleted."
|
1717 |
+
msgstr[0] "%d Blogroll Link gelöscht."
|
1718 |
+
msgstr[1] "%d Blogroll Links gelöscht."
|
1719 |
+
|
1720 |
+
# @ broken-link-checker
|
1721 |
+
#: modules/containers/comment.php:53
|
1722 |
+
msgid "Updating comment %d failed"
|
1723 |
+
msgstr "Kommentar Aktualisierung %d fehlgeschlagen"
|
1724 |
+
|
1725 |
+
# @ broken-link-checker
|
1726 |
+
#: modules/containers/comment.php:74
|
1727 |
+
msgid "Failed to delete comment %d"
|
1728 |
+
msgstr "Fehler beim Kommentar löschen %d"
|
1729 |
+
|
1730 |
+
# @ broken-link-checker
|
1731 |
+
#: modules/containers/comment.php:95
|
1732 |
+
msgid "Can't move comment %d to the trash"
|
1733 |
+
msgstr "Kommentar %d kann nicht in den Papierkorb verschoben werden"
|
1734 |
+
|
1735 |
+
# @ default
|
1736 |
+
#: modules/containers/comment.php:153
|
1737 |
+
#: modules/containers/comment.php:195
|
1738 |
+
msgid "Edit comment"
|
1739 |
+
msgstr "Kommentar bearbeiten"
|
1740 |
+
|
1741 |
+
# @ default
|
1742 |
+
#: modules/containers/comment.php:160
|
1743 |
+
msgid "Delete Permanently"
|
1744 |
+
msgstr "Endgültig löschen"
|
1745 |
+
|
1746 |
+
# @ default
|
1747 |
+
#: modules/containers/comment.php:162
|
1748 |
+
msgid "Move this comment to the trash"
|
1749 |
+
msgstr "%d Kommentar in den Papierkorb verschieben"
|
1750 |
+
|
1751 |
+
# @ default
|
1752 |
+
#: modules/containers/comment.php:162
|
1753 |
+
msgctxt "verb"
|
1754 |
+
msgid "Trash"
|
1755 |
+
msgstr "Papierkorb"
|
1756 |
+
|
1757 |
+
# @ broken-link-checker
|
1758 |
+
#: modules/containers/comment.php:166
|
1759 |
+
msgid "View comment"
|
1760 |
+
msgstr "Kommentar ansehen"
|
1761 |
+
|
1762 |
+
# @ broken-link-checker
|
1763 |
+
#: modules/containers/comment.php:183
|
1764 |
+
msgid "Comment"
|
1765 |
+
msgstr "Kommentar"
|
1766 |
+
|
1767 |
+
# @ broken-link-checker
|
1768 |
+
#: modules/containers/comment.php:355
|
1769 |
+
msgid "%d comment has been deleted."
|
1770 |
+
msgid_plural "%d comments have been deleted."
|
1771 |
+
msgstr[0] "%d Kommentar wurde gelöscht."
|
1772 |
+
msgstr[1] "%d Kommentare wurde gelöscht."
|
1773 |
|
1774 |
# @ broken-link-checker
|
1775 |
+
#: modules/containers/comment.php:374
|
1776 |
+
msgid "%d comment moved to the Trash."
|
1777 |
+
msgid_plural "%d comments moved to the Trash."
|
1778 |
+
msgstr[0] "%d Kommentar in den Papierkorb verschoben."
|
1779 |
+
msgstr[1] "%d Kommentare in den Papierkorb verschoben."
|
1780 |
|
1781 |
# @ broken-link-checker
|
1782 |
+
#: modules/containers/custom_field.php:84
|
1783 |
+
msgid "Failed to update the meta field '%s' on %s [%d]"
|
1784 |
+
msgstr "Aktualisieren des Meta-Feldes '%s' in %s [%d] schlug fehl"
|
1785 |
|
1786 |
# @ broken-link-checker
|
1787 |
+
#: modules/containers/custom_field.php:110
|
1788 |
+
msgid "Failed to delete the meta field '%s' on %s [%d]"
|
1789 |
+
msgstr "Löschen des Meta-Feldes '%s' in %s [%d] schlug fehl"
|
1790 |
+
|
1791 |
+
# @ default
|
1792 |
+
#: modules/containers/custom_field.php:187
|
1793 |
+
msgid "Edit this post"
|
1794 |
+
msgstr "Bearbeiten Sie diesen Beitrag"
|
1795 |
|
1796 |
# @ broken-link-checker
|
1797 |
+
#: modules/containers/custom_field.php:217
|
1798 |
+
msgid "View \"%s\""
|
1799 |
+
msgstr "\"%s\" ansehen"
|
|
|
1800 |
|
1801 |
# @ broken-link-checker
|
1802 |
+
#: modules/containers/dummy.php:34
|
1803 |
+
#: modules/containers/dummy.php:45
|
1804 |
+
msgid "I don't know how to edit a '%s' [%d]."
|
1805 |
+
msgstr "Das Bearbeiten von '%s' [%d] ist fehlgeschlagen."
|
1806 |
|
1807 |
# @ broken-link-checker
|
1808 |
+
#: modules/extras/dailymotion-embed.php:23
|
1809 |
+
msgid "DailyMotion Video"
|
1810 |
+
msgstr "DailyMotion Video"
|
|
|
1811 |
|
1812 |
# @ broken-link-checker
|
1813 |
+
#: modules/extras/dailymotion-embed.php:24
|
1814 |
+
msgid "Embedded DailyMotion video"
|
|
|
1815 |
msgstr "Eingebettete DailyMotion Videos"
|
1816 |
|
1817 |
+
#: modules/extras/embed-parser-base.php:196
|
1818 |
+
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
1819 |
+
msgstr "Eingebettete Videos können mit Broken Link Checker nicht editiert werden. Bitte ändern oder ersetzen Sie das betreffende Video manuell."
|
1820 |
+
|
1821 |
+
#: modules/extras/fileserve.php:55
|
1822 |
+
msgid "Using FileServe API"
|
1823 |
+
msgstr "Verwende FileServe API"
|
1824 |
+
|
1825 |
# @ broken-link-checker
|
1826 |
+
#: modules/extras/fileserve.php:112
|
1827 |
+
#: modules/extras/mediafire.php:91
|
1828 |
+
#: modules/extras/mediafire.php:96
|
1829 |
+
#: modules/extras/megaupload.php:81
|
1830 |
+
#: modules/extras/megaupload.php:123
|
1831 |
+
#: modules/extras/rapidshare.php:139
|
1832 |
+
msgid "Not Found"
|
1833 |
+
msgstr "Nicht gefunden"
|
1834 |
+
|
1835 |
+
#: modules/extras/fileserve.php:115
|
1836 |
+
msgid "FileServe : %d %s"
|
1837 |
+
msgstr "FileServe : %d %s"
|
1838 |
|
1839 |
# @ broken-link-checker
|
1840 |
+
#: modules/extras/googlevideo-embed.php:24
|
1841 |
+
msgid "GoogleVideo Video"
|
1842 |
+
msgstr "GoogleVideo Video"
|
|
|
1843 |
|
1844 |
# @ broken-link-checker
|
1845 |
+
#: modules/extras/googlevideo-embed.php:25
|
1846 |
+
msgid "Embedded GoogleVideo video"
|
1847 |
+
msgstr "Eingebetteter GoogleVideo Video"
|
1848 |
+
|
1849 |
+
#: modules/extras/megaupload.php:130
|
1850 |
+
msgid "File Temporarily Unavailable"
|
1851 |
+
msgstr "Datei vorübergehend nicht erreichbar"
|
1852 |
+
|
1853 |
+
#: modules/extras/megaupload.php:136
|
1854 |
+
msgid "API Error"
|
1855 |
+
msgstr "API Fehler"
|
1856 |
|
1857 |
# @ broken-link-checker
|
1858 |
+
#: modules/extras/megavideo-embed.php:24
|
1859 |
+
msgid "Megavideo Video"
|
1860 |
+
msgstr "Megavideo Video"
|
|
|
1861 |
|
1862 |
# @ broken-link-checker
|
1863 |
+
#: modules/extras/megavideo-embed.php:25
|
1864 |
+
msgid "Embedded Megavideo video"
|
1865 |
+
msgstr "Eingebetteter Megavideo Video"
|
|
|
1866 |
|
1867 |
# @ broken-link-checker
|
1868 |
+
#: modules/extras/rapidshare.php:51
|
1869 |
+
msgid "Using RapidShare API"
|
1870 |
+
msgstr "Verwende RapidShare API"
|
|
|
1871 |
|
1872 |
# @ broken-link-checker
|
1873 |
+
#: modules/extras/rapidshare.php:158
|
1874 |
+
msgid "RS Server Down"
|
1875 |
+
msgstr "RS Server nicht verfügbar"
|
|
|
1876 |
|
1877 |
# @ broken-link-checker
|
1878 |
+
#: modules/extras/rapidshare.php:165
|
1879 |
+
msgid "File Blocked"
|
1880 |
+
msgstr "Datei blockiert"
|
1881 |
+
|
1882 |
+
#: modules/extras/rapidshare.php:172
|
1883 |
+
msgid "File Locked"
|
1884 |
+
msgstr "Datei gesperrt"
|
1885 |
|
1886 |
# @ broken-link-checker
|
1887 |
+
#: modules/extras/rapidshare.php:183
|
1888 |
+
msgid "RapidShare : %s"
|
1889 |
+
msgstr "RapidShare: %s"
|
|
|
1890 |
|
1891 |
# @ broken-link-checker
|
1892 |
+
#: modules/extras/rapidshare.php:189
|
1893 |
+
msgid "RapidShare API error: %s"
|
1894 |
+
msgstr "RapidShare API Fehler: %s"
|
|
|
1895 |
|
1896 |
# @ broken-link-checker
|
1897 |
+
#: modules/extras/vimeo-embed.php:24
|
1898 |
+
msgid "Vimeo Video"
|
1899 |
+
msgstr "Vimeo Video"
|
|
|
1900 |
|
1901 |
# @ broken-link-checker
|
1902 |
+
#: modules/extras/vimeo-embed.php:25
|
1903 |
+
msgid "Embedded Vimeo video"
|
1904 |
+
msgstr "Eingebettete Vimeo Videos"
|
|
|
1905 |
|
1906 |
+
# @ broken-link-checker
|
1907 |
+
#: modules/extras/youtube-embed.php:24
|
1908 |
+
#: modules/extras/youtube-iframe.php:25
|
1909 |
+
msgid "YouTube Video"
|
1910 |
+
msgstr "YouTube Video"
|
|
|
1911 |
|
1912 |
+
# @ broken-link-checker
|
1913 |
+
#: modules/extras/youtube-embed.php:25
|
1914 |
+
#: modules/extras/youtube-iframe.php:26
|
1915 |
+
msgid "Embedded YouTube video"
|
1916 |
+
msgstr "Eingebettete YouTube Videos"
|
|
|
1917 |
|
1918 |
+
# @ broken-link-checker
|
1919 |
+
#: modules/extras/youtube.php:73
|
1920 |
+
#: modules/extras/youtube.php:76
|
1921 |
+
msgid "Video Not Found"
|
1922 |
+
msgstr "Video nicht gefunden"
|
|
|
1923 |
|
1924 |
+
#: modules/extras/youtube.php:84
|
1925 |
+
msgid "Video Removed"
|
1926 |
+
msgstr "Video entfernt"
|
|
|
|
|
|
|
1927 |
|
1928 |
+
#: modules/extras/youtube.php:92
|
1929 |
+
msgid "Invalid Video ID"
|
1930 |
+
msgstr "Ungültige Video ID"
|
|
|
|
|
|
|
1931 |
|
1932 |
+
#: modules/extras/youtube.php:104
|
1933 |
+
msgid "Video OK"
|
1934 |
+
msgstr "Video OK"
|
|
|
|
|
|
|
1935 |
|
1936 |
+
# @ broken-link-checker
|
1937 |
+
#: modules/extras/youtube.php:105
|
1938 |
+
#: modules/extras/youtube.php:132
|
1939 |
+
msgid "OK"
|
1940 |
+
msgstr "OK"
|
|
|
1941 |
|
1942 |
+
#: modules/extras/youtube.php:118
|
1943 |
+
msgid "Video status : %s%s"
|
1944 |
+
msgstr "Video Status : %s%s"
|
|
|
|
|
|
|
1945 |
|
1946 |
+
#: modules/extras/youtube.php:137
|
1947 |
+
msgid "Video Restricted"
|
1948 |
+
msgstr "Video mit Einschränkungen"
|
|
|
|
|
|
|
1949 |
|
1950 |
+
#: modules/extras/youtube.php:154
|
1951 |
+
msgid "Unknown YouTube API response received."
|
1952 |
+
msgstr "Unbekannte Antwort der YouTube API erhalten."
|
|
|
|
|
|
|
1953 |
|
1954 |
# @ broken-link-checker
|
1955 |
+
#: modules/parsers/image.php:159
|
1956 |
+
msgid "Image"
|
1957 |
+
msgstr "Bild"
|
|
|
1958 |
|
1959 |
# @ broken-link-checker
|
1960 |
+
#: modules/parsers/metadata.php:117
|
1961 |
+
msgid "Custom field"
|
1962 |
+
msgstr "Benutzerdefiniertes Feld"
|
|
|
1963 |
|
1964 |
#. Plugin URI of the plugin/theme
|
1965 |
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
languages/broken-link-checker-pt_PT.mo
CHANGED
Binary file
|
languages/broken-link-checker-pt_PT.po
CHANGED
@@ -1,16 +1,10 @@
|
|
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.
|
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:
|
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"
|
@@ -79,14 +73,14 @@ msgstr "Definições"
|
|
79 |
|
80 |
#@ broken-link-checker
|
81 |
#: core/core.php:378
|
82 |
-
#: core/core.php:
|
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:
|
90 |
msgid "Try deactivating and then reactivating the plugin."
|
91 |
msgstr "Tente desativar e ativar o plugin."
|
92 |
|
@@ -190,193 +184,193 @@ msgstr "Aplicar formatação personalizada para os links offline"
|
|
190 |
|
191 |
#@ broken-link-checker
|
192 |
#: core/core.php:700
|
193 |
-
#: core/core.php:
|
194 |
msgid "Edit CSS"
|
195 |
msgstr "Editar CSS"
|
196 |
|
197 |
#@ broken-link-checker
|
198 |
-
#: core/core.php:
|
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:
|
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:
|
209 |
msgid "Look for links in"
|
210 |
msgstr "Procurar links em"
|
211 |
|
212 |
#@ broken-link-checker
|
213 |
-
#: core/core.php:
|
214 |
msgid "Post statuses"
|
215 |
msgstr "Estado do Artigo"
|
216 |
|
217 |
#@ broken-link-checker
|
218 |
-
#: core/core.php:
|
219 |
msgid "Link types"
|
220 |
msgstr "Tipos de link"
|
221 |
|
222 |
#@ broken-link-checker
|
223 |
-
#: core/core.php:
|
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:
|
229 |
msgid "Exclusion list"
|
230 |
msgstr "Lista de exclusão"
|
231 |
|
232 |
#@ broken-link-checker
|
233 |
-
#: core/core.php:
|
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:
|
239 |
msgid "Check links using"
|
240 |
msgstr "Verificar links utilizando"
|
241 |
|
242 |
#@ broken-link-checker
|
243 |
-
#: core/core.php:
|
244 |
#: includes/links.php:849
|
245 |
msgid "Timeout"
|
246 |
msgstr "Intervalo"
|
247 |
|
248 |
#@ broken-link-checker
|
249 |
#@ default
|
250 |
-
#: core/core.php:
|
251 |
-
#: core/core.php:
|
252 |
-
#: core/core.php:
|
253 |
#, php-format
|
254 |
msgid "%s seconds"
|
255 |
msgstr "%s segundos"
|
256 |
|
257 |
#@ broken-link-checker
|
258 |
-
#: core/core.php:
|
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:
|
264 |
msgid "Link monitor"
|
265 |
msgstr "Monitor de links"
|
266 |
|
267 |
#@ broken-link-checker
|
268 |
-
#: core/core.php:
|
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:
|
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:
|
279 |
msgid "Max. execution time"
|
280 |
msgstr "Tempo máximo de execução"
|
281 |
|
282 |
#@ broken-link-checker
|
283 |
-
#: core/core.php:
|
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:
|
289 |
msgid "Server load limit"
|
290 |
msgstr "Limite de carregamento do servidor"
|
291 |
|
292 |
#@ broken-link-checker
|
293 |
-
#: core/core.php:
|
294 |
#, php-format
|
295 |
msgid "Current load : %s"
|
296 |
msgstr "Carga actual : %s"
|
297 |
|
298 |
#@ broken-link-checker
|
299 |
-
#: core/core.php:
|
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:
|
306 |
msgid "Not available"
|
307 |
msgstr "Não disponível"
|
308 |
|
309 |
#@ broken-link-checker
|
310 |
-
#: core/core.php:
|
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:
|
316 |
msgid "Forced recheck"
|
317 |
msgstr "Re-verificação forçada"
|
318 |
|
319 |
#@ broken-link-checker
|
320 |
-
#: core/core.php:
|
321 |
msgid "Re-check all pages"
|
322 |
msgstr "Verificar de novo todas as páginas"
|
323 |
|
324 |
#@ broken-link-checker
|
325 |
-
#: core/core.php:
|
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:
|
331 |
msgid "Save Changes"
|
332 |
msgstr "Guardar alterações"
|
333 |
|
334 |
#@ broken-link-checker
|
335 |
-
#: core/core.php:
|
336 |
msgid "Configure"
|
337 |
msgstr "Configurar"
|
338 |
|
339 |
#@ broken-link-checker
|
340 |
-
#: core/core.php:
|
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:
|
346 |
-
#: core/core.php:
|
347 |
-
#: core/core.php:
|
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:
|
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:
|
359 |
msgid "Invalid search query."
|
360 |
msgstr "Procura inválida."
|
361 |
|
362 |
#@ broken-link-checker
|
363 |
-
#: core/core.php:
|
364 |
#, php-format
|
365 |
msgid "Filter \"%s\" created"
|
366 |
msgstr "Filtro \"%s\" criado"
|
367 |
|
368 |
#@ broken-link-checker
|
369 |
-
#: core/core.php:
|
370 |
msgid "Filter ID not specified."
|
371 |
msgstr "ID do Filtro não especificado."
|
372 |
|
373 |
#@ broken-link-checker
|
374 |
-
#: core/core.php:
|
375 |
msgid "Filter deleted"
|
376 |
msgstr "Filtro eliminado"
|
377 |
|
378 |
#@ broken-link-checker
|
379 |
-
#: core/core.php:
|
380 |
#, php-format
|
381 |
msgid "Replaced %d redirect with a direct link"
|
382 |
msgid_plural "Replaced %d redirects with direct links"
|
@@ -384,7 +378,7 @@ 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:
|
388 |
#, php-format
|
389 |
msgid "Failed to fix %d redirect"
|
390 |
msgid_plural "Failed to fix %d redirects"
|
@@ -392,12 +386,12 @@ 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:
|
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:
|
401 |
#, php-format
|
402 |
msgid "%d link updated."
|
403 |
msgid_plural "%d links updated."
|
@@ -405,7 +399,7 @@ msgstr[0] "%d link atualizado."
|
|
405 |
msgstr[1] "%d links atualizados."
|
406 |
|
407 |
#@ broken-link-checker
|
408 |
-
#: core/core.php:
|
409 |
#, php-format
|
410 |
msgid "Failed to update %d link."
|
411 |
msgid_plural "Failed to update %d links."
|
@@ -413,7 +407,7 @@ msgstr[0] "Erro a atualizar %d link."
|
|
413 |
msgstr[1] "Erro a atualizar %d links."
|
414 |
|
415 |
#@ broken-link-checker
|
416 |
-
#: core/core.php:
|
417 |
#, php-format
|
418 |
msgid "%d link removed"
|
419 |
msgid_plural "%d links removed"
|
@@ -421,7 +415,7 @@ msgstr[0] "%d link eliminado"
|
|
421 |
msgstr[1] "%d links eliminados"
|
422 |
|
423 |
#@ broken-link-checker
|
424 |
-
#: core/core.php:
|
425 |
#, php-format
|
426 |
msgid "Failed to remove %d link"
|
427 |
msgid_plural "Failed to remove %d links"
|
@@ -429,7 +423,7 @@ msgstr[0] "Erro a remover %d link"
|
|
429 |
msgstr[1] "Erro a remover %d links"
|
430 |
|
431 |
#@ default
|
432 |
-
#: core/core.php:
|
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."
|
@@ -437,12 +431,12 @@ msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessit
|
|
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:
|
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:
|
446 |
#, php-format
|
447 |
msgid "%d link scheduled for rechecking"
|
448 |
msgid_plural "%d links scheduled for rechecking"
|
@@ -450,19 +444,19 @@ 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:
|
454 |
-
#: core/core.php:
|
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:
|
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:
|
466 |
#, php-format
|
467 |
msgid "%d link marked as not broken"
|
468 |
msgid_plural "%d links marked as not broken"
|
@@ -470,58 +464,58 @@ msgstr[0] "%d link marcado como funcional"
|
|
470 |
msgstr[1] "%d links marcados como funcionais"
|
471 |
|
472 |
#@ broken-link-checker
|
473 |
-
#: core/core.php:
|
474 |
msgid "Table columns"
|
475 |
msgstr "Colunas da Tabela"
|
476 |
|
477 |
#@ default
|
478 |
-
#: core/core.php:
|
479 |
msgid "Show on screen"
|
480 |
msgstr "Mostrar no ecrán"
|
481 |
|
482 |
#@ broken-link-checker
|
483 |
-
#: core/core.php:
|
484 |
msgid "links"
|
485 |
msgstr "links"
|
486 |
|
487 |
#@ default
|
488 |
#@ broken-link-checker
|
489 |
-
#: core/core.php:
|
490 |
#: includes/admin/table-printer.php:163
|
491 |
msgid "Apply"
|
492 |
msgstr "Aplicar"
|
493 |
|
494 |
#@ broken-link-checker
|
495 |
-
#: core/core.php:
|
496 |
msgid "Misc"
|
497 |
msgstr "Vários"
|
498 |
|
499 |
#@ broken-link-checker
|
500 |
-
#: core/core.php:
|
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:
|
507 |
msgid "Color-code status codes"
|
508 |
msgstr "Cor-código status códigos"
|
509 |
|
510 |
#@ broken-link-checker
|
511 |
-
#: core/core.php:
|
512 |
-
#: core/core.php:
|
513 |
-
#: core/core.php:
|
514 |
-
#: core/core.php:
|
515 |
msgid "You're not allowed to do that!"
|
516 |
msgstr "Não permitido!"
|
517 |
|
518 |
#@ broken-link-checker
|
519 |
-
#: core/core.php:
|
520 |
msgid "View broken links"
|
521 |
msgstr "Ver links offline"
|
522 |
|
523 |
#@ broken-link-checker
|
524 |
-
#: core/core.php:
|
525 |
#, php-format
|
526 |
msgid "Found %d broken link"
|
527 |
msgid_plural "Found %d broken links"
|
@@ -529,12 +523,12 @@ msgstr[0] "Encontrado %d Link offline"
|
|
529 |
msgstr[1] "Encontrados %d Links offline"
|
530 |
|
531 |
#@ broken-link-checker
|
532 |
-
#: core/core.php:
|
533 |
msgid "No broken links found."
|
534 |
msgstr "Não existem links offline."
|
535 |
|
536 |
#@ broken-link-checker
|
537 |
-
#: core/core.php:
|
538 |
#, php-format
|
539 |
msgid "%d URL in the work queue"
|
540 |
msgid_plural "%d URLs in the work queue"
|
@@ -542,12 +536,12 @@ msgstr[0] "%d URL em espera"
|
|
542 |
msgstr[1] "%d URLs em espera"
|
543 |
|
544 |
#@ broken-link-checker
|
545 |
-
#: core/core.php:
|
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:
|
551 |
#, php-format
|
552 |
msgid "Detected %d unique URL"
|
553 |
msgid_plural "Detected %d unique URLs"
|
@@ -555,7 +549,7 @@ msgstr[0] "Encontrada %d URL única"
|
|
555 |
msgstr[1] "Encontradas %d URL únicas"
|
556 |
|
557 |
#@ broken-link-checker
|
558 |
-
#: core/core.php:
|
559 |
#, php-format
|
560 |
msgid "in %d link"
|
561 |
msgid_plural "in %d links"
|
@@ -563,154 +557,154 @@ msgstr[0] "em %d link"
|
|
563 |
msgstr[1] "em %d links"
|
564 |
|
565 |
#@ broken-link-checker
|
566 |
-
#: core/core.php:
|
567 |
msgid "and still searching..."
|
568 |
msgstr "e procurando..."
|
569 |
|
570 |
#@ broken-link-checker
|
571 |
-
#: core/core.php:
|
572 |
msgid "Searching your blog for links..."
|
573 |
msgstr "Procurando links..."
|
574 |
|
575 |
#@ broken-link-checker
|
576 |
-
#: core/core.php:
|
577 |
msgid "No links detected."
|
578 |
msgstr "Nenhuns links encontrados."
|
579 |
|
580 |
#@ broken-link-checker
|
581 |
-
#: core/core.php:
|
582 |
-
#: core/core.php:
|
583 |
-
#: core/core.php:
|
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:
|
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:
|
595 |
-
#: core/core.php:
|
596 |
msgid "Error : link_id not specified"
|
597 |
msgstr "Erro : link_id não especificado"
|
598 |
|
599 |
#@ broken-link-checker
|
600 |
-
#: core/core.php:
|
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:
|
606 |
-
#: core/core.php:
|
607 |
msgid "An unexpected error occured!"
|
608 |
msgstr "Ocorreu um erro inesperado!"
|
609 |
|
610 |
#@ broken-link-checker
|
611 |
-
#: core/core.php:
|
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:
|
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:
|
622 |
msgid "Error : link ID not specified"
|
623 |
msgstr "Erro : link ID não especificado"
|
624 |
|
625 |
#@ broken-link-checker
|
626 |
-
#: core/core.php:
|
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:
|
633 |
msgid "Broken Link Checker"
|
634 |
msgstr "Links offline"
|
635 |
|
636 |
#@ broken-link-checker
|
637 |
-
#: core/core.php:
|
638 |
msgid "PHP version"
|
639 |
msgstr "Versão PHP"
|
640 |
|
641 |
#@ broken-link-checker
|
642 |
-
#: core/core.php:
|
643 |
msgid "MySQL version"
|
644 |
msgstr "Versão MySQL"
|
645 |
|
646 |
#@ broken-link-checker
|
647 |
-
#: core/core.php:
|
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:
|
653 |
-
#: core/core.php:
|
654 |
-
#: core/core.php:
|
655 |
msgid "Not installed"
|
656 |
msgstr "Não instalado"
|
657 |
|
658 |
#@ broken-link-checker
|
659 |
-
#: core/core.php:
|
660 |
msgid "CURL version"
|
661 |
msgstr "Versão CURL"
|
662 |
|
663 |
#@ broken-link-checker
|
664 |
-
#: core/core.php:
|
665 |
msgid "Installed"
|
666 |
msgstr "Instalado"
|
667 |
|
668 |
#@ broken-link-checker
|
669 |
-
#: core/core.php:
|
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:
|
675 |
msgid "On"
|
676 |
msgstr "Ativado"
|
677 |
|
678 |
#@ broken-link-checker
|
679 |
-
#: core/core.php:
|
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:
|
685 |
-
#: core/core.php:
|
686 |
msgid "Off"
|
687 |
msgstr "Desativado"
|
688 |
|
689 |
#@ broken-link-checker
|
690 |
-
#: core/core.php:
|
691 |
#, php-format
|
692 |
msgid "On ( %s )"
|
693 |
msgstr "Ativado ( %s )"
|
694 |
|
695 |
#@ broken-link-checker
|
696 |
-
#: core/core.php:
|
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:
|
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:
|
707 |
-
#: core/core.php:
|
708 |
#, php-format
|
709 |
msgid "[%s] Broken links detected"
|
710 |
msgstr "[%s] Links offline encontrados"
|
711 |
|
712 |
#@ broken-link-checker
|
713 |
-
#: core/core.php:
|
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."
|
@@ -718,7 +712,7 @@ 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:
|
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:"
|
@@ -726,30 +720,30 @@ 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:
|
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:
|
735 |
#, php-format
|
736 |
msgid "Link text : %s"
|
737 |
msgstr "Texto do Link : %s"
|
738 |
|
739 |
#@ broken-link-checker
|
740 |
-
#: core/core.php:
|
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:
|
747 |
#, php-format
|
748 |
msgid "Source : %s"
|
749 |
msgstr "Fonte : %s"
|
750 |
|
751 |
#@ broken-link-checker
|
752 |
-
#: core/core.php:
|
753 |
msgid "You can see all broken links here:"
|
754 |
msgstr "Links offline:"
|
755 |
|
@@ -1050,8 +1044,8 @@ msgstr "Não é possível apagar o registro do link na Base de dados"
|
|
1050 |
#@ link status
|
1051 |
#@ broken-link-checker
|
1052 |
#: includes/links.php:845
|
1053 |
-
#: modules/checkers/http.php:
|
1054 |
-
#: modules/extras/mediafire.php:
|
1055 |
msgid "Unknown Error"
|
1056 |
msgstr "Erro Desconhecido"
|
1057 |
|
@@ -1257,23 +1251,23 @@ msgid "Cancel"
|
|
1257 |
msgstr "Cancelar"
|
1258 |
|
1259 |
#@ broken-link-checker
|
1260 |
-
#: includes/admin/sidebar.php:
|
1261 |
msgid "Donate $10, $20 or $50!"
|
1262 |
msgstr "Doar $10, $20 ou $50!"
|
1263 |
|
1264 |
#@ broken-link-checker
|
1265 |
-
#: includes/admin/sidebar.php:
|
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:
|
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:
|
1277 |
msgid "More plugins by Janis Elsts"
|
1278 |
msgstr "Mais plugins de Janis Elsts"
|
1279 |
|
@@ -1480,40 +1474,40 @@ 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:
|
1484 |
msgid "Server Not Found"
|
1485 |
msgstr "Servidor Não Encontrado"
|
1486 |
|
1487 |
#@ broken-link-checker
|
1488 |
-
#: modules/checkers/http.php:
|
1489 |
msgid "Connection Failed"
|
1490 |
msgstr "Sem Ligação"
|
1491 |
|
1492 |
#@ broken-link-checker
|
1493 |
-
#: modules/checkers/http.php:
|
1494 |
-
#: modules/checkers/http.php:
|
1495 |
#, php-format
|
1496 |
msgid "HTTP code : %d"
|
1497 |
msgstr "Código HTTP : %d"
|
1498 |
|
1499 |
#@ broken-link-checker
|
1500 |
-
#: modules/checkers/http.php:
|
1501 |
-
#: modules/checkers/http.php:
|
1502 |
msgid "(No response)"
|
1503 |
msgstr "(Sem resposta)"
|
1504 |
|
1505 |
#@ broken-link-checker
|
1506 |
-
#: modules/checkers/http.php:
|
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:
|
1512 |
msgid "Request timed out."
|
1513 |
msgstr "Tempo de espera esgotado."
|
1514 |
|
1515 |
#@ broken-link-checker
|
1516 |
-
#: modules/checkers/http.php:
|
1517 |
msgid "Using Snoopy"
|
1518 |
msgstr "Utilizando Snoopy"
|
1519 |
|
@@ -1648,50 +1642,53 @@ msgid "Embedded DailyMotion video"
|
|
1648 |
msgstr "Vídeo DailyMotion embutido"
|
1649 |
|
1650 |
#@ broken-link-checker
|
1651 |
-
#: modules/extras/embed-parser-base.php:
|
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/
|
1658 |
-
#: modules/extras/
|
|
|
|
|
1659 |
msgid "Not Found"
|
1660 |
msgstr "Não Encontrado"
|
1661 |
|
1662 |
#@ broken-link-checker
|
1663 |
-
#: modules/extras/megaupload.php:
|
1664 |
msgid "File Temporarily Unavailable"
|
1665 |
msgstr "Ficheiro Temporariamente Indisponível"
|
1666 |
|
1667 |
#@ broken-link-checker
|
1668 |
-
#: modules/extras/megaupload.php:
|
1669 |
msgid "API Error"
|
1670 |
msgstr "Erro API"
|
1671 |
|
1672 |
#@ broken-link-checker
|
1673 |
-
#: modules/extras/rapidshare.php:
|
1674 |
msgid "RS Server Down"
|
1675 |
msgstr "Servidor RS Desligado"
|
1676 |
|
1677 |
#@ broken-link-checker
|
1678 |
-
#: modules/extras/rapidshare.php:
|
1679 |
msgid "File Blocked"
|
1680 |
msgstr "Ficheiro Bloqueado"
|
1681 |
|
1682 |
#@ broken-link-checker
|
1683 |
-
#: modules/extras/rapidshare.php:
|
1684 |
msgid "File Locked"
|
1685 |
msgstr "Ficheiro Bloqueado"
|
1686 |
|
1687 |
#@ broken-link-checker
|
1688 |
-
#: modules/extras/rapidshare.php:
|
1689 |
#, php-format
|
1690 |
msgid "RapidShare : %s"
|
1691 |
msgstr "Rapidshare : %s"
|
1692 |
|
1693 |
#@ broken-link-checker
|
1694 |
-
#: modules/extras/rapidshare.php:
|
1695 |
#, php-format
|
1696 |
msgid "RapidShare API error: %s"
|
1697 |
msgstr "Rapidshare erro API: %s"
|
@@ -1771,13 +1768,13 @@ 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:
|
1775 |
msgctxt "current load"
|
1776 |
msgid "Unknown"
|
1777 |
msgstr "Desconhecido"
|
1778 |
|
1779 |
#@ broken-link-checker
|
1780 |
-
#: core/core.php:
|
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."
|
@@ -1821,73 +1818,73 @@ msgid "Embedded DailyMotion videos"
|
|
1821 |
msgstr "Vídeos DailyMotion embutido"
|
1822 |
|
1823 |
#@ broken-link-checker
|
1824 |
-
#: includes/extra-strings.php:
|
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:
|
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:
|
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:
|
1843 |
msgctxt "module name"
|
1844 |
msgid "HTML images"
|
1845 |
msgstr "Imagens HTML"
|
1846 |
|
1847 |
#@ broken-link-checker
|
1848 |
-
#: includes/extra-strings.php:
|
1849 |
msgctxt "module name"
|
1850 |
msgid "HTML links"
|
1851 |
msgstr "HTML links"
|
1852 |
|
1853 |
#@ broken-link-checker
|
1854 |
-
#: includes/extra-strings.php:
|
1855 |
msgctxt "module name"
|
1856 |
msgid "MediaFire API"
|
1857 |
msgstr "MediaFire API"
|
1858 |
|
1859 |
#@ broken-link-checker
|
1860 |
-
#: includes/extra-strings.php:
|
1861 |
msgctxt "module name"
|
1862 |
msgid "MegaUpload API"
|
1863 |
msgstr "MegaUpload API"
|
1864 |
|
1865 |
#@ broken-link-checker
|
1866 |
-
#: includes/extra-strings.php:
|
1867 |
msgctxt "module name"
|
1868 |
msgid "Plaintext URLs"
|
1869 |
msgstr "Texto URLs"
|
1870 |
|
1871 |
#@ broken-link-checker
|
1872 |
-
#: includes/extra-strings.php:
|
1873 |
msgctxt "module name"
|
1874 |
msgid "RapidShare API"
|
1875 |
msgstr "RapidShare API"
|
1876 |
|
1877 |
#@ broken-link-checker
|
1878 |
-
#: includes/extra-strings.php:
|
1879 |
msgctxt "module name"
|
1880 |
msgid "YouTube API"
|
1881 |
msgstr "YouTube API"
|
1882 |
|
1883 |
#@ broken-link-checker
|
1884 |
-
#: includes/extra-strings.php:
|
1885 |
msgctxt "module name"
|
1886 |
msgid "Posts"
|
1887 |
msgstr "Artigos"
|
1888 |
|
1889 |
#@ broken-link-checker
|
1890 |
-
#: includes/extra-strings.php:
|
1891 |
msgctxt "module name"
|
1892 |
msgid "Pages"
|
1893 |
msgstr "Páginas"
|
@@ -1900,10 +1897,11 @@ msgstr "Desconhecido"
|
|
1900 |
|
1901 |
#@ broken-link-checker
|
1902 |
#: includes/links.php:875
|
1903 |
-
#: modules/extras/
|
1904 |
-
#: modules/extras/
|
1905 |
-
#: modules/extras/rapidshare.php:
|
1906 |
-
#: modules/extras/rapidshare.php:
|
|
|
1907 |
msgctxt "link status"
|
1908 |
msgid "OK"
|
1909 |
msgstr "OK"
|
@@ -2012,3 +2010,75 @@ msgctxt "verb"
|
|
2012 |
msgid "Trash"
|
2013 |
msgstr "Lixo"
|
2014 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Broken Link Checker 1.5 PT\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2011-12-11 10:00-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: \n"
|
8 |
"Language-Team: mowsterJobs @ http://jobs.mowster.net <jobs@mowster.net>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
73 |
|
74 |
#@ broken-link-checker
|
75 |
#: core/core.php:378
|
76 |
+
#: core/core.php:1167
|
77 |
#, php-format
|
78 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
79 |
msgstr "Erro: As tabelas do plugin na Base de dados não estão atualizadas! (Versão atual : %d, obrigatória : %d)"
|
80 |
|
81 |
#@ broken-link-checker
|
82 |
#: core/core.php:382
|
83 |
+
#: core/core.php:1171
|
84 |
msgid "Try deactivating and then reactivating the plugin."
|
85 |
msgstr "Tente desativar e ativar o plugin."
|
86 |
|
184 |
|
185 |
#@ broken-link-checker
|
186 |
#: core/core.php:700
|
187 |
+
#: core/core.php:730
|
188 |
msgid "Edit CSS"
|
189 |
msgstr "Editar CSS"
|
190 |
|
191 |
#@ broken-link-checker
|
192 |
+
#: core/core.php:726
|
193 |
msgid "Apply custom formatting to removed links"
|
194 |
msgstr "Aplicar formatação personalizada para os links removidos"
|
195 |
|
196 |
#@ broken-link-checker
|
197 |
+
#: core/core.php:759
|
198 |
msgid "Stop search engines from following broken links"
|
199 |
msgstr "Não permitir aos motores de busca seguir os links offline"
|
200 |
|
201 |
#@ broken-link-checker
|
202 |
+
#: core/core.php:776
|
203 |
msgid "Look for links in"
|
204 |
msgstr "Procurar links em"
|
205 |
|
206 |
#@ broken-link-checker
|
207 |
+
#: core/core.php:787
|
208 |
msgid "Post statuses"
|
209 |
msgstr "Estado do Artigo"
|
210 |
|
211 |
#@ broken-link-checker
|
212 |
+
#: core/core.php:820
|
213 |
msgid "Link types"
|
214 |
msgstr "Tipos de link"
|
215 |
|
216 |
#@ broken-link-checker
|
217 |
+
#: core/core.php:826
|
218 |
msgid "Error : All link parsers missing!"
|
219 |
msgstr "Erro : Análises aos links não encontradas!"
|
220 |
|
221 |
#@ broken-link-checker
|
222 |
+
#: core/core.php:833
|
223 |
msgid "Exclusion list"
|
224 |
msgstr "Lista de exclusão"
|
225 |
|
226 |
#@ broken-link-checker
|
227 |
+
#: core/core.php:834
|
228 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
229 |
msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha) :"
|
230 |
|
231 |
#@ broken-link-checker
|
232 |
+
#: core/core.php:852
|
233 |
msgid "Check links using"
|
234 |
msgstr "Verificar links utilizando"
|
235 |
|
236 |
#@ broken-link-checker
|
237 |
+
#: core/core.php:871
|
238 |
#: includes/links.php:849
|
239 |
msgid "Timeout"
|
240 |
msgstr "Intervalo"
|
241 |
|
242 |
#@ broken-link-checker
|
243 |
#@ default
|
244 |
+
#: core/core.php:877
|
245 |
+
#: core/core.php:923
|
246 |
+
#: core/core.php:2732
|
247 |
#, php-format
|
248 |
msgid "%s seconds"
|
249 |
msgstr "%s segundos"
|
250 |
|
251 |
#@ broken-link-checker
|
252 |
+
#: core/core.php:886
|
253 |
msgid "Links that take longer than this to load will be marked as broken."
|
254 |
msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
|
255 |
|
256 |
#@ broken-link-checker
|
257 |
+
#: core/core.php:893
|
258 |
msgid "Link monitor"
|
259 |
msgstr "Monitor de links"
|
260 |
|
261 |
#@ broken-link-checker
|
262 |
+
#: core/core.php:901
|
263 |
msgid "Run continuously while the Dashboard is open"
|
264 |
msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
|
265 |
|
266 |
#@ broken-link-checker
|
267 |
+
#: core/core.php:909
|
268 |
msgid "Run hourly in the background"
|
269 |
msgstr "Executar a cada hora em segundo plano"
|
270 |
|
271 |
#@ broken-link-checker
|
272 |
+
#: core/core.php:917
|
273 |
msgid "Max. execution time"
|
274 |
msgstr "Tempo máximo de execução"
|
275 |
|
276 |
#@ broken-link-checker
|
277 |
+
#: core/core.php:934
|
278 |
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."
|
279 |
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."
|
280 |
|
281 |
#@ broken-link-checker
|
282 |
+
#: core/core.php:943
|
283 |
msgid "Server load limit"
|
284 |
msgstr "Limite de carregamento do servidor"
|
285 |
|
286 |
#@ broken-link-checker
|
287 |
+
#: core/core.php:958
|
288 |
#, php-format
|
289 |
msgid "Current load : %s"
|
290 |
msgstr "Carga actual : %s"
|
291 |
|
292 |
#@ broken-link-checker
|
293 |
+
#: core/core.php:964
|
294 |
#, php-format
|
295 |
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."
|
296 |
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."
|
297 |
|
298 |
#@ broken-link-checker
|
299 |
+
#: core/core.php:972
|
300 |
msgid "Not available"
|
301 |
msgstr "Não disponível"
|
302 |
|
303 |
#@ broken-link-checker
|
304 |
+
#: core/core.php:974
|
305 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
306 |
msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
|
307 |
|
308 |
#@ broken-link-checker
|
309 |
+
#: core/core.php:982
|
310 |
msgid "Forced recheck"
|
311 |
msgstr "Re-verificação forçada"
|
312 |
|
313 |
#@ broken-link-checker
|
314 |
+
#: core/core.php:985
|
315 |
msgid "Re-check all pages"
|
316 |
msgstr "Verificar de novo todas as páginas"
|
317 |
|
318 |
#@ broken-link-checker
|
319 |
+
#: core/core.php:989
|
320 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
321 |
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."
|
322 |
|
323 |
#@ default
|
324 |
+
#: core/core.php:1000
|
325 |
msgid "Save Changes"
|
326 |
msgstr "Guardar alterações"
|
327 |
|
328 |
#@ broken-link-checker
|
329 |
+
#: core/core.php:1051
|
330 |
msgid "Configure"
|
331 |
msgstr "Configurar"
|
332 |
|
333 |
#@ broken-link-checker
|
334 |
+
#: core/core.php:1133
|
335 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
336 |
msgstr "Verificar URLs nos campos personalizados (um por linha):"
|
337 |
|
338 |
#@ broken-link-checker
|
339 |
+
#: core/core.php:1270
|
340 |
+
#: core/core.php:1351
|
341 |
+
#: core/core.php:1383
|
342 |
#, php-format
|
343 |
msgid "Database error : %s"
|
344 |
msgstr "Erro na Base de dados: %s"
|
345 |
|
346 |
#@ broken-link-checker
|
347 |
+
#: core/core.php:1333
|
348 |
msgid "You must enter a filter name!"
|
349 |
msgstr "Deve introduzir um nome para o filtro!"
|
350 |
|
351 |
#@ broken-link-checker
|
352 |
+
#: core/core.php:1337
|
353 |
msgid "Invalid search query."
|
354 |
msgstr "Procura inválida."
|
355 |
|
356 |
#@ broken-link-checker
|
357 |
+
#: core/core.php:1346
|
358 |
#, php-format
|
359 |
msgid "Filter \"%s\" created"
|
360 |
msgstr "Filtro \"%s\" criado"
|
361 |
|
362 |
#@ broken-link-checker
|
363 |
+
#: core/core.php:1373
|
364 |
msgid "Filter ID not specified."
|
365 |
msgstr "ID do Filtro não especificado."
|
366 |
|
367 |
#@ broken-link-checker
|
368 |
+
#: core/core.php:1380
|
369 |
msgid "Filter deleted"
|
370 |
msgstr "Filtro eliminado"
|
371 |
|
372 |
#@ broken-link-checker
|
373 |
+
#: core/core.php:1428
|
374 |
#, php-format
|
375 |
msgid "Replaced %d redirect with a direct link"
|
376 |
msgid_plural "Replaced %d redirects with direct links"
|
378 |
msgstr[1] "Substituídos %d redirects com links diretos"
|
379 |
|
380 |
#@ broken-link-checker
|
381 |
+
#: core/core.php:1439
|
382 |
#, php-format
|
383 |
msgid "Failed to fix %d redirect"
|
384 |
msgid_plural "Failed to fix %d redirects"
|
386 |
msgstr[1] "Não foi possível reparar %d redirects"
|
387 |
|
388 |
#@ broken-link-checker
|
389 |
+
#: core/core.php:1449
|
390 |
msgid "None of the selected links are redirects!"
|
391 |
msgstr "Nenhum dos links selecionados são redirects!"
|
392 |
|
393 |
#@ broken-link-checker
|
394 |
+
#: core/core.php:1528
|
395 |
#, php-format
|
396 |
msgid "%d link updated."
|
397 |
msgid_plural "%d links updated."
|
399 |
msgstr[1] "%d links atualizados."
|
400 |
|
401 |
#@ broken-link-checker
|
402 |
+
#: core/core.php:1539
|
403 |
#, php-format
|
404 |
msgid "Failed to update %d link."
|
405 |
msgid_plural "Failed to update %d links."
|
407 |
msgstr[1] "Erro a atualizar %d links."
|
408 |
|
409 |
#@ broken-link-checker
|
410 |
+
#: core/core.php:1593
|
411 |
#, php-format
|
412 |
msgid "%d link removed"
|
413 |
msgid_plural "%d links removed"
|
415 |
msgstr[1] "%d links eliminados"
|
416 |
|
417 |
#@ broken-link-checker
|
418 |
+
#: core/core.php:1604
|
419 |
#, php-format
|
420 |
msgid "Failed to remove %d link"
|
421 |
msgid_plural "Failed to remove %d links"
|
423 |
msgstr[1] "Erro a remover %d links"
|
424 |
|
425 |
#@ default
|
426 |
+
#: core/core.php:1713
|
427 |
#, php-format
|
428 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
429 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
431 |
msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de o efetuar manualmente."
|
432 |
|
433 |
#@ broken-link-checker
|
434 |
+
#: core/core.php:1734
|
435 |
msgid "Didn't find anything to delete!"
|
436 |
msgstr "Não foi encontrado nada para apagar!"
|
437 |
|
438 |
#@ broken-link-checker
|
439 |
+
#: core/core.php:1763
|
440 |
#, php-format
|
441 |
msgid "%d link scheduled for rechecking"
|
442 |
msgid_plural "%d links scheduled for rechecking"
|
444 |
msgstr[1] "%d links agendados para verificação"
|
445 |
|
446 |
#@ broken-link-checker
|
447 |
+
#: core/core.php:1808
|
448 |
+
#: core/core.php:2412
|
449 |
msgid "This link was manually marked as working by the user."
|
450 |
msgstr "Este link foi assinalado manualmente como válido pelo utilizador."
|
451 |
|
452 |
#@ broken-link-checker
|
453 |
+
#: core/core.php:1815
|
454 |
#, php-format
|
455 |
msgid "Couldn't modify link %d"
|
456 |
msgstr "Impossível modificar o link %d"
|
457 |
|
458 |
#@ broken-link-checker
|
459 |
+
#: core/core.php:1826
|
460 |
#, php-format
|
461 |
msgid "%d link marked as not broken"
|
462 |
msgid_plural "%d links marked as not broken"
|
464 |
msgstr[1] "%d links marcados como funcionais"
|
465 |
|
466 |
#@ broken-link-checker
|
467 |
+
#: core/core.php:1865
|
468 |
msgid "Table columns"
|
469 |
msgstr "Colunas da Tabela"
|
470 |
|
471 |
#@ default
|
472 |
+
#: core/core.php:1884
|
473 |
msgid "Show on screen"
|
474 |
msgstr "Mostrar no ecrán"
|
475 |
|
476 |
#@ broken-link-checker
|
477 |
+
#: core/core.php:1891
|
478 |
msgid "links"
|
479 |
msgstr "links"
|
480 |
|
481 |
#@ default
|
482 |
#@ broken-link-checker
|
483 |
+
#: core/core.php:1892
|
484 |
#: includes/admin/table-printer.php:163
|
485 |
msgid "Apply"
|
486 |
msgstr "Aplicar"
|
487 |
|
488 |
#@ broken-link-checker
|
489 |
+
#: core/core.php:1896
|
490 |
msgid "Misc"
|
491 |
msgstr "Vários"
|
492 |
|
493 |
#@ broken-link-checker
|
494 |
+
#: core/core.php:1911
|
495 |
#, php-format
|
496 |
msgid "Highlight links broken for at least %s days"
|
497 |
msgstr "Realçar links offline pelo menos durante %s dias"
|
498 |
|
499 |
#@ broken-link-checker
|
500 |
+
#: core/core.php:1920
|
501 |
msgid "Color-code status codes"
|
502 |
msgstr "Cor-código status códigos"
|
503 |
|
504 |
#@ broken-link-checker
|
505 |
+
#: core/core.php:1937
|
506 |
+
#: core/core.php:2397
|
507 |
+
#: core/core.php:2433
|
508 |
+
#: core/core.php:2496
|
509 |
msgid "You're not allowed to do that!"
|
510 |
msgstr "Não permitido!"
|
511 |
|
512 |
#@ broken-link-checker
|
513 |
+
#: core/core.php:2278
|
514 |
msgid "View broken links"
|
515 |
msgstr "Ver links offline"
|
516 |
|
517 |
#@ broken-link-checker
|
518 |
+
#: core/core.php:2279
|
519 |
#, php-format
|
520 |
msgid "Found %d broken link"
|
521 |
msgid_plural "Found %d broken links"
|
523 |
msgstr[1] "Encontrados %d Links offline"
|
524 |
|
525 |
#@ broken-link-checker
|
526 |
+
#: core/core.php:2285
|
527 |
msgid "No broken links found."
|
528 |
msgstr "Não existem links offline."
|
529 |
|
530 |
#@ broken-link-checker
|
531 |
+
#: core/core.php:2292
|
532 |
#, php-format
|
533 |
msgid "%d URL in the work queue"
|
534 |
msgid_plural "%d URLs in the work queue"
|
536 |
msgstr[1] "%d URLs em espera"
|
537 |
|
538 |
#@ broken-link-checker
|
539 |
+
#: core/core.php:2295
|
540 |
msgid "No URLs in the work queue."
|
541 |
msgstr "Não existem URL em espera para verificação."
|
542 |
|
543 |
#@ broken-link-checker
|
544 |
+
#: core/core.php:2301
|
545 |
#, php-format
|
546 |
msgid "Detected %d unique URL"
|
547 |
msgid_plural "Detected %d unique URLs"
|
549 |
msgstr[1] "Encontradas %d URL únicas"
|
550 |
|
551 |
#@ broken-link-checker
|
552 |
+
#: core/core.php:2302
|
553 |
#, php-format
|
554 |
msgid "in %d link"
|
555 |
msgid_plural "in %d links"
|
557 |
msgstr[1] "em %d links"
|
558 |
|
559 |
#@ broken-link-checker
|
560 |
+
#: core/core.php:2307
|
561 |
msgid "and still searching..."
|
562 |
msgstr "e procurando..."
|
563 |
|
564 |
#@ broken-link-checker
|
565 |
+
#: core/core.php:2313
|
566 |
msgid "Searching your blog for links..."
|
567 |
msgstr "Procurando links..."
|
568 |
|
569 |
#@ broken-link-checker
|
570 |
+
#: core/core.php:2315
|
571 |
msgid "No links detected."
|
572 |
msgstr "Nenhuns links encontrados."
|
573 |
|
574 |
#@ broken-link-checker
|
575 |
+
#: core/core.php:2405
|
576 |
+
#: core/core.php:2443
|
577 |
+
#: core/core.php:2506
|
578 |
#, php-format
|
579 |
msgid "Oops, I can't find the link %d"
|
580 |
msgstr "Oops, não é possível encontrar o link %d"
|
581 |
|
582 |
#@ broken-link-checker
|
583 |
+
#: core/core.php:2418
|
584 |
msgid "Oops, couldn't modify the link!"
|
585 |
msgstr "Oops, não é possível modificar o link!"
|
586 |
|
587 |
#@ broken-link-checker
|
588 |
+
#: core/core.php:2421
|
589 |
+
#: core/core.php:2532
|
590 |
msgid "Error : link_id not specified"
|
591 |
msgstr "Erro : link_id não especificado"
|
592 |
|
593 |
#@ broken-link-checker
|
594 |
+
#: core/core.php:2453
|
595 |
msgid "Oops, the new URL is invalid!"
|
596 |
msgstr "Oops, a nova URL não é válida!"
|
597 |
|
598 |
#@ broken-link-checker
|
599 |
+
#: core/core.php:2464
|
600 |
+
#: core/core.php:2515
|
601 |
msgid "An unexpected error occured!"
|
602 |
msgstr "Ocorreu um erro inesperado!"
|
603 |
|
604 |
#@ broken-link-checker
|
605 |
+
#: core/core.php:2482
|
606 |
msgid "Error : link_id or new_url not specified"
|
607 |
msgstr "Erro : link_id ou new_url não especificado"
|
608 |
|
609 |
#@ broken-link-checker
|
610 |
+
#: core/core.php:2541
|
611 |
msgid "You don't have sufficient privileges to access this information!"
|
612 |
msgstr "Não tem previlégios suficientes para aceder a esta informação!"
|
613 |
|
614 |
#@ broken-link-checker
|
615 |
+
#: core/core.php:2554
|
616 |
msgid "Error : link ID not specified"
|
617 |
msgstr "Erro : link ID não especificado"
|
618 |
|
619 |
#@ broken-link-checker
|
620 |
+
#: core/core.php:2568
|
621 |
#, php-format
|
622 |
msgid "Failed to load link details (%s)"
|
623 |
msgstr "Erro a carregar os detalhes do link (%s)"
|
624 |
|
625 |
#@ broken-link-checker
|
626 |
+
#: core/core.php:2621
|
627 |
msgid "Broken Link Checker"
|
628 |
msgstr "Links offline"
|
629 |
|
630 |
#@ broken-link-checker
|
631 |
+
#: core/core.php:2641
|
632 |
msgid "PHP version"
|
633 |
msgstr "Versão PHP"
|
634 |
|
635 |
#@ broken-link-checker
|
636 |
+
#: core/core.php:2647
|
637 |
msgid "MySQL version"
|
638 |
msgstr "Versão MySQL"
|
639 |
|
640 |
#@ broken-link-checker
|
641 |
+
#: core/core.php:2660
|
642 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
643 |
msgstr "Versão de CURL obsoleta. A deteção de redirects pode não funcionar corretamente."
|
644 |
|
645 |
#@ broken-link-checker
|
646 |
+
#: core/core.php:2672
|
647 |
+
#: core/core.php:2688
|
648 |
+
#: core/core.php:2693
|
649 |
msgid "Not installed"
|
650 |
msgstr "Não instalado"
|
651 |
|
652 |
#@ broken-link-checker
|
653 |
+
#: core/core.php:2675
|
654 |
msgid "CURL version"
|
655 |
msgstr "Versão CURL"
|
656 |
|
657 |
#@ broken-link-checker
|
658 |
+
#: core/core.php:2681
|
659 |
msgid "Installed"
|
660 |
msgstr "Instalado"
|
661 |
|
662 |
#@ broken-link-checker
|
663 |
+
#: core/core.php:2694
|
664 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
665 |
msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
|
666 |
|
667 |
#@ broken-link-checker
|
668 |
+
#: core/core.php:2705
|
669 |
msgid "On"
|
670 |
msgstr "Ativado"
|
671 |
|
672 |
#@ broken-link-checker
|
673 |
+
#: core/core.php:2706
|
674 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
675 |
msgstr "Os redirects podem ser detectados como links offline quando o safe_mode está habilitado."
|
676 |
|
677 |
#@ broken-link-checker
|
678 |
+
#: core/core.php:2711
|
679 |
+
#: core/core.php:2725
|
680 |
msgid "Off"
|
681 |
msgstr "Desativado"
|
682 |
|
683 |
#@ broken-link-checker
|
684 |
+
#: core/core.php:2719
|
685 |
#, php-format
|
686 |
msgid "On ( %s )"
|
687 |
msgstr "Ativado ( %s )"
|
688 |
|
689 |
#@ broken-link-checker
|
690 |
+
#: core/core.php:2720
|
691 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
692 |
msgstr "Os redirects podem ser considerados links offline quando o open_basedir está ativo."
|
693 |
|
694 |
#@ broken-link-checker
|
695 |
+
#: core/core.php:2749
|
696 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
697 |
msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
|
698 |
|
699 |
#@ broken-link-checker
|
700 |
+
#: core/core.php:2840
|
701 |
+
#: core/core.php:2938
|
702 |
#, php-format
|
703 |
msgid "[%s] Broken links detected"
|
704 |
msgstr "[%s] Links offline encontrados"
|
705 |
|
706 |
#@ broken-link-checker
|
707 |
+
#: core/core.php:2846
|
708 |
#, php-format
|
709 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
710 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
712 |
msgstr[1] "Links offline detetou %d novos links sem ligação."
|
713 |
|
714 |
#@ broken-link-checker
|
715 |
+
#: core/core.php:2869
|
716 |
#, php-format
|
717 |
msgid "Here's a list of the first %d broken links:"
|
718 |
msgid_plural "Here's a list of the first %d broken links:"
|
720 |
msgstr[1] "Lista dos primeiros %d links sem ligação:"
|
721 |
|
722 |
#@ broken-link-checker
|
723 |
+
#: core/core.php:2877
|
724 |
msgid "Here's a list of the new broken links: "
|
725 |
msgstr "Novos links offline:"
|
726 |
|
727 |
#@ broken-link-checker
|
728 |
+
#: core/core.php:2886
|
729 |
#, php-format
|
730 |
msgid "Link text : %s"
|
731 |
msgstr "Texto do Link : %s"
|
732 |
|
733 |
#@ broken-link-checker
|
734 |
+
#: core/core.php:2887
|
735 |
#, php-format
|
736 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
737 |
msgstr "Link URL : <a href=\"%s\">%s</a>"
|
738 |
|
739 |
#@ broken-link-checker
|
740 |
+
#: core/core.php:2888
|
741 |
#, php-format
|
742 |
msgid "Source : %s"
|
743 |
msgstr "Fonte : %s"
|
744 |
|
745 |
#@ broken-link-checker
|
746 |
+
#: core/core.php:2901
|
747 |
msgid "You can see all broken links here:"
|
748 |
msgstr "Links offline:"
|
749 |
|
1044 |
#@ link status
|
1045 |
#@ broken-link-checker
|
1046 |
#: includes/links.php:845
|
1047 |
+
#: modules/checkers/http.php:264
|
1048 |
+
#: modules/extras/mediafire.php:101
|
1049 |
msgid "Unknown Error"
|
1050 |
msgstr "Erro Desconhecido"
|
1051 |
|
1251 |
msgstr "Cancelar"
|
1252 |
|
1253 |
#@ broken-link-checker
|
1254 |
+
#: includes/admin/sidebar.php:40
|
1255 |
msgid "Donate $10, $20 or $50!"
|
1256 |
msgstr "Doar $10, $20 ou $50!"
|
1257 |
|
1258 |
#@ broken-link-checker
|
1259 |
+
#: includes/admin/sidebar.php:43
|
1260 |
msgid "If you like this plugin, please donate to support development and maintenance!"
|
1261 |
msgstr "Se gosta deste plugin, por favor faça um donativo para financiar o seu desenvolvimento e manutenção!"
|
1262 |
|
1263 |
#@ broken-link-checker
|
1264 |
+
#: includes/admin/sidebar.php:60
|
1265 |
msgid "Return to WordPress Dashboard"
|
1266 |
msgstr "Regressar ao Painel"
|
1267 |
|
1268 |
#@ broken-link-checker
|
1269 |
#: core/core.php:330
|
1270 |
+
#: includes/admin/sidebar.php:18
|
1271 |
msgid "More plugins by Janis Elsts"
|
1272 |
msgstr "Mais plugins de Janis Elsts"
|
1273 |
|
1474 |
msgstr "[Um link orfão! Bug.]"
|
1475 |
|
1476 |
#@ broken-link-checker
|
1477 |
+
#: modules/checkers/http.php:243
|
1478 |
msgid "Server Not Found"
|
1479 |
msgstr "Servidor Não Encontrado"
|
1480 |
|
1481 |
#@ broken-link-checker
|
1482 |
+
#: modules/checkers/http.php:258
|
1483 |
msgid "Connection Failed"
|
1484 |
msgstr "Sem Ligação"
|
1485 |
|
1486 |
#@ broken-link-checker
|
1487 |
+
#: modules/checkers/http.php:293
|
1488 |
+
#: modules/checkers/http.php:363
|
1489 |
#, php-format
|
1490 |
msgid "HTTP code : %d"
|
1491 |
msgstr "Código HTTP : %d"
|
1492 |
|
1493 |
#@ broken-link-checker
|
1494 |
+
#: modules/checkers/http.php:295
|
1495 |
+
#: modules/checkers/http.php:365
|
1496 |
msgid "(No response)"
|
1497 |
msgstr "(Sem resposta)"
|
1498 |
|
1499 |
#@ broken-link-checker
|
1500 |
+
#: modules/checkers/http.php:301
|
1501 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
1502 |
msgstr "Provável que o tempo da ligação se tenha esgotado ou que o domínio não exista."
|
1503 |
|
1504 |
#@ broken-link-checker
|
1505 |
+
#: modules/checkers/http.php:372
|
1506 |
msgid "Request timed out."
|
1507 |
msgstr "Tempo de espera esgotado."
|
1508 |
|
1509 |
#@ broken-link-checker
|
1510 |
+
#: modules/checkers/http.php:390
|
1511 |
msgid "Using Snoopy"
|
1512 |
msgstr "Utilizando Snoopy"
|
1513 |
|
1642 |
msgstr "Vídeo DailyMotion embutido"
|
1643 |
|
1644 |
#@ broken-link-checker
|
1645 |
+
#: modules/extras/embed-parser-base.php:196
|
1646 |
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
1647 |
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."
|
1648 |
|
1649 |
#@ broken-link-checker
|
1650 |
+
#: modules/extras/fileserve.php:112
|
1651 |
#: modules/extras/mediafire.php:91
|
1652 |
+
#: modules/extras/mediafire.php:96
|
1653 |
+
#: modules/extras/megaupload.php:81
|
1654 |
+
#: modules/extras/megaupload.php:123
|
1655 |
+
#: modules/extras/rapidshare.php:139
|
1656 |
msgid "Not Found"
|
1657 |
msgstr "Não Encontrado"
|
1658 |
|
1659 |
#@ broken-link-checker
|
1660 |
+
#: modules/extras/megaupload.php:130
|
1661 |
msgid "File Temporarily Unavailable"
|
1662 |
msgstr "Ficheiro Temporariamente Indisponível"
|
1663 |
|
1664 |
#@ broken-link-checker
|
1665 |
+
#: modules/extras/megaupload.php:136
|
1666 |
msgid "API Error"
|
1667 |
msgstr "Erro API"
|
1668 |
|
1669 |
#@ broken-link-checker
|
1670 |
+
#: modules/extras/rapidshare.php:158
|
1671 |
msgid "RS Server Down"
|
1672 |
msgstr "Servidor RS Desligado"
|
1673 |
|
1674 |
#@ broken-link-checker
|
1675 |
+
#: modules/extras/rapidshare.php:165
|
1676 |
msgid "File Blocked"
|
1677 |
msgstr "Ficheiro Bloqueado"
|
1678 |
|
1679 |
#@ broken-link-checker
|
1680 |
+
#: modules/extras/rapidshare.php:172
|
1681 |
msgid "File Locked"
|
1682 |
msgstr "Ficheiro Bloqueado"
|
1683 |
|
1684 |
#@ broken-link-checker
|
1685 |
+
#: modules/extras/rapidshare.php:183
|
1686 |
#, php-format
|
1687 |
msgid "RapidShare : %s"
|
1688 |
msgstr "Rapidshare : %s"
|
1689 |
|
1690 |
#@ broken-link-checker
|
1691 |
+
#: modules/extras/rapidshare.php:189
|
1692 |
#, php-format
|
1693 |
msgid "RapidShare API error: %s"
|
1694 |
msgstr "Rapidshare erro API: %s"
|
1768 |
msgstr "Enviar aos autores notificações por e-mail sobre links offline encontrados nos seus artigos"
|
1769 |
|
1770 |
#@ broken-link-checker
|
1771 |
+
#: core/core.php:2341
|
1772 |
msgctxt "current load"
|
1773 |
msgid "Unknown"
|
1774 |
msgstr "Desconhecido"
|
1775 |
|
1776 |
#@ broken-link-checker
|
1777 |
+
#: core/core.php:2944
|
1778 |
#, php-format
|
1779 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
1780 |
msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
|
1818 |
msgstr "Vídeos DailyMotion embutido"
|
1819 |
|
1820 |
#@ broken-link-checker
|
1821 |
+
#: includes/extra-strings.php:9
|
1822 |
msgctxt "module name"
|
1823 |
msgid "Embedded Vimeo videos"
|
1824 |
msgstr "Vídeo Vimeo embutido"
|
1825 |
|
1826 |
#@ broken-link-checker
|
1827 |
+
#: includes/extra-strings.php:10
|
1828 |
msgctxt "module name"
|
1829 |
msgid "Embedded YouTube videos"
|
1830 |
msgstr "Vídeos YouTube embutido"
|
1831 |
|
1832 |
#@ broken-link-checker
|
1833 |
+
#: includes/extra-strings.php:11
|
1834 |
msgctxt "module name"
|
1835 |
msgid "Embedded YouTube videos (old embed code)"
|
1836 |
msgstr "Vídeos YouTube embutido (código antigo)"
|
1837 |
|
1838 |
#@ broken-link-checker
|
1839 |
+
#: includes/extra-strings.php:13
|
1840 |
msgctxt "module name"
|
1841 |
msgid "HTML images"
|
1842 |
msgstr "Imagens HTML"
|
1843 |
|
1844 |
#@ broken-link-checker
|
1845 |
+
#: includes/extra-strings.php:14
|
1846 |
msgctxt "module name"
|
1847 |
msgid "HTML links"
|
1848 |
msgstr "HTML links"
|
1849 |
|
1850 |
#@ broken-link-checker
|
1851 |
+
#: includes/extra-strings.php:15
|
1852 |
msgctxt "module name"
|
1853 |
msgid "MediaFire API"
|
1854 |
msgstr "MediaFire API"
|
1855 |
|
1856 |
#@ broken-link-checker
|
1857 |
+
#: includes/extra-strings.php:16
|
1858 |
msgctxt "module name"
|
1859 |
msgid "MegaUpload API"
|
1860 |
msgstr "MegaUpload API"
|
1861 |
|
1862 |
#@ broken-link-checker
|
1863 |
+
#: includes/extra-strings.php:17
|
1864 |
msgctxt "module name"
|
1865 |
msgid "Plaintext URLs"
|
1866 |
msgstr "Texto URLs"
|
1867 |
|
1868 |
#@ broken-link-checker
|
1869 |
+
#: includes/extra-strings.php:18
|
1870 |
msgctxt "module name"
|
1871 |
msgid "RapidShare API"
|
1872 |
msgstr "RapidShare API"
|
1873 |
|
1874 |
#@ broken-link-checker
|
1875 |
+
#: includes/extra-strings.php:19
|
1876 |
msgctxt "module name"
|
1877 |
msgid "YouTube API"
|
1878 |
msgstr "YouTube API"
|
1879 |
|
1880 |
#@ broken-link-checker
|
1881 |
+
#: includes/extra-strings.php:20
|
1882 |
msgctxt "module name"
|
1883 |
msgid "Posts"
|
1884 |
msgstr "Artigos"
|
1885 |
|
1886 |
#@ broken-link-checker
|
1887 |
+
#: includes/extra-strings.php:21
|
1888 |
msgctxt "module name"
|
1889 |
msgid "Pages"
|
1890 |
msgstr "Páginas"
|
1897 |
|
1898 |
#@ broken-link-checker
|
1899 |
#: includes/links.php:875
|
1900 |
+
#: modules/extras/fileserve.php:121
|
1901 |
+
#: modules/extras/megaupload.php:115
|
1902 |
+
#: modules/extras/rapidshare.php:145
|
1903 |
+
#: modules/extras/rapidshare.php:151
|
1904 |
+
#: modules/extras/rapidshare.php:178
|
1905 |
msgctxt "link status"
|
1906 |
msgid "OK"
|
1907 |
msgstr "OK"
|
2010 |
msgid "Trash"
|
2011 |
msgstr "Lixo"
|
2012 |
|
2013 |
+
#@ broken-link-checker
|
2014 |
+
#: core/core.php:715
|
2015 |
+
#, php-format
|
2016 |
+
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
2017 |
+
msgstr "Examplo : Lorem ipsum <a %s>link offline</a>, dolor sit amet."
|
2018 |
+
|
2019 |
+
#@ broken-link-checker
|
2020 |
+
#: core/core.php:718
|
2021 |
+
#: core/core.php:749
|
2022 |
+
msgid "Click \"Save Changes\" to update example output."
|
2023 |
+
msgstr "Clicar \"Guardar Alterações\" para atualizar a visualização do exemplo."
|
2024 |
+
|
2025 |
+
#@ broken-link-checker
|
2026 |
+
#: core/core.php:746
|
2027 |
+
#, php-format
|
2028 |
+
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
2029 |
+
msgstr "Examplo : Lorem ipsum <span %s> link removido</span>, dolor sit amet."
|
2030 |
+
|
2031 |
+
#@ broken-link-checker
|
2032 |
+
#: includes/extra-strings.php:7
|
2033 |
+
msgctxt "module name"
|
2034 |
+
msgid "Embedded GoogleVideo videos"
|
2035 |
+
msgstr "Vídeos GoogleVideos embutido"
|
2036 |
+
|
2037 |
+
#@ broken-link-checker
|
2038 |
+
#: includes/extra-strings.php:8
|
2039 |
+
msgctxt "module name"
|
2040 |
+
msgid "Embedded Megavideo videos"
|
2041 |
+
msgstr "Vídeos Megavideo embutido"
|
2042 |
+
|
2043 |
+
#@ broken-link-checker
|
2044 |
+
#: includes/extra-strings.php:12
|
2045 |
+
msgctxt "module name"
|
2046 |
+
msgid "FileServe API"
|
2047 |
+
msgstr "FileServe API"
|
2048 |
+
|
2049 |
+
#@ broken-link-checker
|
2050 |
+
#: modules/extras/fileserve.php:55
|
2051 |
+
msgid "Using FileServe API"
|
2052 |
+
msgstr "Utilizar FileServe API"
|
2053 |
+
|
2054 |
+
#@ broken-link-checker
|
2055 |
+
#: modules/extras/fileserve.php:115
|
2056 |
+
#, php-format
|
2057 |
+
msgid "FileServe : %d %s"
|
2058 |
+
msgstr "FileServe : %d %s"
|
2059 |
+
|
2060 |
+
#@ broken-link-checker
|
2061 |
+
#: modules/extras/googlevideo-embed.php:24
|
2062 |
+
msgid "GoogleVideo Video"
|
2063 |
+
msgstr "Video GoogleVideo"
|
2064 |
+
|
2065 |
+
#@ broken-link-checker
|
2066 |
+
#: modules/extras/googlevideo-embed.php:25
|
2067 |
+
msgid "Embedded GoogleVideo video"
|
2068 |
+
msgstr "Video GoogleVideo embutido"
|
2069 |
+
|
2070 |
+
#@ broken-link-checker
|
2071 |
+
#: modules/extras/megavideo-embed.php:24
|
2072 |
+
msgid "Megavideo Video"
|
2073 |
+
msgstr "Video Megavideo"
|
2074 |
+
|
2075 |
+
#@ broken-link-checker
|
2076 |
+
#: modules/extras/megavideo-embed.php:25
|
2077 |
+
msgid "Embedded Megavideo video"
|
2078 |
+
msgstr "Video Megavideo embutido"
|
2079 |
+
|
2080 |
+
#@ broken-link-checker
|
2081 |
+
#: modules/extras/rapidshare.php:51
|
2082 |
+
msgid "Using RapidShare API"
|
2083 |
+
msgstr "Utilizar RapidShare API"
|
2084 |
+
|
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.4-
|
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 |
|
@@ -90,6 +90,12 @@ To upgrade your installation
|
|
90 |
|
91 |
== Changelog ==
|
92 |
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
= 1.5 =
|
94 |
* Added a FileServe checker.
|
95 |
* Added Turkish translation.
|
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-beta4
|
7 |
+
Stable tag: 1.5.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 |
|
90 |
|
91 |
== Changelog ==
|
92 |
|
93 |
+
= 1.5.1 =
|
94 |
+
* Updated Portuguese translation.
|
95 |
+
* Updated German translation.
|
96 |
+
* Fixed the donation link to properly return to the Dashboard upon completion.
|
97 |
+
* Do not display ads to users who have donated.
|
98 |
+
|
99 |
= 1.5 =
|
100 |
* Added a FileServe checker.
|
101 |
* Added Turkish translation.
|