Version Description
- Fixed missing YouTube videos not being detected when the video URL starts with https instead of http.
- Enabled the YouTube video checker by default on new installations.
- Made the "dismiss link" option more permanent. Instead of restoring a dismissed link if the redirect URL changes even a little bit, the plugin will now ignore query string changes. This should fix many of the reports about dismissed links reappearing for no apparent reason.
- Updated Portuguese, German and Dutch translations.
- Other minor fixes.
Download this release
Release Info
Developer | whiteshadow |
Plugin | Broken Link Checker |
Version | 1.9.5 |
Comparing to | |
See all releases |
Code changes from version 1.9.4.2 to 1.9.5
- broken-link-checker.php +1 -1
- core/core.php +1 -1
- images/embedplus_banner.jpg +0 -0
- includes/admin/sidebar.php +1 -1
- includes/links.php +17 -0
- includes/modules.php +2 -0
- languages/broken-link-checker-de_DE.mo +0 -0
- languages/broken-link-checker-de_DE.po +258 -300
- languages/broken-link-checker-nl_NL.mo +0 -0
- languages/broken-link-checker-nl_NL.po +4 -4
- languages/broken-link-checker-pt_PT.mo +0 -0
- languages/broken-link-checker-pt_PT.po +280 -329
- modules/checkers/http.php +2 -2
- modules/extras/youtube.php +1 -1
- readme.txt +9 -2
broken-link-checker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Broken Link Checker
|
4 |
Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
|
5 |
Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
|
6 |
-
Version: 1.9.
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/
|
9 |
Text Domain: broken-link-checker
|
3 |
Plugin Name: Broken Link Checker
|
4 |
Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
|
5 |
Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
|
6 |
+
Version: 1.9.5
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/
|
9 |
Text Domain: broken-link-checker
|
core/core.php
CHANGED
@@ -2371,7 +2371,7 @@ class wsBrokenLinkChecker {
|
|
2371 |
|
2372 |
foreach ($links as $link) {
|
2373 |
//Does this link need to be checked? Excluded links aren't checked, but their URLs are still
|
2374 |
-
//tested periodically to see if they're still on the
|
2375 |
if ( !$this->is_excluded( $link->url ) ) {
|
2376 |
//Check the link.
|
2377 |
//FB::log($link->url, "Checking link {$link->link_id}");
|
2371 |
|
2372 |
foreach ($links as $link) {
|
2373 |
//Does this link need to be checked? Excluded links aren't checked, but their URLs are still
|
2374 |
+
//tested periodically to see if they're still on the exclusion list.
|
2375 |
if ( !$this->is_excluded( $link->url ) ) {
|
2376 |
//Check the link.
|
2377 |
//FB::log($link->url, "Checking link {$link->link_id}");
|
images/embedplus_banner.jpg
CHANGED
Binary file
|
includes/admin/sidebar.php
CHANGED
@@ -97,7 +97,7 @@ if ( !$configuration->get('user_has_donated') ):
|
|
97 |
?>
|
98 |
<div id="embedplus-ad" class="postbox">
|
99 |
<div class="inside" style="text-align: left">
|
100 |
-
<a href="http://
|
101 |
<img src="<?php echo plugins_url('images/embedplus_banner.jpg', BLC_PLUGIN_FILE) ?>" width="255" height="255" alt="YouTube EmbedPlus">
|
102 |
</a>
|
103 |
|
97 |
?>
|
98 |
<div id="embedplus-ad" class="postbox">
|
99 |
<div class="inside" style="text-align: left">
|
100 |
+
<a href="http://bit.ly/wordpress-youtube-plugin" title="YouTube EmbedPlus">
|
101 |
<img src="<?php echo plugins_url('images/embedplus_banner.jpg', BLC_PLUGIN_FILE) ?>" width="255" height="255" alt="YouTube EmbedPlus">
|
102 |
</a>
|
103 |
|
includes/links.php
CHANGED
@@ -319,6 +319,13 @@ class blcLink {
|
|
319 |
private function status_changed($broken, $new_result_hash = ''){
|
320 |
//If a link's status changes, un-dismiss it.
|
321 |
if ( $this->result_hash != $new_result_hash ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
$this->dismissed = false;
|
323 |
}
|
324 |
|
@@ -908,6 +915,16 @@ class blcLink {
|
|
908 |
function get_ascii_url(){
|
909 |
return blcUtility::idn_to_ascii($this->url);
|
910 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
911 |
}
|
912 |
|
913 |
} //class_exists
|
319 |
private function status_changed($broken, $new_result_hash = ''){
|
320 |
//If a link's status changes, un-dismiss it.
|
321 |
if ( $this->result_hash != $new_result_hash ) {
|
322 |
+
if ( $this->dismissed ) {
|
323 |
+
$this->log .= sprintf(
|
324 |
+
"Restoring a dismissed link. \nOld status: \n%s\nNew status: \n%s\n",
|
325 |
+
$this->result_hash,
|
326 |
+
$new_result_hash
|
327 |
+
);
|
328 |
+
}
|
329 |
$this->dismissed = false;
|
330 |
}
|
331 |
|
915 |
function get_ascii_url(){
|
916 |
return blcUtility::idn_to_ascii($this->url);
|
917 |
}
|
918 |
+
|
919 |
+
/**
|
920 |
+
* Remove the query string from an URL.
|
921 |
+
*
|
922 |
+
* @param string $url
|
923 |
+
* @return string
|
924 |
+
*/
|
925 |
+
public static function remove_query_string($url) {
|
926 |
+
return preg_replace('@\?[^#]*?(#|$)@', '$1', $url);
|
927 |
+
}
|
928 |
}
|
929 |
|
930 |
} //class_exists
|
includes/modules.php
CHANGED
@@ -22,6 +22,8 @@ $blc_module_manager = blcModuleManager::getInstance(array(
|
|
22 |
'custom_field', //Post metadata container (aka custom fields)
|
23 |
'post', //Post content container
|
24 |
'page', //Page content container
|
|
|
|
|
25 |
'dummy', //Dummy container used as a fallback
|
26 |
));
|
27 |
|
22 |
'custom_field', //Post metadata container (aka custom fields)
|
23 |
'post', //Post content container
|
24 |
'page', //Page content container
|
25 |
+
'youtube-checker', //Video checker using the YouTube API
|
26 |
+
'youtube-iframe', //Embedded YouTube video container
|
27 |
'dummy', //Dummy container used as a fallback
|
28 |
));
|
29 |
|
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.9.
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_CH\n"
|
@@ -16,7 +16,7 @@ msgstr ""
|
|
16 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Textdomain-Support: yes\n"
|
18 |
"X-Poedit-Basepath: .\n"
|
19 |
-
"X-Generator: Poedit 1.6.
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
# @ broken-link-checker
|
@@ -69,76 +69,76 @@ msgid "Settings"
|
|
69 |
msgstr "Einstellungen"
|
70 |
|
71 |
# @ broken-link-checker
|
72 |
-
#: core/core.php:
|
73 |
msgid "Settings saved."
|
74 |
msgstr "Einstellungen gespeichert."
|
75 |
|
76 |
-
#: core/core.php:
|
77 |
msgid "Thank you for your donation!"
|
78 |
msgstr "Besten Dank für Ihre Spende!"
|
79 |
|
80 |
# @ broken-link-checker
|
81 |
-
#: core/core.php:
|
82 |
msgid "Complete site recheck started."
|
83 |
msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
|
84 |
|
85 |
# @ broken-link-checker
|
86 |
-
#: core/core.php:
|
87 |
msgid "Details"
|
88 |
msgstr "Details"
|
89 |
|
90 |
# @ broken-link-checker
|
91 |
-
#: core/core.php:
|
92 |
msgid "General"
|
93 |
msgstr "Allgemein"
|
94 |
|
95 |
# @ broken-link-checker
|
96 |
-
#: core/core.php:
|
97 |
msgid "Look For Links In"
|
98 |
msgstr "Suchen Sie nach Links in"
|
99 |
|
100 |
# @ broken-link-checker
|
101 |
-
#: core/core.php:
|
102 |
msgid "Which Links To Check"
|
103 |
msgstr "Welche Links überprüfen"
|
104 |
|
105 |
# @ broken-link-checker
|
106 |
-
#: core/core.php:
|
107 |
msgid "Protocols & APIs"
|
108 |
msgstr "Protokoll & Schnittstellen"
|
109 |
|
110 |
# @ broken-link-checker
|
111 |
-
#: core/core.php:
|
112 |
msgid "Advanced"
|
113 |
msgstr "Erweitert"
|
114 |
|
115 |
# @ broken-link-checker
|
116 |
-
#: core/core.php:
|
117 |
msgid "Broken Link Checker Options"
|
118 |
msgstr "Broken Link Checker Optionen"
|
119 |
|
120 |
# @ broken-link-checker
|
121 |
-
#: core/core.php:
|
122 |
msgid "Status"
|
123 |
msgstr "Status"
|
124 |
|
125 |
# @ broken-link-checker
|
126 |
-
#: core/core.php:
|
127 |
msgid "Show debug info"
|
128 |
msgstr "Debug Infos anzeigen"
|
129 |
|
130 |
# @ broken-link-checker
|
131 |
-
#: core/core.php:
|
132 |
msgid "Check each link"
|
133 |
msgstr "Überprüfe jeden Link"
|
134 |
|
135 |
# @ broken-link-checker
|
136 |
-
#: core/core.php:
|
137 |
msgid "Every %s hours"
|
138 |
msgstr "Alle %s Stunden"
|
139 |
|
140 |
# @ broken-link-checker
|
141 |
-
#: core/core.php:
|
142 |
msgid ""
|
143 |
"Existing links will be checked this often. New links will usually be checked "
|
144 |
"ASAP."
|
@@ -147,29 +147,29 @@ msgstr ""
|
|
147 |
"Links werden sofort geprüft."
|
148 |
|
149 |
# @ broken-link-checker
|
150 |
-
#: core/core.php:
|
151 |
msgid "E-mail notifications"
|
152 |
msgstr "E-Mail Benachrichtigungen"
|
153 |
|
154 |
# @ broken-link-checker
|
155 |
-
#: core/core.php:
|
156 |
msgid "Send me e-mail notifications about newly detected broken links"
|
157 |
msgstr ""
|
158 |
"Dem Administrator eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte "
|
159 |
"Links erkannt werden"
|
160 |
|
161 |
# @ broken-link-checker
|
162 |
-
#: core/core.php:
|
163 |
msgid "Send authors e-mail notifications about broken links in their posts"
|
164 |
msgstr ""
|
165 |
"Den Autoren eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte Links "
|
166 |
"erkannt werden"
|
167 |
|
168 |
-
#: core/core.php:
|
169 |
msgid "Notification e-mail address"
|
170 |
msgstr "Benachrichtigungs-E-Mail-Adresse"
|
171 |
|
172 |
-
#: core/core.php:
|
173 |
msgid ""
|
174 |
"Leave empty to use the e-mail address specified in Settings → General."
|
175 |
msgstr ""
|
@@ -177,148 +177,148 @@ msgstr ""
|
|
177 |
"verwenden."
|
178 |
|
179 |
# @ broken-link-checker
|
180 |
-
#: core/core.php:
|
181 |
msgid "Link tweaks"
|
182 |
msgstr "Link Einstellungen"
|
183 |
|
184 |
# @ broken-link-checker
|
185 |
-
#: core/core.php:
|
186 |
msgid "Apply custom formatting to broken links"
|
187 |
msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
|
188 |
|
189 |
# @ broken-link-checker
|
190 |
-
#: core/core.php:
|
191 |
msgid "Edit CSS"
|
192 |
msgstr "Bearbeite CSS"
|
193 |
|
194 |
-
#: core/core.php:
|
195 |
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
196 |
msgstr "Beispiel: Lorem ipsum <a %s>fehlerhafter Link</a>, dolor sit amet."
|
197 |
|
198 |
-
#: core/core.php:
|
199 |
msgid "Click \"Save Changes\" to update example output."
|
200 |
msgstr "Drücken Sie \"Änderung übernehmen\", um das Beispiel zu aktualisieren."
|
201 |
|
202 |
# @ broken-link-checker
|
203 |
-
#: core/core.php:
|
204 |
msgid "Apply custom formatting to removed links"
|
205 |
msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
|
206 |
|
207 |
-
#: core/core.php:
|
208 |
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
209 |
msgstr "Beispiel: Lorem ipsum <span %s>entfernter Link</span>, dolor sit amet."
|
210 |
|
211 |
# @ broken-link-checker
|
212 |
-
#: core/core.php:
|
213 |
msgid "Stop search engines from following broken links"
|
214 |
msgstr "Suchmaschinen von folgenden fehlerhaften Links stoppen"
|
215 |
|
216 |
-
#: core/core.php:
|
217 |
msgctxt "settings page"
|
218 |
msgid "Suggestions"
|
219 |
msgstr "Vorschläge"
|
220 |
|
221 |
# @ broken-link-checker
|
222 |
-
#: core/core.php:
|
223 |
msgid "Suggest alternatives to broken links"
|
224 |
msgstr "Alternativen zu fehlerhaften Links vorschlagen"
|
225 |
|
226 |
# @ broken-link-checker
|
227 |
-
#: core/core.php:
|
228 |
msgid "Look for links in"
|
229 |
msgstr "Suchen Sie nach Links in"
|
230 |
|
231 |
# @ broken-link-checker
|
232 |
-
#: core/core.php:
|
233 |
msgid "Post statuses"
|
234 |
msgstr "Beitrag Status"
|
235 |
|
236 |
# @ broken-link-checker
|
237 |
-
#: core/core.php:
|
238 |
msgid "Link types"
|
239 |
msgstr "Link Typen"
|
240 |
|
241 |
# @ broken-link-checker
|
242 |
-
#: core/core.php:
|
243 |
msgid "Error : All link parsers missing!"
|
244 |
msgstr "Fehler: Alle Link-Parser fehlen!"
|
245 |
|
246 |
# @ broken-link-checker
|
247 |
-
#: core/core.php:
|
248 |
msgid "Exclusion list"
|
249 |
msgstr "Ausschlussliste"
|
250 |
|
251 |
# @ broken-link-checker
|
252 |
-
#: core/core.php:
|
253 |
msgid ""
|
254 |
"Don't check links where the URL contains any of these words (one per line) :"
|
255 |
msgstr ""
|
256 |
"URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
|
257 |
|
258 |
# @ broken-link-checker
|
259 |
-
#: core/core.php:
|
260 |
msgid "Check links using"
|
261 |
msgstr "Überprüfe Links"
|
262 |
|
263 |
# @ broken-link-checker
|
264 |
-
#: core/core.php:
|
265 |
msgid "Timeout"
|
266 |
msgstr "Zeitüberschreitung"
|
267 |
|
268 |
# @ broken-link-checker
|
269 |
# @ default
|
270 |
-
#: core/core.php:
|
271 |
msgid "%s seconds"
|
272 |
msgstr "%s Sekunden"
|
273 |
|
274 |
# @ broken-link-checker
|
275 |
-
#: core/core.php:
|
276 |
msgid "Links that take longer than this to load will be marked as broken."
|
277 |
msgstr ""
|
278 |
"Links die länger zum laden brauchen als hier eingetragen, gelten als "
|
279 |
"fehlerhaft."
|
280 |
|
281 |
# @ broken-link-checker
|
282 |
-
#: core/core.php:
|
283 |
msgid "Link monitor"
|
284 |
msgstr "Link Monitor"
|
285 |
|
286 |
# @ broken-link-checker
|
287 |
-
#: core/core.php:
|
288 |
msgid "Run continuously while the Dashboard is open"
|
289 |
msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
|
290 |
|
291 |
# @ broken-link-checker
|
292 |
-
#: core/core.php:
|
293 |
msgid "Run hourly in the background"
|
294 |
msgstr "Stündlich im Hintergrund arbeiten"
|
295 |
|
296 |
-
#: core/core.php:
|
297 |
msgid "Show the dashboard widget for"
|
298 |
msgstr "Dashboard-Widget anzeigen für"
|
299 |
|
300 |
-
#: core/core.php:
|
301 |
msgctxt "dashboard widget visibility"
|
302 |
msgid "Administrator"
|
303 |
msgstr "Administrator"
|
304 |
|
305 |
-
#: core/core.php:
|
306 |
msgctxt "dashboard widget visibility"
|
307 |
msgid "Editor and above"
|
308 |
msgstr "Redakteur und höher"
|
309 |
|
310 |
-
#: core/core.php:
|
311 |
msgctxt "dashboard widget visibility"
|
312 |
msgid "Nobody (disables the widget)"
|
313 |
msgstr "Niemand (deaktiviert das Widget)"
|
314 |
|
315 |
# @ broken-link-checker
|
316 |
-
#: core/core.php:
|
317 |
msgid "Max. execution time"
|
318 |
msgstr "Max. Ausführungszeit"
|
319 |
|
320 |
# @ broken-link-checker
|
321 |
-
#: core/core.php:
|
322 |
msgid ""
|
323 |
"The plugin works by periodically launching a background job that parses your "
|
324 |
"posts for links, checks the discovered URLs, and performs other time-"
|
@@ -331,16 +331,16 @@ msgstr ""
|
|
331 |
"Instanzen laufen sollen, bevor sie gestoppt werden."
|
332 |
|
333 |
# @ broken-link-checker
|
334 |
-
#: core/core.php:
|
335 |
msgid "Server load limit"
|
336 |
msgstr "Server Belastungsgrenze"
|
337 |
|
338 |
-
#: core/core.php:
|
339 |
msgid "Current load : %s"
|
340 |
msgstr "Aktuelle Belastung: %s"
|
341 |
|
342 |
# @ broken-link-checker
|
343 |
-
#: core/core.php:
|
344 |
msgid ""
|
345 |
"Link checking will be suspended if the average <a href=\"%s\">server load</"
|
346 |
"a> rises above this number. Leave this field blank to disable load limiting."
|
@@ -350,12 +350,12 @@ msgstr ""
|
|
350 |
"Feld leer, um das Ladelimit zu deaktivieren."
|
351 |
|
352 |
# @ broken-link-checker
|
353 |
-
#: core/core.php:
|
354 |
msgid "Not available"
|
355 |
msgstr "Nicht verfügbar"
|
356 |
|
357 |
# @ broken-link-checker
|
358 |
-
#: core/core.php:
|
359 |
msgid ""
|
360 |
"Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
|
361 |
"code> is present and accessible."
|
@@ -363,41 +363,45 @@ msgstr ""
|
|
363 |
"Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</"
|
364 |
"code> vorhanden und zugänglich ist."
|
365 |
|
366 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
367 |
msgid "Logging"
|
368 |
msgstr "Protokollierung"
|
369 |
|
370 |
-
#: core/core.php:
|
371 |
msgid "Enable logging"
|
372 |
msgstr "Protokollierung aktivieren"
|
373 |
|
374 |
-
#: core/core.php:
|
375 |
msgid "Log file location"
|
376 |
msgstr "Speicherort Protokolldatei"
|
377 |
|
378 |
-
#: core/core.php:
|
379 |
msgctxt "log file location"
|
380 |
msgid "Default"
|
381 |
msgstr "Standard"
|
382 |
|
383 |
# @ broken-link-checker
|
384 |
-
#: core/core.php:
|
385 |
msgctxt "log file location"
|
386 |
msgid "Custom"
|
387 |
msgstr "Benutzerdefiniert"
|
388 |
|
389 |
# @ broken-link-checker
|
390 |
-
#: core/core.php:
|
391 |
msgid "Forced recheck"
|
392 |
msgstr "Erneute Überprüfung erzwingen"
|
393 |
|
394 |
# @ broken-link-checker
|
395 |
-
#: core/core.php:
|
396 |
msgid "Re-check all pages"
|
397 |
msgstr "Überprüfe alle Seiten noch einmal"
|
398 |
|
399 |
# @ broken-link-checker
|
400 |
-
#: core/core.php:
|
401 |
msgid ""
|
402 |
"The \"Nuclear Option\". Click this button to make the plugin empty its link "
|
403 |
"database and recheck the entire site from scratch."
|
@@ -406,16 +410,16 @@ msgstr ""
|
|
406 |
"Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
|
407 |
|
408 |
# @ default
|
409 |
-
#: core/core.php:
|
410 |
msgid "Save Changes"
|
411 |
msgstr "Änderungen speichern"
|
412 |
|
413 |
# @ broken-link-checker
|
414 |
-
#: core/core.php:
|
415 |
msgid "Configure"
|
416 |
msgstr "Konfigurieren"
|
417 |
|
418 |
-
#: core/core.php:
|
419 |
msgid ""
|
420 |
"Enter the names of custom fields you want to check (one per line). If a "
|
421 |
"field contains HTML code, prefix its name with <code>html:</code>. For "
|
@@ -427,84 +431,84 @@ msgstr ""
|
|
427 |
"code>."
|
428 |
|
429 |
# @ broken-link-checker
|
430 |
-
#: core/core.php:
|
431 |
msgid "Database error : %s"
|
432 |
msgstr "Datenbank Fehler: %s"
|
433 |
|
434 |
# @ broken-link-checker
|
435 |
-
#: core/core.php:
|
436 |
msgid "You must enter a filter name!"
|
437 |
msgstr "Sie müssen einen Filter Namen eingeben!"
|
438 |
|
439 |
# @ broken-link-checker
|
440 |
-
#: core/core.php:
|
441 |
msgid "Invalid search query."
|
442 |
msgstr "Ungültige Suchanfrage."
|
443 |
|
444 |
# @ broken-link-checker
|
445 |
-
#: core/core.php:
|
446 |
msgid "Filter \"%s\" created"
|
447 |
msgstr "Filter \"%s\" erstellt"
|
448 |
|
449 |
# @ broken-link-checker
|
450 |
-
#: core/core.php:
|
451 |
msgid "Filter ID not specified."
|
452 |
msgstr "Link ID nicht spezifiziert."
|
453 |
|
454 |
# @ broken-link-checker
|
455 |
-
#: core/core.php:
|
456 |
msgid "Filter deleted"
|
457 |
msgstr "Filter gelöscht"
|
458 |
|
459 |
# @ broken-link-checker
|
460 |
-
#: core/core.php:
|
461 |
msgid "Replaced %d redirect with a direct link"
|
462 |
msgid_plural "Replaced %d redirects with direct links"
|
463 |
msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
|
464 |
msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
|
465 |
|
466 |
# @ broken-link-checker
|
467 |
-
#: core/core.php:
|
468 |
msgid "Failed to fix %d redirect"
|
469 |
msgid_plural "Failed to fix %d redirects"
|
470 |
msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
|
471 |
msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
|
472 |
|
473 |
# @ broken-link-checker
|
474 |
-
#: core/core.php:
|
475 |
msgid "None of the selected links are redirects!"
|
476 |
msgstr "Keiner der ausgewählten Links sind Umleitungen!"
|
477 |
|
478 |
# @ broken-link-checker
|
479 |
-
#: core/core.php:
|
480 |
msgid "%d link updated."
|
481 |
msgid_plural "%d links updated."
|
482 |
msgstr[0] "Link %d aktualisiert."
|
483 |
msgstr[1] "Links %d aktualisiert."
|
484 |
|
485 |
# @ broken-link-checker
|
486 |
-
#: core/core.php:
|
487 |
msgid "Failed to update %d link."
|
488 |
msgid_plural "Failed to update %d links."
|
489 |
msgstr[0] "Link %d konnte nicht aktualisiert werden."
|
490 |
msgstr[1] "Links %d konnten nicht aktualisiert werden."
|
491 |
|
492 |
# @ broken-link-checker
|
493 |
-
#: core/core.php:
|
494 |
msgid "%d link removed"
|
495 |
msgid_plural "%d links removed"
|
496 |
msgstr[0] "%d Link entfernt"
|
497 |
msgstr[1] "%d Links entfernt"
|
498 |
|
499 |
# @ broken-link-checker
|
500 |
-
#: core/core.php:
|
501 |
msgid "Failed to remove %d link"
|
502 |
msgid_plural "Failed to remove %d links"
|
503 |
msgstr[0] "Link %d konnte nicht entfernt werden"
|
504 |
msgstr[1] "Links %d konnten nicht entfernt werden"
|
505 |
|
506 |
# @ default
|
507 |
-
#: core/core.php:
|
508 |
msgid ""
|
509 |
"%d item was skipped because it can't be moved to the Trash. You need to "
|
510 |
"delete it manually."
|
@@ -519,108 +523,108 @@ msgstr[1] ""
|
|
519 |
"verschoben werden können. Löschen Sie diese manuell."
|
520 |
|
521 |
# @ broken-link-checker
|
522 |
-
#: core/core.php:
|
523 |
msgid "Didn't find anything to delete!"
|
524 |
msgstr "Nichts gefunden um zu löschen!"
|
525 |
|
526 |
# @ broken-link-checker
|
527 |
-
#: core/core.php:
|
528 |
msgid "%d link scheduled for rechecking"
|
529 |
msgid_plural "%d links scheduled for rechecking"
|
530 |
msgstr[0] "%d Link zur erneuten Überprüfung geplant"
|
531 |
msgstr[1] "%d Links zur erneuten Überprüfung geplant"
|
532 |
|
533 |
# @ broken-link-checker
|
534 |
-
#: core/core.php:
|
535 |
msgid "This link was manually marked as working by the user."
|
536 |
msgstr ""
|
537 |
"Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
|
538 |
|
539 |
# @ broken-link-checker
|
540 |
-
#: core/core.php:
|
541 |
msgid "Couldn't modify link %d"
|
542 |
msgstr "Link %d konnte nicht geändert werden"
|
543 |
|
544 |
# @ broken-link-checker
|
545 |
-
#: core/core.php:
|
546 |
msgid "%d link marked as not broken"
|
547 |
msgid_plural "%d links marked as not broken"
|
548 |
msgstr[0] "%d Link als nicht fehlerhaft markiert"
|
549 |
msgstr[1] "%d Links als nicht fehlerhaft markiert"
|
550 |
|
551 |
# @ broken-link-checker
|
552 |
-
#: core/core.php:
|
553 |
msgid "Table columns"
|
554 |
msgstr "Tabellenspalten"
|
555 |
|
556 |
# @ default
|
557 |
-
#: core/core.php:
|
558 |
msgid "Show on screen"
|
559 |
msgstr "Auf dem Bildschirm anzeigen"
|
560 |
|
561 |
# @ broken-link-checker
|
562 |
-
#: core/core.php:
|
563 |
msgid "links"
|
564 |
msgstr "Links"
|
565 |
|
566 |
# @ default
|
567 |
# @ broken-link-checker
|
568 |
-
#: core/core.php:
|
569 |
msgid "Apply"
|
570 |
msgstr "Anwenden"
|
571 |
|
572 |
# @ broken-link-checker
|
573 |
-
#: core/core.php:
|
574 |
msgid "Misc"
|
575 |
msgstr "Sonstige"
|
576 |
|
577 |
# @ broken-link-checker
|
578 |
-
#: core/core.php:
|
579 |
msgid "Highlight links broken for at least %s days"
|
580 |
msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
|
581 |
|
582 |
# @ broken-link-checker
|
583 |
-
#: core/core.php:
|
584 |
msgid "Color-code status codes"
|
585 |
msgstr "Farb-Code Status Codes"
|
586 |
|
587 |
# @ broken-link-checker
|
588 |
-
#: core/core.php:
|
589 |
-
#: core/core.php:
|
590 |
msgid "You're not allowed to do that!"
|
591 |
msgstr "Sie haben nicht die Erlaubnis das zu tun!"
|
592 |
|
593 |
# @ broken-link-checker
|
594 |
-
#: core/core.php:
|
595 |
msgid "View broken links"
|
596 |
msgstr "Fehlerhafte Links anschauen"
|
597 |
|
598 |
# @ broken-link-checker
|
599 |
-
#: core/core.php:
|
600 |
msgid "Found %d broken link"
|
601 |
msgid_plural "Found %d broken links"
|
602 |
msgstr[0] "%d fehlerhafte Links gefunden"
|
603 |
msgstr[1] "%d fehlerhafte Links gefunden"
|
604 |
|
605 |
# @ broken-link-checker
|
606 |
-
#: core/core.php:
|
607 |
msgid "No broken links found."
|
608 |
msgstr "Keine fehlerhaften Links gefunden."
|
609 |
|
610 |
# @ broken-link-checker
|
611 |
-
#: core/core.php:
|
612 |
msgid "%d URL in the work queue"
|
613 |
msgid_plural "%d URLs in the work queue"
|
614 |
msgstr[0] "%d URL in der Warteschlange"
|
615 |
msgstr[1] "%d URLs in der Warteschlange"
|
616 |
|
617 |
# @ broken-link-checker
|
618 |
-
#: core/core.php:
|
619 |
msgid "No URLs in the work queue."
|
620 |
msgstr "Keine URLs in der Warteschlange."
|
621 |
|
622 |
# @ broken-link-checker
|
623 |
-
#: core/core.php:
|
624 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
625 |
msgid "%d unique URL"
|
626 |
msgid_plural "%d unique URLs"
|
@@ -628,7 +632,7 @@ msgstr[0] "%d eindeutige URL"
|
|
628 |
msgstr[1] "%d eindeutige URLs"
|
629 |
|
630 |
# @ broken-link-checker
|
631 |
-
#: core/core.php:
|
632 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
633 |
msgid "%d link"
|
634 |
msgid_plural "%d links"
|
@@ -636,99 +640,99 @@ msgstr[0] "%d Link"
|
|
636 |
msgstr[1] "%d Links"
|
637 |
|
638 |
# @ broken-link-checker
|
639 |
-
#: core/core.php:
|
640 |
msgid "Detected %1$s in %2$s and still searching..."
|
641 |
msgstr "Endeckt %1$s in %2$s und suche immer noch ..."
|
642 |
|
643 |
# @ broken-link-checker
|
644 |
-
#: core/core.php:
|
645 |
msgid "Detected %1$s in %2$s."
|
646 |
msgstr "Endeckt %1$s in %2$s."
|
647 |
|
648 |
# @ broken-link-checker
|
649 |
-
#: core/core.php:
|
650 |
msgid "Searching your blog for links..."
|
651 |
msgstr "Durchsucht Ihr Blog nach Links ..."
|
652 |
|
653 |
# @ broken-link-checker
|
654 |
-
#: core/core.php:
|
655 |
msgid "No links detected."
|
656 |
msgstr "Keine Links gefunden."
|
657 |
|
658 |
# @ broken-link-checker
|
659 |
-
#: core/core.php:
|
660 |
msgctxt "current load"
|
661 |
msgid "Unknown"
|
662 |
msgstr "Unbekannt"
|
663 |
|
664 |
# @ broken-link-checker
|
665 |
-
#: core/core.php:
|
666 |
msgid "Oops, I can't find the link %d"
|
667 |
msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
|
668 |
|
669 |
# @ broken-link-checker
|
670 |
-
#: core/core.php:
|
671 |
msgid "Oops, couldn't modify the link!"
|
672 |
msgstr "Hoppla, der Link konnte nicht geändert werden!"
|
673 |
|
674 |
# @ broken-link-checker
|
675 |
-
#: core/core.php:
|
676 |
msgid "Error : link_id not specified"
|
677 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
678 |
|
679 |
# @ broken-link-checker
|
680 |
-
#: core/core.php:
|
681 |
msgid "Error : link_id or new_url not specified"
|
682 |
msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
|
683 |
|
684 |
# @ broken-link-checker
|
685 |
-
#: core/core.php:
|
686 |
msgid "Oops, the new URL is invalid!"
|
687 |
msgstr "Hoppla, die neue URL funktioniert nicht!"
|
688 |
|
689 |
# @ broken-link-checker
|
690 |
-
#: core/core.php:
|
691 |
msgid "An unexpected error occurred!"
|
692 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
693 |
|
694 |
# @ broken-link-checker
|
695 |
-
#: core/core.php:
|
696 |
msgid "An unexpected error occured!"
|
697 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
698 |
|
699 |
# @ broken-link-checker
|
700 |
-
#: core/core.php:
|
701 |
msgid "You don't have sufficient privileges to access this information!"
|
702 |
msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
|
703 |
|
704 |
# @ broken-link-checker
|
705 |
-
#: core/core.php:
|
706 |
msgid "Error : link ID not specified"
|
707 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
708 |
|
709 |
# @ broken-link-checker
|
710 |
-
#: core/core.php:
|
711 |
msgid "Failed to load link details (%s)"
|
712 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
713 |
|
714 |
# @ broken-link-checker
|
715 |
#. Plugin Name of the plugin/theme
|
716 |
-
#: core/core.php:
|
717 |
msgid "Broken Link Checker"
|
718 |
msgstr "Broken Link Checker"
|
719 |
|
720 |
# @ broken-link-checker
|
721 |
-
#: core/core.php:
|
722 |
msgid "PHP version"
|
723 |
msgstr "PHP Version"
|
724 |
|
725 |
# @ broken-link-checker
|
726 |
-
#: core/core.php:
|
727 |
msgid "MySQL version"
|
728 |
msgstr "MySQL Version"
|
729 |
|
730 |
# @ broken-link-checker
|
731 |
-
#: core/core.php:
|
732 |
msgid ""
|
733 |
"You have an old version of CURL. Redirect detection may not work properly."
|
734 |
msgstr ""
|
@@ -736,58 +740,58 @@ msgstr ""
|
|
736 |
"funktioniert eventuell nicht."
|
737 |
|
738 |
# @ broken-link-checker
|
739 |
-
#: core/core.php:
|
740 |
msgid "Not installed"
|
741 |
msgstr "Nicht installiert"
|
742 |
|
743 |
# @ broken-link-checker
|
744 |
-
#: core/core.php:
|
745 |
msgid "CURL version"
|
746 |
msgstr "CURL Version"
|
747 |
|
748 |
# @ broken-link-checker
|
749 |
-
#: core/core.php:
|
750 |
msgid "Installed"
|
751 |
msgstr "Installiert"
|
752 |
|
753 |
# @ broken-link-checker
|
754 |
-
#: core/core.php:
|
755 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
756 |
msgstr ""
|
757 |
"Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin "
|
758 |
"funktioniert!"
|
759 |
|
760 |
# @ broken-link-checker
|
761 |
-
#: core/core.php:
|
762 |
msgid "On"
|
763 |
msgstr "An"
|
764 |
|
765 |
# @ broken-link-checker
|
766 |
-
#: core/core.php:
|
767 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
768 |
msgstr ""
|
769 |
"Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode "
|
770 |
"aktiviert ist."
|
771 |
|
772 |
# @ broken-link-checker
|
773 |
-
#: core/core.php:
|
774 |
msgid "Off"
|
775 |
msgstr "Aus"
|
776 |
|
777 |
# @ broken-link-checker
|
778 |
-
#: core/core.php:
|
779 |
msgid "On ( %s )"
|
780 |
msgstr "An (%s)"
|
781 |
|
782 |
# @ broken-link-checker
|
783 |
-
#: core/core.php:
|
784 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
785 |
msgstr ""
|
786 |
"Umleitungen werden eventuell als fehlerhafte Links erkannt, falls "
|
787 |
"open_basedir aktiviert ist."
|
788 |
|
789 |
# @ broken-link-checker
|
790 |
-
#: core/core.php:
|
791 |
msgid ""
|
792 |
"If this value is zero even after several page reloads you have probably "
|
793 |
"encountered a bug."
|
@@ -796,12 +800,12 @@ msgstr ""
|
|
796 |
"ein Fehler aufgetreten."
|
797 |
|
798 |
# @ broken-link-checker
|
799 |
-
#: core/core.php:
|
800 |
msgid "[%s] Broken links detected"
|
801 |
msgstr "[%s] Fehlerhafte Links entdeckt"
|
802 |
|
803 |
# @ broken-link-checker
|
804 |
-
#: core/core.php:
|
805 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
806 |
msgid_plural ""
|
807 |
"Broken Link Checker has detected %d new broken links on your site."
|
@@ -811,39 +815,39 @@ msgstr[1] ""
|
|
811 |
"Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
|
812 |
|
813 |
# @ broken-link-checker
|
814 |
-
#: core/core.php:
|
815 |
msgid "Here's a list of the first %d broken links:"
|
816 |
msgid_plural "Here's a list of the first %d broken links:"
|
817 |
msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
818 |
msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
819 |
|
820 |
# @ broken-link-checker
|
821 |
-
#: core/core.php:
|
822 |
msgid "Here's a list of the new broken links: "
|
823 |
msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
|
824 |
|
825 |
# @ broken-link-checker
|
826 |
-
#: core/core.php:
|
827 |
msgid "Link text : %s"
|
828 |
msgstr "Linktext: %s"
|
829 |
|
830 |
# @ broken-link-checker
|
831 |
-
#: core/core.php:
|
832 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
833 |
msgstr "Link URL: <a href=\"%s\">%s</a>"
|
834 |
|
835 |
# @ broken-link-checker
|
836 |
-
#: core/core.php:
|
837 |
msgid "Source : %s"
|
838 |
msgstr "Quelle: %s"
|
839 |
|
840 |
# @ brokenk-link-checker
|
841 |
-
#: core/core.php:
|
842 |
msgid "You can see all broken links here:"
|
843 |
msgstr "Hier sehen Sie alle fehlerhaften Links:"
|
844 |
|
845 |
# @ broken-link-checker
|
846 |
-
#: core/core.php:
|
847 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
848 |
msgid_plural ""
|
849 |
"Broken Link Checker has detected %d new broken links in your posts."
|
@@ -879,7 +883,7 @@ msgstr ""
|
|
879 |
"nicht unterstützt."
|
880 |
|
881 |
# @ broken-link-checker
|
882 |
-
#: includes/admin/db-upgrade.php:
|
883 |
msgid "Failed to delete old DB tables. Database error : %s"
|
884 |
msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
|
885 |
|
@@ -889,7 +893,7 @@ msgid "Wait..."
|
|
889 |
msgstr "Warte ..."
|
890 |
|
891 |
# @ broken-link-checker
|
892 |
-
#: includes/admin/links-page-js.php:107 includes/admin/table-printer.php:
|
893 |
msgid "Not broken"
|
894 |
msgstr "Nicht fehlerhaft"
|
895 |
|
@@ -968,8 +972,8 @@ msgid "The following error(s) occured :"
|
|
968 |
msgstr "Folgende Fehler sind aufgetreten:"
|
969 |
|
970 |
# @ broken-link-checker
|
971 |
-
#: includes/admin/links-page-js.php:585 includes/admin/table-printer.php:
|
972 |
-
#: includes/admin/table-printer.php:
|
973 |
msgid "Unlink"
|
974 |
msgstr "Link aufheben"
|
975 |
|
@@ -1044,12 +1048,12 @@ msgid "Link text"
|
|
1044 |
msgstr "Linktext"
|
1045 |
|
1046 |
# @ broken-link-checker
|
1047 |
-
#: includes/admin/search-form.php:45 includes/admin/table-printer.php:
|
1048 |
msgid "URL"
|
1049 |
msgstr "URL"
|
1050 |
|
1051 |
# @ broken-link-checker
|
1052 |
-
#: includes/admin/search-form.php:48 includes/admin/table-printer.php:
|
1053 |
msgid "HTTP code"
|
1054 |
msgstr "HTTP Code"
|
1055 |
|
@@ -1079,20 +1083,20 @@ msgid "Search Links"
|
|
1079 |
msgstr "Suche Links"
|
1080 |
|
1081 |
# @ broken-link-checker
|
1082 |
-
#: includes/admin/search-form.php:113 includes/admin/table-printer.php:
|
1083 |
-
#: includes/admin/table-printer.php:
|
1084 |
msgid "Cancel"
|
1085 |
msgstr "Abbrechen"
|
1086 |
|
1087 |
-
#: includes/admin/sidebar.php:
|
1088 |
msgid "More plugins by Janis Elsts"
|
1089 |
msgstr "Weitere Plugins von Janis Elsts"
|
1090 |
|
1091 |
-
#: includes/admin/sidebar.php:
|
1092 |
msgid "Donate $10, $20 or $50!"
|
1093 |
msgstr "Spenden Sie $10, $20 oder $50!"
|
1094 |
|
1095 |
-
#: includes/admin/sidebar.php:
|
1096 |
msgid ""
|
1097 |
"If you like this plugin, please donate to support development and "
|
1098 |
"maintenance!"
|
@@ -1100,328 +1104,328 @@ msgstr ""
|
|
1100 |
"Mögen Sie dieses Plugin, dann helfen Sie uns mit einer Spende für die "
|
1101 |
"Entwicklung und Wartung."
|
1102 |
|
1103 |
-
#: includes/admin/sidebar.php:
|
1104 |
msgid "Return to WordPress Dashboard"
|
1105 |
msgstr "Zurück zum Wordpress Dashboard"
|
1106 |
|
1107 |
# @ broken-link-checker
|
1108 |
-
#: includes/admin/table-printer.php:
|
1109 |
msgid "Compact View"
|
1110 |
msgstr "Kompaktansicht"
|
1111 |
|
1112 |
# @ broken-link-checker
|
1113 |
-
#: includes/admin/table-printer.php:
|
1114 |
msgid "Detailed View"
|
1115 |
msgstr "Detailansicht"
|
1116 |
|
1117 |
# @ broken-link-checker
|
1118 |
-
#: includes/admin/table-printer.php:
|
1119 |
msgid "Source"
|
1120 |
msgstr "Quelle"
|
1121 |
|
1122 |
# @ broken-link-checker
|
1123 |
-
#: includes/admin/table-printer.php:
|
1124 |
msgid "Link Text"
|
1125 |
msgstr "Linktext"
|
1126 |
|
1127 |
# @ broken-link-checker
|
1128 |
-
#: includes/admin/table-printer.php:
|
1129 |
msgid "Redirect URL"
|
1130 |
msgstr "URL umleiten"
|
1131 |
|
1132 |
# @ broken-link-checker
|
1133 |
-
#: includes/admin/table-printer.php:
|
1134 |
msgid "Bulk Actions"
|
1135 |
msgstr "Massenänderung"
|
1136 |
|
1137 |
# @ broken-link-checker
|
1138 |
-
#: includes/admin/table-printer.php:
|
1139 |
msgid "Edit URL"
|
1140 |
msgstr "Bearbeite URL"
|
1141 |
|
1142 |
# @ broken-link-checker
|
1143 |
-
#: includes/admin/table-printer.php:
|
1144 |
msgid "Recheck"
|
1145 |
msgstr "Erneut überprüfen"
|
1146 |
|
1147 |
# @ broken-link-checker
|
1148 |
-
#: includes/admin/table-printer.php:
|
1149 |
msgid "Fix redirects"
|
1150 |
msgstr "Feste Umleitungen"
|
1151 |
|
1152 |
# @ broken-link-checker
|
1153 |
-
#: includes/admin/table-printer.php:
|
1154 |
msgid "Mark as not broken"
|
1155 |
msgstr "Als nicht fehlerhaft markieren"
|
1156 |
|
1157 |
# @ broken-link-checker
|
1158 |
-
#: includes/admin/table-printer.php:
|
1159 |
msgid "Move sources to Trash"
|
1160 |
msgstr "Verschiebe Quelle in den Papierkorb"
|
1161 |
|
1162 |
# @ broken-link-checker
|
1163 |
-
#: includes/admin/table-printer.php:
|
1164 |
msgid "Delete sources"
|
1165 |
msgstr "Quellen löschen"
|
1166 |
|
1167 |
# @ default
|
1168 |
-
#: includes/admin/table-printer.php:
|
1169 |
msgid "«"
|
1170 |
msgstr "«"
|
1171 |
|
1172 |
# @ default
|
1173 |
-
#: includes/admin/table-printer.php:
|
1174 |
msgid "»"
|
1175 |
msgstr "»"
|
1176 |
|
1177 |
# @ broken-link-checker
|
1178 |
-
#: includes/admin/table-printer.php:
|
1179 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1180 |
msgstr "Anzeigen %s–%s von <span class=\"current-link-count\">%s</span>"
|
1181 |
|
1182 |
# @ broken-link-checker
|
1183 |
-
#: includes/admin/table-printer.php:
|
1184 |
msgid "Bulk Edit URLs"
|
1185 |
msgstr "Mehrere URLs bearbeiten"
|
1186 |
|
1187 |
-
#: includes/admin/table-printer.php:
|
1188 |
msgid "Find"
|
1189 |
msgstr "Finden"
|
1190 |
|
1191 |
-
#: includes/admin/table-printer.php:
|
1192 |
msgid "Replace with"
|
1193 |
msgstr "Ersetzen mit"
|
1194 |
|
1195 |
# @ broken-link-checker
|
1196 |
-
#: includes/admin/table-printer.php:
|
1197 |
msgid "Case sensitive"
|
1198 |
msgstr "Gross- und Kleinschreibung"
|
1199 |
|
1200 |
-
#: includes/admin/table-printer.php:
|
1201 |
msgid "Regular expression"
|
1202 |
msgstr "Regulärer Ausdruck"
|
1203 |
|
1204 |
# @ broken-link-checker
|
1205 |
-
#: includes/admin/table-printer.php:
|
1206 |
msgid "Update"
|
1207 |
msgstr "Aktualisieren"
|
1208 |
|
1209 |
# @ broken-link-checker
|
1210 |
-
#: includes/admin/table-printer.php:
|
1211 |
msgid "Post published on"
|
1212 |
msgstr "Beitrag publiziert am"
|
1213 |
|
1214 |
# @ broken-link-checker
|
1215 |
-
#: includes/admin/table-printer.php:
|
1216 |
msgid "Link last checked"
|
1217 |
msgstr "Link zuletzt geprüft"
|
1218 |
|
1219 |
# @ broken-link-checker
|
1220 |
-
#: includes/admin/table-printer.php:
|
1221 |
msgid "Never"
|
1222 |
msgstr "Nie"
|
1223 |
|
1224 |
# @ broken-link-checker
|
1225 |
-
#: includes/admin/table-printer.php:
|
1226 |
msgid "Response time"
|
1227 |
msgstr "Reaktionszeit"
|
1228 |
|
1229 |
# @ broken-link-checker
|
1230 |
-
#: includes/admin/table-printer.php:
|
1231 |
msgid "%2.3f seconds"
|
1232 |
msgstr "%2.3f Sekunden"
|
1233 |
|
1234 |
# @ broken-link-checker
|
1235 |
-
#: includes/admin/table-printer.php:
|
1236 |
msgid "Final URL"
|
1237 |
msgstr "Endgültige URL"
|
1238 |
|
1239 |
# @ broken-link-checker
|
1240 |
-
#: includes/admin/table-printer.php:
|
1241 |
msgid "Redirect count"
|
1242 |
msgstr "Weiterleitung Anzahl"
|
1243 |
|
1244 |
# @ broken-link-checker
|
1245 |
-
#: includes/admin/table-printer.php:
|
1246 |
msgid "Instance count"
|
1247 |
msgstr "Instanz Anzahl"
|
1248 |
|
1249 |
# @ broken-link-checker
|
1250 |
-
#: includes/admin/table-printer.php:
|
1251 |
msgid "This link has failed %d time."
|
1252 |
msgid_plural "This link has failed %d times."
|
1253 |
msgstr[0] "Dieser Link schlug %d mal fehl."
|
1254 |
msgstr[1] "Dieser Link schlug %d mal fehl."
|
1255 |
|
1256 |
# @ broken-link-checker
|
1257 |
-
#: includes/admin/table-printer.php:
|
1258 |
msgid "This link has been broken for %s."
|
1259 |
msgstr "Dieser Links ist fehlerhaft seit %s."
|
1260 |
|
1261 |
# @ broken-link-checker
|
1262 |
-
#: includes/admin/table-printer.php:
|
1263 |
msgid "Log"
|
1264 |
msgstr "Log"
|
1265 |
|
1266 |
# @ broken-link-checker
|
1267 |
-
#: includes/admin/table-printer.php:
|
1268 |
msgid "Show more info about this link"
|
1269 |
msgstr "Mehr Informationen über diesen Link anzeigen"
|
1270 |
|
1271 |
# @ broken-link-checker
|
1272 |
-
#: includes/admin/table-printer.php:
|
1273 |
msgctxt "checked how long ago"
|
1274 |
msgid "Checked"
|
1275 |
msgstr "Geprüft"
|
1276 |
|
1277 |
# @ broken-link-checker
|
1278 |
-
#: includes/admin/table-printer.php:
|
1279 |
msgid "Broken for"
|
1280 |
msgstr "Fehlerhaft für"
|
1281 |
|
1282 |
# @ default
|
1283 |
-
#: includes/admin/table-printer.php:
|
1284 |
msgid "Edit this link"
|
1285 |
msgstr "Diesen Link bearbeiten"
|
1286 |
|
1287 |
# @ broken-link-checker
|
1288 |
-
#: includes/admin/table-printer.php:
|
1289 |
msgid "Remove this link from all posts"
|
1290 |
msgstr "Löschen Sie diesen Link von allen Beiträgen"
|
1291 |
|
1292 |
# @ broken-link-checker
|
1293 |
-
#: includes/admin/table-printer.php:
|
1294 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
1295 |
msgstr ""
|
1296 |
"Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als "
|
1297 |
"gültig"
|
1298 |
|
1299 |
-
#: includes/admin/table-printer.php:
|
1300 |
msgid "Hide this link and do not report it again unless its status changes"
|
1301 |
msgstr ""
|
1302 |
"Verstecken Sie diesen Link und melden ihn nicht wieder, auch wenn sein "
|
1303 |
"Status ändert"
|
1304 |
|
1305 |
-
#: includes/admin/table-printer.php:
|
1306 |
msgid "Dismiss"
|
1307 |
msgstr "Ausblenden"
|
1308 |
|
1309 |
-
#: includes/admin/table-printer.php:
|
1310 |
msgid "Undismiss this link"
|
1311 |
msgstr "Link wieder einblenden"
|
1312 |
|
1313 |
-
#: includes/admin/table-printer.php:
|
1314 |
msgid "Undismiss"
|
1315 |
msgstr "Einblenden"
|
1316 |
|
1317 |
# @ broken-link-checker
|
1318 |
-
#: includes/admin/table-printer.php:
|
1319 |
msgid "Update URL"
|
1320 |
msgstr "Aktualisiere URL"
|
1321 |
|
1322 |
# @ broken-link-checker
|
1323 |
-
#: includes/admin/table-printer.php:
|
1324 |
msgid "[An orphaned link! This is a bug.]"
|
1325 |
msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
|
1326 |
|
1327 |
# @ broken-link-checker
|
1328 |
-
#: includes/admin/table-printer.php:
|
1329 |
msgctxt "inline editor title"
|
1330 |
msgid "Edit Link"
|
1331 |
msgstr "Link bearbeiten"
|
1332 |
|
1333 |
# @ broken-link-checker
|
1334 |
-
#: includes/admin/table-printer.php:
|
1335 |
msgctxt "inline link editor"
|
1336 |
msgid "Text"
|
1337 |
msgstr "Text"
|
1338 |
|
1339 |
# @ broken-link-checker
|
1340 |
-
#: includes/admin/table-printer.php:
|
1341 |
msgctxt "inline link editor"
|
1342 |
msgid "URL"
|
1343 |
msgstr "URL"
|
1344 |
|
1345 |
-
#: includes/admin/table-printer.php:
|
1346 |
msgctxt "inline link editor"
|
1347 |
msgid "Suggestions"
|
1348 |
msgstr "Vorschläge"
|
1349 |
|
1350 |
-
#: includes/admin/table-printer.php:
|
1351 |
msgid "Use this URL"
|
1352 |
msgstr "URL verwenden"
|
1353 |
|
1354 |
# @ default
|
1355 |
-
#: includes/any-post.php:
|
1356 |
#: modules/containers/comment.php:153 modules/containers/custom_field.php:207
|
1357 |
msgid "Edit"
|
1358 |
msgstr "Bearbeiten"
|
1359 |
|
1360 |
# @ default
|
1361 |
-
#: includes/any-post.php:
|
1362 |
msgid "Move this item to the Trash"
|
1363 |
msgstr "Element in den Papierkorb verschieben"
|
1364 |
|
1365 |
# @ default
|
1366 |
-
#: includes/any-post.php:
|
1367 |
msgid "Trash"
|
1368 |
msgstr "Papierkorb"
|
1369 |
|
1370 |
# @ default
|
1371 |
-
#: includes/any-post.php:
|
1372 |
msgid "Delete this item permanently"
|
1373 |
msgstr "Element endgültig löschen"
|
1374 |
|
1375 |
# @ default
|
1376 |
-
#: includes/any-post.php:
|
1377 |
#: modules/containers/custom_field.php:222
|
1378 |
msgid "Delete"
|
1379 |
msgstr "Löschen"
|
1380 |
|
1381 |
# @ default
|
1382 |
-
#: includes/any-post.php:
|
1383 |
msgid "Preview “%s”"
|
1384 |
msgstr "Vorschau “%s”"
|
1385 |
|
1386 |
# @ default
|
1387 |
-
#: includes/any-post.php:
|
1388 |
msgid "Preview"
|
1389 |
msgstr "Vorschau"
|
1390 |
|
1391 |
# @ default
|
1392 |
-
#: includes/any-post.php:
|
1393 |
msgid "View “%s”"
|
1394 |
msgstr "Ansehen “%s”"
|
1395 |
|
1396 |
# @ default
|
1397 |
-
#: includes/any-post.php:
|
1398 |
#: modules/containers/custom_field.php:227
|
1399 |
msgid "View"
|
1400 |
msgstr "Ansehen"
|
1401 |
|
1402 |
# @ default
|
1403 |
-
#: includes/any-post.php:
|
1404 |
msgid "Edit this item"
|
1405 |
msgstr "Bearbeiten Sie dieses Element"
|
1406 |
|
1407 |
# @ broken-link-checker
|
1408 |
-
#: includes/any-post.php:
|
1409 |
#: modules/containers/comment.php:43
|
1410 |
msgid "Nothing to update"
|
1411 |
msgstr "Nichts zu aktualisieren"
|
1412 |
|
1413 |
# @ broken-link-checker
|
1414 |
-
#: includes/any-post.php:
|
1415 |
msgid "Updating post %d failed"
|
1416 |
msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
|
1417 |
|
1418 |
# @ broken-link-checker
|
1419 |
-
#: includes/any-post.php:
|
1420 |
msgid "Failed to delete post \"%s\" (%d)"
|
1421 |
msgstr "Löschen des Beitrages \"%s\" (%d) schlug fehl"
|
1422 |
|
1423 |
# @ broken-link-checker
|
1424 |
-
#: includes/any-post.php:
|
1425 |
msgid ""
|
1426 |
"Can't move post \"%s\" (%d) to the trash because the trash feature is "
|
1427 |
"disabled"
|
@@ -1430,47 +1434,47 @@ msgstr ""
|
|
1430 |
"diese Funktion deaktiviert ist"
|
1431 |
|
1432 |
# @ broken-link-checker
|
1433 |
-
#: includes/any-post.php:
|
1434 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
1435 |
msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
|
1436 |
|
1437 |
# @ broken-link-checker
|
1438 |
-
#: includes/any-post.php:
|
1439 |
msgid "%d post deleted."
|
1440 |
msgid_plural "%d posts deleted."
|
1441 |
msgstr[0] "%d Artikel gelöscht."
|
1442 |
msgstr[1] "%d Artikel gelöscht."
|
1443 |
|
1444 |
# @ broken-link-checker
|
1445 |
-
#: includes/any-post.php:
|
1446 |
msgid "%d page deleted."
|
1447 |
msgid_plural "%d pages deleted."
|
1448 |
msgstr[0] "%d Seite gelöscht."
|
1449 |
msgstr[1] "%d Seiten gelöscht."
|
1450 |
|
1451 |
# @ broken-link-checker
|
1452 |
-
#: includes/any-post.php:
|
1453 |
msgid "%d \"%s\" deleted."
|
1454 |
msgid_plural "%d \"%s\" deleted."
|
1455 |
msgstr[0] "%d \"%s\" gelöscht."
|
1456 |
msgstr[1] "%d \"%s\" gelöscht."
|
1457 |
|
1458 |
# @ broken-link-checker
|
1459 |
-
#: includes/any-post.php:
|
1460 |
msgid "%d post moved to the Trash."
|
1461 |
msgid_plural "%d posts moved to the Trash."
|
1462 |
msgstr[0] "%d Artikel in den Papierkorb verschoben."
|
1463 |
msgstr[1] "%d Artikel in den Papierkorb verschoben."
|
1464 |
|
1465 |
# @ broken-link-checker
|
1466 |
-
#: includes/any-post.php:
|
1467 |
msgid "%d page moved to the Trash."
|
1468 |
msgid_plural "%d pages moved to the Trash."
|
1469 |
msgstr[0] "%d Seite in den Papierkorb verschoben."
|
1470 |
msgstr[1] "%d Seiten in den Papierkorb verschoben."
|
1471 |
|
1472 |
# @ broken-link-checker
|
1473 |
-
#: includes/any-post.php:
|
1474 |
msgid "%d \"%s\" moved to the Trash."
|
1475 |
msgid_plural "%d \"%s\" moved to the Trash."
|
1476 |
msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
|
@@ -1484,7 +1488,7 @@ msgstr[0] "%d '%s' wurde gelöscht"
|
|
1484 |
msgstr[1] "%d '%s' wurden gelöscht"
|
1485 |
|
1486 |
# @ broken-link-checker
|
1487 |
-
#: includes/containers.php:
|
1488 |
msgid "Container type '%s' not recognized"
|
1489 |
msgstr "Container Typ '%s' nicht erkannt"
|
1490 |
|
@@ -1527,94 +1531,76 @@ msgstr "Eingebettete GoogleVideo Videos"
|
|
1527 |
# @ broken-link-checker
|
1528 |
#: includes/extra-strings.php:8
|
1529 |
msgctxt "module name"
|
1530 |
-
msgid "Embedded Megavideo videos"
|
1531 |
-
msgstr "Eingebettete Megavideo Videos"
|
1532 |
-
|
1533 |
-
# @ broken-link-checker
|
1534 |
-
#: includes/extra-strings.php:9
|
1535 |
-
msgctxt "module name"
|
1536 |
msgid "Embedded Vimeo videos"
|
1537 |
msgstr "Eingebettete Vimeo Videos"
|
1538 |
|
1539 |
# @ broken-link-checker
|
1540 |
-
#: includes/extra-strings.php:
|
1541 |
msgctxt "module name"
|
1542 |
msgid "Embedded YouTube playlists (old embed code)"
|
1543 |
msgstr "Eingebettete YouTube Wiedergabelisten (alter Code)"
|
1544 |
|
1545 |
# @ broken-link-checker
|
1546 |
-
#: includes/extra-strings.php:
|
1547 |
msgctxt "module name"
|
1548 |
msgid "Embedded YouTube videos"
|
1549 |
msgstr "Eingebettete YouTube Videos"
|
1550 |
|
1551 |
# @ broken-link-checker
|
1552 |
-
#: includes/extra-strings.php:
|
1553 |
msgctxt "module name"
|
1554 |
msgid "Embedded YouTube videos (old embed code)"
|
1555 |
msgstr "Eingebettete YouTube Videos (alter Code)"
|
1556 |
|
1557 |
# @ broken-link-checker
|
1558 |
-
#: includes/extra-strings.php:
|
1559 |
-
msgctxt "module name"
|
1560 |
-
msgid "FileServe API"
|
1561 |
-
msgstr "FileServe API"
|
1562 |
-
|
1563 |
-
# @ broken-link-checker
|
1564 |
-
#: includes/extra-strings.php:14
|
1565 |
msgctxt "module name"
|
1566 |
msgid "HTML images"
|
1567 |
msgstr "HTML Bilder"
|
1568 |
|
1569 |
# @ broken-link-checker
|
1570 |
-
#: includes/extra-strings.php:
|
1571 |
msgctxt "module name"
|
1572 |
msgid "HTML links"
|
1573 |
msgstr "HTML Links"
|
1574 |
|
1575 |
# @ broken-link-checker
|
1576 |
-
#: includes/extra-strings.php:
|
1577 |
msgctxt "module name"
|
1578 |
msgid "MediaFire API"
|
1579 |
msgstr "MediaFire API"
|
1580 |
|
1581 |
# @ broken-link-checker
|
1582 |
-
#: includes/extra-strings.php:
|
1583 |
-
msgctxt "module name"
|
1584 |
-
msgid "MegaUpload API"
|
1585 |
-
msgstr "MegaUpload API"
|
1586 |
-
|
1587 |
-
# @ broken-link-checker
|
1588 |
-
#: includes/extra-strings.php:18
|
1589 |
msgctxt "module name"
|
1590 |
msgid "Plaintext URLs"
|
1591 |
msgstr "Klartext URLs"
|
1592 |
|
1593 |
# @ broken-link-checker
|
1594 |
-
#: includes/extra-strings.php:
|
1595 |
msgctxt "module name"
|
1596 |
msgid "RapidShare API"
|
1597 |
msgstr "RapidShare API"
|
1598 |
|
1599 |
-
#: includes/extra-strings.php:
|
1600 |
msgctxt "module name"
|
1601 |
msgid "Smart YouTube httpv:// URLs"
|
1602 |
msgstr "Smart YouTube httpv:// URLs"
|
1603 |
|
1604 |
# @ broken-link-checker
|
1605 |
-
#: includes/extra-strings.php:
|
1606 |
msgctxt "module name"
|
1607 |
msgid "YouTube API"
|
1608 |
msgstr "YouTube API"
|
1609 |
|
1610 |
# @ broken-link-checker
|
1611 |
-
#: includes/extra-strings.php:
|
1612 |
msgctxt "module name"
|
1613 |
msgid "Posts"
|
1614 |
msgstr "Beiträge"
|
1615 |
|
1616 |
# @ broken-link-checker
|
1617 |
-
#: includes/extra-strings.php:
|
1618 |
msgctxt "module name"
|
1619 |
msgid "Pages"
|
1620 |
msgstr "Seiten"
|
@@ -1750,7 +1736,7 @@ msgstr "Unbekannt"
|
|
1750 |
|
1751 |
# @ link status
|
1752 |
# @ broken-link-checker
|
1753 |
-
#: includes/links.php:863 modules/checkers/http.php:
|
1754 |
#: modules/extras/mediafire.php:101
|
1755 |
msgid "Unknown Error"
|
1756 |
msgstr "Unbekannter Fehler"
|
@@ -1766,20 +1752,19 @@ msgid "False positive"
|
|
1766 |
msgstr "Falsch positiv"
|
1767 |
|
1768 |
# @ broken-link-checker
|
1769 |
-
#: includes/links.php:893 modules/extras/
|
1770 |
-
#: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
|
1771 |
#: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
|
1772 |
msgctxt "link status"
|
1773 |
msgid "OK"
|
1774 |
msgstr "OK"
|
1775 |
|
1776 |
# @ broken-link-checker
|
1777 |
-
#: includes/parsers.php:
|
1778 |
msgid "Editing is not implemented in the '%s' parser"
|
1779 |
msgstr "Editieren ist nicht im '%s' Parser implementiert"
|
1780 |
|
1781 |
# @ broken-link-checker
|
1782 |
-
#: includes/parsers.php:
|
1783 |
msgid "Unlinking is not implemented in the '%s' parser"
|
1784 |
msgstr "Aufheben der Verknüpfung ist nicht im '%s' Parser implementiert"
|
1785 |
|
@@ -1854,38 +1839,38 @@ msgstr[0] "%d Monat vergangen"
|
|
1854 |
msgstr[1] "%d Monate vergangen"
|
1855 |
|
1856 |
# @ broken-link-checker
|
1857 |
-
#: modules/checkers/http.php:
|
1858 |
msgid "Server Not Found"
|
1859 |
msgstr "Server nicht gefunden"
|
1860 |
|
1861 |
# @ broken-link-checker
|
1862 |
-
#: modules/checkers/http.php:
|
1863 |
msgid "Connection Failed"
|
1864 |
msgstr "Verbindung fehlgeschlagen"
|
1865 |
|
1866 |
# @ broken-link-checker
|
1867 |
-
#: modules/checkers/http.php:
|
1868 |
msgid "HTTP code : %d"
|
1869 |
msgstr "HTTP Code: %d"
|
1870 |
|
1871 |
# @ broken-link-checker
|
1872 |
-
#: modules/checkers/http.php:
|
1873 |
msgid "(No response)"
|
1874 |
msgstr "(Keine Antwort)"
|
1875 |
|
1876 |
# @ broken-link-checker
|
1877 |
-
#: modules/checkers/http.php:
|
1878 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
1879 |
msgstr ""
|
1880 |
"Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
|
1881 |
|
1882 |
# @ broken-link-checker
|
1883 |
-
#: modules/checkers/http.php:
|
1884 |
msgid "Request timed out."
|
1885 |
msgstr "Erfordert Zeitlimit."
|
1886 |
|
1887 |
# @ broken-link-checker
|
1888 |
-
#: modules/checkers/http.php:
|
1889 |
msgid "Using Snoopy"
|
1890 |
msgstr "Benutzt Snoopy"
|
1891 |
|
@@ -1972,14 +1957,14 @@ msgid "Comment"
|
|
1972 |
msgstr "Kommentar"
|
1973 |
|
1974 |
# @ broken-link-checker
|
1975 |
-
#: modules/containers/comment.php:
|
1976 |
msgid "%d comment has been deleted."
|
1977 |
msgid_plural "%d comments have been deleted."
|
1978 |
msgstr[0] "%d Kommentar wurde gelöscht."
|
1979 |
msgstr[1] "%d Kommentare wurde gelöscht."
|
1980 |
|
1981 |
# @ broken-link-checker
|
1982 |
-
#: modules/containers/comment.php:
|
1983 |
msgid "%d comment moved to the Trash."
|
1984 |
msgid_plural "%d comments moved to the Trash."
|
1985 |
msgstr[0] "%d Kommentar in den Papierkorb verschoben."
|
@@ -2028,21 +2013,6 @@ msgstr ""
|
|
2028 |
"Eingebettete Videos können mit Broken Link Checker nicht editiert werden. "
|
2029 |
"Bitte ändern oder ersetzen Sie das betreffende Video manuell."
|
2030 |
|
2031 |
-
#: modules/extras/fileserve.php:55
|
2032 |
-
msgid "Using FileServe API"
|
2033 |
-
msgstr "Verwende FileServe API"
|
2034 |
-
|
2035 |
-
# @ broken-link-checker
|
2036 |
-
#: modules/extras/fileserve.php:112 modules/extras/mediafire.php:91
|
2037 |
-
#: modules/extras/mediafire.php:96 modules/extras/megaupload.php:81
|
2038 |
-
#: modules/extras/megaupload.php:123 modules/extras/rapidshare.php:139
|
2039 |
-
msgid "Not Found"
|
2040 |
-
msgstr "Nicht gefunden"
|
2041 |
-
|
2042 |
-
#: modules/extras/fileserve.php:115
|
2043 |
-
msgid "FileServe : %d %s"
|
2044 |
-
msgstr "FileServe : %d %s"
|
2045 |
-
|
2046 |
# @ broken-link-checker
|
2047 |
#: modules/extras/googlevideo-embed.php:24
|
2048 |
msgid "GoogleVideo Video"
|
@@ -2053,23 +2023,11 @@ msgstr "GoogleVideo Video"
|
|
2053 |
msgid "Embedded GoogleVideo video"
|
2054 |
msgstr "Eingebetteter GoogleVideo Video"
|
2055 |
|
2056 |
-
#: modules/extras/megaupload.php:130
|
2057 |
-
msgid "File Temporarily Unavailable"
|
2058 |
-
msgstr "Datei vorübergehend nicht erreichbar"
|
2059 |
-
|
2060 |
-
#: modules/extras/megaupload.php:136
|
2061 |
-
msgid "API Error"
|
2062 |
-
msgstr "API Fehler"
|
2063 |
-
|
2064 |
-
# @ broken-link-checker
|
2065 |
-
#: modules/extras/megavideo-embed.php:24
|
2066 |
-
msgid "Megavideo Video"
|
2067 |
-
msgstr "Megavideo Video"
|
2068 |
-
|
2069 |
# @ broken-link-checker
|
2070 |
-
#: modules/extras/
|
2071 |
-
|
2072 |
-
|
|
|
2073 |
|
2074 |
# @ broken-link-checker
|
2075 |
#: modules/extras/rapidshare.php:51
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Broken Link Checker | V1.9.4.2\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
5 |
+
"POT-Creation-Date: 2014-08-19 14:12:36+00:00\n"
|
6 |
+
"PO-Revision-Date: 2014-09-10 17:36+0100\n"
|
7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_CH\n"
|
16 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Textdomain-Support: yes\n"
|
18 |
"X-Poedit-Basepath: .\n"
|
19 |
+
"X-Generator: Poedit 1.6.7\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
# @ broken-link-checker
|
69 |
msgstr "Einstellungen"
|
70 |
|
71 |
# @ broken-link-checker
|
72 |
+
#: core/core.php:585
|
73 |
msgid "Settings saved."
|
74 |
msgstr "Einstellungen gespeichert."
|
75 |
|
76 |
+
#: core/core.php:591
|
77 |
msgid "Thank you for your donation!"
|
78 |
msgstr "Besten Dank für Ihre Spende!"
|
79 |
|
80 |
# @ broken-link-checker
|
81 |
+
#: core/core.php:599
|
82 |
msgid "Complete site recheck started."
|
83 |
msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
|
84 |
|
85 |
# @ broken-link-checker
|
86 |
+
#: core/core.php:608
|
87 |
msgid "Details"
|
88 |
msgstr "Details"
|
89 |
|
90 |
# @ broken-link-checker
|
91 |
+
#: core/core.php:622
|
92 |
msgid "General"
|
93 |
msgstr "Allgemein"
|
94 |
|
95 |
# @ broken-link-checker
|
96 |
+
#: core/core.php:623
|
97 |
msgid "Look For Links In"
|
98 |
msgstr "Suchen Sie nach Links in"
|
99 |
|
100 |
# @ broken-link-checker
|
101 |
+
#: core/core.php:624
|
102 |
msgid "Which Links To Check"
|
103 |
msgstr "Welche Links überprüfen"
|
104 |
|
105 |
# @ broken-link-checker
|
106 |
+
#: core/core.php:625
|
107 |
msgid "Protocols & APIs"
|
108 |
msgstr "Protokoll & Schnittstellen"
|
109 |
|
110 |
# @ broken-link-checker
|
111 |
+
#: core/core.php:626
|
112 |
msgid "Advanced"
|
113 |
msgstr "Erweitert"
|
114 |
|
115 |
# @ broken-link-checker
|
116 |
+
#: core/core.php:641
|
117 |
msgid "Broken Link Checker Options"
|
118 |
msgstr "Broken Link Checker Optionen"
|
119 |
|
120 |
# @ broken-link-checker
|
121 |
+
#: core/core.php:683 includes/admin/table-printer.php:211
|
122 |
msgid "Status"
|
123 |
msgstr "Status"
|
124 |
|
125 |
# @ broken-link-checker
|
126 |
+
#: core/core.php:685 includes/admin/options-page-js.php:56
|
127 |
msgid "Show debug info"
|
128 |
msgstr "Debug Infos anzeigen"
|
129 |
|
130 |
# @ broken-link-checker
|
131 |
+
#: core/core.php:713
|
132 |
msgid "Check each link"
|
133 |
msgstr "Überprüfe jeden Link"
|
134 |
|
135 |
# @ broken-link-checker
|
136 |
+
#: core/core.php:718
|
137 |
msgid "Every %s hours"
|
138 |
msgstr "Alle %s Stunden"
|
139 |
|
140 |
# @ broken-link-checker
|
141 |
+
#: core/core.php:727
|
142 |
msgid ""
|
143 |
"Existing links will be checked this often. New links will usually be checked "
|
144 |
"ASAP."
|
147 |
"Links werden sofort geprüft."
|
148 |
|
149 |
# @ broken-link-checker
|
150 |
+
#: core/core.php:734
|
151 |
msgid "E-mail notifications"
|
152 |
msgstr "E-Mail Benachrichtigungen"
|
153 |
|
154 |
# @ broken-link-checker
|
155 |
+
#: core/core.php:740
|
156 |
msgid "Send me e-mail notifications about newly detected broken links"
|
157 |
msgstr ""
|
158 |
"Dem Administrator eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte "
|
159 |
"Links erkannt werden"
|
160 |
|
161 |
# @ broken-link-checker
|
162 |
+
#: core/core.php:748
|
163 |
msgid "Send authors e-mail notifications about broken links in their posts"
|
164 |
msgstr ""
|
165 |
"Den Autoren eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte Links "
|
166 |
"erkannt werden"
|
167 |
|
168 |
+
#: core/core.php:755
|
169 |
msgid "Notification e-mail address"
|
170 |
msgstr "Benachrichtigungs-E-Mail-Adresse"
|
171 |
|
172 |
+
#: core/core.php:767
|
173 |
msgid ""
|
174 |
"Leave empty to use the e-mail address specified in Settings → General."
|
175 |
msgstr ""
|
177 |
"verwenden."
|
178 |
|
179 |
# @ broken-link-checker
|
180 |
+
#: core/core.php:774
|
181 |
msgid "Link tweaks"
|
182 |
msgstr "Link Einstellungen"
|
183 |
|
184 |
# @ broken-link-checker
|
185 |
+
#: core/core.php:780
|
186 |
msgid "Apply custom formatting to broken links"
|
187 |
msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
|
188 |
|
189 |
# @ broken-link-checker
|
190 |
+
#: core/core.php:784 core/core.php:815
|
191 |
msgid "Edit CSS"
|
192 |
msgstr "Bearbeite CSS"
|
193 |
|
194 |
+
#: core/core.php:800
|
195 |
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
196 |
msgstr "Beispiel: Lorem ipsum <a %s>fehlerhafter Link</a>, dolor sit amet."
|
197 |
|
198 |
+
#: core/core.php:803 core/core.php:834
|
199 |
msgid "Click \"Save Changes\" to update example output."
|
200 |
msgstr "Drücken Sie \"Änderung übernehmen\", um das Beispiel zu aktualisieren."
|
201 |
|
202 |
# @ broken-link-checker
|
203 |
+
#: core/core.php:811
|
204 |
msgid "Apply custom formatting to removed links"
|
205 |
msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
|
206 |
|
207 |
+
#: core/core.php:831
|
208 |
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
209 |
msgstr "Beispiel: Lorem ipsum <span %s>entfernter Link</span>, dolor sit amet."
|
210 |
|
211 |
# @ broken-link-checker
|
212 |
+
#: core/core.php:844
|
213 |
msgid "Stop search engines from following broken links"
|
214 |
msgstr "Suchmaschinen von folgenden fehlerhaften Links stoppen"
|
215 |
|
216 |
+
#: core/core.php:852
|
217 |
msgctxt "settings page"
|
218 |
msgid "Suggestions"
|
219 |
msgstr "Vorschläge"
|
220 |
|
221 |
# @ broken-link-checker
|
222 |
+
#: core/core.php:858
|
223 |
msgid "Suggest alternatives to broken links"
|
224 |
msgstr "Alternativen zu fehlerhaften Links vorschlagen"
|
225 |
|
226 |
# @ broken-link-checker
|
227 |
+
#: core/core.php:874
|
228 |
msgid "Look for links in"
|
229 |
msgstr "Suchen Sie nach Links in"
|
230 |
|
231 |
# @ broken-link-checker
|
232 |
+
#: core/core.php:885
|
233 |
msgid "Post statuses"
|
234 |
msgstr "Beitrag Status"
|
235 |
|
236 |
# @ broken-link-checker
|
237 |
+
#: core/core.php:918
|
238 |
msgid "Link types"
|
239 |
msgstr "Link Typen"
|
240 |
|
241 |
# @ broken-link-checker
|
242 |
+
#: core/core.php:924
|
243 |
msgid "Error : All link parsers missing!"
|
244 |
msgstr "Fehler: Alle Link-Parser fehlen!"
|
245 |
|
246 |
# @ broken-link-checker
|
247 |
+
#: core/core.php:931
|
248 |
msgid "Exclusion list"
|
249 |
msgstr "Ausschlussliste"
|
250 |
|
251 |
# @ broken-link-checker
|
252 |
+
#: core/core.php:932
|
253 |
msgid ""
|
254 |
"Don't check links where the URL contains any of these words (one per line) :"
|
255 |
msgstr ""
|
256 |
"URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
|
257 |
|
258 |
# @ broken-link-checker
|
259 |
+
#: core/core.php:950
|
260 |
msgid "Check links using"
|
261 |
msgstr "Überprüfe Links"
|
262 |
|
263 |
# @ broken-link-checker
|
264 |
+
#: core/core.php:969 includes/links.php:867
|
265 |
msgid "Timeout"
|
266 |
msgstr "Zeitüberschreitung"
|
267 |
|
268 |
# @ broken-link-checker
|
269 |
# @ default
|
270 |
+
#: core/core.php:975 core/core.php:1044 core/core.php:3097
|
271 |
msgid "%s seconds"
|
272 |
msgstr "%s Sekunden"
|
273 |
|
274 |
# @ broken-link-checker
|
275 |
+
#: core/core.php:984
|
276 |
msgid "Links that take longer than this to load will be marked as broken."
|
277 |
msgstr ""
|
278 |
"Links die länger zum laden brauchen als hier eingetragen, gelten als "
|
279 |
"fehlerhaft."
|
280 |
|
281 |
# @ broken-link-checker
|
282 |
+
#: core/core.php:991
|
283 |
msgid "Link monitor"
|
284 |
msgstr "Link Monitor"
|
285 |
|
286 |
# @ broken-link-checker
|
287 |
+
#: core/core.php:999
|
288 |
msgid "Run continuously while the Dashboard is open"
|
289 |
msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
|
290 |
|
291 |
# @ broken-link-checker
|
292 |
+
#: core/core.php:1007
|
293 |
msgid "Run hourly in the background"
|
294 |
msgstr "Stündlich im Hintergrund arbeiten"
|
295 |
|
296 |
+
#: core/core.php:1015
|
297 |
msgid "Show the dashboard widget for"
|
298 |
msgstr "Dashboard-Widget anzeigen für"
|
299 |
|
300 |
+
#: core/core.php:1020
|
301 |
msgctxt "dashboard widget visibility"
|
302 |
msgid "Administrator"
|
303 |
msgstr "Administrator"
|
304 |
|
305 |
+
#: core/core.php:1021
|
306 |
msgctxt "dashboard widget visibility"
|
307 |
msgid "Editor and above"
|
308 |
msgstr "Redakteur und höher"
|
309 |
|
310 |
+
#: core/core.php:1022
|
311 |
msgctxt "dashboard widget visibility"
|
312 |
msgid "Nobody (disables the widget)"
|
313 |
msgstr "Niemand (deaktiviert das Widget)"
|
314 |
|
315 |
# @ broken-link-checker
|
316 |
+
#: core/core.php:1038
|
317 |
msgid "Max. execution time"
|
318 |
msgstr "Max. Ausführungszeit"
|
319 |
|
320 |
# @ broken-link-checker
|
321 |
+
#: core/core.php:1055
|
322 |
msgid ""
|
323 |
"The plugin works by periodically launching a background job that parses your "
|
324 |
"posts for links, checks the discovered URLs, and performs other time-"
|
331 |
"Instanzen laufen sollen, bevor sie gestoppt werden."
|
332 |
|
333 |
# @ broken-link-checker
|
334 |
+
#: core/core.php:1064
|
335 |
msgid "Server load limit"
|
336 |
msgstr "Server Belastungsgrenze"
|
337 |
|
338 |
+
#: core/core.php:1079
|
339 |
msgid "Current load : %s"
|
340 |
msgstr "Aktuelle Belastung: %s"
|
341 |
|
342 |
# @ broken-link-checker
|
343 |
+
#: core/core.php:1084
|
344 |
msgid ""
|
345 |
"Link checking will be suspended if the average <a href=\"%s\">server load</"
|
346 |
"a> rises above this number. Leave this field blank to disable load limiting."
|
350 |
"Feld leer, um das Ladelimit zu deaktivieren."
|
351 |
|
352 |
# @ broken-link-checker
|
353 |
+
#: core/core.php:1093
|
354 |
msgid "Not available"
|
355 |
msgstr "Nicht verfügbar"
|
356 |
|
357 |
# @ broken-link-checker
|
358 |
+
#: core/core.php:1095
|
359 |
msgid ""
|
360 |
"Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
|
361 |
"code> is present and accessible."
|
363 |
"Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</"
|
364 |
"code> vorhanden und zugänglich ist."
|
365 |
|
366 |
+
#: core/core.php:1103
|
367 |
+
msgid "Target resource usage"
|
368 |
+
msgstr "Ziel Ressourcenverbrauch"
|
369 |
+
|
370 |
+
#: core/core.php:1121
|
371 |
msgid "Logging"
|
372 |
msgstr "Protokollierung"
|
373 |
|
374 |
+
#: core/core.php:1127
|
375 |
msgid "Enable logging"
|
376 |
msgstr "Protokollierung aktivieren"
|
377 |
|
378 |
+
#: core/core.php:1134
|
379 |
msgid "Log file location"
|
380 |
msgstr "Speicherort Protokolldatei"
|
381 |
|
382 |
+
#: core/core.php:1143
|
383 |
msgctxt "log file location"
|
384 |
msgid "Default"
|
385 |
msgstr "Standard"
|
386 |
|
387 |
# @ broken-link-checker
|
388 |
+
#: core/core.php:1157
|
389 |
msgctxt "log file location"
|
390 |
msgid "Custom"
|
391 |
msgstr "Benutzerdefiniert"
|
392 |
|
393 |
# @ broken-link-checker
|
394 |
+
#: core/core.php:1169
|
395 |
msgid "Forced recheck"
|
396 |
msgstr "Erneute Überprüfung erzwingen"
|
397 |
|
398 |
# @ broken-link-checker
|
399 |
+
#: core/core.php:1172
|
400 |
msgid "Re-check all pages"
|
401 |
msgstr "Überprüfe alle Seiten noch einmal"
|
402 |
|
403 |
# @ broken-link-checker
|
404 |
+
#: core/core.php:1176
|
405 |
msgid ""
|
406 |
"The \"Nuclear Option\". Click this button to make the plugin empty its link "
|
407 |
"database and recheck the entire site from scratch."
|
410 |
"Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
|
411 |
|
412 |
# @ default
|
413 |
+
#: core/core.php:1187
|
414 |
msgid "Save Changes"
|
415 |
msgstr "Änderungen speichern"
|
416 |
|
417 |
# @ broken-link-checker
|
418 |
+
#: core/core.php:1238
|
419 |
msgid "Configure"
|
420 |
msgstr "Konfigurieren"
|
421 |
|
422 |
+
#: core/core.php:1320
|
423 |
msgid ""
|
424 |
"Enter the names of custom fields you want to check (one per line). If a "
|
425 |
"field contains HTML code, prefix its name with <code>html:</code>. For "
|
431 |
"code>."
|
432 |
|
433 |
# @ broken-link-checker
|
434 |
+
#: core/core.php:1451 core/core.php:1534 core/core.php:1566
|
435 |
msgid "Database error : %s"
|
436 |
msgstr "Datenbank Fehler: %s"
|
437 |
|
438 |
# @ broken-link-checker
|
439 |
+
#: core/core.php:1516
|
440 |
msgid "You must enter a filter name!"
|
441 |
msgstr "Sie müssen einen Filter Namen eingeben!"
|
442 |
|
443 |
# @ broken-link-checker
|
444 |
+
#: core/core.php:1520
|
445 |
msgid "Invalid search query."
|
446 |
msgstr "Ungültige Suchanfrage."
|
447 |
|
448 |
# @ broken-link-checker
|
449 |
+
#: core/core.php:1529
|
450 |
msgid "Filter \"%s\" created"
|
451 |
msgstr "Filter \"%s\" erstellt"
|
452 |
|
453 |
# @ broken-link-checker
|
454 |
+
#: core/core.php:1556
|
455 |
msgid "Filter ID not specified."
|
456 |
msgstr "Link ID nicht spezifiziert."
|
457 |
|
458 |
# @ broken-link-checker
|
459 |
+
#: core/core.php:1563
|
460 |
msgid "Filter deleted"
|
461 |
msgstr "Filter gelöscht"
|
462 |
|
463 |
# @ broken-link-checker
|
464 |
+
#: core/core.php:1610
|
465 |
msgid "Replaced %d redirect with a direct link"
|
466 |
msgid_plural "Replaced %d redirects with direct links"
|
467 |
msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
|
468 |
msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
|
469 |
|
470 |
# @ broken-link-checker
|
471 |
+
#: core/core.php:1621
|
472 |
msgid "Failed to fix %d redirect"
|
473 |
msgid_plural "Failed to fix %d redirects"
|
474 |
msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
|
475 |
msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
|
476 |
|
477 |
# @ broken-link-checker
|
478 |
+
#: core/core.php:1632
|
479 |
msgid "None of the selected links are redirects!"
|
480 |
msgstr "Keiner der ausgewählten Links sind Umleitungen!"
|
481 |
|
482 |
# @ broken-link-checker
|
483 |
+
#: core/core.php:1710
|
484 |
msgid "%d link updated."
|
485 |
msgid_plural "%d links updated."
|
486 |
msgstr[0] "Link %d aktualisiert."
|
487 |
msgstr[1] "Links %d aktualisiert."
|
488 |
|
489 |
# @ broken-link-checker
|
490 |
+
#: core/core.php:1721
|
491 |
msgid "Failed to update %d link."
|
492 |
msgid_plural "Failed to update %d links."
|
493 |
msgstr[0] "Link %d konnte nicht aktualisiert werden."
|
494 |
msgstr[1] "Links %d konnten nicht aktualisiert werden."
|
495 |
|
496 |
# @ broken-link-checker
|
497 |
+
#: core/core.php:1810
|
498 |
msgid "%d link removed"
|
499 |
msgid_plural "%d links removed"
|
500 |
msgstr[0] "%d Link entfernt"
|
501 |
msgstr[1] "%d Links entfernt"
|
502 |
|
503 |
# @ broken-link-checker
|
504 |
+
#: core/core.php:1821
|
505 |
msgid "Failed to remove %d link"
|
506 |
msgid_plural "Failed to remove %d links"
|
507 |
msgstr[0] "Link %d konnte nicht entfernt werden"
|
508 |
msgstr[1] "Links %d konnten nicht entfernt werden"
|
509 |
|
510 |
# @ default
|
511 |
+
#: core/core.php:1930
|
512 |
msgid ""
|
513 |
"%d item was skipped because it can't be moved to the Trash. You need to "
|
514 |
"delete it manually."
|
523 |
"verschoben werden können. Löschen Sie diese manuell."
|
524 |
|
525 |
# @ broken-link-checker
|
526 |
+
#: core/core.php:1952
|
527 |
msgid "Didn't find anything to delete!"
|
528 |
msgstr "Nichts gefunden um zu löschen!"
|
529 |
|
530 |
# @ broken-link-checker
|
531 |
+
#: core/core.php:1980
|
532 |
msgid "%d link scheduled for rechecking"
|
533 |
msgid_plural "%d links scheduled for rechecking"
|
534 |
msgstr[0] "%d Link zur erneuten Überprüfung geplant"
|
535 |
msgstr[1] "%d Links zur erneuten Überprüfung geplant"
|
536 |
|
537 |
# @ broken-link-checker
|
538 |
+
#: core/core.php:2026 core/core.php:2715
|
539 |
msgid "This link was manually marked as working by the user."
|
540 |
msgstr ""
|
541 |
"Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
|
542 |
|
543 |
# @ broken-link-checker
|
544 |
+
#: core/core.php:2033
|
545 |
msgid "Couldn't modify link %d"
|
546 |
msgstr "Link %d konnte nicht geändert werden"
|
547 |
|
548 |
# @ broken-link-checker
|
549 |
+
#: core/core.php:2043
|
550 |
msgid "%d link marked as not broken"
|
551 |
msgid_plural "%d links marked as not broken"
|
552 |
msgstr[0] "%d Link als nicht fehlerhaft markiert"
|
553 |
msgstr[1] "%d Links als nicht fehlerhaft markiert"
|
554 |
|
555 |
# @ broken-link-checker
|
556 |
+
#: core/core.php:2083
|
557 |
msgid "Table columns"
|
558 |
msgstr "Tabellenspalten"
|
559 |
|
560 |
# @ default
|
561 |
+
#: core/core.php:2102
|
562 |
msgid "Show on screen"
|
563 |
msgstr "Auf dem Bildschirm anzeigen"
|
564 |
|
565 |
# @ broken-link-checker
|
566 |
+
#: core/core.php:2109
|
567 |
msgid "links"
|
568 |
msgstr "Links"
|
569 |
|
570 |
# @ default
|
571 |
# @ broken-link-checker
|
572 |
+
#: core/core.php:2110 includes/admin/table-printer.php:171
|
573 |
msgid "Apply"
|
574 |
msgstr "Anwenden"
|
575 |
|
576 |
# @ broken-link-checker
|
577 |
+
#: core/core.php:2114
|
578 |
msgid "Misc"
|
579 |
msgstr "Sonstige"
|
580 |
|
581 |
# @ broken-link-checker
|
582 |
+
#: core/core.php:2129
|
583 |
msgid "Highlight links broken for at least %s days"
|
584 |
msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
|
585 |
|
586 |
# @ broken-link-checker
|
587 |
+
#: core/core.php:2138
|
588 |
msgid "Color-code status codes"
|
589 |
msgstr "Farb-Code Status Codes"
|
590 |
|
591 |
# @ broken-link-checker
|
592 |
+
#: core/core.php:2155 core/core.php:2700 core/core.php:2740 core/core.php:2773
|
593 |
+
#: core/core.php:2860
|
594 |
msgid "You're not allowed to do that!"
|
595 |
msgstr "Sie haben nicht die Erlaubnis das zu tun!"
|
596 |
|
597 |
# @ broken-link-checker
|
598 |
+
#: core/core.php:2570
|
599 |
msgid "View broken links"
|
600 |
msgstr "Fehlerhafte Links anschauen"
|
601 |
|
602 |
# @ broken-link-checker
|
603 |
+
#: core/core.php:2571
|
604 |
msgid "Found %d broken link"
|
605 |
msgid_plural "Found %d broken links"
|
606 |
msgstr[0] "%d fehlerhafte Links gefunden"
|
607 |
msgstr[1] "%d fehlerhafte Links gefunden"
|
608 |
|
609 |
# @ broken-link-checker
|
610 |
+
#: core/core.php:2577
|
611 |
msgid "No broken links found."
|
612 |
msgstr "Keine fehlerhaften Links gefunden."
|
613 |
|
614 |
# @ broken-link-checker
|
615 |
+
#: core/core.php:2584
|
616 |
msgid "%d URL in the work queue"
|
617 |
msgid_plural "%d URLs in the work queue"
|
618 |
msgstr[0] "%d URL in der Warteschlange"
|
619 |
msgstr[1] "%d URLs in der Warteschlange"
|
620 |
|
621 |
# @ broken-link-checker
|
622 |
+
#: core/core.php:2587
|
623 |
msgid "No URLs in the work queue."
|
624 |
msgstr "Keine URLs in der Warteschlange."
|
625 |
|
626 |
# @ broken-link-checker
|
627 |
+
#: core/core.php:2593
|
628 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
629 |
msgid "%d unique URL"
|
630 |
msgid_plural "%d unique URLs"
|
632 |
msgstr[1] "%d eindeutige URLs"
|
633 |
|
634 |
# @ broken-link-checker
|
635 |
+
#: core/core.php:2597
|
636 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
637 |
msgid "%d link"
|
638 |
msgid_plural "%d links"
|
640 |
msgstr[1] "%d Links"
|
641 |
|
642 |
# @ broken-link-checker
|
643 |
+
#: core/core.php:2603
|
644 |
msgid "Detected %1$s in %2$s and still searching..."
|
645 |
msgstr "Endeckt %1$s in %2$s und suche immer noch ..."
|
646 |
|
647 |
# @ broken-link-checker
|
648 |
+
#: core/core.php:2609
|
649 |
msgid "Detected %1$s in %2$s."
|
650 |
msgstr "Endeckt %1$s in %2$s."
|
651 |
|
652 |
# @ broken-link-checker
|
653 |
+
#: core/core.php:2616
|
654 |
msgid "Searching your blog for links..."
|
655 |
msgstr "Durchsucht Ihr Blog nach Links ..."
|
656 |
|
657 |
# @ broken-link-checker
|
658 |
+
#: core/core.php:2618
|
659 |
msgid "No links detected."
|
660 |
msgstr "Keine Links gefunden."
|
661 |
|
662 |
# @ broken-link-checker
|
663 |
+
#: core/core.php:2644
|
664 |
msgctxt "current load"
|
665 |
msgid "Unknown"
|
666 |
msgstr "Unbekannt"
|
667 |
|
668 |
# @ broken-link-checker
|
669 |
+
#: core/core.php:2708 core/core.php:2748 core/core.php:2788 core/core.php:2870
|
670 |
msgid "Oops, I can't find the link %d"
|
671 |
msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
|
672 |
|
673 |
# @ broken-link-checker
|
674 |
+
#: core/core.php:2721 core/core.php:2758
|
675 |
msgid "Oops, couldn't modify the link!"
|
676 |
msgstr "Hoppla, der Link konnte nicht geändert werden!"
|
677 |
|
678 |
# @ broken-link-checker
|
679 |
+
#: core/core.php:2724 core/core.php:2761 core/core.php:2896
|
680 |
msgid "Error : link_id not specified"
|
681 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
682 |
|
683 |
# @ broken-link-checker
|
684 |
+
#: core/core.php:2779
|
685 |
msgid "Error : link_id or new_url not specified"
|
686 |
msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
|
687 |
|
688 |
# @ broken-link-checker
|
689 |
+
#: core/core.php:2797
|
690 |
msgid "Oops, the new URL is invalid!"
|
691 |
msgstr "Hoppla, die neue URL funktioniert nicht!"
|
692 |
|
693 |
# @ broken-link-checker
|
694 |
+
#: core/core.php:2812
|
695 |
msgid "An unexpected error occurred!"
|
696 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
697 |
|
698 |
# @ broken-link-checker
|
699 |
+
#: core/core.php:2879
|
700 |
msgid "An unexpected error occured!"
|
701 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
702 |
|
703 |
# @ broken-link-checker
|
704 |
+
#: core/core.php:2905
|
705 |
msgid "You don't have sufficient privileges to access this information!"
|
706 |
msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
|
707 |
|
708 |
# @ broken-link-checker
|
709 |
+
#: core/core.php:2918
|
710 |
msgid "Error : link ID not specified"
|
711 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
712 |
|
713 |
# @ broken-link-checker
|
714 |
+
#: core/core.php:2932
|
715 |
msgid "Failed to load link details (%s)"
|
716 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
717 |
|
718 |
# @ broken-link-checker
|
719 |
#. Plugin Name of the plugin/theme
|
720 |
+
#: core/core.php:2986
|
721 |
msgid "Broken Link Checker"
|
722 |
msgstr "Broken Link Checker"
|
723 |
|
724 |
# @ broken-link-checker
|
725 |
+
#: core/core.php:3006
|
726 |
msgid "PHP version"
|
727 |
msgstr "PHP Version"
|
728 |
|
729 |
# @ broken-link-checker
|
730 |
+
#: core/core.php:3012
|
731 |
msgid "MySQL version"
|
732 |
msgstr "MySQL Version"
|
733 |
|
734 |
# @ broken-link-checker
|
735 |
+
#: core/core.php:3025
|
736 |
msgid ""
|
737 |
"You have an old version of CURL. Redirect detection may not work properly."
|
738 |
msgstr ""
|
740 |
"funktioniert eventuell nicht."
|
741 |
|
742 |
# @ broken-link-checker
|
743 |
+
#: core/core.php:3037 core/core.php:3053 core/core.php:3058
|
744 |
msgid "Not installed"
|
745 |
msgstr "Nicht installiert"
|
746 |
|
747 |
# @ broken-link-checker
|
748 |
+
#: core/core.php:3040
|
749 |
msgid "CURL version"
|
750 |
msgstr "CURL Version"
|
751 |
|
752 |
# @ broken-link-checker
|
753 |
+
#: core/core.php:3046
|
754 |
msgid "Installed"
|
755 |
msgstr "Installiert"
|
756 |
|
757 |
# @ broken-link-checker
|
758 |
+
#: core/core.php:3059
|
759 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
760 |
msgstr ""
|
761 |
"Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin "
|
762 |
"funktioniert!"
|
763 |
|
764 |
# @ broken-link-checker
|
765 |
+
#: core/core.php:3070
|
766 |
msgid "On"
|
767 |
msgstr "An"
|
768 |
|
769 |
# @ broken-link-checker
|
770 |
+
#: core/core.php:3071
|
771 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
772 |
msgstr ""
|
773 |
"Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode "
|
774 |
"aktiviert ist."
|
775 |
|
776 |
# @ broken-link-checker
|
777 |
+
#: core/core.php:3076 core/core.php:3090
|
778 |
msgid "Off"
|
779 |
msgstr "Aus"
|
780 |
|
781 |
# @ broken-link-checker
|
782 |
+
#: core/core.php:3084
|
783 |
msgid "On ( %s )"
|
784 |
msgstr "An (%s)"
|
785 |
|
786 |
# @ broken-link-checker
|
787 |
+
#: core/core.php:3085
|
788 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
789 |
msgstr ""
|
790 |
"Umleitungen werden eventuell als fehlerhafte Links erkannt, falls "
|
791 |
"open_basedir aktiviert ist."
|
792 |
|
793 |
# @ broken-link-checker
|
794 |
+
#: core/core.php:3114
|
795 |
msgid ""
|
796 |
"If this value is zero even after several page reloads you have probably "
|
797 |
"encountered a bug."
|
800 |
"ein Fehler aufgetreten."
|
801 |
|
802 |
# @ broken-link-checker
|
803 |
+
#: core/core.php:3237 core/core.php:3356
|
804 |
msgid "[%s] Broken links detected"
|
805 |
msgstr "[%s] Fehlerhafte Links entdeckt"
|
806 |
|
807 |
# @ broken-link-checker
|
808 |
+
#: core/core.php:3242
|
809 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
810 |
msgid_plural ""
|
811 |
"Broken Link Checker has detected %d new broken links on your site."
|
815 |
"Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
|
816 |
|
817 |
# @ broken-link-checker
|
818 |
+
#: core/core.php:3273
|
819 |
msgid "Here's a list of the first %d broken links:"
|
820 |
msgid_plural "Here's a list of the first %d broken links:"
|
821 |
msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
822 |
msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
823 |
|
824 |
# @ broken-link-checker
|
825 |
+
#: core/core.php:3282
|
826 |
msgid "Here's a list of the new broken links: "
|
827 |
msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
|
828 |
|
829 |
# @ broken-link-checker
|
830 |
+
#: core/core.php:3291
|
831 |
msgid "Link text : %s"
|
832 |
msgstr "Linktext: %s"
|
833 |
|
834 |
# @ broken-link-checker
|
835 |
+
#: core/core.php:3292
|
836 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
837 |
msgstr "Link URL: <a href=\"%s\">%s</a>"
|
838 |
|
839 |
# @ broken-link-checker
|
840 |
+
#: core/core.php:3293
|
841 |
msgid "Source : %s"
|
842 |
msgstr "Quelle: %s"
|
843 |
|
844 |
# @ brokenk-link-checker
|
845 |
+
#: core/core.php:3307
|
846 |
msgid "You can see all broken links here:"
|
847 |
msgstr "Hier sehen Sie alle fehlerhaften Links:"
|
848 |
|
849 |
# @ broken-link-checker
|
850 |
+
#: core/core.php:3361
|
851 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
852 |
msgid_plural ""
|
853 |
"Broken Link Checker has detected %d new broken links in your posts."
|
883 |
"nicht unterstützt."
|
884 |
|
885 |
# @ broken-link-checker
|
886 |
+
#: includes/admin/db-upgrade.php:97
|
887 |
msgid "Failed to delete old DB tables. Database error : %s"
|
888 |
msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
|
889 |
|
893 |
msgstr "Warte ..."
|
894 |
|
895 |
# @ broken-link-checker
|
896 |
+
#: includes/admin/links-page-js.php:107 includes/admin/table-printer.php:671
|
897 |
msgid "Not broken"
|
898 |
msgstr "Nicht fehlerhaft"
|
899 |
|
972 |
msgstr "Folgende Fehler sind aufgetreten:"
|
973 |
|
974 |
# @ broken-link-checker
|
975 |
+
#: includes/admin/links-page-js.php:585 includes/admin/table-printer.php:289
|
976 |
+
#: includes/admin/table-printer.php:665
|
977 |
msgid "Unlink"
|
978 |
msgstr "Link aufheben"
|
979 |
|
1048 |
msgstr "Linktext"
|
1049 |
|
1050 |
# @ broken-link-checker
|
1051 |
+
#: includes/admin/search-form.php:45 includes/admin/table-printer.php:216
|
1052 |
msgid "URL"
|
1053 |
msgstr "URL"
|
1054 |
|
1055 |
# @ broken-link-checker
|
1056 |
+
#: includes/admin/search-form.php:48 includes/admin/table-printer.php:535
|
1057 |
msgid "HTTP code"
|
1058 |
msgstr "HTTP Code"
|
1059 |
|
1083 |
msgstr "Suche Links"
|
1084 |
|
1085 |
# @ broken-link-checker
|
1086 |
+
#: includes/admin/search-form.php:113 includes/admin/table-printer.php:365
|
1087 |
+
#: includes/admin/table-printer.php:695 includes/admin/table-printer.php:820
|
1088 |
msgid "Cancel"
|
1089 |
msgstr "Abbrechen"
|
1090 |
|
1091 |
+
#: includes/admin/sidebar.php:25
|
1092 |
msgid "More plugins by Janis Elsts"
|
1093 |
msgstr "Weitere Plugins von Janis Elsts"
|
1094 |
|
1095 |
+
#: includes/admin/sidebar.php:48
|
1096 |
msgid "Donate $10, $20 or $50!"
|
1097 |
msgstr "Spenden Sie $10, $20 oder $50!"
|
1098 |
|
1099 |
+
#: includes/admin/sidebar.php:51
|
1100 |
msgid ""
|
1101 |
"If you like this plugin, please donate to support development and "
|
1102 |
"maintenance!"
|
1104 |
"Mögen Sie dieses Plugin, dann helfen Sie uns mit einer Spende für die "
|
1105 |
"Entwicklung und Wartung."
|
1106 |
|
1107 |
+
#: includes/admin/sidebar.php:69
|
1108 |
msgid "Return to WordPress Dashboard"
|
1109 |
msgstr "Zurück zum Wordpress Dashboard"
|
1110 |
|
1111 |
# @ broken-link-checker
|
1112 |
+
#: includes/admin/table-printer.php:188
|
1113 |
msgid "Compact View"
|
1114 |
msgstr "Kompaktansicht"
|
1115 |
|
1116 |
# @ broken-link-checker
|
1117 |
+
#: includes/admin/table-printer.php:193
|
1118 |
msgid "Detailed View"
|
1119 |
msgstr "Detailansicht"
|
1120 |
|
1121 |
# @ broken-link-checker
|
1122 |
+
#: includes/admin/table-printer.php:223
|
1123 |
msgid "Source"
|
1124 |
msgstr "Quelle"
|
1125 |
|
1126 |
# @ broken-link-checker
|
1127 |
+
#: includes/admin/table-printer.php:229
|
1128 |
msgid "Link Text"
|
1129 |
msgstr "Linktext"
|
1130 |
|
1131 |
# @ broken-link-checker
|
1132 |
+
#: includes/admin/table-printer.php:236
|
1133 |
msgid "Redirect URL"
|
1134 |
msgstr "URL umleiten"
|
1135 |
|
1136 |
# @ broken-link-checker
|
1137 |
+
#: includes/admin/table-printer.php:284
|
1138 |
msgid "Bulk Actions"
|
1139 |
msgstr "Massenänderung"
|
1140 |
|
1141 |
# @ broken-link-checker
|
1142 |
+
#: includes/admin/table-printer.php:285 includes/admin/table-printer.php:662
|
1143 |
msgid "Edit URL"
|
1144 |
msgstr "Bearbeite URL"
|
1145 |
|
1146 |
# @ broken-link-checker
|
1147 |
+
#: includes/admin/table-printer.php:286
|
1148 |
msgid "Recheck"
|
1149 |
msgstr "Erneut überprüfen"
|
1150 |
|
1151 |
# @ broken-link-checker
|
1152 |
+
#: includes/admin/table-printer.php:287
|
1153 |
msgid "Fix redirects"
|
1154 |
msgstr "Feste Umleitungen"
|
1155 |
|
1156 |
# @ broken-link-checker
|
1157 |
+
#: includes/admin/table-printer.php:288
|
1158 |
msgid "Mark as not broken"
|
1159 |
msgstr "Als nicht fehlerhaft markieren"
|
1160 |
|
1161 |
# @ broken-link-checker
|
1162 |
+
#: includes/admin/table-printer.php:292
|
1163 |
msgid "Move sources to Trash"
|
1164 |
msgstr "Verschiebe Quelle in den Papierkorb"
|
1165 |
|
1166 |
# @ broken-link-checker
|
1167 |
+
#: includes/admin/table-printer.php:294
|
1168 |
msgid "Delete sources"
|
1169 |
msgstr "Quellen löschen"
|
1170 |
|
1171 |
# @ default
|
1172 |
+
#: includes/admin/table-printer.php:309
|
1173 |
msgid "«"
|
1174 |
msgstr "«"
|
1175 |
|
1176 |
# @ default
|
1177 |
+
#: includes/admin/table-printer.php:310
|
1178 |
msgid "»"
|
1179 |
msgstr "»"
|
1180 |
|
1181 |
# @ broken-link-checker
|
1182 |
+
#: includes/admin/table-printer.php:318
|
1183 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1184 |
msgstr "Anzeigen %s–%s von <span class=\"current-link-count\">%s</span>"
|
1185 |
|
1186 |
# @ broken-link-checker
|
1187 |
+
#: includes/admin/table-printer.php:341
|
1188 |
msgid "Bulk Edit URLs"
|
1189 |
msgstr "Mehrere URLs bearbeiten"
|
1190 |
|
1191 |
+
#: includes/admin/table-printer.php:343
|
1192 |
msgid "Find"
|
1193 |
msgstr "Finden"
|
1194 |
|
1195 |
+
#: includes/admin/table-printer.php:347
|
1196 |
msgid "Replace with"
|
1197 |
msgstr "Ersetzen mit"
|
1198 |
|
1199 |
# @ broken-link-checker
|
1200 |
+
#: includes/admin/table-printer.php:355
|
1201 |
msgid "Case sensitive"
|
1202 |
msgstr "Gross- und Kleinschreibung"
|
1203 |
|
1204 |
+
#: includes/admin/table-printer.php:359
|
1205 |
msgid "Regular expression"
|
1206 |
msgstr "Regulärer Ausdruck"
|
1207 |
|
1208 |
# @ broken-link-checker
|
1209 |
+
#: includes/admin/table-printer.php:367 includes/admin/table-printer.php:821
|
1210 |
msgid "Update"
|
1211 |
msgstr "Aktualisieren"
|
1212 |
|
1213 |
# @ broken-link-checker
|
1214 |
+
#: includes/admin/table-printer.php:520
|
1215 |
msgid "Post published on"
|
1216 |
msgstr "Beitrag publiziert am"
|
1217 |
|
1218 |
# @ broken-link-checker
|
1219 |
+
#: includes/admin/table-printer.php:525
|
1220 |
msgid "Link last checked"
|
1221 |
msgstr "Link zuletzt geprüft"
|
1222 |
|
1223 |
# @ broken-link-checker
|
1224 |
+
#: includes/admin/table-printer.php:529
|
1225 |
msgid "Never"
|
1226 |
msgstr "Nie"
|
1227 |
|
1228 |
# @ broken-link-checker
|
1229 |
+
#: includes/admin/table-printer.php:540
|
1230 |
msgid "Response time"
|
1231 |
msgstr "Reaktionszeit"
|
1232 |
|
1233 |
# @ broken-link-checker
|
1234 |
+
#: includes/admin/table-printer.php:542
|
1235 |
msgid "%2.3f seconds"
|
1236 |
msgstr "%2.3f Sekunden"
|
1237 |
|
1238 |
# @ broken-link-checker
|
1239 |
+
#: includes/admin/table-printer.php:545
|
1240 |
msgid "Final URL"
|
1241 |
msgstr "Endgültige URL"
|
1242 |
|
1243 |
# @ broken-link-checker
|
1244 |
+
#: includes/admin/table-printer.php:550
|
1245 |
msgid "Redirect count"
|
1246 |
msgstr "Weiterleitung Anzahl"
|
1247 |
|
1248 |
# @ broken-link-checker
|
1249 |
+
#: includes/admin/table-printer.php:555
|
1250 |
msgid "Instance count"
|
1251 |
msgstr "Instanz Anzahl"
|
1252 |
|
1253 |
# @ broken-link-checker
|
1254 |
+
#: includes/admin/table-printer.php:564
|
1255 |
msgid "This link has failed %d time."
|
1256 |
msgid_plural "This link has failed %d times."
|
1257 |
msgstr[0] "Dieser Link schlug %d mal fehl."
|
1258 |
msgstr[1] "Dieser Link schlug %d mal fehl."
|
1259 |
|
1260 |
# @ broken-link-checker
|
1261 |
+
#: includes/admin/table-printer.php:572
|
1262 |
msgid "This link has been broken for %s."
|
1263 |
msgstr "Dieser Links ist fehlerhaft seit %s."
|
1264 |
|
1265 |
# @ broken-link-checker
|
1266 |
+
#: includes/admin/table-printer.php:583
|
1267 |
msgid "Log"
|
1268 |
msgstr "Log"
|
1269 |
|
1270 |
# @ broken-link-checker
|
1271 |
+
#: includes/admin/table-printer.php:608
|
1272 |
msgid "Show more info about this link"
|
1273 |
msgstr "Mehr Informationen über diesen Link anzeigen"
|
1274 |
|
1275 |
# @ broken-link-checker
|
1276 |
+
#: includes/admin/table-printer.php:626
|
1277 |
msgctxt "checked how long ago"
|
1278 |
msgid "Checked"
|
1279 |
msgstr "Geprüft"
|
1280 |
|
1281 |
# @ broken-link-checker
|
1282 |
+
#: includes/admin/table-printer.php:642
|
1283 |
msgid "Broken for"
|
1284 |
msgstr "Fehlerhaft für"
|
1285 |
|
1286 |
# @ default
|
1287 |
+
#: includes/admin/table-printer.php:662
|
1288 |
msgid "Edit this link"
|
1289 |
msgstr "Diesen Link bearbeiten"
|
1290 |
|
1291 |
# @ broken-link-checker
|
1292 |
+
#: includes/admin/table-printer.php:664
|
1293 |
msgid "Remove this link from all posts"
|
1294 |
msgstr "Löschen Sie diesen Link von allen Beiträgen"
|
1295 |
|
1296 |
# @ broken-link-checker
|
1297 |
+
#: includes/admin/table-printer.php:670
|
1298 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
1299 |
msgstr ""
|
1300 |
"Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als "
|
1301 |
"gültig"
|
1302 |
|
1303 |
+
#: includes/admin/table-printer.php:678
|
1304 |
msgid "Hide this link and do not report it again unless its status changes"
|
1305 |
msgstr ""
|
1306 |
"Verstecken Sie diesen Link und melden ihn nicht wieder, auch wenn sein "
|
1307 |
"Status ändert"
|
1308 |
|
1309 |
+
#: includes/admin/table-printer.php:679
|
1310 |
msgid "Dismiss"
|
1311 |
msgstr "Ausblenden"
|
1312 |
|
1313 |
+
#: includes/admin/table-printer.php:684
|
1314 |
msgid "Undismiss this link"
|
1315 |
msgstr "Link wieder einblenden"
|
1316 |
|
1317 |
+
#: includes/admin/table-printer.php:685
|
1318 |
msgid "Undismiss"
|
1319 |
msgstr "Einblenden"
|
1320 |
|
1321 |
# @ broken-link-checker
|
1322 |
+
#: includes/admin/table-printer.php:696
|
1323 |
msgid "Update URL"
|
1324 |
msgstr "Aktualisiere URL"
|
1325 |
|
1326 |
# @ broken-link-checker
|
1327 |
+
#: includes/admin/table-printer.php:723
|
1328 |
msgid "[An orphaned link! This is a bug.]"
|
1329 |
msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
|
1330 |
|
1331 |
# @ broken-link-checker
|
1332 |
+
#: includes/admin/table-printer.php:800
|
1333 |
msgctxt "inline editor title"
|
1334 |
msgid "Edit Link"
|
1335 |
msgstr "Link bearbeiten"
|
1336 |
|
1337 |
# @ broken-link-checker
|
1338 |
+
#: includes/admin/table-printer.php:803
|
1339 |
msgctxt "inline link editor"
|
1340 |
msgid "Text"
|
1341 |
msgstr "Text"
|
1342 |
|
1343 |
# @ broken-link-checker
|
1344 |
+
#: includes/admin/table-printer.php:808
|
1345 |
msgctxt "inline link editor"
|
1346 |
msgid "URL"
|
1347 |
msgstr "URL"
|
1348 |
|
1349 |
+
#: includes/admin/table-printer.php:813
|
1350 |
msgctxt "inline link editor"
|
1351 |
msgid "Suggestions"
|
1352 |
msgstr "Vorschläge"
|
1353 |
|
1354 |
+
#: includes/admin/table-printer.php:833
|
1355 |
msgid "Use this URL"
|
1356 |
msgstr "URL verwenden"
|
1357 |
|
1358 |
# @ default
|
1359 |
+
#: includes/any-post.php:407 modules/containers/blogroll.php:46
|
1360 |
#: modules/containers/comment.php:153 modules/containers/custom_field.php:207
|
1361 |
msgid "Edit"
|
1362 |
msgstr "Bearbeiten"
|
1363 |
|
1364 |
# @ default
|
1365 |
+
#: includes/any-post.php:415 modules/containers/custom_field.php:213
|
1366 |
msgid "Move this item to the Trash"
|
1367 |
msgstr "Element in den Papierkorb verschieben"
|
1368 |
|
1369 |
# @ default
|
1370 |
+
#: includes/any-post.php:417 modules/containers/custom_field.php:215
|
1371 |
msgid "Trash"
|
1372 |
msgstr "Papierkorb"
|
1373 |
|
1374 |
# @ default
|
1375 |
+
#: includes/any-post.php:422 modules/containers/custom_field.php:220
|
1376 |
msgid "Delete this item permanently"
|
1377 |
msgstr "Element endgültig löschen"
|
1378 |
|
1379 |
# @ default
|
1380 |
+
#: includes/any-post.php:424 modules/containers/blogroll.php:47
|
1381 |
#: modules/containers/custom_field.php:222
|
1382 |
msgid "Delete"
|
1383 |
msgstr "Löschen"
|
1384 |
|
1385 |
# @ default
|
1386 |
+
#: includes/any-post.php:437
|
1387 |
msgid "Preview “%s”"
|
1388 |
msgstr "Vorschau “%s”"
|
1389 |
|
1390 |
# @ default
|
1391 |
+
#: includes/any-post.php:438
|
1392 |
msgid "Preview"
|
1393 |
msgstr "Vorschau"
|
1394 |
|
1395 |
# @ default
|
1396 |
+
#: includes/any-post.php:445
|
1397 |
msgid "View “%s”"
|
1398 |
msgstr "Ansehen “%s”"
|
1399 |
|
1400 |
# @ default
|
1401 |
+
#: includes/any-post.php:446 modules/containers/comment.php:166
|
1402 |
#: modules/containers/custom_field.php:227
|
1403 |
msgid "View"
|
1404 |
msgstr "Ansehen"
|
1405 |
|
1406 |
# @ default
|
1407 |
+
#: includes/any-post.php:465 modules/containers/custom_field.php:207
|
1408 |
msgid "Edit this item"
|
1409 |
msgstr "Bearbeiten Sie dieses Element"
|
1410 |
|
1411 |
# @ broken-link-checker
|
1412 |
+
#: includes/any-post.php:529 modules/containers/blogroll.php:83
|
1413 |
#: modules/containers/comment.php:43
|
1414 |
msgid "Nothing to update"
|
1415 |
msgstr "Nichts zu aktualisieren"
|
1416 |
|
1417 |
# @ broken-link-checker
|
1418 |
+
#: includes/any-post.php:539
|
1419 |
msgid "Updating post %d failed"
|
1420 |
msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
|
1421 |
|
1422 |
# @ broken-link-checker
|
1423 |
+
#: includes/any-post.php:576 modules/containers/custom_field.php:294
|
1424 |
msgid "Failed to delete post \"%s\" (%d)"
|
1425 |
msgstr "Löschen des Beitrages \"%s\" (%d) schlug fehl"
|
1426 |
|
1427 |
# @ broken-link-checker
|
1428 |
+
#: includes/any-post.php:595 modules/containers/custom_field.php:313
|
1429 |
msgid ""
|
1430 |
"Can't move post \"%s\" (%d) to the trash because the trash feature is "
|
1431 |
"disabled"
|
1434 |
"diese Funktion deaktiviert ist"
|
1435 |
|
1436 |
# @ broken-link-checker
|
1437 |
+
#: includes/any-post.php:615 modules/containers/custom_field.php:332
|
1438 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
1439 |
msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
|
1440 |
|
1441 |
# @ broken-link-checker
|
1442 |
+
#: includes/any-post.php:723
|
1443 |
msgid "%d post deleted."
|
1444 |
msgid_plural "%d posts deleted."
|
1445 |
msgstr[0] "%d Artikel gelöscht."
|
1446 |
msgstr[1] "%d Artikel gelöscht."
|
1447 |
|
1448 |
# @ broken-link-checker
|
1449 |
+
#: includes/any-post.php:725
|
1450 |
msgid "%d page deleted."
|
1451 |
msgid_plural "%d pages deleted."
|
1452 |
msgstr[0] "%d Seite gelöscht."
|
1453 |
msgstr[1] "%d Seiten gelöscht."
|
1454 |
|
1455 |
# @ broken-link-checker
|
1456 |
+
#: includes/any-post.php:727
|
1457 |
msgid "%d \"%s\" deleted."
|
1458 |
msgid_plural "%d \"%s\" deleted."
|
1459 |
msgstr[0] "%d \"%s\" gelöscht."
|
1460 |
msgstr[1] "%d \"%s\" gelöscht."
|
1461 |
|
1462 |
# @ broken-link-checker
|
1463 |
+
#: includes/any-post.php:746
|
1464 |
msgid "%d post moved to the Trash."
|
1465 |
msgid_plural "%d posts moved to the Trash."
|
1466 |
msgstr[0] "%d Artikel in den Papierkorb verschoben."
|
1467 |
msgstr[1] "%d Artikel in den Papierkorb verschoben."
|
1468 |
|
1469 |
# @ broken-link-checker
|
1470 |
+
#: includes/any-post.php:748
|
1471 |
msgid "%d page moved to the Trash."
|
1472 |
msgid_plural "%d pages moved to the Trash."
|
1473 |
msgstr[0] "%d Seite in den Papierkorb verschoben."
|
1474 |
msgstr[1] "%d Seiten in den Papierkorb verschoben."
|
1475 |
|
1476 |
# @ broken-link-checker
|
1477 |
+
#: includes/any-post.php:750
|
1478 |
msgid "%d \"%s\" moved to the Trash."
|
1479 |
msgid_plural "%d \"%s\" moved to the Trash."
|
1480 |
msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
|
1488 |
msgstr[1] "%d '%s' wurden gelöscht"
|
1489 |
|
1490 |
# @ broken-link-checker
|
1491 |
+
#: includes/containers.php:882 includes/containers.php:900
|
1492 |
msgid "Container type '%s' not recognized"
|
1493 |
msgstr "Container Typ '%s' nicht erkannt"
|
1494 |
|
1531 |
# @ broken-link-checker
|
1532 |
#: includes/extra-strings.php:8
|
1533 |
msgctxt "module name"
|
|
|
|
|
|
|
|
|
|
|
|
|
1534 |
msgid "Embedded Vimeo videos"
|
1535 |
msgstr "Eingebettete Vimeo Videos"
|
1536 |
|
1537 |
# @ broken-link-checker
|
1538 |
+
#: includes/extra-strings.php:9
|
1539 |
msgctxt "module name"
|
1540 |
msgid "Embedded YouTube playlists (old embed code)"
|
1541 |
msgstr "Eingebettete YouTube Wiedergabelisten (alter Code)"
|
1542 |
|
1543 |
# @ broken-link-checker
|
1544 |
+
#: includes/extra-strings.php:10
|
1545 |
msgctxt "module name"
|
1546 |
msgid "Embedded YouTube videos"
|
1547 |
msgstr "Eingebettete YouTube Videos"
|
1548 |
|
1549 |
# @ broken-link-checker
|
1550 |
+
#: includes/extra-strings.php:11
|
1551 |
msgctxt "module name"
|
1552 |
msgid "Embedded YouTube videos (old embed code)"
|
1553 |
msgstr "Eingebettete YouTube Videos (alter Code)"
|
1554 |
|
1555 |
# @ broken-link-checker
|
1556 |
+
#: includes/extra-strings.php:12
|
|
|
|
|
|
|
|
|
|
|
|
|
1557 |
msgctxt "module name"
|
1558 |
msgid "HTML images"
|
1559 |
msgstr "HTML Bilder"
|
1560 |
|
1561 |
# @ broken-link-checker
|
1562 |
+
#: includes/extra-strings.php:13
|
1563 |
msgctxt "module name"
|
1564 |
msgid "HTML links"
|
1565 |
msgstr "HTML Links"
|
1566 |
|
1567 |
# @ broken-link-checker
|
1568 |
+
#: includes/extra-strings.php:14
|
1569 |
msgctxt "module name"
|
1570 |
msgid "MediaFire API"
|
1571 |
msgstr "MediaFire API"
|
1572 |
|
1573 |
# @ broken-link-checker
|
1574 |
+
#: includes/extra-strings.php:15
|
|
|
|
|
|
|
|
|
|
|
|
|
1575 |
msgctxt "module name"
|
1576 |
msgid "Plaintext URLs"
|
1577 |
msgstr "Klartext URLs"
|
1578 |
|
1579 |
# @ broken-link-checker
|
1580 |
+
#: includes/extra-strings.php:16
|
1581 |
msgctxt "module name"
|
1582 |
msgid "RapidShare API"
|
1583 |
msgstr "RapidShare API"
|
1584 |
|
1585 |
+
#: includes/extra-strings.php:17
|
1586 |
msgctxt "module name"
|
1587 |
msgid "Smart YouTube httpv:// URLs"
|
1588 |
msgstr "Smart YouTube httpv:// URLs"
|
1589 |
|
1590 |
# @ broken-link-checker
|
1591 |
+
#: includes/extra-strings.php:18
|
1592 |
msgctxt "module name"
|
1593 |
msgid "YouTube API"
|
1594 |
msgstr "YouTube API"
|
1595 |
|
1596 |
# @ broken-link-checker
|
1597 |
+
#: includes/extra-strings.php:19
|
1598 |
msgctxt "module name"
|
1599 |
msgid "Posts"
|
1600 |
msgstr "Beiträge"
|
1601 |
|
1602 |
# @ broken-link-checker
|
1603 |
+
#: includes/extra-strings.php:20
|
1604 |
msgctxt "module name"
|
1605 |
msgid "Pages"
|
1606 |
msgstr "Seiten"
|
1736 |
|
1737 |
# @ link status
|
1738 |
# @ broken-link-checker
|
1739 |
+
#: includes/links.php:863 modules/checkers/http.php:304
|
1740 |
#: modules/extras/mediafire.php:101
|
1741 |
msgid "Unknown Error"
|
1742 |
msgstr "Unbekannter Fehler"
|
1752 |
msgstr "Falsch positiv"
|
1753 |
|
1754 |
# @ broken-link-checker
|
1755 |
+
#: includes/links.php:893 modules/extras/rapidshare.php:145
|
|
|
1756 |
#: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
|
1757 |
msgctxt "link status"
|
1758 |
msgid "OK"
|
1759 |
msgstr "OK"
|
1760 |
|
1761 |
# @ broken-link-checker
|
1762 |
+
#: includes/parsers.php:117
|
1763 |
msgid "Editing is not implemented in the '%s' parser"
|
1764 |
msgstr "Editieren ist nicht im '%s' Parser implementiert"
|
1765 |
|
1766 |
# @ broken-link-checker
|
1767 |
+
#: includes/parsers.php:132
|
1768 |
msgid "Unlinking is not implemented in the '%s' parser"
|
1769 |
msgstr "Aufheben der Verknüpfung ist nicht im '%s' Parser implementiert"
|
1770 |
|
1839 |
msgstr[1] "%d Monate vergangen"
|
1840 |
|
1841 |
# @ broken-link-checker
|
1842 |
+
#: modules/checkers/http.php:283
|
1843 |
msgid "Server Not Found"
|
1844 |
msgstr "Server nicht gefunden"
|
1845 |
|
1846 |
# @ broken-link-checker
|
1847 |
+
#: modules/checkers/http.php:298
|
1848 |
msgid "Connection Failed"
|
1849 |
msgstr "Verbindung fehlgeschlagen"
|
1850 |
|
1851 |
# @ broken-link-checker
|
1852 |
+
#: modules/checkers/http.php:340 modules/checkers/http.php:410
|
1853 |
msgid "HTTP code : %d"
|
1854 |
msgstr "HTTP Code: %d"
|
1855 |
|
1856 |
# @ broken-link-checker
|
1857 |
+
#: modules/checkers/http.php:342 modules/checkers/http.php:412
|
1858 |
msgid "(No response)"
|
1859 |
msgstr "(Keine Antwort)"
|
1860 |
|
1861 |
# @ broken-link-checker
|
1862 |
+
#: modules/checkers/http.php:348
|
1863 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
1864 |
msgstr ""
|
1865 |
"Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
|
1866 |
|
1867 |
# @ broken-link-checker
|
1868 |
+
#: modules/checkers/http.php:419
|
1869 |
msgid "Request timed out."
|
1870 |
msgstr "Erfordert Zeitlimit."
|
1871 |
|
1872 |
# @ broken-link-checker
|
1873 |
+
#: modules/checkers/http.php:437
|
1874 |
msgid "Using Snoopy"
|
1875 |
msgstr "Benutzt Snoopy"
|
1876 |
|
1957 |
msgstr "Kommentar"
|
1958 |
|
1959 |
# @ broken-link-checker
|
1960 |
+
#: modules/containers/comment.php:358
|
1961 |
msgid "%d comment has been deleted."
|
1962 |
msgid_plural "%d comments have been deleted."
|
1963 |
msgstr[0] "%d Kommentar wurde gelöscht."
|
1964 |
msgstr[1] "%d Kommentare wurde gelöscht."
|
1965 |
|
1966 |
# @ broken-link-checker
|
1967 |
+
#: modules/containers/comment.php:377
|
1968 |
msgid "%d comment moved to the Trash."
|
1969 |
msgid_plural "%d comments moved to the Trash."
|
1970 |
msgstr[0] "%d Kommentar in den Papierkorb verschoben."
|
2013 |
"Eingebettete Videos können mit Broken Link Checker nicht editiert werden. "
|
2014 |
"Bitte ändern oder ersetzen Sie das betreffende Video manuell."
|
2015 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016 |
# @ broken-link-checker
|
2017 |
#: modules/extras/googlevideo-embed.php:24
|
2018 |
msgid "GoogleVideo Video"
|
2023 |
msgid "Embedded GoogleVideo video"
|
2024 |
msgstr "Eingebetteter GoogleVideo Video"
|
2025 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026 |
# @ broken-link-checker
|
2027 |
+
#: modules/extras/mediafire.php:91 modules/extras/mediafire.php:96
|
2028 |
+
#: modules/extras/rapidshare.php:139
|
2029 |
+
msgid "Not Found"
|
2030 |
+
msgstr "Nicht gefunden"
|
2031 |
|
2032 |
# @ broken-link-checker
|
2033 |
#: modules/extras/rapidshare.php:51
|
languages/broken-link-checker-nl_NL.mo
CHANGED
Binary file
|
languages/broken-link-checker-nl_NL.po
CHANGED
@@ -4,7 +4,7 @@ msgstr ""
|
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
5 |
"POT-Creation-Date: 2014-08-19 14:12:36+00:00\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Brokenlinkchecker <gvmelle@gmail.com>\n"
|
9 |
"Language: nl_NL\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -14,7 +14,7 @@ msgstr ""
|
|
14 |
"X-Poedit-KeywordsList: __;_e;_c\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
-
"X-Generator: Poedit 1.6.
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPath-1: ..\n"
|
20 |
|
@@ -494,7 +494,7 @@ msgstr "Divers"
|
|
494 |
|
495 |
#: core/core.php:2129
|
496 |
msgid "Highlight links broken for at least %s days"
|
497 |
-
msgstr "
|
498 |
|
499 |
#: core/core.php:2138
|
500 |
msgid "Color-code status codes"
|
@@ -826,7 +826,7 @@ msgstr "De volgende fout(en) kwam(en) voor:"
|
|
826 |
#: includes/admin/links-page-js.php:585 includes/admin/table-printer.php:289
|
827 |
#: includes/admin/table-printer.php:665
|
828 |
msgid "Unlink"
|
829 |
-
msgstr "
|
830 |
|
831 |
#: includes/admin/links-page-js.php:629
|
832 |
msgid "Enter a name for the new custom filter"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
5 |
"POT-Creation-Date: 2014-08-19 14:12:36+00:00\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Janis Elsts <whiteshadow@w-shadow.com>\n"
|
8 |
"Language-Team: Brokenlinkchecker <gvmelle@gmail.com>\n"
|
9 |
"Language: nl_NL\n"
|
10 |
"MIME-Version: 1.0\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;_c\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
+
"X-Generator: Poedit 1.6.8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPath-1: ..\n"
|
20 |
|
494 |
|
495 |
#: core/core.php:2129
|
496 |
msgid "Highlight links broken for at least %s days"
|
497 |
+
msgstr "Kleurcodering voor links die minstens %s dagen verbroken zijn"
|
498 |
|
499 |
#: core/core.php:2138
|
500 |
msgid "Color-code status codes"
|
826 |
#: includes/admin/links-page-js.php:585 includes/admin/table-printer.php:289
|
827 |
#: includes/admin/table-printer.php:665
|
828 |
msgid "Unlink"
|
829 |
+
msgstr "Ontkoppel"
|
830 |
|
831 |
#: includes/admin/links-page-js.php:629
|
832 |
msgid "Enter a name for the new custom filter"
|
languages/broken-link-checker-pt_PT.mo
CHANGED
Binary file
|
languages/broken-link-checker-pt_PT.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Broken Link Checker v1.9.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2011-12-11 10:00-0000\n"
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: wordpress.mowster.net <wordpress@mowster.net>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -73,287 +73,287 @@ msgstr "Ir a Links offline"
|
|
73 |
msgid "Settings"
|
74 |
msgstr "Definições"
|
75 |
|
76 |
-
#: core/core.php:
|
77 |
#@ broken-link-checker
|
78 |
msgid "Settings saved."
|
79 |
msgstr "Definições guardadas."
|
80 |
|
81 |
-
#: core/core.php:
|
82 |
#@ broken-link-checker
|
83 |
msgid "Thank you for your donation!"
|
84 |
msgstr "Obrigado pela sua colaboração!"
|
85 |
|
86 |
-
#: core/core.php:
|
87 |
#@ broken-link-checker
|
88 |
msgid "Complete site recheck started."
|
89 |
msgstr "Reverificação completa do sítio iniciada."
|
90 |
|
91 |
-
#: core/core.php:
|
92 |
#@ broken-link-checker
|
93 |
msgid "Details"
|
94 |
msgstr "Detalhes"
|
95 |
|
96 |
-
#: core/core.php:
|
97 |
#@ broken-link-checker
|
98 |
msgid "General"
|
99 |
msgstr "Geral"
|
100 |
|
101 |
-
#: core/core.php:
|
102 |
#@ broken-link-checker
|
103 |
msgid "Look For Links In"
|
104 |
msgstr "Procurar links"
|
105 |
|
106 |
-
#: core/core.php:
|
107 |
#@ broken-link-checker
|
108 |
msgid "Which Links To Check"
|
109 |
msgstr "Links para verificar"
|
110 |
|
111 |
-
#: core/core.php:
|
112 |
#@ broken-link-checker
|
113 |
msgid "Protocols & APIs"
|
114 |
msgstr "Protocolos & APIs"
|
115 |
|
116 |
-
#: core/core.php:
|
117 |
#@ broken-link-checker
|
118 |
msgid "Advanced"
|
119 |
msgstr "Avançado"
|
120 |
|
121 |
-
#: core/core.php:
|
122 |
#@ broken-link-checker
|
123 |
msgid "Broken Link Checker Options"
|
124 |
msgstr "Opções : Links offline"
|
125 |
|
126 |
-
#: core/core.php:
|
127 |
-
#: includes/admin/table-printer.php:
|
128 |
#@ broken-link-checker
|
129 |
msgid "Status"
|
130 |
msgstr "Estado"
|
131 |
|
132 |
-
#: core/core.php:
|
133 |
#: includes/admin/options-page-js.php:56
|
134 |
#@ broken-link-checker
|
135 |
msgid "Show debug info"
|
136 |
msgstr "Mostrar sistema"
|
137 |
|
138 |
-
#: core/core.php:
|
139 |
#@ broken-link-checker
|
140 |
msgid "Check each link"
|
141 |
msgstr "Verificar cada link"
|
142 |
|
143 |
-
#: core/core.php:
|
144 |
#, php-format
|
145 |
#@ broken-link-checker
|
146 |
msgid "Every %s hours"
|
147 |
msgstr "Cada %s horas"
|
148 |
|
149 |
-
#: core/core.php:
|
150 |
#@ broken-link-checker
|
151 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
152 |
msgstr "Os links existentes serão verificados com esta frequência. Os novos links serão verificados logo que possível."
|
153 |
|
154 |
-
#: core/core.php:
|
155 |
#@ broken-link-checker
|
156 |
msgid "E-mail notifications"
|
157 |
msgstr "Notificações por e-mail"
|
158 |
|
159 |
-
#: core/core.php:
|
160 |
#@ broken-link-checker
|
161 |
msgid "Send me e-mail notifications about newly detected broken links"
|
162 |
msgstr "Enviar um e-mail notificando sobre os novos links offline encontrados"
|
163 |
|
164 |
-
#: core/core.php:
|
165 |
#@ broken-link-checker
|
166 |
msgid "Link tweaks"
|
167 |
msgstr "Melhoria de Links"
|
168 |
|
169 |
-
#: core/core.php:
|
170 |
#@ broken-link-checker
|
171 |
msgid "Apply custom formatting to broken links"
|
172 |
msgstr "Aplicar formatação personalizada para os links offline"
|
173 |
|
174 |
-
#: core/core.php:
|
175 |
-
#: core/core.php:
|
176 |
#@ broken-link-checker
|
177 |
msgid "Edit CSS"
|
178 |
msgstr "Editar CSS"
|
179 |
|
180 |
-
#: core/core.php:
|
181 |
#@ broken-link-checker
|
182 |
msgid "Apply custom formatting to removed links"
|
183 |
msgstr "Aplicar formatação personalizada para os links removidos"
|
184 |
|
185 |
-
#: core/core.php:
|
186 |
#@ broken-link-checker
|
187 |
msgid "Stop search engines from following broken links"
|
188 |
msgstr "Não permitir aos motores de busca seguir os links offline"
|
189 |
|
190 |
-
#: core/core.php:
|
191 |
#@ broken-link-checker
|
192 |
msgid "Look for links in"
|
193 |
msgstr "Procurar links em"
|
194 |
|
195 |
-
#: core/core.php:
|
196 |
#@ broken-link-checker
|
197 |
msgid "Post statuses"
|
198 |
msgstr "Estado do Artigo"
|
199 |
|
200 |
-
#: core/core.php:
|
201 |
#@ broken-link-checker
|
202 |
msgid "Link types"
|
203 |
msgstr "Tipos de link"
|
204 |
|
205 |
-
#: core/core.php:
|
206 |
#@ broken-link-checker
|
207 |
msgid "Error : All link parsers missing!"
|
208 |
msgstr "Erro : Análises aos links não encontradas!"
|
209 |
|
210 |
-
#: core/core.php:
|
211 |
#@ broken-link-checker
|
212 |
msgid "Exclusion list"
|
213 |
msgstr "Lista de exclusão"
|
214 |
|
215 |
-
#: core/core.php:
|
216 |
#@ broken-link-checker
|
217 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
218 |
msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha) :"
|
219 |
|
220 |
-
#: core/core.php:
|
221 |
#@ broken-link-checker
|
222 |
msgid "Check links using"
|
223 |
msgstr "Verificar links utilizando"
|
224 |
|
225 |
-
#: core/core.php:
|
226 |
#: includes/links.php:867
|
227 |
#@ broken-link-checker
|
228 |
msgid "Timeout"
|
229 |
msgstr "Intervalo"
|
230 |
|
231 |
-
#: core/core.php:
|
232 |
-
#: core/core.php:
|
233 |
-
#: core/core.php:
|
234 |
#, php-format
|
235 |
#@ broken-link-checker
|
236 |
#@ default
|
237 |
msgid "%s seconds"
|
238 |
msgstr "%s segundos"
|
239 |
|
240 |
-
#: core/core.php:
|
241 |
#@ broken-link-checker
|
242 |
msgid "Links that take longer than this to load will be marked as broken."
|
243 |
msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
|
244 |
|
245 |
-
#: core/core.php:
|
246 |
#@ broken-link-checker
|
247 |
msgid "Link monitor"
|
248 |
msgstr "Monitor de links"
|
249 |
|
250 |
-
#: core/core.php:
|
251 |
#@ broken-link-checker
|
252 |
msgid "Run continuously while the Dashboard is open"
|
253 |
msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
|
254 |
|
255 |
-
#: core/core.php:
|
256 |
#@ broken-link-checker
|
257 |
msgid "Run hourly in the background"
|
258 |
msgstr "Executar a cada hora em segundo plano"
|
259 |
|
260 |
-
#: core/core.php:
|
261 |
#@ broken-link-checker
|
262 |
msgid "Max. execution time"
|
263 |
msgstr "Tempo máximo de execução"
|
264 |
|
265 |
-
#: core/core.php:
|
266 |
#@ broken-link-checker
|
267 |
msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
|
268 |
msgstr "O plugin funciona executando periodicamente uma tarefa em segundo plano que analisa os links, verifica os URL encontrados e realiza outras tarefas que consomem tempo. Aqui pode-se estabelecer a duração máxima cada vez que o monitor de links é executado antes de parar."
|
269 |
|
270 |
-
#: core/core.php:
|
271 |
#@ broken-link-checker
|
272 |
msgid "Server load limit"
|
273 |
msgstr "Limite de carregamento do servidor"
|
274 |
|
275 |
-
#: core/core.php:
|
276 |
#, php-format
|
277 |
#@ broken-link-checker
|
278 |
msgid "Current load : %s"
|
279 |
msgstr "Carga atual : %s"
|
280 |
|
281 |
-
#: core/core.php:
|
282 |
#, php-format
|
283 |
#@ broken-link-checker
|
284 |
msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
|
285 |
msgstr "A verificação dos links será suspensa se a média do <a href=\"%s\">carregamento do servidor</a> passa este valor. Deixar o campo em branco para não existir limite."
|
286 |
|
287 |
-
#: core/core.php:
|
288 |
#@ broken-link-checker
|
289 |
msgid "Not available"
|
290 |
msgstr "Não disponível"
|
291 |
|
292 |
-
#: core/core.php:
|
293 |
#@ broken-link-checker
|
294 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
295 |
msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
|
296 |
|
297 |
-
#: core/core.php:
|
298 |
#@ broken-link-checker
|
299 |
msgid "Forced recheck"
|
300 |
msgstr "Reverificação forçada"
|
301 |
|
302 |
-
#: core/core.php:
|
303 |
#@ broken-link-checker
|
304 |
msgid "Re-check all pages"
|
305 |
msgstr "Verificar de novo todas as páginas"
|
306 |
|
307 |
-
#: core/core.php:
|
308 |
#@ broken-link-checker
|
309 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
310 |
msgstr "\"Opção Nuclear\". Clique para limpar todos os dados do plugin na base de dados e reverificar todo o sítio desde o início."
|
311 |
|
312 |
-
#: core/core.php:
|
313 |
#@ default
|
314 |
msgid "Save Changes"
|
315 |
msgstr "Guardar alterações"
|
316 |
|
317 |
-
#: core/core.php:
|
318 |
#@ broken-link-checker
|
319 |
msgid "Configure"
|
320 |
msgstr "Configurar"
|
321 |
|
322 |
-
#: core/core.php:
|
323 |
-
#: core/core.php:
|
324 |
-
#: core/core.php:
|
325 |
#, php-format
|
326 |
#@ broken-link-checker
|
327 |
msgid "Database error : %s"
|
328 |
msgstr "Erro na Base de dados: %s"
|
329 |
|
330 |
-
#: core/core.php:
|
331 |
#@ broken-link-checker
|
332 |
msgid "You must enter a filter name!"
|
333 |
msgstr "Deve introduzir um nome para o filtro!"
|
334 |
|
335 |
-
#: core/core.php:
|
336 |
#@ broken-link-checker
|
337 |
msgid "Invalid search query."
|
338 |
msgstr "Procura inválida."
|
339 |
|
340 |
-
#: core/core.php:
|
341 |
#, php-format
|
342 |
#@ broken-link-checker
|
343 |
msgid "Filter \"%s\" created"
|
344 |
msgstr "Filtro \"%s\" criado"
|
345 |
|
346 |
-
#: core/core.php:
|
347 |
#@ broken-link-checker
|
348 |
msgid "Filter ID not specified."
|
349 |
msgstr "ID do Filtro não especificado."
|
350 |
|
351 |
-
#: core/core.php:
|
352 |
#@ broken-link-checker
|
353 |
msgid "Filter deleted"
|
354 |
msgstr "Filtro eliminado"
|
355 |
|
356 |
-
#: core/core.php:
|
357 |
#, php-format
|
358 |
#@ broken-link-checker
|
359 |
msgid "Replaced %d redirect with a direct link"
|
@@ -361,7 +361,7 @@ msgid_plural "Replaced %d redirects with direct links"
|
|
361 |
msgstr[0] "Substituído %d redirect com link direto"
|
362 |
msgstr[1] "Substituídos %d redirects com links diretos"
|
363 |
|
364 |
-
#: core/core.php:
|
365 |
#, php-format
|
366 |
#@ broken-link-checker
|
367 |
msgid "Failed to fix %d redirect"
|
@@ -369,12 +369,12 @@ msgid_plural "Failed to fix %d redirects"
|
|
369 |
msgstr[0] "Não foi possível reparar %d redirect"
|
370 |
msgstr[1] "Não foi possível reparar %d redirects"
|
371 |
|
372 |
-
#: core/core.php:
|
373 |
#@ broken-link-checker
|
374 |
msgid "None of the selected links are redirects!"
|
375 |
msgstr "Nenhum dos links selecionados são redirects!"
|
376 |
|
377 |
-
#: core/core.php:
|
378 |
#, php-format
|
379 |
#@ broken-link-checker
|
380 |
msgid "%d link updated."
|
@@ -382,7 +382,7 @@ msgid_plural "%d links updated."
|
|
382 |
msgstr[0] "%d link atualizado."
|
383 |
msgstr[1] "%d links atualizados."
|
384 |
|
385 |
-
#: core/core.php:
|
386 |
#, php-format
|
387 |
#@ broken-link-checker
|
388 |
msgid "Failed to update %d link."
|
@@ -390,7 +390,7 @@ msgid_plural "Failed to update %d links."
|
|
390 |
msgstr[0] "Erro a atualizar %d link."
|
391 |
msgstr[1] "Erro a atualizar %d links."
|
392 |
|
393 |
-
#: core/core.php:
|
394 |
#, php-format
|
395 |
#@ broken-link-checker
|
396 |
msgid "%d link removed"
|
@@ -398,7 +398,7 @@ msgid_plural "%d links removed"
|
|
398 |
msgstr[0] "%d link eliminado"
|
399 |
msgstr[1] "%d links eliminados"
|
400 |
|
401 |
-
#: core/core.php:
|
402 |
#, php-format
|
403 |
#@ broken-link-checker
|
404 |
msgid "Failed to remove %d link"
|
@@ -406,7 +406,7 @@ msgid_plural "Failed to remove %d links"
|
|
406 |
msgstr[0] "Erro a remover %d link"
|
407 |
msgstr[1] "Erro a remover %d links"
|
408 |
|
409 |
-
#: core/core.php:
|
410 |
#, php-format
|
411 |
#@ default
|
412 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
@@ -414,12 +414,12 @@ msgid_plural "%d items were skipped because they can't be moved to the Trash. Yo
|
|
414 |
msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessita de o efetuar manualmente."
|
415 |
msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de o efetuar manualmente."
|
416 |
|
417 |
-
#: core/core.php:
|
418 |
#@ broken-link-checker
|
419 |
msgid "Didn't find anything to delete!"
|
420 |
msgstr "Não foi encontrado nada para apagar!"
|
421 |
|
422 |
-
#: core/core.php:
|
423 |
#, php-format
|
424 |
#@ broken-link-checker
|
425 |
msgid "%d link scheduled for rechecking"
|
@@ -427,19 +427,19 @@ msgid_plural "%d links scheduled for rechecking"
|
|
427 |
msgstr[0] "%d link agendado para verificação"
|
428 |
msgstr[1] "%d links agendados para verificação"
|
429 |
|
430 |
-
#: core/core.php:
|
431 |
-
#: core/core.php:
|
432 |
#@ broken-link-checker
|
433 |
msgid "This link was manually marked as working by the user."
|
434 |
msgstr "Este link foi assinalado manualmente como válido pelo utilizador."
|
435 |
|
436 |
-
#: core/core.php:
|
437 |
#, php-format
|
438 |
#@ broken-link-checker
|
439 |
msgid "Couldn't modify link %d"
|
440 |
msgstr "Impossível modificar o link %d"
|
441 |
|
442 |
-
#: core/core.php:
|
443 |
#, php-format
|
444 |
#@ broken-link-checker
|
445 |
msgid "%d link marked as not broken"
|
@@ -447,59 +447,59 @@ msgid_plural "%d links marked as not broken"
|
|
447 |
msgstr[0] "%d link marcado como funcional"
|
448 |
msgstr[1] "%d links marcados como funcionais"
|
449 |
|
450 |
-
#: core/core.php:
|
451 |
#@ broken-link-checker
|
452 |
msgid "Table columns"
|
453 |
msgstr "Colunas da Tabela"
|
454 |
|
455 |
-
#: core/core.php:
|
456 |
#@ default
|
457 |
msgid "Show on screen"
|
458 |
msgstr "Mostrar no ecrán"
|
459 |
|
460 |
-
#: core/core.php:
|
461 |
#@ broken-link-checker
|
462 |
msgid "links"
|
463 |
msgstr "links"
|
464 |
|
465 |
-
#: core/core.php:
|
466 |
#: includes/admin/table-printer.php:171
|
467 |
#@ default
|
468 |
#@ broken-link-checker
|
469 |
msgid "Apply"
|
470 |
msgstr "Aplicar"
|
471 |
|
472 |
-
#: core/core.php:
|
473 |
#@ broken-link-checker
|
474 |
msgid "Misc"
|
475 |
msgstr "Vários"
|
476 |
|
477 |
-
#: core/core.php:
|
478 |
#, php-format
|
479 |
#@ broken-link-checker
|
480 |
msgid "Highlight links broken for at least %s days"
|
481 |
msgstr "Realçar links offline pelo menos durante %s dias"
|
482 |
|
483 |
-
#: core/core.php:
|
484 |
#@ broken-link-checker
|
485 |
msgid "Color-code status codes"
|
486 |
msgstr "Cor-código status códigos"
|
487 |
|
488 |
-
#: core/core.php:
|
489 |
-
#: core/core.php:
|
490 |
-
#: core/core.php:
|
491 |
-
#: core/core.php:
|
492 |
-
#: core/core.php:
|
493 |
#@ broken-link-checker
|
494 |
msgid "You're not allowed to do that!"
|
495 |
msgstr "Não permitido!"
|
496 |
|
497 |
-
#: core/core.php:
|
498 |
#@ broken-link-checker
|
499 |
msgid "View broken links"
|
500 |
msgstr "Ver links offline"
|
501 |
|
502 |
-
#: core/core.php:
|
503 |
#, php-format
|
504 |
#@ broken-link-checker
|
505 |
msgid "Found %d broken link"
|
@@ -507,12 +507,12 @@ msgid_plural "Found %d broken links"
|
|
507 |
msgstr[0] "Encontrado %d Link offline"
|
508 |
msgstr[1] "Encontrados %d Links offline"
|
509 |
|
510 |
-
#: core/core.php:
|
511 |
#@ broken-link-checker
|
512 |
msgid "No broken links found."
|
513 |
msgstr "Não existem links offline."
|
514 |
|
515 |
-
#: core/core.php:
|
516 |
#, php-format
|
517 |
#@ broken-link-checker
|
518 |
msgid "%d URL in the work queue"
|
@@ -520,156 +520,156 @@ msgid_plural "%d URLs in the work queue"
|
|
520 |
msgstr[0] "%d URL em espera"
|
521 |
msgstr[1] "%d URLs em espera"
|
522 |
|
523 |
-
#: core/core.php:
|
524 |
#@ broken-link-checker
|
525 |
msgid "No URLs in the work queue."
|
526 |
msgstr "Não existem URL em espera para verificação."
|
527 |
|
528 |
-
#: core/core.php:
|
529 |
#@ broken-link-checker
|
530 |
msgid "Searching your blog for links..."
|
531 |
msgstr "Procurando links..."
|
532 |
|
533 |
-
#: core/core.php:
|
534 |
#@ broken-link-checker
|
535 |
msgid "No links detected."
|
536 |
msgstr "Nenhuns links encontrados."
|
537 |
|
538 |
-
#: core/core.php:
|
539 |
-
#: core/core.php:
|
540 |
-
#: core/core.php:
|
541 |
-
#: core/core.php:
|
542 |
#, php-format
|
543 |
#@ broken-link-checker
|
544 |
msgid "Oops, I can't find the link %d"
|
545 |
msgstr "Oops, não é possível encontrar o link %d"
|
546 |
|
547 |
-
#: core/core.php:
|
548 |
-
#: core/core.php:
|
549 |
#@ broken-link-checker
|
550 |
msgid "Oops, couldn't modify the link!"
|
551 |
msgstr "Oops, não é possível modificar o link!"
|
552 |
|
553 |
-
#: core/core.php:
|
554 |
-
#: core/core.php:
|
555 |
-
#: core/core.php:
|
556 |
#@ broken-link-checker
|
557 |
msgid "Error : link_id not specified"
|
558 |
msgstr "Erro : link_id não especificado"
|
559 |
|
560 |
-
#: core/core.php:
|
561 |
#@ broken-link-checker
|
562 |
msgid "Oops, the new URL is invalid!"
|
563 |
msgstr "Oops, a nova URL não é válida!"
|
564 |
|
565 |
-
#: core/core.php:
|
566 |
#@ broken-link-checker
|
567 |
msgid "An unexpected error occured!"
|
568 |
msgstr "Ocorreu um erro inesperado!"
|
569 |
|
570 |
-
#: core/core.php:
|
571 |
#@ broken-link-checker
|
572 |
msgid "Error : link_id or new_url not specified"
|
573 |
msgstr "Erro : link_id ou new_url não especificado"
|
574 |
|
575 |
-
#: core/core.php:
|
576 |
#@ broken-link-checker
|
577 |
msgid "You don't have sufficient privileges to access this information!"
|
578 |
msgstr "Não tem privilégios suficientes para aceder a esta informação!"
|
579 |
|
580 |
-
#: core/core.php:
|
581 |
#@ broken-link-checker
|
582 |
msgid "Error : link ID not specified"
|
583 |
msgstr "Erro : link ID não especificado"
|
584 |
|
585 |
-
#: core/core.php:
|
586 |
#, php-format
|
587 |
#@ broken-link-checker
|
588 |
msgid "Failed to load link details (%s)"
|
589 |
msgstr "Erro a carregar os detalhes do link (%s)"
|
590 |
|
591 |
-
#: core/core.php:
|
592 |
#@ broken-link-checker
|
593 |
msgid "Broken Link Checker"
|
594 |
msgstr "Links offline"
|
595 |
|
596 |
-
#: core/core.php:
|
597 |
#@ broken-link-checker
|
598 |
msgid "PHP version"
|
599 |
msgstr "Versão PHP"
|
600 |
|
601 |
-
#: core/core.php:
|
602 |
#@ broken-link-checker
|
603 |
msgid "MySQL version"
|
604 |
msgstr "Versão MySQL"
|
605 |
|
606 |
-
#: core/core.php:
|
607 |
#@ broken-link-checker
|
608 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
609 |
msgstr "Versão de CURL obsoleta. A deteção de redirects pode não funcionar corretamente."
|
610 |
|
611 |
-
#: core/core.php:
|
612 |
-
#: core/core.php:
|
613 |
-
#: core/core.php:
|
614 |
#@ broken-link-checker
|
615 |
msgid "Not installed"
|
616 |
msgstr "Não instalado"
|
617 |
|
618 |
-
#: core/core.php:
|
619 |
#@ broken-link-checker
|
620 |
msgid "CURL version"
|
621 |
msgstr "Versão CURL"
|
622 |
|
623 |
-
#: core/core.php:
|
624 |
#@ broken-link-checker
|
625 |
msgid "Installed"
|
626 |
msgstr "Instalado"
|
627 |
|
628 |
-
#: core/core.php:
|
629 |
#@ broken-link-checker
|
630 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
631 |
msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
|
632 |
|
633 |
-
#: core/core.php:
|
634 |
#@ broken-link-checker
|
635 |
msgid "On"
|
636 |
msgstr "Ativado"
|
637 |
|
638 |
-
#: core/core.php:
|
639 |
#@ broken-link-checker
|
640 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
641 |
msgstr "Os redirects podem ser detetados como links offline quando o safe_mode está habilitado."
|
642 |
|
643 |
-
#: core/core.php:
|
644 |
-
#: core/core.php:
|
645 |
#@ broken-link-checker
|
646 |
msgid "Off"
|
647 |
msgstr "Desativado"
|
648 |
|
649 |
-
#: core/core.php:
|
650 |
#, php-format
|
651 |
#@ broken-link-checker
|
652 |
msgid "On ( %s )"
|
653 |
msgstr "Ativado ( %s )"
|
654 |
|
655 |
-
#: core/core.php:
|
656 |
#@ broken-link-checker
|
657 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
658 |
msgstr "Os redirects podem ser considerados links offline quando o open_basedir está ativo."
|
659 |
|
660 |
-
#: core/core.php:
|
661 |
#@ broken-link-checker
|
662 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
663 |
msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
|
664 |
|
665 |
-
#: core/core.php:
|
666 |
-
#: core/core.php:
|
667 |
#, php-format
|
668 |
#@ broken-link-checker
|
669 |
msgid "[%s] Broken links detected"
|
670 |
msgstr "[%s] Links offline encontrados"
|
671 |
|
672 |
-
#: core/core.php:
|
673 |
#, php-format
|
674 |
#@ broken-link-checker
|
675 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
@@ -677,7 +677,7 @@ msgid_plural "Broken Link Checker has detected %d new broken links on your site.
|
|
677 |
msgstr[0] "Links offline detetou %d novo link sem ligação."
|
678 |
msgstr[1] "Links offline detetou %d novos links sem ligação."
|
679 |
|
680 |
-
#: core/core.php:
|
681 |
#, php-format
|
682 |
#@ broken-link-checker
|
683 |
msgid "Here's a list of the first %d broken links:"
|
@@ -685,30 +685,30 @@ msgid_plural "Here's a list of the first %d broken links:"
|
|
685 |
msgstr[0] "Lista do primeiro %d link sem ligação:"
|
686 |
msgstr[1] "Lista dos primeiros %d links sem ligação:"
|
687 |
|
688 |
-
#: core/core.php:
|
689 |
#@ broken-link-checker
|
690 |
msgid "Here's a list of the new broken links: "
|
691 |
msgstr "Novos links offline: "
|
692 |
|
693 |
-
#: core/core.php:
|
694 |
#, php-format
|
695 |
#@ broken-link-checker
|
696 |
msgid "Link text : %s"
|
697 |
msgstr "Texto do Link : %s"
|
698 |
|
699 |
-
#: core/core.php:
|
700 |
#, php-format
|
701 |
#@ broken-link-checker
|
702 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
703 |
msgstr "Link URL : <a href=\"%s\">%s</a>"
|
704 |
|
705 |
-
#: core/core.php:
|
706 |
#, php-format
|
707 |
#@ broken-link-checker
|
708 |
msgid "Source : %s"
|
709 |
msgstr "Fonte : %s"
|
710 |
|
711 |
-
#: core/core.php:
|
712 |
#@ broken-link-checker
|
713 |
msgid "You can see all broken links here:"
|
714 |
msgstr "Links offline:"
|
@@ -728,7 +728,7 @@ msgstr "Bi-Mensal"
|
|
728 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
729 |
msgstr "A instalação do plugin Links offline falhou. Desative e ative o plugin."
|
730 |
|
731 |
-
#: includes/any-post.php:
|
732 |
#: modules/containers/blogroll.php:46
|
733 |
#: modules/containers/comment.php:153
|
734 |
#: modules/containers/custom_field.php:207
|
@@ -736,96 +736,96 @@ msgstr "A instalação do plugin Links offline falhou. Desative e ative o plugin
|
|
736 |
msgid "Edit"
|
737 |
msgstr "Editar"
|
738 |
|
739 |
-
#: includes/any-post.php:
|
740 |
#: modules/containers/custom_field.php:213
|
741 |
#@ default
|
742 |
msgid "Move this item to the Trash"
|
743 |
msgstr "Apagar este item"
|
744 |
|
745 |
-
#: includes/any-post.php:
|
746 |
#: modules/containers/custom_field.php:215
|
747 |
#@ default
|
748 |
msgid "Trash"
|
749 |
msgstr "Lixo"
|
750 |
|
751 |
-
#: includes/any-post.php:
|
752 |
#: modules/containers/custom_field.php:220
|
753 |
#@ default
|
754 |
msgid "Delete this item permanently"
|
755 |
msgstr "Apagar este item definitivamente"
|
756 |
|
757 |
-
#: includes/any-post.php:
|
758 |
#: modules/containers/blogroll.php:47
|
759 |
#: modules/containers/custom_field.php:222
|
760 |
#@ default
|
761 |
msgid "Delete"
|
762 |
msgstr "Apagar"
|
763 |
|
764 |
-
#: includes/any-post.php:
|
765 |
#, php-format
|
766 |
#@ default
|
767 |
msgid "Preview “%s”"
|
768 |
msgstr "Pré-vizualizar “%s”"
|
769 |
|
770 |
-
#: includes/any-post.php:
|
771 |
#@ default
|
772 |
msgid "Preview"
|
773 |
msgstr "Pré-visualizar"
|
774 |
|
775 |
-
#: includes/any-post.php:
|
776 |
#, php-format
|
777 |
#@ default
|
778 |
msgid "View “%s”"
|
779 |
msgstr "Visualizar “%s”"
|
780 |
|
781 |
-
#: includes/any-post.php:
|
782 |
#: modules/containers/comment.php:166
|
783 |
#: modules/containers/custom_field.php:227
|
784 |
#@ default
|
785 |
msgid "View"
|
786 |
msgstr "Ver"
|
787 |
|
788 |
-
#: includes/any-post.php:
|
789 |
#: modules/containers/custom_field.php:207
|
790 |
#@ default
|
791 |
msgid "Edit this item"
|
792 |
msgstr "Editar este item"
|
793 |
|
794 |
-
#: includes/any-post.php:
|
795 |
#: modules/containers/blogroll.php:83
|
796 |
#: modules/containers/comment.php:43
|
797 |
#@ broken-link-checker
|
798 |
msgid "Nothing to update"
|
799 |
msgstr "Sem atualização"
|
800 |
|
801 |
-
#: includes/any-post.php:
|
802 |
#, php-format
|
803 |
#@ broken-link-checker
|
804 |
msgid "Updating post %d failed"
|
805 |
msgstr "Atualização do artigo %d falhou"
|
806 |
|
807 |
-
#: includes/any-post.php:
|
808 |
#: modules/containers/custom_field.php:294
|
809 |
#, php-format
|
810 |
#@ broken-link-checker
|
811 |
msgid "Failed to delete post \"%s\" (%d)"
|
812 |
msgstr "Erro ao apagar o artigo \"%s\" (%d)"
|
813 |
|
814 |
-
#: includes/any-post.php:
|
815 |
#: modules/containers/custom_field.php:313
|
816 |
#, php-format
|
817 |
#@ broken-link-checker
|
818 |
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
819 |
msgstr "Não é possível mover o artigo \"%s\" (%d) para o lixo porque a função está desabilitada"
|
820 |
|
821 |
-
#: includes/any-post.php:
|
822 |
#: modules/containers/custom_field.php:332
|
823 |
#, php-format
|
824 |
#@ broken-link-checker
|
825 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
826 |
msgstr "Erro ao apagar o artigo \"%s\" (%d)"
|
827 |
|
828 |
-
#: includes/any-post.php:
|
829 |
#, php-format
|
830 |
#@ broken-link-checker
|
831 |
msgid "%d post deleted."
|
@@ -833,7 +833,7 @@ msgid_plural "%d posts deleted."
|
|
833 |
msgstr[0] "%d artigo apagado."
|
834 |
msgstr[1] "%d artigos apagados."
|
835 |
|
836 |
-
#: includes/any-post.php:
|
837 |
#, php-format
|
838 |
#@ broken-link-checker
|
839 |
msgid "%d page deleted."
|
@@ -841,7 +841,7 @@ msgid_plural "%d pages deleted."
|
|
841 |
msgstr[0] "%d página apagada."
|
842 |
msgstr[1] "%d páginas apagadas."
|
843 |
|
844 |
-
#: includes/any-post.php:
|
845 |
#, php-format
|
846 |
#@ broken-link-checker
|
847 |
msgid "%d \"%s\" deleted."
|
@@ -849,7 +849,7 @@ msgid_plural "%d \"%s\" deleted."
|
|
849 |
msgstr[0] "%d \"%s\" apagado."
|
850 |
msgstr[1] "%d \"%s\" apagados."
|
851 |
|
852 |
-
#: includes/any-post.php:
|
853 |
#, php-format
|
854 |
#@ broken-link-checker
|
855 |
msgid "%d post moved to the Trash."
|
@@ -857,7 +857,7 @@ msgid_plural "%d posts moved to the Trash."
|
|
857 |
msgstr[0] "%d artigo transferido para o Lixo."
|
858 |
msgstr[1] "%d artigos transferidos para o Lixo."
|
859 |
|
860 |
-
#: includes/any-post.php:
|
861 |
#, php-format
|
862 |
#@ broken-link-checker
|
863 |
msgid "%d page moved to the Trash."
|
@@ -865,7 +865,7 @@ msgid_plural "%d pages moved to the Trash."
|
|
865 |
msgstr[0] "%d página transferida para o Lixo."
|
866 |
msgstr[1] "%d páginas transferidas para o Lixo."
|
867 |
|
868 |
-
#: includes/any-post.php:
|
869 |
#, php-format
|
870 |
#@ broken-link-checker
|
871 |
msgid "%d \"%s\" moved to the Trash."
|
@@ -881,8 +881,8 @@ msgid_plural "%d '%s' have been deleted"
|
|
881 |
msgstr[0] "%d '%s' foi apagado"
|
882 |
msgstr[1] "%d '%s' foram apagados"
|
883 |
|
884 |
-
#: includes/containers.php:
|
885 |
-
#: includes/containers.php:
|
886 |
#, php-format
|
887 |
#@ broken-link-checker
|
888 |
msgid "Container type '%s' not recognized"
|
@@ -1008,7 +1008,7 @@ msgid "Couldn't delete the link's database record"
|
|
1008 |
msgstr "Não é possível apagar o registo do link na Base de dados"
|
1009 |
|
1010 |
#: includes/links.php:863
|
1011 |
-
#: modules/checkers/http.php:
|
1012 |
#: modules/extras/mediafire.php:101
|
1013 |
#@ link status
|
1014 |
#@ broken-link-checker
|
@@ -1033,19 +1033,19 @@ msgstr "Falso positivo"
|
|
1033 |
msgid "OK"
|
1034 |
msgstr "OK"
|
1035 |
|
1036 |
-
#: includes/parsers.php:
|
1037 |
#, php-format
|
1038 |
#@ broken-link-checker
|
1039 |
msgid "Editing is not implemented in the '%s' parser"
|
1040 |
msgstr "Edição não implementada no '%s' analisador sintático"
|
1041 |
|
1042 |
-
#: includes/parsers.php:
|
1043 |
#, php-format
|
1044 |
#@ broken-link-checker
|
1045 |
msgid "Unlinking is not implemented in the '%s' parser"
|
1046 |
msgstr "Remover links não foi implementado no '%s' analisador sintático"
|
1047 |
|
1048 |
-
#: includes/admin/db-upgrade.php:
|
1049 |
#, php-format
|
1050 |
#@ broken-link-checker
|
1051 |
msgid "Failed to delete old DB tables. Database error : %s"
|
@@ -1058,7 +1058,7 @@ msgid "Wait..."
|
|
1058 |
msgstr "Espere ..."
|
1059 |
|
1060 |
#: includes/admin/links-page-js.php:107
|
1061 |
-
#: includes/admin/table-printer.php:
|
1062 |
#@ broken-link-checker
|
1063 |
msgid "Not broken"
|
1064 |
msgstr "Funcional"
|
@@ -1103,8 +1103,8 @@ msgid "The plugin failed to remove the link."
|
|
1103 |
msgstr "O plugin não apagou o link."
|
1104 |
|
1105 |
#: includes/admin/links-page-js.php:585
|
1106 |
-
#: includes/admin/table-printer.php:
|
1107 |
-
#: includes/admin/table-printer.php:
|
1108 |
#@ broken-link-checker
|
1109 |
msgid "Unlink"
|
1110 |
msgstr "Remover link"
|
@@ -1172,13 +1172,13 @@ msgid "Link text"
|
|
1172 |
msgstr "Texto do link"
|
1173 |
|
1174 |
#: includes/admin/search-form.php:45
|
1175 |
-
#: includes/admin/table-printer.php:
|
1176 |
#@ broken-link-checker
|
1177 |
msgid "URL"
|
1178 |
msgstr "URL"
|
1179 |
|
1180 |
#: includes/admin/search-form.php:48
|
1181 |
-
#: includes/admin/table-printer.php:
|
1182 |
#@ broken-link-checker
|
1183 |
msgid "HTTP code"
|
1184 |
msgstr "Código HTTP"
|
@@ -1210,178 +1210,178 @@ msgid "Search Links"
|
|
1210 |
msgstr "Procurar"
|
1211 |
|
1212 |
#: includes/admin/search-form.php:113
|
1213 |
-
#: includes/admin/table-printer.php:
|
1214 |
-
#: includes/admin/table-printer.php:
|
1215 |
-
#: includes/admin/table-printer.php:
|
1216 |
#@ broken-link-checker
|
1217 |
msgid "Cancel"
|
1218 |
msgstr "Cancelar"
|
1219 |
|
1220 |
-
#: includes/admin/sidebar.php:
|
1221 |
#@ broken-link-checker
|
1222 |
msgid "Donate $10, $20 or $50!"
|
1223 |
msgstr "Doar $10, $20 ou $50!"
|
1224 |
|
1225 |
-
#: includes/admin/sidebar.php:
|
1226 |
#@ broken-link-checker
|
1227 |
msgid "If you like this plugin, please donate to support development and maintenance!"
|
1228 |
msgstr "Se gosta deste plugin, por favor faça um donativo para financiar o seu desenvolvimento e manutenção!"
|
1229 |
|
1230 |
-
#: includes/admin/sidebar.php:
|
1231 |
#@ broken-link-checker
|
1232 |
msgid "Return to WordPress Dashboard"
|
1233 |
msgstr "Regressar ao Painel"
|
1234 |
|
1235 |
-
#: includes/admin/sidebar.php:
|
1236 |
#@ broken-link-checker
|
1237 |
msgid "More plugins by Janis Elsts"
|
1238 |
msgstr "Mais plugins de Janis Elsts"
|
1239 |
|
1240 |
-
#: includes/admin/table-printer.php:
|
1241 |
#@ broken-link-checker
|
1242 |
msgid "Compact View"
|
1243 |
msgstr "Visão compacta"
|
1244 |
|
1245 |
-
#: includes/admin/table-printer.php:
|
1246 |
#@ broken-link-checker
|
1247 |
msgid "Detailed View"
|
1248 |
msgstr "Detalhes"
|
1249 |
|
1250 |
-
#: includes/admin/table-printer.php:
|
1251 |
#@ broken-link-checker
|
1252 |
msgid "Source"
|
1253 |
msgstr "Fonte"
|
1254 |
|
1255 |
-
#: includes/admin/table-printer.php:
|
1256 |
#@ broken-link-checker
|
1257 |
msgid "Link Text"
|
1258 |
msgstr "Texto do Link"
|
1259 |
|
1260 |
-
#: includes/admin/table-printer.php:
|
1261 |
#@ broken-link-checker
|
1262 |
msgid "Bulk Actions"
|
1263 |
msgstr "Edição em Massa"
|
1264 |
|
1265 |
-
#: includes/admin/table-printer.php:
|
1266 |
-
#: includes/admin/table-printer.php:
|
1267 |
#@ broken-link-checker
|
1268 |
msgid "Edit URL"
|
1269 |
msgstr "Editar URL"
|
1270 |
|
1271 |
-
#: includes/admin/table-printer.php:
|
1272 |
#@ broken-link-checker
|
1273 |
msgid "Recheck"
|
1274 |
msgstr "Voltar a verificar"
|
1275 |
|
1276 |
-
#: includes/admin/table-printer.php:
|
1277 |
#@ broken-link-checker
|
1278 |
msgid "Fix redirects"
|
1279 |
msgstr "Reparar redirects"
|
1280 |
|
1281 |
-
#: includes/admin/table-printer.php:
|
1282 |
#@ broken-link-checker
|
1283 |
msgid "Mark as not broken"
|
1284 |
msgstr "Funcional"
|
1285 |
|
1286 |
-
#: includes/admin/table-printer.php:
|
1287 |
#@ broken-link-checker
|
1288 |
msgid "Move sources to Trash"
|
1289 |
msgstr "Apagar fontes"
|
1290 |
|
1291 |
-
#: includes/admin/table-printer.php:
|
1292 |
#@ broken-link-checker
|
1293 |
msgid "Delete sources"
|
1294 |
msgstr "Apagar fontes"
|
1295 |
|
1296 |
-
#: includes/admin/table-printer.php:
|
1297 |
#@ default
|
1298 |
msgid "«"
|
1299 |
msgstr "«"
|
1300 |
|
1301 |
-
#: includes/admin/table-printer.php:
|
1302 |
#@ default
|
1303 |
msgid "»"
|
1304 |
msgstr "»"
|
1305 |
|
1306 |
-
#: includes/admin/table-printer.php:
|
1307 |
#, php-format
|
1308 |
#@ broken-link-checker
|
1309 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1310 |
msgstr "Mostrando %s–%s de <span class=\"current-link-count\">%s</span>"
|
1311 |
|
1312 |
-
#: includes/admin/table-printer.php:
|
1313 |
#@ broken-link-checker
|
1314 |
msgid "Bulk Edit URLs"
|
1315 |
msgstr "Editar URLs em massa"
|
1316 |
|
1317 |
-
#: includes/admin/table-printer.php:
|
1318 |
#@ broken-link-checker
|
1319 |
msgid "Find"
|
1320 |
msgstr "Procura"
|
1321 |
|
1322 |
-
#: includes/admin/table-printer.php:
|
1323 |
#@ broken-link-checker
|
1324 |
msgid "Replace with"
|
1325 |
msgstr "Substituir com"
|
1326 |
|
1327 |
-
#: includes/admin/table-printer.php:
|
1328 |
#@ broken-link-checker
|
1329 |
msgid "Case sensitive"
|
1330 |
msgstr "Coincidir maiúsculas/minúsculas"
|
1331 |
|
1332 |
-
#: includes/admin/table-printer.php:
|
1333 |
#@ broken-link-checker
|
1334 |
msgid "Regular expression"
|
1335 |
msgstr "Expressão regular"
|
1336 |
|
1337 |
-
#: includes/admin/table-printer.php:
|
1338 |
-
#: includes/admin/table-printer.php:
|
1339 |
#@ broken-link-checker
|
1340 |
msgid "Update"
|
1341 |
msgstr "Atualizar"
|
1342 |
|
1343 |
-
#: includes/admin/table-printer.php:
|
1344 |
#@ broken-link-checker
|
1345 |
msgid "Post published on"
|
1346 |
msgstr "Artigo publicado em"
|
1347 |
|
1348 |
-
#: includes/admin/table-printer.php:
|
1349 |
#@ broken-link-checker
|
1350 |
msgid "Link last checked"
|
1351 |
msgstr "Última verificação"
|
1352 |
|
1353 |
-
#: includes/admin/table-printer.php:
|
1354 |
#@ broken-link-checker
|
1355 |
msgid "Never"
|
1356 |
msgstr "Nunca"
|
1357 |
|
1358 |
-
#: includes/admin/table-printer.php:
|
1359 |
#@ broken-link-checker
|
1360 |
msgid "Response time"
|
1361 |
msgstr "Tempo de resposta"
|
1362 |
|
1363 |
-
#: includes/admin/table-printer.php:
|
1364 |
#, php-format
|
1365 |
#@ broken-link-checker
|
1366 |
msgid "%2.3f seconds"
|
1367 |
msgstr "%2.3f segundos"
|
1368 |
|
1369 |
-
#: includes/admin/table-printer.php:
|
1370 |
#@ broken-link-checker
|
1371 |
msgid "Final URL"
|
1372 |
msgstr "URL final"
|
1373 |
|
1374 |
-
#: includes/admin/table-printer.php:
|
1375 |
#@ broken-link-checker
|
1376 |
msgid "Redirect count"
|
1377 |
msgstr "Contagem de redirects"
|
1378 |
|
1379 |
-
#: includes/admin/table-printer.php:
|
1380 |
#@ broken-link-checker
|
1381 |
msgid "Instance count"
|
1382 |
msgstr "Contagem de casos"
|
1383 |
|
1384 |
-
#: includes/admin/table-printer.php:
|
1385 |
#, php-format
|
1386 |
#@ broken-link-checker
|
1387 |
msgid "This link has failed %d time."
|
@@ -1389,81 +1389,81 @@ msgid_plural "This link has failed %d times."
|
|
1389 |
msgstr[0] "Este link falhou %d vez."
|
1390 |
msgstr[1] "Este link falhou %d vezes."
|
1391 |
|
1392 |
-
#: includes/admin/table-printer.php:
|
1393 |
#, php-format
|
1394 |
#@ broken-link-checker
|
1395 |
msgid "This link has been broken for %s."
|
1396 |
msgstr "Link offline durante %s."
|
1397 |
|
1398 |
-
#: includes/admin/table-printer.php:
|
1399 |
#@ broken-link-checker
|
1400 |
msgid "Log"
|
1401 |
msgstr "Registo"
|
1402 |
|
1403 |
-
#: includes/admin/table-printer.php:
|
1404 |
#@ broken-link-checker
|
1405 |
msgid "Show more info about this link"
|
1406 |
msgstr "Mostrar mais informação sobre este link"
|
1407 |
|
1408 |
-
#: includes/admin/table-printer.php:
|
1409 |
#@ broken-link-checker
|
1410 |
msgid "Broken for"
|
1411 |
msgstr "Offline"
|
1412 |
|
1413 |
-
#: includes/admin/table-printer.php:
|
1414 |
#@ broken-link-checker
|
1415 |
msgid "Remove this link from all posts"
|
1416 |
msgstr "Eliminar este link"
|
1417 |
|
1418 |
-
#: includes/admin/table-printer.php:
|
1419 |
#@ broken-link-checker
|
1420 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
1421 |
msgstr "Eliminar este link da lista dos links offline e marcá-lo como válido"
|
1422 |
|
1423 |
-
#: includes/admin/table-printer.php:
|
1424 |
#@ broken-link-checker
|
1425 |
msgid "Update URL"
|
1426 |
msgstr "Atualizar URL"
|
1427 |
|
1428 |
-
#: includes/admin/table-printer.php:
|
1429 |
#@ broken-link-checker
|
1430 |
msgid "[An orphaned link! This is a bug.]"
|
1431 |
msgstr "[Um link órfão! Bug.]"
|
1432 |
|
1433 |
-
#: modules/checkers/http.php:
|
1434 |
#@ broken-link-checker
|
1435 |
msgid "Server Not Found"
|
1436 |
msgstr "Servidor Não Encontrado"
|
1437 |
|
1438 |
-
#: modules/checkers/http.php:
|
1439 |
#@ broken-link-checker
|
1440 |
msgid "Connection Failed"
|
1441 |
msgstr "Sem Ligação"
|
1442 |
|
1443 |
-
#: modules/checkers/http.php:
|
1444 |
-
#: modules/checkers/http.php:
|
1445 |
#, php-format
|
1446 |
#@ broken-link-checker
|
1447 |
msgid "HTTP code : %d"
|
1448 |
msgstr "Código HTTP : %d"
|
1449 |
|
1450 |
-
#: modules/checkers/http.php:
|
1451 |
-
#: modules/checkers/http.php:
|
1452 |
#@ broken-link-checker
|
1453 |
msgid "(No response)"
|
1454 |
msgstr "(Sem resposta)"
|
1455 |
|
1456 |
-
#: modules/checkers/http.php:
|
1457 |
#@ broken-link-checker
|
1458 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
1459 |
msgstr "Provável que o tempo da ligação se tenha esgotado ou que o domínio não exista."
|
1460 |
|
1461 |
-
#: modules/checkers/http.php:
|
1462 |
#@ broken-link-checker
|
1463 |
msgid "Request timed out."
|
1464 |
msgstr "Tempo de espera esgotado."
|
1465 |
|
1466 |
-
#: modules/checkers/http.php:
|
1467 |
#@ broken-link-checker
|
1468 |
msgid "Using Snoopy"
|
1469 |
msgstr "Utilizando Snoopy"
|
@@ -1542,7 +1542,7 @@ msgstr "Ver comentário"
|
|
1542 |
msgid "Comment"
|
1543 |
msgstr "Comentário"
|
1544 |
|
1545 |
-
#: modules/containers/comment.php:
|
1546 |
#, php-format
|
1547 |
#@ broken-link-checker
|
1548 |
msgid "%d comment has been deleted."
|
@@ -1550,7 +1550,7 @@ msgid_plural "%d comments have been deleted."
|
|
1550 |
msgstr[0] "%d comentário foi apagado."
|
1551 |
msgstr[1] "%d comentários foram apagados."
|
1552 |
|
1553 |
-
#: modules/containers/comment.php:
|
1554 |
#, php-format
|
1555 |
#@ broken-link-checker
|
1556 |
msgid "%d comment moved to the Trash."
|
@@ -1603,26 +1603,13 @@ msgstr "Vídeo DailyMotion embutido"
|
|
1603 |
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
1604 |
msgstr "Vídeos embutidos não podem ser editados utilizando o Links offline. Por favor, editar ou substituir manualmente o vídeo em questão."
|
1605 |
|
1606 |
-
#: modules/extras/fileserve.php:112
|
1607 |
#: modules/extras/mediafire.php:91
|
1608 |
#: modules/extras/mediafire.php:96
|
1609 |
-
#: modules/extras/megaupload.php:81
|
1610 |
-
#: modules/extras/megaupload.php:123
|
1611 |
#: modules/extras/rapidshare.php:139
|
1612 |
#@ broken-link-checker
|
1613 |
msgid "Not Found"
|
1614 |
msgstr "Não Encontrado"
|
1615 |
|
1616 |
-
#: modules/extras/megaupload.php:130
|
1617 |
-
#@ broken-link-checker
|
1618 |
-
msgid "File Temporarily Unavailable"
|
1619 |
-
msgstr "Ficheiro Temporariamente Indisponível"
|
1620 |
-
|
1621 |
-
#: modules/extras/megaupload.php:136
|
1622 |
-
#@ broken-link-checker
|
1623 |
-
msgid "API Error"
|
1624 |
-
msgstr "Erro API"
|
1625 |
-
|
1626 |
#: modules/extras/rapidshare.php:158
|
1627 |
#@ broken-link-checker
|
1628 |
msgid "RS Server Down"
|
@@ -1722,18 +1709,18 @@ msgstr "Imagem"
|
|
1722 |
msgid "Custom field"
|
1723 |
msgstr "Campo personalizado"
|
1724 |
|
1725 |
-
#: core/core.php:
|
1726 |
#@ broken-link-checker
|
1727 |
msgid "Send authors e-mail notifications about broken links in their posts"
|
1728 |
msgstr "Enviar aos autores notificações por e-mail sobre links offline encontrados nos seus artigos"
|
1729 |
|
1730 |
-
#: core/core.php:
|
1731 |
#@ broken-link-checker
|
1732 |
msgctxt "current load"
|
1733 |
msgid "Unknown"
|
1734 |
msgstr "Desconhecido"
|
1735 |
|
1736 |
-
#: core/core.php:
|
1737 |
#, php-format
|
1738 |
#@ broken-link-checker
|
1739 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
@@ -1741,7 +1728,7 @@ msgid_plural "Broken Link Checker has detected %d new broken links in your posts
|
|
1741 |
msgstr[0] "%d novo link offline encontrado nos seus artigos."
|
1742 |
msgstr[1] "%d novos links offline encontrados nos seus artigos."
|
1743 |
|
1744 |
-
#: includes/admin/table-printer.php:
|
1745 |
#@ broken-link-checker
|
1746 |
msgctxt "checked how long ago"
|
1747 |
msgid "Checked"
|
@@ -1777,73 +1764,67 @@ msgctxt "module name"
|
|
1777 |
msgid "Embedded DailyMotion videos"
|
1778 |
msgstr "Vídeos DailyMotion embutido"
|
1779 |
|
1780 |
-
#: includes/extra-strings.php:
|
1781 |
#@ broken-link-checker
|
1782 |
msgctxt "module name"
|
1783 |
msgid "Embedded Vimeo videos"
|
1784 |
msgstr "Vídeo Vimeo embutido"
|
1785 |
|
1786 |
-
#: includes/extra-strings.php:
|
1787 |
#@ broken-link-checker
|
1788 |
msgctxt "module name"
|
1789 |
msgid "Embedded YouTube videos"
|
1790 |
msgstr "Vídeos YouTube embutido"
|
1791 |
|
1792 |
-
#: includes/extra-strings.php:
|
1793 |
#@ broken-link-checker
|
1794 |
msgctxt "module name"
|
1795 |
msgid "Embedded YouTube videos (old embed code)"
|
1796 |
msgstr "Vídeos YouTube embutido (código antigo)"
|
1797 |
|
1798 |
-
#: includes/extra-strings.php:
|
1799 |
#@ broken-link-checker
|
1800 |
msgctxt "module name"
|
1801 |
msgid "HTML images"
|
1802 |
msgstr "Imagens HTML"
|
1803 |
|
1804 |
-
#: includes/extra-strings.php:
|
1805 |
#@ broken-link-checker
|
1806 |
msgctxt "module name"
|
1807 |
msgid "HTML links"
|
1808 |
msgstr "HTML links"
|
1809 |
|
1810 |
-
#: includes/extra-strings.php:
|
1811 |
#@ broken-link-checker
|
1812 |
msgctxt "module name"
|
1813 |
msgid "MediaFire API"
|
1814 |
msgstr "MediaFire API"
|
1815 |
|
1816 |
-
#: includes/extra-strings.php:
|
1817 |
-
#@ broken-link-checker
|
1818 |
-
msgctxt "module name"
|
1819 |
-
msgid "MegaUpload API"
|
1820 |
-
msgstr "MegaUpload API"
|
1821 |
-
|
1822 |
-
#: includes/extra-strings.php:18
|
1823 |
#@ broken-link-checker
|
1824 |
msgctxt "module name"
|
1825 |
msgid "Plaintext URLs"
|
1826 |
msgstr "Texto URLs"
|
1827 |
|
1828 |
-
#: includes/extra-strings.php:
|
1829 |
#@ broken-link-checker
|
1830 |
msgctxt "module name"
|
1831 |
msgid "RapidShare API"
|
1832 |
msgstr "RapidShare API"
|
1833 |
|
1834 |
-
#: includes/extra-strings.php:
|
1835 |
#@ broken-link-checker
|
1836 |
msgctxt "module name"
|
1837 |
msgid "YouTube API"
|
1838 |
msgstr "YouTube API"
|
1839 |
|
1840 |
-
#: includes/extra-strings.php:
|
1841 |
#@ broken-link-checker
|
1842 |
msgctxt "module name"
|
1843 |
msgid "Posts"
|
1844 |
msgstr "Artigos"
|
1845 |
|
1846 |
-
#: includes/extra-strings.php:
|
1847 |
#@ broken-link-checker
|
1848 |
msgctxt "module name"
|
1849 |
msgid "Pages"
|
@@ -1856,8 +1837,6 @@ msgid "Unknown"
|
|
1856 |
msgstr "Desconhecido"
|
1857 |
|
1858 |
#: includes/links.php:893
|
1859 |
-
#: modules/extras/fileserve.php:121
|
1860 |
-
#: modules/extras/megaupload.php:115
|
1861 |
#: modules/extras/rapidshare.php:145
|
1862 |
#: modules/extras/rapidshare.php:151
|
1863 |
#: modules/extras/rapidshare.php:178
|
@@ -1970,19 +1949,19 @@ msgctxt "verb"
|
|
1970 |
msgid "Trash"
|
1971 |
msgstr "Lixo"
|
1972 |
|
1973 |
-
#: core/core.php:
|
1974 |
#, php-format
|
1975 |
#@ broken-link-checker
|
1976 |
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
1977 |
msgstr "Exemplo : Lorem ipsum <a %s>link offline</a>, dolor sit amet."
|
1978 |
|
1979 |
-
#: core/core.php:
|
1980 |
-
#: core/core.php:
|
1981 |
#@ broken-link-checker
|
1982 |
msgid "Click \"Save Changes\" to update example output."
|
1983 |
msgstr "Clicar \"Guardar Alterações\" para atualizar a visualização do exemplo."
|
1984 |
|
1985 |
-
#: core/core.php:
|
1986 |
#, php-format
|
1987 |
#@ broken-link-checker
|
1988 |
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
@@ -1994,29 +1973,6 @@ msgctxt "module name"
|
|
1994 |
msgid "Embedded GoogleVideo videos"
|
1995 |
msgstr "Vídeos GoogleVideos embutido"
|
1996 |
|
1997 |
-
#: includes/extra-strings.php:8
|
1998 |
-
#@ broken-link-checker
|
1999 |
-
msgctxt "module name"
|
2000 |
-
msgid "Embedded Megavideo videos"
|
2001 |
-
msgstr "Vídeos Megavideo embutido"
|
2002 |
-
|
2003 |
-
#: includes/extra-strings.php:13
|
2004 |
-
#@ broken-link-checker
|
2005 |
-
msgctxt "module name"
|
2006 |
-
msgid "FileServe API"
|
2007 |
-
msgstr "FileServe API"
|
2008 |
-
|
2009 |
-
#: modules/extras/fileserve.php:55
|
2010 |
-
#@ broken-link-checker
|
2011 |
-
msgid "Using FileServe API"
|
2012 |
-
msgstr "Utilizar FileServe API"
|
2013 |
-
|
2014 |
-
#: modules/extras/fileserve.php:115
|
2015 |
-
#, php-format
|
2016 |
-
#@ broken-link-checker
|
2017 |
-
msgid "FileServe : %d %s"
|
2018 |
-
msgstr "FileServe : %d %s"
|
2019 |
-
|
2020 |
#: modules/extras/googlevideo-embed.php:24
|
2021 |
#@ broken-link-checker
|
2022 |
msgid "GoogleVideo Video"
|
@@ -2027,42 +1983,32 @@ msgstr "Vídeo GoogleVideo"
|
|
2027 |
msgid "Embedded GoogleVideo video"
|
2028 |
msgstr "Vídeo GoogleVideo embutido"
|
2029 |
|
2030 |
-
#: modules/extras/megavideo-embed.php:24
|
2031 |
-
#@ broken-link-checker
|
2032 |
-
msgid "Megavideo Video"
|
2033 |
-
msgstr "Vídeo Megavideo"
|
2034 |
-
|
2035 |
-
#: modules/extras/megavideo-embed.php:25
|
2036 |
-
#@ broken-link-checker
|
2037 |
-
msgid "Embedded Megavideo video"
|
2038 |
-
msgstr "Vídeo Megavideo embutido"
|
2039 |
-
|
2040 |
#: modules/extras/rapidshare.php:51
|
2041 |
#@ broken-link-checker
|
2042 |
msgid "Using RapidShare API"
|
2043 |
msgstr "Utilizar RapidShare API"
|
2044 |
|
2045 |
-
#: includes/admin/table-printer.php:
|
2046 |
#@ broken-link-checker
|
2047 |
msgid "Redirect URL"
|
2048 |
msgstr "Redirect URL"
|
2049 |
|
2050 |
-
#: includes/admin/table-printer.php:
|
2051 |
#@ broken-link-checker
|
2052 |
msgid "Hide this link and do not report it again unless its status changes"
|
2053 |
msgstr "Ocultar este link e não reportá-lo de novo expecto se houver mudança de estado "
|
2054 |
|
2055 |
-
#: includes/admin/table-printer.php:
|
2056 |
#@ broken-link-checker
|
2057 |
msgid "Dismiss"
|
2058 |
msgstr "Descartar"
|
2059 |
|
2060 |
-
#: includes/admin/table-printer.php:
|
2061 |
#@ broken-link-checker
|
2062 |
msgid "Undismiss this link"
|
2063 |
msgstr "Restabelecer este link"
|
2064 |
|
2065 |
-
#: includes/admin/table-printer.php:
|
2066 |
#@ broken-link-checker
|
2067 |
msgid "Undismiss"
|
2068 |
msgstr "Restabelecer"
|
@@ -2082,7 +2028,7 @@ msgstr "Links descartados"
|
|
2082 |
msgid "No dismissed links found"
|
2083 |
msgstr "Nenhuns links descartados encontrados"
|
2084 |
|
2085 |
-
#: core/core.php:
|
2086 |
#, php-format
|
2087 |
#@ broken-link-checker
|
2088 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
@@ -2091,7 +2037,7 @@ msgid_plural "%d unique URLs"
|
|
2091 |
msgstr[0] "%d URL única"
|
2092 |
msgstr[1] "%d URLs únicas"
|
2093 |
|
2094 |
-
#: core/core.php:
|
2095 |
#, php-format
|
2096 |
#@ broken-link-checker
|
2097 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
@@ -2100,46 +2046,46 @@ msgid_plural "%d links"
|
|
2100 |
msgstr[0] "%d link"
|
2101 |
msgstr[1] "%d links"
|
2102 |
|
2103 |
-
#: core/core.php:
|
2104 |
#, php-format
|
2105 |
#@ broken-link-checker
|
2106 |
msgid "Detected %1$s in %2$s and still searching..."
|
2107 |
msgstr "Encontrados %1$s em %2$s e procurando..."
|
2108 |
|
2109 |
-
#: core/core.php:
|
2110 |
#, php-format
|
2111 |
#@ broken-link-checker
|
2112 |
msgid "Detected %1$s in %2$s."
|
2113 |
msgstr "Encontrados %1$s em %2$s."
|
2114 |
|
2115 |
-
#: core/core.php:
|
2116 |
#@ broken-link-checker
|
2117 |
msgid "Notification e-mail address"
|
2118 |
msgstr "Endereço de e-mail para Notificação"
|
2119 |
|
2120 |
-
#: core/core.php:
|
2121 |
#@ broken-link-checker
|
2122 |
msgid "Leave empty to use the e-mail address specified in Settings → General."
|
2123 |
msgstr "Deixar em branco para usar o endereço de e-mail especificado em Configurações → Geral."
|
2124 |
|
2125 |
-
#: core/core.php:
|
2126 |
#@ broken-link-checker
|
2127 |
msgid "Show the dashboard widget for"
|
2128 |
msgstr "Mostrar o widget do Painel para"
|
2129 |
|
2130 |
-
#: core/core.php:
|
2131 |
#@ broken-link-checker
|
2132 |
msgctxt "dashboard widget visibility"
|
2133 |
msgid "Administrator"
|
2134 |
msgstr "Administrador"
|
2135 |
|
2136 |
-
#: core/core.php:
|
2137 |
#@ broken-link-checker
|
2138 |
msgctxt "dashboard widget visibility"
|
2139 |
msgid "Editor and above"
|
2140 |
msgstr "Editor e superior"
|
2141 |
|
2142 |
-
#: core/core.php:
|
2143 |
#@ broken-link-checker
|
2144 |
msgctxt "dashboard widget visibility"
|
2145 |
msgid "Nobody (disables the widget)"
|
@@ -2186,35 +2132,35 @@ msgstr "Esta playlist não tem registos ou foram todos excluídos."
|
|
2186 |
msgid "Empty Playlist"
|
2187 |
msgstr "Playlist Vazia"
|
2188 |
|
2189 |
-
#: includes/extra-strings.php:
|
2190 |
#@ broken-link-checker
|
2191 |
msgctxt "module name"
|
2192 |
msgid "Embedded YouTube playlists (old embed code)"
|
2193 |
msgstr "Playlists YouTube embutidas (código de embutimento antigo)"
|
2194 |
|
2195 |
-
#: includes/extra-strings.php:
|
2196 |
#@ broken-link-checker
|
2197 |
msgctxt "module name"
|
2198 |
msgid "Smart YouTube httpv:// URLs"
|
2199 |
msgstr "Smart YouTube httpv:// URLs"
|
2200 |
|
2201 |
-
#: core/core.php:
|
2202 |
#@ broken-link-checker
|
2203 |
msgctxt "settings page"
|
2204 |
msgid "Suggestions"
|
2205 |
msgstr "Sugestões"
|
2206 |
|
2207 |
-
#: core/core.php:
|
2208 |
#@ broken-link-checker
|
2209 |
msgid "Suggest alternatives to broken links"
|
2210 |
msgstr "Sugerir links offline alternativos"
|
2211 |
|
2212 |
-
#: core/core.php:
|
2213 |
#@ broken-link-checker
|
2214 |
msgid "Enter the names of custom fields you want to check (one per line). If a field contains HTML code, prefix its name with <code>html:</code>. For example, <code>html:field_name</code>."
|
2215 |
msgstr "Introduzir os nomes dos campos personalizados que pretende verificar (um por linha).<br />Se um campo tiver código HTML, utilizar o prefixo <code>html:</code>. Por exemplo, <code>html:nome_campo</code>."
|
2216 |
|
2217 |
-
#: core/core.php:
|
2218 |
#@ broken-link-checker
|
2219 |
msgid "An unexpected error occurred!"
|
2220 |
msgstr "Ocorreu um erro inesperado!"
|
@@ -2260,62 +2206,62 @@ msgstr "Ocorreu o seguinte erro(s): "
|
|
2260 |
msgid "Error: Link URL must not be empty."
|
2261 |
msgstr "Erro: URL do link não pode ser nulo."
|
2262 |
|
2263 |
-
#: includes/admin/table-printer.php:
|
2264 |
#@ broken-link-checker
|
2265 |
msgid "Edit this link"
|
2266 |
msgstr "Editar este link"
|
2267 |
|
2268 |
-
#: includes/admin/table-printer.php:
|
2269 |
#@ broken-link-checker
|
2270 |
msgctxt "inline editor title"
|
2271 |
msgid "Edit Link"
|
2272 |
msgstr "Editar Link"
|
2273 |
|
2274 |
-
#: includes/admin/table-printer.php:
|
2275 |
#@ broken-link-checker
|
2276 |
msgctxt "inline link editor"
|
2277 |
msgid "Text"
|
2278 |
msgstr "Texto"
|
2279 |
|
2280 |
-
#: includes/admin/table-printer.php:
|
2281 |
#@ broken-link-checker
|
2282 |
msgctxt "inline link editor"
|
2283 |
msgid "URL"
|
2284 |
msgstr "URL"
|
2285 |
|
2286 |
-
#: includes/admin/table-printer.php:
|
2287 |
#@ broken-link-checker
|
2288 |
msgctxt "inline link editor"
|
2289 |
msgid "Suggestions"
|
2290 |
msgstr "Sugestões"
|
2291 |
|
2292 |
-
#: includes/admin/table-printer.php:
|
2293 |
#@ broken-link-checker
|
2294 |
msgid "Use this URL"
|
2295 |
msgstr "Utilizar URL"
|
2296 |
|
2297 |
-
#: core/core.php:
|
2298 |
#@ broken-link-checker
|
2299 |
msgid "Logging"
|
2300 |
msgstr "Processar Log"
|
2301 |
|
2302 |
-
#: core/core.php:
|
2303 |
#@ broken-link-checker
|
2304 |
msgid "Enable logging"
|
2305 |
msgstr "Ativar Log"
|
2306 |
|
2307 |
-
#: core/core.php:
|
2308 |
#@ broken-link-checker
|
2309 |
msgid "Log file location"
|
2310 |
msgstr "Localização do ficheiro Log"
|
2311 |
|
2312 |
-
#: core/core.php:
|
2313 |
#@ broken-link-checker
|
2314 |
msgctxt "log file location"
|
2315 |
msgid "Default"
|
2316 |
msgstr "Padrão"
|
2317 |
|
2318 |
-
#: core/core.php:
|
2319 |
#@ broken-link-checker
|
2320 |
msgctxt "log file location"
|
2321 |
msgid "Custom"
|
@@ -2326,3 +2272,8 @@ msgstr "Personalizado"
|
|
2326 |
msgid "Please activate the plugin separately on each site. Network activation is not supported."
|
2327 |
msgstr "Por favor, ativar o plugin separadamente em cada site. Não é suportada ativação em rede."
|
2328 |
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Broken Link Checker v1.9.4.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2011-12-11 10:00-0000\n"
|
6 |
+
"PO-Revision-Date: 2014-09-04 18:39:24+0000\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: wordpress.mowster.net <wordpress@mowster.net>\n"
|
9 |
"MIME-Version: 1.0\n"
|
73 |
msgid "Settings"
|
74 |
msgstr "Definições"
|
75 |
|
76 |
+
#: core/core.php:585
|
77 |
#@ broken-link-checker
|
78 |
msgid "Settings saved."
|
79 |
msgstr "Definições guardadas."
|
80 |
|
81 |
+
#: core/core.php:591
|
82 |
#@ broken-link-checker
|
83 |
msgid "Thank you for your donation!"
|
84 |
msgstr "Obrigado pela sua colaboração!"
|
85 |
|
86 |
+
#: core/core.php:599
|
87 |
#@ broken-link-checker
|
88 |
msgid "Complete site recheck started."
|
89 |
msgstr "Reverificação completa do sítio iniciada."
|
90 |
|
91 |
+
#: core/core.php:608
|
92 |
#@ broken-link-checker
|
93 |
msgid "Details"
|
94 |
msgstr "Detalhes"
|
95 |
|
96 |
+
#: core/core.php:622
|
97 |
#@ broken-link-checker
|
98 |
msgid "General"
|
99 |
msgstr "Geral"
|
100 |
|
101 |
+
#: core/core.php:623
|
102 |
#@ broken-link-checker
|
103 |
msgid "Look For Links In"
|
104 |
msgstr "Procurar links"
|
105 |
|
106 |
+
#: core/core.php:624
|
107 |
#@ broken-link-checker
|
108 |
msgid "Which Links To Check"
|
109 |
msgstr "Links para verificar"
|
110 |
|
111 |
+
#: core/core.php:625
|
112 |
#@ broken-link-checker
|
113 |
msgid "Protocols & APIs"
|
114 |
msgstr "Protocolos & APIs"
|
115 |
|
116 |
+
#: core/core.php:626
|
117 |
#@ broken-link-checker
|
118 |
msgid "Advanced"
|
119 |
msgstr "Avançado"
|
120 |
|
121 |
+
#: core/core.php:641
|
122 |
#@ broken-link-checker
|
123 |
msgid "Broken Link Checker Options"
|
124 |
msgstr "Opções : Links offline"
|
125 |
|
126 |
+
#: core/core.php:683
|
127 |
+
#: includes/admin/table-printer.php:211
|
128 |
#@ broken-link-checker
|
129 |
msgid "Status"
|
130 |
msgstr "Estado"
|
131 |
|
132 |
+
#: core/core.php:685
|
133 |
#: includes/admin/options-page-js.php:56
|
134 |
#@ broken-link-checker
|
135 |
msgid "Show debug info"
|
136 |
msgstr "Mostrar sistema"
|
137 |
|
138 |
+
#: core/core.php:713
|
139 |
#@ broken-link-checker
|
140 |
msgid "Check each link"
|
141 |
msgstr "Verificar cada link"
|
142 |
|
143 |
+
#: core/core.php:718
|
144 |
#, php-format
|
145 |
#@ broken-link-checker
|
146 |
msgid "Every %s hours"
|
147 |
msgstr "Cada %s horas"
|
148 |
|
149 |
+
#: core/core.php:727
|
150 |
#@ broken-link-checker
|
151 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
152 |
msgstr "Os links existentes serão verificados com esta frequência. Os novos links serão verificados logo que possível."
|
153 |
|
154 |
+
#: core/core.php:734
|
155 |
#@ broken-link-checker
|
156 |
msgid "E-mail notifications"
|
157 |
msgstr "Notificações por e-mail"
|
158 |
|
159 |
+
#: core/core.php:740
|
160 |
#@ broken-link-checker
|
161 |
msgid "Send me e-mail notifications about newly detected broken links"
|
162 |
msgstr "Enviar um e-mail notificando sobre os novos links offline encontrados"
|
163 |
|
164 |
+
#: core/core.php:774
|
165 |
#@ broken-link-checker
|
166 |
msgid "Link tweaks"
|
167 |
msgstr "Melhoria de Links"
|
168 |
|
169 |
+
#: core/core.php:780
|
170 |
#@ broken-link-checker
|
171 |
msgid "Apply custom formatting to broken links"
|
172 |
msgstr "Aplicar formatação personalizada para os links offline"
|
173 |
|
174 |
+
#: core/core.php:784
|
175 |
+
#: core/core.php:815
|
176 |
#@ broken-link-checker
|
177 |
msgid "Edit CSS"
|
178 |
msgstr "Editar CSS"
|
179 |
|
180 |
+
#: core/core.php:811
|
181 |
#@ broken-link-checker
|
182 |
msgid "Apply custom formatting to removed links"
|
183 |
msgstr "Aplicar formatação personalizada para os links removidos"
|
184 |
|
185 |
+
#: core/core.php:844
|
186 |
#@ broken-link-checker
|
187 |
msgid "Stop search engines from following broken links"
|
188 |
msgstr "Não permitir aos motores de busca seguir os links offline"
|
189 |
|
190 |
+
#: core/core.php:874
|
191 |
#@ broken-link-checker
|
192 |
msgid "Look for links in"
|
193 |
msgstr "Procurar links em"
|
194 |
|
195 |
+
#: core/core.php:885
|
196 |
#@ broken-link-checker
|
197 |
msgid "Post statuses"
|
198 |
msgstr "Estado do Artigo"
|
199 |
|
200 |
+
#: core/core.php:918
|
201 |
#@ broken-link-checker
|
202 |
msgid "Link types"
|
203 |
msgstr "Tipos de link"
|
204 |
|
205 |
+
#: core/core.php:924
|
206 |
#@ broken-link-checker
|
207 |
msgid "Error : All link parsers missing!"
|
208 |
msgstr "Erro : Análises aos links não encontradas!"
|
209 |
|
210 |
+
#: core/core.php:931
|
211 |
#@ broken-link-checker
|
212 |
msgid "Exclusion list"
|
213 |
msgstr "Lista de exclusão"
|
214 |
|
215 |
+
#: core/core.php:932
|
216 |
#@ broken-link-checker
|
217 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
218 |
msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha) :"
|
219 |
|
220 |
+
#: core/core.php:950
|
221 |
#@ broken-link-checker
|
222 |
msgid "Check links using"
|
223 |
msgstr "Verificar links utilizando"
|
224 |
|
225 |
+
#: core/core.php:969
|
226 |
#: includes/links.php:867
|
227 |
#@ broken-link-checker
|
228 |
msgid "Timeout"
|
229 |
msgstr "Intervalo"
|
230 |
|
231 |
+
#: core/core.php:975
|
232 |
+
#: core/core.php:1044
|
233 |
+
#: core/core.php:3097
|
234 |
#, php-format
|
235 |
#@ broken-link-checker
|
236 |
#@ default
|
237 |
msgid "%s seconds"
|
238 |
msgstr "%s segundos"
|
239 |
|
240 |
+
#: core/core.php:984
|
241 |
#@ broken-link-checker
|
242 |
msgid "Links that take longer than this to load will be marked as broken."
|
243 |
msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
|
244 |
|
245 |
+
#: core/core.php:991
|
246 |
#@ broken-link-checker
|
247 |
msgid "Link monitor"
|
248 |
msgstr "Monitor de links"
|
249 |
|
250 |
+
#: core/core.php:999
|
251 |
#@ broken-link-checker
|
252 |
msgid "Run continuously while the Dashboard is open"
|
253 |
msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
|
254 |
|
255 |
+
#: core/core.php:1007
|
256 |
#@ broken-link-checker
|
257 |
msgid "Run hourly in the background"
|
258 |
msgstr "Executar a cada hora em segundo plano"
|
259 |
|
260 |
+
#: core/core.php:1038
|
261 |
#@ broken-link-checker
|
262 |
msgid "Max. execution time"
|
263 |
msgstr "Tempo máximo de execução"
|
264 |
|
265 |
+
#: core/core.php:1055
|
266 |
#@ broken-link-checker
|
267 |
msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
|
268 |
msgstr "O plugin funciona executando periodicamente uma tarefa em segundo plano que analisa os links, verifica os URL encontrados e realiza outras tarefas que consomem tempo. Aqui pode-se estabelecer a duração máxima cada vez que o monitor de links é executado antes de parar."
|
269 |
|
270 |
+
#: core/core.php:1064
|
271 |
#@ broken-link-checker
|
272 |
msgid "Server load limit"
|
273 |
msgstr "Limite de carregamento do servidor"
|
274 |
|
275 |
+
#: core/core.php:1079
|
276 |
#, php-format
|
277 |
#@ broken-link-checker
|
278 |
msgid "Current load : %s"
|
279 |
msgstr "Carga atual : %s"
|
280 |
|
281 |
+
#: core/core.php:1085
|
282 |
#, php-format
|
283 |
#@ broken-link-checker
|
284 |
msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
|
285 |
msgstr "A verificação dos links será suspensa se a média do <a href=\"%s\">carregamento do servidor</a> passa este valor. Deixar o campo em branco para não existir limite."
|
286 |
|
287 |
+
#: core/core.php:1093
|
288 |
#@ broken-link-checker
|
289 |
msgid "Not available"
|
290 |
msgstr "Não disponível"
|
291 |
|
292 |
+
#: core/core.php:1095
|
293 |
#@ broken-link-checker
|
294 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
295 |
msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
|
296 |
|
297 |
+
#: core/core.php:1169
|
298 |
#@ broken-link-checker
|
299 |
msgid "Forced recheck"
|
300 |
msgstr "Reverificação forçada"
|
301 |
|
302 |
+
#: core/core.php:1172
|
303 |
#@ broken-link-checker
|
304 |
msgid "Re-check all pages"
|
305 |
msgstr "Verificar de novo todas as páginas"
|
306 |
|
307 |
+
#: core/core.php:1176
|
308 |
#@ broken-link-checker
|
309 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
310 |
msgstr "\"Opção Nuclear\". Clique para limpar todos os dados do plugin na base de dados e reverificar todo o sítio desde o início."
|
311 |
|
312 |
+
#: core/core.php:1187
|
313 |
#@ default
|
314 |
msgid "Save Changes"
|
315 |
msgstr "Guardar alterações"
|
316 |
|
317 |
+
#: core/core.php:1238
|
318 |
#@ broken-link-checker
|
319 |
msgid "Configure"
|
320 |
msgstr "Configurar"
|
321 |
|
322 |
+
#: core/core.php:1451
|
323 |
+
#: core/core.php:1534
|
324 |
+
#: core/core.php:1566
|
325 |
#, php-format
|
326 |
#@ broken-link-checker
|
327 |
msgid "Database error : %s"
|
328 |
msgstr "Erro na Base de dados: %s"
|
329 |
|
330 |
+
#: core/core.php:1516
|
331 |
#@ broken-link-checker
|
332 |
msgid "You must enter a filter name!"
|
333 |
msgstr "Deve introduzir um nome para o filtro!"
|
334 |
|
335 |
+
#: core/core.php:1520
|
336 |
#@ broken-link-checker
|
337 |
msgid "Invalid search query."
|
338 |
msgstr "Procura inválida."
|
339 |
|
340 |
+
#: core/core.php:1529
|
341 |
#, php-format
|
342 |
#@ broken-link-checker
|
343 |
msgid "Filter \"%s\" created"
|
344 |
msgstr "Filtro \"%s\" criado"
|
345 |
|
346 |
+
#: core/core.php:1556
|
347 |
#@ broken-link-checker
|
348 |
msgid "Filter ID not specified."
|
349 |
msgstr "ID do Filtro não especificado."
|
350 |
|
351 |
+
#: core/core.php:1563
|
352 |
#@ broken-link-checker
|
353 |
msgid "Filter deleted"
|
354 |
msgstr "Filtro eliminado"
|
355 |
|
356 |
+
#: core/core.php:1611
|
357 |
#, php-format
|
358 |
#@ broken-link-checker
|
359 |
msgid "Replaced %d redirect with a direct link"
|
361 |
msgstr[0] "Substituído %d redirect com link direto"
|
362 |
msgstr[1] "Substituídos %d redirects com links diretos"
|
363 |
|
364 |
+
#: core/core.php:1622
|
365 |
#, php-format
|
366 |
#@ broken-link-checker
|
367 |
msgid "Failed to fix %d redirect"
|
369 |
msgstr[0] "Não foi possível reparar %d redirect"
|
370 |
msgstr[1] "Não foi possível reparar %d redirects"
|
371 |
|
372 |
+
#: core/core.php:1632
|
373 |
#@ broken-link-checker
|
374 |
msgid "None of the selected links are redirects!"
|
375 |
msgstr "Nenhum dos links selecionados são redirects!"
|
376 |
|
377 |
+
#: core/core.php:1711
|
378 |
#, php-format
|
379 |
#@ broken-link-checker
|
380 |
msgid "%d link updated."
|
382 |
msgstr[0] "%d link atualizado."
|
383 |
msgstr[1] "%d links atualizados."
|
384 |
|
385 |
+
#: core/core.php:1722
|
386 |
#, php-format
|
387 |
#@ broken-link-checker
|
388 |
msgid "Failed to update %d link."
|
390 |
msgstr[0] "Erro a atualizar %d link."
|
391 |
msgstr[1] "Erro a atualizar %d links."
|
392 |
|
393 |
+
#: core/core.php:1811
|
394 |
#, php-format
|
395 |
#@ broken-link-checker
|
396 |
msgid "%d link removed"
|
398 |
msgstr[0] "%d link eliminado"
|
399 |
msgstr[1] "%d links eliminados"
|
400 |
|
401 |
+
#: core/core.php:1822
|
402 |
#, php-format
|
403 |
#@ broken-link-checker
|
404 |
msgid "Failed to remove %d link"
|
406 |
msgstr[0] "Erro a remover %d link"
|
407 |
msgstr[1] "Erro a remover %d links"
|
408 |
|
409 |
+
#: core/core.php:1931
|
410 |
#, php-format
|
411 |
#@ default
|
412 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
414 |
msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessita de o efetuar manualmente."
|
415 |
msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de o efetuar manualmente."
|
416 |
|
417 |
+
#: core/core.php:1952
|
418 |
#@ broken-link-checker
|
419 |
msgid "Didn't find anything to delete!"
|
420 |
msgstr "Não foi encontrado nada para apagar!"
|
421 |
|
422 |
+
#: core/core.php:1981
|
423 |
#, php-format
|
424 |
#@ broken-link-checker
|
425 |
msgid "%d link scheduled for rechecking"
|
427 |
msgstr[0] "%d link agendado para verificação"
|
428 |
msgstr[1] "%d links agendados para verificação"
|
429 |
|
430 |
+
#: core/core.php:2026
|
431 |
+
#: core/core.php:2715
|
432 |
#@ broken-link-checker
|
433 |
msgid "This link was manually marked as working by the user."
|
434 |
msgstr "Este link foi assinalado manualmente como válido pelo utilizador."
|
435 |
|
436 |
+
#: core/core.php:2033
|
437 |
#, php-format
|
438 |
#@ broken-link-checker
|
439 |
msgid "Couldn't modify link %d"
|
440 |
msgstr "Impossível modificar o link %d"
|
441 |
|
442 |
+
#: core/core.php:2044
|
443 |
#, php-format
|
444 |
#@ broken-link-checker
|
445 |
msgid "%d link marked as not broken"
|
447 |
msgstr[0] "%d link marcado como funcional"
|
448 |
msgstr[1] "%d links marcados como funcionais"
|
449 |
|
450 |
+
#: core/core.php:2083
|
451 |
#@ broken-link-checker
|
452 |
msgid "Table columns"
|
453 |
msgstr "Colunas da Tabela"
|
454 |
|
455 |
+
#: core/core.php:2102
|
456 |
#@ default
|
457 |
msgid "Show on screen"
|
458 |
msgstr "Mostrar no ecrán"
|
459 |
|
460 |
+
#: core/core.php:2109
|
461 |
#@ broken-link-checker
|
462 |
msgid "links"
|
463 |
msgstr "links"
|
464 |
|
465 |
+
#: core/core.php:2110
|
466 |
#: includes/admin/table-printer.php:171
|
467 |
#@ default
|
468 |
#@ broken-link-checker
|
469 |
msgid "Apply"
|
470 |
msgstr "Aplicar"
|
471 |
|
472 |
+
#: core/core.php:2114
|
473 |
#@ broken-link-checker
|
474 |
msgid "Misc"
|
475 |
msgstr "Vários"
|
476 |
|
477 |
+
#: core/core.php:2129
|
478 |
#, php-format
|
479 |
#@ broken-link-checker
|
480 |
msgid "Highlight links broken for at least %s days"
|
481 |
msgstr "Realçar links offline pelo menos durante %s dias"
|
482 |
|
483 |
+
#: core/core.php:2138
|
484 |
#@ broken-link-checker
|
485 |
msgid "Color-code status codes"
|
486 |
msgstr "Cor-código status códigos"
|
487 |
|
488 |
+
#: core/core.php:2155
|
489 |
+
#: core/core.php:2700
|
490 |
+
#: core/core.php:2740
|
491 |
+
#: core/core.php:2773
|
492 |
+
#: core/core.php:2860
|
493 |
#@ broken-link-checker
|
494 |
msgid "You're not allowed to do that!"
|
495 |
msgstr "Não permitido!"
|
496 |
|
497 |
+
#: core/core.php:2570
|
498 |
#@ broken-link-checker
|
499 |
msgid "View broken links"
|
500 |
msgstr "Ver links offline"
|
501 |
|
502 |
+
#: core/core.php:2571
|
503 |
#, php-format
|
504 |
#@ broken-link-checker
|
505 |
msgid "Found %d broken link"
|
507 |
msgstr[0] "Encontrado %d Link offline"
|
508 |
msgstr[1] "Encontrados %d Links offline"
|
509 |
|
510 |
+
#: core/core.php:2577
|
511 |
#@ broken-link-checker
|
512 |
msgid "No broken links found."
|
513 |
msgstr "Não existem links offline."
|
514 |
|
515 |
+
#: core/core.php:2584
|
516 |
#, php-format
|
517 |
#@ broken-link-checker
|
518 |
msgid "%d URL in the work queue"
|
520 |
msgstr[0] "%d URL em espera"
|
521 |
msgstr[1] "%d URLs em espera"
|
522 |
|
523 |
+
#: core/core.php:2587
|
524 |
#@ broken-link-checker
|
525 |
msgid "No URLs in the work queue."
|
526 |
msgstr "Não existem URL em espera para verificação."
|
527 |
|
528 |
+
#: core/core.php:2616
|
529 |
#@ broken-link-checker
|
530 |
msgid "Searching your blog for links..."
|
531 |
msgstr "Procurando links..."
|
532 |
|
533 |
+
#: core/core.php:2618
|
534 |
#@ broken-link-checker
|
535 |
msgid "No links detected."
|
536 |
msgstr "Nenhuns links encontrados."
|
537 |
|
538 |
+
#: core/core.php:2708
|
539 |
+
#: core/core.php:2748
|
540 |
+
#: core/core.php:2788
|
541 |
+
#: core/core.php:2870
|
542 |
#, php-format
|
543 |
#@ broken-link-checker
|
544 |
msgid "Oops, I can't find the link %d"
|
545 |
msgstr "Oops, não é possível encontrar o link %d"
|
546 |
|
547 |
+
#: core/core.php:2721
|
548 |
+
#: core/core.php:2758
|
549 |
#@ broken-link-checker
|
550 |
msgid "Oops, couldn't modify the link!"
|
551 |
msgstr "Oops, não é possível modificar o link!"
|
552 |
|
553 |
+
#: core/core.php:2724
|
554 |
+
#: core/core.php:2761
|
555 |
+
#: core/core.php:2896
|
556 |
#@ broken-link-checker
|
557 |
msgid "Error : link_id not specified"
|
558 |
msgstr "Erro : link_id não especificado"
|
559 |
|
560 |
+
#: core/core.php:2797
|
561 |
#@ broken-link-checker
|
562 |
msgid "Oops, the new URL is invalid!"
|
563 |
msgstr "Oops, a nova URL não é válida!"
|
564 |
|
565 |
+
#: core/core.php:2879
|
566 |
#@ broken-link-checker
|
567 |
msgid "An unexpected error occured!"
|
568 |
msgstr "Ocorreu um erro inesperado!"
|
569 |
|
570 |
+
#: core/core.php:2779
|
571 |
#@ broken-link-checker
|
572 |
msgid "Error : link_id or new_url not specified"
|
573 |
msgstr "Erro : link_id ou new_url não especificado"
|
574 |
|
575 |
+
#: core/core.php:2905
|
576 |
#@ broken-link-checker
|
577 |
msgid "You don't have sufficient privileges to access this information!"
|
578 |
msgstr "Não tem privilégios suficientes para aceder a esta informação!"
|
579 |
|
580 |
+
#: core/core.php:2918
|
581 |
#@ broken-link-checker
|
582 |
msgid "Error : link ID not specified"
|
583 |
msgstr "Erro : link ID não especificado"
|
584 |
|
585 |
+
#: core/core.php:2932
|
586 |
#, php-format
|
587 |
#@ broken-link-checker
|
588 |
msgid "Failed to load link details (%s)"
|
589 |
msgstr "Erro a carregar os detalhes do link (%s)"
|
590 |
|
591 |
+
#: core/core.php:2986
|
592 |
#@ broken-link-checker
|
593 |
msgid "Broken Link Checker"
|
594 |
msgstr "Links offline"
|
595 |
|
596 |
+
#: core/core.php:3006
|
597 |
#@ broken-link-checker
|
598 |
msgid "PHP version"
|
599 |
msgstr "Versão PHP"
|
600 |
|
601 |
+
#: core/core.php:3012
|
602 |
#@ broken-link-checker
|
603 |
msgid "MySQL version"
|
604 |
msgstr "Versão MySQL"
|
605 |
|
606 |
+
#: core/core.php:3025
|
607 |
#@ broken-link-checker
|
608 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
609 |
msgstr "Versão de CURL obsoleta. A deteção de redirects pode não funcionar corretamente."
|
610 |
|
611 |
+
#: core/core.php:3037
|
612 |
+
#: core/core.php:3053
|
613 |
+
#: core/core.php:3058
|
614 |
#@ broken-link-checker
|
615 |
msgid "Not installed"
|
616 |
msgstr "Não instalado"
|
617 |
|
618 |
+
#: core/core.php:3040
|
619 |
#@ broken-link-checker
|
620 |
msgid "CURL version"
|
621 |
msgstr "Versão CURL"
|
622 |
|
623 |
+
#: core/core.php:3046
|
624 |
#@ broken-link-checker
|
625 |
msgid "Installed"
|
626 |
msgstr "Instalado"
|
627 |
|
628 |
+
#: core/core.php:3059
|
629 |
#@ broken-link-checker
|
630 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
631 |
msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
|
632 |
|
633 |
+
#: core/core.php:3070
|
634 |
#@ broken-link-checker
|
635 |
msgid "On"
|
636 |
msgstr "Ativado"
|
637 |
|
638 |
+
#: core/core.php:3071
|
639 |
#@ broken-link-checker
|
640 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
641 |
msgstr "Os redirects podem ser detetados como links offline quando o safe_mode está habilitado."
|
642 |
|
643 |
+
#: core/core.php:3076
|
644 |
+
#: core/core.php:3090
|
645 |
#@ broken-link-checker
|
646 |
msgid "Off"
|
647 |
msgstr "Desativado"
|
648 |
|
649 |
+
#: core/core.php:3084
|
650 |
#, php-format
|
651 |
#@ broken-link-checker
|
652 |
msgid "On ( %s )"
|
653 |
msgstr "Ativado ( %s )"
|
654 |
|
655 |
+
#: core/core.php:3085
|
656 |
#@ broken-link-checker
|
657 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
658 |
msgstr "Os redirects podem ser considerados links offline quando o open_basedir está ativo."
|
659 |
|
660 |
+
#: core/core.php:3114
|
661 |
#@ broken-link-checker
|
662 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
663 |
msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
|
664 |
|
665 |
+
#: core/core.php:3237
|
666 |
+
#: core/core.php:3356
|
667 |
#, php-format
|
668 |
#@ broken-link-checker
|
669 |
msgid "[%s] Broken links detected"
|
670 |
msgstr "[%s] Links offline encontrados"
|
671 |
|
672 |
+
#: core/core.php:3243
|
673 |
#, php-format
|
674 |
#@ broken-link-checker
|
675 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
677 |
msgstr[0] "Links offline detetou %d novo link sem ligação."
|
678 |
msgstr[1] "Links offline detetou %d novos links sem ligação."
|
679 |
|
680 |
+
#: core/core.php:3274
|
681 |
#, php-format
|
682 |
#@ broken-link-checker
|
683 |
msgid "Here's a list of the first %d broken links:"
|
685 |
msgstr[0] "Lista do primeiro %d link sem ligação:"
|
686 |
msgstr[1] "Lista dos primeiros %d links sem ligação:"
|
687 |
|
688 |
+
#: core/core.php:3282
|
689 |
#@ broken-link-checker
|
690 |
msgid "Here's a list of the new broken links: "
|
691 |
msgstr "Novos links offline: "
|
692 |
|
693 |
+
#: core/core.php:3291
|
694 |
#, php-format
|
695 |
#@ broken-link-checker
|
696 |
msgid "Link text : %s"
|
697 |
msgstr "Texto do Link : %s"
|
698 |
|
699 |
+
#: core/core.php:3292
|
700 |
#, php-format
|
701 |
#@ broken-link-checker
|
702 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
703 |
msgstr "Link URL : <a href=\"%s\">%s</a>"
|
704 |
|
705 |
+
#: core/core.php:3293
|
706 |
#, php-format
|
707 |
#@ broken-link-checker
|
708 |
msgid "Source : %s"
|
709 |
msgstr "Fonte : %s"
|
710 |
|
711 |
+
#: core/core.php:3307
|
712 |
#@ broken-link-checker
|
713 |
msgid "You can see all broken links here:"
|
714 |
msgstr "Links offline:"
|
728 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
729 |
msgstr "A instalação do plugin Links offline falhou. Desative e ative o plugin."
|
730 |
|
731 |
+
#: includes/any-post.php:407
|
732 |
#: modules/containers/blogroll.php:46
|
733 |
#: modules/containers/comment.php:153
|
734 |
#: modules/containers/custom_field.php:207
|
736 |
msgid "Edit"
|
737 |
msgstr "Editar"
|
738 |
|
739 |
+
#: includes/any-post.php:415
|
740 |
#: modules/containers/custom_field.php:213
|
741 |
#@ default
|
742 |
msgid "Move this item to the Trash"
|
743 |
msgstr "Apagar este item"
|
744 |
|
745 |
+
#: includes/any-post.php:417
|
746 |
#: modules/containers/custom_field.php:215
|
747 |
#@ default
|
748 |
msgid "Trash"
|
749 |
msgstr "Lixo"
|
750 |
|
751 |
+
#: includes/any-post.php:422
|
752 |
#: modules/containers/custom_field.php:220
|
753 |
#@ default
|
754 |
msgid "Delete this item permanently"
|
755 |
msgstr "Apagar este item definitivamente"
|
756 |
|
757 |
+
#: includes/any-post.php:424
|
758 |
#: modules/containers/blogroll.php:47
|
759 |
#: modules/containers/custom_field.php:222
|
760 |
#@ default
|
761 |
msgid "Delete"
|
762 |
msgstr "Apagar"
|
763 |
|
764 |
+
#: includes/any-post.php:437
|
765 |
#, php-format
|
766 |
#@ default
|
767 |
msgid "Preview “%s”"
|
768 |
msgstr "Pré-vizualizar “%s”"
|
769 |
|
770 |
+
#: includes/any-post.php:438
|
771 |
#@ default
|
772 |
msgid "Preview"
|
773 |
msgstr "Pré-visualizar"
|
774 |
|
775 |
+
#: includes/any-post.php:445
|
776 |
#, php-format
|
777 |
#@ default
|
778 |
msgid "View “%s”"
|
779 |
msgstr "Visualizar “%s”"
|
780 |
|
781 |
+
#: includes/any-post.php:446
|
782 |
#: modules/containers/comment.php:166
|
783 |
#: modules/containers/custom_field.php:227
|
784 |
#@ default
|
785 |
msgid "View"
|
786 |
msgstr "Ver"
|
787 |
|
788 |
+
#: includes/any-post.php:465
|
789 |
#: modules/containers/custom_field.php:207
|
790 |
#@ default
|
791 |
msgid "Edit this item"
|
792 |
msgstr "Editar este item"
|
793 |
|
794 |
+
#: includes/any-post.php:529
|
795 |
#: modules/containers/blogroll.php:83
|
796 |
#: modules/containers/comment.php:43
|
797 |
#@ broken-link-checker
|
798 |
msgid "Nothing to update"
|
799 |
msgstr "Sem atualização"
|
800 |
|
801 |
+
#: includes/any-post.php:539
|
802 |
#, php-format
|
803 |
#@ broken-link-checker
|
804 |
msgid "Updating post %d failed"
|
805 |
msgstr "Atualização do artigo %d falhou"
|
806 |
|
807 |
+
#: includes/any-post.php:576
|
808 |
#: modules/containers/custom_field.php:294
|
809 |
#, php-format
|
810 |
#@ broken-link-checker
|
811 |
msgid "Failed to delete post \"%s\" (%d)"
|
812 |
msgstr "Erro ao apagar o artigo \"%s\" (%d)"
|
813 |
|
814 |
+
#: includes/any-post.php:595
|
815 |
#: modules/containers/custom_field.php:313
|
816 |
#, php-format
|
817 |
#@ broken-link-checker
|
818 |
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
819 |
msgstr "Não é possível mover o artigo \"%s\" (%d) para o lixo porque a função está desabilitada"
|
820 |
|
821 |
+
#: includes/any-post.php:615
|
822 |
#: modules/containers/custom_field.php:332
|
823 |
#, php-format
|
824 |
#@ broken-link-checker
|
825 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
826 |
msgstr "Erro ao apagar o artigo \"%s\" (%d)"
|
827 |
|
828 |
+
#: includes/any-post.php:723
|
829 |
#, php-format
|
830 |
#@ broken-link-checker
|
831 |
msgid "%d post deleted."
|
833 |
msgstr[0] "%d artigo apagado."
|
834 |
msgstr[1] "%d artigos apagados."
|
835 |
|
836 |
+
#: includes/any-post.php:725
|
837 |
#, php-format
|
838 |
#@ broken-link-checker
|
839 |
msgid "%d page deleted."
|
841 |
msgstr[0] "%d página apagada."
|
842 |
msgstr[1] "%d páginas apagadas."
|
843 |
|
844 |
+
#: includes/any-post.php:727
|
845 |
#, php-format
|
846 |
#@ broken-link-checker
|
847 |
msgid "%d \"%s\" deleted."
|
849 |
msgstr[0] "%d \"%s\" apagado."
|
850 |
msgstr[1] "%d \"%s\" apagados."
|
851 |
|
852 |
+
#: includes/any-post.php:746
|
853 |
#, php-format
|
854 |
#@ broken-link-checker
|
855 |
msgid "%d post moved to the Trash."
|
857 |
msgstr[0] "%d artigo transferido para o Lixo."
|
858 |
msgstr[1] "%d artigos transferidos para o Lixo."
|
859 |
|
860 |
+
#: includes/any-post.php:748
|
861 |
#, php-format
|
862 |
#@ broken-link-checker
|
863 |
msgid "%d page moved to the Trash."
|
865 |
msgstr[0] "%d página transferida para o Lixo."
|
866 |
msgstr[1] "%d páginas transferidas para o Lixo."
|
867 |
|
868 |
+
#: includes/any-post.php:750
|
869 |
#, php-format
|
870 |
#@ broken-link-checker
|
871 |
msgid "%d \"%s\" moved to the Trash."
|
881 |
msgstr[0] "%d '%s' foi apagado"
|
882 |
msgstr[1] "%d '%s' foram apagados"
|
883 |
|
884 |
+
#: includes/containers.php:882
|
885 |
+
#: includes/containers.php:900
|
886 |
#, php-format
|
887 |
#@ broken-link-checker
|
888 |
msgid "Container type '%s' not recognized"
|
1008 |
msgstr "Não é possível apagar o registo do link na Base de dados"
|
1009 |
|
1010 |
#: includes/links.php:863
|
1011 |
+
#: modules/checkers/http.php:304
|
1012 |
#: modules/extras/mediafire.php:101
|
1013 |
#@ link status
|
1014 |
#@ broken-link-checker
|
1033 |
msgid "OK"
|
1034 |
msgstr "OK"
|
1035 |
|
1036 |
+
#: includes/parsers.php:117
|
1037 |
#, php-format
|
1038 |
#@ broken-link-checker
|
1039 |
msgid "Editing is not implemented in the '%s' parser"
|
1040 |
msgstr "Edição não implementada no '%s' analisador sintático"
|
1041 |
|
1042 |
+
#: includes/parsers.php:132
|
1043 |
#, php-format
|
1044 |
#@ broken-link-checker
|
1045 |
msgid "Unlinking is not implemented in the '%s' parser"
|
1046 |
msgstr "Remover links não foi implementado no '%s' analisador sintático"
|
1047 |
|
1048 |
+
#: includes/admin/db-upgrade.php:97
|
1049 |
#, php-format
|
1050 |
#@ broken-link-checker
|
1051 |
msgid "Failed to delete old DB tables. Database error : %s"
|
1058 |
msgstr "Espere ..."
|
1059 |
|
1060 |
#: includes/admin/links-page-js.php:107
|
1061 |
+
#: includes/admin/table-printer.php:671
|
1062 |
#@ broken-link-checker
|
1063 |
msgid "Not broken"
|
1064 |
msgstr "Funcional"
|
1103 |
msgstr "O plugin não apagou o link."
|
1104 |
|
1105 |
#: includes/admin/links-page-js.php:585
|
1106 |
+
#: includes/admin/table-printer.php:289
|
1107 |
+
#: includes/admin/table-printer.php:665
|
1108 |
#@ broken-link-checker
|
1109 |
msgid "Unlink"
|
1110 |
msgstr "Remover link"
|
1172 |
msgstr "Texto do link"
|
1173 |
|
1174 |
#: includes/admin/search-form.php:45
|
1175 |
+
#: includes/admin/table-printer.php:216
|
1176 |
#@ broken-link-checker
|
1177 |
msgid "URL"
|
1178 |
msgstr "URL"
|
1179 |
|
1180 |
#: includes/admin/search-form.php:48
|
1181 |
+
#: includes/admin/table-printer.php:535
|
1182 |
#@ broken-link-checker
|
1183 |
msgid "HTTP code"
|
1184 |
msgstr "Código HTTP"
|
1210 |
msgstr "Procurar"
|
1211 |
|
1212 |
#: includes/admin/search-form.php:113
|
1213 |
+
#: includes/admin/table-printer.php:365
|
1214 |
+
#: includes/admin/table-printer.php:695
|
1215 |
+
#: includes/admin/table-printer.php:820
|
1216 |
#@ broken-link-checker
|
1217 |
msgid "Cancel"
|
1218 |
msgstr "Cancelar"
|
1219 |
|
1220 |
+
#: includes/admin/sidebar.php:48
|
1221 |
#@ broken-link-checker
|
1222 |
msgid "Donate $10, $20 or $50!"
|
1223 |
msgstr "Doar $10, $20 ou $50!"
|
1224 |
|
1225 |
+
#: includes/admin/sidebar.php:51
|
1226 |
#@ broken-link-checker
|
1227 |
msgid "If you like this plugin, please donate to support development and maintenance!"
|
1228 |
msgstr "Se gosta deste plugin, por favor faça um donativo para financiar o seu desenvolvimento e manutenção!"
|
1229 |
|
1230 |
+
#: includes/admin/sidebar.php:69
|
1231 |
#@ broken-link-checker
|
1232 |
msgid "Return to WordPress Dashboard"
|
1233 |
msgstr "Regressar ao Painel"
|
1234 |
|
1235 |
+
#: includes/admin/sidebar.php:25
|
1236 |
#@ broken-link-checker
|
1237 |
msgid "More plugins by Janis Elsts"
|
1238 |
msgstr "Mais plugins de Janis Elsts"
|
1239 |
|
1240 |
+
#: includes/admin/table-printer.php:188
|
1241 |
#@ broken-link-checker
|
1242 |
msgid "Compact View"
|
1243 |
msgstr "Visão compacta"
|
1244 |
|
1245 |
+
#: includes/admin/table-printer.php:193
|
1246 |
#@ broken-link-checker
|
1247 |
msgid "Detailed View"
|
1248 |
msgstr "Detalhes"
|
1249 |
|
1250 |
+
#: includes/admin/table-printer.php:223
|
1251 |
#@ broken-link-checker
|
1252 |
msgid "Source"
|
1253 |
msgstr "Fonte"
|
1254 |
|
1255 |
+
#: includes/admin/table-printer.php:229
|
1256 |
#@ broken-link-checker
|
1257 |
msgid "Link Text"
|
1258 |
msgstr "Texto do Link"
|
1259 |
|
1260 |
+
#: includes/admin/table-printer.php:284
|
1261 |
#@ broken-link-checker
|
1262 |
msgid "Bulk Actions"
|
1263 |
msgstr "Edição em Massa"
|
1264 |
|
1265 |
+
#: includes/admin/table-printer.php:285
|
1266 |
+
#: includes/admin/table-printer.php:662
|
1267 |
#@ broken-link-checker
|
1268 |
msgid "Edit URL"
|
1269 |
msgstr "Editar URL"
|
1270 |
|
1271 |
+
#: includes/admin/table-printer.php:286
|
1272 |
#@ broken-link-checker
|
1273 |
msgid "Recheck"
|
1274 |
msgstr "Voltar a verificar"
|
1275 |
|
1276 |
+
#: includes/admin/table-printer.php:287
|
1277 |
#@ broken-link-checker
|
1278 |
msgid "Fix redirects"
|
1279 |
msgstr "Reparar redirects"
|
1280 |
|
1281 |
+
#: includes/admin/table-printer.php:288
|
1282 |
#@ broken-link-checker
|
1283 |
msgid "Mark as not broken"
|
1284 |
msgstr "Funcional"
|
1285 |
|
1286 |
+
#: includes/admin/table-printer.php:292
|
1287 |
#@ broken-link-checker
|
1288 |
msgid "Move sources to Trash"
|
1289 |
msgstr "Apagar fontes"
|
1290 |
|
1291 |
+
#: includes/admin/table-printer.php:294
|
1292 |
#@ broken-link-checker
|
1293 |
msgid "Delete sources"
|
1294 |
msgstr "Apagar fontes"
|
1295 |
|
1296 |
+
#: includes/admin/table-printer.php:309
|
1297 |
#@ default
|
1298 |
msgid "«"
|
1299 |
msgstr "«"
|
1300 |
|
1301 |
+
#: includes/admin/table-printer.php:310
|
1302 |
#@ default
|
1303 |
msgid "»"
|
1304 |
msgstr "»"
|
1305 |
|
1306 |
+
#: includes/admin/table-printer.php:318
|
1307 |
#, php-format
|
1308 |
#@ broken-link-checker
|
1309 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1310 |
msgstr "Mostrando %s–%s de <span class=\"current-link-count\">%s</span>"
|
1311 |
|
1312 |
+
#: includes/admin/table-printer.php:341
|
1313 |
#@ broken-link-checker
|
1314 |
msgid "Bulk Edit URLs"
|
1315 |
msgstr "Editar URLs em massa"
|
1316 |
|
1317 |
+
#: includes/admin/table-printer.php:343
|
1318 |
#@ broken-link-checker
|
1319 |
msgid "Find"
|
1320 |
msgstr "Procura"
|
1321 |
|
1322 |
+
#: includes/admin/table-printer.php:347
|
1323 |
#@ broken-link-checker
|
1324 |
msgid "Replace with"
|
1325 |
msgstr "Substituir com"
|
1326 |
|
1327 |
+
#: includes/admin/table-printer.php:355
|
1328 |
#@ broken-link-checker
|
1329 |
msgid "Case sensitive"
|
1330 |
msgstr "Coincidir maiúsculas/minúsculas"
|
1331 |
|
1332 |
+
#: includes/admin/table-printer.php:359
|
1333 |
#@ broken-link-checker
|
1334 |
msgid "Regular expression"
|
1335 |
msgstr "Expressão regular"
|
1336 |
|
1337 |
+
#: includes/admin/table-printer.php:367
|
1338 |
+
#: includes/admin/table-printer.php:821
|
1339 |
#@ broken-link-checker
|
1340 |
msgid "Update"
|
1341 |
msgstr "Atualizar"
|
1342 |
|
1343 |
+
#: includes/admin/table-printer.php:520
|
1344 |
#@ broken-link-checker
|
1345 |
msgid "Post published on"
|
1346 |
msgstr "Artigo publicado em"
|
1347 |
|
1348 |
+
#: includes/admin/table-printer.php:525
|
1349 |
#@ broken-link-checker
|
1350 |
msgid "Link last checked"
|
1351 |
msgstr "Última verificação"
|
1352 |
|
1353 |
+
#: includes/admin/table-printer.php:529
|
1354 |
#@ broken-link-checker
|
1355 |
msgid "Never"
|
1356 |
msgstr "Nunca"
|
1357 |
|
1358 |
+
#: includes/admin/table-printer.php:540
|
1359 |
#@ broken-link-checker
|
1360 |
msgid "Response time"
|
1361 |
msgstr "Tempo de resposta"
|
1362 |
|
1363 |
+
#: includes/admin/table-printer.php:542
|
1364 |
#, php-format
|
1365 |
#@ broken-link-checker
|
1366 |
msgid "%2.3f seconds"
|
1367 |
msgstr "%2.3f segundos"
|
1368 |
|
1369 |
+
#: includes/admin/table-printer.php:545
|
1370 |
#@ broken-link-checker
|
1371 |
msgid "Final URL"
|
1372 |
msgstr "URL final"
|
1373 |
|
1374 |
+
#: includes/admin/table-printer.php:550
|
1375 |
#@ broken-link-checker
|
1376 |
msgid "Redirect count"
|
1377 |
msgstr "Contagem de redirects"
|
1378 |
|
1379 |
+
#: includes/admin/table-printer.php:555
|
1380 |
#@ broken-link-checker
|
1381 |
msgid "Instance count"
|
1382 |
msgstr "Contagem de casos"
|
1383 |
|
1384 |
+
#: includes/admin/table-printer.php:564
|
1385 |
#, php-format
|
1386 |
#@ broken-link-checker
|
1387 |
msgid "This link has failed %d time."
|
1389 |
msgstr[0] "Este link falhou %d vez."
|
1390 |
msgstr[1] "Este link falhou %d vezes."
|
1391 |
|
1392 |
+
#: includes/admin/table-printer.php:572
|
1393 |
#, php-format
|
1394 |
#@ broken-link-checker
|
1395 |
msgid "This link has been broken for %s."
|
1396 |
msgstr "Link offline durante %s."
|
1397 |
|
1398 |
+
#: includes/admin/table-printer.php:583
|
1399 |
#@ broken-link-checker
|
1400 |
msgid "Log"
|
1401 |
msgstr "Registo"
|
1402 |
|
1403 |
+
#: includes/admin/table-printer.php:608
|
1404 |
#@ broken-link-checker
|
1405 |
msgid "Show more info about this link"
|
1406 |
msgstr "Mostrar mais informação sobre este link"
|
1407 |
|
1408 |
+
#: includes/admin/table-printer.php:642
|
1409 |
#@ broken-link-checker
|
1410 |
msgid "Broken for"
|
1411 |
msgstr "Offline"
|
1412 |
|
1413 |
+
#: includes/admin/table-printer.php:664
|
1414 |
#@ broken-link-checker
|
1415 |
msgid "Remove this link from all posts"
|
1416 |
msgstr "Eliminar este link"
|
1417 |
|
1418 |
+
#: includes/admin/table-printer.php:670
|
1419 |
#@ broken-link-checker
|
1420 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
1421 |
msgstr "Eliminar este link da lista dos links offline e marcá-lo como válido"
|
1422 |
|
1423 |
+
#: includes/admin/table-printer.php:696
|
1424 |
#@ broken-link-checker
|
1425 |
msgid "Update URL"
|
1426 |
msgstr "Atualizar URL"
|
1427 |
|
1428 |
+
#: includes/admin/table-printer.php:723
|
1429 |
#@ broken-link-checker
|
1430 |
msgid "[An orphaned link! This is a bug.]"
|
1431 |
msgstr "[Um link órfão! Bug.]"
|
1432 |
|
1433 |
+
#: modules/checkers/http.php:283
|
1434 |
#@ broken-link-checker
|
1435 |
msgid "Server Not Found"
|
1436 |
msgstr "Servidor Não Encontrado"
|
1437 |
|
1438 |
+
#: modules/checkers/http.php:298
|
1439 |
#@ broken-link-checker
|
1440 |
msgid "Connection Failed"
|
1441 |
msgstr "Sem Ligação"
|
1442 |
|
1443 |
+
#: modules/checkers/http.php:340
|
1444 |
+
#: modules/checkers/http.php:410
|
1445 |
#, php-format
|
1446 |
#@ broken-link-checker
|
1447 |
msgid "HTTP code : %d"
|
1448 |
msgstr "Código HTTP : %d"
|
1449 |
|
1450 |
+
#: modules/checkers/http.php:342
|
1451 |
+
#: modules/checkers/http.php:412
|
1452 |
#@ broken-link-checker
|
1453 |
msgid "(No response)"
|
1454 |
msgstr "(Sem resposta)"
|
1455 |
|
1456 |
+
#: modules/checkers/http.php:348
|
1457 |
#@ broken-link-checker
|
1458 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
1459 |
msgstr "Provável que o tempo da ligação se tenha esgotado ou que o domínio não exista."
|
1460 |
|
1461 |
+
#: modules/checkers/http.php:419
|
1462 |
#@ broken-link-checker
|
1463 |
msgid "Request timed out."
|
1464 |
msgstr "Tempo de espera esgotado."
|
1465 |
|
1466 |
+
#: modules/checkers/http.php:437
|
1467 |
#@ broken-link-checker
|
1468 |
msgid "Using Snoopy"
|
1469 |
msgstr "Utilizando Snoopy"
|
1542 |
msgid "Comment"
|
1543 |
msgstr "Comentário"
|
1544 |
|
1545 |
+
#: modules/containers/comment.php:359
|
1546 |
#, php-format
|
1547 |
#@ broken-link-checker
|
1548 |
msgid "%d comment has been deleted."
|
1550 |
msgstr[0] "%d comentário foi apagado."
|
1551 |
msgstr[1] "%d comentários foram apagados."
|
1552 |
|
1553 |
+
#: modules/containers/comment.php:378
|
1554 |
#, php-format
|
1555 |
#@ broken-link-checker
|
1556 |
msgid "%d comment moved to the Trash."
|
1603 |
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
1604 |
msgstr "Vídeos embutidos não podem ser editados utilizando o Links offline. Por favor, editar ou substituir manualmente o vídeo em questão."
|
1605 |
|
|
|
1606 |
#: modules/extras/mediafire.php:91
|
1607 |
#: modules/extras/mediafire.php:96
|
|
|
|
|
1608 |
#: modules/extras/rapidshare.php:139
|
1609 |
#@ broken-link-checker
|
1610 |
msgid "Not Found"
|
1611 |
msgstr "Não Encontrado"
|
1612 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1613 |
#: modules/extras/rapidshare.php:158
|
1614 |
#@ broken-link-checker
|
1615 |
msgid "RS Server Down"
|
1709 |
msgid "Custom field"
|
1710 |
msgstr "Campo personalizado"
|
1711 |
|
1712 |
+
#: core/core.php:748
|
1713 |
#@ broken-link-checker
|
1714 |
msgid "Send authors e-mail notifications about broken links in their posts"
|
1715 |
msgstr "Enviar aos autores notificações por e-mail sobre links offline encontrados nos seus artigos"
|
1716 |
|
1717 |
+
#: core/core.php:2644
|
1718 |
#@ broken-link-checker
|
1719 |
msgctxt "current load"
|
1720 |
msgid "Unknown"
|
1721 |
msgstr "Desconhecido"
|
1722 |
|
1723 |
+
#: core/core.php:3362
|
1724 |
#, php-format
|
1725 |
#@ broken-link-checker
|
1726 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
1728 |
msgstr[0] "%d novo link offline encontrado nos seus artigos."
|
1729 |
msgstr[1] "%d novos links offline encontrados nos seus artigos."
|
1730 |
|
1731 |
+
#: includes/admin/table-printer.php:626
|
1732 |
#@ broken-link-checker
|
1733 |
msgctxt "checked how long ago"
|
1734 |
msgid "Checked"
|
1764 |
msgid "Embedded DailyMotion videos"
|
1765 |
msgstr "Vídeos DailyMotion embutido"
|
1766 |
|
1767 |
+
#: includes/extra-strings.php:8
|
1768 |
#@ broken-link-checker
|
1769 |
msgctxt "module name"
|
1770 |
msgid "Embedded Vimeo videos"
|
1771 |
msgstr "Vídeo Vimeo embutido"
|
1772 |
|
1773 |
+
#: includes/extra-strings.php:10
|
1774 |
#@ broken-link-checker
|
1775 |
msgctxt "module name"
|
1776 |
msgid "Embedded YouTube videos"
|
1777 |
msgstr "Vídeos YouTube embutido"
|
1778 |
|
1779 |
+
#: includes/extra-strings.php:11
|
1780 |
#@ broken-link-checker
|
1781 |
msgctxt "module name"
|
1782 |
msgid "Embedded YouTube videos (old embed code)"
|
1783 |
msgstr "Vídeos YouTube embutido (código antigo)"
|
1784 |
|
1785 |
+
#: includes/extra-strings.php:12
|
1786 |
#@ broken-link-checker
|
1787 |
msgctxt "module name"
|
1788 |
msgid "HTML images"
|
1789 |
msgstr "Imagens HTML"
|
1790 |
|
1791 |
+
#: includes/extra-strings.php:13
|
1792 |
#@ broken-link-checker
|
1793 |
msgctxt "module name"
|
1794 |
msgid "HTML links"
|
1795 |
msgstr "HTML links"
|
1796 |
|
1797 |
+
#: includes/extra-strings.php:14
|
1798 |
#@ broken-link-checker
|
1799 |
msgctxt "module name"
|
1800 |
msgid "MediaFire API"
|
1801 |
msgstr "MediaFire API"
|
1802 |
|
1803 |
+
#: includes/extra-strings.php:15
|
|
|
|
|
|
|
|
|
|
|
|
|
1804 |
#@ broken-link-checker
|
1805 |
msgctxt "module name"
|
1806 |
msgid "Plaintext URLs"
|
1807 |
msgstr "Texto URLs"
|
1808 |
|
1809 |
+
#: includes/extra-strings.php:16
|
1810 |
#@ broken-link-checker
|
1811 |
msgctxt "module name"
|
1812 |
msgid "RapidShare API"
|
1813 |
msgstr "RapidShare API"
|
1814 |
|
1815 |
+
#: includes/extra-strings.php:18
|
1816 |
#@ broken-link-checker
|
1817 |
msgctxt "module name"
|
1818 |
msgid "YouTube API"
|
1819 |
msgstr "YouTube API"
|
1820 |
|
1821 |
+
#: includes/extra-strings.php:19
|
1822 |
#@ broken-link-checker
|
1823 |
msgctxt "module name"
|
1824 |
msgid "Posts"
|
1825 |
msgstr "Artigos"
|
1826 |
|
1827 |
+
#: includes/extra-strings.php:20
|
1828 |
#@ broken-link-checker
|
1829 |
msgctxt "module name"
|
1830 |
msgid "Pages"
|
1837 |
msgstr "Desconhecido"
|
1838 |
|
1839 |
#: includes/links.php:893
|
|
|
|
|
1840 |
#: modules/extras/rapidshare.php:145
|
1841 |
#: modules/extras/rapidshare.php:151
|
1842 |
#: modules/extras/rapidshare.php:178
|
1949 |
msgid "Trash"
|
1950 |
msgstr "Lixo"
|
1951 |
|
1952 |
+
#: core/core.php:800
|
1953 |
#, php-format
|
1954 |
#@ broken-link-checker
|
1955 |
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
1956 |
msgstr "Exemplo : Lorem ipsum <a %s>link offline</a>, dolor sit amet."
|
1957 |
|
1958 |
+
#: core/core.php:803
|
1959 |
+
#: core/core.php:834
|
1960 |
#@ broken-link-checker
|
1961 |
msgid "Click \"Save Changes\" to update example output."
|
1962 |
msgstr "Clicar \"Guardar Alterações\" para atualizar a visualização do exemplo."
|
1963 |
|
1964 |
+
#: core/core.php:831
|
1965 |
#, php-format
|
1966 |
#@ broken-link-checker
|
1967 |
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
1973 |
msgid "Embedded GoogleVideo videos"
|
1974 |
msgstr "Vídeos GoogleVideos embutido"
|
1975 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1976 |
#: modules/extras/googlevideo-embed.php:24
|
1977 |
#@ broken-link-checker
|
1978 |
msgid "GoogleVideo Video"
|
1983 |
msgid "Embedded GoogleVideo video"
|
1984 |
msgstr "Vídeo GoogleVideo embutido"
|
1985 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1986 |
#: modules/extras/rapidshare.php:51
|
1987 |
#@ broken-link-checker
|
1988 |
msgid "Using RapidShare API"
|
1989 |
msgstr "Utilizar RapidShare API"
|
1990 |
|
1991 |
+
#: includes/admin/table-printer.php:236
|
1992 |
#@ broken-link-checker
|
1993 |
msgid "Redirect URL"
|
1994 |
msgstr "Redirect URL"
|
1995 |
|
1996 |
+
#: includes/admin/table-printer.php:678
|
1997 |
#@ broken-link-checker
|
1998 |
msgid "Hide this link and do not report it again unless its status changes"
|
1999 |
msgstr "Ocultar este link e não reportá-lo de novo expecto se houver mudança de estado "
|
2000 |
|
2001 |
+
#: includes/admin/table-printer.php:679
|
2002 |
#@ broken-link-checker
|
2003 |
msgid "Dismiss"
|
2004 |
msgstr "Descartar"
|
2005 |
|
2006 |
+
#: includes/admin/table-printer.php:684
|
2007 |
#@ broken-link-checker
|
2008 |
msgid "Undismiss this link"
|
2009 |
msgstr "Restabelecer este link"
|
2010 |
|
2011 |
+
#: includes/admin/table-printer.php:685
|
2012 |
#@ broken-link-checker
|
2013 |
msgid "Undismiss"
|
2014 |
msgstr "Restabelecer"
|
2028 |
msgid "No dismissed links found"
|
2029 |
msgstr "Nenhuns links descartados encontrados"
|
2030 |
|
2031 |
+
#: core/core.php:2593
|
2032 |
#, php-format
|
2033 |
#@ broken-link-checker
|
2034 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
2037 |
msgstr[0] "%d URL única"
|
2038 |
msgstr[1] "%d URLs únicas"
|
2039 |
|
2040 |
+
#: core/core.php:2597
|
2041 |
#, php-format
|
2042 |
#@ broken-link-checker
|
2043 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
2046 |
msgstr[0] "%d link"
|
2047 |
msgstr[1] "%d links"
|
2048 |
|
2049 |
+
#: core/core.php:2603
|
2050 |
#, php-format
|
2051 |
#@ broken-link-checker
|
2052 |
msgid "Detected %1$s in %2$s and still searching..."
|
2053 |
msgstr "Encontrados %1$s em %2$s e procurando..."
|
2054 |
|
2055 |
+
#: core/core.php:2609
|
2056 |
#, php-format
|
2057 |
#@ broken-link-checker
|
2058 |
msgid "Detected %1$s in %2$s."
|
2059 |
msgstr "Encontrados %1$s em %2$s."
|
2060 |
|
2061 |
+
#: core/core.php:755
|
2062 |
#@ broken-link-checker
|
2063 |
msgid "Notification e-mail address"
|
2064 |
msgstr "Endereço de e-mail para Notificação"
|
2065 |
|
2066 |
+
#: core/core.php:767
|
2067 |
#@ broken-link-checker
|
2068 |
msgid "Leave empty to use the e-mail address specified in Settings → General."
|
2069 |
msgstr "Deixar em branco para usar o endereço de e-mail especificado em Configurações → Geral."
|
2070 |
|
2071 |
+
#: core/core.php:1015
|
2072 |
#@ broken-link-checker
|
2073 |
msgid "Show the dashboard widget for"
|
2074 |
msgstr "Mostrar o widget do Painel para"
|
2075 |
|
2076 |
+
#: core/core.php:1020
|
2077 |
#@ broken-link-checker
|
2078 |
msgctxt "dashboard widget visibility"
|
2079 |
msgid "Administrator"
|
2080 |
msgstr "Administrador"
|
2081 |
|
2082 |
+
#: core/core.php:1021
|
2083 |
#@ broken-link-checker
|
2084 |
msgctxt "dashboard widget visibility"
|
2085 |
msgid "Editor and above"
|
2086 |
msgstr "Editor e superior"
|
2087 |
|
2088 |
+
#: core/core.php:1022
|
2089 |
#@ broken-link-checker
|
2090 |
msgctxt "dashboard widget visibility"
|
2091 |
msgid "Nobody (disables the widget)"
|
2132 |
msgid "Empty Playlist"
|
2133 |
msgstr "Playlist Vazia"
|
2134 |
|
2135 |
+
#: includes/extra-strings.php:9
|
2136 |
#@ broken-link-checker
|
2137 |
msgctxt "module name"
|
2138 |
msgid "Embedded YouTube playlists (old embed code)"
|
2139 |
msgstr "Playlists YouTube embutidas (código de embutimento antigo)"
|
2140 |
|
2141 |
+
#: includes/extra-strings.php:17
|
2142 |
#@ broken-link-checker
|
2143 |
msgctxt "module name"
|
2144 |
msgid "Smart YouTube httpv:// URLs"
|
2145 |
msgstr "Smart YouTube httpv:// URLs"
|
2146 |
|
2147 |
+
#: core/core.php:852
|
2148 |
#@ broken-link-checker
|
2149 |
msgctxt "settings page"
|
2150 |
msgid "Suggestions"
|
2151 |
msgstr "Sugestões"
|
2152 |
|
2153 |
+
#: core/core.php:858
|
2154 |
#@ broken-link-checker
|
2155 |
msgid "Suggest alternatives to broken links"
|
2156 |
msgstr "Sugerir links offline alternativos"
|
2157 |
|
2158 |
+
#: core/core.php:1321
|
2159 |
#@ broken-link-checker
|
2160 |
msgid "Enter the names of custom fields you want to check (one per line). If a field contains HTML code, prefix its name with <code>html:</code>. For example, <code>html:field_name</code>."
|
2161 |
msgstr "Introduzir os nomes dos campos personalizados que pretende verificar (um por linha).<br />Se um campo tiver código HTML, utilizar o prefixo <code>html:</code>. Por exemplo, <code>html:nome_campo</code>."
|
2162 |
|
2163 |
+
#: core/core.php:2812
|
2164 |
#@ broken-link-checker
|
2165 |
msgid "An unexpected error occurred!"
|
2166 |
msgstr "Ocorreu um erro inesperado!"
|
2206 |
msgid "Error: Link URL must not be empty."
|
2207 |
msgstr "Erro: URL do link não pode ser nulo."
|
2208 |
|
2209 |
+
#: includes/admin/table-printer.php:662
|
2210 |
#@ broken-link-checker
|
2211 |
msgid "Edit this link"
|
2212 |
msgstr "Editar este link"
|
2213 |
|
2214 |
+
#: includes/admin/table-printer.php:800
|
2215 |
#@ broken-link-checker
|
2216 |
msgctxt "inline editor title"
|
2217 |
msgid "Edit Link"
|
2218 |
msgstr "Editar Link"
|
2219 |
|
2220 |
+
#: includes/admin/table-printer.php:803
|
2221 |
#@ broken-link-checker
|
2222 |
msgctxt "inline link editor"
|
2223 |
msgid "Text"
|
2224 |
msgstr "Texto"
|
2225 |
|
2226 |
+
#: includes/admin/table-printer.php:808
|
2227 |
#@ broken-link-checker
|
2228 |
msgctxt "inline link editor"
|
2229 |
msgid "URL"
|
2230 |
msgstr "URL"
|
2231 |
|
2232 |
+
#: includes/admin/table-printer.php:813
|
2233 |
#@ broken-link-checker
|
2234 |
msgctxt "inline link editor"
|
2235 |
msgid "Suggestions"
|
2236 |
msgstr "Sugestões"
|
2237 |
|
2238 |
+
#: includes/admin/table-printer.php:833
|
2239 |
#@ broken-link-checker
|
2240 |
msgid "Use this URL"
|
2241 |
msgstr "Utilizar URL"
|
2242 |
|
2243 |
+
#: core/core.php:1121
|
2244 |
#@ broken-link-checker
|
2245 |
msgid "Logging"
|
2246 |
msgstr "Processar Log"
|
2247 |
|
2248 |
+
#: core/core.php:1127
|
2249 |
#@ broken-link-checker
|
2250 |
msgid "Enable logging"
|
2251 |
msgstr "Ativar Log"
|
2252 |
|
2253 |
+
#: core/core.php:1134
|
2254 |
#@ broken-link-checker
|
2255 |
msgid "Log file location"
|
2256 |
msgstr "Localização do ficheiro Log"
|
2257 |
|
2258 |
+
#: core/core.php:1143
|
2259 |
#@ broken-link-checker
|
2260 |
msgctxt "log file location"
|
2261 |
msgid "Default"
|
2262 |
msgstr "Padrão"
|
2263 |
|
2264 |
+
#: core/core.php:1157
|
2265 |
#@ broken-link-checker
|
2266 |
msgctxt "log file location"
|
2267 |
msgid "Custom"
|
2272 |
msgid "Please activate the plugin separately on each site. Network activation is not supported."
|
2273 |
msgstr "Por favor, ativar o plugin separadamente em cada site. Não é suportada ativação em rede."
|
2274 |
|
2275 |
+
#: core/core.php:1103
|
2276 |
+
#@ broken-link-checker
|
2277 |
+
msgid "Target resource usage"
|
2278 |
+
msgstr "Utilização de recursos alvo"
|
2279 |
+
|
modules/checkers/http.php
CHANGED
@@ -356,7 +356,7 @@ class blcCurlHttp extends blcHttpCheckerBase {
|
|
356 |
$result['http_code'],
|
357 |
!empty($result['broken'])?'broken':'0',
|
358 |
!empty($result['timeout'])?'timeout':'0',
|
359 |
-
|
360 |
));
|
361 |
|
362 |
return $result;
|
@@ -443,7 +443,7 @@ class blcSnoopyHttp extends blcHttpCheckerBase {
|
|
443 |
$result['http_code'],
|
444 |
$result['broken']?'broken':'0',
|
445 |
$result['timeout']?'timeout':'0',
|
446 |
-
|
447 |
));
|
448 |
|
449 |
return $result;
|
356 |
$result['http_code'],
|
357 |
!empty($result['broken'])?'broken':'0',
|
358 |
!empty($result['timeout'])?'timeout':'0',
|
359 |
+
blcLink::remove_query_string($result['final_url']),
|
360 |
));
|
361 |
|
362 |
return $result;
|
443 |
$result['http_code'],
|
444 |
$result['broken']?'broken':'0',
|
445 |
$result['timeout']?'timeout':'0',
|
446 |
+
blcLink::remove_query_string($result['final_url']),
|
447 |
));
|
448 |
|
449 |
return $result;
|
modules/extras/youtube.php
CHANGED
@@ -13,7 +13,7 @@ ModuleLazyInit: true
|
|
13 |
ModuleClassName: blcYouTubeChecker
|
14 |
ModulePriority: 100
|
15 |
|
16 |
-
ModuleCheckerUrlPattern: @^
|
17 |
*/
|
18 |
|
19 |
class blcYouTubeChecker extends blcChecker {
|
13 |
ModuleClassName: blcYouTubeChecker
|
14 |
ModulePriority: 100
|
15 |
|
16 |
+
ModuleCheckerUrlPattern: @^https?://(?:([\w\d]+\.)*youtube\.[^/]+/watch\?.*v=[^/#]|youtu\.be/[^/#\?]+|(?:[\w\d]+\.)*?youtube\.[^/]+/(playlist|view_play_list)\?[^/#]{15,}?)@i
|
17 |
*/
|
18 |
|
19 |
class blcYouTubeChecker extends blcChecker {
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: whiteshadow
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
5 |
Requires at least: 3.2
|
6 |
-
Tested up to: 4.0
|
7 |
-
Stable tag: 1.9.
|
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 |
|
@@ -98,6 +98,13 @@ To upgrade your installation
|
|
98 |
|
99 |
== Changelog ==
|
100 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
= 1.9.4.2 =
|
102 |
* Updated Dutch translation again.
|
103 |
* Removed Bulgarian translation because it was poor quality and outdated.
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
5 |
Requires at least: 3.2
|
6 |
+
Tested up to: 4.0
|
7 |
+
Stable tag: 1.9.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 |
|
98 |
|
99 |
== Changelog ==
|
100 |
|
101 |
+
= 1.9.5 =
|
102 |
+
* Fixed missing YouTube videos not being detected when the video URL starts with https instead of http.
|
103 |
+
* Enabled the YouTube video checker by default on new installations.
|
104 |
+
* Made the "dismiss link" option more permanent. Instead of restoring a dismissed link if the redirect URL changes even a little bit, the plugin will now ignore query string changes. This should fix many of the reports about dismissed links reappearing for no apparent reason.
|
105 |
+
* Updated Portuguese, German and Dutch translations.
|
106 |
+
* Other minor fixes.
|
107 |
+
|
108 |
= 1.9.4.2 =
|
109 |
* Updated Dutch translation again.
|
110 |
* Removed Bulgarian translation because it was poor quality and outdated.
|