Version Description
- Updated the Polish and Simplified Chinese translations.
- Updated the German translation.
- Added translation strings for two modules that were missing them.
- Replaced a number of icons with GPL-compatible alternatives from Font Awesome.
- Removed some unused images.
Download this release
Release Info
| Developer | whiteshadow |
| Plugin | |
| Version | 1.8.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.8 to 1.8.1
- broken-link-checker.php +1 -1
- core/core.php +1 -1
- css/links-page.css +3 -3
- images/blue_dot.png +0 -0
- images/bullet_blue.png +0 -0
- images/bullet_cross.png +0 -0
- images/bullet_error.png +0 -0
- images/bullet_warning.png +0 -0
- images/comment.png +0 -0
- images/findbroken.png +0 -0
- images/font-awesome/font-awesome-code.png +0 -0
- images/font-awesome/font-awesome-comment-alt.png +0 -0
- images/font-awesome/font-awesome-exclamation-sign.png +0 -0
- images/font-awesome/font-awesome-link.png +0 -0
- images/font-awesome/font-awesome-picture.png +0 -0
- images/font-awesome/font-awesome-user.png +0 -0
- images/font-awesome/font-awesome-warning-sign.png +0 -0
- images/font-awesome/readme.txt +10 -0
- images/image.png +0 -0
- images/link.png +0 -0
- images/maxcdn.gif +0 -0
- images/script_code.png +0 -0
- images/themefuse-250x250.jpg +0 -0
- images/user_comment.png +0 -0
- includes/extra-strings.php +2 -1
- includes/module-manager.php +1 -3
- languages/broken-link-checker-de_DE.mo +0 -0
- languages/broken-link-checker-de_DE.po +436 -346
- languages/broken-link-checker-pt_PT.mo +0 -0
- languages/broken-link-checker-pt_PT.po +260 -180
- languages/broken-link-checker-zh_CN.mo +0 -0
- languages/broken-link-checker-zh_CN.po +263 -198
- languages/broken-link-checker.pot +24 -14
- modules/containers/blogroll.php +1 -1
- modules/containers/comment.php +2 -2
- modules/containers/custom_field.php +1 -1
- modules/parsers/image.php +1 -1
- modules/parsers/metadata.php +1 -1
- readme.txt +10 -3
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.8
|
| 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.8.1
|
| 7 |
Author: Janis Elsts
|
| 8 |
Author URI: http://w-shadow.com/
|
| 9 |
Text Domain: broken-link-checker
|
core/core.php
CHANGED
|
@@ -1890,7 +1890,7 @@ class wsBrokenLinkChecker {
|
|
| 1890 |
* @return void
|
| 1891 |
*/
|
| 1892 |
function links_page_css(){
|
| 1893 |
-
wp_enqueue_style('blc-links-page', plugins_url('css/links-page.css', $this->loader), array(), '
|
| 1894 |
}
|
| 1895 |
|
| 1896 |
/**
|
| 1890 |
* @return void
|
| 1891 |
*/
|
| 1892 |
function links_page_css(){
|
| 1893 |
+
wp_enqueue_style('blc-links-page', plugins_url('css/links-page.css', $this->loader), array(), '20130707-1');
|
| 1894 |
}
|
| 1895 |
|
| 1896 |
/**
|
css/links-page.css
CHANGED
|
@@ -87,15 +87,15 @@ td.column-new-url .mini-status {
|
|
| 87 |
/* Styles for broken links, redirects and other link states or types */
|
| 88 |
|
| 89 |
.blc-redirect .blc-link-url {
|
| 90 |
-
background-image: url("../images/
|
| 91 |
}
|
| 92 |
|
| 93 |
.link-status-error .blc-link-url {
|
| 94 |
-
background-image: url("../images/
|
| 95 |
}
|
| 96 |
|
| 97 |
.link-status-warning .blc-link-url {
|
| 98 |
-
background-image: url("../images/
|
| 99 |
}
|
| 100 |
|
| 101 |
.blc-excluded-link {
|
| 87 |
/* Styles for broken links, redirects and other link states or types */
|
| 88 |
|
| 89 |
.blc-redirect .blc-link-url {
|
| 90 |
+
background-image: url("../images/blue_dot.png");
|
| 91 |
}
|
| 92 |
|
| 93 |
.link-status-error .blc-link-url {
|
| 94 |
+
background-image: url("../images/font-awesome/font-awesome-exclamation-sign.png");
|
| 95 |
}
|
| 96 |
|
| 97 |
.link-status-warning .blc-link-url {
|
| 98 |
+
background-image: url("../images/font-awesome/font-awesome-warning-sign.png");
|
| 99 |
}
|
| 100 |
|
| 101 |
.blc-excluded-link {
|
images/blue_dot.png
ADDED
|
Binary file
|
images/bullet_blue.png
DELETED
|
Binary file
|
images/bullet_cross.png
DELETED
|
Binary file
|
images/bullet_error.png
DELETED
|
Binary file
|
images/bullet_warning.png
DELETED
|
Binary file
|
images/comment.png
DELETED
|
Binary file
|
images/findbroken.png
DELETED
|
Binary file
|
images/font-awesome/font-awesome-code.png
ADDED
|
Binary file
|
images/font-awesome/font-awesome-comment-alt.png
ADDED
|
Binary file
|
images/font-awesome/font-awesome-exclamation-sign.png
ADDED
|
Binary file
|
images/font-awesome/font-awesome-link.png
ADDED
|
Binary file
|
images/font-awesome/font-awesome-picture.png
ADDED
|
Binary file
|
images/font-awesome/font-awesome-user.png
ADDED
|
Binary file
|
images/font-awesome/font-awesome-warning-sign.png
ADDED
|
Binary file
|
images/font-awesome/readme.txt
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
This directory contains icons from the Font Awesome 3.2.1 icon font:
|
| 2 |
+
http://fortawesome.github.io/Font-Awesome/
|
| 3 |
+
|
| 4 |
+
The Font Awesome font is licensed under SIL OFL 1.1:
|
| 5 |
+
http://scripts.sil.org/OFL
|
| 6 |
+
|
| 7 |
+
------------------------------------------------------------------------------
|
| 8 |
+
|
| 9 |
+
The icons have been converted to PNG and in some cases minor adjustments have
|
| 10 |
+
been made, such as adding a background colour or a drop shadow.
|
images/image.png
DELETED
|
Binary file
|
images/link.png
DELETED
|
Binary file
|
images/maxcdn.gif
DELETED
|
Binary file
|
images/script_code.png
DELETED
|
Binary file
|
images/themefuse-250x250.jpg
DELETED
|
Binary file
|
images/user_comment.png
DELETED
|
Binary file
|
includes/extra-strings.php
CHANGED
|
@@ -7,6 +7,7 @@ _x("Embedded DailyMotion videos", "module name", "broken-link-checker");
|
|
| 7 |
_x("Embedded GoogleVideo videos", "module name", "broken-link-checker");
|
| 8 |
_x("Embedded Megavideo videos", "module name", "broken-link-checker");
|
| 9 |
_x("Embedded Vimeo videos", "module name", "broken-link-checker");
|
|
|
|
| 10 |
_x("Embedded YouTube videos", "module name", "broken-link-checker");
|
| 11 |
_x("Embedded YouTube videos (old embed code)", "module name", "broken-link-checker");
|
| 12 |
_x("FileServe API", "module name", "broken-link-checker");
|
|
@@ -16,7 +17,7 @@ _x("MediaFire API", "module name", "broken-link-checker");
|
|
| 16 |
_x("MegaUpload API", "module name", "broken-link-checker");
|
| 17 |
_x("Plaintext URLs", "module name", "broken-link-checker");
|
| 18 |
_x("RapidShare API", "module name", "broken-link-checker");
|
|
|
|
| 19 |
_x("YouTube API", "module name", "broken-link-checker");
|
| 20 |
_x("Posts", "module name", "broken-link-checker");
|
| 21 |
_x("Pages", "module name", "broken-link-checker");
|
| 22 |
-
?>
|
| 7 |
_x("Embedded GoogleVideo videos", "module name", "broken-link-checker");
|
| 8 |
_x("Embedded Megavideo videos", "module name", "broken-link-checker");
|
| 9 |
_x("Embedded Vimeo videos", "module name", "broken-link-checker");
|
| 10 |
+
_x("Embedded YouTube playlists (old embed code)", "module name", "broken-link-checker");
|
| 11 |
_x("Embedded YouTube videos", "module name", "broken-link-checker");
|
| 12 |
_x("Embedded YouTube videos (old embed code)", "module name", "broken-link-checker");
|
| 13 |
_x("FileServe API", "module name", "broken-link-checker");
|
| 17 |
_x("MegaUpload API", "module name", "broken-link-checker");
|
| 18 |
_x("Plaintext URLs", "module name", "broken-link-checker");
|
| 19 |
_x("RapidShare API", "module name", "broken-link-checker");
|
| 20 |
+
_x("Smart YouTube httpv:// URLs", "module name", "broken-link-checker");
|
| 21 |
_x("YouTube API", "module name", "broken-link-checker");
|
| 22 |
_x("Posts", "module name", "broken-link-checker");
|
| 23 |
_x("Pages", "module name", "broken-link-checker");
|
|
|
includes/module-manager.php
CHANGED
|
@@ -848,8 +848,6 @@ class blcModuleManager {
|
|
| 848 |
}
|
| 849 |
}
|
| 850 |
|
| 851 |
-
return "<?php\n" . implode("\n", $strings) . "\n
|
| 852 |
}
|
| 853 |
}
|
| 854 |
-
|
| 855 |
-
?>
|
| 848 |
}
|
| 849 |
}
|
| 850 |
|
| 851 |
+
return "<?php\n" . implode("\n", $strings) . "\n";
|
| 852 |
}
|
| 853 |
}
|
|
|
|
|
|
languages/broken-link-checker-de_DE.mo
CHANGED
|
Binary file
|
languages/broken-link-checker-de_DE.po
CHANGED
|
@@ -1,32 +1,31 @@
|
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
-
"Project-Id-Version: Broken Link Checker | V1.
|
| 4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 5 |
-
"POT-Creation-Date:
|
| 6 |
-
"PO-Revision-Date:
|
| 7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
| 8 |
"Language-Team: \n"
|
|
|
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
| 13 |
-
"X-Poedit-
|
| 14 |
-
"X-Poedit-
|
| 15 |
-
"
|
| 16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
| 17 |
"X-Textdomain-Support: yes\n"
|
| 18 |
"X-Poedit-Basepath: .\n"
|
|
|
|
| 19 |
"X-Poedit-SearchPath-0: .\n"
|
| 20 |
|
| 21 |
# @ broken-link-checker
|
| 22 |
-
#: core/core.php:151
|
| 23 |
-
#: includes/admin/links-page-js.php:37
|
| 24 |
msgid "Loading..."
|
| 25 |
msgstr "Wird geladen ..."
|
| 26 |
|
| 27 |
# @ broken-link-checker
|
| 28 |
-
#: core/core.php:175
|
| 29 |
-
#: includes/admin/options-page-js.php:18
|
| 30 |
msgid "[ Network error ]"
|
| 31 |
msgstr "[ Netzwerk Fehler ]"
|
| 32 |
|
|
@@ -46,8 +45,7 @@ msgid "Link Checker"
|
|
| 46 |
msgstr "Link Checker"
|
| 47 |
|
| 48 |
# @ broken-link-checker
|
| 49 |
-
#: core/core.php:298
|
| 50 |
-
#: includes/link-query.php:27
|
| 51 |
msgid "Broken Links"
|
| 52 |
msgstr "Fehlerhafte Links"
|
| 53 |
|
|
@@ -61,471 +59,530 @@ msgid "Feedback"
|
|
| 61 |
msgstr "Feedback"
|
| 62 |
|
| 63 |
# @ broken-link-checker
|
| 64 |
-
#: core/core.php:
|
| 65 |
msgid "Go to Broken Links"
|
| 66 |
msgstr "Gehe zu fehlerhaften Links"
|
| 67 |
|
| 68 |
# @ default
|
| 69 |
-
#: core/core.php:
|
| 70 |
msgid "Settings"
|
| 71 |
msgstr "Einstellungen"
|
| 72 |
|
| 73 |
# @ broken-link-checker
|
| 74 |
-
#: core/core.php:
|
| 75 |
msgid "Settings saved."
|
| 76 |
msgstr "Einstellungen gespeichert."
|
| 77 |
|
| 78 |
-
#: core/core.php:
|
| 79 |
msgid "Thank you for your donation!"
|
| 80 |
msgstr "Besten Dank für Ihre Spende!"
|
| 81 |
|
| 82 |
# @ broken-link-checker
|
| 83 |
-
#: core/core.php:
|
| 84 |
msgid "Complete site recheck started."
|
| 85 |
msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
|
| 86 |
|
| 87 |
# @ broken-link-checker
|
| 88 |
-
#: core/core.php:
|
| 89 |
msgid "Details"
|
| 90 |
msgstr "Details"
|
| 91 |
|
| 92 |
# @ broken-link-checker
|
| 93 |
-
#: core/core.php:
|
| 94 |
msgid "General"
|
| 95 |
msgstr "Allgemein"
|
| 96 |
|
| 97 |
# @ broken-link-checker
|
| 98 |
-
#: core/core.php:
|
| 99 |
msgid "Look For Links In"
|
| 100 |
msgstr "Suchen Sie nach Links in"
|
| 101 |
|
| 102 |
# @ broken-link-checker
|
| 103 |
-
#: core/core.php:
|
| 104 |
msgid "Which Links To Check"
|
| 105 |
msgstr "Welche Links überprüfen"
|
| 106 |
|
| 107 |
# @ broken-link-checker
|
| 108 |
-
#: core/core.php:
|
| 109 |
msgid "Protocols & APIs"
|
| 110 |
msgstr "Protokoll & Schnittstellen"
|
| 111 |
|
| 112 |
# @ broken-link-checker
|
| 113 |
-
#: core/core.php:
|
| 114 |
msgid "Advanced"
|
| 115 |
msgstr "Erweitert"
|
| 116 |
|
| 117 |
# @ broken-link-checker
|
| 118 |
-
#: core/core.php:
|
| 119 |
msgid "Broken Link Checker Options"
|
| 120 |
msgstr "Broken Link Checker Optionen"
|
| 121 |
|
| 122 |
# @ broken-link-checker
|
| 123 |
-
#: core/core.php:
|
| 124 |
-
#: includes/admin/table-printer.php:197
|
| 125 |
msgid "Status"
|
| 126 |
msgstr "Status"
|
| 127 |
|
| 128 |
# @ broken-link-checker
|
| 129 |
-
#: core/core.php:
|
| 130 |
-
#: includes/admin/options-page-js.php:56
|
| 131 |
msgid "Show debug info"
|
| 132 |
msgstr "Debug Infos anzeigen"
|
| 133 |
|
| 134 |
# @ broken-link-checker
|
| 135 |
-
#: core/core.php:
|
| 136 |
msgid "Check each link"
|
| 137 |
msgstr "Überprüfe jeden Link"
|
| 138 |
|
| 139 |
# @ broken-link-checker
|
| 140 |
-
#: core/core.php:
|
| 141 |
msgid "Every %s hours"
|
| 142 |
msgstr "Alle %s Stunden"
|
| 143 |
|
| 144 |
# @ broken-link-checker
|
| 145 |
-
#: core/core.php:
|
| 146 |
-
msgid "
|
| 147 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
|
| 159 |
# @ broken-link-checker
|
| 160 |
-
#: core/core.php:
|
| 161 |
msgid "Send authors e-mail notifications about broken links in their posts"
|
| 162 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 163 |
|
| 164 |
# @ broken-link-checker
|
| 165 |
-
#: core/core.php:
|
| 166 |
msgid "Link tweaks"
|
| 167 |
msgstr "Link Einstellungen"
|
| 168 |
|
| 169 |
# @ broken-link-checker
|
| 170 |
-
#: core/core.php:
|
| 171 |
msgid "Apply custom formatting to broken links"
|
| 172 |
msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
|
| 173 |
|
| 174 |
# @ broken-link-checker
|
| 175 |
-
#: core/core.php:
|
| 176 |
-
#: core/core.php:765
|
| 177 |
msgid "Edit CSS"
|
| 178 |
msgstr "Bearbeite CSS"
|
| 179 |
|
| 180 |
-
#: core/core.php:
|
| 181 |
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
| 182 |
msgstr "Beispiel : Lorem ipsum <a %s>fehlerhafter Link</a>, dolor sit amet."
|
| 183 |
|
| 184 |
-
#: core/core.php:
|
| 185 |
-
#: core/core.php:784
|
| 186 |
msgid "Click \"Save Changes\" to update example output."
|
| 187 |
msgstr "Drücken Sie \"Änderung übernehmen\", um das Beispiel zu aktualisieren."
|
| 188 |
|
| 189 |
# @ broken-link-checker
|
| 190 |
-
#: core/core.php:
|
| 191 |
msgid "Apply custom formatting to removed links"
|
| 192 |
msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
|
| 193 |
|
| 194 |
-
#: core/core.php:
|
| 195 |
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
| 196 |
-
msgstr "
|
|
|
|
| 197 |
|
| 198 |
# @ broken-link-checker
|
| 199 |
-
#: core/core.php:
|
| 200 |
msgid "Stop search engines from following broken links"
|
| 201 |
msgstr "Stoppe Suchmaschinen aus folgenden fehlerhaften Links"
|
| 202 |
|
| 203 |
# @ broken-link-checker
|
| 204 |
-
#: core/core.php:
|
| 205 |
msgid "Look for links in"
|
| 206 |
msgstr "Suchen Sie nach Links in"
|
| 207 |
|
| 208 |
# @ broken-link-checker
|
| 209 |
-
#: core/core.php:
|
| 210 |
msgid "Post statuses"
|
| 211 |
msgstr "Beitrag Status"
|
| 212 |
|
| 213 |
# @ broken-link-checker
|
| 214 |
-
#: core/core.php:
|
| 215 |
msgid "Link types"
|
| 216 |
msgstr "Link Typen"
|
| 217 |
|
| 218 |
# @ broken-link-checker
|
| 219 |
-
#: core/core.php:
|
| 220 |
msgid "Error : All link parsers missing!"
|
| 221 |
msgstr "Fehler: Alle Link-Parser fehlen!"
|
| 222 |
|
| 223 |
# @ broken-link-checker
|
| 224 |
-
#: core/core.php:
|
| 225 |
msgid "Exclusion list"
|
| 226 |
msgstr "Ausschlussliste"
|
| 227 |
|
| 228 |
# @ broken-link-checker
|
| 229 |
-
#: core/core.php:
|
| 230 |
-
msgid "
|
| 231 |
-
|
|
|
|
|
|
|
| 232 |
|
| 233 |
# @ broken-link-checker
|
| 234 |
-
#: core/core.php:
|
| 235 |
msgid "Check links using"
|
| 236 |
msgstr "Überprüfe Links"
|
| 237 |
|
| 238 |
# @ broken-link-checker
|
| 239 |
-
#: core/core.php:
|
| 240 |
-
#: includes/links.php:856
|
| 241 |
msgid "Timeout"
|
| 242 |
msgstr "Zeitüberschreitung"
|
| 243 |
|
| 244 |
# @ broken-link-checker
|
| 245 |
# @ default
|
| 246 |
-
#: core/core.php:
|
| 247 |
-
#: core/core.php:958
|
| 248 |
-
#: core/core.php:2801
|
| 249 |
msgid "%s seconds"
|
| 250 |
msgstr "%s Sekunden"
|
| 251 |
|
| 252 |
# @ broken-link-checker
|
| 253 |
-
#: core/core.php:
|
| 254 |
msgid "Links that take longer than this to load will be marked as broken."
|
| 255 |
-
msgstr "
|
|
|
|
|
|
|
| 256 |
|
| 257 |
# @ broken-link-checker
|
| 258 |
-
#: core/core.php:
|
| 259 |
msgid "Link monitor"
|
| 260 |
msgstr "Link Monitor"
|
| 261 |
|
| 262 |
# @ broken-link-checker
|
| 263 |
-
#: core/core.php:
|
| 264 |
msgid "Run continuously while the Dashboard is open"
|
| 265 |
msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
|
| 266 |
|
| 267 |
# @ broken-link-checker
|
| 268 |
-
#: core/core.php:
|
| 269 |
msgid "Run hourly in the background"
|
| 270 |
msgstr "Stündlich im Hintergrund arbeiten"
|
| 271 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 272 |
# @ broken-link-checker
|
| 273 |
-
#: core/core.php:
|
| 274 |
msgid "Max. execution time"
|
| 275 |
msgstr "Max. Ausführungszeit"
|
| 276 |
|
| 277 |
# @ broken-link-checker
|
| 278 |
-
#: core/core.php:
|
| 279 |
-
msgid "
|
| 280 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 281 |
|
| 282 |
# @ broken-link-checker
|
| 283 |
-
#: core/core.php:
|
| 284 |
msgid "Server load limit"
|
| 285 |
msgstr "Server Belastungsgrenze"
|
| 286 |
|
| 287 |
-
#: core/core.php:
|
| 288 |
msgid "Current load : %s"
|
| 289 |
msgstr "Aktuelle Belastung: %s"
|
| 290 |
|
| 291 |
# @ broken-link-checker
|
| 292 |
-
#: core/core.php:
|
| 293 |
-
msgid "
|
| 294 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 295 |
|
| 296 |
# @ broken-link-checker
|
| 297 |
-
#: core/core.php:
|
| 298 |
msgid "Not available"
|
| 299 |
msgstr "Nicht verfügbar"
|
| 300 |
|
| 301 |
# @ broken-link-checker
|
| 302 |
-
#: core/core.php:
|
| 303 |
-
msgid "
|
| 304 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 305 |
|
| 306 |
# @ broken-link-checker
|
| 307 |
-
#: core/core.php:
|
| 308 |
msgid "Forced recheck"
|
| 309 |
msgstr "Erneute Überprüfung erzwingen"
|
| 310 |
|
| 311 |
# @ broken-link-checker
|
| 312 |
-
#: core/core.php:
|
| 313 |
msgid "Re-check all pages"
|
| 314 |
msgstr "Überprüfe alle Seiten noch einmal"
|
| 315 |
|
| 316 |
# @ broken-link-checker
|
| 317 |
-
#: core/core.php:
|
| 318 |
-
msgid "
|
| 319 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 320 |
|
| 321 |
# @ default
|
| 322 |
-
#: core/core.php:
|
| 323 |
msgid "Save Changes"
|
| 324 |
msgstr "Änderungen speichern"
|
| 325 |
|
| 326 |
# @ broken-link-checker
|
| 327 |
-
#: core/core.php:
|
| 328 |
msgid "Configure"
|
| 329 |
msgstr "Konfigurieren"
|
| 330 |
|
| 331 |
# @ broken-link-checker
|
| 332 |
-
#: core/core.php:
|
| 333 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
| 334 |
msgstr "Überprüfe folgende URLs (eine URL pro Zeile):"
|
| 335 |
|
| 336 |
# @ broken-link-checker
|
| 337 |
-
#: core/core.php:
|
| 338 |
-
#: core/core.php:1378
|
| 339 |
-
#: core/core.php:1410
|
| 340 |
msgid "Database error : %s"
|
| 341 |
msgstr "Datenbank Fehler: %s"
|
| 342 |
|
| 343 |
# @ broken-link-checker
|
| 344 |
-
#: core/core.php:
|
| 345 |
msgid "You must enter a filter name!"
|
| 346 |
msgstr "Sie müssen einen Filter Namen eingeben!"
|
| 347 |
|
| 348 |
# @ broken-link-checker
|
| 349 |
-
#: core/core.php:
|
| 350 |
msgid "Invalid search query."
|
| 351 |
msgstr "Ungültige Suchanfrage."
|
| 352 |
|
| 353 |
# @ broken-link-checker
|
| 354 |
-
#: core/core.php:
|
| 355 |
msgid "Filter \"%s\" created"
|
| 356 |
msgstr "Filter \"%s\" erstellt"
|
| 357 |
|
| 358 |
# @ broken-link-checker
|
| 359 |
-
#: core/core.php:
|
| 360 |
msgid "Filter ID not specified."
|
| 361 |
msgstr "Link ID nicht spezifiziert."
|
| 362 |
|
| 363 |
# @ broken-link-checker
|
| 364 |
-
#: core/core.php:
|
| 365 |
msgid "Filter deleted"
|
| 366 |
msgstr "Filter gelöscht"
|
| 367 |
|
| 368 |
# @ broken-link-checker
|
| 369 |
-
#: core/core.php:
|
| 370 |
msgid "Replaced %d redirect with a direct link"
|
| 371 |
msgid_plural "Replaced %d redirects with direct links"
|
| 372 |
msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
|
| 373 |
msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
|
| 374 |
|
| 375 |
# @ broken-link-checker
|
| 376 |
-
#: core/core.php:
|
| 377 |
msgid "Failed to fix %d redirect"
|
| 378 |
msgid_plural "Failed to fix %d redirects"
|
| 379 |
msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
|
| 380 |
msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
|
| 381 |
|
| 382 |
# @ broken-link-checker
|
| 383 |
-
#: core/core.php:
|
| 384 |
msgid "None of the selected links are redirects!"
|
| 385 |
msgstr "Keiner der ausgewählten Links sind Umleitungen!"
|
| 386 |
|
| 387 |
# @ broken-link-checker
|
| 388 |
-
#: core/core.php:
|
| 389 |
msgid "%d link updated."
|
| 390 |
msgid_plural "%d links updated."
|
| 391 |
msgstr[0] "Link %d aktualisiert."
|
| 392 |
msgstr[1] "Links %d aktualisiert."
|
| 393 |
|
| 394 |
# @ broken-link-checker
|
| 395 |
-
#: core/core.php:
|
| 396 |
msgid "Failed to update %d link."
|
| 397 |
msgid_plural "Failed to update %d links."
|
| 398 |
msgstr[0] "Link %d konnte nicht aktualisiert werden."
|
| 399 |
msgstr[1] "Links %d konnten nicht aktualisiert werden."
|
| 400 |
|
| 401 |
# @ broken-link-checker
|
| 402 |
-
#: core/core.php:
|
| 403 |
msgid "%d link removed"
|
| 404 |
msgid_plural "%d links removed"
|
| 405 |
msgstr[0] "%d Link entfernt"
|
| 406 |
msgstr[1] "%d Links entfernt"
|
| 407 |
|
| 408 |
# @ broken-link-checker
|
| 409 |
-
#: core/core.php:
|
| 410 |
msgid "Failed to remove %d link"
|
| 411 |
msgid_plural "Failed to remove %d links"
|
| 412 |
msgstr[0] "Link %d konnte nicht entfernt werden"
|
| 413 |
msgstr[1] "Links %d konnten nicht entfernt werden"
|
| 414 |
|
| 415 |
# @ default
|
| 416 |
-
#: core/core.php:
|
| 417 |
-
msgid "
|
| 418 |
-
|
| 419 |
-
|
| 420 |
-
|
| 421 |
-
|
| 422 |
-
|
| 423 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 424 |
msgid "Didn't find anything to delete!"
|
| 425 |
msgstr "Nichts gefunden um zu löschen!"
|
| 426 |
|
| 427 |
# @ broken-link-checker
|
| 428 |
-
#: core/core.php:
|
| 429 |
msgid "%d link scheduled for rechecking"
|
| 430 |
msgid_plural "%d links scheduled for rechecking"
|
| 431 |
msgstr[0] "%d Link zur erneuten Überprüfung geplant"
|
| 432 |
msgstr[1] "%d Links zur erneuten Überprüfung geplant"
|
| 433 |
|
| 434 |
# @ broken-link-checker
|
| 435 |
-
#: core/core.php:
|
| 436 |
-
#: core/core.php:2444
|
| 437 |
msgid "This link was manually marked as working by the user."
|
| 438 |
-
msgstr "
|
|
|
|
| 439 |
|
| 440 |
# @ broken-link-checker
|
| 441 |
-
#: core/core.php:
|
| 442 |
msgid "Couldn't modify link %d"
|
| 443 |
msgstr "Link %d konnte nicht geändert werden"
|
| 444 |
|
| 445 |
# @ broken-link-checker
|
| 446 |
-
#: core/core.php:
|
| 447 |
msgid "%d link marked as not broken"
|
| 448 |
msgid_plural "%d links marked as not broken"
|
| 449 |
msgstr[0] "%d Link als nicht fehlerhaft markiert"
|
| 450 |
msgstr[1] "%d Links als nicht fehlerhaft markiert"
|
| 451 |
|
| 452 |
# @ broken-link-checker
|
| 453 |
-
#: core/core.php:
|
| 454 |
msgid "Table columns"
|
| 455 |
msgstr "Tabellenspalten"
|
| 456 |
|
| 457 |
# @ default
|
| 458 |
-
#: core/core.php:
|
| 459 |
msgid "Show on screen"
|
| 460 |
msgstr "Auf dem Bildschirm anzeigen"
|
| 461 |
|
| 462 |
# @ broken-link-checker
|
| 463 |
-
#: core/core.php:
|
| 464 |
msgid "links"
|
| 465 |
msgstr "Links"
|
| 466 |
|
| 467 |
# @ default
|
| 468 |
# @ broken-link-checker
|
| 469 |
-
#: core/core.php:
|
| 470 |
-
#: includes/admin/table-printer.php:165
|
| 471 |
msgid "Apply"
|
| 472 |
msgstr "Anwenden"
|
| 473 |
|
| 474 |
# @ broken-link-checker
|
| 475 |
-
#: core/core.php:
|
| 476 |
msgid "Misc"
|
| 477 |
msgstr "Sonstige"
|
| 478 |
|
| 479 |
# @ broken-link-checker
|
| 480 |
-
#: core/core.php:
|
| 481 |
msgid "Highlight links broken for at least %s days"
|
| 482 |
msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
|
| 483 |
|
| 484 |
# @ broken-link-checker
|
| 485 |
-
#: core/core.php:
|
| 486 |
msgid "Color-code status codes"
|
| 487 |
msgstr "Farb-Code Status Codes"
|
| 488 |
|
| 489 |
# @ broken-link-checker
|
| 490 |
-
#: core/core.php:
|
| 491 |
-
#: core/core.php:
|
| 492 |
-
#: core/core.php:2469
|
| 493 |
-
#: core/core.php:2502
|
| 494 |
-
#: core/core.php:2565
|
| 495 |
msgid "You're not allowed to do that!"
|
| 496 |
msgstr "Sie haben nicht die Erlaubnis das zu tun!"
|
| 497 |
|
| 498 |
# @ broken-link-checker
|
| 499 |
-
#: core/core.php:
|
| 500 |
msgid "View broken links"
|
| 501 |
msgstr "Fehlerhafte Links anschauen"
|
| 502 |
|
| 503 |
# @ broken-link-checker
|
| 504 |
-
#: core/core.php:
|
| 505 |
msgid "Found %d broken link"
|
| 506 |
msgid_plural "Found %d broken links"
|
| 507 |
msgstr[0] "%d fehlerhafte Links gefunden"
|
| 508 |
msgstr[1] "%d fehlerhafte Links gefunden"
|
| 509 |
|
| 510 |
# @ broken-link-checker
|
| 511 |
-
#: core/core.php:
|
| 512 |
msgid "No broken links found."
|
| 513 |
msgstr "Keine fehlerhaften Links gefunden."
|
| 514 |
|
| 515 |
# @ broken-link-checker
|
| 516 |
-
#: core/core.php:
|
| 517 |
msgid "%d URL in the work queue"
|
| 518 |
msgid_plural "%d URLs in the work queue"
|
| 519 |
msgstr[0] "%d URL in der Warteschlange"
|
| 520 |
msgstr[1] "%d URLs in der Warteschlange"
|
| 521 |
|
| 522 |
# @ broken-link-checker
|
| 523 |
-
#: core/core.php:
|
| 524 |
msgid "No URLs in the work queue."
|
| 525 |
msgstr "Keine URLs in der Warteschlange."
|
| 526 |
|
| 527 |
# @ broken-link-checker
|
| 528 |
-
#: core/core.php:
|
| 529 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 530 |
msgid "%d unique URL"
|
| 531 |
msgid_plural "%d unique URLs"
|
|
@@ -533,232 +590,243 @@ msgstr[0] "%d eindeutige URL"
|
|
| 533 |
msgstr[1] "%d eindeutige URLs"
|
| 534 |
|
| 535 |
# @ broken-link-checker
|
| 536 |
-
#: core/core.php:
|
| 537 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 538 |
msgid "%d link"
|
| 539 |
msgid_plural "%d links"
|
| 540 |
-
msgstr[0] "%d
|
| 541 |
-
msgstr[1] "%d
|
| 542 |
|
| 543 |
# @ broken-link-checker
|
| 544 |
-
#: core/core.php:
|
| 545 |
msgid "Detected %1$s in %2$s and still searching..."
|
| 546 |
msgstr "Endeckt %1$s in %2$s und sucht immer noch ..."
|
| 547 |
|
| 548 |
# @ broken-link-checker
|
| 549 |
-
#: core/core.php:
|
| 550 |
msgid "Detected %1$s in %2$s."
|
| 551 |
msgstr "Endeckt %1$s in %2$s."
|
| 552 |
|
| 553 |
# @ broken-link-checker
|
| 554 |
-
#: core/core.php:
|
| 555 |
msgid "Searching your blog for links..."
|
| 556 |
msgstr "Durchsucht Ihr Blog nach Links ..."
|
| 557 |
|
| 558 |
# @ broken-link-checker
|
| 559 |
-
#: core/core.php:
|
| 560 |
msgid "No links detected."
|
| 561 |
msgstr "Keine Links gefunden."
|
| 562 |
|
| 563 |
# @ broken-link-checker
|
| 564 |
-
#: core/core.php:
|
| 565 |
msgctxt "current load"
|
| 566 |
msgid "Unknown"
|
| 567 |
msgstr "Unbekannt"
|
| 568 |
|
| 569 |
# @ broken-link-checker
|
| 570 |
-
#: core/core.php:
|
| 571 |
-
#: core/core.php:2477
|
| 572 |
-
#: core/core.php:2512
|
| 573 |
-
#: core/core.php:2575
|
| 574 |
msgid "Oops, I can't find the link %d"
|
| 575 |
msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
|
| 576 |
|
| 577 |
# @ broken-link-checker
|
| 578 |
-
#: core/core.php:
|
| 579 |
-
#: core/core.php:2487
|
| 580 |
msgid "Oops, couldn't modify the link!"
|
| 581 |
msgstr "Hoppla, der Link konnte nicht geändert werden!"
|
| 582 |
|
| 583 |
# @ broken-link-checker
|
| 584 |
-
#: core/core.php:
|
| 585 |
-
#: core/core.php:2490
|
| 586 |
-
#: core/core.php:2601
|
| 587 |
msgid "Error : link_id not specified"
|
| 588 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
| 589 |
|
| 590 |
# @ broken-link-checker
|
| 591 |
-
#: core/core.php:
|
| 592 |
msgid "Oops, the new URL is invalid!"
|
| 593 |
msgstr "Hoppla, die neue URL funktioniert nicht!"
|
| 594 |
|
| 595 |
# @ broken-link-checker
|
| 596 |
-
#: core/core.php:
|
| 597 |
-
#: core/core.php:2584
|
| 598 |
msgid "An unexpected error occured!"
|
| 599 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
| 600 |
|
| 601 |
# @ broken-link-checker
|
| 602 |
-
#: core/core.php:
|
| 603 |
msgid "Error : link_id or new_url not specified"
|
| 604 |
msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
|
| 605 |
|
| 606 |
# @ broken-link-checker
|
| 607 |
-
#: core/core.php:
|
| 608 |
msgid "You don't have sufficient privileges to access this information!"
|
| 609 |
msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
|
| 610 |
|
| 611 |
# @ broken-link-checker
|
| 612 |
-
#: core/core.php:
|
| 613 |
msgid "Error : link ID not specified"
|
| 614 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
| 615 |
|
| 616 |
# @ broken-link-checker
|
| 617 |
-
#: core/core.php:
|
| 618 |
msgid "Failed to load link details (%s)"
|
| 619 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
| 620 |
|
| 621 |
# @ broken-link-checker
|
| 622 |
-
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.
|
| 623 |
#. Plugin Name of the plugin/theme
|
| 624 |
-
#: core/core.php:
|
| 625 |
msgid "Broken Link Checker"
|
| 626 |
msgstr "Broken Link Checker"
|
| 627 |
|
| 628 |
# @ broken-link-checker
|
| 629 |
-
#: core/core.php:
|
| 630 |
msgid "PHP version"
|
| 631 |
msgstr "PHP Version"
|
| 632 |
|
| 633 |
# @ broken-link-checker
|
| 634 |
-
#: core/core.php:
|
| 635 |
msgid "MySQL version"
|
| 636 |
msgstr "MySQL Version"
|
| 637 |
|
| 638 |
# @ broken-link-checker
|
| 639 |
-
#: core/core.php:
|
| 640 |
-
msgid "
|
| 641 |
-
|
|
|
|
|
|
|
|
|
|
| 642 |
|
| 643 |
# @ broken-link-checker
|
| 644 |
-
#: core/core.php:
|
| 645 |
-
#: core/core.php:2757
|
| 646 |
-
#: core/core.php:2762
|
| 647 |
msgid "Not installed"
|
| 648 |
msgstr "Nicht installiert"
|
| 649 |
|
| 650 |
# @ broken-link-checker
|
| 651 |
-
#: core/core.php:
|
| 652 |
msgid "CURL version"
|
| 653 |
msgstr "CURL Version"
|
| 654 |
|
| 655 |
# @ broken-link-checker
|
| 656 |
-
#: core/core.php:
|
| 657 |
msgid "Installed"
|
| 658 |
msgstr "Installiert"
|
| 659 |
|
| 660 |
# @ broken-link-checker
|
| 661 |
-
#: core/core.php:
|
| 662 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
| 663 |
-
msgstr "
|
|
|
|
|
|
|
| 664 |
|
| 665 |
# @ broken-link-checker
|
| 666 |
-
#: core/core.php:
|
| 667 |
msgid "On"
|
| 668 |
msgstr "An"
|
| 669 |
|
| 670 |
# @ broken-link-checker
|
| 671 |
-
#: core/core.php:
|
| 672 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
| 673 |
-
msgstr "
|
|
|
|
|
|
|
| 674 |
|
| 675 |
# @ broken-link-checker
|
| 676 |
-
#: core/core.php:
|
| 677 |
-
#: core/core.php:2794
|
| 678 |
msgid "Off"
|
| 679 |
msgstr "Aus"
|
| 680 |
|
| 681 |
# @ broken-link-checker
|
| 682 |
-
#: core/core.php:
|
| 683 |
msgid "On ( %s )"
|
| 684 |
msgstr "An (%s)"
|
| 685 |
|
| 686 |
# @ broken-link-checker
|
| 687 |
-
#: core/core.php:
|
| 688 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
| 689 |
-
msgstr "
|
|
|
|
|
|
|
| 690 |
|
| 691 |
# @ broken-link-checker
|
| 692 |
-
#: core/core.php:
|
| 693 |
-
msgid "
|
| 694 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 695 |
|
| 696 |
# @ broken-link-checker
|
| 697 |
-
#: core/core.php:
|
| 698 |
-
#: core/core.php:3007
|
| 699 |
msgid "[%s] Broken links detected"
|
| 700 |
msgstr "[%s] Fehlerhafte Links entdeckt"
|
| 701 |
|
| 702 |
# @ broken-link-checker
|
| 703 |
-
#: core/core.php:
|
| 704 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
| 705 |
-
msgid_plural "
|
| 706 |
-
|
| 707 |
-
msgstr[
|
|
|
|
|
|
|
|
|
|
| 708 |
|
| 709 |
# @ broken-link-checker
|
| 710 |
-
#: core/core.php:
|
| 711 |
msgid "Here's a list of the first %d broken links:"
|
| 712 |
msgid_plural "Here's a list of the first %d broken links:"
|
| 713 |
msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
| 714 |
msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
| 715 |
|
| 716 |
# @ broken-link-checker
|
| 717 |
-
#: core/core.php:
|
| 718 |
msgid "Here's a list of the new broken links: "
|
| 719 |
msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
|
| 720 |
|
| 721 |
# @ broken-link-checker
|
| 722 |
-
#: core/core.php:
|
| 723 |
msgid "Link text : %s"
|
| 724 |
msgstr "Linktext: %s"
|
| 725 |
|
| 726 |
# @ broken-link-checker
|
| 727 |
-
#: core/core.php:
|
| 728 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
| 729 |
msgstr "Link URL: <a href=\"%s\">%s</a>"
|
| 730 |
|
| 731 |
# @ broken-link-checker
|
| 732 |
-
#: core/core.php:
|
| 733 |
msgid "Source : %s"
|
| 734 |
msgstr "Quelle: %s"
|
| 735 |
|
| 736 |
# @ brokenk-link-checker
|
| 737 |
-
#: core/core.php:
|
| 738 |
msgid "You can see all broken links here:"
|
| 739 |
msgstr "Hier sehen Sie alle fehlerhaften Links:"
|
| 740 |
|
| 741 |
# @ broken-link-checker
|
| 742 |
-
#: core/core.php:
|
| 743 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
| 744 |
-
msgid_plural "
|
| 745 |
-
|
|
|
|
|
|
|
| 746 |
msgstr[1] "Broken Link Checker hat %d fehlerhafte Links in Beiträgen entdeckt."
|
| 747 |
|
| 748 |
# @ default
|
| 749 |
-
#: core/init.php:
|
| 750 |
msgid "Once Weekly"
|
| 751 |
msgstr "Einmal wöchentlich"
|
| 752 |
|
| 753 |
# @ default
|
| 754 |
-
#: core/init.php:
|
| 755 |
msgid "Twice a Month"
|
| 756 |
msgstr "Zweimal im Monat"
|
| 757 |
|
| 758 |
# @ broken-link-checker
|
| 759 |
-
#: core/init.php:
|
| 760 |
-
msgid "
|
| 761 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 762 |
|
| 763 |
# @ broken-link-checker
|
| 764 |
#: includes/admin/db-upgrade.php:95
|
|
@@ -766,14 +834,12 @@ msgid "Failed to delete old DB tables. Database error : %s"
|
|
| 766 |
msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
|
| 767 |
|
| 768 |
# @ broken-link-checker
|
| 769 |
-
#: includes/admin/links-page-js.php:55
|
| 770 |
-
#: includes/admin/links-page-js.php:403
|
| 771 |
msgid "Wait..."
|
| 772 |
msgstr "Warte ..."
|
| 773 |
|
| 774 |
# @ broken-link-checker
|
| 775 |
-
#: includes/admin/links-page-js.php:100
|
| 776 |
-
#: includes/admin/table-printer.php:630
|
| 777 |
msgid "Not broken"
|
| 778 |
msgstr "Nicht fehlerhaft"
|
| 779 |
|
|
@@ -784,8 +850,11 @@ msgstr "%d Instanzen von diesem Link wurden erfolgreich geändert."
|
|
| 784 |
|
| 785 |
# @ broken-link-checker
|
| 786 |
#: includes/admin/links-page-js.php:321
|
| 787 |
-
msgid "
|
| 788 |
-
|
|
|
|
|
|
|
|
|
|
| 789 |
|
| 790 |
# @ broken-link-checker
|
| 791 |
#: includes/admin/links-page-js.php:327
|
|
@@ -793,8 +862,7 @@ msgid "The link could not be modified."
|
|
| 793 |
msgstr "Der Link konnte nicht geändert werden."
|
| 794 |
|
| 795 |
# @ broken-link-checker
|
| 796 |
-
#: includes/admin/links-page-js.php:330
|
| 797 |
-
#: includes/admin/links-page-js.php:455
|
| 798 |
msgid "The following error(s) occured :"
|
| 799 |
msgstr "Folgende Fehler sind aufgetreten:"
|
| 800 |
|
|
@@ -814,8 +882,7 @@ msgid "The plugin failed to remove the link."
|
|
| 814 |
msgstr "Das Plugin konnte den Link nicht entfernen."
|
| 815 |
|
| 816 |
# @ broken-link-checker
|
| 817 |
-
#: includes/admin/links-page-js.php:463
|
| 818 |
-
#: includes/admin/table-printer.php:273
|
| 819 |
#: includes/admin/table-printer.php:624
|
| 820 |
msgid "Unlink"
|
| 821 |
msgstr "Link aufheben"
|
|
@@ -837,19 +904,24 @@ msgstr ""
|
|
| 837 |
# @ broken-link-checker
|
| 838 |
#: includes/admin/links-page-js.php:538
|
| 839 |
msgid ""
|
| 840 |
-
"Are you sure you want to delete all posts, bookmarks or other items that
|
|
|
|
| 841 |
"'Cancel' to stop, 'OK' to delete"
|
| 842 |
msgstr ""
|
| 843 |
-
"Sind Sie sicher, dass Sie alle Beiträge, Lesezeichen oder andere Elemente
|
|
|
|
|
|
|
| 844 |
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
| 845 |
|
| 846 |
# @ broken-link-checker
|
| 847 |
#: includes/admin/links-page-js.php:548
|
| 848 |
msgid ""
|
| 849 |
-
"Are you sure you want to remove the selected links? This action can't be
|
|
|
|
| 850 |
"'Cancel' to stop, 'OK' to remove"
|
| 851 |
msgstr ""
|
| 852 |
-
"Sind Sie sicher, dass Sie die ausgewählten Links entfernen möchten? Diese
|
|
|
|
| 853 |
" 'Abbrechen' um abzubrechen, 'OK' um zu entfernen."
|
| 854 |
|
| 855 |
#: includes/admin/links-page-js.php:657
|
|
@@ -876,8 +948,7 @@ msgid "Delete This Filter"
|
|
| 876 |
msgstr "Diesen Filter löschen"
|
| 877 |
|
| 878 |
# @ broken-link-checker
|
| 879 |
-
#: includes/admin/search-form.php:32
|
| 880 |
-
#: includes/link-query.php:65
|
| 881 |
msgid "Search"
|
| 882 |
msgstr "Suche"
|
| 883 |
|
|
@@ -887,14 +958,12 @@ msgid "Link text"
|
|
| 887 |
msgstr "Linktext"
|
| 888 |
|
| 889 |
# @ broken-link-checker
|
| 890 |
-
#: includes/admin/search-form.php:45
|
| 891 |
-
#: includes/admin/table-printer.php:202
|
| 892 |
msgid "URL"
|
| 893 |
msgstr "URL"
|
| 894 |
|
| 895 |
# @ broken-link-checker
|
| 896 |
-
#: includes/admin/search-form.php:48
|
| 897 |
-
#: includes/admin/table-printer.php:491
|
| 898 |
msgid "HTTP code"
|
| 899 |
msgstr "HTTP Code"
|
| 900 |
|
|
@@ -904,8 +973,7 @@ msgid "Link status"
|
|
| 904 |
msgstr "Link Status"
|
| 905 |
|
| 906 |
# @ broken-link-checker
|
| 907 |
-
#: includes/admin/search-form.php:68
|
| 908 |
-
#: includes/admin/search-form.php:85
|
| 909 |
msgid "Link type"
|
| 910 |
msgstr "Link Typ"
|
| 911 |
|
|
@@ -925,27 +993,28 @@ msgid "Search Links"
|
|
| 925 |
msgstr "Suche Links"
|
| 926 |
|
| 927 |
# @ broken-link-checker
|
| 928 |
-
#: includes/admin/search-form.php:113
|
| 929 |
-
#: includes/admin/table-printer.php:
|
| 930 |
-
#: includes/admin/table-printer.php:652
|
| 931 |
-
#: includes/admin/table-printer.php:658
|
| 932 |
msgid "Cancel"
|
| 933 |
msgstr "Abbrechen"
|
| 934 |
|
| 935 |
-
#: includes/admin/sidebar.php:
|
| 936 |
-
#: includes/admin/sidebar.php:68
|
| 937 |
msgid "More plugins by Janis Elsts"
|
| 938 |
msgstr "Weitere Plugins von Janis Elsts"
|
| 939 |
|
| 940 |
-
#: includes/admin/sidebar.php:
|
| 941 |
msgid "Donate $10, $20 or $50!"
|
| 942 |
msgstr "Spenden Sie $10, $20 oder $50!"
|
| 943 |
|
| 944 |
-
#: includes/admin/sidebar.php:
|
| 945 |
-
msgid "
|
| 946 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 947 |
|
| 948 |
-
#: includes/admin/sidebar.php:
|
| 949 |
msgid "Return to WordPress Dashboard"
|
| 950 |
msgstr "Zurück zum Wordpress Dashboard"
|
| 951 |
|
|
@@ -980,8 +1049,7 @@ msgid "Bulk Actions"
|
|
| 980 |
msgstr "Massenänderung"
|
| 981 |
|
| 982 |
# @ broken-link-checker
|
| 983 |
-
#: includes/admin/table-printer.php:269
|
| 984 |
-
#: includes/admin/table-printer.php:621
|
| 985 |
msgid "Edit URL"
|
| 986 |
msgstr "Bearbeite URL"
|
| 987 |
|
|
@@ -1138,11 +1206,15 @@ msgstr "Löschen Sie diesen Link von allen Beiträgen"
|
|
| 1138 |
# @ broken-link-checker
|
| 1139 |
#: includes/admin/table-printer.php:629
|
| 1140 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
| 1141 |
-
msgstr "
|
|
|
|
|
|
|
| 1142 |
|
| 1143 |
#: includes/admin/table-printer.php:637
|
| 1144 |
msgid "Hide this link and do not report it again unless its status changes"
|
| 1145 |
-
msgstr "
|
|
|
|
|
|
|
| 1146 |
|
| 1147 |
#: includes/admin/table-printer.php:638
|
| 1148 |
msgid "Dismiss"
|
|
@@ -1172,34 +1244,28 @@ msgid "[An orphaned link! This is a bug.]"
|
|
| 1172 |
msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
|
| 1173 |
|
| 1174 |
# @ default
|
| 1175 |
-
#: includes/any-post.php:397
|
| 1176 |
-
#: modules/containers/
|
| 1177 |
-
#: modules/containers/comment.php:153
|
| 1178 |
-
#: modules/containers/custom_field.php:197
|
| 1179 |
msgid "Edit"
|
| 1180 |
msgstr "Bearbeiten"
|
| 1181 |
|
| 1182 |
# @ default
|
| 1183 |
-
#: includes/any-post.php:405
|
| 1184 |
-
#: modules/containers/custom_field.php:203
|
| 1185 |
msgid "Move this item to the Trash"
|
| 1186 |
msgstr "Element in den Papierkorb verschieben"
|
| 1187 |
|
| 1188 |
# @ default
|
| 1189 |
-
#: includes/any-post.php:407
|
| 1190 |
-
#: modules/containers/custom_field.php:205
|
| 1191 |
msgid "Trash"
|
| 1192 |
msgstr "Papierkorb"
|
| 1193 |
|
| 1194 |
# @ default
|
| 1195 |
-
#: includes/any-post.php:412
|
| 1196 |
-
#: modules/containers/custom_field.php:210
|
| 1197 |
msgid "Delete this item permanently"
|
| 1198 |
msgstr "Element endgültig löschen"
|
| 1199 |
|
| 1200 |
# @ default
|
| 1201 |
-
#: includes/any-post.php:414
|
| 1202 |
-
#: modules/containers/blogroll.php:47
|
| 1203 |
#: modules/containers/custom_field.php:212
|
| 1204 |
msgid "Delete"
|
| 1205 |
msgstr "Löschen"
|
|
@@ -1220,21 +1286,18 @@ msgid "View “%s”"
|
|
| 1220 |
msgstr "Ansehen “%s”"
|
| 1221 |
|
| 1222 |
# @ default
|
| 1223 |
-
#: includes/any-post.php:436
|
| 1224 |
-
#: modules/containers/comment.php:166
|
| 1225 |
#: modules/containers/custom_field.php:217
|
| 1226 |
msgid "View"
|
| 1227 |
msgstr "Ansehen"
|
| 1228 |
|
| 1229 |
# @ default
|
| 1230 |
-
#: includes/any-post.php:455
|
| 1231 |
-
#: modules/containers/custom_field.php:197
|
| 1232 |
msgid "Edit this item"
|
| 1233 |
msgstr "Bearbeiten Sie dieses Element"
|
| 1234 |
|
| 1235 |
# @ broken-link-checker
|
| 1236 |
-
#: includes/any-post.php:519
|
| 1237 |
-
#: modules/containers/blogroll.php:83
|
| 1238 |
#: modules/containers/comment.php:43
|
| 1239 |
msgid "Nothing to update"
|
| 1240 |
msgstr "Nichts zu aktualisieren"
|
|
@@ -1245,60 +1308,61 @@ msgid "Updating post %d failed"
|
|
| 1245 |
msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
|
| 1246 |
|
| 1247 |
# @ broken-link-checker
|
| 1248 |
-
#: includes/any-post.php:
|
| 1249 |
-
#: modules/containers/custom_field.php:284
|
| 1250 |
msgid "Failed to delete post \"%s\" (%d)"
|
| 1251 |
msgstr "Löschen des Beitrages \"%s\" (%d) schlug fehl"
|
| 1252 |
|
| 1253 |
# @ broken-link-checker
|
| 1254 |
-
#: includes/any-post.php:
|
| 1255 |
-
|
| 1256 |
-
|
| 1257 |
-
|
|
|
|
|
|
|
|
|
|
| 1258 |
|
| 1259 |
# @ broken-link-checker
|
| 1260 |
-
#: includes/any-post.php:
|
| 1261 |
-
#: modules/containers/custom_field.php:322
|
| 1262 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
| 1263 |
msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
|
| 1264 |
|
| 1265 |
# @ broken-link-checker
|
| 1266 |
-
#: includes/any-post.php:
|
| 1267 |
msgid "%d post deleted."
|
| 1268 |
msgid_plural "%d posts deleted."
|
| 1269 |
msgstr[0] "%d Artikel gelöscht."
|
| 1270 |
msgstr[1] "%d Artikel gelöscht."
|
| 1271 |
|
| 1272 |
# @ broken-link-checker
|
| 1273 |
-
#: includes/any-post.php:
|
| 1274 |
msgid "%d page deleted."
|
| 1275 |
msgid_plural "%d pages deleted."
|
| 1276 |
msgstr[0] "%d Seite gelöscht."
|
| 1277 |
msgstr[1] "%d Seiten gelöscht."
|
| 1278 |
|
| 1279 |
# @ broken-link-checker
|
| 1280 |
-
#: includes/any-post.php:
|
| 1281 |
msgid "%d \"%s\" deleted."
|
| 1282 |
msgid_plural "%d \"%s\" deleted."
|
| 1283 |
msgstr[0] "%d \"%s\" gelöscht."
|
| 1284 |
msgstr[1] "%d \"%s\" gelöscht."
|
| 1285 |
|
| 1286 |
# @ broken-link-checker
|
| 1287 |
-
#: includes/any-post.php:
|
| 1288 |
msgid "%d post moved to the Trash."
|
| 1289 |
msgid_plural "%d posts moved to the Trash."
|
| 1290 |
msgstr[0] "%d Artikel in den Papierkorb verschoben."
|
| 1291 |
msgstr[1] "%d Artikel in den Papierkorb verschoben."
|
| 1292 |
|
| 1293 |
# @ broken-link-checker
|
| 1294 |
-
#: includes/any-post.php:
|
| 1295 |
msgid "%d page moved to the Trash."
|
| 1296 |
msgid_plural "%d pages moved to the Trash."
|
| 1297 |
msgstr[0] "%d Seite in den Papierkorb verschoben."
|
| 1298 |
msgstr[1] "%d Seiten in den Papierkorb verschoben."
|
| 1299 |
|
| 1300 |
# @ broken-link-checker
|
| 1301 |
-
#: includes/any-post.php:
|
| 1302 |
msgid "%d \"%s\" moved to the Trash."
|
| 1303 |
msgid_plural "%d \"%s\" moved to the Trash."
|
| 1304 |
msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
|
|
@@ -1312,8 +1376,7 @@ msgstr[0] "%d '%s' wurde gelöscht"
|
|
| 1312 |
msgstr[1] "%d '%s' wurden gelöscht"
|
| 1313 |
|
| 1314 |
# @ broken-link-checker
|
| 1315 |
-
#: includes/containers.php:873
|
| 1316 |
-
#: includes/containers.php:891
|
| 1317 |
msgid "Container type '%s' not recognized"
|
| 1318 |
msgstr "Container Typ '%s' nicht erkannt"
|
| 1319 |
|
|
@@ -1438,14 +1501,12 @@ msgid "Pages"
|
|
| 1438 |
msgstr "Seiten"
|
| 1439 |
|
| 1440 |
# @ broken-link-checker
|
| 1441 |
-
#: includes/instances.php:
|
| 1442 |
-
#: includes/instances.php:158
|
| 1443 |
msgid "Container %s[%d] not found"
|
| 1444 |
msgstr "Container %s[%d] nicht gefunden"
|
| 1445 |
|
| 1446 |
# @ broken-link-checker
|
| 1447 |
-
#: includes/instances.php:
|
| 1448 |
-
#: includes/instances.php:167
|
| 1449 |
msgid "Parser '%s' not found."
|
| 1450 |
msgstr "Parser '%s' nicht gefunden."
|
| 1451 |
|
|
@@ -1509,8 +1570,7 @@ msgid "Search Results"
|
|
| 1509 |
msgstr "Such Resultat"
|
| 1510 |
|
| 1511 |
# @ broken-link-checker
|
| 1512 |
-
#: includes/link-query.php:67
|
| 1513 |
-
#: includes/link-query.php:114
|
| 1514 |
msgid "No links found for your query"
|
| 1515 |
msgstr "Keine Links für Deine Anfrage gefunden"
|
| 1516 |
|
|
@@ -1535,21 +1595,23 @@ msgid "Link is broken."
|
|
| 1535 |
msgstr "Link ist fehlerhaft."
|
| 1536 |
|
| 1537 |
# @ broken-link-checker
|
| 1538 |
-
#: includes/links.php:571
|
| 1539 |
-
#: includes/links.php:673
|
| 1540 |
-
#: includes/links.php:700
|
| 1541 |
msgid "Link is not valid"
|
| 1542 |
msgstr "Link ist nicht gültig"
|
| 1543 |
|
| 1544 |
# @ broken-link-checker
|
| 1545 |
#: includes/links.php:588
|
| 1546 |
-
msgid "
|
| 1547 |
-
|
|
|
|
|
|
|
|
|
|
| 1548 |
|
| 1549 |
# @ broken-link-checker
|
| 1550 |
#: includes/links.php:614
|
| 1551 |
msgid "Failed to create a DB entry for the new URL."
|
| 1552 |
-
msgstr "
|
|
|
|
| 1553 |
|
| 1554 |
# @ broken-link-checker
|
| 1555 |
#: includes/links.php:680
|
|
@@ -1557,8 +1619,7 @@ msgid "This link is not a redirect"
|
|
| 1557 |
msgstr "Dieser Link ist keine Umleitung"
|
| 1558 |
|
| 1559 |
# @ broken-link-checker
|
| 1560 |
-
#: includes/links.php:727
|
| 1561 |
-
#: includes/links.php:764
|
| 1562 |
msgid "Couldn't delete the link's database record"
|
| 1563 |
msgstr "Links können nicht aus der Datenbank gelöscht werden"
|
| 1564 |
|
|
@@ -1570,8 +1631,7 @@ msgstr "Unbekannt"
|
|
| 1570 |
|
| 1571 |
# @ link status
|
| 1572 |
# @ broken-link-checker
|
| 1573 |
-
#: includes/links.php:852
|
| 1574 |
-
#: modules/checkers/http.php:264
|
| 1575 |
#: modules/extras/mediafire.php:101
|
| 1576 |
msgid "Unknown Error"
|
| 1577 |
msgstr "Unbekannter Fehler"
|
|
@@ -1587,12 +1647,9 @@ msgid "False positive"
|
|
| 1587 |
msgstr "Falsch positiv"
|
| 1588 |
|
| 1589 |
# @ broken-link-checker
|
| 1590 |
-
#: includes/links.php:882
|
| 1591 |
-
#: modules/extras/
|
| 1592 |
-
#: modules/extras/
|
| 1593 |
-
#: modules/extras/rapidshare.php:145
|
| 1594 |
-
#: modules/extras/rapidshare.php:151
|
| 1595 |
-
#: modules/extras/rapidshare.php:178
|
| 1596 |
msgctxt "link status"
|
| 1597 |
msgid "OK"
|
| 1598 |
msgstr "OK"
|
|
@@ -1678,39 +1735,38 @@ msgstr[0] "%d Monat vergangen"
|
|
| 1678 |
msgstr[1] "%d Monate vergangen"
|
| 1679 |
|
| 1680 |
# @ broken-link-checker
|
| 1681 |
-
#: modules/checkers/http.php:
|
| 1682 |
msgid "Server Not Found"
|
| 1683 |
msgstr "Server nicht gefunden"
|
| 1684 |
|
| 1685 |
# @ broken-link-checker
|
| 1686 |
-
#: modules/checkers/http.php:
|
| 1687 |
msgid "Connection Failed"
|
| 1688 |
msgstr "Verbindung fehlgeschlagen"
|
| 1689 |
|
| 1690 |
# @ broken-link-checker
|
| 1691 |
-
#: modules/checkers/http.php:
|
| 1692 |
-
#: modules/checkers/http.php:363
|
| 1693 |
msgid "HTTP code : %d"
|
| 1694 |
msgstr "HTTP Code: %d"
|
| 1695 |
|
| 1696 |
# @ broken-link-checker
|
| 1697 |
-
#: modules/checkers/http.php:
|
| 1698 |
-
#: modules/checkers/http.php:365
|
| 1699 |
msgid "(No response)"
|
| 1700 |
msgstr "(Keine Antwort)"
|
| 1701 |
|
| 1702 |
# @ broken-link-checker
|
| 1703 |
-
#: modules/checkers/http.php:
|
| 1704 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
| 1705 |
-
msgstr "
|
|
|
|
| 1706 |
|
| 1707 |
# @ broken-link-checker
|
| 1708 |
-
#: modules/checkers/http.php:
|
| 1709 |
msgid "Request timed out."
|
| 1710 |
msgstr "Erfordert Zeitlimit."
|
| 1711 |
|
| 1712 |
# @ broken-link-checker
|
| 1713 |
-
#: modules/checkers/http.php:
|
| 1714 |
msgid "Using Snoopy"
|
| 1715 |
msgstr "Benutzt Snoopy"
|
| 1716 |
|
|
@@ -1720,8 +1776,7 @@ msgid "Bookmark"
|
|
| 1720 |
msgstr "Lesezeichen"
|
| 1721 |
|
| 1722 |
# @ broken-link-checker
|
| 1723 |
-
#: modules/containers/blogroll.php:27
|
| 1724 |
-
#: modules/containers/blogroll.php:46
|
| 1725 |
msgid "Edit this bookmark"
|
| 1726 |
msgstr "Lesezeichen bearbeiten"
|
| 1727 |
|
|
@@ -1767,8 +1822,7 @@ msgid "Can't move comment %d to the trash"
|
|
| 1767 |
msgstr "Kommentar %d kann nicht in den Papierkorb verschoben werden"
|
| 1768 |
|
| 1769 |
# @ default
|
| 1770 |
-
#: modules/containers/comment.php:153
|
| 1771 |
-
#: modules/containers/comment.php:195
|
| 1772 |
msgid "Edit comment"
|
| 1773 |
msgstr "Kommentar bearbeiten"
|
| 1774 |
|
|
@@ -1833,8 +1887,7 @@ msgid "View \"%s\""
|
|
| 1833 |
msgstr "\"%s\" ansehen"
|
| 1834 |
|
| 1835 |
# @ broken-link-checker
|
| 1836 |
-
#: modules/containers/dummy.php:34
|
| 1837 |
-
#: modules/containers/dummy.php:45
|
| 1838 |
msgid "I don't know how to edit a '%s' [%d]."
|
| 1839 |
msgstr "Das Bearbeiten von '%s' [%d] ist fehlgeschlagen."
|
| 1840 |
|
|
@@ -1848,21 +1901,22 @@ msgstr "DailyMotion Video"
|
|
| 1848 |
msgid "Embedded DailyMotion video"
|
| 1849 |
msgstr "Eingebettete DailyMotion Videos"
|
| 1850 |
|
| 1851 |
-
#: modules/extras/embed-parser-base.php:
|
| 1852 |
-
msgid "
|
| 1853 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1854 |
|
| 1855 |
#: modules/extras/fileserve.php:55
|
| 1856 |
msgid "Using FileServe API"
|
| 1857 |
msgstr "Verwende FileServe API"
|
| 1858 |
|
| 1859 |
# @ broken-link-checker
|
| 1860 |
-
#: modules/extras/fileserve.php:112
|
| 1861 |
-
#: modules/extras/mediafire.php:
|
| 1862 |
-
#: modules/extras/
|
| 1863 |
-
#: modules/extras/megaupload.php:81
|
| 1864 |
-
#: modules/extras/megaupload.php:123
|
| 1865 |
-
#: modules/extras/rapidshare.php:139
|
| 1866 |
msgid "Not Found"
|
| 1867 |
msgstr "Nicht gefunden"
|
| 1868 |
|
|
@@ -1938,60 +1992,93 @@ msgid "Embedded Vimeo video"
|
|
| 1938 |
msgstr "Eingebettete Vimeo Videos"
|
| 1939 |
|
| 1940 |
# @ broken-link-checker
|
| 1941 |
-
#: modules/extras/youtube-embed.php:24
|
| 1942 |
-
#: modules/extras/youtube-iframe.php:25
|
| 1943 |
msgid "YouTube Video"
|
| 1944 |
msgstr "YouTube Video"
|
| 1945 |
|
| 1946 |
# @ broken-link-checker
|
| 1947 |
-
#: modules/extras/youtube-embed.php:25
|
| 1948 |
-
#: modules/extras/youtube-iframe.php:26
|
| 1949 |
msgid "Embedded YouTube video"
|
| 1950 |
msgstr "Eingebettete YouTube Videos"
|
| 1951 |
|
| 1952 |
# @ broken-link-checker
|
| 1953 |
-
#: modules/extras/youtube.php:
|
| 1954 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1955 |
msgid "Video Not Found"
|
| 1956 |
msgstr "Video nicht gefunden"
|
| 1957 |
|
| 1958 |
-
#: modules/extras/youtube.php:
|
| 1959 |
msgid "Video Removed"
|
| 1960 |
msgstr "Video entfernt"
|
| 1961 |
|
| 1962 |
-
#: modules/extras/youtube.php:
|
| 1963 |
msgid "Invalid Video ID"
|
| 1964 |
msgstr "Ungültige Video ID"
|
| 1965 |
|
| 1966 |
-
#: modules/extras/youtube.php:
|
| 1967 |
msgid "Video OK"
|
| 1968 |
msgstr "Video OK"
|
| 1969 |
|
| 1970 |
# @ broken-link-checker
|
| 1971 |
-
#: modules/extras/youtube.php:
|
| 1972 |
-
#: modules/extras/youtube.php:
|
| 1973 |
msgid "OK"
|
| 1974 |
msgstr "OK"
|
| 1975 |
|
| 1976 |
-
#: modules/extras/youtube.php:
|
| 1977 |
msgid "Video status : %s%s"
|
| 1978 |
msgstr "Video Status : %s%s"
|
| 1979 |
|
| 1980 |
-
#: modules/extras/youtube.php:
|
| 1981 |
msgid "Video Restricted"
|
| 1982 |
msgstr "Video mit Einschränkungen"
|
| 1983 |
|
| 1984 |
-
#: modules/extras/youtube.php:
|
| 1985 |
msgid "Unknown YouTube API response received."
|
| 1986 |
msgstr "Unbekannte Antwort der YouTube API erhalten."
|
| 1987 |
|
| 1988 |
# @ broken-link-checker
|
| 1989 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1990 |
msgid "Image"
|
| 1991 |
msgstr "Bild"
|
| 1992 |
|
| 1993 |
# @ broken-link-checker
|
| 1994 |
-
#: modules/parsers/metadata.php:
|
| 1995 |
msgid "Custom field"
|
| 1996 |
msgstr "Benutzerdefiniertes Feld"
|
| 1997 |
|
|
@@ -2000,14 +2087,17 @@ msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
|
| 2000 |
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 2001 |
|
| 2002 |
#. Description of the plugin/theme
|
| 2003 |
-
msgid "
|
| 2004 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2005 |
|
| 2006 |
#. Author of the plugin/theme
|
| 2007 |
msgid "Janis Elsts"
|
| 2008 |
msgstr "Janis Elsts"
|
| 2009 |
|
| 2010 |
#. Author URI of the plugin/theme
|
| 2011 |
-
msgid "http://w-shadow.com/
|
| 2012 |
-
msgstr "http://w-shadow.com/
|
| 2013 |
-
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
+
"Project-Id-Version: Broken Link Checker | V1.8\n"
|
| 4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 5 |
+
"POT-Creation-Date: 2013-06-03 13:55:03+00:00\n"
|
| 6 |
+
"PO-Revision-Date: 2013-06-23 09:00+0100\n"
|
| 7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
| 8 |
"Language-Team: \n"
|
| 9 |
+
"Language: de_CH\n"
|
| 10 |
"MIME-Version: 1.0\n"
|
| 11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 12 |
"Content-Transfer-Encoding: 8bit\n"
|
| 13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
| 14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
| 15 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
| 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.5.5\n"
|
| 20 |
"X-Poedit-SearchPath-0: .\n"
|
| 21 |
|
| 22 |
# @ broken-link-checker
|
| 23 |
+
#: core/core.php:151 includes/admin/links-page-js.php:37
|
|
|
|
| 24 |
msgid "Loading..."
|
| 25 |
msgstr "Wird geladen ..."
|
| 26 |
|
| 27 |
# @ broken-link-checker
|
| 28 |
+
#: core/core.php:175 includes/admin/options-page-js.php:18
|
|
|
|
| 29 |
msgid "[ Network error ]"
|
| 30 |
msgstr "[ Netzwerk Fehler ]"
|
| 31 |
|
| 45 |
msgstr "Link Checker"
|
| 46 |
|
| 47 |
# @ broken-link-checker
|
| 48 |
+
#: core/core.php:298 includes/link-query.php:27
|
|
|
|
| 49 |
msgid "Broken Links"
|
| 50 |
msgstr "Fehlerhafte Links"
|
| 51 |
|
| 59 |
msgstr "Feedback"
|
| 60 |
|
| 61 |
# @ broken-link-checker
|
| 62 |
+
#: core/core.php:337
|
| 63 |
msgid "Go to Broken Links"
|
| 64 |
msgstr "Gehe zu fehlerhaften Links"
|
| 65 |
|
| 66 |
# @ default
|
| 67 |
+
#: core/core.php:366
|
| 68 |
msgid "Settings"
|
| 69 |
msgstr "Einstellungen"
|
| 70 |
|
| 71 |
# @ broken-link-checker
|
| 72 |
+
#: core/core.php:533
|
| 73 |
msgid "Settings saved."
|
| 74 |
msgstr "Einstellungen gespeichert."
|
| 75 |
|
| 76 |
+
#: core/core.php:539
|
| 77 |
msgid "Thank you for your donation!"
|
| 78 |
msgstr "Besten Dank für Ihre Spende!"
|
| 79 |
|
| 80 |
# @ broken-link-checker
|
| 81 |
+
#: core/core.php:547
|
| 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:556
|
| 87 |
msgid "Details"
|
| 88 |
msgstr "Details"
|
| 89 |
|
| 90 |
# @ broken-link-checker
|
| 91 |
+
#: core/core.php:570
|
| 92 |
msgid "General"
|
| 93 |
msgstr "Allgemein"
|
| 94 |
|
| 95 |
# @ broken-link-checker
|
| 96 |
+
#: core/core.php:571
|
| 97 |
msgid "Look For Links In"
|
| 98 |
msgstr "Suchen Sie nach Links in"
|
| 99 |
|
| 100 |
# @ broken-link-checker
|
| 101 |
+
#: core/core.php:572
|
| 102 |
msgid "Which Links To Check"
|
| 103 |
msgstr "Welche Links überprüfen"
|
| 104 |
|
| 105 |
# @ broken-link-checker
|
| 106 |
+
#: core/core.php:573
|
| 107 |
msgid "Protocols & APIs"
|
| 108 |
msgstr "Protokoll & Schnittstellen"
|
| 109 |
|
| 110 |
# @ broken-link-checker
|
| 111 |
+
#: core/core.php:574
|
| 112 |
msgid "Advanced"
|
| 113 |
msgstr "Erweitert"
|
| 114 |
|
| 115 |
# @ broken-link-checker
|
| 116 |
+
#: core/core.php:589
|
| 117 |
msgid "Broken Link Checker Options"
|
| 118 |
msgstr "Broken Link Checker Optionen"
|
| 119 |
|
| 120 |
# @ broken-link-checker
|
| 121 |
+
#: core/core.php:631 includes/admin/table-printer.php:197
|
|
|
|
| 122 |
msgid "Status"
|
| 123 |
msgstr "Status"
|
| 124 |
|
| 125 |
# @ broken-link-checker
|
| 126 |
+
#: core/core.php:633 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:661
|
| 132 |
msgid "Check each link"
|
| 133 |
msgstr "Überprüfe jeden Link"
|
| 134 |
|
| 135 |
# @ broken-link-checker
|
| 136 |
+
#: core/core.php:666
|
| 137 |
msgid "Every %s hours"
|
| 138 |
msgstr "Alle %s Stunden"
|
| 139 |
|
| 140 |
# @ broken-link-checker
|
| 141 |
+
#: core/core.php:675
|
| 142 |
+
msgid ""
|
| 143 |
+
"Existing links will be checked this often. New links will usually be checked "
|
| 144 |
+
"ASAP."
|
| 145 |
+
msgstr ""
|
| 146 |
+
"Vorhandene Links werden nach Ablauf der Zeit automatisch kontrolliert. Neue "
|
| 147 |
+
"Links werden sofort geprüft."
|
| 148 |
|
| 149 |
# @ broken-link-checker
|
| 150 |
+
#: core/core.php:682
|
| 151 |
msgid "E-mail notifications"
|
| 152 |
msgstr "E-Mail Benachrichtigungen"
|
| 153 |
|
| 154 |
# @ broken-link-checker
|
| 155 |
+
#: core/core.php:688
|
| 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:696
|
| 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:703
|
| 169 |
+
msgid "Notification e-mail address"
|
| 170 |
+
msgstr "Benachrichtigungs-E-Mail-Adresse"
|
| 171 |
+
|
| 172 |
+
#: core/core.php:715
|
| 173 |
+
msgid ""
|
| 174 |
+
"Leave empty to use the e-mail address specified in Settings → General."
|
| 175 |
+
msgstr ""
|
| 176 |
+
"Leer lassen, um die E-Mail-Adresse in Einstellungen → Allgemein zu "
|
| 177 |
+
"verwenden."
|
| 178 |
|
| 179 |
# @ broken-link-checker
|
| 180 |
+
#: core/core.php:722
|
| 181 |
msgid "Link tweaks"
|
| 182 |
msgstr "Link Einstellungen"
|
| 183 |
|
| 184 |
# @ broken-link-checker
|
| 185 |
+
#: core/core.php:728
|
| 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:732 core/core.php:763
|
|
|
|
| 191 |
msgid "Edit CSS"
|
| 192 |
msgstr "Bearbeite CSS"
|
| 193 |
|
| 194 |
+
#: core/core.php:748
|
| 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:751 core/core.php:782
|
|
|
|
| 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:759
|
| 204 |
msgid "Apply custom formatting to removed links"
|
| 205 |
msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
|
| 206 |
|
| 207 |
+
#: core/core.php:779
|
| 208 |
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
| 209 |
+
msgstr ""
|
| 210 |
+
"Beispiel : Lorem ipsum <span %s>entfernter Link</span>, dolor sit amet."
|
| 211 |
|
| 212 |
# @ broken-link-checker
|
| 213 |
+
#: core/core.php:792
|
| 214 |
msgid "Stop search engines from following broken links"
|
| 215 |
msgstr "Stoppe Suchmaschinen aus folgenden fehlerhaften Links"
|
| 216 |
|
| 217 |
# @ broken-link-checker
|
| 218 |
+
#: core/core.php:809
|
| 219 |
msgid "Look for links in"
|
| 220 |
msgstr "Suchen Sie nach Links in"
|
| 221 |
|
| 222 |
# @ broken-link-checker
|
| 223 |
+
#: core/core.php:820
|
| 224 |
msgid "Post statuses"
|
| 225 |
msgstr "Beitrag Status"
|
| 226 |
|
| 227 |
# @ broken-link-checker
|
| 228 |
+
#: core/core.php:853
|
| 229 |
msgid "Link types"
|
| 230 |
msgstr "Link Typen"
|
| 231 |
|
| 232 |
# @ broken-link-checker
|
| 233 |
+
#: core/core.php:859
|
| 234 |
msgid "Error : All link parsers missing!"
|
| 235 |
msgstr "Fehler: Alle Link-Parser fehlen!"
|
| 236 |
|
| 237 |
# @ broken-link-checker
|
| 238 |
+
#: core/core.php:866
|
| 239 |
msgid "Exclusion list"
|
| 240 |
msgstr "Ausschlussliste"
|
| 241 |
|
| 242 |
# @ broken-link-checker
|
| 243 |
+
#: core/core.php:867
|
| 244 |
+
msgid ""
|
| 245 |
+
"Don't check links where the URL contains any of these words (one per line) :"
|
| 246 |
+
msgstr ""
|
| 247 |
+
"URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
|
| 248 |
|
| 249 |
# @ broken-link-checker
|
| 250 |
+
#: core/core.php:885
|
| 251 |
msgid "Check links using"
|
| 252 |
msgstr "Überprüfe Links"
|
| 253 |
|
| 254 |
# @ broken-link-checker
|
| 255 |
+
#: core/core.php:904 includes/links.php:856
|
|
|
|
| 256 |
msgid "Timeout"
|
| 257 |
msgstr "Zeitüberschreitung"
|
| 258 |
|
| 259 |
# @ broken-link-checker
|
| 260 |
# @ default
|
| 261 |
+
#: core/core.php:910 core/core.php:979 core/core.php:2823
|
|
|
|
|
|
|
| 262 |
msgid "%s seconds"
|
| 263 |
msgstr "%s Sekunden"
|
| 264 |
|
| 265 |
# @ broken-link-checker
|
| 266 |
+
#: core/core.php:919
|
| 267 |
msgid "Links that take longer than this to load will be marked as broken."
|
| 268 |
+
msgstr ""
|
| 269 |
+
"Links die länger zum laden brauchen als hier eingetragen, gelten als "
|
| 270 |
+
"fehlerhaft."
|
| 271 |
|
| 272 |
# @ broken-link-checker
|
| 273 |
+
#: core/core.php:926
|
| 274 |
msgid "Link monitor"
|
| 275 |
msgstr "Link Monitor"
|
| 276 |
|
| 277 |
# @ broken-link-checker
|
| 278 |
+
#: core/core.php:934
|
| 279 |
msgid "Run continuously while the Dashboard is open"
|
| 280 |
msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
|
| 281 |
|
| 282 |
# @ broken-link-checker
|
| 283 |
+
#: core/core.php:942
|
| 284 |
msgid "Run hourly in the background"
|
| 285 |
msgstr "Stündlich im Hintergrund arbeiten"
|
| 286 |
|
| 287 |
+
#: core/core.php:950
|
| 288 |
+
msgid "Show the dashboard widget for"
|
| 289 |
+
msgstr "Dashboard-Widget anzeigen für"
|
| 290 |
+
|
| 291 |
+
#: core/core.php:955
|
| 292 |
+
msgctxt "dashboard widget visibility"
|
| 293 |
+
msgid "Administrator"
|
| 294 |
+
msgstr "Administrator"
|
| 295 |
+
|
| 296 |
+
#: core/core.php:956
|
| 297 |
+
msgctxt "dashboard widget visibility"
|
| 298 |
+
msgid "Editor and above"
|
| 299 |
+
msgstr "Redakteur und höher"
|
| 300 |
+
|
| 301 |
+
#: core/core.php:957
|
| 302 |
+
msgctxt "dashboard widget visibility"
|
| 303 |
+
msgid "Nobody (disables the widget)"
|
| 304 |
+
msgstr "Niemand (deaktiviert das Widget)"
|
| 305 |
+
|
| 306 |
# @ broken-link-checker
|
| 307 |
+
#: core/core.php:973
|
| 308 |
msgid "Max. execution time"
|
| 309 |
msgstr "Max. Ausführungszeit"
|
| 310 |
|
| 311 |
# @ broken-link-checker
|
| 312 |
+
#: core/core.php:990
|
| 313 |
+
msgid ""
|
| 314 |
+
"The plugin works by periodically launching a background job that parses your "
|
| 315 |
+
"posts for links, checks the discovered URLs, and performs other time-"
|
| 316 |
+
"consuming tasks. Here you can set for how long, at most, the link monitor "
|
| 317 |
+
"may run each time before stopping."
|
| 318 |
+
msgstr ""
|
| 319 |
+
"Das Plugin arbeitet in regelmässigen Abständen im Hintergrund. Ihre Beiträge "
|
| 320 |
+
"werden auf Links analysiert, entdeckte URLs geprüft und andere "
|
| 321 |
+
"zeitaufwendige Aufgaben ausführt. Hier können Sie einstellen, wie lange die "
|
| 322 |
+
"Instanzen laufen sollen, bevor sie gestoppt werden."
|
| 323 |
|
| 324 |
# @ broken-link-checker
|
| 325 |
+
#: core/core.php:999
|
| 326 |
msgid "Server load limit"
|
| 327 |
msgstr "Server Belastungsgrenze"
|
| 328 |
|
| 329 |
+
#: core/core.php:1014
|
| 330 |
msgid "Current load : %s"
|
| 331 |
msgstr "Aktuelle Belastung: %s"
|
| 332 |
|
| 333 |
# @ broken-link-checker
|
| 334 |
+
#: core/core.php:1019
|
| 335 |
+
msgid ""
|
| 336 |
+
"Link checking will be suspended if the average <a href=\"%s\">server load</"
|
| 337 |
+
"a> rises above this number. Leave this field blank to disable load limiting."
|
| 338 |
+
msgstr ""
|
| 339 |
+
"Die Link Überprüfung wird ausgesetzt, wenn die durchschnittliche <a href=\"%s"
|
| 340 |
+
"\">Belastung des Servers</a> über diese Zahl ansteigt. Lassen Sie dieses "
|
| 341 |
+
"Feld leer, um das Ladelimit zu deaktivieren."
|
| 342 |
|
| 343 |
# @ broken-link-checker
|
| 344 |
+
#: core/core.php:1028
|
| 345 |
msgid "Not available"
|
| 346 |
msgstr "Nicht verfügbar"
|
| 347 |
|
| 348 |
# @ broken-link-checker
|
| 349 |
+
#: core/core.php:1030
|
| 350 |
+
msgid ""
|
| 351 |
+
"Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
|
| 352 |
+
"code> is present and accessible."
|
| 353 |
+
msgstr ""
|
| 354 |
+
"Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</"
|
| 355 |
+
"code> vorhanden und zugänglich ist."
|
| 356 |
|
| 357 |
# @ broken-link-checker
|
| 358 |
+
#: core/core.php:1038
|
| 359 |
msgid "Forced recheck"
|
| 360 |
msgstr "Erneute Überprüfung erzwingen"
|
| 361 |
|
| 362 |
# @ broken-link-checker
|
| 363 |
+
#: core/core.php:1041
|
| 364 |
msgid "Re-check all pages"
|
| 365 |
msgstr "Überprüfe alle Seiten noch einmal"
|
| 366 |
|
| 367 |
# @ broken-link-checker
|
| 368 |
+
#: core/core.php:1045
|
| 369 |
+
msgid ""
|
| 370 |
+
"The \"Nuclear Option\". Click this button to make the plugin empty its link "
|
| 371 |
+
"database and recheck the entire site from scratch."
|
| 372 |
+
msgstr ""
|
| 373 |
+
"Die \"Nuklear Option\". Klicken Sie auf diese Schaltfläche, um die Link-"
|
| 374 |
+
"Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
|
| 375 |
|
| 376 |
# @ default
|
| 377 |
+
#: core/core.php:1056
|
| 378 |
msgid "Save Changes"
|
| 379 |
msgstr "Änderungen speichern"
|
| 380 |
|
| 381 |
# @ broken-link-checker
|
| 382 |
+
#: core/core.php:1107
|
| 383 |
msgid "Configure"
|
| 384 |
msgstr "Konfigurieren"
|
| 385 |
|
| 386 |
# @ broken-link-checker
|
| 387 |
+
#: core/core.php:1189
|
| 388 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
| 389 |
msgstr "Überprüfe folgende URLs (eine URL pro Zeile):"
|
| 390 |
|
| 391 |
# @ broken-link-checker
|
| 392 |
+
#: core/core.php:1317 core/core.php:1399 core/core.php:1431
|
|
|
|
|
|
|
| 393 |
msgid "Database error : %s"
|
| 394 |
msgstr "Datenbank Fehler: %s"
|
| 395 |
|
| 396 |
# @ broken-link-checker
|
| 397 |
+
#: core/core.php:1381
|
| 398 |
msgid "You must enter a filter name!"
|
| 399 |
msgstr "Sie müssen einen Filter Namen eingeben!"
|
| 400 |
|
| 401 |
# @ broken-link-checker
|
| 402 |
+
#: core/core.php:1385
|
| 403 |
msgid "Invalid search query."
|
| 404 |
msgstr "Ungültige Suchanfrage."
|
| 405 |
|
| 406 |
# @ broken-link-checker
|
| 407 |
+
#: core/core.php:1394
|
| 408 |
msgid "Filter \"%s\" created"
|
| 409 |
msgstr "Filter \"%s\" erstellt"
|
| 410 |
|
| 411 |
# @ broken-link-checker
|
| 412 |
+
#: core/core.php:1421
|
| 413 |
msgid "Filter ID not specified."
|
| 414 |
msgstr "Link ID nicht spezifiziert."
|
| 415 |
|
| 416 |
# @ broken-link-checker
|
| 417 |
+
#: core/core.php:1428
|
| 418 |
msgid "Filter deleted"
|
| 419 |
msgstr "Filter gelöscht"
|
| 420 |
|
| 421 |
# @ broken-link-checker
|
| 422 |
+
#: core/core.php:1475
|
| 423 |
msgid "Replaced %d redirect with a direct link"
|
| 424 |
msgid_plural "Replaced %d redirects with direct links"
|
| 425 |
msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
|
| 426 |
msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
|
| 427 |
|
| 428 |
# @ broken-link-checker
|
| 429 |
+
#: core/core.php:1486
|
| 430 |
msgid "Failed to fix %d redirect"
|
| 431 |
msgid_plural "Failed to fix %d redirects"
|
| 432 |
msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
|
| 433 |
msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
|
| 434 |
|
| 435 |
# @ broken-link-checker
|
| 436 |
+
#: core/core.php:1497
|
| 437 |
msgid "None of the selected links are redirects!"
|
| 438 |
msgstr "Keiner der ausgewählten Links sind Umleitungen!"
|
| 439 |
|
| 440 |
# @ broken-link-checker
|
| 441 |
+
#: core/core.php:1575
|
| 442 |
msgid "%d link updated."
|
| 443 |
msgid_plural "%d links updated."
|
| 444 |
msgstr[0] "Link %d aktualisiert."
|
| 445 |
msgstr[1] "Links %d aktualisiert."
|
| 446 |
|
| 447 |
# @ broken-link-checker
|
| 448 |
+
#: core/core.php:1586
|
| 449 |
msgid "Failed to update %d link."
|
| 450 |
msgid_plural "Failed to update %d links."
|
| 451 |
msgstr[0] "Link %d konnte nicht aktualisiert werden."
|
| 452 |
msgstr[1] "Links %d konnten nicht aktualisiert werden."
|
| 453 |
|
| 454 |
# @ broken-link-checker
|
| 455 |
+
#: core/core.php:1640
|
| 456 |
msgid "%d link removed"
|
| 457 |
msgid_plural "%d links removed"
|
| 458 |
msgstr[0] "%d Link entfernt"
|
| 459 |
msgstr[1] "%d Links entfernt"
|
| 460 |
|
| 461 |
# @ broken-link-checker
|
| 462 |
+
#: core/core.php:1651
|
| 463 |
msgid "Failed to remove %d link"
|
| 464 |
msgid_plural "Failed to remove %d links"
|
| 465 |
msgstr[0] "Link %d konnte nicht entfernt werden"
|
| 466 |
msgstr[1] "Links %d konnten nicht entfernt werden"
|
| 467 |
|
| 468 |
# @ default
|
| 469 |
+
#: core/core.php:1760
|
| 470 |
+
msgid ""
|
| 471 |
+
"%d item was skipped because it can't be moved to the Trash. You need to "
|
| 472 |
+
"delete it manually."
|
| 473 |
+
msgid_plural ""
|
| 474 |
+
"%d items were skipped because they can't be moved to the Trash. You need to "
|
| 475 |
+
"delete them manually."
|
| 476 |
+
msgstr[0] ""
|
| 477 |
+
"%d Das Element wurde übersprungen, weil es nicht in den Papierkorb "
|
| 478 |
+
"verschoben werden kann. Löschen Sie es manuell."
|
| 479 |
+
msgstr[1] ""
|
| 480 |
+
"%d Die Elemente wurde übersprungen, weil sie nicht in den Papierkorb "
|
| 481 |
+
"verschoben werden können. Löschen Sie diese manuell."
|
| 482 |
+
|
| 483 |
+
# @ broken-link-checker
|
| 484 |
+
#: core/core.php:1782
|
| 485 |
msgid "Didn't find anything to delete!"
|
| 486 |
msgstr "Nichts gefunden um zu löschen!"
|
| 487 |
|
| 488 |
# @ broken-link-checker
|
| 489 |
+
#: core/core.php:1810
|
| 490 |
msgid "%d link scheduled for rechecking"
|
| 491 |
msgid_plural "%d links scheduled for rechecking"
|
| 492 |
msgstr[0] "%d Link zur erneuten Überprüfung geplant"
|
| 493 |
msgstr[1] "%d Links zur erneuten Überprüfung geplant"
|
| 494 |
|
| 495 |
# @ broken-link-checker
|
| 496 |
+
#: core/core.php:1856 core/core.php:2465
|
|
|
|
| 497 |
msgid "This link was manually marked as working by the user."
|
| 498 |
+
msgstr ""
|
| 499 |
+
"Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
|
| 500 |
|
| 501 |
# @ broken-link-checker
|
| 502 |
+
#: core/core.php:1863
|
| 503 |
msgid "Couldn't modify link %d"
|
| 504 |
msgstr "Link %d konnte nicht geändert werden"
|
| 505 |
|
| 506 |
# @ broken-link-checker
|
| 507 |
+
#: core/core.php:1873
|
| 508 |
msgid "%d link marked as not broken"
|
| 509 |
msgid_plural "%d links marked as not broken"
|
| 510 |
msgstr[0] "%d Link als nicht fehlerhaft markiert"
|
| 511 |
msgstr[1] "%d Links als nicht fehlerhaft markiert"
|
| 512 |
|
| 513 |
# @ broken-link-checker
|
| 514 |
+
#: core/core.php:1913
|
| 515 |
msgid "Table columns"
|
| 516 |
msgstr "Tabellenspalten"
|
| 517 |
|
| 518 |
# @ default
|
| 519 |
+
#: core/core.php:1932
|
| 520 |
msgid "Show on screen"
|
| 521 |
msgstr "Auf dem Bildschirm anzeigen"
|
| 522 |
|
| 523 |
# @ broken-link-checker
|
| 524 |
+
#: core/core.php:1939
|
| 525 |
msgid "links"
|
| 526 |
msgstr "Links"
|
| 527 |
|
| 528 |
# @ default
|
| 529 |
# @ broken-link-checker
|
| 530 |
+
#: core/core.php:1940 includes/admin/table-printer.php:165
|
|
|
|
| 531 |
msgid "Apply"
|
| 532 |
msgstr "Anwenden"
|
| 533 |
|
| 534 |
# @ broken-link-checker
|
| 535 |
+
#: core/core.php:1944
|
| 536 |
msgid "Misc"
|
| 537 |
msgstr "Sonstige"
|
| 538 |
|
| 539 |
# @ broken-link-checker
|
| 540 |
+
#: core/core.php:1959
|
| 541 |
msgid "Highlight links broken for at least %s days"
|
| 542 |
msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
|
| 543 |
|
| 544 |
# @ broken-link-checker
|
| 545 |
+
#: core/core.php:1968
|
| 546 |
msgid "Color-code status codes"
|
| 547 |
msgstr "Farb-Code Status Codes"
|
| 548 |
|
| 549 |
# @ broken-link-checker
|
| 550 |
+
#: core/core.php:1985 core/core.php:2450 core/core.php:2490 core/core.php:2523
|
| 551 |
+
#: core/core.php:2586
|
|
|
|
|
|
|
|
|
|
| 552 |
msgid "You're not allowed to do that!"
|
| 553 |
msgstr "Sie haben nicht die Erlaubnis das zu tun!"
|
| 554 |
|
| 555 |
# @ broken-link-checker
|
| 556 |
+
#: core/core.php:2320
|
| 557 |
msgid "View broken links"
|
| 558 |
msgstr "Fehlerhafte Links anschauen"
|
| 559 |
|
| 560 |
# @ broken-link-checker
|
| 561 |
+
#: core/core.php:2321
|
| 562 |
msgid "Found %d broken link"
|
| 563 |
msgid_plural "Found %d broken links"
|
| 564 |
msgstr[0] "%d fehlerhafte Links gefunden"
|
| 565 |
msgstr[1] "%d fehlerhafte Links gefunden"
|
| 566 |
|
| 567 |
# @ broken-link-checker
|
| 568 |
+
#: core/core.php:2327
|
| 569 |
msgid "No broken links found."
|
| 570 |
msgstr "Keine fehlerhaften Links gefunden."
|
| 571 |
|
| 572 |
# @ broken-link-checker
|
| 573 |
+
#: core/core.php:2334
|
| 574 |
msgid "%d URL in the work queue"
|
| 575 |
msgid_plural "%d URLs in the work queue"
|
| 576 |
msgstr[0] "%d URL in der Warteschlange"
|
| 577 |
msgstr[1] "%d URLs in der Warteschlange"
|
| 578 |
|
| 579 |
# @ broken-link-checker
|
| 580 |
+
#: core/core.php:2337
|
| 581 |
msgid "No URLs in the work queue."
|
| 582 |
msgstr "Keine URLs in der Warteschlange."
|
| 583 |
|
| 584 |
# @ broken-link-checker
|
| 585 |
+
#: core/core.php:2343
|
| 586 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 587 |
msgid "%d unique URL"
|
| 588 |
msgid_plural "%d unique URLs"
|
| 590 |
msgstr[1] "%d eindeutige URLs"
|
| 591 |
|
| 592 |
# @ broken-link-checker
|
| 593 |
+
#: core/core.php:2347
|
| 594 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 595 |
msgid "%d link"
|
| 596 |
msgid_plural "%d links"
|
| 597 |
+
msgstr[0] "%d Link"
|
| 598 |
+
msgstr[1] "%d Links"
|
| 599 |
|
| 600 |
# @ broken-link-checker
|
| 601 |
+
#: core/core.php:2353
|
| 602 |
msgid "Detected %1$s in %2$s and still searching..."
|
| 603 |
msgstr "Endeckt %1$s in %2$s und sucht immer noch ..."
|
| 604 |
|
| 605 |
# @ broken-link-checker
|
| 606 |
+
#: core/core.php:2359
|
| 607 |
msgid "Detected %1$s in %2$s."
|
| 608 |
msgstr "Endeckt %1$s in %2$s."
|
| 609 |
|
| 610 |
# @ broken-link-checker
|
| 611 |
+
#: core/core.php:2366
|
| 612 |
msgid "Searching your blog for links..."
|
| 613 |
msgstr "Durchsucht Ihr Blog nach Links ..."
|
| 614 |
|
| 615 |
# @ broken-link-checker
|
| 616 |
+
#: core/core.php:2368
|
| 617 |
msgid "No links detected."
|
| 618 |
msgstr "Keine Links gefunden."
|
| 619 |
|
| 620 |
# @ broken-link-checker
|
| 621 |
+
#: core/core.php:2394
|
| 622 |
msgctxt "current load"
|
| 623 |
msgid "Unknown"
|
| 624 |
msgstr "Unbekannt"
|
| 625 |
|
| 626 |
# @ broken-link-checker
|
| 627 |
+
#: core/core.php:2458 core/core.php:2498 core/core.php:2533 core/core.php:2596
|
|
|
|
|
|
|
|
|
|
| 628 |
msgid "Oops, I can't find the link %d"
|
| 629 |
msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
|
| 630 |
|
| 631 |
# @ broken-link-checker
|
| 632 |
+
#: core/core.php:2471 core/core.php:2508
|
|
|
|
| 633 |
msgid "Oops, couldn't modify the link!"
|
| 634 |
msgstr "Hoppla, der Link konnte nicht geändert werden!"
|
| 635 |
|
| 636 |
# @ broken-link-checker
|
| 637 |
+
#: core/core.php:2474 core/core.php:2511 core/core.php:2622
|
|
|
|
|
|
|
| 638 |
msgid "Error : link_id not specified"
|
| 639 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
| 640 |
|
| 641 |
# @ broken-link-checker
|
| 642 |
+
#: core/core.php:2543
|
| 643 |
msgid "Oops, the new URL is invalid!"
|
| 644 |
msgstr "Hoppla, die neue URL funktioniert nicht!"
|
| 645 |
|
| 646 |
# @ broken-link-checker
|
| 647 |
+
#: core/core.php:2554 core/core.php:2605
|
|
|
|
| 648 |
msgid "An unexpected error occured!"
|
| 649 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
| 650 |
|
| 651 |
# @ broken-link-checker
|
| 652 |
+
#: core/core.php:2572
|
| 653 |
msgid "Error : link_id or new_url not specified"
|
| 654 |
msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
|
| 655 |
|
| 656 |
# @ broken-link-checker
|
| 657 |
+
#: core/core.php:2631
|
| 658 |
msgid "You don't have sufficient privileges to access this information!"
|
| 659 |
msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
|
| 660 |
|
| 661 |
# @ broken-link-checker
|
| 662 |
+
#: core/core.php:2644
|
| 663 |
msgid "Error : link ID not specified"
|
| 664 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
| 665 |
|
| 666 |
# @ broken-link-checker
|
| 667 |
+
#: core/core.php:2658
|
| 668 |
msgid "Failed to load link details (%s)"
|
| 669 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
| 670 |
|
| 671 |
# @ broken-link-checker
|
| 672 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.7.1) #-#-#-#-#
|
| 673 |
#. Plugin Name of the plugin/theme
|
| 674 |
+
#: core/core.php:2712
|
| 675 |
msgid "Broken Link Checker"
|
| 676 |
msgstr "Broken Link Checker"
|
| 677 |
|
| 678 |
# @ broken-link-checker
|
| 679 |
+
#: core/core.php:2732
|
| 680 |
msgid "PHP version"
|
| 681 |
msgstr "PHP Version"
|
| 682 |
|
| 683 |
# @ broken-link-checker
|
| 684 |
+
#: core/core.php:2738
|
| 685 |
msgid "MySQL version"
|
| 686 |
msgstr "MySQL Version"
|
| 687 |
|
| 688 |
# @ broken-link-checker
|
| 689 |
+
#: core/core.php:2751
|
| 690 |
+
msgid ""
|
| 691 |
+
"You have an old version of CURL. Redirect detection may not work properly."
|
| 692 |
+
msgstr ""
|
| 693 |
+
"Sie haben eine veraltete Version von CURL. Erkennung von Umleitungen "
|
| 694 |
+
"funktioniert eventuell nicht."
|
| 695 |
|
| 696 |
# @ broken-link-checker
|
| 697 |
+
#: core/core.php:2763 core/core.php:2779 core/core.php:2784
|
|
|
|
|
|
|
| 698 |
msgid "Not installed"
|
| 699 |
msgstr "Nicht installiert"
|
| 700 |
|
| 701 |
# @ broken-link-checker
|
| 702 |
+
#: core/core.php:2766
|
| 703 |
msgid "CURL version"
|
| 704 |
msgstr "CURL Version"
|
| 705 |
|
| 706 |
# @ broken-link-checker
|
| 707 |
+
#: core/core.php:2772
|
| 708 |
msgid "Installed"
|
| 709 |
msgstr "Installiert"
|
| 710 |
|
| 711 |
# @ broken-link-checker
|
| 712 |
+
#: core/core.php:2785
|
| 713 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
| 714 |
+
msgstr ""
|
| 715 |
+
"Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin "
|
| 716 |
+
"funktioniert!"
|
| 717 |
|
| 718 |
# @ broken-link-checker
|
| 719 |
+
#: core/core.php:2796
|
| 720 |
msgid "On"
|
| 721 |
msgstr "An"
|
| 722 |
|
| 723 |
# @ broken-link-checker
|
| 724 |
+
#: core/core.php:2797
|
| 725 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
| 726 |
+
msgstr ""
|
| 727 |
+
"Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode "
|
| 728 |
+
"aktiviert ist."
|
| 729 |
|
| 730 |
# @ broken-link-checker
|
| 731 |
+
#: core/core.php:2802 core/core.php:2816
|
|
|
|
| 732 |
msgid "Off"
|
| 733 |
msgstr "Aus"
|
| 734 |
|
| 735 |
# @ broken-link-checker
|
| 736 |
+
#: core/core.php:2810
|
| 737 |
msgid "On ( %s )"
|
| 738 |
msgstr "An (%s)"
|
| 739 |
|
| 740 |
# @ broken-link-checker
|
| 741 |
+
#: core/core.php:2811
|
| 742 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
| 743 |
+
msgstr ""
|
| 744 |
+
"Umleitungen werden eventuell als fehlerhafte Links erkannt, falls "
|
| 745 |
+
"open_basedir aktiviert ist."
|
| 746 |
|
| 747 |
# @ broken-link-checker
|
| 748 |
+
#: core/core.php:2840
|
| 749 |
+
msgid ""
|
| 750 |
+
"If this value is zero even after several page reloads you have probably "
|
| 751 |
+
"encountered a bug."
|
| 752 |
+
msgstr ""
|
| 753 |
+
"Wenn dieser Wert nach mehreren geladenen Seiten Null ist, ist wahrscheinlich "
|
| 754 |
+
"ein Fehler aufgetreten."
|
| 755 |
|
| 756 |
# @ broken-link-checker
|
| 757 |
+
#: core/core.php:2935 core/core.php:3033
|
|
|
|
| 758 |
msgid "[%s] Broken links detected"
|
| 759 |
msgstr "[%s] Fehlerhafte Links entdeckt"
|
| 760 |
|
| 761 |
# @ broken-link-checker
|
| 762 |
+
#: core/core.php:2940
|
| 763 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
| 764 |
+
msgid_plural ""
|
| 765 |
+
"Broken Link Checker has detected %d new broken links on your site."
|
| 766 |
+
msgstr[0] ""
|
| 767 |
+
"Broken Link Checker hat %d fehlerhaften Link auf Ihrer Webseite entdeckt."
|
| 768 |
+
msgstr[1] ""
|
| 769 |
+
"Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
|
| 770 |
|
| 771 |
# @ broken-link-checker
|
| 772 |
+
#: core/core.php:2963
|
| 773 |
msgid "Here's a list of the first %d broken links:"
|
| 774 |
msgid_plural "Here's a list of the first %d broken links:"
|
| 775 |
msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
| 776 |
msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
| 777 |
|
| 778 |
# @ broken-link-checker
|
| 779 |
+
#: core/core.php:2972
|
| 780 |
msgid "Here's a list of the new broken links: "
|
| 781 |
msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
|
| 782 |
|
| 783 |
# @ broken-link-checker
|
| 784 |
+
#: core/core.php:2981
|
| 785 |
msgid "Link text : %s"
|
| 786 |
msgstr "Linktext: %s"
|
| 787 |
|
| 788 |
# @ broken-link-checker
|
| 789 |
+
#: core/core.php:2982
|
| 790 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
| 791 |
msgstr "Link URL: <a href=\"%s\">%s</a>"
|
| 792 |
|
| 793 |
# @ broken-link-checker
|
| 794 |
+
#: core/core.php:2983
|
| 795 |
msgid "Source : %s"
|
| 796 |
msgstr "Quelle: %s"
|
| 797 |
|
| 798 |
# @ brokenk-link-checker
|
| 799 |
+
#: core/core.php:2996
|
| 800 |
msgid "You can see all broken links here:"
|
| 801 |
msgstr "Hier sehen Sie alle fehlerhaften Links:"
|
| 802 |
|
| 803 |
# @ broken-link-checker
|
| 804 |
+
#: core/core.php:3038
|
| 805 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
| 806 |
+
msgid_plural ""
|
| 807 |
+
"Broken Link Checker has detected %d new broken links in your posts."
|
| 808 |
+
msgstr[0] ""
|
| 809 |
+
"Broken Link Checker hat %d fehlerhafter Link in einem Beitrag entdeckt."
|
| 810 |
msgstr[1] "Broken Link Checker hat %d fehlerhafte Links in Beiträgen entdeckt."
|
| 811 |
|
| 812 |
# @ default
|
| 813 |
+
#: core/init.php:240
|
| 814 |
msgid "Once Weekly"
|
| 815 |
msgstr "Einmal wöchentlich"
|
| 816 |
|
| 817 |
# @ default
|
| 818 |
+
#: core/init.php:246
|
| 819 |
msgid "Twice a Month"
|
| 820 |
msgstr "Zweimal im Monat"
|
| 821 |
|
| 822 |
# @ broken-link-checker
|
| 823 |
+
#: core/init.php:322
|
| 824 |
+
msgid ""
|
| 825 |
+
"Broken Link Checker installation failed. Try deactivating and then "
|
| 826 |
+
"reactivating the plugin."
|
| 827 |
+
msgstr ""
|
| 828 |
+
"Broken Link Checker Installation fehlgeschlagen. Deaktivieren Sie das Plugin "
|
| 829 |
+
"und aktivieren es anschliessend wieder."
|
| 830 |
|
| 831 |
# @ broken-link-checker
|
| 832 |
#: includes/admin/db-upgrade.php:95
|
| 834 |
msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
|
| 835 |
|
| 836 |
# @ broken-link-checker
|
| 837 |
+
#: includes/admin/links-page-js.php:55 includes/admin/links-page-js.php:403
|
|
|
|
| 838 |
msgid "Wait..."
|
| 839 |
msgstr "Warte ..."
|
| 840 |
|
| 841 |
# @ broken-link-checker
|
| 842 |
+
#: includes/admin/links-page-js.php:100 includes/admin/table-printer.php:630
|
|
|
|
| 843 |
msgid "Not broken"
|
| 844 |
msgstr "Nicht fehlerhaft"
|
| 845 |
|
| 850 |
|
| 851 |
# @ broken-link-checker
|
| 852 |
#: includes/admin/links-page-js.php:321
|
| 853 |
+
msgid ""
|
| 854 |
+
"However, %d instances couldn't be edited and still point to the old URL."
|
| 855 |
+
msgstr ""
|
| 856 |
+
"Allerdings, %d Instanzen konnten nicht bearbeitet werden und verweisen zudem "
|
| 857 |
+
"noch auf die alte URL."
|
| 858 |
|
| 859 |
# @ broken-link-checker
|
| 860 |
#: includes/admin/links-page-js.php:327
|
| 862 |
msgstr "Der Link konnte nicht geändert werden."
|
| 863 |
|
| 864 |
# @ broken-link-checker
|
| 865 |
+
#: includes/admin/links-page-js.php:330 includes/admin/links-page-js.php:455
|
|
|
|
| 866 |
msgid "The following error(s) occured :"
|
| 867 |
msgstr "Folgende Fehler sind aufgetreten:"
|
| 868 |
|
| 882 |
msgstr "Das Plugin konnte den Link nicht entfernen."
|
| 883 |
|
| 884 |
# @ broken-link-checker
|
| 885 |
+
#: includes/admin/links-page-js.php:463 includes/admin/table-printer.php:273
|
|
|
|
| 886 |
#: includes/admin/table-printer.php:624
|
| 887 |
msgid "Unlink"
|
| 888 |
msgstr "Link aufheben"
|
| 904 |
# @ broken-link-checker
|
| 905 |
#: includes/admin/links-page-js.php:538
|
| 906 |
msgid ""
|
| 907 |
+
"Are you sure you want to delete all posts, bookmarks or other items that "
|
| 908 |
+
"contain any of the selected links? This action can't be undone.\n"
|
| 909 |
"'Cancel' to stop, 'OK' to delete"
|
| 910 |
msgstr ""
|
| 911 |
+
"Sind Sie sicher, dass Sie alle Beiträge, Lesezeichen oder andere Elemente "
|
| 912 |
+
"die in den ausgewählten Links enthalten sind, löschen möchten? Diese Aktion "
|
| 913 |
+
"kann nicht rückgängig gemacht werden.\n"
|
| 914 |
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
| 915 |
|
| 916 |
# @ broken-link-checker
|
| 917 |
#: includes/admin/links-page-js.php:548
|
| 918 |
msgid ""
|
| 919 |
+
"Are you sure you want to remove the selected links? This action can't be "
|
| 920 |
+
"undone.\n"
|
| 921 |
"'Cancel' to stop, 'OK' to remove"
|
| 922 |
msgstr ""
|
| 923 |
+
"Sind Sie sicher, dass Sie die ausgewählten Links entfernen möchten? Diese "
|
| 924 |
+
"Aktion kann nicht rückgängig gemacht werden.\n"
|
| 925 |
" 'Abbrechen' um abzubrechen, 'OK' um zu entfernen."
|
| 926 |
|
| 927 |
#: includes/admin/links-page-js.php:657
|
| 948 |
msgstr "Diesen Filter löschen"
|
| 949 |
|
| 950 |
# @ broken-link-checker
|
| 951 |
+
#: includes/admin/search-form.php:32 includes/link-query.php:65
|
|
|
|
| 952 |
msgid "Search"
|
| 953 |
msgstr "Suche"
|
| 954 |
|
| 958 |
msgstr "Linktext"
|
| 959 |
|
| 960 |
# @ broken-link-checker
|
| 961 |
+
#: includes/admin/search-form.php:45 includes/admin/table-printer.php:202
|
|
|
|
| 962 |
msgid "URL"
|
| 963 |
msgstr "URL"
|
| 964 |
|
| 965 |
# @ broken-link-checker
|
| 966 |
+
#: includes/admin/search-form.php:48 includes/admin/table-printer.php:491
|
|
|
|
| 967 |
msgid "HTTP code"
|
| 968 |
msgstr "HTTP Code"
|
| 969 |
|
| 973 |
msgstr "Link Status"
|
| 974 |
|
| 975 |
# @ broken-link-checker
|
| 976 |
+
#: includes/admin/search-form.php:68 includes/admin/search-form.php:85
|
|
|
|
| 977 |
msgid "Link type"
|
| 978 |
msgstr "Link Typ"
|
| 979 |
|
| 993 |
msgstr "Suche Links"
|
| 994 |
|
| 995 |
# @ broken-link-checker
|
| 996 |
+
#: includes/admin/search-form.php:113 includes/admin/table-printer.php:349
|
| 997 |
+
#: includes/admin/table-printer.php:652 includes/admin/table-printer.php:658
|
|
|
|
|
|
|
| 998 |
msgid "Cancel"
|
| 999 |
msgstr "Abbrechen"
|
| 1000 |
|
| 1001 |
+
#: includes/admin/sidebar.php:24
|
|
|
|
| 1002 |
msgid "More plugins by Janis Elsts"
|
| 1003 |
msgstr "Weitere Plugins von Janis Elsts"
|
| 1004 |
|
| 1005 |
+
#: includes/admin/sidebar.php:47
|
| 1006 |
msgid "Donate $10, $20 or $50!"
|
| 1007 |
msgstr "Spenden Sie $10, $20 oder $50!"
|
| 1008 |
|
| 1009 |
+
#: includes/admin/sidebar.php:50
|
| 1010 |
+
msgid ""
|
| 1011 |
+
"If you like this plugin, please donate to support development and "
|
| 1012 |
+
"maintenance!"
|
| 1013 |
+
msgstr ""
|
| 1014 |
+
"Mögen Sie dieses Plugin, dann helfen Sie uns mit einer Spende für die "
|
| 1015 |
+
"Entwicklung und Wartung."
|
| 1016 |
|
| 1017 |
+
#: includes/admin/sidebar.php:68
|
| 1018 |
msgid "Return to WordPress Dashboard"
|
| 1019 |
msgstr "Zurück zum Wordpress Dashboard"
|
| 1020 |
|
| 1049 |
msgstr "Massenänderung"
|
| 1050 |
|
| 1051 |
# @ broken-link-checker
|
| 1052 |
+
#: includes/admin/table-printer.php:269 includes/admin/table-printer.php:621
|
|
|
|
| 1053 |
msgid "Edit URL"
|
| 1054 |
msgstr "Bearbeite URL"
|
| 1055 |
|
| 1206 |
# @ broken-link-checker
|
| 1207 |
#: includes/admin/table-printer.php:629
|
| 1208 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
| 1209 |
+
msgstr ""
|
| 1210 |
+
"Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als "
|
| 1211 |
+
"gültig"
|
| 1212 |
|
| 1213 |
#: includes/admin/table-printer.php:637
|
| 1214 |
msgid "Hide this link and do not report it again unless its status changes"
|
| 1215 |
+
msgstr ""
|
| 1216 |
+
"Verstecken Sie diesen Link und melden ihn nicht wieder, auch wenn sein "
|
| 1217 |
+
"Status ändert"
|
| 1218 |
|
| 1219 |
#: includes/admin/table-printer.php:638
|
| 1220 |
msgid "Dismiss"
|
| 1244 |
msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
|
| 1245 |
|
| 1246 |
# @ default
|
| 1247 |
+
#: includes/any-post.php:397 modules/containers/blogroll.php:46
|
| 1248 |
+
#: modules/containers/comment.php:153 modules/containers/custom_field.php:197
|
|
|
|
|
|
|
| 1249 |
msgid "Edit"
|
| 1250 |
msgstr "Bearbeiten"
|
| 1251 |
|
| 1252 |
# @ default
|
| 1253 |
+
#: includes/any-post.php:405 modules/containers/custom_field.php:203
|
|
|
|
| 1254 |
msgid "Move this item to the Trash"
|
| 1255 |
msgstr "Element in den Papierkorb verschieben"
|
| 1256 |
|
| 1257 |
# @ default
|
| 1258 |
+
#: includes/any-post.php:407 modules/containers/custom_field.php:205
|
|
|
|
| 1259 |
msgid "Trash"
|
| 1260 |
msgstr "Papierkorb"
|
| 1261 |
|
| 1262 |
# @ default
|
| 1263 |
+
#: includes/any-post.php:412 modules/containers/custom_field.php:210
|
|
|
|
| 1264 |
msgid "Delete this item permanently"
|
| 1265 |
msgstr "Element endgültig löschen"
|
| 1266 |
|
| 1267 |
# @ default
|
| 1268 |
+
#: includes/any-post.php:414 modules/containers/blogroll.php:47
|
|
|
|
| 1269 |
#: modules/containers/custom_field.php:212
|
| 1270 |
msgid "Delete"
|
| 1271 |
msgstr "Löschen"
|
| 1286 |
msgstr "Ansehen “%s”"
|
| 1287 |
|
| 1288 |
# @ default
|
| 1289 |
+
#: includes/any-post.php:436 modules/containers/comment.php:166
|
|
|
|
| 1290 |
#: modules/containers/custom_field.php:217
|
| 1291 |
msgid "View"
|
| 1292 |
msgstr "Ansehen"
|
| 1293 |
|
| 1294 |
# @ default
|
| 1295 |
+
#: includes/any-post.php:455 modules/containers/custom_field.php:197
|
|
|
|
| 1296 |
msgid "Edit this item"
|
| 1297 |
msgstr "Bearbeiten Sie dieses Element"
|
| 1298 |
|
| 1299 |
# @ broken-link-checker
|
| 1300 |
+
#: includes/any-post.php:519 modules/containers/blogroll.php:83
|
|
|
|
| 1301 |
#: modules/containers/comment.php:43
|
| 1302 |
msgid "Nothing to update"
|
| 1303 |
msgstr "Nichts zu aktualisieren"
|
| 1308 |
msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
|
| 1309 |
|
| 1310 |
# @ broken-link-checker
|
| 1311 |
+
#: includes/any-post.php:566 modules/containers/custom_field.php:284
|
|
|
|
| 1312 |
msgid "Failed to delete post \"%s\" (%d)"
|
| 1313 |
msgstr "Löschen des Beitrages \"%s\" (%d) schlug fehl"
|
| 1314 |
|
| 1315 |
# @ broken-link-checker
|
| 1316 |
+
#: includes/any-post.php:585 modules/containers/custom_field.php:303
|
| 1317 |
+
msgid ""
|
| 1318 |
+
"Can't move post \"%s\" (%d) to the trash because the trash feature is "
|
| 1319 |
+
"disabled"
|
| 1320 |
+
msgstr ""
|
| 1321 |
+
"Der Beitrag \"%s\" (%d) kann nicht in den Papierkorb verschoben werden, weil "
|
| 1322 |
+
"diese Funktion deaktiviert ist"
|
| 1323 |
|
| 1324 |
# @ broken-link-checker
|
| 1325 |
+
#: includes/any-post.php:605 modules/containers/custom_field.php:322
|
|
|
|
| 1326 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
| 1327 |
msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
|
| 1328 |
|
| 1329 |
# @ broken-link-checker
|
| 1330 |
+
#: includes/any-post.php:713
|
| 1331 |
msgid "%d post deleted."
|
| 1332 |
msgid_plural "%d posts deleted."
|
| 1333 |
msgstr[0] "%d Artikel gelöscht."
|
| 1334 |
msgstr[1] "%d Artikel gelöscht."
|
| 1335 |
|
| 1336 |
# @ broken-link-checker
|
| 1337 |
+
#: includes/any-post.php:715
|
| 1338 |
msgid "%d page deleted."
|
| 1339 |
msgid_plural "%d pages deleted."
|
| 1340 |
msgstr[0] "%d Seite gelöscht."
|
| 1341 |
msgstr[1] "%d Seiten gelöscht."
|
| 1342 |
|
| 1343 |
# @ broken-link-checker
|
| 1344 |
+
#: includes/any-post.php:717
|
| 1345 |
msgid "%d \"%s\" deleted."
|
| 1346 |
msgid_plural "%d \"%s\" deleted."
|
| 1347 |
msgstr[0] "%d \"%s\" gelöscht."
|
| 1348 |
msgstr[1] "%d \"%s\" gelöscht."
|
| 1349 |
|
| 1350 |
# @ broken-link-checker
|
| 1351 |
+
#: includes/any-post.php:736
|
| 1352 |
msgid "%d post moved to the Trash."
|
| 1353 |
msgid_plural "%d posts moved to the Trash."
|
| 1354 |
msgstr[0] "%d Artikel in den Papierkorb verschoben."
|
| 1355 |
msgstr[1] "%d Artikel in den Papierkorb verschoben."
|
| 1356 |
|
| 1357 |
# @ broken-link-checker
|
| 1358 |
+
#: includes/any-post.php:738
|
| 1359 |
msgid "%d page moved to the Trash."
|
| 1360 |
msgid_plural "%d pages moved to the Trash."
|
| 1361 |
msgstr[0] "%d Seite in den Papierkorb verschoben."
|
| 1362 |
msgstr[1] "%d Seiten in den Papierkorb verschoben."
|
| 1363 |
|
| 1364 |
# @ broken-link-checker
|
| 1365 |
+
#: includes/any-post.php:740
|
| 1366 |
msgid "%d \"%s\" moved to the Trash."
|
| 1367 |
msgid_plural "%d \"%s\" moved to the Trash."
|
| 1368 |
msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
|
| 1376 |
msgstr[1] "%d '%s' wurden gelöscht"
|
| 1377 |
|
| 1378 |
# @ broken-link-checker
|
| 1379 |
+
#: includes/containers.php:873 includes/containers.php:891
|
|
|
|
| 1380 |
msgid "Container type '%s' not recognized"
|
| 1381 |
msgstr "Container Typ '%s' nicht erkannt"
|
| 1382 |
|
| 1501 |
msgstr "Seiten"
|
| 1502 |
|
| 1503 |
# @ broken-link-checker
|
| 1504 |
+
#: includes/instances.php:104 includes/instances.php:160
|
|
|
|
| 1505 |
msgid "Container %s[%d] not found"
|
| 1506 |
msgstr "Container %s[%d] nicht gefunden"
|
| 1507 |
|
| 1508 |
# @ broken-link-checker
|
| 1509 |
+
#: includes/instances.php:113 includes/instances.php:169
|
|
|
|
| 1510 |
msgid "Parser '%s' not found."
|
| 1511 |
msgstr "Parser '%s' nicht gefunden."
|
| 1512 |
|
| 1570 |
msgstr "Such Resultat"
|
| 1571 |
|
| 1572 |
# @ broken-link-checker
|
| 1573 |
+
#: includes/link-query.php:67 includes/link-query.php:114
|
|
|
|
| 1574 |
msgid "No links found for your query"
|
| 1575 |
msgstr "Keine Links für Deine Anfrage gefunden"
|
| 1576 |
|
| 1595 |
msgstr "Link ist fehlerhaft."
|
| 1596 |
|
| 1597 |
# @ broken-link-checker
|
| 1598 |
+
#: includes/links.php:571 includes/links.php:673 includes/links.php:700
|
|
|
|
|
|
|
| 1599 |
msgid "Link is not valid"
|
| 1600 |
msgstr "Link ist nicht gültig"
|
| 1601 |
|
| 1602 |
# @ broken-link-checker
|
| 1603 |
#: includes/links.php:588
|
| 1604 |
+
msgid ""
|
| 1605 |
+
"This link can not be edited because it is not used anywhere on this site."
|
| 1606 |
+
msgstr ""
|
| 1607 |
+
"Dieser Link kann nicht bearbeitet werden, weil er nicht überall auf dieser "
|
| 1608 |
+
"Website verwendet wird."
|
| 1609 |
|
| 1610 |
# @ broken-link-checker
|
| 1611 |
#: includes/links.php:614
|
| 1612 |
msgid "Failed to create a DB entry for the new URL."
|
| 1613 |
+
msgstr ""
|
| 1614 |
+
"Das Erstellen eines Datenbankeintrages für die neue URL ist fehlgeschlagen."
|
| 1615 |
|
| 1616 |
# @ broken-link-checker
|
| 1617 |
#: includes/links.php:680
|
| 1619 |
msgstr "Dieser Link ist keine Umleitung"
|
| 1620 |
|
| 1621 |
# @ broken-link-checker
|
| 1622 |
+
#: includes/links.php:727 includes/links.php:764
|
|
|
|
| 1623 |
msgid "Couldn't delete the link's database record"
|
| 1624 |
msgstr "Links können nicht aus der Datenbank gelöscht werden"
|
| 1625 |
|
| 1631 |
|
| 1632 |
# @ link status
|
| 1633 |
# @ broken-link-checker
|
| 1634 |
+
#: includes/links.php:852 modules/checkers/http.php:263
|
|
|
|
| 1635 |
#: modules/extras/mediafire.php:101
|
| 1636 |
msgid "Unknown Error"
|
| 1637 |
msgstr "Unbekannter Fehler"
|
| 1647 |
msgstr "Falsch positiv"
|
| 1648 |
|
| 1649 |
# @ broken-link-checker
|
| 1650 |
+
#: includes/links.php:882 modules/extras/fileserve.php:121
|
| 1651 |
+
#: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
|
| 1652 |
+
#: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
|
|
|
|
|
|
|
|
|
|
| 1653 |
msgctxt "link status"
|
| 1654 |
msgid "OK"
|
| 1655 |
msgstr "OK"
|
| 1735 |
msgstr[1] "%d Monate vergangen"
|
| 1736 |
|
| 1737 |
# @ broken-link-checker
|
| 1738 |
+
#: modules/checkers/http.php:242
|
| 1739 |
msgid "Server Not Found"
|
| 1740 |
msgstr "Server nicht gefunden"
|
| 1741 |
|
| 1742 |
# @ broken-link-checker
|
| 1743 |
+
#: modules/checkers/http.php:257
|
| 1744 |
msgid "Connection Failed"
|
| 1745 |
msgstr "Verbindung fehlgeschlagen"
|
| 1746 |
|
| 1747 |
# @ broken-link-checker
|
| 1748 |
+
#: modules/checkers/http.php:292 modules/checkers/http.php:362
|
|
|
|
| 1749 |
msgid "HTTP code : %d"
|
| 1750 |
msgstr "HTTP Code: %d"
|
| 1751 |
|
| 1752 |
# @ broken-link-checker
|
| 1753 |
+
#: modules/checkers/http.php:294 modules/checkers/http.php:364
|
|
|
|
| 1754 |
msgid "(No response)"
|
| 1755 |
msgstr "(Keine Antwort)"
|
| 1756 |
|
| 1757 |
# @ broken-link-checker
|
| 1758 |
+
#: modules/checkers/http.php:300
|
| 1759 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
| 1760 |
+
msgstr ""
|
| 1761 |
+
"Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
|
| 1762 |
|
| 1763 |
# @ broken-link-checker
|
| 1764 |
+
#: modules/checkers/http.php:371
|
| 1765 |
msgid "Request timed out."
|
| 1766 |
msgstr "Erfordert Zeitlimit."
|
| 1767 |
|
| 1768 |
# @ broken-link-checker
|
| 1769 |
+
#: modules/checkers/http.php:389
|
| 1770 |
msgid "Using Snoopy"
|
| 1771 |
msgstr "Benutzt Snoopy"
|
| 1772 |
|
| 1776 |
msgstr "Lesezeichen"
|
| 1777 |
|
| 1778 |
# @ broken-link-checker
|
| 1779 |
+
#: modules/containers/blogroll.php:27 modules/containers/blogroll.php:46
|
|
|
|
| 1780 |
msgid "Edit this bookmark"
|
| 1781 |
msgstr "Lesezeichen bearbeiten"
|
| 1782 |
|
| 1822 |
msgstr "Kommentar %d kann nicht in den Papierkorb verschoben werden"
|
| 1823 |
|
| 1824 |
# @ default
|
| 1825 |
+
#: modules/containers/comment.php:153 modules/containers/comment.php:195
|
|
|
|
| 1826 |
msgid "Edit comment"
|
| 1827 |
msgstr "Kommentar bearbeiten"
|
| 1828 |
|
| 1887 |
msgstr "\"%s\" ansehen"
|
| 1888 |
|
| 1889 |
# @ broken-link-checker
|
| 1890 |
+
#: modules/containers/dummy.php:34 modules/containers/dummy.php:45
|
|
|
|
| 1891 |
msgid "I don't know how to edit a '%s' [%d]."
|
| 1892 |
msgstr "Das Bearbeiten von '%s' [%d] ist fehlgeschlagen."
|
| 1893 |
|
| 1901 |
msgid "Embedded DailyMotion video"
|
| 1902 |
msgstr "Eingebettete DailyMotion Videos"
|
| 1903 |
|
| 1904 |
+
#: modules/extras/embed-parser-base.php:197
|
| 1905 |
+
msgid ""
|
| 1906 |
+
"Embedded videos can't be edited using Broken Link Checker. Please edit or "
|
| 1907 |
+
"replace the video in question manually."
|
| 1908 |
+
msgstr ""
|
| 1909 |
+
"Eingebettete Videos können mit Broken Link Checker nicht editiert werden. "
|
| 1910 |
+
"Bitte ändern oder ersetzen Sie das betreffende Video manuell."
|
| 1911 |
|
| 1912 |
#: modules/extras/fileserve.php:55
|
| 1913 |
msgid "Using FileServe API"
|
| 1914 |
msgstr "Verwende FileServe API"
|
| 1915 |
|
| 1916 |
# @ broken-link-checker
|
| 1917 |
+
#: modules/extras/fileserve.php:112 modules/extras/mediafire.php:91
|
| 1918 |
+
#: modules/extras/mediafire.php:96 modules/extras/megaupload.php:81
|
| 1919 |
+
#: modules/extras/megaupload.php:123 modules/extras/rapidshare.php:139
|
|
|
|
|
|
|
|
|
|
| 1920 |
msgid "Not Found"
|
| 1921 |
msgstr "Nicht gefunden"
|
| 1922 |
|
| 1992 |
msgstr "Eingebettete Vimeo Videos"
|
| 1993 |
|
| 1994 |
# @ broken-link-checker
|
| 1995 |
+
#: modules/extras/youtube-embed.php:24 modules/extras/youtube-iframe.php:25
|
|
|
|
| 1996 |
msgid "YouTube Video"
|
| 1997 |
msgstr "YouTube Video"
|
| 1998 |
|
| 1999 |
# @ broken-link-checker
|
| 2000 |
+
#: modules/extras/youtube-embed.php:25 modules/extras/youtube-iframe.php:26
|
|
|
|
| 2001 |
msgid "Embedded YouTube video"
|
| 2002 |
msgstr "Eingebettete YouTube Videos"
|
| 2003 |
|
| 2004 |
# @ broken-link-checker
|
| 2005 |
+
#: modules/extras/youtube-playlist-embed.php:24
|
| 2006 |
+
msgid "YouTube Playlist"
|
| 2007 |
+
msgstr "YouTube Wiedergabeliste"
|
| 2008 |
+
|
| 2009 |
+
# @ broken-link-checker
|
| 2010 |
+
#: modules/extras/youtube-playlist-embed.php:25
|
| 2011 |
+
msgid "Embedded YouTube playlist"
|
| 2012 |
+
msgstr "Eingebettete YouTube Wiedergabeliste"
|
| 2013 |
+
|
| 2014 |
+
# @ broken-link-checker
|
| 2015 |
+
#: modules/extras/youtube.php:124 modules/extras/youtube.php:127
|
| 2016 |
msgid "Video Not Found"
|
| 2017 |
msgstr "Video nicht gefunden"
|
| 2018 |
|
| 2019 |
+
#: modules/extras/youtube.php:135
|
| 2020 |
msgid "Video Removed"
|
| 2021 |
msgstr "Video entfernt"
|
| 2022 |
|
| 2023 |
+
#: modules/extras/youtube.php:143
|
| 2024 |
msgid "Invalid Video ID"
|
| 2025 |
msgstr "Ungültige Video ID"
|
| 2026 |
|
| 2027 |
+
#: modules/extras/youtube.php:155
|
| 2028 |
msgid "Video OK"
|
| 2029 |
msgstr "Video OK"
|
| 2030 |
|
| 2031 |
# @ broken-link-checker
|
| 2032 |
+
#: modules/extras/youtube.php:156 modules/extras/youtube.php:177
|
| 2033 |
+
#: modules/extras/youtube.php:249 modules/extras/youtube.php:289
|
| 2034 |
msgid "OK"
|
| 2035 |
msgstr "OK"
|
| 2036 |
|
| 2037 |
+
#: modules/extras/youtube.php:170 modules/extras/youtube.php:271
|
| 2038 |
msgid "Video status : %s%s"
|
| 2039 |
msgstr "Video Status : %s%s"
|
| 2040 |
|
| 2041 |
+
#: modules/extras/youtube.php:182 modules/extras/youtube.php:280
|
| 2042 |
msgid "Video Restricted"
|
| 2043 |
msgstr "Video mit Einschränkungen"
|
| 2044 |
|
| 2045 |
+
#: modules/extras/youtube.php:199 modules/extras/youtube.php:305
|
| 2046 |
msgid "Unknown YouTube API response received."
|
| 2047 |
msgstr "Unbekannte Antwort der YouTube API erhalten."
|
| 2048 |
|
| 2049 |
# @ broken-link-checker
|
| 2050 |
+
#: modules/extras/youtube.php:217 modules/extras/youtube.php:220
|
| 2051 |
+
msgid "Playlist Not Found"
|
| 2052 |
+
msgstr "Wiedergabeliste nicht gefunden"
|
| 2053 |
+
|
| 2054 |
+
#: modules/extras/youtube.php:227
|
| 2055 |
+
msgid "Playlist Restricted"
|
| 2056 |
+
msgstr "Wiedergabeliste mit Einschränkungen"
|
| 2057 |
+
|
| 2058 |
+
#: modules/extras/youtube.php:234
|
| 2059 |
+
msgid "Invalid Playlist"
|
| 2060 |
+
msgstr "Ungültige Wiedergabeliste"
|
| 2061 |
+
|
| 2062 |
+
#: modules/extras/youtube.php:248
|
| 2063 |
+
msgid "Playlist OK"
|
| 2064 |
+
msgstr "Wiedergabeliste in Ordnung"
|
| 2065 |
+
|
| 2066 |
+
#: modules/extras/youtube.php:255
|
| 2067 |
+
msgid "This playlist has no entries or all entries have been deleted."
|
| 2068 |
+
msgstr ""
|
| 2069 |
+
"Diese Wiedergabeliste hat keine Einträge oder alle Einträge wurden gelöscht."
|
| 2070 |
+
|
| 2071 |
+
#: modules/extras/youtube.php:256
|
| 2072 |
+
msgid "Empty Playlist"
|
| 2073 |
+
msgstr "Leere Wiedergabeliste"
|
| 2074 |
+
|
| 2075 |
+
# @ broken-link-checker
|
| 2076 |
+
#: modules/parsers/image.php:164
|
| 2077 |
msgid "Image"
|
| 2078 |
msgstr "Bild"
|
| 2079 |
|
| 2080 |
# @ broken-link-checker
|
| 2081 |
+
#: modules/parsers/metadata.php:118
|
| 2082 |
msgid "Custom field"
|
| 2083 |
msgstr "Benutzerdefiniertes Feld"
|
| 2084 |
|
| 2087 |
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 2088 |
|
| 2089 |
#. Description of the plugin/theme
|
| 2090 |
+
msgid ""
|
| 2091 |
+
"Checks your blog for broken links and missing images and notifies you on the "
|
| 2092 |
+
"dashboard if any are found."
|
| 2093 |
+
msgstr ""
|
| 2094 |
+
"Überprüft Ihr Blog auf fehlerhafte Links und nicht vorhandene Bilder und "
|
| 2095 |
+
"benachrichtigt Sie im Dashboard, wenn nichts gefunden wird."
|
| 2096 |
|
| 2097 |
#. Author of the plugin/theme
|
| 2098 |
msgid "Janis Elsts"
|
| 2099 |
msgstr "Janis Elsts"
|
| 2100 |
|
| 2101 |
#. Author URI of the plugin/theme
|
| 2102 |
+
msgid "http://w-shadow.com/"
|
| 2103 |
+
msgstr "http://w-shadow.com/"
|
|
|
languages/broken-link-checker-pt_PT.mo
CHANGED
|
Binary file
|
languages/broken-link-checker-pt_PT.po
CHANGED
|
@@ -1,15 +1,16 @@
|
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
-
"Project-Id-Version: Broken Link Checker v1.
|
| 4 |
"Report-Msgid-Bugs-To: \n"
|
| 5 |
"POT-Creation-Date: 2011-12-11 10:00-0000\n"
|
| 6 |
-
"PO-Revision-Date: 2013-
|
| 7 |
"Last-Translator: \n"
|
| 8 |
"Language-Team: wordpress.mowster.net <wordpress@mowster.net>\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
|
|
| 13 |
"X-Poedit-Language: Portuguese\n"
|
| 14 |
"X-Poedit-Country: PORTUGAL\n"
|
| 15 |
"X-Poedit-SourceCharset: utf-8\n"
|
|
@@ -72,292 +73,292 @@ msgstr "Ir a Links offline"
|
|
| 72 |
msgid "Settings"
|
| 73 |
msgstr "Definições"
|
| 74 |
|
| 75 |
-
#: core/core.php:
|
| 76 |
#@ broken-link-checker
|
| 77 |
msgid "Settings saved."
|
| 78 |
msgstr "Definições guardadas."
|
| 79 |
|
| 80 |
-
#: core/core.php:
|
| 81 |
#@ broken-link-checker
|
| 82 |
msgid "Thank you for your donation!"
|
| 83 |
msgstr "Obrigado pela sua colaboração!"
|
| 84 |
|
| 85 |
-
#: core/core.php:
|
| 86 |
#@ broken-link-checker
|
| 87 |
msgid "Complete site recheck started."
|
| 88 |
msgstr "Reverificação completa do sítio iniciada."
|
| 89 |
|
| 90 |
-
#: core/core.php:
|
| 91 |
#@ broken-link-checker
|
| 92 |
msgid "Details"
|
| 93 |
msgstr "Detalhes"
|
| 94 |
|
| 95 |
-
#: core/core.php:
|
| 96 |
#@ broken-link-checker
|
| 97 |
msgid "General"
|
| 98 |
msgstr "Geral"
|
| 99 |
|
| 100 |
-
#: core/core.php:
|
| 101 |
#@ broken-link-checker
|
| 102 |
msgid "Look For Links In"
|
| 103 |
msgstr "Procurar links"
|
| 104 |
|
| 105 |
-
#: core/core.php:
|
| 106 |
#@ broken-link-checker
|
| 107 |
msgid "Which Links To Check"
|
| 108 |
msgstr "Links para verificar"
|
| 109 |
|
| 110 |
-
#: core/core.php:
|
| 111 |
#@ broken-link-checker
|
| 112 |
msgid "Protocols & APIs"
|
| 113 |
msgstr "Protocolos & APIs"
|
| 114 |
|
| 115 |
-
#: core/core.php:
|
| 116 |
#@ broken-link-checker
|
| 117 |
msgid "Advanced"
|
| 118 |
msgstr "Avançado"
|
| 119 |
|
| 120 |
-
#: core/core.php:
|
| 121 |
#@ broken-link-checker
|
| 122 |
msgid "Broken Link Checker Options"
|
| 123 |
msgstr "Opções : Links offline"
|
| 124 |
|
| 125 |
-
#: core/core.php:
|
| 126 |
#: includes/admin/table-printer.php:197
|
| 127 |
#@ broken-link-checker
|
| 128 |
msgid "Status"
|
| 129 |
msgstr "Estado"
|
| 130 |
|
| 131 |
-
#: core/core.php:
|
| 132 |
#: includes/admin/options-page-js.php:56
|
| 133 |
#@ broken-link-checker
|
| 134 |
msgid "Show debug info"
|
| 135 |
msgstr "Mostrar sistema"
|
| 136 |
|
| 137 |
-
#: core/core.php:
|
| 138 |
#@ broken-link-checker
|
| 139 |
msgid "Check each link"
|
| 140 |
msgstr "Verificar cada link"
|
| 141 |
|
| 142 |
-
#: core/core.php:
|
| 143 |
#, php-format
|
| 144 |
#@ broken-link-checker
|
| 145 |
msgid "Every %s hours"
|
| 146 |
msgstr "Cada %s horas"
|
| 147 |
|
| 148 |
-
#: core/core.php:
|
| 149 |
#@ broken-link-checker
|
| 150 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
| 151 |
msgstr "Os links existentes serão verificados com esta frequência. Os novos links serão verificados logo que possível."
|
| 152 |
|
| 153 |
-
#: core/core.php:
|
| 154 |
#@ broken-link-checker
|
| 155 |
msgid "E-mail notifications"
|
| 156 |
msgstr "Notificações por e-mail"
|
| 157 |
|
| 158 |
-
#: core/core.php:
|
| 159 |
#@ broken-link-checker
|
| 160 |
msgid "Send me e-mail notifications about newly detected broken links"
|
| 161 |
msgstr "Enviar um e-mail notificando sobre os novos links offline encontrados"
|
| 162 |
|
| 163 |
-
#: core/core.php:
|
| 164 |
#@ broken-link-checker
|
| 165 |
msgid "Link tweaks"
|
| 166 |
msgstr "Melhoria de Links"
|
| 167 |
|
| 168 |
-
#: core/core.php:
|
| 169 |
#@ broken-link-checker
|
| 170 |
msgid "Apply custom formatting to broken links"
|
| 171 |
msgstr "Aplicar formatação personalizada para os links offline"
|
| 172 |
|
| 173 |
-
#: core/core.php:
|
| 174 |
-
#: core/core.php:
|
| 175 |
#@ broken-link-checker
|
| 176 |
msgid "Edit CSS"
|
| 177 |
msgstr "Editar CSS"
|
| 178 |
|
| 179 |
-
#: core/core.php:
|
| 180 |
#@ broken-link-checker
|
| 181 |
msgid "Apply custom formatting to removed links"
|
| 182 |
msgstr "Aplicar formatação personalizada para os links removidos"
|
| 183 |
|
| 184 |
-
#: core/core.php:
|
| 185 |
#@ broken-link-checker
|
| 186 |
msgid "Stop search engines from following broken links"
|
| 187 |
msgstr "Não permitir aos motores de busca seguir os links offline"
|
| 188 |
|
| 189 |
-
#: core/core.php:
|
| 190 |
#@ broken-link-checker
|
| 191 |
msgid "Look for links in"
|
| 192 |
msgstr "Procurar links em"
|
| 193 |
|
| 194 |
-
#: core/core.php:
|
| 195 |
#@ broken-link-checker
|
| 196 |
msgid "Post statuses"
|
| 197 |
msgstr "Estado do Artigo"
|
| 198 |
|
| 199 |
-
#: core/core.php:
|
| 200 |
#@ broken-link-checker
|
| 201 |
msgid "Link types"
|
| 202 |
msgstr "Tipos de link"
|
| 203 |
|
| 204 |
-
#: core/core.php:
|
| 205 |
#@ broken-link-checker
|
| 206 |
msgid "Error : All link parsers missing!"
|
| 207 |
msgstr "Erro : Análises aos links não encontradas!"
|
| 208 |
|
| 209 |
-
#: core/core.php:
|
| 210 |
#@ broken-link-checker
|
| 211 |
msgid "Exclusion list"
|
| 212 |
msgstr "Lista de exclusão"
|
| 213 |
|
| 214 |
-
#: core/core.php:
|
| 215 |
#@ broken-link-checker
|
| 216 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
| 217 |
msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha) :"
|
| 218 |
|
| 219 |
-
#: core/core.php:
|
| 220 |
#@ broken-link-checker
|
| 221 |
msgid "Check links using"
|
| 222 |
msgstr "Verificar links utilizando"
|
| 223 |
|
| 224 |
-
#: core/core.php:
|
| 225 |
#: includes/links.php:856
|
| 226 |
#@ broken-link-checker
|
| 227 |
msgid "Timeout"
|
| 228 |
msgstr "Intervalo"
|
| 229 |
|
| 230 |
-
#: core/core.php:
|
| 231 |
-
#: core/core.php:
|
| 232 |
-
#: core/core.php:
|
| 233 |
#, php-format
|
| 234 |
#@ broken-link-checker
|
| 235 |
#@ default
|
| 236 |
msgid "%s seconds"
|
| 237 |
msgstr "%s segundos"
|
| 238 |
|
| 239 |
-
#: core/core.php:
|
| 240 |
#@ broken-link-checker
|
| 241 |
msgid "Links that take longer than this to load will be marked as broken."
|
| 242 |
msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
|
| 243 |
|
| 244 |
-
#: core/core.php:
|
| 245 |
#@ broken-link-checker
|
| 246 |
msgid "Link monitor"
|
| 247 |
msgstr "Monitor de links"
|
| 248 |
|
| 249 |
-
#: core/core.php:
|
| 250 |
#@ broken-link-checker
|
| 251 |
msgid "Run continuously while the Dashboard is open"
|
| 252 |
msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
|
| 253 |
|
| 254 |
-
#: core/core.php:
|
| 255 |
#@ broken-link-checker
|
| 256 |
msgid "Run hourly in the background"
|
| 257 |
msgstr "Executar a cada hora em segundo plano"
|
| 258 |
|
| 259 |
-
#: core/core.php:
|
| 260 |
#@ broken-link-checker
|
| 261 |
msgid "Max. execution time"
|
| 262 |
msgstr "Tempo máximo de execução"
|
| 263 |
|
| 264 |
-
#: core/core.php:
|
| 265 |
#@ broken-link-checker
|
| 266 |
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."
|
| 267 |
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."
|
| 268 |
|
| 269 |
-
#: core/core.php:
|
| 270 |
#@ broken-link-checker
|
| 271 |
msgid "Server load limit"
|
| 272 |
msgstr "Limite de carregamento do servidor"
|
| 273 |
|
| 274 |
-
#: core/core.php:
|
| 275 |
#, php-format
|
| 276 |
#@ broken-link-checker
|
| 277 |
msgid "Current load : %s"
|
| 278 |
msgstr "Carga atual : %s"
|
| 279 |
|
| 280 |
-
#: core/core.php:
|
| 281 |
#, php-format
|
| 282 |
#@ broken-link-checker
|
| 283 |
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."
|
| 284 |
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."
|
| 285 |
|
| 286 |
-
#: core/core.php:
|
| 287 |
#@ broken-link-checker
|
| 288 |
msgid "Not available"
|
| 289 |
msgstr "Não disponível"
|
| 290 |
|
| 291 |
-
#: core/core.php:
|
| 292 |
#@ broken-link-checker
|
| 293 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
| 294 |
msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
|
| 295 |
|
| 296 |
-
#: core/core.php:
|
| 297 |
#@ broken-link-checker
|
| 298 |
msgid "Forced recheck"
|
| 299 |
msgstr "Reverificação forçada"
|
| 300 |
|
| 301 |
-
#: core/core.php:
|
| 302 |
#@ broken-link-checker
|
| 303 |
msgid "Re-check all pages"
|
| 304 |
msgstr "Verificar de novo todas as páginas"
|
| 305 |
|
| 306 |
-
#: core/core.php:
|
| 307 |
#@ broken-link-checker
|
| 308 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
| 309 |
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."
|
| 310 |
|
| 311 |
-
#: core/core.php:
|
| 312 |
#@ default
|
| 313 |
msgid "Save Changes"
|
| 314 |
msgstr "Guardar alterações"
|
| 315 |
|
| 316 |
-
#: core/core.php:
|
| 317 |
#@ broken-link-checker
|
| 318 |
msgid "Configure"
|
| 319 |
msgstr "Configurar"
|
| 320 |
|
| 321 |
-
#: core/core.php:
|
| 322 |
#@ broken-link-checker
|
| 323 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
| 324 |
msgstr "Verificar URLs nos campos personalizados (um por linha):"
|
| 325 |
|
| 326 |
-
#: core/core.php:
|
| 327 |
-
#: core/core.php:
|
| 328 |
-
#: core/core.php:
|
| 329 |
#, php-format
|
| 330 |
#@ broken-link-checker
|
| 331 |
msgid "Database error : %s"
|
| 332 |
msgstr "Erro na Base de dados: %s"
|
| 333 |
|
| 334 |
-
#: core/core.php:
|
| 335 |
#@ broken-link-checker
|
| 336 |
msgid "You must enter a filter name!"
|
| 337 |
msgstr "Deve introduzir um nome para o filtro!"
|
| 338 |
|
| 339 |
-
#: core/core.php:
|
| 340 |
#@ broken-link-checker
|
| 341 |
msgid "Invalid search query."
|
| 342 |
msgstr "Procura inválida."
|
| 343 |
|
| 344 |
-
#: core/core.php:
|
| 345 |
#, php-format
|
| 346 |
#@ broken-link-checker
|
| 347 |
msgid "Filter \"%s\" created"
|
| 348 |
msgstr "Filtro \"%s\" criado"
|
| 349 |
|
| 350 |
-
#: core/core.php:
|
| 351 |
#@ broken-link-checker
|
| 352 |
msgid "Filter ID not specified."
|
| 353 |
msgstr "ID do Filtro não especificado."
|
| 354 |
|
| 355 |
-
#: core/core.php:
|
| 356 |
#@ broken-link-checker
|
| 357 |
msgid "Filter deleted"
|
| 358 |
msgstr "Filtro eliminado"
|
| 359 |
|
| 360 |
-
#: core/core.php:
|
| 361 |
#, php-format
|
| 362 |
#@ broken-link-checker
|
| 363 |
msgid "Replaced %d redirect with a direct link"
|
|
@@ -365,7 +366,7 @@ msgid_plural "Replaced %d redirects with direct links"
|
|
| 365 |
msgstr[0] "Substituído %d redirect com link direto"
|
| 366 |
msgstr[1] "Substituídos %d redirects com links diretos"
|
| 367 |
|
| 368 |
-
#: core/core.php:
|
| 369 |
#, php-format
|
| 370 |
#@ broken-link-checker
|
| 371 |
msgid "Failed to fix %d redirect"
|
|
@@ -373,12 +374,12 @@ msgid_plural "Failed to fix %d redirects"
|
|
| 373 |
msgstr[0] "Não foi possível reparar %d redirect"
|
| 374 |
msgstr[1] "Não foi possível reparar %d redirects"
|
| 375 |
|
| 376 |
-
#: core/core.php:
|
| 377 |
#@ broken-link-checker
|
| 378 |
msgid "None of the selected links are redirects!"
|
| 379 |
msgstr "Nenhum dos links selecionados são redirects!"
|
| 380 |
|
| 381 |
-
#: core/core.php:
|
| 382 |
#, php-format
|
| 383 |
#@ broken-link-checker
|
| 384 |
msgid "%d link updated."
|
|
@@ -386,7 +387,7 @@ msgid_plural "%d links updated."
|
|
| 386 |
msgstr[0] "%d link atualizado."
|
| 387 |
msgstr[1] "%d links atualizados."
|
| 388 |
|
| 389 |
-
#: core/core.php:
|
| 390 |
#, php-format
|
| 391 |
#@ broken-link-checker
|
| 392 |
msgid "Failed to update %d link."
|
|
@@ -394,7 +395,7 @@ msgid_plural "Failed to update %d links."
|
|
| 394 |
msgstr[0] "Erro a atualizar %d link."
|
| 395 |
msgstr[1] "Erro a atualizar %d links."
|
| 396 |
|
| 397 |
-
#: core/core.php:
|
| 398 |
#, php-format
|
| 399 |
#@ broken-link-checker
|
| 400 |
msgid "%d link removed"
|
|
@@ -402,7 +403,7 @@ msgid_plural "%d links removed"
|
|
| 402 |
msgstr[0] "%d link eliminado"
|
| 403 |
msgstr[1] "%d links eliminados"
|
| 404 |
|
| 405 |
-
#: core/core.php:
|
| 406 |
#, php-format
|
| 407 |
#@ broken-link-checker
|
| 408 |
msgid "Failed to remove %d link"
|
|
@@ -410,7 +411,7 @@ msgid_plural "Failed to remove %d links"
|
|
| 410 |
msgstr[0] "Erro a remover %d link"
|
| 411 |
msgstr[1] "Erro a remover %d links"
|
| 412 |
|
| 413 |
-
#: core/core.php:
|
| 414 |
#, php-format
|
| 415 |
#@ default
|
| 416 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
|
@@ -418,12 +419,12 @@ msgid_plural "%d items were skipped because they can't be moved to the Trash. Yo
|
|
| 418 |
msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessita de o efetuar manualmente."
|
| 419 |
msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de o efetuar manualmente."
|
| 420 |
|
| 421 |
-
#: core/core.php:
|
| 422 |
#@ broken-link-checker
|
| 423 |
msgid "Didn't find anything to delete!"
|
| 424 |
msgstr "Não foi encontrado nada para apagar!"
|
| 425 |
|
| 426 |
-
#: core/core.php:
|
| 427 |
#, php-format
|
| 428 |
#@ broken-link-checker
|
| 429 |
msgid "%d link scheduled for rechecking"
|
|
@@ -431,19 +432,19 @@ msgid_plural "%d links scheduled for rechecking"
|
|
| 431 |
msgstr[0] "%d link agendado para verificação"
|
| 432 |
msgstr[1] "%d links agendados para verificação"
|
| 433 |
|
| 434 |
-
#: core/core.php:
|
| 435 |
-
#: core/core.php:
|
| 436 |
#@ broken-link-checker
|
| 437 |
msgid "This link was manually marked as working by the user."
|
| 438 |
msgstr "Este link foi assinalado manualmente como válido pelo utilizador."
|
| 439 |
|
| 440 |
-
#: core/core.php:
|
| 441 |
#, php-format
|
| 442 |
#@ broken-link-checker
|
| 443 |
msgid "Couldn't modify link %d"
|
| 444 |
msgstr "Impossível modificar o link %d"
|
| 445 |
|
| 446 |
-
#: core/core.php:
|
| 447 |
#, php-format
|
| 448 |
#@ broken-link-checker
|
| 449 |
msgid "%d link marked as not broken"
|
|
@@ -451,59 +452,59 @@ msgid_plural "%d links marked as not broken"
|
|
| 451 |
msgstr[0] "%d link marcado como funcional"
|
| 452 |
msgstr[1] "%d links marcados como funcionais"
|
| 453 |
|
| 454 |
-
#: core/core.php:
|
| 455 |
#@ broken-link-checker
|
| 456 |
msgid "Table columns"
|
| 457 |
msgstr "Colunas da Tabela"
|
| 458 |
|
| 459 |
-
#: core/core.php:
|
| 460 |
#@ default
|
| 461 |
msgid "Show on screen"
|
| 462 |
msgstr "Mostrar no ecrán"
|
| 463 |
|
| 464 |
-
#: core/core.php:
|
| 465 |
#@ broken-link-checker
|
| 466 |
msgid "links"
|
| 467 |
msgstr "links"
|
| 468 |
|
| 469 |
-
#: core/core.php:
|
| 470 |
#: includes/admin/table-printer.php:165
|
| 471 |
#@ default
|
| 472 |
#@ broken-link-checker
|
| 473 |
msgid "Apply"
|
| 474 |
msgstr "Aplicar"
|
| 475 |
|
| 476 |
-
#: core/core.php:
|
| 477 |
#@ broken-link-checker
|
| 478 |
msgid "Misc"
|
| 479 |
msgstr "Vários"
|
| 480 |
|
| 481 |
-
#: core/core.php:
|
| 482 |
#, php-format
|
| 483 |
#@ broken-link-checker
|
| 484 |
msgid "Highlight links broken for at least %s days"
|
| 485 |
msgstr "Realçar links offline pelo menos durante %s dias"
|
| 486 |
|
| 487 |
-
#: core/core.php:
|
| 488 |
#@ broken-link-checker
|
| 489 |
msgid "Color-code status codes"
|
| 490 |
msgstr "Cor-código status códigos"
|
| 491 |
|
| 492 |
-
#: core/core.php:
|
| 493 |
-
#: core/core.php:
|
| 494 |
-
#: core/core.php:
|
| 495 |
-
#: core/core.php:
|
| 496 |
-
#: core/core.php:
|
| 497 |
#@ broken-link-checker
|
| 498 |
msgid "You're not allowed to do that!"
|
| 499 |
msgstr "Não permitido!"
|
| 500 |
|
| 501 |
-
#: core/core.php:
|
| 502 |
#@ broken-link-checker
|
| 503 |
msgid "View broken links"
|
| 504 |
msgstr "Ver links offline"
|
| 505 |
|
| 506 |
-
#: core/core.php:
|
| 507 |
#, php-format
|
| 508 |
#@ broken-link-checker
|
| 509 |
msgid "Found %d broken link"
|
|
@@ -511,12 +512,12 @@ msgid_plural "Found %d broken links"
|
|
| 511 |
msgstr[0] "Encontrado %d Link offline"
|
| 512 |
msgstr[1] "Encontrados %d Links offline"
|
| 513 |
|
| 514 |
-
#: core/core.php:
|
| 515 |
#@ broken-link-checker
|
| 516 |
msgid "No broken links found."
|
| 517 |
msgstr "Não existem links offline."
|
| 518 |
|
| 519 |
-
#: core/core.php:
|
| 520 |
#, php-format
|
| 521 |
#@ broken-link-checker
|
| 522 |
msgid "%d URL in the work queue"
|
|
@@ -524,157 +525,157 @@ msgid_plural "%d URLs in the work queue"
|
|
| 524 |
msgstr[0] "%d URL em espera"
|
| 525 |
msgstr[1] "%d URLs em espera"
|
| 526 |
|
| 527 |
-
#: core/core.php:
|
| 528 |
#@ broken-link-checker
|
| 529 |
msgid "No URLs in the work queue."
|
| 530 |
msgstr "Não existem URL em espera para verificação."
|
| 531 |
|
| 532 |
-
#: core/core.php:
|
| 533 |
#@ broken-link-checker
|
| 534 |
msgid "Searching your blog for links..."
|
| 535 |
msgstr "Procurando links..."
|
| 536 |
|
| 537 |
-
#: core/core.php:
|
| 538 |
#@ broken-link-checker
|
| 539 |
msgid "No links detected."
|
| 540 |
msgstr "Nenhuns links encontrados."
|
| 541 |
|
| 542 |
-
#: core/core.php:
|
| 543 |
-
#: core/core.php:
|
| 544 |
-
#: core/core.php:
|
| 545 |
-
#: core/core.php:
|
| 546 |
#, php-format
|
| 547 |
#@ broken-link-checker
|
| 548 |
msgid "Oops, I can't find the link %d"
|
| 549 |
msgstr "Oops, não é possível encontrar o link %d"
|
| 550 |
|
| 551 |
-
#: core/core.php:
|
| 552 |
-
#: core/core.php:
|
| 553 |
#@ broken-link-checker
|
| 554 |
msgid "Oops, couldn't modify the link!"
|
| 555 |
msgstr "Oops, não é possível modificar o link!"
|
| 556 |
|
| 557 |
-
#: core/core.php:
|
| 558 |
-
#: core/core.php:
|
| 559 |
-
#: core/core.php:
|
| 560 |
#@ broken-link-checker
|
| 561 |
msgid "Error : link_id not specified"
|
| 562 |
msgstr "Erro : link_id não especificado"
|
| 563 |
|
| 564 |
-
#: core/core.php:
|
| 565 |
#@ broken-link-checker
|
| 566 |
msgid "Oops, the new URL is invalid!"
|
| 567 |
msgstr "Oops, a nova URL não é válida!"
|
| 568 |
|
| 569 |
-
#: core/core.php:
|
| 570 |
-
#: core/core.php:
|
| 571 |
#@ broken-link-checker
|
| 572 |
msgid "An unexpected error occured!"
|
| 573 |
msgstr "Ocorreu um erro inesperado!"
|
| 574 |
|
| 575 |
-
#: core/core.php:
|
| 576 |
#@ broken-link-checker
|
| 577 |
msgid "Error : link_id or new_url not specified"
|
| 578 |
msgstr "Erro : link_id ou new_url não especificado"
|
| 579 |
|
| 580 |
-
#: core/core.php:
|
| 581 |
#@ broken-link-checker
|
| 582 |
msgid "You don't have sufficient privileges to access this information!"
|
| 583 |
msgstr "Não tem privilégios suficientes para aceder a esta informação!"
|
| 584 |
|
| 585 |
-
#: core/core.php:
|
| 586 |
#@ broken-link-checker
|
| 587 |
msgid "Error : link ID not specified"
|
| 588 |
msgstr "Erro : link ID não especificado"
|
| 589 |
|
| 590 |
-
#: core/core.php:
|
| 591 |
#, php-format
|
| 592 |
#@ broken-link-checker
|
| 593 |
msgid "Failed to load link details (%s)"
|
| 594 |
msgstr "Erro a carregar os detalhes do link (%s)"
|
| 595 |
|
| 596 |
-
#: core/core.php:
|
| 597 |
#@ broken-link-checker
|
| 598 |
msgid "Broken Link Checker"
|
| 599 |
msgstr "Links offline"
|
| 600 |
|
| 601 |
-
#: core/core.php:
|
| 602 |
#@ broken-link-checker
|
| 603 |
msgid "PHP version"
|
| 604 |
msgstr "Versão PHP"
|
| 605 |
|
| 606 |
-
#: core/core.php:
|
| 607 |
#@ broken-link-checker
|
| 608 |
msgid "MySQL version"
|
| 609 |
msgstr "Versão MySQL"
|
| 610 |
|
| 611 |
-
#: core/core.php:
|
| 612 |
#@ broken-link-checker
|
| 613 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
| 614 |
msgstr "Versão de CURL obsoleta. A deteção de redirects pode não funcionar corretamente."
|
| 615 |
|
| 616 |
-
#: core/core.php:
|
| 617 |
-
#: core/core.php:
|
| 618 |
-
#: core/core.php:
|
| 619 |
#@ broken-link-checker
|
| 620 |
msgid "Not installed"
|
| 621 |
msgstr "Não instalado"
|
| 622 |
|
| 623 |
-
#: core/core.php:
|
| 624 |
#@ broken-link-checker
|
| 625 |
msgid "CURL version"
|
| 626 |
msgstr "Versão CURL"
|
| 627 |
|
| 628 |
-
#: core/core.php:
|
| 629 |
#@ broken-link-checker
|
| 630 |
msgid "Installed"
|
| 631 |
msgstr "Instalado"
|
| 632 |
|
| 633 |
-
#: core/core.php:
|
| 634 |
#@ broken-link-checker
|
| 635 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
| 636 |
msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
|
| 637 |
|
| 638 |
-
#: core/core.php:
|
| 639 |
#@ broken-link-checker
|
| 640 |
msgid "On"
|
| 641 |
msgstr "Ativado"
|
| 642 |
|
| 643 |
-
#: core/core.php:
|
| 644 |
#@ broken-link-checker
|
| 645 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
| 646 |
msgstr "Os redirects podem ser detetados como links offline quando o safe_mode está habilitado."
|
| 647 |
|
| 648 |
-
#: core/core.php:
|
| 649 |
-
#: core/core.php:
|
| 650 |
#@ broken-link-checker
|
| 651 |
msgid "Off"
|
| 652 |
msgstr "Desativado"
|
| 653 |
|
| 654 |
-
#: core/core.php:
|
| 655 |
#, php-format
|
| 656 |
#@ broken-link-checker
|
| 657 |
msgid "On ( %s )"
|
| 658 |
msgstr "Ativado ( %s )"
|
| 659 |
|
| 660 |
-
#: core/core.php:
|
| 661 |
#@ broken-link-checker
|
| 662 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
| 663 |
msgstr "Os redirects podem ser considerados links offline quando o open_basedir está ativo."
|
| 664 |
|
| 665 |
-
#: core/core.php:
|
| 666 |
#@ broken-link-checker
|
| 667 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
| 668 |
msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
|
| 669 |
|
| 670 |
-
#: core/core.php:
|
| 671 |
-
#: core/core.php:
|
| 672 |
#, php-format
|
| 673 |
#@ broken-link-checker
|
| 674 |
msgid "[%s] Broken links detected"
|
| 675 |
msgstr "[%s] Links offline encontrados"
|
| 676 |
|
| 677 |
-
#: core/core.php:
|
| 678 |
#, php-format
|
| 679 |
#@ broken-link-checker
|
| 680 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
|
@@ -682,7 +683,7 @@ msgid_plural "Broken Link Checker has detected %d new broken links on your site.
|
|
| 682 |
msgstr[0] "Links offline detetou %d novo link sem ligação."
|
| 683 |
msgstr[1] "Links offline detetou %d novos links sem ligação."
|
| 684 |
|
| 685 |
-
#: core/core.php:
|
| 686 |
#, php-format
|
| 687 |
#@ broken-link-checker
|
| 688 |
msgid "Here's a list of the first %d broken links:"
|
|
@@ -690,45 +691,45 @@ msgid_plural "Here's a list of the first %d broken links:"
|
|
| 690 |
msgstr[0] "Lista do primeiro %d link sem ligação:"
|
| 691 |
msgstr[1] "Lista dos primeiros %d links sem ligação:"
|
| 692 |
|
| 693 |
-
#: core/core.php:
|
| 694 |
#@ broken-link-checker
|
| 695 |
msgid "Here's a list of the new broken links: "
|
| 696 |
msgstr "Novos links offline:"
|
| 697 |
|
| 698 |
-
#: core/core.php:
|
| 699 |
#, php-format
|
| 700 |
#@ broken-link-checker
|
| 701 |
msgid "Link text : %s"
|
| 702 |
msgstr "Texto do Link : %s"
|
| 703 |
|
| 704 |
-
#: core/core.php:
|
| 705 |
#, php-format
|
| 706 |
#@ broken-link-checker
|
| 707 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
| 708 |
msgstr "Link URL : <a href=\"%s\">%s</a>"
|
| 709 |
|
| 710 |
-
#: core/core.php:
|
| 711 |
#, php-format
|
| 712 |
#@ broken-link-checker
|
| 713 |
msgid "Source : %s"
|
| 714 |
msgstr "Fonte : %s"
|
| 715 |
|
| 716 |
-
#: core/core.php:
|
| 717 |
#@ broken-link-checker
|
| 718 |
msgid "You can see all broken links here:"
|
| 719 |
msgstr "Links offline:"
|
| 720 |
|
| 721 |
-
#: core/init.php:
|
| 722 |
#@ default
|
| 723 |
msgid "Once Weekly"
|
| 724 |
msgstr "Uma vez por semana"
|
| 725 |
|
| 726 |
-
#: core/init.php:
|
| 727 |
#@ default
|
| 728 |
msgid "Twice a Month"
|
| 729 |
msgstr "Bi-Mensal"
|
| 730 |
|
| 731 |
-
#: core/init.php:
|
| 732 |
#@ broken-link-checker
|
| 733 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
| 734 |
msgstr "A instalação do plugin Links offline falhou. Desative e ative o plugin."
|
|
@@ -809,28 +810,28 @@ msgstr "Sem atualização"
|
|
| 809 |
msgid "Updating post %d failed"
|
| 810 |
msgstr "Atualização do artigo %d falhou"
|
| 811 |
|
| 812 |
-
#: includes/any-post.php:
|
| 813 |
#: modules/containers/custom_field.php:284
|
| 814 |
#, php-format
|
| 815 |
#@ broken-link-checker
|
| 816 |
msgid "Failed to delete post \"%s\" (%d)"
|
| 817 |
msgstr "Erro ao apagar o artigo \"%s\" (%d)"
|
| 818 |
|
| 819 |
-
#: includes/any-post.php:
|
| 820 |
#: modules/containers/custom_field.php:303
|
| 821 |
#, php-format
|
| 822 |
#@ broken-link-checker
|
| 823 |
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
| 824 |
msgstr "Não é possível mover o artigo \"%s\" (%d) para o lixo porque a função está desabilitada"
|
| 825 |
|
| 826 |
-
#: includes/any-post.php:
|
| 827 |
#: modules/containers/custom_field.php:322
|
| 828 |
#, php-format
|
| 829 |
#@ broken-link-checker
|
| 830 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
| 831 |
msgstr "Erro ao apagar o artigo \"%s\" (%d)"
|
| 832 |
|
| 833 |
-
#: includes/any-post.php:
|
| 834 |
#, php-format
|
| 835 |
#@ broken-link-checker
|
| 836 |
msgid "%d post deleted."
|
|
@@ -838,7 +839,7 @@ msgid_plural "%d posts deleted."
|
|
| 838 |
msgstr[0] "%d artigo apagado."
|
| 839 |
msgstr[1] "%d artigos apagados."
|
| 840 |
|
| 841 |
-
#: includes/any-post.php:
|
| 842 |
#, php-format
|
| 843 |
#@ broken-link-checker
|
| 844 |
msgid "%d page deleted."
|
|
@@ -846,7 +847,7 @@ msgid_plural "%d pages deleted."
|
|
| 846 |
msgstr[0] "%d página apagada."
|
| 847 |
msgstr[1] "%d páginas apagadas."
|
| 848 |
|
| 849 |
-
#: includes/any-post.php:
|
| 850 |
#, php-format
|
| 851 |
#@ broken-link-checker
|
| 852 |
msgid "%d \"%s\" deleted."
|
|
@@ -854,7 +855,7 @@ msgid_plural "%d \"%s\" deleted."
|
|
| 854 |
msgstr[0] "%d \"%s\" apagado."
|
| 855 |
msgstr[1] "%d \"%s\" apagados."
|
| 856 |
|
| 857 |
-
#: includes/any-post.php:
|
| 858 |
#, php-format
|
| 859 |
#@ broken-link-checker
|
| 860 |
msgid "%d post moved to the Trash."
|
|
@@ -862,7 +863,7 @@ msgid_plural "%d posts moved to the Trash."
|
|
| 862 |
msgstr[0] "%d artigo transferido para o Lixo."
|
| 863 |
msgstr[1] "%d artigos transferidos para o Lixo."
|
| 864 |
|
| 865 |
-
#: includes/any-post.php:
|
| 866 |
#, php-format
|
| 867 |
#@ broken-link-checker
|
| 868 |
msgid "%d page moved to the Trash."
|
|
@@ -870,7 +871,7 @@ msgid_plural "%d pages moved to the Trash."
|
|
| 870 |
msgstr[0] "%d página transferida para o Lixo."
|
| 871 |
msgstr[1] "%d páginas transferidas para o Lixo."
|
| 872 |
|
| 873 |
-
#: includes/any-post.php:
|
| 874 |
#, php-format
|
| 875 |
#@ broken-link-checker
|
| 876 |
msgid "%d \"%s\" moved to the Trash."
|
|
@@ -1013,7 +1014,7 @@ msgid "Couldn't delete the link's database record"
|
|
| 1013 |
msgstr "Não é possível apagar o registo do link na Base de dados"
|
| 1014 |
|
| 1015 |
#: includes/links.php:852
|
| 1016 |
-
#: modules/checkers/http.php:
|
| 1017 |
#: modules/extras/mediafire.php:101
|
| 1018 |
#@ link status
|
| 1019 |
#@ broken-link-checker
|
|
@@ -1030,8 +1031,10 @@ msgstr "Não verificado"
|
|
| 1030 |
msgid "False positive"
|
| 1031 |
msgstr "Falso positivo"
|
| 1032 |
|
| 1033 |
-
#: modules/extras/youtube.php:
|
| 1034 |
-
#: modules/extras/youtube.php:
|
|
|
|
|
|
|
| 1035 |
#@ link status
|
| 1036 |
msgid "OK"
|
| 1037 |
msgstr "OK"
|
|
@@ -1443,40 +1446,40 @@ msgstr "Atualizar URL"
|
|
| 1443 |
msgid "[An orphaned link! This is a bug.]"
|
| 1444 |
msgstr "[Um link órfão! Bug.]"
|
| 1445 |
|
| 1446 |
-
#: modules/checkers/http.php:
|
| 1447 |
#@ broken-link-checker
|
| 1448 |
msgid "Server Not Found"
|
| 1449 |
msgstr "Servidor Não Encontrado"
|
| 1450 |
|
| 1451 |
-
#: modules/checkers/http.php:
|
| 1452 |
#@ broken-link-checker
|
| 1453 |
msgid "Connection Failed"
|
| 1454 |
msgstr "Sem Ligação"
|
| 1455 |
|
| 1456 |
-
#: modules/checkers/http.php:
|
| 1457 |
-
#: modules/checkers/http.php:
|
| 1458 |
#, php-format
|
| 1459 |
#@ broken-link-checker
|
| 1460 |
msgid "HTTP code : %d"
|
| 1461 |
msgstr "Código HTTP : %d"
|
| 1462 |
|
| 1463 |
-
#: modules/checkers/http.php:
|
| 1464 |
-
#: modules/checkers/http.php:
|
| 1465 |
#@ broken-link-checker
|
| 1466 |
msgid "(No response)"
|
| 1467 |
msgstr "(Sem resposta)"
|
| 1468 |
|
| 1469 |
-
#: modules/checkers/http.php:
|
| 1470 |
#@ broken-link-checker
|
| 1471 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
| 1472 |
msgstr "Provável que o tempo da ligação se tenha esgotado ou que o domínio não exista."
|
| 1473 |
|
| 1474 |
-
#: modules/checkers/http.php:
|
| 1475 |
#@ broken-link-checker
|
| 1476 |
msgid "Request timed out."
|
| 1477 |
msgstr "Tempo de espera esgotado."
|
| 1478 |
|
| 1479 |
-
#: modules/checkers/http.php:
|
| 1480 |
#@ broken-link-checker
|
| 1481 |
msgid "Using Snoopy"
|
| 1482 |
msgstr "Utilizando Snoopy"
|
|
@@ -1611,7 +1614,7 @@ msgstr "Vídeo DailyMotion"
|
|
| 1611 |
msgid "Embedded DailyMotion video"
|
| 1612 |
msgstr "Vídeo DailyMotion embutido"
|
| 1613 |
|
| 1614 |
-
#: modules/extras/embed-parser-base.php:
|
| 1615 |
#@ broken-link-checker
|
| 1616 |
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
| 1617 |
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."
|
|
@@ -1685,39 +1688,42 @@ msgstr "Vídeo YouTube"
|
|
| 1685 |
msgid "Embedded YouTube video"
|
| 1686 |
msgstr "Vídeo YouTube embutido"
|
| 1687 |
|
| 1688 |
-
#: modules/extras/youtube.php:
|
| 1689 |
-
#: modules/extras/youtube.php:
|
| 1690 |
#@ broken-link-checker
|
| 1691 |
msgid "Video Not Found"
|
| 1692 |
msgstr "Vídeo Não Encontrado"
|
| 1693 |
|
| 1694 |
-
#: modules/extras/youtube.php:
|
| 1695 |
#@ broken-link-checker
|
| 1696 |
msgid "Video Removed"
|
| 1697 |
msgstr "Vídeo Apagado"
|
| 1698 |
|
| 1699 |
-
#: modules/extras/youtube.php:
|
| 1700 |
#@ broken-link-checker
|
| 1701 |
msgid "Invalid Video ID"
|
| 1702 |
msgstr "Vídeo ID Inválido"
|
| 1703 |
|
| 1704 |
-
#: modules/extras/youtube.php:
|
| 1705 |
#@ broken-link-checker
|
| 1706 |
msgid "Video OK"
|
| 1707 |
msgstr "Vídeo OK"
|
| 1708 |
|
| 1709 |
-
#: modules/extras/youtube.php:
|
|
|
|
| 1710 |
#, php-format
|
| 1711 |
#@ broken-link-checker
|
| 1712 |
msgid "Video status : %s%s"
|
| 1713 |
msgstr "Vídeo status : %s%s"
|
| 1714 |
|
| 1715 |
-
#: modules/extras/youtube.php:
|
|
|
|
| 1716 |
#@ broken-link-checker
|
| 1717 |
msgid "Video Restricted"
|
| 1718 |
msgstr "Vídeo Restrito"
|
| 1719 |
|
| 1720 |
-
#: modules/extras/youtube.php:
|
|
|
|
| 1721 |
#@ default
|
| 1722 |
msgid "Unknown YouTube API response received."
|
| 1723 |
msgstr "Resposta API YouTube desconhecida."
|
|
@@ -1732,18 +1738,18 @@ msgstr "Imagem"
|
|
| 1732 |
msgid "Custom field"
|
| 1733 |
msgstr "Campo personalizado"
|
| 1734 |
|
| 1735 |
-
#: core/core.php:
|
| 1736 |
#@ broken-link-checker
|
| 1737 |
msgid "Send authors e-mail notifications about broken links in their posts"
|
| 1738 |
msgstr "Enviar aos autores notificações por e-mail sobre links offline encontrados nos seus artigos"
|
| 1739 |
|
| 1740 |
-
#: core/core.php:
|
| 1741 |
#@ broken-link-checker
|
| 1742 |
msgctxt "current load"
|
| 1743 |
msgid "Unknown"
|
| 1744 |
msgstr "Desconhecido"
|
| 1745 |
|
| 1746 |
-
#: core/core.php:
|
| 1747 |
#, php-format
|
| 1748 |
#@ broken-link-checker
|
| 1749 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
|
@@ -1980,19 +1986,19 @@ msgctxt "verb"
|
|
| 1980 |
msgid "Trash"
|
| 1981 |
msgstr "Lixo"
|
| 1982 |
|
| 1983 |
-
#: core/core.php:
|
| 1984 |
#, php-format
|
| 1985 |
#@ broken-link-checker
|
| 1986 |
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
| 1987 |
msgstr "Exemplo : Lorem ipsum <a %s>link offline</a>, dolor sit amet."
|
| 1988 |
|
| 1989 |
-
#: core/core.php:
|
| 1990 |
-
#: core/core.php:
|
| 1991 |
#@ broken-link-checker
|
| 1992 |
msgid "Click \"Save Changes\" to update example output."
|
| 1993 |
msgstr "Clicar \"Guardar Alterações\" para atualizar a visualização do exemplo."
|
| 1994 |
|
| 1995 |
-
#: core/core.php:
|
| 1996 |
#, php-format
|
| 1997 |
#@ broken-link-checker
|
| 1998 |
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
|
@@ -2092,7 +2098,7 @@ msgstr "Links descartados"
|
|
| 2092 |
msgid "No dismissed links found"
|
| 2093 |
msgstr "Nenhuns links descartados encontrados"
|
| 2094 |
|
| 2095 |
-
#: core/core.php:
|
| 2096 |
#, php-format
|
| 2097 |
#@ broken-link-checker
|
| 2098 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
|
@@ -2101,7 +2107,7 @@ msgid_plural "%d unique URLs"
|
|
| 2101 |
msgstr[0] "%d URL única"
|
| 2102 |
msgstr[1] "%d URLs únicas"
|
| 2103 |
|
| 2104 |
-
#: core/core.php:
|
| 2105 |
#, php-format
|
| 2106 |
#@ broken-link-checker
|
| 2107 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
|
@@ -2110,15 +2116,89 @@ msgid_plural "%d links"
|
|
| 2110 |
msgstr[0] "%d link"
|
| 2111 |
msgstr[1] "%d links"
|
| 2112 |
|
| 2113 |
-
#: core/core.php:
|
| 2114 |
#, php-format
|
| 2115 |
#@ broken-link-checker
|
| 2116 |
msgid "Detected %1$s in %2$s and still searching..."
|
| 2117 |
msgstr "Encontrados %1$s em %2$s e procurando..."
|
| 2118 |
|
| 2119 |
-
#: core/core.php:
|
| 2120 |
#, php-format
|
| 2121 |
#@ broken-link-checker
|
| 2122 |
msgid "Detected %1$s in %2$s."
|
| 2123 |
msgstr "Encontrados %1$s em %2$s."
|
| 2124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
+
"Project-Id-Version: Broken Link Checker v1.8\n"
|
| 4 |
"Report-Msgid-Bugs-To: \n"
|
| 5 |
"POT-Creation-Date: 2011-12-11 10:00-0000\n"
|
| 6 |
+
"PO-Revision-Date: 2013-06-07 07:59:12+0000\n"
|
| 7 |
"Last-Translator: \n"
|
| 8 |
"Language-Team: wordpress.mowster.net <wordpress@mowster.net>\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
| 13 |
+
"X-Generator: CSL v1.x\n"
|
| 14 |
"X-Poedit-Language: Portuguese\n"
|
| 15 |
"X-Poedit-Country: PORTUGAL\n"
|
| 16 |
"X-Poedit-SourceCharset: utf-8\n"
|
| 73 |
msgid "Settings"
|
| 74 |
msgstr "Definições"
|
| 75 |
|
| 76 |
+
#: core/core.php:533
|
| 77 |
#@ broken-link-checker
|
| 78 |
msgid "Settings saved."
|
| 79 |
msgstr "Definições guardadas."
|
| 80 |
|
| 81 |
+
#: core/core.php:539
|
| 82 |
#@ broken-link-checker
|
| 83 |
msgid "Thank you for your donation!"
|
| 84 |
msgstr "Obrigado pela sua colaboração!"
|
| 85 |
|
| 86 |
+
#: core/core.php:547
|
| 87 |
#@ broken-link-checker
|
| 88 |
msgid "Complete site recheck started."
|
| 89 |
msgstr "Reverificação completa do sítio iniciada."
|
| 90 |
|
| 91 |
+
#: core/core.php:556
|
| 92 |
#@ broken-link-checker
|
| 93 |
msgid "Details"
|
| 94 |
msgstr "Detalhes"
|
| 95 |
|
| 96 |
+
#: core/core.php:570
|
| 97 |
#@ broken-link-checker
|
| 98 |
msgid "General"
|
| 99 |
msgstr "Geral"
|
| 100 |
|
| 101 |
+
#: core/core.php:571
|
| 102 |
#@ broken-link-checker
|
| 103 |
msgid "Look For Links In"
|
| 104 |
msgstr "Procurar links"
|
| 105 |
|
| 106 |
+
#: core/core.php:572
|
| 107 |
#@ broken-link-checker
|
| 108 |
msgid "Which Links To Check"
|
| 109 |
msgstr "Links para verificar"
|
| 110 |
|
| 111 |
+
#: core/core.php:573
|
| 112 |
#@ broken-link-checker
|
| 113 |
msgid "Protocols & APIs"
|
| 114 |
msgstr "Protocolos & APIs"
|
| 115 |
|
| 116 |
+
#: core/core.php:574
|
| 117 |
#@ broken-link-checker
|
| 118 |
msgid "Advanced"
|
| 119 |
msgstr "Avançado"
|
| 120 |
|
| 121 |
+
#: core/core.php:589
|
| 122 |
#@ broken-link-checker
|
| 123 |
msgid "Broken Link Checker Options"
|
| 124 |
msgstr "Opções : Links offline"
|
| 125 |
|
| 126 |
+
#: core/core.php:631
|
| 127 |
#: includes/admin/table-printer.php:197
|
| 128 |
#@ broken-link-checker
|
| 129 |
msgid "Status"
|
| 130 |
msgstr "Estado"
|
| 131 |
|
| 132 |
+
#: core/core.php:633
|
| 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:661
|
| 139 |
#@ broken-link-checker
|
| 140 |
msgid "Check each link"
|
| 141 |
msgstr "Verificar cada link"
|
| 142 |
|
| 143 |
+
#: core/core.php:666
|
| 144 |
#, php-format
|
| 145 |
#@ broken-link-checker
|
| 146 |
msgid "Every %s hours"
|
| 147 |
msgstr "Cada %s horas"
|
| 148 |
|
| 149 |
+
#: core/core.php:675
|
| 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:682
|
| 155 |
#@ broken-link-checker
|
| 156 |
msgid "E-mail notifications"
|
| 157 |
msgstr "Notificações por e-mail"
|
| 158 |
|
| 159 |
+
#: core/core.php:688
|
| 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:722
|
| 165 |
#@ broken-link-checker
|
| 166 |
msgid "Link tweaks"
|
| 167 |
msgstr "Melhoria de Links"
|
| 168 |
|
| 169 |
+
#: core/core.php:728
|
| 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:732
|
| 175 |
+
#: core/core.php:763
|
| 176 |
#@ broken-link-checker
|
| 177 |
msgid "Edit CSS"
|
| 178 |
msgstr "Editar CSS"
|
| 179 |
|
| 180 |
+
#: core/core.php:759
|
| 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:792
|
| 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:809
|
| 191 |
#@ broken-link-checker
|
| 192 |
msgid "Look for links in"
|
| 193 |
msgstr "Procurar links em"
|
| 194 |
|
| 195 |
+
#: core/core.php:820
|
| 196 |
#@ broken-link-checker
|
| 197 |
msgid "Post statuses"
|
| 198 |
msgstr "Estado do Artigo"
|
| 199 |
|
| 200 |
+
#: core/core.php:853
|
| 201 |
#@ broken-link-checker
|
| 202 |
msgid "Link types"
|
| 203 |
msgstr "Tipos de link"
|
| 204 |
|
| 205 |
+
#: core/core.php:859
|
| 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:866
|
| 211 |
#@ broken-link-checker
|
| 212 |
msgid "Exclusion list"
|
| 213 |
msgstr "Lista de exclusão"
|
| 214 |
|
| 215 |
+
#: core/core.php:867
|
| 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:885
|
| 221 |
#@ broken-link-checker
|
| 222 |
msgid "Check links using"
|
| 223 |
msgstr "Verificar links utilizando"
|
| 224 |
|
| 225 |
+
#: core/core.php:904
|
| 226 |
#: includes/links.php:856
|
| 227 |
#@ broken-link-checker
|
| 228 |
msgid "Timeout"
|
| 229 |
msgstr "Intervalo"
|
| 230 |
|
| 231 |
+
#: core/core.php:910
|
| 232 |
+
#: core/core.php:979
|
| 233 |
+
#: core/core.php:2823
|
| 234 |
#, php-format
|
| 235 |
#@ broken-link-checker
|
| 236 |
#@ default
|
| 237 |
msgid "%s seconds"
|
| 238 |
msgstr "%s segundos"
|
| 239 |
|
| 240 |
+
#: core/core.php:919
|
| 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:926
|
| 246 |
#@ broken-link-checker
|
| 247 |
msgid "Link monitor"
|
| 248 |
msgstr "Monitor de links"
|
| 249 |
|
| 250 |
+
#: core/core.php:934
|
| 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:942
|
| 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:973
|
| 261 |
#@ broken-link-checker
|
| 262 |
msgid "Max. execution time"
|
| 263 |
msgstr "Tempo máximo de execução"
|
| 264 |
|
| 265 |
+
#: core/core.php:990
|
| 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:999
|
| 271 |
#@ broken-link-checker
|
| 272 |
msgid "Server load limit"
|
| 273 |
msgstr "Limite de carregamento do servidor"
|
| 274 |
|
| 275 |
+
#: core/core.php:1014
|
| 276 |
#, php-format
|
| 277 |
#@ broken-link-checker
|
| 278 |
msgid "Current load : %s"
|
| 279 |
msgstr "Carga atual : %s"
|
| 280 |
|
| 281 |
+
#: core/core.php:1020
|
| 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:1028
|
| 288 |
#@ broken-link-checker
|
| 289 |
msgid "Not available"
|
| 290 |
msgstr "Não disponível"
|
| 291 |
|
| 292 |
+
#: core/core.php:1030
|
| 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:1038
|
| 298 |
#@ broken-link-checker
|
| 299 |
msgid "Forced recheck"
|
| 300 |
msgstr "Reverificação forçada"
|
| 301 |
|
| 302 |
+
#: core/core.php:1041
|
| 303 |
#@ broken-link-checker
|
| 304 |
msgid "Re-check all pages"
|
| 305 |
msgstr "Verificar de novo todas as páginas"
|
| 306 |
|
| 307 |
+
#: core/core.php:1045
|
| 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:1056
|
| 313 |
#@ default
|
| 314 |
msgid "Save Changes"
|
| 315 |
msgstr "Guardar alterações"
|
| 316 |
|
| 317 |
+
#: core/core.php:1107
|
| 318 |
#@ broken-link-checker
|
| 319 |
msgid "Configure"
|
| 320 |
msgstr "Configurar"
|
| 321 |
|
| 322 |
+
#: core/core.php:1189
|
| 323 |
#@ broken-link-checker
|
| 324 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
| 325 |
msgstr "Verificar URLs nos campos personalizados (um por linha):"
|
| 326 |
|
| 327 |
+
#: core/core.php:1317
|
| 328 |
+
#: core/core.php:1399
|
| 329 |
+
#: core/core.php:1431
|
| 330 |
#, php-format
|
| 331 |
#@ broken-link-checker
|
| 332 |
msgid "Database error : %s"
|
| 333 |
msgstr "Erro na Base de dados: %s"
|
| 334 |
|
| 335 |
+
#: core/core.php:1381
|
| 336 |
#@ broken-link-checker
|
| 337 |
msgid "You must enter a filter name!"
|
| 338 |
msgstr "Deve introduzir um nome para o filtro!"
|
| 339 |
|
| 340 |
+
#: core/core.php:1385
|
| 341 |
#@ broken-link-checker
|
| 342 |
msgid "Invalid search query."
|
| 343 |
msgstr "Procura inválida."
|
| 344 |
|
| 345 |
+
#: core/core.php:1394
|
| 346 |
#, php-format
|
| 347 |
#@ broken-link-checker
|
| 348 |
msgid "Filter \"%s\" created"
|
| 349 |
msgstr "Filtro \"%s\" criado"
|
| 350 |
|
| 351 |
+
#: core/core.php:1421
|
| 352 |
#@ broken-link-checker
|
| 353 |
msgid "Filter ID not specified."
|
| 354 |
msgstr "ID do Filtro não especificado."
|
| 355 |
|
| 356 |
+
#: core/core.php:1428
|
| 357 |
#@ broken-link-checker
|
| 358 |
msgid "Filter deleted"
|
| 359 |
msgstr "Filtro eliminado"
|
| 360 |
|
| 361 |
+
#: core/core.php:1476
|
| 362 |
#, php-format
|
| 363 |
#@ broken-link-checker
|
| 364 |
msgid "Replaced %d redirect with a direct link"
|
| 366 |
msgstr[0] "Substituído %d redirect com link direto"
|
| 367 |
msgstr[1] "Substituídos %d redirects com links diretos"
|
| 368 |
|
| 369 |
+
#: core/core.php:1487
|
| 370 |
#, php-format
|
| 371 |
#@ broken-link-checker
|
| 372 |
msgid "Failed to fix %d redirect"
|
| 374 |
msgstr[0] "Não foi possível reparar %d redirect"
|
| 375 |
msgstr[1] "Não foi possível reparar %d redirects"
|
| 376 |
|
| 377 |
+
#: core/core.php:1497
|
| 378 |
#@ broken-link-checker
|
| 379 |
msgid "None of the selected links are redirects!"
|
| 380 |
msgstr "Nenhum dos links selecionados são redirects!"
|
| 381 |
|
| 382 |
+
#: core/core.php:1576
|
| 383 |
#, php-format
|
| 384 |
#@ broken-link-checker
|
| 385 |
msgid "%d link updated."
|
| 387 |
msgstr[0] "%d link atualizado."
|
| 388 |
msgstr[1] "%d links atualizados."
|
| 389 |
|
| 390 |
+
#: core/core.php:1587
|
| 391 |
#, php-format
|
| 392 |
#@ broken-link-checker
|
| 393 |
msgid "Failed to update %d link."
|
| 395 |
msgstr[0] "Erro a atualizar %d link."
|
| 396 |
msgstr[1] "Erro a atualizar %d links."
|
| 397 |
|
| 398 |
+
#: core/core.php:1641
|
| 399 |
#, php-format
|
| 400 |
#@ broken-link-checker
|
| 401 |
msgid "%d link removed"
|
| 403 |
msgstr[0] "%d link eliminado"
|
| 404 |
msgstr[1] "%d links eliminados"
|
| 405 |
|
| 406 |
+
#: core/core.php:1652
|
| 407 |
#, php-format
|
| 408 |
#@ broken-link-checker
|
| 409 |
msgid "Failed to remove %d link"
|
| 411 |
msgstr[0] "Erro a remover %d link"
|
| 412 |
msgstr[1] "Erro a remover %d links"
|
| 413 |
|
| 414 |
+
#: core/core.php:1761
|
| 415 |
#, php-format
|
| 416 |
#@ default
|
| 417 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
| 419 |
msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessita de o efetuar manualmente."
|
| 420 |
msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de o efetuar manualmente."
|
| 421 |
|
| 422 |
+
#: core/core.php:1782
|
| 423 |
#@ broken-link-checker
|
| 424 |
msgid "Didn't find anything to delete!"
|
| 425 |
msgstr "Não foi encontrado nada para apagar!"
|
| 426 |
|
| 427 |
+
#: core/core.php:1811
|
| 428 |
#, php-format
|
| 429 |
#@ broken-link-checker
|
| 430 |
msgid "%d link scheduled for rechecking"
|
| 432 |
msgstr[0] "%d link agendado para verificação"
|
| 433 |
msgstr[1] "%d links agendados para verificação"
|
| 434 |
|
| 435 |
+
#: core/core.php:1856
|
| 436 |
+
#: core/core.php:2465
|
| 437 |
#@ broken-link-checker
|
| 438 |
msgid "This link was manually marked as working by the user."
|
| 439 |
msgstr "Este link foi assinalado manualmente como válido pelo utilizador."
|
| 440 |
|
| 441 |
+
#: core/core.php:1863
|
| 442 |
#, php-format
|
| 443 |
#@ broken-link-checker
|
| 444 |
msgid "Couldn't modify link %d"
|
| 445 |
msgstr "Impossível modificar o link %d"
|
| 446 |
|
| 447 |
+
#: core/core.php:1874
|
| 448 |
#, php-format
|
| 449 |
#@ broken-link-checker
|
| 450 |
msgid "%d link marked as not broken"
|
| 452 |
msgstr[0] "%d link marcado como funcional"
|
| 453 |
msgstr[1] "%d links marcados como funcionais"
|
| 454 |
|
| 455 |
+
#: core/core.php:1913
|
| 456 |
#@ broken-link-checker
|
| 457 |
msgid "Table columns"
|
| 458 |
msgstr "Colunas da Tabela"
|
| 459 |
|
| 460 |
+
#: core/core.php:1932
|
| 461 |
#@ default
|
| 462 |
msgid "Show on screen"
|
| 463 |
msgstr "Mostrar no ecrán"
|
| 464 |
|
| 465 |
+
#: core/core.php:1939
|
| 466 |
#@ broken-link-checker
|
| 467 |
msgid "links"
|
| 468 |
msgstr "links"
|
| 469 |
|
| 470 |
+
#: core/core.php:1940
|
| 471 |
#: includes/admin/table-printer.php:165
|
| 472 |
#@ default
|
| 473 |
#@ broken-link-checker
|
| 474 |
msgid "Apply"
|
| 475 |
msgstr "Aplicar"
|
| 476 |
|
| 477 |
+
#: core/core.php:1944
|
| 478 |
#@ broken-link-checker
|
| 479 |
msgid "Misc"
|
| 480 |
msgstr "Vários"
|
| 481 |
|
| 482 |
+
#: core/core.php:1959
|
| 483 |
#, php-format
|
| 484 |
#@ broken-link-checker
|
| 485 |
msgid "Highlight links broken for at least %s days"
|
| 486 |
msgstr "Realçar links offline pelo menos durante %s dias"
|
| 487 |
|
| 488 |
+
#: core/core.php:1968
|
| 489 |
#@ broken-link-checker
|
| 490 |
msgid "Color-code status codes"
|
| 491 |
msgstr "Cor-código status códigos"
|
| 492 |
|
| 493 |
+
#: core/core.php:1985
|
| 494 |
+
#: core/core.php:2450
|
| 495 |
+
#: core/core.php:2490
|
| 496 |
+
#: core/core.php:2523
|
| 497 |
+
#: core/core.php:2586
|
| 498 |
#@ broken-link-checker
|
| 499 |
msgid "You're not allowed to do that!"
|
| 500 |
msgstr "Não permitido!"
|
| 501 |
|
| 502 |
+
#: core/core.php:2320
|
| 503 |
#@ broken-link-checker
|
| 504 |
msgid "View broken links"
|
| 505 |
msgstr "Ver links offline"
|
| 506 |
|
| 507 |
+
#: core/core.php:2321
|
| 508 |
#, php-format
|
| 509 |
#@ broken-link-checker
|
| 510 |
msgid "Found %d broken link"
|
| 512 |
msgstr[0] "Encontrado %d Link offline"
|
| 513 |
msgstr[1] "Encontrados %d Links offline"
|
| 514 |
|
| 515 |
+
#: core/core.php:2327
|
| 516 |
#@ broken-link-checker
|
| 517 |
msgid "No broken links found."
|
| 518 |
msgstr "Não existem links offline."
|
| 519 |
|
| 520 |
+
#: core/core.php:2334
|
| 521 |
#, php-format
|
| 522 |
#@ broken-link-checker
|
| 523 |
msgid "%d URL in the work queue"
|
| 525 |
msgstr[0] "%d URL em espera"
|
| 526 |
msgstr[1] "%d URLs em espera"
|
| 527 |
|
| 528 |
+
#: core/core.php:2337
|
| 529 |
#@ broken-link-checker
|
| 530 |
msgid "No URLs in the work queue."
|
| 531 |
msgstr "Não existem URL em espera para verificação."
|
| 532 |
|
| 533 |
+
#: core/core.php:2366
|
| 534 |
#@ broken-link-checker
|
| 535 |
msgid "Searching your blog for links..."
|
| 536 |
msgstr "Procurando links..."
|
| 537 |
|
| 538 |
+
#: core/core.php:2368
|
| 539 |
#@ broken-link-checker
|
| 540 |
msgid "No links detected."
|
| 541 |
msgstr "Nenhuns links encontrados."
|
| 542 |
|
| 543 |
+
#: core/core.php:2458
|
| 544 |
+
#: core/core.php:2498
|
| 545 |
+
#: core/core.php:2533
|
| 546 |
+
#: core/core.php:2596
|
| 547 |
#, php-format
|
| 548 |
#@ broken-link-checker
|
| 549 |
msgid "Oops, I can't find the link %d"
|
| 550 |
msgstr "Oops, não é possível encontrar o link %d"
|
| 551 |
|
| 552 |
+
#: core/core.php:2471
|
| 553 |
+
#: core/core.php:2508
|
| 554 |
#@ broken-link-checker
|
| 555 |
msgid "Oops, couldn't modify the link!"
|
| 556 |
msgstr "Oops, não é possível modificar o link!"
|
| 557 |
|
| 558 |
+
#: core/core.php:2474
|
| 559 |
+
#: core/core.php:2511
|
| 560 |
+
#: core/core.php:2622
|
| 561 |
#@ broken-link-checker
|
| 562 |
msgid "Error : link_id not specified"
|
| 563 |
msgstr "Erro : link_id não especificado"
|
| 564 |
|
| 565 |
+
#: core/core.php:2543
|
| 566 |
#@ broken-link-checker
|
| 567 |
msgid "Oops, the new URL is invalid!"
|
| 568 |
msgstr "Oops, a nova URL não é válida!"
|
| 569 |
|
| 570 |
+
#: core/core.php:2554
|
| 571 |
+
#: core/core.php:2605
|
| 572 |
#@ broken-link-checker
|
| 573 |
msgid "An unexpected error occured!"
|
| 574 |
msgstr "Ocorreu um erro inesperado!"
|
| 575 |
|
| 576 |
+
#: core/core.php:2572
|
| 577 |
#@ broken-link-checker
|
| 578 |
msgid "Error : link_id or new_url not specified"
|
| 579 |
msgstr "Erro : link_id ou new_url não especificado"
|
| 580 |
|
| 581 |
+
#: core/core.php:2631
|
| 582 |
#@ broken-link-checker
|
| 583 |
msgid "You don't have sufficient privileges to access this information!"
|
| 584 |
msgstr "Não tem privilégios suficientes para aceder a esta informação!"
|
| 585 |
|
| 586 |
+
#: core/core.php:2644
|
| 587 |
#@ broken-link-checker
|
| 588 |
msgid "Error : link ID not specified"
|
| 589 |
msgstr "Erro : link ID não especificado"
|
| 590 |
|
| 591 |
+
#: core/core.php:2658
|
| 592 |
#, php-format
|
| 593 |
#@ broken-link-checker
|
| 594 |
msgid "Failed to load link details (%s)"
|
| 595 |
msgstr "Erro a carregar os detalhes do link (%s)"
|
| 596 |
|
| 597 |
+
#: core/core.php:2712
|
| 598 |
#@ broken-link-checker
|
| 599 |
msgid "Broken Link Checker"
|
| 600 |
msgstr "Links offline"
|
| 601 |
|
| 602 |
+
#: core/core.php:2732
|
| 603 |
#@ broken-link-checker
|
| 604 |
msgid "PHP version"
|
| 605 |
msgstr "Versão PHP"
|
| 606 |
|
| 607 |
+
#: core/core.php:2738
|
| 608 |
#@ broken-link-checker
|
| 609 |
msgid "MySQL version"
|
| 610 |
msgstr "Versão MySQL"
|
| 611 |
|
| 612 |
+
#: core/core.php:2751
|
| 613 |
#@ broken-link-checker
|
| 614 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
| 615 |
msgstr "Versão de CURL obsoleta. A deteção de redirects pode não funcionar corretamente."
|
| 616 |
|
| 617 |
+
#: core/core.php:2763
|
| 618 |
+
#: core/core.php:2779
|
| 619 |
+
#: core/core.php:2784
|
| 620 |
#@ broken-link-checker
|
| 621 |
msgid "Not installed"
|
| 622 |
msgstr "Não instalado"
|
| 623 |
|
| 624 |
+
#: core/core.php:2766
|
| 625 |
#@ broken-link-checker
|
| 626 |
msgid "CURL version"
|
| 627 |
msgstr "Versão CURL"
|
| 628 |
|
| 629 |
+
#: core/core.php:2772
|
| 630 |
#@ broken-link-checker
|
| 631 |
msgid "Installed"
|
| 632 |
msgstr "Instalado"
|
| 633 |
|
| 634 |
+
#: core/core.php:2785
|
| 635 |
#@ broken-link-checker
|
| 636 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
| 637 |
msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
|
| 638 |
|
| 639 |
+
#: core/core.php:2796
|
| 640 |
#@ broken-link-checker
|
| 641 |
msgid "On"
|
| 642 |
msgstr "Ativado"
|
| 643 |
|
| 644 |
+
#: core/core.php:2797
|
| 645 |
#@ broken-link-checker
|
| 646 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
| 647 |
msgstr "Os redirects podem ser detetados como links offline quando o safe_mode está habilitado."
|
| 648 |
|
| 649 |
+
#: core/core.php:2802
|
| 650 |
+
#: core/core.php:2816
|
| 651 |
#@ broken-link-checker
|
| 652 |
msgid "Off"
|
| 653 |
msgstr "Desativado"
|
| 654 |
|
| 655 |
+
#: core/core.php:2810
|
| 656 |
#, php-format
|
| 657 |
#@ broken-link-checker
|
| 658 |
msgid "On ( %s )"
|
| 659 |
msgstr "Ativado ( %s )"
|
| 660 |
|
| 661 |
+
#: core/core.php:2811
|
| 662 |
#@ broken-link-checker
|
| 663 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
| 664 |
msgstr "Os redirects podem ser considerados links offline quando o open_basedir está ativo."
|
| 665 |
|
| 666 |
+
#: core/core.php:2840
|
| 667 |
#@ broken-link-checker
|
| 668 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
| 669 |
msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
|
| 670 |
|
| 671 |
+
#: core/core.php:2935
|
| 672 |
+
#: core/core.php:3033
|
| 673 |
#, php-format
|
| 674 |
#@ broken-link-checker
|
| 675 |
msgid "[%s] Broken links detected"
|
| 676 |
msgstr "[%s] Links offline encontrados"
|
| 677 |
|
| 678 |
+
#: core/core.php:2941
|
| 679 |
#, php-format
|
| 680 |
#@ broken-link-checker
|
| 681 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
| 683 |
msgstr[0] "Links offline detetou %d novo link sem ligação."
|
| 684 |
msgstr[1] "Links offline detetou %d novos links sem ligação."
|
| 685 |
|
| 686 |
+
#: core/core.php:2964
|
| 687 |
#, php-format
|
| 688 |
#@ broken-link-checker
|
| 689 |
msgid "Here's a list of the first %d broken links:"
|
| 691 |
msgstr[0] "Lista do primeiro %d link sem ligação:"
|
| 692 |
msgstr[1] "Lista dos primeiros %d links sem ligação:"
|
| 693 |
|
| 694 |
+
#: core/core.php:2972
|
| 695 |
#@ broken-link-checker
|
| 696 |
msgid "Here's a list of the new broken links: "
|
| 697 |
msgstr "Novos links offline:"
|
| 698 |
|
| 699 |
+
#: core/core.php:2981
|
| 700 |
#, php-format
|
| 701 |
#@ broken-link-checker
|
| 702 |
msgid "Link text : %s"
|
| 703 |
msgstr "Texto do Link : %s"
|
| 704 |
|
| 705 |
+
#: core/core.php:2982
|
| 706 |
#, php-format
|
| 707 |
#@ broken-link-checker
|
| 708 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
| 709 |
msgstr "Link URL : <a href=\"%s\">%s</a>"
|
| 710 |
|
| 711 |
+
#: core/core.php:2983
|
| 712 |
#, php-format
|
| 713 |
#@ broken-link-checker
|
| 714 |
msgid "Source : %s"
|
| 715 |
msgstr "Fonte : %s"
|
| 716 |
|
| 717 |
+
#: core/core.php:2996
|
| 718 |
#@ broken-link-checker
|
| 719 |
msgid "You can see all broken links here:"
|
| 720 |
msgstr "Links offline:"
|
| 721 |
|
| 722 |
+
#: core/init.php:240
|
| 723 |
#@ default
|
| 724 |
msgid "Once Weekly"
|
| 725 |
msgstr "Uma vez por semana"
|
| 726 |
|
| 727 |
+
#: core/init.php:246
|
| 728 |
#@ default
|
| 729 |
msgid "Twice a Month"
|
| 730 |
msgstr "Bi-Mensal"
|
| 731 |
|
| 732 |
+
#: core/init.php:322
|
| 733 |
#@ broken-link-checker
|
| 734 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
| 735 |
msgstr "A instalação do plugin Links offline falhou. Desative e ative o plugin."
|
| 810 |
msgid "Updating post %d failed"
|
| 811 |
msgstr "Atualização do artigo %d falhou"
|
| 812 |
|
| 813 |
+
#: includes/any-post.php:566
|
| 814 |
#: modules/containers/custom_field.php:284
|
| 815 |
#, php-format
|
| 816 |
#@ broken-link-checker
|
| 817 |
msgid "Failed to delete post \"%s\" (%d)"
|
| 818 |
msgstr "Erro ao apagar o artigo \"%s\" (%d)"
|
| 819 |
|
| 820 |
+
#: includes/any-post.php:585
|
| 821 |
#: modules/containers/custom_field.php:303
|
| 822 |
#, php-format
|
| 823 |
#@ broken-link-checker
|
| 824 |
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
| 825 |
msgstr "Não é possível mover o artigo \"%s\" (%d) para o lixo porque a função está desabilitada"
|
| 826 |
|
| 827 |
+
#: includes/any-post.php:605
|
| 828 |
#: modules/containers/custom_field.php:322
|
| 829 |
#, php-format
|
| 830 |
#@ broken-link-checker
|
| 831 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
| 832 |
msgstr "Erro ao apagar o artigo \"%s\" (%d)"
|
| 833 |
|
| 834 |
+
#: includes/any-post.php:713
|
| 835 |
#, php-format
|
| 836 |
#@ broken-link-checker
|
| 837 |
msgid "%d post deleted."
|
| 839 |
msgstr[0] "%d artigo apagado."
|
| 840 |
msgstr[1] "%d artigos apagados."
|
| 841 |
|
| 842 |
+
#: includes/any-post.php:715
|
| 843 |
#, php-format
|
| 844 |
#@ broken-link-checker
|
| 845 |
msgid "%d page deleted."
|
| 847 |
msgstr[0] "%d página apagada."
|
| 848 |
msgstr[1] "%d páginas apagadas."
|
| 849 |
|
| 850 |
+
#: includes/any-post.php:717
|
| 851 |
#, php-format
|
| 852 |
#@ broken-link-checker
|
| 853 |
msgid "%d \"%s\" deleted."
|
| 855 |
msgstr[0] "%d \"%s\" apagado."
|
| 856 |
msgstr[1] "%d \"%s\" apagados."
|
| 857 |
|
| 858 |
+
#: includes/any-post.php:736
|
| 859 |
#, php-format
|
| 860 |
#@ broken-link-checker
|
| 861 |
msgid "%d post moved to the Trash."
|
| 863 |
msgstr[0] "%d artigo transferido para o Lixo."
|
| 864 |
msgstr[1] "%d artigos transferidos para o Lixo."
|
| 865 |
|
| 866 |
+
#: includes/any-post.php:738
|
| 867 |
#, php-format
|
| 868 |
#@ broken-link-checker
|
| 869 |
msgid "%d page moved to the Trash."
|
| 871 |
msgstr[0] "%d página transferida para o Lixo."
|
| 872 |
msgstr[1] "%d páginas transferidas para o Lixo."
|
| 873 |
|
| 874 |
+
#: includes/any-post.php:740
|
| 875 |
#, php-format
|
| 876 |
#@ broken-link-checker
|
| 877 |
msgid "%d \"%s\" moved to the Trash."
|
| 1014 |
msgstr "Não é possível apagar o registo do link na Base de dados"
|
| 1015 |
|
| 1016 |
#: includes/links.php:852
|
| 1017 |
+
#: modules/checkers/http.php:263
|
| 1018 |
#: modules/extras/mediafire.php:101
|
| 1019 |
#@ link status
|
| 1020 |
#@ broken-link-checker
|
| 1031 |
msgid "False positive"
|
| 1032 |
msgstr "Falso positivo"
|
| 1033 |
|
| 1034 |
+
#: modules/extras/youtube.php:156
|
| 1035 |
+
#: modules/extras/youtube.php:177
|
| 1036 |
+
#: modules/extras/youtube.php:249
|
| 1037 |
+
#: modules/extras/youtube.php:289
|
| 1038 |
#@ link status
|
| 1039 |
msgid "OK"
|
| 1040 |
msgstr "OK"
|
| 1446 |
msgid "[An orphaned link! This is a bug.]"
|
| 1447 |
msgstr "[Um link órfão! Bug.]"
|
| 1448 |
|
| 1449 |
+
#: modules/checkers/http.php:242
|
| 1450 |
#@ broken-link-checker
|
| 1451 |
msgid "Server Not Found"
|
| 1452 |
msgstr "Servidor Não Encontrado"
|
| 1453 |
|
| 1454 |
+
#: modules/checkers/http.php:257
|
| 1455 |
#@ broken-link-checker
|
| 1456 |
msgid "Connection Failed"
|
| 1457 |
msgstr "Sem Ligação"
|
| 1458 |
|
| 1459 |
+
#: modules/checkers/http.php:292
|
| 1460 |
+
#: modules/checkers/http.php:362
|
| 1461 |
#, php-format
|
| 1462 |
#@ broken-link-checker
|
| 1463 |
msgid "HTTP code : %d"
|
| 1464 |
msgstr "Código HTTP : %d"
|
| 1465 |
|
| 1466 |
+
#: modules/checkers/http.php:294
|
| 1467 |
+
#: modules/checkers/http.php:364
|
| 1468 |
#@ broken-link-checker
|
| 1469 |
msgid "(No response)"
|
| 1470 |
msgstr "(Sem resposta)"
|
| 1471 |
|
| 1472 |
+
#: modules/checkers/http.php:300
|
| 1473 |
#@ broken-link-checker
|
| 1474 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
| 1475 |
msgstr "Provável que o tempo da ligação se tenha esgotado ou que o domínio não exista."
|
| 1476 |
|
| 1477 |
+
#: modules/checkers/http.php:371
|
| 1478 |
#@ broken-link-checker
|
| 1479 |
msgid "Request timed out."
|
| 1480 |
msgstr "Tempo de espera esgotado."
|
| 1481 |
|
| 1482 |
+
#: modules/checkers/http.php:389
|
| 1483 |
#@ broken-link-checker
|
| 1484 |
msgid "Using Snoopy"
|
| 1485 |
msgstr "Utilizando Snoopy"
|
| 1614 |
msgid "Embedded DailyMotion video"
|
| 1615 |
msgstr "Vídeo DailyMotion embutido"
|
| 1616 |
|
| 1617 |
+
#: modules/extras/embed-parser-base.php:197
|
| 1618 |
#@ broken-link-checker
|
| 1619 |
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
| 1620 |
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."
|
| 1688 |
msgid "Embedded YouTube video"
|
| 1689 |
msgstr "Vídeo YouTube embutido"
|
| 1690 |
|
| 1691 |
+
#: modules/extras/youtube.php:124
|
| 1692 |
+
#: modules/extras/youtube.php:127
|
| 1693 |
#@ broken-link-checker
|
| 1694 |
msgid "Video Not Found"
|
| 1695 |
msgstr "Vídeo Não Encontrado"
|
| 1696 |
|
| 1697 |
+
#: modules/extras/youtube.php:135
|
| 1698 |
#@ broken-link-checker
|
| 1699 |
msgid "Video Removed"
|
| 1700 |
msgstr "Vídeo Apagado"
|
| 1701 |
|
| 1702 |
+
#: modules/extras/youtube.php:143
|
| 1703 |
#@ broken-link-checker
|
| 1704 |
msgid "Invalid Video ID"
|
| 1705 |
msgstr "Vídeo ID Inválido"
|
| 1706 |
|
| 1707 |
+
#: modules/extras/youtube.php:155
|
| 1708 |
#@ broken-link-checker
|
| 1709 |
msgid "Video OK"
|
| 1710 |
msgstr "Vídeo OK"
|
| 1711 |
|
| 1712 |
+
#: modules/extras/youtube.php:170
|
| 1713 |
+
#: modules/extras/youtube.php:271
|
| 1714 |
#, php-format
|
| 1715 |
#@ broken-link-checker
|
| 1716 |
msgid "Video status : %s%s"
|
| 1717 |
msgstr "Vídeo status : %s%s"
|
| 1718 |
|
| 1719 |
+
#: modules/extras/youtube.php:182
|
| 1720 |
+
#: modules/extras/youtube.php:280
|
| 1721 |
#@ broken-link-checker
|
| 1722 |
msgid "Video Restricted"
|
| 1723 |
msgstr "Vídeo Restrito"
|
| 1724 |
|
| 1725 |
+
#: modules/extras/youtube.php:199
|
| 1726 |
+
#: modules/extras/youtube.php:305
|
| 1727 |
#@ default
|
| 1728 |
msgid "Unknown YouTube API response received."
|
| 1729 |
msgstr "Resposta API YouTube desconhecida."
|
| 1738 |
msgid "Custom field"
|
| 1739 |
msgstr "Campo personalizado"
|
| 1740 |
|
| 1741 |
+
#: core/core.php:696
|
| 1742 |
#@ broken-link-checker
|
| 1743 |
msgid "Send authors e-mail notifications about broken links in their posts"
|
| 1744 |
msgstr "Enviar aos autores notificações por e-mail sobre links offline encontrados nos seus artigos"
|
| 1745 |
|
| 1746 |
+
#: core/core.php:2394
|
| 1747 |
#@ broken-link-checker
|
| 1748 |
msgctxt "current load"
|
| 1749 |
msgid "Unknown"
|
| 1750 |
msgstr "Desconhecido"
|
| 1751 |
|
| 1752 |
+
#: core/core.php:3039
|
| 1753 |
#, php-format
|
| 1754 |
#@ broken-link-checker
|
| 1755 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
| 1986 |
msgid "Trash"
|
| 1987 |
msgstr "Lixo"
|
| 1988 |
|
| 1989 |
+
#: core/core.php:748
|
| 1990 |
#, php-format
|
| 1991 |
#@ broken-link-checker
|
| 1992 |
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
| 1993 |
msgstr "Exemplo : Lorem ipsum <a %s>link offline</a>, dolor sit amet."
|
| 1994 |
|
| 1995 |
+
#: core/core.php:751
|
| 1996 |
+
#: core/core.php:782
|
| 1997 |
#@ broken-link-checker
|
| 1998 |
msgid "Click \"Save Changes\" to update example output."
|
| 1999 |
msgstr "Clicar \"Guardar Alterações\" para atualizar a visualização do exemplo."
|
| 2000 |
|
| 2001 |
+
#: core/core.php:779
|
| 2002 |
#, php-format
|
| 2003 |
#@ broken-link-checker
|
| 2004 |
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
| 2098 |
msgid "No dismissed links found"
|
| 2099 |
msgstr "Nenhuns links descartados encontrados"
|
| 2100 |
|
| 2101 |
+
#: core/core.php:2343
|
| 2102 |
#, php-format
|
| 2103 |
#@ broken-link-checker
|
| 2104 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 2107 |
msgstr[0] "%d URL única"
|
| 2108 |
msgstr[1] "%d URLs únicas"
|
| 2109 |
|
| 2110 |
+
#: core/core.php:2347
|
| 2111 |
#, php-format
|
| 2112 |
#@ broken-link-checker
|
| 2113 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 2116 |
msgstr[0] "%d link"
|
| 2117 |
msgstr[1] "%d links"
|
| 2118 |
|
| 2119 |
+
#: core/core.php:2353
|
| 2120 |
#, php-format
|
| 2121 |
#@ broken-link-checker
|
| 2122 |
msgid "Detected %1$s in %2$s and still searching..."
|
| 2123 |
msgstr "Encontrados %1$s em %2$s e procurando..."
|
| 2124 |
|
| 2125 |
+
#: core/core.php:2359
|
| 2126 |
#, php-format
|
| 2127 |
#@ broken-link-checker
|
| 2128 |
msgid "Detected %1$s in %2$s."
|
| 2129 |
msgstr "Encontrados %1$s em %2$s."
|
| 2130 |
|
| 2131 |
+
#: core/core.php:703
|
| 2132 |
+
#@ broken-link-checker
|
| 2133 |
+
msgid "Notification e-mail address"
|
| 2134 |
+
msgstr "Endereço de e-mail para Notificação"
|
| 2135 |
+
|
| 2136 |
+
#: core/core.php:715
|
| 2137 |
+
#@ broken-link-checker
|
| 2138 |
+
msgid "Leave empty to use the e-mail address specified in Settings → General."
|
| 2139 |
+
msgstr "Deixar em branco para usar o endereço de e-mail especificado em Configurações → Geral."
|
| 2140 |
+
|
| 2141 |
+
#: core/core.php:950
|
| 2142 |
+
#@ broken-link-checker
|
| 2143 |
+
msgid "Show the dashboard widget for"
|
| 2144 |
+
msgstr "Mostrar o widget do Painel para"
|
| 2145 |
+
|
| 2146 |
+
#: core/core.php:955
|
| 2147 |
+
#@ broken-link-checker
|
| 2148 |
+
msgctxt "dashboard widget visibility"
|
| 2149 |
+
msgid "Administrator"
|
| 2150 |
+
msgstr "Administrador"
|
| 2151 |
+
|
| 2152 |
+
#: core/core.php:956
|
| 2153 |
+
#@ broken-link-checker
|
| 2154 |
+
msgctxt "dashboard widget visibility"
|
| 2155 |
+
msgid "Editor and above"
|
| 2156 |
+
msgstr "Editor e superior"
|
| 2157 |
+
|
| 2158 |
+
#: core/core.php:957
|
| 2159 |
+
#@ broken-link-checker
|
| 2160 |
+
msgctxt "dashboard widget visibility"
|
| 2161 |
+
msgid "Nobody (disables the widget)"
|
| 2162 |
+
msgstr "Ninguém (desativa o widget)"
|
| 2163 |
+
|
| 2164 |
+
#: modules/extras/youtube-playlist-embed.php:24
|
| 2165 |
+
#@ broken-link-checker
|
| 2166 |
+
msgid "YouTube Playlist"
|
| 2167 |
+
msgstr "Playlist do YouTube"
|
| 2168 |
+
|
| 2169 |
+
#: modules/extras/youtube-playlist-embed.php:25
|
| 2170 |
+
#@ broken-link-checker
|
| 2171 |
+
msgid "Embedded YouTube playlist"
|
| 2172 |
+
msgstr "Playlist do YouTube embutida"
|
| 2173 |
+
|
| 2174 |
+
#: modules/extras/youtube.php:217
|
| 2175 |
+
#: modules/extras/youtube.php:220
|
| 2176 |
+
#@ broken-link-checker
|
| 2177 |
+
msgid "Playlist Not Found"
|
| 2178 |
+
msgstr "Playlist Não Encontrada"
|
| 2179 |
+
|
| 2180 |
+
#: modules/extras/youtube.php:227
|
| 2181 |
+
#@ broken-link-checker
|
| 2182 |
+
msgid "Playlist Restricted"
|
| 2183 |
+
msgstr "Playlist Restrita"
|
| 2184 |
+
|
| 2185 |
+
#: modules/extras/youtube.php:234
|
| 2186 |
+
#@ broken-link-checker
|
| 2187 |
+
msgid "Invalid Playlist"
|
| 2188 |
+
msgstr "Playlist Inválida"
|
| 2189 |
+
|
| 2190 |
+
#: modules/extras/youtube.php:248
|
| 2191 |
+
#@ broken-link-checker
|
| 2192 |
+
msgid "Playlist OK"
|
| 2193 |
+
msgstr "Playlist OK"
|
| 2194 |
+
|
| 2195 |
+
#: modules/extras/youtube.php:255
|
| 2196 |
+
#@ broken-link-checker
|
| 2197 |
+
msgid "This playlist has no entries or all entries have been deleted."
|
| 2198 |
+
msgstr "Esta playlist não tem registos ou foram todos excluídos."
|
| 2199 |
+
|
| 2200 |
+
#: modules/extras/youtube.php:256
|
| 2201 |
+
#@ link status
|
| 2202 |
+
msgid "Empty Playlist"
|
| 2203 |
+
msgstr "Playlist Vazia"
|
| 2204 |
+
|
languages/broken-link-checker-zh_CN.mo
CHANGED
|
Binary file
|
languages/broken-link-checker-zh_CN.po
CHANGED
|
@@ -2,10 +2,11 @@ msgid ""
|
|
| 2 |
msgstr ""
|
| 3 |
"Project-Id-Version: \n"
|
| 4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 5 |
-
"POT-Creation-Date:
|
| 6 |
"PO-Revision-Date: \n"
|
| 7 |
"Last-Translator: Kaijia Feng <fengkaijia@gmail.com>\n"
|
| 8 |
"Language-Team: Broken Link Checker <fengkaijia@gmail.com>\n"
|
|
|
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -49,562 +50,589 @@ msgstr "查看失效链接"
|
|
| 49 |
msgid "Feedback"
|
| 50 |
msgstr "反馈"
|
| 51 |
|
| 52 |
-
#: core/core.php:
|
| 53 |
msgid "Go to Broken Links"
|
| 54 |
msgstr "查看失效链接"
|
| 55 |
|
| 56 |
-
#: core/core.php:
|
| 57 |
msgid "Settings"
|
| 58 |
msgstr "设置"
|
| 59 |
|
| 60 |
-
#: core/core.php:
|
| 61 |
msgid "Settings saved."
|
| 62 |
msgstr "设置已保存。"
|
| 63 |
|
| 64 |
-
#: core/core.php:
|
| 65 |
msgid "Thank you for your donation!"
|
| 66 |
msgstr "感谢您的捐赠!"
|
| 67 |
|
| 68 |
-
#: core/core.php:
|
| 69 |
msgid "Complete site recheck started."
|
| 70 |
msgstr "站点完整重新检查开始。"
|
| 71 |
|
| 72 |
-
#: core/core.php:
|
| 73 |
msgid "Details"
|
| 74 |
msgstr "详情"
|
| 75 |
|
| 76 |
-
#: core/core.php:
|
| 77 |
msgid "General"
|
| 78 |
msgstr "常规"
|
| 79 |
|
| 80 |
-
#: core/core.php:
|
| 81 |
msgid "Look For Links In"
|
| 82 |
msgstr "检查范围"
|
| 83 |
|
| 84 |
-
#: core/core.php:
|
| 85 |
msgid "Which Links To Check"
|
| 86 |
msgstr "检查类型"
|
| 87 |
|
| 88 |
-
#: core/core.php:
|
| 89 |
msgid "Protocols & APIs"
|
| 90 |
msgstr "协议和API"
|
| 91 |
|
| 92 |
-
#: core/core.php:
|
| 93 |
msgid "Advanced"
|
| 94 |
msgstr "高级"
|
| 95 |
|
| 96 |
-
#: core/core.php:
|
| 97 |
msgid "Broken Link Checker Options"
|
| 98 |
msgstr "链接检查器选项"
|
| 99 |
|
| 100 |
-
#: core/core.php:
|
| 101 |
#: includes/admin/table-printer.php:197
|
| 102 |
msgid "Status"
|
| 103 |
msgstr "状态"
|
| 104 |
|
| 105 |
-
#: core/core.php:
|
| 106 |
#: includes/admin/options-page-js.php:56
|
| 107 |
msgid "Show debug info"
|
| 108 |
msgstr "显示调试信息"
|
| 109 |
|
| 110 |
-
#: core/core.php:
|
| 111 |
msgid "Check each link"
|
| 112 |
msgstr "检查每个链接"
|
| 113 |
|
| 114 |
-
#: core/core.php:
|
| 115 |
msgid "Every %s hours"
|
| 116 |
msgstr "每 %s 小时"
|
| 117 |
|
| 118 |
-
#: core/core.php:
|
| 119 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
| 120 |
msgstr "将以此频率检测所有链接,将立即检测新增链接。"
|
| 121 |
|
| 122 |
-
#: core/core.php:
|
| 123 |
msgid "E-mail notifications"
|
| 124 |
-
msgstr "
|
| 125 |
|
| 126 |
-
#: core/core.php:
|
| 127 |
msgid "Send me e-mail notifications about newly detected broken links"
|
| 128 |
-
msgstr "
|
| 129 |
|
| 130 |
-
#: core/core.php:
|
| 131 |
msgid "Send authors e-mail notifications about broken links in their posts"
|
| 132 |
-
msgstr "
|
| 133 |
|
| 134 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 135 |
msgid "Link tweaks"
|
| 136 |
msgstr "链接调整"
|
| 137 |
|
| 138 |
-
#: core/core.php:
|
| 139 |
msgid "Apply custom formatting to broken links"
|
| 140 |
msgstr "将自定义样式应用到失效链接"
|
| 141 |
|
| 142 |
-
#: core/core.php:
|
| 143 |
-
#: core/core.php:
|
| 144 |
msgid "Edit CSS"
|
| 145 |
msgstr "编辑样式"
|
| 146 |
|
| 147 |
-
#: core/core.php:
|
| 148 |
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
| 149 |
msgstr "示例:Lorem ipsum <a %s>失效链接</a>, dolor sit amet."
|
| 150 |
|
| 151 |
-
#: core/core.php:
|
| 152 |
-
#: core/core.php:
|
| 153 |
msgid "Click \"Save Changes\" to update example output."
|
| 154 |
msgstr "单击“保持变更”更新输出示例。"
|
| 155 |
|
| 156 |
-
#: core/core.php:
|
| 157 |
msgid "Apply custom formatting to removed links"
|
| 158 |
msgstr "对已经移除的链接应用自定义格式"
|
| 159 |
|
| 160 |
-
#: core/core.php:
|
| 161 |
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
| 162 |
msgstr "示例:Lorem ipsum <span %s>失效链接</span>, dolor sit amet."
|
| 163 |
|
| 164 |
-
#: core/core.php:
|
| 165 |
msgid "Stop search engines from following broken links"
|
| 166 |
msgstr "要求搜索引擎不跟踪已经失效的链接"
|
| 167 |
|
| 168 |
-
#: core/core.php:
|
| 169 |
msgid "Look for links in"
|
| 170 |
msgstr "检查以下范围的链接"
|
| 171 |
|
| 172 |
-
#: core/core.php:
|
| 173 |
msgid "Post statuses"
|
| 174 |
msgstr "发布状态"
|
| 175 |
|
| 176 |
-
#: core/core.php:
|
| 177 |
msgid "Link types"
|
| 178 |
msgstr "链接类型"
|
| 179 |
|
| 180 |
-
#: core/core.php:
|
| 181 |
msgid "Error : All link parsers missing!"
|
| 182 |
msgstr "错误:无法找到链接解析器!"
|
| 183 |
|
| 184 |
-
#: core/core.php:
|
| 185 |
msgid "Exclusion list"
|
| 186 |
msgstr "排除列表"
|
| 187 |
|
| 188 |
-
#: core/core.php:
|
| 189 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
| 190 |
msgstr "不检测含有以下关键字的链接(每个关键字一行):"
|
| 191 |
|
| 192 |
-
#: core/core.php:
|
| 193 |
msgid "Check links using"
|
| 194 |
msgstr "检查链接"
|
| 195 |
|
| 196 |
-
#: core/core.php:
|
| 197 |
#: includes/links.php:856
|
| 198 |
msgid "Timeout"
|
| 199 |
msgstr "超时"
|
| 200 |
|
| 201 |
-
#: core/core.php:
|
| 202 |
-
#: core/core.php:
|
| 203 |
-
#: core/core.php:
|
| 204 |
msgid "%s seconds"
|
| 205 |
msgstr "%s 秒"
|
| 206 |
|
| 207 |
-
#: core/core.php:
|
| 208 |
msgid "Links that take longer than this to load will be marked as broken."
|
| 209 |
msgstr "检测时若链接在此时间内未响应将被视为失效。"
|
| 210 |
|
| 211 |
-
#: core/core.php:
|
| 212 |
msgid "Link monitor"
|
| 213 |
msgstr "链接监视器"
|
| 214 |
|
| 215 |
-
#: core/core.php:
|
| 216 |
msgid "Run continuously while the Dashboard is open"
|
| 217 |
msgstr "在仪表盘打开时持续运行"
|
| 218 |
|
| 219 |
-
#: core/core.php:
|
| 220 |
msgid "Run hourly in the background"
|
| 221 |
msgstr "在后台每小时运行一次"
|
| 222 |
|
| 223 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 224 |
msgid "Max. execution time"
|
| 225 |
msgstr "最大执行时间"
|
| 226 |
|
| 227 |
-
#: core/core.php:
|
| 228 |
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."
|
| 229 |
msgstr "插件通过定期在后台创建一个实例来解析你的文章以搜索链接,检查找到的链接并执行一些其他耗时的任务。在这里你可以设置后台实例每次最多可以运行多长时间,通常情况下,链接监视会在每次会话结束前完成。"
|
| 230 |
|
| 231 |
-
#: core/core.php:
|
| 232 |
msgid "Server load limit"
|
| 233 |
msgstr "服务器负载限制"
|
| 234 |
|
| 235 |
-
#: core/core.php:
|
| 236 |
msgid "Current load : %s"
|
| 237 |
msgstr "当前负载:%s"
|
| 238 |
|
| 239 |
-
#: core/core.php:
|
| 240 |
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."
|
| 241 |
msgstr "当平均<a href=\"%s\">服务器负载</a>超过此值时,链接检查将会暂停。留空此栏以关闭负载限制。"
|
| 242 |
|
| 243 |
-
#: core/core.php:
|
| 244 |
msgid "Not available"
|
| 245 |
msgstr "不可用"
|
| 246 |
|
| 247 |
-
#: core/core.php:
|
| 248 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
| 249 |
msgstr "负载限制仅适用于开启<code>/proc/loadavg</code>并且可读取的类Linux操作系统。"
|
| 250 |
|
| 251 |
-
#: core/core.php:
|
| 252 |
msgid "Forced recheck"
|
| 253 |
msgstr "强制重新检查"
|
| 254 |
|
| 255 |
-
#: core/core.php:
|
| 256 |
msgid "Re-check all pages"
|
| 257 |
msgstr "重新检查所有页面"
|
| 258 |
|
| 259 |
-
#: core/core.php:
|
| 260 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
| 261 |
msgstr "注意这是“强破坏性选项”。单击此按钮以清空链接数据库并重新检查站点上的所有链接。"
|
| 262 |
|
| 263 |
-
#: core/core.php:
|
| 264 |
msgid "Save Changes"
|
| 265 |
msgstr "保存更改"
|
| 266 |
|
| 267 |
-
#: core/core.php:
|
| 268 |
msgid "Configure"
|
| 269 |
msgstr "配置"
|
| 270 |
|
| 271 |
-
#: core/core.php:
|
| 272 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
| 273 |
msgstr "检测输入到此自定义栏目中的链接(每个链接一行):"
|
| 274 |
|
| 275 |
-
#: core/core.php:
|
| 276 |
-
#: core/core.php:
|
| 277 |
-
#: core/core.php:
|
| 278 |
msgid "Database error : %s"
|
| 279 |
msgstr "数据库错误:%s"
|
| 280 |
|
| 281 |
-
#: core/core.php:
|
| 282 |
msgid "You must enter a filter name!"
|
| 283 |
msgstr "你需要输入一个过滤器名称!"
|
| 284 |
|
| 285 |
-
#: core/core.php:
|
| 286 |
msgid "Invalid search query."
|
| 287 |
msgstr "无效的查询。"
|
| 288 |
|
| 289 |
-
#: core/core.php:
|
| 290 |
msgid "Filter \"%s\" created"
|
| 291 |
msgstr "已创建“%s”过滤器"
|
| 292 |
|
| 293 |
-
#: core/core.php:
|
| 294 |
msgid "Filter ID not specified."
|
| 295 |
msgstr "过滤器ID未指定。"
|
| 296 |
|
| 297 |
-
#: core/core.php:
|
| 298 |
msgid "Filter deleted"
|
| 299 |
msgstr "已删除过滤器"
|
| 300 |
|
| 301 |
-
#: core/core.php:
|
| 302 |
msgid "Replaced %d redirect with a direct link"
|
| 303 |
msgid_plural "Replaced %d redirects with direct links"
|
| 304 |
msgstr[0] "已使用直接链接替换了%d个重定向"
|
| 305 |
|
| 306 |
-
#: core/core.php:
|
| 307 |
msgid "Failed to fix %d redirect"
|
| 308 |
msgid_plural "Failed to fix %d redirects"
|
| 309 |
msgstr[0] "修复%d个重定向失败"
|
| 310 |
|
| 311 |
-
#: core/core.php:
|
| 312 |
msgid "None of the selected links are redirects!"
|
| 313 |
msgstr "选中的链接均不是重定向链接!"
|
| 314 |
|
| 315 |
-
#: core/core.php:
|
| 316 |
msgid "%d link updated."
|
| 317 |
msgid_plural "%d links updated."
|
| 318 |
msgstr[0] "%d个链接已更新。"
|
| 319 |
|
| 320 |
-
#: core/core.php:
|
| 321 |
msgid "Failed to update %d link."
|
| 322 |
msgid_plural "Failed to update %d links."
|
| 323 |
msgstr[0] "更新%d个链接失败。"
|
| 324 |
|
| 325 |
-
#: core/core.php:
|
| 326 |
msgid "%d link removed"
|
| 327 |
msgid_plural "%d links removed"
|
| 328 |
msgstr[0] "已移除%d个链接"
|
| 329 |
|
| 330 |
-
#: core/core.php:
|
| 331 |
msgid "Failed to remove %d link"
|
| 332 |
msgid_plural "Failed to remove %d links"
|
| 333 |
msgstr[0] "移除%d个链接失败"
|
| 334 |
|
| 335 |
-
#: core/core.php:
|
| 336 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
| 337 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
| 338 |
msgstr[0] "%d个项目由于无法移动到回收站而被忽略,你需要手动删除这些项目。"
|
| 339 |
|
| 340 |
-
#: core/core.php:
|
| 341 |
msgid "Didn't find anything to delete!"
|
| 342 |
msgstr "没有任何需要删除的内容!"
|
| 343 |
|
| 344 |
-
#: core/core.php:
|
| 345 |
msgid "%d link scheduled for rechecking"
|
| 346 |
msgid_plural "%d links scheduled for rechecking"
|
| 347 |
msgstr[0] "已计划重新检查%d个链接"
|
| 348 |
|
| 349 |
-
#: core/core.php:
|
| 350 |
-
#: core/core.php:
|
| 351 |
msgid "This link was manually marked as working by the user."
|
| 352 |
msgstr "此链接被用户标记为有效。"
|
| 353 |
|
| 354 |
-
#: core/core.php:
|
| 355 |
msgid "Couldn't modify link %d"
|
| 356 |
msgstr "无法修改链接%d"
|
| 357 |
|
| 358 |
-
#: core/core.php:
|
| 359 |
msgid "%d link marked as not broken"
|
| 360 |
msgid_plural "%d links marked as not broken"
|
| 361 |
msgstr[0] "%d个链接被标记为未损坏"
|
| 362 |
|
| 363 |
-
#: core/core.php:
|
| 364 |
msgid "Table columns"
|
| 365 |
msgstr "表格栏目"
|
| 366 |
|
| 367 |
-
#: core/core.php:
|
| 368 |
msgid "Show on screen"
|
| 369 |
msgstr "在屏幕上显示"
|
| 370 |
|
| 371 |
-
#: core/core.php:
|
| 372 |
msgid "links"
|
| 373 |
msgstr "链接"
|
| 374 |
|
| 375 |
-
#: core/core.php:
|
| 376 |
#: includes/admin/table-printer.php:165
|
| 377 |
msgid "Apply"
|
| 378 |
msgstr "应用"
|
| 379 |
|
| 380 |
-
#: core/core.php:
|
| 381 |
msgid "Misc"
|
| 382 |
msgstr "杂项"
|
| 383 |
|
| 384 |
-
#: core/core.php:
|
| 385 |
msgid "Highlight links broken for at least %s days"
|
| 386 |
msgstr "高亮显示至少已经失效%s天的链接"
|
| 387 |
|
| 388 |
-
#: core/core.php:
|
| 389 |
msgid "Color-code status codes"
|
| 390 |
msgstr "色彩标记状态码"
|
| 391 |
|
| 392 |
-
#: core/core.php:
|
| 393 |
-
#: core/core.php:
|
| 394 |
-
#: core/core.php:
|
| 395 |
-
#: core/core.php:
|
| 396 |
-
#: core/core.php:
|
| 397 |
msgid "You're not allowed to do that!"
|
| 398 |
msgstr "您无权限执行此操作!"
|
| 399 |
|
| 400 |
-
#: core/core.php:
|
| 401 |
msgid "View broken links"
|
| 402 |
msgstr "查看失效链接"
|
| 403 |
|
| 404 |
-
#: core/core.php:
|
| 405 |
msgid "Found %d broken link"
|
| 406 |
msgid_plural "Found %d broken links"
|
| 407 |
msgstr[0] "已找到%d条失效链接"
|
| 408 |
|
| 409 |
-
#: core/core.php:
|
| 410 |
msgid "No broken links found."
|
| 411 |
msgstr "未找到失效链接。"
|
| 412 |
|
| 413 |
-
#: core/core.php:
|
| 414 |
msgid "%d URL in the work queue"
|
| 415 |
msgid_plural "%d URLs in the work queue"
|
| 416 |
msgstr[0] "执行队列中还有%d条网址"
|
| 417 |
|
| 418 |
-
#: core/core.php:
|
| 419 |
msgid "No URLs in the work queue."
|
| 420 |
msgstr "执行队列中无网址。"
|
| 421 |
|
| 422 |
-
#: core/core.php:
|
| 423 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 424 |
msgid "%d unique URL"
|
| 425 |
msgid_plural "%d unique URLs"
|
| 426 |
msgstr[0] "%d个唯一网址"
|
| 427 |
|
| 428 |
-
#: core/core.php:
|
| 429 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 430 |
msgid "%d link"
|
| 431 |
msgid_plural "%d links"
|
| 432 |
msgstr[0] "%d个链接"
|
| 433 |
|
| 434 |
-
#: core/core.php:
|
| 435 |
msgid "Detected %1$s in %2$s and still searching..."
|
| 436 |
msgstr "在%2$s中发现%1$s,还在继续搜索……"
|
| 437 |
|
| 438 |
-
#: core/core.php:
|
| 439 |
msgid "Detected %1$s in %2$s."
|
| 440 |
msgstr "在%2$s中发现%1$s。"
|
| 441 |
|
| 442 |
-
#: core/core.php:
|
| 443 |
msgid "Searching your blog for links..."
|
| 444 |
msgstr "正在您的博客中搜索链接……"
|
| 445 |
|
| 446 |
-
#: core/core.php:
|
| 447 |
msgid "No links detected."
|
| 448 |
msgstr "没有发现链接。"
|
| 449 |
|
| 450 |
-
#: core/core.php:
|
| 451 |
msgctxt "current load"
|
| 452 |
msgid "Unknown"
|
| 453 |
msgstr "未知"
|
| 454 |
|
| 455 |
-
#: core/core.php:
|
| 456 |
-
#: core/core.php:
|
| 457 |
-
#: core/core.php:
|
| 458 |
-
#: core/core.php:
|
| 459 |
msgid "Oops, I can't find the link %d"
|
| 460 |
msgstr "啊哦,我找不到%d号链接"
|
| 461 |
|
| 462 |
-
#: core/core.php:
|
| 463 |
-
#: core/core.php:
|
| 464 |
msgid "Oops, couldn't modify the link!"
|
| 465 |
msgstr "啊哦,无法修改此链接!"
|
| 466 |
|
| 467 |
-
#: core/core.php:
|
| 468 |
-
#: core/core.php:
|
| 469 |
-
#: core/core.php:
|
| 470 |
msgid "Error : link_id not specified"
|
| 471 |
msgstr "错误:未指定link_id"
|
| 472 |
|
| 473 |
-
#: core/core.php:
|
| 474 |
msgid "Oops, the new URL is invalid!"
|
| 475 |
msgstr "啊哦,这条新的链接无效!"
|
| 476 |
|
| 477 |
-
#: core/core.php:
|
| 478 |
-
#: core/core.php:
|
| 479 |
msgid "An unexpected error occured!"
|
| 480 |
msgstr "发生了一个未捕获的异常!"
|
| 481 |
|
| 482 |
-
#: core/core.php:
|
| 483 |
msgid "Error : link_id or new_url not specified"
|
| 484 |
msgstr "错误:未指定link_id或者new_url"
|
| 485 |
|
| 486 |
-
#: core/core.php:
|
| 487 |
msgid "You don't have sufficient privileges to access this information!"
|
| 488 |
msgstr "您没有足够的权限来访问此信息!"
|
| 489 |
|
| 490 |
-
#: core/core.php:
|
| 491 |
msgid "Error : link ID not specified"
|
| 492 |
msgstr "错误:链接ID未指定"
|
| 493 |
|
| 494 |
-
#: core/core.php:
|
| 495 |
msgid "Failed to load link details (%s)"
|
| 496 |
msgstr "加载链接(%s)详情失败"
|
| 497 |
|
| 498 |
-
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.
|
| 499 |
#. Plugin Name of the plugin/theme
|
| 500 |
-
#: core/core.php:
|
| 501 |
msgid "Broken Link Checker"
|
| 502 |
msgstr "失效链接检查器"
|
| 503 |
|
| 504 |
-
#: core/core.php:
|
| 505 |
msgid "PHP version"
|
| 506 |
msgstr "PHP版本"
|
| 507 |
|
| 508 |
-
#: core/core.php:
|
| 509 |
msgid "MySQL version"
|
| 510 |
msgstr "MySQL版本"
|
| 511 |
|
| 512 |
-
#: core/core.php:
|
| 513 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
| 514 |
msgstr "您的CURL版本过低。重定向检测可能无法正确运行。"
|
| 515 |
|
| 516 |
-
#: core/core.php:
|
| 517 |
-
#: core/core.php:
|
| 518 |
-
#: core/core.php:
|
| 519 |
msgid "Not installed"
|
| 520 |
msgstr "未安装"
|
| 521 |
|
| 522 |
-
#: core/core.php:
|
| 523 |
msgid "CURL version"
|
| 524 |
msgstr "CURL版本"
|
| 525 |
|
| 526 |
-
#: core/core.php:
|
| 527 |
msgid "Installed"
|
| 528 |
msgstr "已安装"
|
| 529 |
|
| 530 |
-
#: core/core.php:
|
| 531 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
| 532 |
msgstr "要让插件正常运行,您必须安装CURL或者Snoopy!"
|
| 533 |
|
| 534 |
-
#: core/core.php:
|
| 535 |
msgid "On"
|
| 536 |
msgstr "开启"
|
| 537 |
|
| 538 |
-
#: core/core.php:
|
| 539 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
| 540 |
msgstr "在安全模式打开时重定向可能被识别为无效链接。"
|
| 541 |
|
| 542 |
-
#: core/core.php:
|
| 543 |
-
#: core/core.php:
|
| 544 |
msgid "Off"
|
| 545 |
msgstr "关闭"
|
| 546 |
|
| 547 |
-
#: core/core.php:
|
| 548 |
msgid "On ( %s )"
|
| 549 |
msgstr "在(%s)内"
|
| 550 |
|
| 551 |
-
#: core/core.php:
|
| 552 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
| 553 |
msgstr "当open_basedir打开时重定向可能被识别为无效链接。"
|
| 554 |
|
| 555 |
-
#: core/core.php:
|
| 556 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
| 557 |
msgstr "如果此值为0,你将有可能在重新载入数页后遇到问题。"
|
| 558 |
|
| 559 |
-
#: core/core.php:
|
| 560 |
-
#: core/core.php:
|
| 561 |
msgid "[%s] Broken links detected"
|
| 562 |
msgstr "[%s] 检测到失效链接"
|
| 563 |
|
| 564 |
-
#: core/core.php:
|
| 565 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
| 566 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
| 567 |
msgstr[0] "失效链接检查器在站点上发现了%d个新的失效链接。"
|
| 568 |
|
| 569 |
-
#: core/core.php:
|
| 570 |
msgid "Here's a list of the first %d broken links:"
|
| 571 |
msgid_plural "Here's a list of the first %d broken links:"
|
| 572 |
msgstr[0] "以下列表显示了最新的%s个失效链接:"
|
| 573 |
|
| 574 |
-
#: core/core.php:
|
| 575 |
msgid "Here's a list of the new broken links: "
|
| 576 |
msgstr "以下列出了新的失效链接:"
|
| 577 |
|
| 578 |
-
#: core/core.php:
|
| 579 |
msgid "Link text : %s"
|
| 580 |
msgstr "链接文字:%s"
|
| 581 |
|
| 582 |
-
#: core/core.php:
|
| 583 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
| 584 |
msgstr "链接网址:<a href=\"%s\">%s</a>"
|
| 585 |
|
| 586 |
-
#: core/core.php:
|
| 587 |
msgid "Source : %s"
|
| 588 |
msgstr "来源:%s"
|
| 589 |
|
| 590 |
-
#: core/core.php:
|
| 591 |
msgid "You can see all broken links here:"
|
| 592 |
msgstr "你可以在此处浏览所有的失效链接:"
|
| 593 |
|
| 594 |
-
#: core/core.php:
|
| 595 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
| 596 |
msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
|
| 597 |
msgstr[0] "失效链接检查器在你的文章中发现了%d个新的失效链接。"
|
| 598 |
|
| 599 |
-
#: core/init.php:
|
| 600 |
msgid "Once Weekly"
|
| 601 |
msgstr "每周一次"
|
| 602 |
|
| 603 |
-
#: core/init.php:
|
| 604 |
msgid "Twice a Month"
|
| 605 |
msgstr "每月两次"
|
| 606 |
|
| 607 |
-
#: core/init.php:
|
| 608 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
| 609 |
msgstr "失效链接检查器安装失败。请尝试重新激活本插件。"
|
| 610 |
|
|
@@ -752,20 +780,19 @@ msgstr "搜索链接"
|
|
| 752 |
msgid "Cancel"
|
| 753 |
msgstr "取消"
|
| 754 |
|
| 755 |
-
#: includes/admin/sidebar.php:
|
| 756 |
-
#: includes/admin/sidebar.php:68
|
| 757 |
msgid "More plugins by Janis Elsts"
|
| 758 |
msgstr "更多Janis Elsts制作的插件"
|
| 759 |
|
| 760 |
-
#: includes/admin/sidebar.php:
|
| 761 |
msgid "Donate $10, $20 or $50!"
|
| 762 |
msgstr "捐赠$10、$20或$50!"
|
| 763 |
|
| 764 |
-
#: includes/admin/sidebar.php:
|
| 765 |
msgid "If you like this plugin, please donate to support development and maintenance!"
|
| 766 |
msgstr "如果你喜欢本插件,请捐款支持插件的开发与维护!"
|
| 767 |
|
| 768 |
-
#: includes/admin/sidebar.php:
|
| 769 |
msgid "Return to WordPress Dashboard"
|
| 770 |
msgstr "返回到WordPress仪表盘"
|
| 771 |
|
|
@@ -1013,47 +1040,47 @@ msgstr "无需更新"
|
|
| 1013 |
msgid "Updating post %d failed"
|
| 1014 |
msgstr "更新文章%d失败"
|
| 1015 |
|
| 1016 |
-
#: includes/any-post.php:
|
| 1017 |
#: modules/containers/custom_field.php:284
|
| 1018 |
msgid "Failed to delete post \"%s\" (%d)"
|
| 1019 |
msgstr "删除文章《%s》(%d)失败"
|
| 1020 |
|
| 1021 |
-
#: includes/any-post.php:
|
| 1022 |
#: modules/containers/custom_field.php:303
|
| 1023 |
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
| 1024 |
msgstr "由于回收站功能已关闭,无法移动文章《%s》(%d)到回收站。"
|
| 1025 |
|
| 1026 |
-
#: includes/any-post.php:
|
| 1027 |
#: modules/containers/custom_field.php:322
|
| 1028 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
| 1029 |
msgstr "移动文章《%s》(%d)到回收站失败"
|
| 1030 |
|
| 1031 |
-
#: includes/any-post.php:
|
| 1032 |
msgid "%d post deleted."
|
| 1033 |
msgid_plural "%d posts deleted."
|
| 1034 |
msgstr[0] "已删除%d片文章。"
|
| 1035 |
|
| 1036 |
-
#: includes/any-post.php:
|
| 1037 |
msgid "%d page deleted."
|
| 1038 |
msgid_plural "%d pages deleted."
|
| 1039 |
msgstr[0] "已删除%d个页面。"
|
| 1040 |
|
| 1041 |
-
#: includes/any-post.php:
|
| 1042 |
msgid "%d \"%s\" deleted."
|
| 1043 |
msgid_plural "%d \"%s\" deleted."
|
| 1044 |
msgstr[0] "已删除%d个“%s”。"
|
| 1045 |
|
| 1046 |
-
#: includes/any-post.php:
|
| 1047 |
msgid "%d post moved to the Trash."
|
| 1048 |
msgid_plural "%d posts moved to the Trash."
|
| 1049 |
msgstr[0] "已移动%d片文章到回收站。"
|
| 1050 |
|
| 1051 |
-
#: includes/any-post.php:
|
| 1052 |
msgid "%d page moved to the Trash."
|
| 1053 |
msgid_plural "%d pages moved to the Trash."
|
| 1054 |
msgstr[0] "已移动%d个页面到回收站。"
|
| 1055 |
|
| 1056 |
-
#: includes/any-post.php:
|
| 1057 |
msgid "%d \"%s\" moved to the Trash."
|
| 1058 |
msgid_plural "%d \"%s\" moved to the Trash."
|
| 1059 |
msgstr[0] "已移动%d个“%s”到回收站。"
|
|
@@ -1168,13 +1195,13 @@ msgctxt "module name"
|
|
| 1168 |
msgid "Pages"
|
| 1169 |
msgstr "页面"
|
| 1170 |
|
| 1171 |
-
#: includes/instances.php:
|
| 1172 |
-
#: includes/instances.php:
|
| 1173 |
msgid "Container %s[%d] not found"
|
| 1174 |
msgstr "没有找到%s[%d]容器"
|
| 1175 |
|
| 1176 |
-
#: includes/instances.php:
|
| 1177 |
-
#: includes/instances.php:
|
| 1178 |
msgid "Parser '%s' not found."
|
| 1179 |
msgstr "没有找到%s解析器。"
|
| 1180 |
|
|
@@ -1276,7 +1303,7 @@ msgid "Unknown"
|
|
| 1276 |
msgstr "未知"
|
| 1277 |
|
| 1278 |
#: includes/links.php:852
|
| 1279 |
-
#: modules/checkers/http.php:
|
| 1280 |
#: modules/extras/mediafire.php:101
|
| 1281 |
msgid "Unknown Error"
|
| 1282 |
msgstr "未知错误"
|
|
@@ -1357,33 +1384,33 @@ msgid "%d month ago"
|
|
| 1357 |
msgid_plural "%d months ago"
|
| 1358 |
msgstr[0] "%d月前"
|
| 1359 |
|
| 1360 |
-
#: modules/checkers/http.php:
|
| 1361 |
msgid "Server Not Found"
|
| 1362 |
msgstr "找不到服务器"
|
| 1363 |
|
| 1364 |
-
#: modules/checkers/http.php:
|
| 1365 |
msgid "Connection Failed"
|
| 1366 |
msgstr "建立连接失败"
|
| 1367 |
|
| 1368 |
-
#: modules/checkers/http.php:
|
| 1369 |
-
#: modules/checkers/http.php:
|
| 1370 |
msgid "HTTP code : %d"
|
| 1371 |
msgstr "HTTP代码:%d"
|
| 1372 |
|
| 1373 |
-
#: modules/checkers/http.php:
|
| 1374 |
-
#: modules/checkers/http.php:
|
| 1375 |
msgid "(No response)"
|
| 1376 |
msgstr "(无响应)"
|
| 1377 |
|
| 1378 |
-
#: modules/checkers/http.php:
|
| 1379 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
| 1380 |
msgstr "最大的可能是连接超时或者此域名不存在。"
|
| 1381 |
|
| 1382 |
-
#: modules/checkers/http.php:
|
| 1383 |
msgid "Request timed out."
|
| 1384 |
msgstr "请求超时。"
|
| 1385 |
|
| 1386 |
-
#: modules/checkers/http.php:
|
| 1387 |
msgid "Using Snoopy"
|
| 1388 |
msgstr "使用Snoopy"
|
| 1389 |
|
|
@@ -1494,7 +1521,7 @@ msgstr "DailyMotion视频"
|
|
| 1494 |
msgid "Embedded DailyMotion video"
|
| 1495 |
msgstr "嵌入的DailyMotion视频"
|
| 1496 |
|
| 1497 |
-
#: modules/extras/embed-parser-base.php:
|
| 1498 |
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
| 1499 |
msgstr "无法使用失效链接检查器编辑嵌入的视频,请手动编辑或替换存在问题的视频。"
|
| 1500 |
|
|
@@ -1581,45 +1608,83 @@ msgstr "YouTube视频"
|
|
| 1581 |
msgid "Embedded YouTube video"
|
| 1582 |
msgstr "嵌入的YouTube视频"
|
| 1583 |
|
| 1584 |
-
#: modules/extras/youtube.php:
|
| 1585 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1586 |
msgid "Video Not Found"
|
| 1587 |
msgstr "找不到视频"
|
| 1588 |
|
| 1589 |
-
#: modules/extras/youtube.php:
|
| 1590 |
msgid "Video Removed"
|
| 1591 |
msgstr "视频已被移除"
|
| 1592 |
|
| 1593 |
-
#: modules/extras/youtube.php:
|
| 1594 |
msgid "Invalid Video ID"
|
| 1595 |
msgstr "无效的视频ID"
|
| 1596 |
|
| 1597 |
-
#: modules/extras/youtube.php:
|
| 1598 |
msgid "Video OK"
|
| 1599 |
msgstr "视频正常"
|
| 1600 |
|
| 1601 |
-
#: modules/extras/youtube.php:
|
| 1602 |
-
#: modules/extras/youtube.php:
|
|
|
|
|
|
|
| 1603 |
msgid "OK"
|
| 1604 |
msgstr "正常"
|
| 1605 |
|
| 1606 |
-
#: modules/extras/youtube.php:
|
|
|
|
| 1607 |
msgid "Video status : %s%s"
|
| 1608 |
msgstr "视频状态:%s%s"
|
| 1609 |
|
| 1610 |
-
#: modules/extras/youtube.php:
|
|
|
|
| 1611 |
msgid "Video Restricted"
|
| 1612 |
msgstr "视频受限制"
|
| 1613 |
|
| 1614 |
-
#: modules/extras/youtube.php:
|
|
|
|
| 1615 |
msgid "Unknown YouTube API response received."
|
| 1616 |
msgstr "收到未知的YouTube API响应。"
|
| 1617 |
|
| 1618 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1619 |
msgid "Image"
|
| 1620 |
msgstr "图像"
|
| 1621 |
|
| 1622 |
-
#: modules/parsers/metadata.php:
|
| 1623 |
msgid "Custom field"
|
| 1624 |
msgstr "自定义项目"
|
| 1625 |
|
|
@@ -1636,8 +1701,8 @@ msgid "Janis Elsts"
|
|
| 1636 |
msgstr "Janis Elsts"
|
| 1637 |
|
| 1638 |
#. Author URI of the plugin/theme
|
| 1639 |
-
msgid "http://w-shadow.com/
|
| 1640 |
-
msgstr "http://w-shadow.com/
|
| 1641 |
|
| 1642 |
#~ msgid ""
|
| 1643 |
#~ "Error: The plugin's database tables are not up to date! (Current "
|
| 2 |
msgstr ""
|
| 3 |
"Project-Id-Version: \n"
|
| 4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 5 |
+
"POT-Creation-Date: 2013-06-03 13:55:03+00:00\n"
|
| 6 |
"PO-Revision-Date: \n"
|
| 7 |
"Last-Translator: Kaijia Feng <fengkaijia@gmail.com>\n"
|
| 8 |
"Language-Team: Broken Link Checker <fengkaijia@gmail.com>\n"
|
| 9 |
+
"Language: \n"
|
| 10 |
"MIME-Version: 1.0\n"
|
| 11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 12 |
"Content-Transfer-Encoding: 8bit\n"
|
| 50 |
msgid "Feedback"
|
| 51 |
msgstr "反馈"
|
| 52 |
|
| 53 |
+
#: core/core.php:337
|
| 54 |
msgid "Go to Broken Links"
|
| 55 |
msgstr "查看失效链接"
|
| 56 |
|
| 57 |
+
#: core/core.php:366
|
| 58 |
msgid "Settings"
|
| 59 |
msgstr "设置"
|
| 60 |
|
| 61 |
+
#: core/core.php:533
|
| 62 |
msgid "Settings saved."
|
| 63 |
msgstr "设置已保存。"
|
| 64 |
|
| 65 |
+
#: core/core.php:539
|
| 66 |
msgid "Thank you for your donation!"
|
| 67 |
msgstr "感谢您的捐赠!"
|
| 68 |
|
| 69 |
+
#: core/core.php:547
|
| 70 |
msgid "Complete site recheck started."
|
| 71 |
msgstr "站点完整重新检查开始。"
|
| 72 |
|
| 73 |
+
#: core/core.php:556
|
| 74 |
msgid "Details"
|
| 75 |
msgstr "详情"
|
| 76 |
|
| 77 |
+
#: core/core.php:570
|
| 78 |
msgid "General"
|
| 79 |
msgstr "常规"
|
| 80 |
|
| 81 |
+
#: core/core.php:571
|
| 82 |
msgid "Look For Links In"
|
| 83 |
msgstr "检查范围"
|
| 84 |
|
| 85 |
+
#: core/core.php:572
|
| 86 |
msgid "Which Links To Check"
|
| 87 |
msgstr "检查类型"
|
| 88 |
|
| 89 |
+
#: core/core.php:573
|
| 90 |
msgid "Protocols & APIs"
|
| 91 |
msgstr "协议和API"
|
| 92 |
|
| 93 |
+
#: core/core.php:574
|
| 94 |
msgid "Advanced"
|
| 95 |
msgstr "高级"
|
| 96 |
|
| 97 |
+
#: core/core.php:589
|
| 98 |
msgid "Broken Link Checker Options"
|
| 99 |
msgstr "链接检查器选项"
|
| 100 |
|
| 101 |
+
#: core/core.php:631
|
| 102 |
#: includes/admin/table-printer.php:197
|
| 103 |
msgid "Status"
|
| 104 |
msgstr "状态"
|
| 105 |
|
| 106 |
+
#: core/core.php:633
|
| 107 |
#: includes/admin/options-page-js.php:56
|
| 108 |
msgid "Show debug info"
|
| 109 |
msgstr "显示调试信息"
|
| 110 |
|
| 111 |
+
#: core/core.php:661
|
| 112 |
msgid "Check each link"
|
| 113 |
msgstr "检查每个链接"
|
| 114 |
|
| 115 |
+
#: core/core.php:666
|
| 116 |
msgid "Every %s hours"
|
| 117 |
msgstr "每 %s 小时"
|
| 118 |
|
| 119 |
+
#: core/core.php:675
|
| 120 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
| 121 |
msgstr "将以此频率检测所有链接,将立即检测新增链接。"
|
| 122 |
|
| 123 |
+
#: core/core.php:682
|
| 124 |
msgid "E-mail notifications"
|
| 125 |
+
msgstr "电子邮件通知"
|
| 126 |
|
| 127 |
+
#: core/core.php:688
|
| 128 |
msgid "Send me e-mail notifications about newly detected broken links"
|
| 129 |
+
msgstr "当检测到新失效链接时向我发送电子邮件通知"
|
| 130 |
|
| 131 |
+
#: core/core.php:696
|
| 132 |
msgid "Send authors e-mail notifications about broken links in their posts"
|
| 133 |
+
msgstr "当检测到新失效链接时向作者发送电子邮件通知"
|
| 134 |
|
| 135 |
+
#: core/core.php:703
|
| 136 |
+
msgid "Notification e-mail address"
|
| 137 |
+
msgstr "接收通知的电子邮件地址"
|
| 138 |
+
|
| 139 |
+
#: core/core.php:715
|
| 140 |
+
msgid "Leave empty to use the e-mail address specified in Settings → General."
|
| 141 |
+
msgstr "留空以使用 设置 → 常规 中指定的电子邮件地址。"
|
| 142 |
+
|
| 143 |
+
#: core/core.php:722
|
| 144 |
msgid "Link tweaks"
|
| 145 |
msgstr "链接调整"
|
| 146 |
|
| 147 |
+
#: core/core.php:728
|
| 148 |
msgid "Apply custom formatting to broken links"
|
| 149 |
msgstr "将自定义样式应用到失效链接"
|
| 150 |
|
| 151 |
+
#: core/core.php:732
|
| 152 |
+
#: core/core.php:763
|
| 153 |
msgid "Edit CSS"
|
| 154 |
msgstr "编辑样式"
|
| 155 |
|
| 156 |
+
#: core/core.php:748
|
| 157 |
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
| 158 |
msgstr "示例:Lorem ipsum <a %s>失效链接</a>, dolor sit amet."
|
| 159 |
|
| 160 |
+
#: core/core.php:751
|
| 161 |
+
#: core/core.php:782
|
| 162 |
msgid "Click \"Save Changes\" to update example output."
|
| 163 |
msgstr "单击“保持变更”更新输出示例。"
|
| 164 |
|
| 165 |
+
#: core/core.php:759
|
| 166 |
msgid "Apply custom formatting to removed links"
|
| 167 |
msgstr "对已经移除的链接应用自定义格式"
|
| 168 |
|
| 169 |
+
#: core/core.php:779
|
| 170 |
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
| 171 |
msgstr "示例:Lorem ipsum <span %s>失效链接</span>, dolor sit amet."
|
| 172 |
|
| 173 |
+
#: core/core.php:792
|
| 174 |
msgid "Stop search engines from following broken links"
|
| 175 |
msgstr "要求搜索引擎不跟踪已经失效的链接"
|
| 176 |
|
| 177 |
+
#: core/core.php:809
|
| 178 |
msgid "Look for links in"
|
| 179 |
msgstr "检查以下范围的链接"
|
| 180 |
|
| 181 |
+
#: core/core.php:820
|
| 182 |
msgid "Post statuses"
|
| 183 |
msgstr "发布状态"
|
| 184 |
|
| 185 |
+
#: core/core.php:853
|
| 186 |
msgid "Link types"
|
| 187 |
msgstr "链接类型"
|
| 188 |
|
| 189 |
+
#: core/core.php:859
|
| 190 |
msgid "Error : All link parsers missing!"
|
| 191 |
msgstr "错误:无法找到链接解析器!"
|
| 192 |
|
| 193 |
+
#: core/core.php:866
|
| 194 |
msgid "Exclusion list"
|
| 195 |
msgstr "排除列表"
|
| 196 |
|
| 197 |
+
#: core/core.php:867
|
| 198 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
| 199 |
msgstr "不检测含有以下关键字的链接(每个关键字一行):"
|
| 200 |
|
| 201 |
+
#: core/core.php:885
|
| 202 |
msgid "Check links using"
|
| 203 |
msgstr "检查链接"
|
| 204 |
|
| 205 |
+
#: core/core.php:904
|
| 206 |
#: includes/links.php:856
|
| 207 |
msgid "Timeout"
|
| 208 |
msgstr "超时"
|
| 209 |
|
| 210 |
+
#: core/core.php:910
|
| 211 |
+
#: core/core.php:979
|
| 212 |
+
#: core/core.php:2823
|
| 213 |
msgid "%s seconds"
|
| 214 |
msgstr "%s 秒"
|
| 215 |
|
| 216 |
+
#: core/core.php:919
|
| 217 |
msgid "Links that take longer than this to load will be marked as broken."
|
| 218 |
msgstr "检测时若链接在此时间内未响应将被视为失效。"
|
| 219 |
|
| 220 |
+
#: core/core.php:926
|
| 221 |
msgid "Link monitor"
|
| 222 |
msgstr "链接监视器"
|
| 223 |
|
| 224 |
+
#: core/core.php:934
|
| 225 |
msgid "Run continuously while the Dashboard is open"
|
| 226 |
msgstr "在仪表盘打开时持续运行"
|
| 227 |
|
| 228 |
+
#: core/core.php:942
|
| 229 |
msgid "Run hourly in the background"
|
| 230 |
msgstr "在后台每小时运行一次"
|
| 231 |
|
| 232 |
+
#: core/core.php:950
|
| 233 |
+
msgid "Show the dashboard widget for"
|
| 234 |
+
msgstr "为以下用户显示仪表盘部件"
|
| 235 |
+
|
| 236 |
+
#: core/core.php:955
|
| 237 |
+
msgctxt "dashboard widget visibility"
|
| 238 |
+
msgid "Administrator"
|
| 239 |
+
msgstr "管理员"
|
| 240 |
+
|
| 241 |
+
#: core/core.php:956
|
| 242 |
+
msgctxt "dashboard widget visibility"
|
| 243 |
+
msgid "Editor and above"
|
| 244 |
+
msgstr "编辑及以上"
|
| 245 |
+
|
| 246 |
+
#: core/core.php:957
|
| 247 |
+
msgctxt "dashboard widget visibility"
|
| 248 |
+
msgid "Nobody (disables the widget)"
|
| 249 |
+
msgstr "没有人(禁用此小部件)"
|
| 250 |
+
|
| 251 |
+
#: core/core.php:973
|
| 252 |
msgid "Max. execution time"
|
| 253 |
msgstr "最大执行时间"
|
| 254 |
|
| 255 |
+
#: core/core.php:990
|
| 256 |
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."
|
| 257 |
msgstr "插件通过定期在后台创建一个实例来解析你的文章以搜索链接,检查找到的链接并执行一些其他耗时的任务。在这里你可以设置后台实例每次最多可以运行多长时间,通常情况下,链接监视会在每次会话结束前完成。"
|
| 258 |
|
| 259 |
+
#: core/core.php:999
|
| 260 |
msgid "Server load limit"
|
| 261 |
msgstr "服务器负载限制"
|
| 262 |
|
| 263 |
+
#: core/core.php:1014
|
| 264 |
msgid "Current load : %s"
|
| 265 |
msgstr "当前负载:%s"
|
| 266 |
|
| 267 |
+
#: core/core.php:1019
|
| 268 |
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."
|
| 269 |
msgstr "当平均<a href=\"%s\">服务器负载</a>超过此值时,链接检查将会暂停。留空此栏以关闭负载限制。"
|
| 270 |
|
| 271 |
+
#: core/core.php:1028
|
| 272 |
msgid "Not available"
|
| 273 |
msgstr "不可用"
|
| 274 |
|
| 275 |
+
#: core/core.php:1030
|
| 276 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
| 277 |
msgstr "负载限制仅适用于开启<code>/proc/loadavg</code>并且可读取的类Linux操作系统。"
|
| 278 |
|
| 279 |
+
#: core/core.php:1038
|
| 280 |
msgid "Forced recheck"
|
| 281 |
msgstr "强制重新检查"
|
| 282 |
|
| 283 |
+
#: core/core.php:1041
|
| 284 |
msgid "Re-check all pages"
|
| 285 |
msgstr "重新检查所有页面"
|
| 286 |
|
| 287 |
+
#: core/core.php:1045
|
| 288 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
| 289 |
msgstr "注意这是“强破坏性选项”。单击此按钮以清空链接数据库并重新检查站点上的所有链接。"
|
| 290 |
|
| 291 |
+
#: core/core.php:1056
|
| 292 |
msgid "Save Changes"
|
| 293 |
msgstr "保存更改"
|
| 294 |
|
| 295 |
+
#: core/core.php:1107
|
| 296 |
msgid "Configure"
|
| 297 |
msgstr "配置"
|
| 298 |
|
| 299 |
+
#: core/core.php:1189
|
| 300 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
| 301 |
msgstr "检测输入到此自定义栏目中的链接(每个链接一行):"
|
| 302 |
|
| 303 |
+
#: core/core.php:1317
|
| 304 |
+
#: core/core.php:1399
|
| 305 |
+
#: core/core.php:1431
|
| 306 |
msgid "Database error : %s"
|
| 307 |
msgstr "数据库错误:%s"
|
| 308 |
|
| 309 |
+
#: core/core.php:1381
|
| 310 |
msgid "You must enter a filter name!"
|
| 311 |
msgstr "你需要输入一个过滤器名称!"
|
| 312 |
|
| 313 |
+
#: core/core.php:1385
|
| 314 |
msgid "Invalid search query."
|
| 315 |
msgstr "无效的查询。"
|
| 316 |
|
| 317 |
+
#: core/core.php:1394
|
| 318 |
msgid "Filter \"%s\" created"
|
| 319 |
msgstr "已创建“%s”过滤器"
|
| 320 |
|
| 321 |
+
#: core/core.php:1421
|
| 322 |
msgid "Filter ID not specified."
|
| 323 |
msgstr "过滤器ID未指定。"
|
| 324 |
|
| 325 |
+
#: core/core.php:1428
|
| 326 |
msgid "Filter deleted"
|
| 327 |
msgstr "已删除过滤器"
|
| 328 |
|
| 329 |
+
#: core/core.php:1475
|
| 330 |
msgid "Replaced %d redirect with a direct link"
|
| 331 |
msgid_plural "Replaced %d redirects with direct links"
|
| 332 |
msgstr[0] "已使用直接链接替换了%d个重定向"
|
| 333 |
|
| 334 |
+
#: core/core.php:1486
|
| 335 |
msgid "Failed to fix %d redirect"
|
| 336 |
msgid_plural "Failed to fix %d redirects"
|
| 337 |
msgstr[0] "修复%d个重定向失败"
|
| 338 |
|
| 339 |
+
#: core/core.php:1497
|
| 340 |
msgid "None of the selected links are redirects!"
|
| 341 |
msgstr "选中的链接均不是重定向链接!"
|
| 342 |
|
| 343 |
+
#: core/core.php:1575
|
| 344 |
msgid "%d link updated."
|
| 345 |
msgid_plural "%d links updated."
|
| 346 |
msgstr[0] "%d个链接已更新。"
|
| 347 |
|
| 348 |
+
#: core/core.php:1586
|
| 349 |
msgid "Failed to update %d link."
|
| 350 |
msgid_plural "Failed to update %d links."
|
| 351 |
msgstr[0] "更新%d个链接失败。"
|
| 352 |
|
| 353 |
+
#: core/core.php:1640
|
| 354 |
msgid "%d link removed"
|
| 355 |
msgid_plural "%d links removed"
|
| 356 |
msgstr[0] "已移除%d个链接"
|
| 357 |
|
| 358 |
+
#: core/core.php:1651
|
| 359 |
msgid "Failed to remove %d link"
|
| 360 |
msgid_plural "Failed to remove %d links"
|
| 361 |
msgstr[0] "移除%d个链接失败"
|
| 362 |
|
| 363 |
+
#: core/core.php:1760
|
| 364 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
| 365 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
| 366 |
msgstr[0] "%d个项目由于无法移动到回收站而被忽略,你需要手动删除这些项目。"
|
| 367 |
|
| 368 |
+
#: core/core.php:1782
|
| 369 |
msgid "Didn't find anything to delete!"
|
| 370 |
msgstr "没有任何需要删除的内容!"
|
| 371 |
|
| 372 |
+
#: core/core.php:1810
|
| 373 |
msgid "%d link scheduled for rechecking"
|
| 374 |
msgid_plural "%d links scheduled for rechecking"
|
| 375 |
msgstr[0] "已计划重新检查%d个链接"
|
| 376 |
|
| 377 |
+
#: core/core.php:1856
|
| 378 |
+
#: core/core.php:2465
|
| 379 |
msgid "This link was manually marked as working by the user."
|
| 380 |
msgstr "此链接被用户标记为有效。"
|
| 381 |
|
| 382 |
+
#: core/core.php:1863
|
| 383 |
msgid "Couldn't modify link %d"
|
| 384 |
msgstr "无法修改链接%d"
|
| 385 |
|
| 386 |
+
#: core/core.php:1873
|
| 387 |
msgid "%d link marked as not broken"
|
| 388 |
msgid_plural "%d links marked as not broken"
|
| 389 |
msgstr[0] "%d个链接被标记为未损坏"
|
| 390 |
|
| 391 |
+
#: core/core.php:1913
|
| 392 |
msgid "Table columns"
|
| 393 |
msgstr "表格栏目"
|
| 394 |
|
| 395 |
+
#: core/core.php:1932
|
| 396 |
msgid "Show on screen"
|
| 397 |
msgstr "在屏幕上显示"
|
| 398 |
|
| 399 |
+
#: core/core.php:1939
|
| 400 |
msgid "links"
|
| 401 |
msgstr "链接"
|
| 402 |
|
| 403 |
+
#: core/core.php:1940
|
| 404 |
#: includes/admin/table-printer.php:165
|
| 405 |
msgid "Apply"
|
| 406 |
msgstr "应用"
|
| 407 |
|
| 408 |
+
#: core/core.php:1944
|
| 409 |
msgid "Misc"
|
| 410 |
msgstr "杂项"
|
| 411 |
|
| 412 |
+
#: core/core.php:1959
|
| 413 |
msgid "Highlight links broken for at least %s days"
|
| 414 |
msgstr "高亮显示至少已经失效%s天的链接"
|
| 415 |
|
| 416 |
+
#: core/core.php:1968
|
| 417 |
msgid "Color-code status codes"
|
| 418 |
msgstr "色彩标记状态码"
|
| 419 |
|
| 420 |
+
#: core/core.php:1985
|
| 421 |
+
#: core/core.php:2450
|
| 422 |
+
#: core/core.php:2490
|
| 423 |
+
#: core/core.php:2523
|
| 424 |
+
#: core/core.php:2586
|
| 425 |
msgid "You're not allowed to do that!"
|
| 426 |
msgstr "您无权限执行此操作!"
|
| 427 |
|
| 428 |
+
#: core/core.php:2320
|
| 429 |
msgid "View broken links"
|
| 430 |
msgstr "查看失效链接"
|
| 431 |
|
| 432 |
+
#: core/core.php:2321
|
| 433 |
msgid "Found %d broken link"
|
| 434 |
msgid_plural "Found %d broken links"
|
| 435 |
msgstr[0] "已找到%d条失效链接"
|
| 436 |
|
| 437 |
+
#: core/core.php:2327
|
| 438 |
msgid "No broken links found."
|
| 439 |
msgstr "未找到失效链接。"
|
| 440 |
|
| 441 |
+
#: core/core.php:2334
|
| 442 |
msgid "%d URL in the work queue"
|
| 443 |
msgid_plural "%d URLs in the work queue"
|
| 444 |
msgstr[0] "执行队列中还有%d条网址"
|
| 445 |
|
| 446 |
+
#: core/core.php:2337
|
| 447 |
msgid "No URLs in the work queue."
|
| 448 |
msgstr "执行队列中无网址。"
|
| 449 |
|
| 450 |
+
#: core/core.php:2343
|
| 451 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 452 |
msgid "%d unique URL"
|
| 453 |
msgid_plural "%d unique URLs"
|
| 454 |
msgstr[0] "%d个唯一网址"
|
| 455 |
|
| 456 |
+
#: core/core.php:2347
|
| 457 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 458 |
msgid "%d link"
|
| 459 |
msgid_plural "%d links"
|
| 460 |
msgstr[0] "%d个链接"
|
| 461 |
|
| 462 |
+
#: core/core.php:2353
|
| 463 |
msgid "Detected %1$s in %2$s and still searching..."
|
| 464 |
msgstr "在%2$s中发现%1$s,还在继续搜索……"
|
| 465 |
|
| 466 |
+
#: core/core.php:2359
|
| 467 |
msgid "Detected %1$s in %2$s."
|
| 468 |
msgstr "在%2$s中发现%1$s。"
|
| 469 |
|
| 470 |
+
#: core/core.php:2366
|
| 471 |
msgid "Searching your blog for links..."
|
| 472 |
msgstr "正在您的博客中搜索链接……"
|
| 473 |
|
| 474 |
+
#: core/core.php:2368
|
| 475 |
msgid "No links detected."
|
| 476 |
msgstr "没有发现链接。"
|
| 477 |
|
| 478 |
+
#: core/core.php:2394
|
| 479 |
msgctxt "current load"
|
| 480 |
msgid "Unknown"
|
| 481 |
msgstr "未知"
|
| 482 |
|
| 483 |
+
#: core/core.php:2458
|
| 484 |
+
#: core/core.php:2498
|
| 485 |
+
#: core/core.php:2533
|
| 486 |
+
#: core/core.php:2596
|
| 487 |
msgid "Oops, I can't find the link %d"
|
| 488 |
msgstr "啊哦,我找不到%d号链接"
|
| 489 |
|
| 490 |
+
#: core/core.php:2471
|
| 491 |
+
#: core/core.php:2508
|
| 492 |
msgid "Oops, couldn't modify the link!"
|
| 493 |
msgstr "啊哦,无法修改此链接!"
|
| 494 |
|
| 495 |
+
#: core/core.php:2474
|
| 496 |
+
#: core/core.php:2511
|
| 497 |
+
#: core/core.php:2622
|
| 498 |
msgid "Error : link_id not specified"
|
| 499 |
msgstr "错误:未指定link_id"
|
| 500 |
|
| 501 |
+
#: core/core.php:2543
|
| 502 |
msgid "Oops, the new URL is invalid!"
|
| 503 |
msgstr "啊哦,这条新的链接无效!"
|
| 504 |
|
| 505 |
+
#: core/core.php:2554
|
| 506 |
+
#: core/core.php:2605
|
| 507 |
msgid "An unexpected error occured!"
|
| 508 |
msgstr "发生了一个未捕获的异常!"
|
| 509 |
|
| 510 |
+
#: core/core.php:2572
|
| 511 |
msgid "Error : link_id or new_url not specified"
|
| 512 |
msgstr "错误:未指定link_id或者new_url"
|
| 513 |
|
| 514 |
+
#: core/core.php:2631
|
| 515 |
msgid "You don't have sufficient privileges to access this information!"
|
| 516 |
msgstr "您没有足够的权限来访问此信息!"
|
| 517 |
|
| 518 |
+
#: core/core.php:2644
|
| 519 |
msgid "Error : link ID not specified"
|
| 520 |
msgstr "错误:链接ID未指定"
|
| 521 |
|
| 522 |
+
#: core/core.php:2658
|
| 523 |
msgid "Failed to load link details (%s)"
|
| 524 |
msgstr "加载链接(%s)详情失败"
|
| 525 |
|
| 526 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.7.1) #-#-#-#-#
|
| 527 |
#. Plugin Name of the plugin/theme
|
| 528 |
+
#: core/core.php:2712
|
| 529 |
msgid "Broken Link Checker"
|
| 530 |
msgstr "失效链接检查器"
|
| 531 |
|
| 532 |
+
#: core/core.php:2732
|
| 533 |
msgid "PHP version"
|
| 534 |
msgstr "PHP版本"
|
| 535 |
|
| 536 |
+
#: core/core.php:2738
|
| 537 |
msgid "MySQL version"
|
| 538 |
msgstr "MySQL版本"
|
| 539 |
|
| 540 |
+
#: core/core.php:2751
|
| 541 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
| 542 |
msgstr "您的CURL版本过低。重定向检测可能无法正确运行。"
|
| 543 |
|
| 544 |
+
#: core/core.php:2763
|
| 545 |
+
#: core/core.php:2779
|
| 546 |
+
#: core/core.php:2784
|
| 547 |
msgid "Not installed"
|
| 548 |
msgstr "未安装"
|
| 549 |
|
| 550 |
+
#: core/core.php:2766
|
| 551 |
msgid "CURL version"
|
| 552 |
msgstr "CURL版本"
|
| 553 |
|
| 554 |
+
#: core/core.php:2772
|
| 555 |
msgid "Installed"
|
| 556 |
msgstr "已安装"
|
| 557 |
|
| 558 |
+
#: core/core.php:2785
|
| 559 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
| 560 |
msgstr "要让插件正常运行,您必须安装CURL或者Snoopy!"
|
| 561 |
|
| 562 |
+
#: core/core.php:2796
|
| 563 |
msgid "On"
|
| 564 |
msgstr "开启"
|
| 565 |
|
| 566 |
+
#: core/core.php:2797
|
| 567 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
| 568 |
msgstr "在安全模式打开时重定向可能被识别为无效链接。"
|
| 569 |
|
| 570 |
+
#: core/core.php:2802
|
| 571 |
+
#: core/core.php:2816
|
| 572 |
msgid "Off"
|
| 573 |
msgstr "关闭"
|
| 574 |
|
| 575 |
+
#: core/core.php:2810
|
| 576 |
msgid "On ( %s )"
|
| 577 |
msgstr "在(%s)内"
|
| 578 |
|
| 579 |
+
#: core/core.php:2811
|
| 580 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
| 581 |
msgstr "当open_basedir打开时重定向可能被识别为无效链接。"
|
| 582 |
|
| 583 |
+
#: core/core.php:2840
|
| 584 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
| 585 |
msgstr "如果此值为0,你将有可能在重新载入数页后遇到问题。"
|
| 586 |
|
| 587 |
+
#: core/core.php:2935
|
| 588 |
+
#: core/core.php:3033
|
| 589 |
msgid "[%s] Broken links detected"
|
| 590 |
msgstr "[%s] 检测到失效链接"
|
| 591 |
|
| 592 |
+
#: core/core.php:2940
|
| 593 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
| 594 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
| 595 |
msgstr[0] "失效链接检查器在站点上发现了%d个新的失效链接。"
|
| 596 |
|
| 597 |
+
#: core/core.php:2963
|
| 598 |
msgid "Here's a list of the first %d broken links:"
|
| 599 |
msgid_plural "Here's a list of the first %d broken links:"
|
| 600 |
msgstr[0] "以下列表显示了最新的%s个失效链接:"
|
| 601 |
|
| 602 |
+
#: core/core.php:2972
|
| 603 |
msgid "Here's a list of the new broken links: "
|
| 604 |
msgstr "以下列出了新的失效链接:"
|
| 605 |
|
| 606 |
+
#: core/core.php:2981
|
| 607 |
msgid "Link text : %s"
|
| 608 |
msgstr "链接文字:%s"
|
| 609 |
|
| 610 |
+
#: core/core.php:2982
|
| 611 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
| 612 |
msgstr "链接网址:<a href=\"%s\">%s</a>"
|
| 613 |
|
| 614 |
+
#: core/core.php:2983
|
| 615 |
msgid "Source : %s"
|
| 616 |
msgstr "来源:%s"
|
| 617 |
|
| 618 |
+
#: core/core.php:2996
|
| 619 |
msgid "You can see all broken links here:"
|
| 620 |
msgstr "你可以在此处浏览所有的失效链接:"
|
| 621 |
|
| 622 |
+
#: core/core.php:3038
|
| 623 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
| 624 |
msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
|
| 625 |
msgstr[0] "失效链接检查器在你的文章中发现了%d个新的失效链接。"
|
| 626 |
|
| 627 |
+
#: core/init.php:240
|
| 628 |
msgid "Once Weekly"
|
| 629 |
msgstr "每周一次"
|
| 630 |
|
| 631 |
+
#: core/init.php:246
|
| 632 |
msgid "Twice a Month"
|
| 633 |
msgstr "每月两次"
|
| 634 |
|
| 635 |
+
#: core/init.php:322
|
| 636 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
| 637 |
msgstr "失效链接检查器安装失败。请尝试重新激活本插件。"
|
| 638 |
|
| 780 |
msgid "Cancel"
|
| 781 |
msgstr "取消"
|
| 782 |
|
| 783 |
+
#: includes/admin/sidebar.php:24
|
|
|
|
| 784 |
msgid "More plugins by Janis Elsts"
|
| 785 |
msgstr "更多Janis Elsts制作的插件"
|
| 786 |
|
| 787 |
+
#: includes/admin/sidebar.php:47
|
| 788 |
msgid "Donate $10, $20 or $50!"
|
| 789 |
msgstr "捐赠$10、$20或$50!"
|
| 790 |
|
| 791 |
+
#: includes/admin/sidebar.php:50
|
| 792 |
msgid "If you like this plugin, please donate to support development and maintenance!"
|
| 793 |
msgstr "如果你喜欢本插件,请捐款支持插件的开发与维护!"
|
| 794 |
|
| 795 |
+
#: includes/admin/sidebar.php:68
|
| 796 |
msgid "Return to WordPress Dashboard"
|
| 797 |
msgstr "返回到WordPress仪表盘"
|
| 798 |
|
| 1040 |
msgid "Updating post %d failed"
|
| 1041 |
msgstr "更新文章%d失败"
|
| 1042 |
|
| 1043 |
+
#: includes/any-post.php:566
|
| 1044 |
#: modules/containers/custom_field.php:284
|
| 1045 |
msgid "Failed to delete post \"%s\" (%d)"
|
| 1046 |
msgstr "删除文章《%s》(%d)失败"
|
| 1047 |
|
| 1048 |
+
#: includes/any-post.php:585
|
| 1049 |
#: modules/containers/custom_field.php:303
|
| 1050 |
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
| 1051 |
msgstr "由于回收站功能已关闭,无法移动文章《%s》(%d)到回收站。"
|
| 1052 |
|
| 1053 |
+
#: includes/any-post.php:605
|
| 1054 |
#: modules/containers/custom_field.php:322
|
| 1055 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
| 1056 |
msgstr "移动文章《%s》(%d)到回收站失败"
|
| 1057 |
|
| 1058 |
+
#: includes/any-post.php:713
|
| 1059 |
msgid "%d post deleted."
|
| 1060 |
msgid_plural "%d posts deleted."
|
| 1061 |
msgstr[0] "已删除%d片文章。"
|
| 1062 |
|
| 1063 |
+
#: includes/any-post.php:715
|
| 1064 |
msgid "%d page deleted."
|
| 1065 |
msgid_plural "%d pages deleted."
|
| 1066 |
msgstr[0] "已删除%d个页面。"
|
| 1067 |
|
| 1068 |
+
#: includes/any-post.php:717
|
| 1069 |
msgid "%d \"%s\" deleted."
|
| 1070 |
msgid_plural "%d \"%s\" deleted."
|
| 1071 |
msgstr[0] "已删除%d个“%s”。"
|
| 1072 |
|
| 1073 |
+
#: includes/any-post.php:736
|
| 1074 |
msgid "%d post moved to the Trash."
|
| 1075 |
msgid_plural "%d posts moved to the Trash."
|
| 1076 |
msgstr[0] "已移动%d片文章到回收站。"
|
| 1077 |
|
| 1078 |
+
#: includes/any-post.php:738
|
| 1079 |
msgid "%d page moved to the Trash."
|
| 1080 |
msgid_plural "%d pages moved to the Trash."
|
| 1081 |
msgstr[0] "已移动%d个页面到回收站。"
|
| 1082 |
|
| 1083 |
+
#: includes/any-post.php:740
|
| 1084 |
msgid "%d \"%s\" moved to the Trash."
|
| 1085 |
msgid_plural "%d \"%s\" moved to the Trash."
|
| 1086 |
msgstr[0] "已移动%d个“%s”到回收站。"
|
| 1195 |
msgid "Pages"
|
| 1196 |
msgstr "页面"
|
| 1197 |
|
| 1198 |
+
#: includes/instances.php:104
|
| 1199 |
+
#: includes/instances.php:160
|
| 1200 |
msgid "Container %s[%d] not found"
|
| 1201 |
msgstr "没有找到%s[%d]容器"
|
| 1202 |
|
| 1203 |
+
#: includes/instances.php:113
|
| 1204 |
+
#: includes/instances.php:169
|
| 1205 |
msgid "Parser '%s' not found."
|
| 1206 |
msgstr "没有找到%s解析器。"
|
| 1207 |
|
| 1303 |
msgstr "未知"
|
| 1304 |
|
| 1305 |
#: includes/links.php:852
|
| 1306 |
+
#: modules/checkers/http.php:263
|
| 1307 |
#: modules/extras/mediafire.php:101
|
| 1308 |
msgid "Unknown Error"
|
| 1309 |
msgstr "未知错误"
|
| 1384 |
msgid_plural "%d months ago"
|
| 1385 |
msgstr[0] "%d月前"
|
| 1386 |
|
| 1387 |
+
#: modules/checkers/http.php:242
|
| 1388 |
msgid "Server Not Found"
|
| 1389 |
msgstr "找不到服务器"
|
| 1390 |
|
| 1391 |
+
#: modules/checkers/http.php:257
|
| 1392 |
msgid "Connection Failed"
|
| 1393 |
msgstr "建立连接失败"
|
| 1394 |
|
| 1395 |
+
#: modules/checkers/http.php:292
|
| 1396 |
+
#: modules/checkers/http.php:362
|
| 1397 |
msgid "HTTP code : %d"
|
| 1398 |
msgstr "HTTP代码:%d"
|
| 1399 |
|
| 1400 |
+
#: modules/checkers/http.php:294
|
| 1401 |
+
#: modules/checkers/http.php:364
|
| 1402 |
msgid "(No response)"
|
| 1403 |
msgstr "(无响应)"
|
| 1404 |
|
| 1405 |
+
#: modules/checkers/http.php:300
|
| 1406 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
| 1407 |
msgstr "最大的可能是连接超时或者此域名不存在。"
|
| 1408 |
|
| 1409 |
+
#: modules/checkers/http.php:371
|
| 1410 |
msgid "Request timed out."
|
| 1411 |
msgstr "请求超时。"
|
| 1412 |
|
| 1413 |
+
#: modules/checkers/http.php:389
|
| 1414 |
msgid "Using Snoopy"
|
| 1415 |
msgstr "使用Snoopy"
|
| 1416 |
|
| 1521 |
msgid "Embedded DailyMotion video"
|
| 1522 |
msgstr "嵌入的DailyMotion视频"
|
| 1523 |
|
| 1524 |
+
#: modules/extras/embed-parser-base.php:197
|
| 1525 |
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
| 1526 |
msgstr "无法使用失效链接检查器编辑嵌入的视频,请手动编辑或替换存在问题的视频。"
|
| 1527 |
|
| 1608 |
msgid "Embedded YouTube video"
|
| 1609 |
msgstr "嵌入的YouTube视频"
|
| 1610 |
|
| 1611 |
+
#: modules/extras/youtube-playlist-embed.php:24
|
| 1612 |
+
msgid "YouTube Playlist"
|
| 1613 |
+
msgstr "YouTube播放列表"
|
| 1614 |
+
|
| 1615 |
+
#: modules/extras/youtube-playlist-embed.php:25
|
| 1616 |
+
msgid "Embedded YouTube playlist"
|
| 1617 |
+
msgstr "引用的Youtube播放列表"
|
| 1618 |
+
|
| 1619 |
+
#: modules/extras/youtube.php:124
|
| 1620 |
+
#: modules/extras/youtube.php:127
|
| 1621 |
msgid "Video Not Found"
|
| 1622 |
msgstr "找不到视频"
|
| 1623 |
|
| 1624 |
+
#: modules/extras/youtube.php:135
|
| 1625 |
msgid "Video Removed"
|
| 1626 |
msgstr "视频已被移除"
|
| 1627 |
|
| 1628 |
+
#: modules/extras/youtube.php:143
|
| 1629 |
msgid "Invalid Video ID"
|
| 1630 |
msgstr "无效的视频ID"
|
| 1631 |
|
| 1632 |
+
#: modules/extras/youtube.php:155
|
| 1633 |
msgid "Video OK"
|
| 1634 |
msgstr "视频正常"
|
| 1635 |
|
| 1636 |
+
#: modules/extras/youtube.php:156
|
| 1637 |
+
#: modules/extras/youtube.php:177
|
| 1638 |
+
#: modules/extras/youtube.php:249
|
| 1639 |
+
#: modules/extras/youtube.php:289
|
| 1640 |
msgid "OK"
|
| 1641 |
msgstr "正常"
|
| 1642 |
|
| 1643 |
+
#: modules/extras/youtube.php:170
|
| 1644 |
+
#: modules/extras/youtube.php:271
|
| 1645 |
msgid "Video status : %s%s"
|
| 1646 |
msgstr "视频状态:%s%s"
|
| 1647 |
|
| 1648 |
+
#: modules/extras/youtube.php:182
|
| 1649 |
+
#: modules/extras/youtube.php:280
|
| 1650 |
msgid "Video Restricted"
|
| 1651 |
msgstr "视频受限制"
|
| 1652 |
|
| 1653 |
+
#: modules/extras/youtube.php:199
|
| 1654 |
+
#: modules/extras/youtube.php:305
|
| 1655 |
msgid "Unknown YouTube API response received."
|
| 1656 |
msgstr "收到未知的YouTube API响应。"
|
| 1657 |
|
| 1658 |
+
#: modules/extras/youtube.php:217
|
| 1659 |
+
#: modules/extras/youtube.php:220
|
| 1660 |
+
msgid "Playlist Not Found"
|
| 1661 |
+
msgstr "找不到播放列表"
|
| 1662 |
+
|
| 1663 |
+
#: modules/extras/youtube.php:227
|
| 1664 |
+
msgid "Playlist Restricted"
|
| 1665 |
+
msgstr "播放列表受限制"
|
| 1666 |
+
|
| 1667 |
+
#: modules/extras/youtube.php:234
|
| 1668 |
+
msgid "Invalid Playlist"
|
| 1669 |
+
msgstr "无效的播放列表"
|
| 1670 |
+
|
| 1671 |
+
#: modules/extras/youtube.php:248
|
| 1672 |
+
msgid "Playlist OK"
|
| 1673 |
+
msgstr "播放列表正常"
|
| 1674 |
+
|
| 1675 |
+
#: modules/extras/youtube.php:255
|
| 1676 |
+
msgid "This playlist has no entries or all entries have been deleted."
|
| 1677 |
+
msgstr "此播放列表没有条目或者所有的条目已经被删除。"
|
| 1678 |
+
|
| 1679 |
+
#: modules/extras/youtube.php:256
|
| 1680 |
+
msgid "Empty Playlist"
|
| 1681 |
+
msgstr "播放列表为空"
|
| 1682 |
+
|
| 1683 |
+
#: modules/parsers/image.php:164
|
| 1684 |
msgid "Image"
|
| 1685 |
msgstr "图像"
|
| 1686 |
|
| 1687 |
+
#: modules/parsers/metadata.php:118
|
| 1688 |
msgid "Custom field"
|
| 1689 |
msgstr "自定义项目"
|
| 1690 |
|
| 1701 |
msgstr "Janis Elsts"
|
| 1702 |
|
| 1703 |
#. Author URI of the plugin/theme
|
| 1704 |
+
msgid "http://w-shadow.com/"
|
| 1705 |
+
msgstr "http://w-shadow.com/"
|
| 1706 |
|
| 1707 |
#~ msgid ""
|
| 1708 |
#~ "Error: The plugin's database tables are not up to date! (Current "
|
languages/broken-link-checker.pot
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
# This file is distributed under the same license as the Broken Link Checker package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: Broken Link Checker 1.
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 7 |
-
"POT-Creation-Date: 2013-06-
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -527,7 +527,7 @@ msgstr ""
|
|
| 527 |
msgid "Failed to load link details (%s)"
|
| 528 |
msgstr ""
|
| 529 |
|
| 530 |
-
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.
|
| 531 |
#. Plugin Name of the plugin/theme
|
| 532 |
#: core/core.php:2712
|
| 533 |
msgid "Broken Link Checker"
|
|
@@ -1132,61 +1132,71 @@ msgstr ""
|
|
| 1132 |
|
| 1133 |
#: includes/extra-strings.php:10
|
| 1134 |
msgctxt "module name"
|
| 1135 |
-
msgid "Embedded YouTube
|
| 1136 |
msgstr ""
|
| 1137 |
|
| 1138 |
#: includes/extra-strings.php:11
|
| 1139 |
msgctxt "module name"
|
| 1140 |
-
msgid "Embedded YouTube videos
|
| 1141 |
msgstr ""
|
| 1142 |
|
| 1143 |
#: includes/extra-strings.php:12
|
| 1144 |
msgctxt "module name"
|
| 1145 |
-
msgid "
|
| 1146 |
msgstr ""
|
| 1147 |
|
| 1148 |
#: includes/extra-strings.php:13
|
| 1149 |
msgctxt "module name"
|
| 1150 |
-
msgid "
|
| 1151 |
msgstr ""
|
| 1152 |
|
| 1153 |
#: includes/extra-strings.php:14
|
| 1154 |
msgctxt "module name"
|
| 1155 |
-
msgid "HTML
|
| 1156 |
msgstr ""
|
| 1157 |
|
| 1158 |
#: includes/extra-strings.php:15
|
| 1159 |
msgctxt "module name"
|
| 1160 |
-
msgid "
|
| 1161 |
msgstr ""
|
| 1162 |
|
| 1163 |
#: includes/extra-strings.php:16
|
| 1164 |
msgctxt "module name"
|
| 1165 |
-
msgid "
|
| 1166 |
msgstr ""
|
| 1167 |
|
| 1168 |
#: includes/extra-strings.php:17
|
| 1169 |
msgctxt "module name"
|
| 1170 |
-
msgid "
|
| 1171 |
msgstr ""
|
| 1172 |
|
| 1173 |
#: includes/extra-strings.php:18
|
| 1174 |
msgctxt "module name"
|
| 1175 |
-
msgid "
|
| 1176 |
msgstr ""
|
| 1177 |
|
| 1178 |
#: includes/extra-strings.php:19
|
| 1179 |
msgctxt "module name"
|
| 1180 |
-
msgid "
|
| 1181 |
msgstr ""
|
| 1182 |
|
| 1183 |
#: includes/extra-strings.php:20
|
| 1184 |
msgctxt "module name"
|
| 1185 |
-
msgid "
|
| 1186 |
msgstr ""
|
| 1187 |
|
| 1188 |
#: includes/extra-strings.php:21
|
| 1189 |
msgctxt "module name"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1190 |
msgid "Pages"
|
| 1191 |
msgstr ""
|
| 1192 |
|
| 2 |
# This file is distributed under the same license as the Broken Link Checker package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: Broken Link Checker 1.8\n"
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 7 |
+
"POT-Creation-Date: 2013-06-23 07:51:56+00:00\n"
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 527 |
msgid "Failed to load link details (%s)"
|
| 528 |
msgstr ""
|
| 529 |
|
| 530 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.8) #-#-#-#-#
|
| 531 |
#. Plugin Name of the plugin/theme
|
| 532 |
#: core/core.php:2712
|
| 533 |
msgid "Broken Link Checker"
|
| 1132 |
|
| 1133 |
#: includes/extra-strings.php:10
|
| 1134 |
msgctxt "module name"
|
| 1135 |
+
msgid "Embedded YouTube playlists (old embed code)"
|
| 1136 |
msgstr ""
|
| 1137 |
|
| 1138 |
#: includes/extra-strings.php:11
|
| 1139 |
msgctxt "module name"
|
| 1140 |
+
msgid "Embedded YouTube videos"
|
| 1141 |
msgstr ""
|
| 1142 |
|
| 1143 |
#: includes/extra-strings.php:12
|
| 1144 |
msgctxt "module name"
|
| 1145 |
+
msgid "Embedded YouTube videos (old embed code)"
|
| 1146 |
msgstr ""
|
| 1147 |
|
| 1148 |
#: includes/extra-strings.php:13
|
| 1149 |
msgctxt "module name"
|
| 1150 |
+
msgid "FileServe API"
|
| 1151 |
msgstr ""
|
| 1152 |
|
| 1153 |
#: includes/extra-strings.php:14
|
| 1154 |
msgctxt "module name"
|
| 1155 |
+
msgid "HTML images"
|
| 1156 |
msgstr ""
|
| 1157 |
|
| 1158 |
#: includes/extra-strings.php:15
|
| 1159 |
msgctxt "module name"
|
| 1160 |
+
msgid "HTML links"
|
| 1161 |
msgstr ""
|
| 1162 |
|
| 1163 |
#: includes/extra-strings.php:16
|
| 1164 |
msgctxt "module name"
|
| 1165 |
+
msgid "MediaFire API"
|
| 1166 |
msgstr ""
|
| 1167 |
|
| 1168 |
#: includes/extra-strings.php:17
|
| 1169 |
msgctxt "module name"
|
| 1170 |
+
msgid "MegaUpload API"
|
| 1171 |
msgstr ""
|
| 1172 |
|
| 1173 |
#: includes/extra-strings.php:18
|
| 1174 |
msgctxt "module name"
|
| 1175 |
+
msgid "Plaintext URLs"
|
| 1176 |
msgstr ""
|
| 1177 |
|
| 1178 |
#: includes/extra-strings.php:19
|
| 1179 |
msgctxt "module name"
|
| 1180 |
+
msgid "RapidShare API"
|
| 1181 |
msgstr ""
|
| 1182 |
|
| 1183 |
#: includes/extra-strings.php:20
|
| 1184 |
msgctxt "module name"
|
| 1185 |
+
msgid "Smart YouTube httpv:// URLs"
|
| 1186 |
msgstr ""
|
| 1187 |
|
| 1188 |
#: includes/extra-strings.php:21
|
| 1189 |
msgctxt "module name"
|
| 1190 |
+
msgid "YouTube API"
|
| 1191 |
+
msgstr ""
|
| 1192 |
+
|
| 1193 |
+
#: includes/extra-strings.php:22
|
| 1194 |
+
msgctxt "module name"
|
| 1195 |
+
msgid "Posts"
|
| 1196 |
+
msgstr ""
|
| 1197 |
+
|
| 1198 |
+
#: includes/extra-strings.php:23
|
| 1199 |
+
msgctxt "module name"
|
| 1200 |
msgid "Pages"
|
| 1201 |
msgstr ""
|
| 1202 |
|
modules/containers/blogroll.php
CHANGED
|
@@ -17,7 +17,7 @@ class blcBookmark extends blcContainer{
|
|
| 17 |
|
| 18 |
$image = sprintf(
|
| 19 |
'<img src="%1$s" class="blc-small-image" title="%2$s" alt="%2$s">',
|
| 20 |
-
esc_attr( plugins_url('/images/link.png', BLC_PLUGIN_FILE) ),
|
| 21 |
__('Bookmark', 'broken-link-checker')
|
| 22 |
);
|
| 23 |
|
| 17 |
|
| 18 |
$image = sprintf(
|
| 19 |
'<img src="%1$s" class="blc-small-image" title="%2$s" alt="%2$s">',
|
| 20 |
+
esc_attr( plugins_url('/images/font-awesome/font-awesome-link.png', BLC_PLUGIN_FILE) ),
|
| 21 |
__('Bookmark', 'broken-link-checker')
|
| 22 |
);
|
| 23 |
|
modules/containers/comment.php
CHANGED
|
@@ -171,9 +171,9 @@ class blcComment extends blcContainer{
|
|
| 171 |
function ui_get_source($container_field = '', $context = 'display'){
|
| 172 |
//Display a comment icon.
|
| 173 |
if ( $container_field == 'comment_author_url' ){
|
| 174 |
-
$image = '
|
| 175 |
} else {
|
| 176 |
-
$image = 'comment.png';
|
| 177 |
}
|
| 178 |
|
| 179 |
$image = sprintf(
|
| 171 |
function ui_get_source($container_field = '', $context = 'display'){
|
| 172 |
//Display a comment icon.
|
| 173 |
if ( $container_field == 'comment_author_url' ){
|
| 174 |
+
$image = 'font-awesome/font-awesome-user.png';
|
| 175 |
} else {
|
| 176 |
+
$image = 'font-awesome/font-awesome-comment-alt.png';
|
| 177 |
}
|
| 178 |
|
| 179 |
$image = sprintf(
|
modules/containers/custom_field.php
CHANGED
|
@@ -155,7 +155,7 @@ class blcPostMeta extends blcContainer {
|
|
| 155 |
}
|
| 156 |
|
| 157 |
//Update the field with the new value returned by the parser.
|
| 158 |
-
//Notice how $old_raw_url is
|
| 159 |
//value of the metadata field (see blcMetadataParser::parse()) and thus can be used to
|
| 160 |
//differentiate between multiple meta fields with identical names.
|
| 161 |
$update_result = $this->update_field( $field_name, $edit_result['content'], $old_raw_url );
|
| 155 |
}
|
| 156 |
|
| 157 |
//Update the field with the new value returned by the parser.
|
| 158 |
+
//Notice how $old_raw_url is used instead of $old_value. $old_raw_url contains the entire old
|
| 159 |
//value of the metadata field (see blcMetadataParser::parse()) and thus can be used to
|
| 160 |
//differentiate between multiple meta fields with identical names.
|
| 161 |
$update_result = $this->update_field( $field_name, $edit_result['content'], $old_raw_url );
|
modules/parsers/image.php
CHANGED
|
@@ -165,7 +165,7 @@ class blcHTMLImage extends blcParser {
|
|
| 165 |
|
| 166 |
$image = sprintf(
|
| 167 |
'<img src="%s" class="blc-small-image" alt="%2$s" title="%2$s"> ',
|
| 168 |
-
esc_attr(plugins_url('/images/
|
| 169 |
esc_attr($text)
|
| 170 |
);
|
| 171 |
|
| 165 |
|
| 166 |
$image = sprintf(
|
| 167 |
'<img src="%s" class="blc-small-image" alt="%2$s" title="%2$s"> ',
|
| 168 |
+
esc_attr(plugins_url('/images/font-awesome/font-awesome-picture.png', BLC_PLUGIN_FILE)),
|
| 169 |
esc_attr($text)
|
| 170 |
);
|
| 171 |
|
modules/parsers/metadata.php
CHANGED
|
@@ -114,7 +114,7 @@ class blcMetadataParser extends blcParser {
|
|
| 114 |
function ui_get_link_text($instance, $context = 'display'){
|
| 115 |
$image_html = sprintf(
|
| 116 |
'<img src="%s" class="blc-small-image" title="%2$s" alt="%2$s"> ',
|
| 117 |
-
esc_attr( plugins_url('/images/
|
| 118 |
__('Custom field', 'broken-link-checker')
|
| 119 |
);
|
| 120 |
|
| 114 |
function ui_get_link_text($instance, $context = 'display'){
|
| 115 |
$image_html = sprintf(
|
| 116 |
'<img src="%s" class="blc-small-image" title="%2$s" alt="%2$s"> ',
|
| 117 |
+
esc_attr( plugins_url('/images/font-awesome/font-awesome-code.png', BLC_PLUGIN_FILE) ),
|
| 118 |
__('Custom field', 'broken-link-checker')
|
| 119 |
);
|
| 120 |
|
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: whiteshadow
|
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
| 4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
| 5 |
Requires at least: 3.2
|
| 6 |
-
Tested up to: 3.5.
|
| 7 |
-
Stable tag: 1.8
|
| 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 |
|
|
@@ -73,7 +73,7 @@ You can also click on the contents of the "Status" or "Link Text" columns to get
|
|
| 73 |
|
| 74 |
**Other Credits**
|
| 75 |
|
| 76 |
-
This plugin uses
|
| 77 |
|
| 78 |
== Installation ==
|
| 79 |
|
|
@@ -94,6 +94,13 @@ To upgrade your installation
|
|
| 94 |
|
| 95 |
== Changelog ==
|
| 96 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
= 1.8 =
|
| 98 |
* Added an option to only show the dashboard widget for users with the Administrator role, or to disable it completely.
|
| 99 |
* Added a way to change the notification email address.
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
| 4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
| 5 |
Requires at least: 3.2
|
| 6 |
+
Tested up to: 3.5.2
|
| 7 |
+
Stable tag: 1.8.1
|
| 8 |
|
| 9 |
This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
|
| 10 |
|
| 73 |
|
| 74 |
**Other Credits**
|
| 75 |
|
| 76 |
+
This plugin uses some icons from the [Font Awesome icon font](http://fortawesome.github.io/Font-Awesome/). Font Awesome is licensed under SIL OFL 1.1.
|
| 77 |
|
| 78 |
== Installation ==
|
| 79 |
|
| 94 |
|
| 95 |
== Changelog ==
|
| 96 |
|
| 97 |
+
= 1.8.1 =
|
| 98 |
+
* Updated the Polish and Simplified Chinese translations.
|
| 99 |
+
* Updated the German translation.
|
| 100 |
+
* Added translation strings for two modules that were missing them.
|
| 101 |
+
* Replaced a number of icons with GPL-compatible alternatives from Font Awesome.
|
| 102 |
+
* Removed some unused images.
|
| 103 |
+
|
| 104 |
= 1.8 =
|
| 105 |
* Added an option to only show the dashboard widget for users with the Administrator role, or to disable it completely.
|
| 106 |
* Added a way to change the notification email address.
|
