Version Description
- Fixed an XSS vulnerability on the link checker settings page.
- Fixed old YouTube embed code parsing - now it should pick up self-closing embed tags without an
<object>wrapper. - Updated German translation.
- Updated Simplified Chinese translation.
- Link actions will now wrap properly on small screens.
Download this release
Release Info
| Developer | whiteshadow |
| Plugin | |
| Version | 1.10.2 |
| Comparing to | |
| See all releases | |
Code changes from version 1.10.1 to 1.10.2
- broken-link-checker.php +1 -1
- core/core.php +5 -5
- css/links-page.css +5 -0
- languages/broken-link-checker-de_DE.mo +0 -0
- languages/broken-link-checker-de_DE.po +447 -349
- languages/broken-link-checker-zh_CN.mo +0 -0
- languages/broken-link-checker-zh_CN.po +627 -575
- modules/extras/embed-parser-base.php +1 -1
- readme.txt +11 -1
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.10.
|
| 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.10.2
|
| 7 |
Author: Janis Elsts
|
| 8 |
Author URI: http://w-shadow.com/
|
| 9 |
Text Domain: broken-link-checker
|
core/core.php
CHANGED
|
@@ -463,10 +463,10 @@ class wsBrokenLinkChecker {
|
|
| 463 |
|
| 464 |
$this->conf->options['suggestions_enabled'] = !empty($_POST['suggestions_enabled']);
|
| 465 |
|
| 466 |
-
$this->conf->options['exclusion_list'] = array_filter(
|
| 467 |
preg_split(
|
| 468 |
'/[\s\r\n]+/', //split on newlines and whitespace
|
| 469 |
-
$
|
| 470 |
-1,
|
| 471 |
PREG_SPLIT_NO_EMPTY //skip empty values
|
| 472 |
)
|
|
@@ -474,7 +474,7 @@ class wsBrokenLinkChecker {
|
|
| 474 |
|
| 475 |
//Parse the custom field list
|
| 476 |
$new_custom_fields = array_filter(
|
| 477 |
-
preg_split( '/[\r\n]+/', $
|
| 478 |
);
|
| 479 |
|
| 480 |
//Calculate the difference between the old custom field list and the new one (used later)
|
|
@@ -993,7 +993,7 @@ class wsBrokenLinkChecker {
|
|
| 993 |
<td><?php _e("Don't check links where the URL contains any of these words (one per line) :", 'broken-link-checker'); ?><br/>
|
| 994 |
<textarea name="exclusion_list" id="exclusion_list" cols='45' rows='4'><?php
|
| 995 |
if( isset($this->conf->options['exclusion_list']) )
|
| 996 |
-
echo implode("\n", $this->conf->options['exclusion_list']);
|
| 997 |
?></textarea>
|
| 998 |
|
| 999 |
</td>
|
|
@@ -1403,7 +1403,7 @@ class wsBrokenLinkChecker {
|
|
| 1403 |
'</span>';
|
| 1404 |
$html .= '<br><textarea name="blc_custom_fields" id="blc_custom_fields" cols="45" rows="4">';
|
| 1405 |
if( isset($current_settings['custom_fields']) )
|
| 1406 |
-
$html .= implode("\n", $current_settings['custom_fields']);
|
| 1407 |
$html .= '</textarea>';
|
| 1408 |
|
| 1409 |
return $html;
|
| 463 |
|
| 464 |
$this->conf->options['suggestions_enabled'] = !empty($_POST['suggestions_enabled']);
|
| 465 |
|
| 466 |
+
$this->conf->options['exclusion_list'] = array_filter(
|
| 467 |
preg_split(
|
| 468 |
'/[\s\r\n]+/', //split on newlines and whitespace
|
| 469 |
+
$cleanPost['exclusion_list'],
|
| 470 |
-1,
|
| 471 |
PREG_SPLIT_NO_EMPTY //skip empty values
|
| 472 |
)
|
| 474 |
|
| 475 |
//Parse the custom field list
|
| 476 |
$new_custom_fields = array_filter(
|
| 477 |
+
preg_split( '/[\r\n]+/', $cleanPost['blc_custom_fields'], -1, PREG_SPLIT_NO_EMPTY )
|
| 478 |
);
|
| 479 |
|
| 480 |
//Calculate the difference between the old custom field list and the new one (used later)
|
| 993 |
<td><?php _e("Don't check links where the URL contains any of these words (one per line) :", 'broken-link-checker'); ?><br/>
|
| 994 |
<textarea name="exclusion_list" id="exclusion_list" cols='45' rows='4'><?php
|
| 995 |
if( isset($this->conf->options['exclusion_list']) )
|
| 996 |
+
echo esc_textarea(implode("\n", $this->conf->options['exclusion_list']));
|
| 997 |
?></textarea>
|
| 998 |
|
| 999 |
</td>
|
| 1403 |
'</span>';
|
| 1404 |
$html .= '<br><textarea name="blc_custom_fields" id="blc_custom_fields" cols="45" rows="4">';
|
| 1405 |
if( isset($current_settings['custom_fields']) )
|
| 1406 |
+
$html .= esc_textarea(implode("\n", $current_settings['custom_fields']));
|
| 1407 |
$html .= '</textarea>';
|
| 1408 |
|
| 1409 |
return $html;
|
css/links-page.css
CHANGED
|
@@ -231,6 +231,11 @@ td.column-new-url { /* The URL never wraps */
|
|
| 231 |
-o-text-overflow: ellipsis;
|
| 232 |
}
|
| 233 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 234 |
.blc-link-editor {
|
| 235 |
font-size: 1em;
|
| 236 |
width: 95%;
|
| 231 |
-o-text-overflow: ellipsis;
|
| 232 |
}
|
| 233 |
|
| 234 |
+
td.column-new-url .row-actions { /* However, the action links below the URL can wrap. */
|
| 235 |
+
word-wrap: normal;
|
| 236 |
+
white-space: normal;
|
| 237 |
+
}
|
| 238 |
+
|
| 239 |
.blc-link-editor {
|
| 240 |
font-size: 1em;
|
| 241 |
width: 95%;
|
languages/broken-link-checker-de_DE.mo
CHANGED
|
Binary file
|
languages/broken-link-checker-de_DE.po
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
-
"Project-Id-Version: Broken Link Checker | V1.
|
| 4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 5 |
-
"POT-Creation-Date: 2014-
|
| 6 |
-
"PO-Revision-Date: 2014-
|
| 7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
| 8 |
"Language-Team: \n"
|
| 9 |
"Language: de_CH\n"
|
|
@@ -16,129 +16,159 @@ msgstr ""
|
|
| 16 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
| 17 |
"X-Textdomain-Support: yes\n"
|
| 18 |
"X-Poedit-Basepath: .\n"
|
| 19 |
-
"X-Generator: Poedit 1.6.
|
| 20 |
"X-Poedit-SearchPath-0: .\n"
|
| 21 |
|
| 22 |
# @ broken-link-checker
|
| 23 |
-
#: core/core.php:
|
| 24 |
msgid "Loading..."
|
| 25 |
msgstr "Wird geladen ..."
|
| 26 |
|
| 27 |
# @ broken-link-checker
|
| 28 |
-
#: core/core.php:
|
| 29 |
msgid "[ Network error ]"
|
| 30 |
msgstr "[ Netzwerk Fehler ]"
|
| 31 |
|
| 32 |
# @ broken-link-checker
|
| 33 |
-
#: core/core.php:
|
| 34 |
msgid "Automatically expand the widget if broken links have been detected"
|
| 35 |
msgstr "Vergrössere Widget automatisch wenn fehlerhafte Links gefunden wurden"
|
| 36 |
|
| 37 |
# @ broken-link-checker
|
| 38 |
-
#: core/core.php:
|
| 39 |
msgid "Link Checker Settings"
|
| 40 |
msgstr "Link Checker Einstellungen"
|
| 41 |
|
| 42 |
# @ broken-link-checker
|
| 43 |
-
#: core/core.php:
|
| 44 |
msgid "Link Checker"
|
| 45 |
msgstr "Link Checker"
|
| 46 |
|
| 47 |
# @ broken-link-checker
|
| 48 |
-
#: core/core.php:
|
| 49 |
msgid "Broken Links"
|
| 50 |
msgstr "Fehlerhafte Links"
|
| 51 |
|
| 52 |
# @ broken-link-checker
|
| 53 |
-
#: core/core.php:
|
| 54 |
msgid "View Broken Links"
|
| 55 |
msgstr "Fehlerhafte Links anschauen"
|
| 56 |
|
| 57 |
-
#: core/core.php:
|
| 58 |
msgid "Feedback"
|
| 59 |
msgstr "Feedback"
|
| 60 |
|
| 61 |
# @ broken-link-checker
|
| 62 |
-
#: core/core.php:
|
| 63 |
msgid "Go to Broken Links"
|
| 64 |
msgstr "Gehe zu fehlerhaften Links"
|
| 65 |
|
| 66 |
# @ default
|
| 67 |
-
#: core/core.php:
|
| 68 |
msgid "Settings"
|
| 69 |
msgstr "Einstellungen"
|
| 70 |
|
| 71 |
# @ broken-link-checker
|
| 72 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
msgid "Settings saved."
|
| 74 |
msgstr "Einstellungen gespeichert."
|
| 75 |
|
| 76 |
-
#: core/core.php:
|
| 77 |
msgid "Thank you for your donation!"
|
| 78 |
msgstr "Besten Dank für Ihre Spende!"
|
| 79 |
|
| 80 |
# @ broken-link-checker
|
| 81 |
-
#: core/core.php:
|
| 82 |
msgid "Complete site recheck started."
|
| 83 |
msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
|
| 84 |
|
| 85 |
# @ broken-link-checker
|
| 86 |
-
#: core/core.php:
|
| 87 |
-
msgid "Details"
|
| 88 |
-
msgstr "Details"
|
| 89 |
-
|
| 90 |
-
# @ broken-link-checker
|
| 91 |
-
#: core/core.php:622
|
| 92 |
msgid "General"
|
| 93 |
msgstr "Allgemein"
|
| 94 |
|
| 95 |
# @ broken-link-checker
|
| 96 |
-
#: core/core.php:
|
| 97 |
msgid "Look For Links In"
|
| 98 |
msgstr "Suchen Sie nach Links in"
|
| 99 |
|
| 100 |
# @ broken-link-checker
|
| 101 |
-
#: core/core.php:
|
| 102 |
msgid "Which Links To Check"
|
| 103 |
msgstr "Welche Links überprüfen"
|
| 104 |
|
| 105 |
# @ broken-link-checker
|
| 106 |
-
#: core/core.php:
|
| 107 |
msgid "Protocols & APIs"
|
| 108 |
msgstr "Protokoll & Schnittstellen"
|
| 109 |
|
| 110 |
# @ broken-link-checker
|
| 111 |
-
#: core/core.php:
|
| 112 |
msgid "Advanced"
|
| 113 |
msgstr "Erweitert"
|
| 114 |
|
| 115 |
# @ broken-link-checker
|
| 116 |
-
#: core/core.php:
|
| 117 |
msgid "Broken Link Checker Options"
|
| 118 |
msgstr "Broken Link Checker Optionen"
|
| 119 |
|
| 120 |
# @ broken-link-checker
|
| 121 |
-
#: core/core.php:
|
| 122 |
msgid "Status"
|
| 123 |
msgstr "Status"
|
| 124 |
|
| 125 |
# @ broken-link-checker
|
| 126 |
-
#: core/core.php:
|
| 127 |
msgid "Show debug info"
|
| 128 |
msgstr "Debug Infos anzeigen"
|
| 129 |
|
| 130 |
# @ broken-link-checker
|
| 131 |
-
#: core/core.php:
|
| 132 |
msgid "Check each link"
|
| 133 |
msgstr "Überprüfe jeden Link"
|
| 134 |
|
| 135 |
# @ broken-link-checker
|
| 136 |
-
#: core/core.php:
|
| 137 |
msgid "Every %s hours"
|
| 138 |
msgstr "Alle %s Stunden"
|
| 139 |
|
| 140 |
# @ broken-link-checker
|
| 141 |
-
#: core/core.php:
|
| 142 |
msgid ""
|
| 143 |
"Existing links will be checked this often. New links will usually be checked "
|
| 144 |
"ASAP."
|
|
@@ -147,29 +177,29 @@ msgstr ""
|
|
| 147 |
"Links werden sofort geprüft."
|
| 148 |
|
| 149 |
# @ broken-link-checker
|
| 150 |
-
#: core/core.php:
|
| 151 |
msgid "E-mail notifications"
|
| 152 |
msgstr "E-Mail Benachrichtigungen"
|
| 153 |
|
| 154 |
# @ broken-link-checker
|
| 155 |
-
#: core/core.php:
|
| 156 |
msgid "Send me e-mail notifications about newly detected broken links"
|
| 157 |
msgstr ""
|
| 158 |
"Dem Administrator eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte "
|
| 159 |
"Links erkannt werden"
|
| 160 |
|
| 161 |
# @ broken-link-checker
|
| 162 |
-
#: core/core.php:
|
| 163 |
msgid "Send authors e-mail notifications about broken links in their posts"
|
| 164 |
msgstr ""
|
| 165 |
"Den Autoren eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte Links "
|
| 166 |
"erkannt werden"
|
| 167 |
|
| 168 |
-
#: core/core.php:
|
| 169 |
msgid "Notification e-mail address"
|
| 170 |
msgstr "Benachrichtigungs-E-Mail-Adresse"
|
| 171 |
|
| 172 |
-
#: core/core.php:
|
| 173 |
msgid ""
|
| 174 |
"Leave empty to use the e-mail address specified in Settings → General."
|
| 175 |
msgstr ""
|
|
@@ -177,148 +207,182 @@ msgstr ""
|
|
| 177 |
"verwenden."
|
| 178 |
|
| 179 |
# @ broken-link-checker
|
| 180 |
-
#: core/core.php:
|
| 181 |
msgid "Link tweaks"
|
| 182 |
msgstr "Link Einstellungen"
|
| 183 |
|
| 184 |
# @ broken-link-checker
|
| 185 |
-
#: core/core.php:
|
| 186 |
msgid "Apply custom formatting to broken links"
|
| 187 |
msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
|
| 188 |
|
| 189 |
# @ broken-link-checker
|
| 190 |
-
#: core/core.php:
|
| 191 |
msgid "Edit CSS"
|
| 192 |
msgstr "Bearbeite CSS"
|
| 193 |
|
| 194 |
-
#: core/core.php:
|
| 195 |
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
| 196 |
msgstr "Beispiel: Lorem ipsum <a %s>fehlerhafter Link</a>, dolor sit amet."
|
| 197 |
|
| 198 |
-
#: core/core.php:
|
| 199 |
msgid "Click \"Save Changes\" to update example output."
|
| 200 |
msgstr "Drücken Sie \"Änderung übernehmen\", um das Beispiel zu aktualisieren."
|
| 201 |
|
| 202 |
# @ broken-link-checker
|
| 203 |
-
#: core/core.php:
|
| 204 |
msgid "Apply custom formatting to removed links"
|
| 205 |
msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
|
| 206 |
|
| 207 |
-
#: core/core.php:
|
| 208 |
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
| 209 |
msgstr "Beispiel: Lorem ipsum <span %s>entfernter Link</span>, dolor sit amet."
|
| 210 |
|
| 211 |
# @ broken-link-checker
|
| 212 |
-
#: core/core.php:
|
| 213 |
msgid "Stop search engines from following broken links"
|
| 214 |
msgstr "Suchmaschinen von folgenden fehlerhaften Links stoppen"
|
| 215 |
|
| 216 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 217 |
msgctxt "settings page"
|
| 218 |
msgid "Suggestions"
|
| 219 |
msgstr "Vorschläge"
|
| 220 |
|
| 221 |
# @ broken-link-checker
|
| 222 |
-
#: core/core.php:
|
| 223 |
msgid "Suggest alternatives to broken links"
|
| 224 |
msgstr "Alternativen zu fehlerhaften Links vorschlagen"
|
| 225 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 226 |
# @ broken-link-checker
|
| 227 |
-
#: core/core.php:
|
| 228 |
msgid "Look for links in"
|
| 229 |
msgstr "Suchen Sie nach Links in"
|
| 230 |
|
| 231 |
# @ broken-link-checker
|
| 232 |
-
#: core/core.php:
|
| 233 |
msgid "Post statuses"
|
| 234 |
msgstr "Beitrag Status"
|
| 235 |
|
| 236 |
# @ broken-link-checker
|
| 237 |
-
#: core/core.php:
|
| 238 |
msgid "Link types"
|
| 239 |
msgstr "Link Typen"
|
| 240 |
|
| 241 |
# @ broken-link-checker
|
| 242 |
-
#: core/core.php:
|
| 243 |
msgid "Error : All link parsers missing!"
|
| 244 |
msgstr "Fehler: Alle Link-Parser fehlen!"
|
| 245 |
|
| 246 |
# @ broken-link-checker
|
| 247 |
-
#: core/core.php:
|
| 248 |
msgid "Exclusion list"
|
| 249 |
msgstr "Ausschlussliste"
|
| 250 |
|
| 251 |
# @ broken-link-checker
|
| 252 |
-
#: core/core.php:
|
| 253 |
msgid ""
|
| 254 |
"Don't check links where the URL contains any of these words (one per line) :"
|
| 255 |
msgstr ""
|
| 256 |
"URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
|
| 257 |
|
| 258 |
# @ broken-link-checker
|
| 259 |
-
#: core/core.php:
|
| 260 |
msgid "Check links using"
|
| 261 |
msgstr "Überprüfe Links"
|
| 262 |
|
| 263 |
# @ broken-link-checker
|
| 264 |
-
#: core/core.php:
|
| 265 |
msgid "Timeout"
|
| 266 |
msgstr "Zeitüberschreitung"
|
| 267 |
|
| 268 |
# @ broken-link-checker
|
| 269 |
# @ default
|
| 270 |
-
#: core/core.php:
|
| 271 |
msgid "%s seconds"
|
| 272 |
msgstr "%s Sekunden"
|
| 273 |
|
| 274 |
# @ broken-link-checker
|
| 275 |
-
#: core/core.php:
|
| 276 |
msgid "Links that take longer than this to load will be marked as broken."
|
| 277 |
msgstr ""
|
| 278 |
"Links die länger zum laden brauchen als hier eingetragen, gelten als "
|
| 279 |
"fehlerhaft."
|
| 280 |
|
| 281 |
# @ broken-link-checker
|
| 282 |
-
#: core/core.php:
|
| 283 |
msgid "Link monitor"
|
| 284 |
msgstr "Link Monitor"
|
| 285 |
|
| 286 |
# @ broken-link-checker
|
| 287 |
-
#: core/core.php:
|
| 288 |
msgid "Run continuously while the Dashboard is open"
|
| 289 |
msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
|
| 290 |
|
| 291 |
# @ broken-link-checker
|
| 292 |
-
#: core/core.php:
|
| 293 |
msgid "Run hourly in the background"
|
| 294 |
msgstr "Stündlich im Hintergrund arbeiten"
|
| 295 |
|
| 296 |
-
#: core/core.php:
|
| 297 |
msgid "Show the dashboard widget for"
|
| 298 |
msgstr "Dashboard-Widget anzeigen für"
|
| 299 |
|
| 300 |
-
#: core/core.php:
|
| 301 |
msgctxt "dashboard widget visibility"
|
| 302 |
msgid "Administrator"
|
| 303 |
msgstr "Administrator"
|
| 304 |
|
| 305 |
-
#: core/core.php:
|
| 306 |
msgctxt "dashboard widget visibility"
|
| 307 |
msgid "Editor and above"
|
| 308 |
msgstr "Redakteur und höher"
|
| 309 |
|
| 310 |
-
#: core/core.php:
|
| 311 |
msgctxt "dashboard widget visibility"
|
| 312 |
msgid "Nobody (disables the widget)"
|
| 313 |
msgstr "Niemand (deaktiviert das Widget)"
|
| 314 |
|
| 315 |
# @ broken-link-checker
|
| 316 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 317 |
msgid "Max. execution time"
|
| 318 |
msgstr "Max. Ausführungszeit"
|
| 319 |
|
| 320 |
# @ broken-link-checker
|
| 321 |
-
#: core/core.php:
|
| 322 |
msgid ""
|
| 323 |
"The plugin works by periodically launching a background job that parses your "
|
| 324 |
"posts for links, checks the discovered URLs, and performs other time-"
|
|
@@ -331,31 +395,31 @@ msgstr ""
|
|
| 331 |
"Instanzen laufen sollen, bevor sie gestoppt werden."
|
| 332 |
|
| 333 |
# @ broken-link-checker
|
| 334 |
-
#: core/core.php:
|
| 335 |
msgid "Server load limit"
|
| 336 |
msgstr "Server Belastungsgrenze"
|
| 337 |
|
| 338 |
-
#: core/core.php:
|
| 339 |
msgid "Current load : %s"
|
| 340 |
msgstr "Aktuelle Belastung: %s"
|
| 341 |
|
| 342 |
# @ broken-link-checker
|
| 343 |
-
#: core/core.php:
|
| 344 |
msgid ""
|
| 345 |
"Link checking will be suspended if the average <a href=\"%s\">server load</"
|
| 346 |
"a> rises above this number. Leave this field blank to disable load limiting."
|
| 347 |
msgstr ""
|
| 348 |
"Die Link Überprüfung wird ausgesetzt, wenn die durchschnittliche <a href=\"%s"
|
| 349 |
"\">Belastung des Servers</a> über diese Zahl ansteigt. Lassen Sie dieses "
|
| 350 |
-
"Feld leer, um das
|
| 351 |
|
| 352 |
# @ broken-link-checker
|
| 353 |
-
#: core/core.php:
|
| 354 |
msgid "Not available"
|
| 355 |
msgstr "Nicht verfügbar"
|
| 356 |
|
| 357 |
# @ broken-link-checker
|
| 358 |
-
#: core/core.php:
|
| 359 |
msgid ""
|
| 360 |
"Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
|
| 361 |
"code> is present and accessible."
|
|
@@ -363,45 +427,45 @@ msgstr ""
|
|
| 363 |
"Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</"
|
| 364 |
"code> vorhanden und zugänglich ist."
|
| 365 |
|
| 366 |
-
#: core/core.php:
|
| 367 |
msgid "Target resource usage"
|
| 368 |
msgstr "Ziel Ressourcenverbrauch"
|
| 369 |
|
| 370 |
-
#: core/core.php:
|
| 371 |
msgid "Logging"
|
| 372 |
msgstr "Protokollierung"
|
| 373 |
|
| 374 |
-
#: core/core.php:
|
| 375 |
msgid "Enable logging"
|
| 376 |
msgstr "Protokollierung aktivieren"
|
| 377 |
|
| 378 |
-
#: core/core.php:
|
| 379 |
msgid "Log file location"
|
| 380 |
msgstr "Speicherort Protokolldatei"
|
| 381 |
|
| 382 |
-
#: core/core.php:
|
| 383 |
msgctxt "log file location"
|
| 384 |
msgid "Default"
|
| 385 |
msgstr "Standard"
|
| 386 |
|
| 387 |
# @ broken-link-checker
|
| 388 |
-
#: core/core.php:
|
| 389 |
msgctxt "log file location"
|
| 390 |
msgid "Custom"
|
| 391 |
msgstr "Benutzerdefiniert"
|
| 392 |
|
| 393 |
# @ broken-link-checker
|
| 394 |
-
#: core/core.php:
|
| 395 |
msgid "Forced recheck"
|
| 396 |
msgstr "Erneute Überprüfung erzwingen"
|
| 397 |
|
| 398 |
# @ broken-link-checker
|
| 399 |
-
#: core/core.php:
|
| 400 |
msgid "Re-check all pages"
|
| 401 |
msgstr "Überprüfe alle Seiten noch einmal"
|
| 402 |
|
| 403 |
# @ broken-link-checker
|
| 404 |
-
#: core/core.php:
|
| 405 |
msgid ""
|
| 406 |
"The \"Nuclear Option\". Click this button to make the plugin empty its link "
|
| 407 |
"database and recheck the entire site from scratch."
|
|
@@ -410,16 +474,16 @@ msgstr ""
|
|
| 410 |
"Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
|
| 411 |
|
| 412 |
# @ default
|
| 413 |
-
#: core/core.php:
|
| 414 |
msgid "Save Changes"
|
| 415 |
msgstr "Änderungen speichern"
|
| 416 |
|
| 417 |
# @ broken-link-checker
|
| 418 |
-
#: core/core.php:
|
| 419 |
msgid "Configure"
|
| 420 |
msgstr "Konfigurieren"
|
| 421 |
|
| 422 |
-
#: core/core.php:
|
| 423 |
msgid ""
|
| 424 |
"Enter the names of custom fields you want to check (one per line). If a "
|
| 425 |
"field contains HTML code, prefix its name with <code>html:</code>. For "
|
|
@@ -431,84 +495,84 @@ msgstr ""
|
|
| 431 |
"code>."
|
| 432 |
|
| 433 |
# @ broken-link-checker
|
| 434 |
-
#: core/core.php:
|
| 435 |
msgid "Database error : %s"
|
| 436 |
msgstr "Datenbank Fehler: %s"
|
| 437 |
|
| 438 |
# @ broken-link-checker
|
| 439 |
-
#: core/core.php:
|
| 440 |
msgid "You must enter a filter name!"
|
| 441 |
msgstr "Sie müssen einen Filter Namen eingeben!"
|
| 442 |
|
| 443 |
# @ broken-link-checker
|
| 444 |
-
#: core/core.php:
|
| 445 |
msgid "Invalid search query."
|
| 446 |
msgstr "Ungültige Suchanfrage."
|
| 447 |
|
| 448 |
# @ broken-link-checker
|
| 449 |
-
#: core/core.php:
|
| 450 |
msgid "Filter \"%s\" created"
|
| 451 |
msgstr "Filter \"%s\" erstellt"
|
| 452 |
|
| 453 |
# @ broken-link-checker
|
| 454 |
-
#: core/core.php:
|
| 455 |
msgid "Filter ID not specified."
|
| 456 |
msgstr "Link ID nicht spezifiziert."
|
| 457 |
|
| 458 |
# @ broken-link-checker
|
| 459 |
-
#: core/core.php:
|
| 460 |
msgid "Filter deleted"
|
| 461 |
msgstr "Filter gelöscht"
|
| 462 |
|
| 463 |
# @ broken-link-checker
|
| 464 |
-
#: core/core.php:
|
| 465 |
msgid "Replaced %d redirect with a direct link"
|
| 466 |
msgid_plural "Replaced %d redirects with direct links"
|
| 467 |
msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
|
| 468 |
msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
|
| 469 |
|
| 470 |
# @ broken-link-checker
|
| 471 |
-
#: core/core.php:
|
| 472 |
-
msgid "Failed to fix %d redirect"
|
| 473 |
-
msgid_plural "Failed to fix %d redirects"
|
| 474 |
-
msgstr[0] "
|
| 475 |
-
msgstr[1] "
|
| 476 |
-
|
| 477 |
-
# @ broken-link-checker
|
| 478 |
-
#: core/core.php:
|
| 479 |
msgid "None of the selected links are redirects!"
|
| 480 |
msgstr "Keiner der ausgewählten Links sind Umleitungen!"
|
| 481 |
|
| 482 |
# @ broken-link-checker
|
| 483 |
-
#: core/core.php:
|
| 484 |
msgid "%d link updated."
|
| 485 |
msgid_plural "%d links updated."
|
| 486 |
msgstr[0] "Link %d aktualisiert."
|
| 487 |
msgstr[1] "Links %d aktualisiert."
|
| 488 |
|
| 489 |
# @ broken-link-checker
|
| 490 |
-
#: core/core.php:
|
| 491 |
msgid "Failed to update %d link."
|
| 492 |
msgid_plural "Failed to update %d links."
|
| 493 |
msgstr[0] "Link %d konnte nicht aktualisiert werden."
|
| 494 |
msgstr[1] "Links %d konnten nicht aktualisiert werden."
|
| 495 |
|
| 496 |
# @ broken-link-checker
|
| 497 |
-
#: core/core.php:
|
| 498 |
msgid "%d link removed"
|
| 499 |
msgid_plural "%d links removed"
|
| 500 |
msgstr[0] "%d Link entfernt"
|
| 501 |
msgstr[1] "%d Links entfernt"
|
| 502 |
|
| 503 |
# @ broken-link-checker
|
| 504 |
-
#: core/core.php:
|
| 505 |
msgid "Failed to remove %d link"
|
| 506 |
msgid_plural "Failed to remove %d links"
|
| 507 |
msgstr[0] "Link %d konnte nicht entfernt werden"
|
| 508 |
msgstr[1] "Links %d konnten nicht entfernt werden"
|
| 509 |
|
| 510 |
# @ default
|
| 511 |
-
#: core/core.php:
|
| 512 |
msgid ""
|
| 513 |
"%d item was skipped because it can't be moved to the Trash. You need to "
|
| 514 |
"delete it manually."
|
|
@@ -523,108 +587,136 @@ msgstr[1] ""
|
|
| 523 |
"verschoben werden können. Löschen Sie diese manuell."
|
| 524 |
|
| 525 |
# @ broken-link-checker
|
| 526 |
-
#: core/core.php:
|
| 527 |
msgid "Didn't find anything to delete!"
|
| 528 |
msgstr "Nichts gefunden um zu löschen!"
|
| 529 |
|
| 530 |
# @ broken-link-checker
|
| 531 |
-
#: core/core.php:
|
| 532 |
msgid "%d link scheduled for rechecking"
|
| 533 |
msgid_plural "%d links scheduled for rechecking"
|
| 534 |
msgstr[0] "%d Link zur erneuten Überprüfung geplant"
|
| 535 |
msgstr[1] "%d Links zur erneuten Überprüfung geplant"
|
| 536 |
|
| 537 |
# @ broken-link-checker
|
| 538 |
-
#: core/core.php:
|
| 539 |
msgid "This link was manually marked as working by the user."
|
| 540 |
msgstr ""
|
| 541 |
"Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
|
| 542 |
|
| 543 |
# @ broken-link-checker
|
| 544 |
-
#: core/core.php:
|
| 545 |
msgid "Couldn't modify link %d"
|
| 546 |
msgstr "Link %d konnte nicht geändert werden"
|
| 547 |
|
| 548 |
# @ broken-link-checker
|
| 549 |
-
#: core/core.php:
|
| 550 |
msgid "%d link marked as not broken"
|
| 551 |
msgid_plural "%d links marked as not broken"
|
| 552 |
msgstr[0] "%d Link als nicht fehlerhaft markiert"
|
| 553 |
msgstr[1] "%d Links als nicht fehlerhaft markiert"
|
| 554 |
|
| 555 |
# @ broken-link-checker
|
| 556 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 557 |
msgid "Table columns"
|
| 558 |
msgstr "Tabellenspalten"
|
| 559 |
|
| 560 |
# @ default
|
| 561 |
-
#: core/core.php:
|
| 562 |
msgid "Show on screen"
|
| 563 |
msgstr "Auf dem Bildschirm anzeigen"
|
| 564 |
|
| 565 |
# @ broken-link-checker
|
| 566 |
-
#: core/core.php:
|
| 567 |
msgid "links"
|
| 568 |
msgstr "Links"
|
| 569 |
|
| 570 |
# @ default
|
| 571 |
# @ broken-link-checker
|
| 572 |
-
#: core/core.php:
|
| 573 |
msgid "Apply"
|
| 574 |
msgstr "Anwenden"
|
| 575 |
|
| 576 |
# @ broken-link-checker
|
| 577 |
-
#: core/core.php:
|
| 578 |
msgid "Misc"
|
| 579 |
msgstr "Sonstige"
|
| 580 |
|
| 581 |
# @ broken-link-checker
|
| 582 |
-
#: core/core.php:
|
| 583 |
msgid "Highlight links broken for at least %s days"
|
| 584 |
msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
|
| 585 |
|
| 586 |
# @ broken-link-checker
|
| 587 |
-
#: core/core.php:
|
| 588 |
msgid "Color-code status codes"
|
| 589 |
msgstr "Farb-Code Status Codes"
|
| 590 |
|
| 591 |
# @ broken-link-checker
|
| 592 |
-
#: core/core.php:
|
| 593 |
-
#: core/core.php:
|
| 594 |
msgid "You're not allowed to do that!"
|
| 595 |
msgstr "Sie haben nicht die Erlaubnis das zu tun!"
|
| 596 |
|
| 597 |
# @ broken-link-checker
|
| 598 |
-
#: core/core.php:
|
| 599 |
msgid "View broken links"
|
| 600 |
msgstr "Fehlerhafte Links anschauen"
|
| 601 |
|
| 602 |
# @ broken-link-checker
|
| 603 |
-
#: core/core.php:
|
| 604 |
msgid "Found %d broken link"
|
| 605 |
msgid_plural "Found %d broken links"
|
| 606 |
msgstr[0] "%d fehlerhafte Links gefunden"
|
| 607 |
msgstr[1] "%d fehlerhafte Links gefunden"
|
| 608 |
|
| 609 |
# @ broken-link-checker
|
| 610 |
-
#: core/core.php:
|
| 611 |
msgid "No broken links found."
|
| 612 |
msgstr "Keine fehlerhaften Links gefunden."
|
| 613 |
|
| 614 |
# @ broken-link-checker
|
| 615 |
-
#: core/core.php:
|
| 616 |
msgid "%d URL in the work queue"
|
| 617 |
msgid_plural "%d URLs in the work queue"
|
| 618 |
msgstr[0] "%d URL in der Warteschlange"
|
| 619 |
msgstr[1] "%d URLs in der Warteschlange"
|
| 620 |
|
| 621 |
# @ broken-link-checker
|
| 622 |
-
#: core/core.php:
|
| 623 |
msgid "No URLs in the work queue."
|
| 624 |
msgstr "Keine URLs in der Warteschlange."
|
| 625 |
|
| 626 |
# @ broken-link-checker
|
| 627 |
-
#: core/core.php:
|
| 628 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 629 |
msgid "%d unique URL"
|
| 630 |
msgid_plural "%d unique URLs"
|
|
@@ -632,7 +724,7 @@ msgstr[0] "%d eindeutige URL"
|
|
| 632 |
msgstr[1] "%d eindeutige URLs"
|
| 633 |
|
| 634 |
# @ broken-link-checker
|
| 635 |
-
#: core/core.php:
|
| 636 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 637 |
msgid "%d link"
|
| 638 |
msgid_plural "%d links"
|
|
@@ -640,99 +732,101 @@ msgstr[0] "%d Link"
|
|
| 640 |
msgstr[1] "%d Links"
|
| 641 |
|
| 642 |
# @ broken-link-checker
|
| 643 |
-
#: core/core.php:
|
| 644 |
msgid "Detected %1$s in %2$s and still searching..."
|
| 645 |
msgstr "Endeckt %1$s in %2$s und suche immer noch ..."
|
| 646 |
|
| 647 |
# @ broken-link-checker
|
| 648 |
-
#: core/core.php:
|
| 649 |
msgid "Detected %1$s in %2$s."
|
| 650 |
msgstr "Endeckt %1$s in %2$s."
|
| 651 |
|
| 652 |
# @ broken-link-checker
|
| 653 |
-
#: core/core.php:
|
| 654 |
msgid "Searching your blog for links..."
|
| 655 |
msgstr "Durchsucht Ihr Blog nach Links ..."
|
| 656 |
|
| 657 |
# @ broken-link-checker
|
| 658 |
-
#: core/core.php:
|
| 659 |
msgid "No links detected."
|
| 660 |
msgstr "Keine Links gefunden."
|
| 661 |
|
| 662 |
# @ broken-link-checker
|
| 663 |
-
#: core/core.php:
|
| 664 |
msgctxt "current load"
|
| 665 |
msgid "Unknown"
|
| 666 |
msgstr "Unbekannt"
|
| 667 |
|
| 668 |
# @ broken-link-checker
|
| 669 |
-
#: core/core.php:
|
|
|
|
| 670 |
msgid "Oops, I can't find the link %d"
|
| 671 |
msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
|
| 672 |
|
| 673 |
# @ broken-link-checker
|
| 674 |
-
#: core/core.php:
|
| 675 |
msgid "Oops, couldn't modify the link!"
|
| 676 |
msgstr "Hoppla, der Link konnte nicht geändert werden!"
|
| 677 |
|
| 678 |
# @ broken-link-checker
|
| 679 |
-
#: core/core.php:
|
|
|
|
| 680 |
msgid "Error : link_id not specified"
|
| 681 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
| 682 |
|
| 683 |
# @ broken-link-checker
|
| 684 |
-
#: core/core.php:
|
| 685 |
msgid "Error : link_id or new_url not specified"
|
| 686 |
msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
|
| 687 |
|
| 688 |
# @ broken-link-checker
|
| 689 |
-
#: core/core.php:
|
| 690 |
msgid "Oops, the new URL is invalid!"
|
| 691 |
msgstr "Hoppla, die neue URL funktioniert nicht!"
|
| 692 |
|
| 693 |
# @ broken-link-checker
|
| 694 |
-
#: core/core.php:
|
| 695 |
msgid "An unexpected error occurred!"
|
| 696 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
| 697 |
|
| 698 |
# @ broken-link-checker
|
| 699 |
-
#: core/core.php:
|
| 700 |
msgid "An unexpected error occured!"
|
| 701 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
| 702 |
|
| 703 |
# @ broken-link-checker
|
| 704 |
-
#: core/core.php:
|
| 705 |
msgid "You don't have sufficient privileges to access this information!"
|
| 706 |
msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
|
| 707 |
|
| 708 |
# @ broken-link-checker
|
| 709 |
-
#: core/core.php:
|
| 710 |
msgid "Error : link ID not specified"
|
| 711 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
| 712 |
|
| 713 |
# @ broken-link-checker
|
| 714 |
-
#: core/core.php:
|
| 715 |
msgid "Failed to load link details (%s)"
|
| 716 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
| 717 |
|
| 718 |
# @ broken-link-checker
|
| 719 |
#. Plugin Name of the plugin/theme
|
| 720 |
-
#: core/core.php:
|
| 721 |
msgid "Broken Link Checker"
|
| 722 |
msgstr "Broken Link Checker"
|
| 723 |
|
| 724 |
# @ broken-link-checker
|
| 725 |
-
#: core/core.php:
|
| 726 |
msgid "PHP version"
|
| 727 |
msgstr "PHP Version"
|
| 728 |
|
| 729 |
# @ broken-link-checker
|
| 730 |
-
#: core/core.php:
|
| 731 |
msgid "MySQL version"
|
| 732 |
msgstr "MySQL Version"
|
| 733 |
|
| 734 |
# @ broken-link-checker
|
| 735 |
-
#: core/core.php:
|
| 736 |
msgid ""
|
| 737 |
"You have an old version of CURL. Redirect detection may not work properly."
|
| 738 |
msgstr ""
|
|
@@ -740,58 +834,58 @@ msgstr ""
|
|
| 740 |
"funktioniert eventuell nicht."
|
| 741 |
|
| 742 |
# @ broken-link-checker
|
| 743 |
-
#: core/core.php:
|
| 744 |
msgid "Not installed"
|
| 745 |
msgstr "Nicht installiert"
|
| 746 |
|
| 747 |
# @ broken-link-checker
|
| 748 |
-
#: core/core.php:
|
| 749 |
msgid "CURL version"
|
| 750 |
msgstr "CURL Version"
|
| 751 |
|
| 752 |
# @ broken-link-checker
|
| 753 |
-
#: core/core.php:
|
| 754 |
msgid "Installed"
|
| 755 |
msgstr "Installiert"
|
| 756 |
|
| 757 |
# @ broken-link-checker
|
| 758 |
-
#: core/core.php:
|
| 759 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
| 760 |
msgstr ""
|
| 761 |
"Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin "
|
| 762 |
"funktioniert!"
|
| 763 |
|
| 764 |
# @ broken-link-checker
|
| 765 |
-
#: core/core.php:
|
| 766 |
msgid "On"
|
| 767 |
msgstr "An"
|
| 768 |
|
| 769 |
# @ broken-link-checker
|
| 770 |
-
#: core/core.php:
|
| 771 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
| 772 |
msgstr ""
|
| 773 |
"Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode "
|
| 774 |
"aktiviert ist."
|
| 775 |
|
| 776 |
# @ broken-link-checker
|
| 777 |
-
#: core/core.php:
|
| 778 |
msgid "Off"
|
| 779 |
msgstr "Aus"
|
| 780 |
|
| 781 |
# @ broken-link-checker
|
| 782 |
-
#: core/core.php:
|
| 783 |
msgid "On ( %s )"
|
| 784 |
msgstr "An (%s)"
|
| 785 |
|
| 786 |
# @ broken-link-checker
|
| 787 |
-
#: core/core.php:
|
| 788 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
| 789 |
msgstr ""
|
| 790 |
"Umleitungen werden eventuell als fehlerhafte Links erkannt, falls "
|
| 791 |
"open_basedir aktiviert ist."
|
| 792 |
|
| 793 |
# @ broken-link-checker
|
| 794 |
-
#: core/core.php:
|
| 795 |
msgid ""
|
| 796 |
"If this value is zero even after several page reloads you have probably "
|
| 797 |
"encountered a bug."
|
|
@@ -800,12 +894,12 @@ msgstr ""
|
|
| 800 |
"ein Fehler aufgetreten."
|
| 801 |
|
| 802 |
# @ broken-link-checker
|
| 803 |
-
#: core/core.php:
|
| 804 |
msgid "[%s] Broken links detected"
|
| 805 |
msgstr "[%s] Fehlerhafte Links entdeckt"
|
| 806 |
|
| 807 |
# @ broken-link-checker
|
| 808 |
-
#: core/core.php:
|
| 809 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
| 810 |
msgid_plural ""
|
| 811 |
"Broken Link Checker has detected %d new broken links on your site."
|
|
@@ -815,39 +909,39 @@ msgstr[1] ""
|
|
| 815 |
"Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
|
| 816 |
|
| 817 |
# @ broken-link-checker
|
| 818 |
-
#: core/core.php:
|
| 819 |
msgid "Here's a list of the first %d broken links:"
|
| 820 |
msgid_plural "Here's a list of the first %d broken links:"
|
| 821 |
msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
| 822 |
msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
| 823 |
|
| 824 |
# @ broken-link-checker
|
| 825 |
-
#: core/core.php:
|
| 826 |
msgid "Here's a list of the new broken links: "
|
| 827 |
msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
|
| 828 |
|
| 829 |
# @ broken-link-checker
|
| 830 |
-
#: core/core.php:
|
| 831 |
msgid "Link text : %s"
|
| 832 |
msgstr "Linktext: %s"
|
| 833 |
|
| 834 |
# @ broken-link-checker
|
| 835 |
-
#: core/core.php:
|
| 836 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
| 837 |
msgstr "Link URL: <a href=\"%s\">%s</a>"
|
| 838 |
|
| 839 |
# @ broken-link-checker
|
| 840 |
-
#: core/core.php:
|
| 841 |
msgid "Source : %s"
|
| 842 |
msgstr "Quelle: %s"
|
| 843 |
|
| 844 |
# @ brokenk-link-checker
|
| 845 |
-
#: core/core.php:
|
| 846 |
msgid "You can see all broken links here:"
|
| 847 |
msgstr "Hier sehen Sie alle fehlerhaften Links:"
|
| 848 |
|
| 849 |
# @ broken-link-checker
|
| 850 |
-
#: core/core.php:
|
| 851 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
| 852 |
msgid_plural ""
|
| 853 |
"Broken Link Checker has detected %d new broken links in your posts."
|
|
@@ -856,17 +950,17 @@ msgstr[0] ""
|
|
| 856 |
msgstr[1] "Broken Link Checker hat %d fehlerhafte Links in Beiträgen entdeckt."
|
| 857 |
|
| 858 |
# @ default
|
| 859 |
-
#: core/init.php:
|
| 860 |
msgid "Once Weekly"
|
| 861 |
msgstr "Einmal wöchentlich"
|
| 862 |
|
| 863 |
# @ default
|
| 864 |
-
#: core/init.php:
|
| 865 |
msgid "Twice a Month"
|
| 866 |
msgstr "Zweimal im Monat"
|
| 867 |
|
| 868 |
# @ broken-link-checker
|
| 869 |
-
#: core/init.php:
|
| 870 |
msgid ""
|
| 871 |
"Broken Link Checker installation failed. Try deactivating and then "
|
| 872 |
"reactivating the plugin."
|
|
@@ -874,7 +968,7 @@ msgstr ""
|
|
| 874 |
"Broken Link Checker Installation fehlgeschlagen. Deaktivieren Sie das Plugin "
|
| 875 |
"und aktivieren es anschliessend wieder."
|
| 876 |
|
| 877 |
-
#: core/init.php:
|
| 878 |
msgid ""
|
| 879 |
"Please activate the plugin separately on each site. Network activation is "
|
| 880 |
"not supported."
|
|
@@ -888,49 +982,44 @@ msgid "Failed to delete old DB tables. Database error : %s"
|
|
| 888 |
msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
|
| 889 |
|
| 890 |
# @ broken-link-checker
|
| 891 |
-
#: includes/admin/links-page-js.php:
|
| 892 |
msgid "Wait..."
|
| 893 |
msgstr "Warte ..."
|
| 894 |
|
| 895 |
-
|
| 896 |
-
#: includes/admin/links-page-js.php:107 includes/admin/table-printer.php:671
|
| 897 |
-
msgid "Not broken"
|
| 898 |
-
msgstr "Nicht fehlerhaft"
|
| 899 |
-
|
| 900 |
-
#: includes/admin/links-page-js.php:243
|
| 901 |
msgctxt "link text"
|
| 902 |
msgid "(None)"
|
| 903 |
msgstr "(Keine)"
|
| 904 |
|
| 905 |
-
#: includes/admin/links-page-js.php:
|
| 906 |
msgctxt "link text"
|
| 907 |
msgid "(Multiple links)"
|
| 908 |
msgstr "(Mehrere Links)"
|
| 909 |
|
| 910 |
# @ broken-link-checker
|
| 911 |
-
#: includes/admin/links-page-js.php:
|
| 912 |
msgctxt "link suggestions"
|
| 913 |
msgid "Searching..."
|
| 914 |
msgstr "Suche ..."
|
| 915 |
|
| 916 |
# @ broken-link-checker
|
| 917 |
-
#: includes/admin/links-page-js.php:
|
| 918 |
msgctxt "link suggestions"
|
| 919 |
msgid "No suggestions available."
|
| 920 |
msgstr "Kein Vorschlag verfügbar."
|
| 921 |
|
| 922 |
-
#: includes/admin/links-page-js.php:
|
| 923 |
msgctxt "link suggestions"
|
| 924 |
msgid "Archived page from %s (via the Wayback Machine)"
|
| 925 |
msgstr "Archivierte Seite von %s (via Wayback Machine)"
|
| 926 |
|
| 927 |
# @ broken-link-checker
|
| 928 |
-
#: includes/admin/links-page-js.php:
|
| 929 |
msgid "%d instances of the link were successfully modified."
|
| 930 |
msgstr "%d Instanzen von diesem Link wurden erfolgreich geändert."
|
| 931 |
|
| 932 |
# @ broken-link-checker
|
| 933 |
-
#: includes/admin/links-page-js.php:
|
| 934 |
msgid ""
|
| 935 |
"However, %d instances couldn't be edited and still point to the old URL."
|
| 936 |
msgstr ""
|
|
@@ -938,52 +1027,46 @@ msgstr ""
|
|
| 938 |
"noch auf die alte URL."
|
| 939 |
|
| 940 |
# @ broken-link-checker
|
| 941 |
-
#: includes/admin/links-page-js.php:
|
| 942 |
msgid "The link could not be modified."
|
| 943 |
msgstr "Der Link konnte nicht geändert werden."
|
| 944 |
|
| 945 |
# @ broken-link-checker
|
| 946 |
-
#: includes/admin/links-page-js.php:
|
| 947 |
msgid "The following error(s) occurred :"
|
| 948 |
msgstr "Folgende Fehler sind aufgetreten:"
|
| 949 |
|
| 950 |
-
#: includes/admin/links-page-js.php:
|
| 951 |
msgid "Error: Link URL must not be empty."
|
| 952 |
msgstr "Fehler: Die Link URL darf nicht leer sein."
|
| 953 |
|
| 954 |
# @ broken-link-checker
|
| 955 |
-
#: includes/admin/links-page-js.php:
|
| 956 |
msgid "%d instances of the link were successfully unlinked."
|
| 957 |
msgstr "%d Instanzen von diesem Link wurden erfolgreich gelöscht."
|
| 958 |
|
| 959 |
# @ broken-link-checker
|
| 960 |
-
#: includes/admin/links-page-js.php:
|
| 961 |
msgid "However, %d instances couldn't be removed."
|
| 962 |
msgstr "Allerdings, %d Instanzen konnten nicht entfernt werden."
|
| 963 |
|
| 964 |
# @ broken-link-checker
|
| 965 |
-
#: includes/admin/links-page-js.php:
|
| 966 |
msgid "The plugin failed to remove the link."
|
| 967 |
msgstr "Das Plugin konnte den Link nicht entfernen."
|
| 968 |
|
| 969 |
# @ broken-link-checker
|
| 970 |
-
#: includes/admin/links-page-js.php:
|
| 971 |
msgid "The following error(s) occured :"
|
| 972 |
msgstr "Folgende Fehler sind aufgetreten:"
|
| 973 |
|
| 974 |
# @ broken-link-checker
|
| 975 |
-
#: includes/admin/links-page-js.php:
|
| 976 |
-
#: includes/admin/table-printer.php:665
|
| 977 |
-
msgid "Unlink"
|
| 978 |
-
msgstr "Link aufheben"
|
| 979 |
-
|
| 980 |
-
# @ broken-link-checker
|
| 981 |
-
#: includes/admin/links-page-js.php:629
|
| 982 |
msgid "Enter a name for the new custom filter"
|
| 983 |
msgstr "Gib einen Namen für den neuen benutzerdefinierten Filter ein"
|
| 984 |
|
| 985 |
# @ broken-link-checker
|
| 986 |
-
#: includes/admin/links-page-js.php:
|
| 987 |
msgid ""
|
| 988 |
"You are about to delete the current filter.\n"
|
| 989 |
"'Cancel' to stop, 'OK' to delete"
|
|
@@ -992,7 +1075,7 @@ msgstr ""
|
|
| 992 |
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
| 993 |
|
| 994 |
# @ broken-link-checker
|
| 995 |
-
#: includes/admin/links-page-js.php:
|
| 996 |
msgid ""
|
| 997 |
"Are you sure you want to delete all posts, bookmarks or other items that "
|
| 998 |
"contain any of the selected links? This action can't be undone.\n"
|
|
@@ -1004,7 +1087,7 @@ msgstr ""
|
|
| 1004 |
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
| 1005 |
|
| 1006 |
# @ broken-link-checker
|
| 1007 |
-
#: includes/admin/links-page-js.php:
|
| 1008 |
msgid ""
|
| 1009 |
"Are you sure you want to remove the selected links? This action can't be "
|
| 1010 |
"undone.\n"
|
|
@@ -1014,11 +1097,11 @@ msgstr ""
|
|
| 1014 |
"Aktion kann nicht rückgängig gemacht werden.\n"
|
| 1015 |
" 'Abbrechen' um abzubrechen, 'OK' um zu entfernen."
|
| 1016 |
|
| 1017 |
-
#: includes/admin/links-page-js.php:
|
| 1018 |
msgid "Enter a search string first."
|
| 1019 |
msgstr "Geben Sie zuerst einen Suchbegriff ein."
|
| 1020 |
|
| 1021 |
-
#: includes/admin/links-page-js.php:
|
| 1022 |
msgid "Select one or more links to edit."
|
| 1023 |
msgstr "Wählen Sie einen oder mehrere Links zum bearbeiten."
|
| 1024 |
|
|
@@ -1038,7 +1121,7 @@ msgid "Delete This Filter"
|
|
| 1038 |
msgstr "Diesen Filter löschen"
|
| 1039 |
|
| 1040 |
# @ broken-link-checker
|
| 1041 |
-
#: includes/admin/search-form.php:32 includes/link-query.php:
|
| 1042 |
msgid "Search"
|
| 1043 |
msgstr "Suche"
|
| 1044 |
|
|
@@ -1053,7 +1136,7 @@ msgid "URL"
|
|
| 1053 |
msgstr "URL"
|
| 1054 |
|
| 1055 |
# @ broken-link-checker
|
| 1056 |
-
#: includes/admin/search-form.php:48 includes/admin/table-printer.php:
|
| 1057 |
msgid "HTTP code"
|
| 1058 |
msgstr "HTTP Code"
|
| 1059 |
|
|
@@ -1083,8 +1166,8 @@ msgid "Search Links"
|
|
| 1083 |
msgstr "Suche Links"
|
| 1084 |
|
| 1085 |
# @ broken-link-checker
|
| 1086 |
-
#: includes/admin/search-form.php:113 includes/admin/table-printer.php:
|
| 1087 |
-
#: includes/admin/table-printer.php:
|
| 1088 |
msgid "Cancel"
|
| 1089 |
msgstr "Abbrechen"
|
| 1090 |
|
|
@@ -1134,298 +1217,295 @@ msgid "Redirect URL"
|
|
| 1134 |
msgstr "URL umleiten"
|
| 1135 |
|
| 1136 |
# @ broken-link-checker
|
| 1137 |
-
#: includes/admin/table-printer.php:
|
| 1138 |
msgid "Bulk Actions"
|
| 1139 |
msgstr "Massenänderung"
|
| 1140 |
|
| 1141 |
-
# @ broken-link-checker
|
| 1142 |
-
#: includes/admin/table-printer.php:
|
| 1143 |
-
msgid "
|
| 1144 |
-
msgstr "
|
| 1145 |
-
|
| 1146 |
-
# @ broken-link-checker
|
| 1147 |
-
#: includes/admin/table-printer.php:
|
| 1148 |
-
msgid "Recheck"
|
| 1149 |
-
msgstr "Erneut überprüfen"
|
| 1150 |
-
|
| 1151 |
-
# @ broken-link-checker
|
| 1152 |
-
#: includes/admin/table-printer.php:287
|
| 1153 |
-
msgid "Fix redirects"
|
| 1154 |
-
msgstr "Feste Umleitungen"
|
| 1155 |
-
|
| 1156 |
-
# @ broken-link-checker
|
| 1157 |
-
#: includes/admin/table-printer.php:288
|
| 1158 |
msgid "Mark as not broken"
|
| 1159 |
msgstr "Als nicht fehlerhaft markieren"
|
| 1160 |
|
| 1161 |
# @ broken-link-checker
|
| 1162 |
-
#: includes/admin/table-printer.php:
|
| 1163 |
msgid "Move sources to Trash"
|
| 1164 |
msgstr "Verschiebe Quelle in den Papierkorb"
|
| 1165 |
|
| 1166 |
# @ broken-link-checker
|
| 1167 |
-
#: includes/admin/table-printer.php:
|
| 1168 |
msgid "Delete sources"
|
| 1169 |
msgstr "Quellen löschen"
|
| 1170 |
|
| 1171 |
# @ default
|
| 1172 |
-
#: includes/admin/table-printer.php:
|
| 1173 |
msgid "«"
|
| 1174 |
msgstr "«"
|
| 1175 |
|
| 1176 |
# @ default
|
| 1177 |
-
#: includes/admin/table-printer.php:
|
| 1178 |
msgid "»"
|
| 1179 |
msgstr "»"
|
| 1180 |
|
| 1181 |
# @ broken-link-checker
|
| 1182 |
-
#: includes/admin/table-printer.php:
|
| 1183 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
| 1184 |
msgstr "Anzeigen %s–%s von <span class=\"current-link-count\">%s</span>"
|
| 1185 |
|
| 1186 |
# @ broken-link-checker
|
| 1187 |
-
#: includes/admin/table-printer.php:
|
| 1188 |
msgid "Bulk Edit URLs"
|
| 1189 |
msgstr "Mehrere URLs bearbeiten"
|
| 1190 |
|
| 1191 |
-
#: includes/admin/table-printer.php:
|
| 1192 |
msgid "Find"
|
| 1193 |
msgstr "Finden"
|
| 1194 |
|
| 1195 |
-
#: includes/admin/table-printer.php:
|
| 1196 |
msgid "Replace with"
|
| 1197 |
msgstr "Ersetzen mit"
|
| 1198 |
|
| 1199 |
# @ broken-link-checker
|
| 1200 |
-
#: includes/admin/table-printer.php:
|
| 1201 |
msgid "Case sensitive"
|
| 1202 |
msgstr "Gross- und Kleinschreibung"
|
| 1203 |
|
| 1204 |
-
#: includes/admin/table-printer.php:
|
| 1205 |
msgid "Regular expression"
|
| 1206 |
msgstr "Regulärer Ausdruck"
|
| 1207 |
|
| 1208 |
# @ broken-link-checker
|
| 1209 |
-
#: includes/admin/table-printer.php:
|
| 1210 |
msgid "Update"
|
| 1211 |
msgstr "Aktualisieren"
|
| 1212 |
|
| 1213 |
# @ broken-link-checker
|
| 1214 |
-
#: includes/admin/table-printer.php:
|
| 1215 |
msgid "Post published on"
|
| 1216 |
msgstr "Beitrag publiziert am"
|
| 1217 |
|
| 1218 |
# @ broken-link-checker
|
| 1219 |
-
#: includes/admin/table-printer.php:
|
| 1220 |
msgid "Link last checked"
|
| 1221 |
msgstr "Link zuletzt geprüft"
|
| 1222 |
|
| 1223 |
# @ broken-link-checker
|
| 1224 |
-
#: includes/admin/table-printer.php:
|
| 1225 |
msgid "Never"
|
| 1226 |
msgstr "Nie"
|
| 1227 |
|
| 1228 |
# @ broken-link-checker
|
| 1229 |
-
#: includes/admin/table-printer.php:
|
| 1230 |
msgid "Response time"
|
| 1231 |
msgstr "Reaktionszeit"
|
| 1232 |
|
| 1233 |
# @ broken-link-checker
|
| 1234 |
-
#: includes/admin/table-printer.php:
|
| 1235 |
msgid "%2.3f seconds"
|
| 1236 |
msgstr "%2.3f Sekunden"
|
| 1237 |
|
| 1238 |
# @ broken-link-checker
|
| 1239 |
-
#: includes/admin/table-printer.php:
|
| 1240 |
msgid "Final URL"
|
| 1241 |
msgstr "Endgültige URL"
|
| 1242 |
|
| 1243 |
# @ broken-link-checker
|
| 1244 |
-
#: includes/admin/table-printer.php:
|
| 1245 |
msgid "Redirect count"
|
| 1246 |
msgstr "Weiterleitung Anzahl"
|
| 1247 |
|
| 1248 |
# @ broken-link-checker
|
| 1249 |
-
#: includes/admin/table-printer.php:
|
| 1250 |
msgid "Instance count"
|
| 1251 |
msgstr "Instanz Anzahl"
|
| 1252 |
|
| 1253 |
# @ broken-link-checker
|
| 1254 |
-
#: includes/admin/table-printer.php:
|
| 1255 |
msgid "This link has failed %d time."
|
| 1256 |
msgid_plural "This link has failed %d times."
|
| 1257 |
msgstr[0] "Dieser Link schlug %d mal fehl."
|
| 1258 |
msgstr[1] "Dieser Link schlug %d mal fehl."
|
| 1259 |
|
| 1260 |
# @ broken-link-checker
|
| 1261 |
-
#: includes/admin/table-printer.php:
|
| 1262 |
msgid "This link has been broken for %s."
|
| 1263 |
msgstr "Dieser Links ist fehlerhaft seit %s."
|
| 1264 |
|
| 1265 |
# @ broken-link-checker
|
| 1266 |
-
#: includes/admin/table-printer.php:
|
| 1267 |
msgid "Log"
|
| 1268 |
msgstr "Log"
|
| 1269 |
|
| 1270 |
# @ broken-link-checker
|
| 1271 |
-
#: includes/admin/table-printer.php:
|
| 1272 |
msgid "Show more info about this link"
|
| 1273 |
msgstr "Mehr Informationen über diesen Link anzeigen"
|
| 1274 |
|
| 1275 |
# @ broken-link-checker
|
| 1276 |
-
#: includes/admin/table-printer.php:
|
| 1277 |
msgctxt "checked how long ago"
|
| 1278 |
msgid "Checked"
|
| 1279 |
msgstr "Geprüft"
|
| 1280 |
|
| 1281 |
# @ broken-link-checker
|
| 1282 |
-
#: includes/admin/table-printer.php:
|
| 1283 |
msgid "Broken for"
|
| 1284 |
msgstr "Fehlerhaft für"
|
| 1285 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1286 |
# @ default
|
| 1287 |
-
#: includes/admin/table-printer.php:
|
| 1288 |
msgid "Edit this link"
|
| 1289 |
msgstr "Diesen Link bearbeiten"
|
| 1290 |
|
| 1291 |
# @ broken-link-checker
|
| 1292 |
-
#: includes/admin/table-printer.php:
|
| 1293 |
msgid "Remove this link from all posts"
|
| 1294 |
msgstr "Löschen Sie diesen Link von allen Beiträgen"
|
| 1295 |
|
| 1296 |
# @ broken-link-checker
|
| 1297 |
-
#: includes/admin/table-printer.php:
|
| 1298 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
| 1299 |
msgstr ""
|
| 1300 |
"Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als "
|
| 1301 |
"gültig"
|
| 1302 |
|
| 1303 |
-
#: includes/admin/table-printer.php:
|
| 1304 |
msgid "Hide this link and do not report it again unless its status changes"
|
| 1305 |
msgstr ""
|
| 1306 |
"Verstecken Sie diesen Link und melden ihn nicht wieder, auch wenn sein "
|
| 1307 |
"Status ändert"
|
| 1308 |
|
| 1309 |
-
#: includes/admin/table-printer.php:
|
| 1310 |
-
msgid "Dismiss"
|
| 1311 |
-
msgstr "Ausblenden"
|
| 1312 |
-
|
| 1313 |
-
#: includes/admin/table-printer.php:684
|
| 1314 |
msgid "Undismiss this link"
|
| 1315 |
msgstr "Link wieder einblenden"
|
| 1316 |
|
| 1317 |
-
#: includes/admin/table-printer.php:
|
| 1318 |
msgid "Undismiss"
|
| 1319 |
msgstr "Einblenden"
|
| 1320 |
|
| 1321 |
# @ broken-link-checker
|
| 1322 |
-
#: includes/admin/table-printer.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1323 |
msgid "Update URL"
|
| 1324 |
msgstr "Aktualisiere URL"
|
| 1325 |
|
| 1326 |
# @ broken-link-checker
|
| 1327 |
-
#: includes/admin/table-printer.php:
|
| 1328 |
msgid "[An orphaned link! This is a bug.]"
|
| 1329 |
msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
|
| 1330 |
|
| 1331 |
# @ broken-link-checker
|
| 1332 |
-
#: includes/admin/table-printer.php:
|
| 1333 |
msgctxt "inline editor title"
|
| 1334 |
msgid "Edit Link"
|
| 1335 |
msgstr "Link bearbeiten"
|
| 1336 |
|
| 1337 |
# @ broken-link-checker
|
| 1338 |
-
#: includes/admin/table-printer.php:
|
| 1339 |
msgctxt "inline link editor"
|
| 1340 |
msgid "Text"
|
| 1341 |
msgstr "Text"
|
| 1342 |
|
| 1343 |
# @ broken-link-checker
|
| 1344 |
-
#: includes/admin/table-printer.php:
|
| 1345 |
msgctxt "inline link editor"
|
| 1346 |
msgid "URL"
|
| 1347 |
msgstr "URL"
|
| 1348 |
|
| 1349 |
-
#: includes/admin/table-printer.php:
|
| 1350 |
msgctxt "inline link editor"
|
| 1351 |
msgid "Suggestions"
|
| 1352 |
msgstr "Vorschläge"
|
| 1353 |
|
| 1354 |
-
#: includes/admin/table-printer.php:
|
| 1355 |
msgid "Use this URL"
|
| 1356 |
msgstr "URL verwenden"
|
| 1357 |
|
| 1358 |
# @ default
|
| 1359 |
-
#: includes/any-post.php:
|
| 1360 |
-
#: modules/containers/comment.php:
|
| 1361 |
msgid "Edit"
|
| 1362 |
msgstr "Bearbeiten"
|
| 1363 |
|
| 1364 |
# @ default
|
| 1365 |
-
#: includes/any-post.php:
|
| 1366 |
msgid "Move this item to the Trash"
|
| 1367 |
msgstr "Element in den Papierkorb verschieben"
|
| 1368 |
|
| 1369 |
# @ default
|
| 1370 |
-
#: includes/any-post.php:
|
| 1371 |
msgid "Trash"
|
| 1372 |
msgstr "Papierkorb"
|
| 1373 |
|
| 1374 |
# @ default
|
| 1375 |
-
#: includes/any-post.php:
|
| 1376 |
msgid "Delete this item permanently"
|
| 1377 |
msgstr "Element endgültig löschen"
|
| 1378 |
|
| 1379 |
# @ default
|
| 1380 |
-
#: includes/any-post.php:
|
| 1381 |
-
#: modules/containers/custom_field.php:
|
| 1382 |
msgid "Delete"
|
| 1383 |
msgstr "Löschen"
|
| 1384 |
|
| 1385 |
# @ default
|
| 1386 |
-
#: includes/any-post.php:
|
| 1387 |
msgid "Preview “%s”"
|
| 1388 |
msgstr "Vorschau “%s”"
|
| 1389 |
|
| 1390 |
# @ default
|
| 1391 |
-
#: includes/any-post.php:
|
| 1392 |
msgid "Preview"
|
| 1393 |
msgstr "Vorschau"
|
| 1394 |
|
| 1395 |
# @ default
|
| 1396 |
-
#: includes/any-post.php:
|
| 1397 |
msgid "View “%s”"
|
| 1398 |
msgstr "Ansehen “%s”"
|
| 1399 |
|
| 1400 |
# @ default
|
| 1401 |
-
#: includes/any-post.php:
|
| 1402 |
-
#: modules/containers/custom_field.php:
|
| 1403 |
msgid "View"
|
| 1404 |
msgstr "Ansehen"
|
| 1405 |
|
| 1406 |
# @ default
|
| 1407 |
-
#: includes/any-post.php:
|
| 1408 |
msgid "Edit this item"
|
| 1409 |
msgstr "Bearbeiten Sie dieses Element"
|
| 1410 |
|
| 1411 |
# @ broken-link-checker
|
| 1412 |
-
#: includes/any-post.php:
|
| 1413 |
#: modules/containers/comment.php:43
|
| 1414 |
msgid "Nothing to update"
|
| 1415 |
msgstr "Nichts zu aktualisieren"
|
| 1416 |
|
| 1417 |
# @ broken-link-checker
|
| 1418 |
-
#: includes/any-post.php:
|
| 1419 |
msgid "Updating post %d failed"
|
| 1420 |
msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
|
| 1421 |
|
| 1422 |
# @ broken-link-checker
|
| 1423 |
-
#: includes/any-post.php:
|
| 1424 |
msgid "Failed to delete post \"%s\" (%d)"
|
| 1425 |
msgstr "Löschen des Beitrages \"%s\" (%d) schlug fehl"
|
| 1426 |
|
| 1427 |
# @ broken-link-checker
|
| 1428 |
-
#: includes/any-post.php:
|
| 1429 |
msgid ""
|
| 1430 |
"Can't move post \"%s\" (%d) to the trash because the trash feature is "
|
| 1431 |
"disabled"
|
|
@@ -1434,47 +1514,47 @@ msgstr ""
|
|
| 1434 |
"diese Funktion deaktiviert ist"
|
| 1435 |
|
| 1436 |
# @ broken-link-checker
|
| 1437 |
-
#: includes/any-post.php:
|
| 1438 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
| 1439 |
msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
|
| 1440 |
|
| 1441 |
# @ broken-link-checker
|
| 1442 |
-
#: includes/any-post.php:
|
| 1443 |
msgid "%d post deleted."
|
| 1444 |
msgid_plural "%d posts deleted."
|
| 1445 |
msgstr[0] "%d Artikel gelöscht."
|
| 1446 |
msgstr[1] "%d Artikel gelöscht."
|
| 1447 |
|
| 1448 |
# @ broken-link-checker
|
| 1449 |
-
#: includes/any-post.php:
|
| 1450 |
msgid "%d page deleted."
|
| 1451 |
msgid_plural "%d pages deleted."
|
| 1452 |
msgstr[0] "%d Seite gelöscht."
|
| 1453 |
msgstr[1] "%d Seiten gelöscht."
|
| 1454 |
|
| 1455 |
# @ broken-link-checker
|
| 1456 |
-
#: includes/any-post.php:
|
| 1457 |
msgid "%d \"%s\" deleted."
|
| 1458 |
msgid_plural "%d \"%s\" deleted."
|
| 1459 |
msgstr[0] "%d \"%s\" gelöscht."
|
| 1460 |
msgstr[1] "%d \"%s\" gelöscht."
|
| 1461 |
|
| 1462 |
# @ broken-link-checker
|
| 1463 |
-
#: includes/any-post.php:
|
| 1464 |
msgid "%d post moved to the Trash."
|
| 1465 |
msgid_plural "%d posts moved to the Trash."
|
| 1466 |
msgstr[0] "%d Artikel in den Papierkorb verschoben."
|
| 1467 |
msgstr[1] "%d Artikel in den Papierkorb verschoben."
|
| 1468 |
|
| 1469 |
# @ broken-link-checker
|
| 1470 |
-
#: includes/any-post.php:
|
| 1471 |
msgid "%d page moved to the Trash."
|
| 1472 |
msgid_plural "%d pages moved to the Trash."
|
| 1473 |
msgstr[0] "%d Seite in den Papierkorb verschoben."
|
| 1474 |
msgstr[1] "%d Seiten in den Papierkorb verschoben."
|
| 1475 |
|
| 1476 |
# @ broken-link-checker
|
| 1477 |
-
#: includes/any-post.php:
|
| 1478 |
msgid "%d \"%s\" moved to the Trash."
|
| 1479 |
msgid_plural "%d \"%s\" moved to the Trash."
|
| 1480 |
msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
|
|
@@ -1615,97 +1695,111 @@ msgstr "Container %s[%d] nicht gefunden"
|
|
| 1615 |
msgid "Parser '%s' not found."
|
| 1616 |
msgstr "Parser '%s' nicht gefunden."
|
| 1617 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1618 |
# @ broken-link-checker
|
| 1619 |
#: includes/link-query.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1620 |
msgid "Broken"
|
| 1621 |
msgstr "Fehlerhaft"
|
| 1622 |
|
| 1623 |
# @ broken-link-checker
|
| 1624 |
-
#: includes/link-query.php:
|
| 1625 |
msgid "No broken links found"
|
| 1626 |
msgstr "Keine fehlerhaften Links gefunden"
|
| 1627 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1628 |
# @ broken-link-checker
|
| 1629 |
-
#: includes/link-query.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1630 |
msgid "Redirects"
|
| 1631 |
msgstr "Umleitungen"
|
| 1632 |
|
| 1633 |
# @ broken-link-checker
|
| 1634 |
-
#: includes/link-query.php:
|
| 1635 |
msgid "Redirected Links"
|
| 1636 |
msgstr "Umgeleitete Links"
|
| 1637 |
|
| 1638 |
# @ broken-link-checker
|
| 1639 |
-
#: includes/link-query.php:
|
| 1640 |
msgid "No redirects found"
|
| 1641 |
msgstr "Keine umgeleiteten Links gefunden"
|
| 1642 |
|
| 1643 |
-
#: includes/link-query.php:
|
| 1644 |
msgid "Dismissed"
|
| 1645 |
msgstr "Ausgeblendete"
|
| 1646 |
|
| 1647 |
# @ broken-link-checker
|
| 1648 |
-
#: includes/link-query.php:
|
| 1649 |
msgid "Dismissed Links"
|
| 1650 |
msgstr "Ausgeblendete Links"
|
| 1651 |
|
| 1652 |
# @ broken-link-checker
|
| 1653 |
-
#: includes/link-query.php:
|
| 1654 |
msgid "No dismissed links found"
|
| 1655 |
msgstr "Keine ausgeblendeten Links gefunden"
|
| 1656 |
|
| 1657 |
# @ broken-link-checker
|
| 1658 |
-
#: includes/link-query.php:
|
| 1659 |
-
msgid "All"
|
| 1660 |
-
msgstr "Alle"
|
| 1661 |
-
|
| 1662 |
-
# @ broken-link-checker
|
| 1663 |
-
#: includes/link-query.php:57
|
| 1664 |
-
msgid "Detected Links"
|
| 1665 |
-
msgstr "Gefundene Links"
|
| 1666 |
-
|
| 1667 |
-
# @ broken-link-checker
|
| 1668 |
-
#: includes/link-query.php:58
|
| 1669 |
-
msgid "No links found (yet)"
|
| 1670 |
-
msgstr "(Noch) keine Links gefunden"
|
| 1671 |
-
|
| 1672 |
-
# @ broken-link-checker
|
| 1673 |
-
#: includes/link-query.php:66
|
| 1674 |
msgid "Search Results"
|
| 1675 |
msgstr "Such Resultat"
|
| 1676 |
|
| 1677 |
# @ broken-link-checker
|
| 1678 |
-
#: includes/link-query.php:
|
| 1679 |
msgid "No links found for your query"
|
| 1680 |
msgstr "Keine Links für Deine Anfrage gefunden"
|
| 1681 |
|
| 1682 |
# @ broken-link-checker
|
| 1683 |
-
#: includes/links.php:
|
| 1684 |
msgid "The plugin script was terminated while trying to check the link."
|
| 1685 |
msgstr "Das Plugin-Skript wurde beim Versuch den Link zu überprüfen beendet."
|
| 1686 |
|
| 1687 |
# @ broken-link-checker
|
| 1688 |
-
#: includes/links.php:
|
| 1689 |
msgid "The plugin doesn't know how to check this type of link."
|
| 1690 |
msgstr "Das Plugin weiss nicht genau, wie er diesen Link Typ überprüfen soll."
|
| 1691 |
|
| 1692 |
# @ broken-link-checker
|
| 1693 |
-
#: includes/links.php:
|
| 1694 |
-
msgid "Link is valid."
|
| 1695 |
-
msgstr "Link ist valide."
|
| 1696 |
-
|
| 1697 |
-
# @ broken-link-checker
|
| 1698 |
-
#: includes/links.php:363
|
| 1699 |
msgid "Link is broken."
|
| 1700 |
msgstr "Link ist fehlerhaft."
|
| 1701 |
|
| 1702 |
# @ broken-link-checker
|
| 1703 |
-
#: includes/links.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1704 |
msgid "Link is not valid"
|
| 1705 |
msgstr "Link ist nicht gültig"
|
| 1706 |
|
| 1707 |
# @ broken-link-checker
|
| 1708 |
-
#: includes/links.php:
|
| 1709 |
msgid ""
|
| 1710 |
"This link can not be edited because it is not used anywhere on this site."
|
| 1711 |
msgstr ""
|
|
@@ -1713,46 +1807,46 @@ msgstr ""
|
|
| 1713 |
"Website verwendet wird."
|
| 1714 |
|
| 1715 |
# @ broken-link-checker
|
| 1716 |
-
#: includes/links.php:
|
| 1717 |
msgid "Failed to create a DB entry for the new URL."
|
| 1718 |
msgstr ""
|
| 1719 |
"Das Erstellen eines Datenbankeintrages für die neue URL ist fehlgeschlagen."
|
| 1720 |
|
| 1721 |
# @ broken-link-checker
|
| 1722 |
-
#: includes/links.php:
|
| 1723 |
msgid "This link is not a redirect"
|
| 1724 |
msgstr "Dieser Link ist keine Umleitung"
|
| 1725 |
|
| 1726 |
# @ broken-link-checker
|
| 1727 |
-
#: includes/links.php:
|
| 1728 |
msgid "Couldn't delete the link's database record"
|
| 1729 |
msgstr "Links können nicht aus der Datenbank gelöscht werden"
|
| 1730 |
|
| 1731 |
# @ broken-link-checker
|
| 1732 |
-
#: includes/links.php:
|
| 1733 |
msgctxt "link status"
|
| 1734 |
msgid "Unknown"
|
| 1735 |
msgstr "Unbekannt"
|
| 1736 |
|
| 1737 |
# @ link status
|
| 1738 |
# @ broken-link-checker
|
| 1739 |
-
#: includes/links.php:
|
| 1740 |
-
#: modules/extras/mediafire.php:
|
| 1741 |
msgid "Unknown Error"
|
| 1742 |
msgstr "Unbekannter Fehler"
|
| 1743 |
|
| 1744 |
# @ broken-link-checker
|
| 1745 |
-
#: includes/links.php:
|
| 1746 |
msgid "Not checked"
|
| 1747 |
msgstr "Nicht überprüft"
|
| 1748 |
|
| 1749 |
# @ broken-link-checker
|
| 1750 |
-
#: includes/links.php:
|
| 1751 |
msgid "False positive"
|
| 1752 |
msgstr "Falsch positiv"
|
| 1753 |
|
| 1754 |
# @ broken-link-checker
|
| 1755 |
-
#: includes/links.php:
|
| 1756 |
#: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
|
| 1757 |
msgctxt "link status"
|
| 1758 |
msgid "OK"
|
|
@@ -1839,38 +1933,38 @@ msgstr[0] "%d Monat vergangen"
|
|
| 1839 |
msgstr[1] "%d Monate vergangen"
|
| 1840 |
|
| 1841 |
# @ broken-link-checker
|
| 1842 |
-
#: modules/checkers/http.php:
|
| 1843 |
msgid "Server Not Found"
|
| 1844 |
msgstr "Server nicht gefunden"
|
| 1845 |
|
| 1846 |
# @ broken-link-checker
|
| 1847 |
-
#: modules/checkers/http.php:
|
| 1848 |
msgid "Connection Failed"
|
| 1849 |
msgstr "Verbindung fehlgeschlagen"
|
| 1850 |
|
| 1851 |
# @ broken-link-checker
|
| 1852 |
-
#: modules/checkers/http.php:
|
| 1853 |
msgid "HTTP code : %d"
|
| 1854 |
msgstr "HTTP Code: %d"
|
| 1855 |
|
| 1856 |
# @ broken-link-checker
|
| 1857 |
-
#: modules/checkers/http.php:
|
| 1858 |
msgid "(No response)"
|
| 1859 |
msgstr "(Keine Antwort)"
|
| 1860 |
|
| 1861 |
# @ broken-link-checker
|
| 1862 |
-
#: modules/checkers/http.php:
|
| 1863 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
| 1864 |
msgstr ""
|
| 1865 |
"Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
|
| 1866 |
|
| 1867 |
# @ broken-link-checker
|
| 1868 |
-
#: modules/checkers/http.php:
|
| 1869 |
msgid "Request timed out."
|
| 1870 |
msgstr "Erfordert Zeitlimit."
|
| 1871 |
|
| 1872 |
# @ broken-link-checker
|
| 1873 |
-
#: modules/checkers/http.php:
|
| 1874 |
msgid "Using Snoopy"
|
| 1875 |
msgstr "Benutzt Snoopy"
|
| 1876 |
|
|
@@ -1926,45 +2020,45 @@ msgid "Can't move comment %d to the trash"
|
|
| 1926 |
msgstr "Kommentar %d kann nicht in den Papierkorb verschoben werden"
|
| 1927 |
|
| 1928 |
# @ default
|
| 1929 |
-
#: modules/containers/comment.php:
|
| 1930 |
msgid "Edit comment"
|
| 1931 |
msgstr "Kommentar bearbeiten"
|
| 1932 |
|
| 1933 |
# @ default
|
| 1934 |
-
#: modules/containers/comment.php:
|
| 1935 |
msgid "Delete Permanently"
|
| 1936 |
msgstr "Endgültig löschen"
|
| 1937 |
|
| 1938 |
# @ default
|
| 1939 |
-
#: modules/containers/comment.php:
|
| 1940 |
msgid "Move this comment to the trash"
|
| 1941 |
msgstr "%d Kommentar in den Papierkorb verschieben"
|
| 1942 |
|
| 1943 |
# @ default
|
| 1944 |
-
#: modules/containers/comment.php:
|
| 1945 |
msgctxt "verb"
|
| 1946 |
msgid "Trash"
|
| 1947 |
msgstr "Papierkorb"
|
| 1948 |
|
| 1949 |
# @ broken-link-checker
|
| 1950 |
-
#: modules/containers/comment.php:
|
| 1951 |
msgid "View comment"
|
| 1952 |
msgstr "Kommentar ansehen"
|
| 1953 |
|
| 1954 |
# @ broken-link-checker
|
| 1955 |
-
#: modules/containers/comment.php:
|
| 1956 |
msgid "Comment"
|
| 1957 |
msgstr "Kommentar"
|
| 1958 |
|
| 1959 |
# @ broken-link-checker
|
| 1960 |
-
#: modules/containers/comment.php:
|
| 1961 |
msgid "%d comment has been deleted."
|
| 1962 |
msgid_plural "%d comments have been deleted."
|
| 1963 |
msgstr[0] "%d Kommentar wurde gelöscht."
|
| 1964 |
msgstr[1] "%d Kommentare wurde gelöscht."
|
| 1965 |
|
| 1966 |
# @ broken-link-checker
|
| 1967 |
-
#: modules/containers/comment.php:
|
| 1968 |
msgid "%d comment moved to the Trash."
|
| 1969 |
msgid_plural "%d comments moved to the Trash."
|
| 1970 |
msgstr[0] "%d Kommentar in den Papierkorb verschoben."
|
|
@@ -1981,12 +2075,12 @@ msgid "Failed to delete the meta field '%s' on %s [%d]"
|
|
| 1981 |
msgstr "Löschen des Meta-Feldes '%s' in %s [%d] schlug fehl"
|
| 1982 |
|
| 1983 |
# @ default
|
| 1984 |
-
#: modules/containers/custom_field.php:
|
| 1985 |
msgid "Edit this post"
|
| 1986 |
msgstr "Bearbeiten Sie diesen Beitrag"
|
| 1987 |
|
| 1988 |
# @ broken-link-checker
|
| 1989 |
-
#: modules/containers/custom_field.php:
|
| 1990 |
msgid "View \"%s\""
|
| 1991 |
msgstr "\"%s\" ansehen"
|
| 1992 |
|
|
@@ -2024,11 +2118,15 @@ msgid "Embedded GoogleVideo video"
|
|
| 2024 |
msgstr "Eingebetteter GoogleVideo Video"
|
| 2025 |
|
| 2026 |
# @ broken-link-checker
|
| 2027 |
-
#: modules/extras/mediafire.php:
|
| 2028 |
#: modules/extras/rapidshare.php:139
|
| 2029 |
msgid "Not Found"
|
| 2030 |
msgstr "Nicht gefunden"
|
| 2031 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2032 |
# @ broken-link-checker
|
| 2033 |
#: modules/extras/rapidshare.php:51
|
| 2034 |
msgid "Using RapidShare API"
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
+
"Project-Id-Version: Broken Link Checker | V1.10.1\n"
|
| 4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 5 |
+
"POT-Creation-Date: 2014-11-25 11:57:14+00:00\n"
|
| 6 |
+
"PO-Revision-Date: 2014-11-30 11:28+0100\n"
|
| 7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
| 8 |
"Language-Team: \n"
|
| 9 |
"Language: de_CH\n"
|
| 16 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
| 17 |
"X-Textdomain-Support: yes\n"
|
| 18 |
"X-Poedit-Basepath: .\n"
|
| 19 |
+
"X-Generator: Poedit 1.6.10\n"
|
| 20 |
"X-Poedit-SearchPath-0: .\n"
|
| 21 |
|
| 22 |
# @ broken-link-checker
|
| 23 |
+
#: core/core.php:156 includes/admin/links-page-js.php:44
|
| 24 |
msgid "Loading..."
|
| 25 |
msgstr "Wird geladen ..."
|
| 26 |
|
| 27 |
# @ broken-link-checker
|
| 28 |
+
#: core/core.php:180 includes/admin/options-page-js.php:18
|
| 29 |
msgid "[ Network error ]"
|
| 30 |
msgstr "[ Netzwerk Fehler ]"
|
| 31 |
|
| 32 |
# @ broken-link-checker
|
| 33 |
+
#: core/core.php:207
|
| 34 |
msgid "Automatically expand the widget if broken links have been detected"
|
| 35 |
msgstr "Vergrössere Widget automatisch wenn fehlerhafte Links gefunden wurden"
|
| 36 |
|
| 37 |
# @ broken-link-checker
|
| 38 |
+
#: core/core.php:298
|
| 39 |
msgid "Link Checker Settings"
|
| 40 |
msgstr "Link Checker Einstellungen"
|
| 41 |
|
| 42 |
# @ broken-link-checker
|
| 43 |
+
#: core/core.php:299
|
| 44 |
msgid "Link Checker"
|
| 45 |
msgstr "Link Checker"
|
| 46 |
|
| 47 |
# @ broken-link-checker
|
| 48 |
+
#: core/core.php:304 includes/link-query.php:37
|
| 49 |
msgid "Broken Links"
|
| 50 |
msgstr "Fehlerhafte Links"
|
| 51 |
|
| 52 |
# @ broken-link-checker
|
| 53 |
+
#: core/core.php:320
|
| 54 |
msgid "View Broken Links"
|
| 55 |
msgstr "Fehlerhafte Links anschauen"
|
| 56 |
|
| 57 |
+
#: core/core.php:335
|
| 58 |
msgid "Feedback"
|
| 59 |
msgstr "Feedback"
|
| 60 |
|
| 61 |
# @ broken-link-checker
|
| 62 |
+
#: core/core.php:343
|
| 63 |
msgid "Go to Broken Links"
|
| 64 |
msgstr "Gehe zu fehlerhaften Links"
|
| 65 |
|
| 66 |
# @ default
|
| 67 |
+
#: core/core.php:372
|
| 68 |
msgid "Settings"
|
| 69 |
msgstr "Einstellungen"
|
| 70 |
|
| 71 |
# @ broken-link-checker
|
| 72 |
+
#: core/core.php:401 includes/admin/table-printer.php:287
|
| 73 |
+
#: includes/admin/table-printer.php:678
|
| 74 |
+
msgid "Edit URL"
|
| 75 |
+
msgstr "Bearbeite URL"
|
| 76 |
+
|
| 77 |
+
# @ broken-link-checker
|
| 78 |
+
#: core/core.php:402 includes/admin/links-page-js.php:699
|
| 79 |
+
#: includes/admin/table-printer.php:292 includes/admin/table-printer.php:681
|
| 80 |
+
msgid "Unlink"
|
| 81 |
+
msgstr "Link aufheben"
|
| 82 |
+
|
| 83 |
+
# @ broken-link-checker
|
| 84 |
+
#: core/core.php:403 includes/admin/links-page-js.php:110
|
| 85 |
+
#: includes/admin/table-printer.php:687
|
| 86 |
+
msgid "Not broken"
|
| 87 |
+
msgstr "Nicht fehlerhaft"
|
| 88 |
+
|
| 89 |
+
#: core/core.php:404 includes/admin/table-printer.php:291
|
| 90 |
+
#: includes/admin/table-printer.php:695
|
| 91 |
+
msgid "Dismiss"
|
| 92 |
+
msgstr "Ausblenden"
|
| 93 |
+
|
| 94 |
+
# @ broken-link-checker
|
| 95 |
+
#: core/core.php:405 includes/admin/table-printer.php:288
|
| 96 |
+
#: includes/admin/table-printer.php:707
|
| 97 |
+
msgid "Recheck"
|
| 98 |
+
msgstr "Erneut überprüfen"
|
| 99 |
+
|
| 100 |
+
# @ broken-link-checker
|
| 101 |
+
#: core/core.php:406 includes/admin/table-printer.php:715
|
| 102 |
+
msgctxt "link action; replace one redirect with a direct link"
|
| 103 |
+
msgid "Fix redirect"
|
| 104 |
+
msgstr "Umleitung übernehmen"
|
| 105 |
+
|
| 106 |
+
# @ broken-link-checker
|
| 107 |
+
#: core/core.php:626
|
| 108 |
msgid "Settings saved."
|
| 109 |
msgstr "Einstellungen gespeichert."
|
| 110 |
|
| 111 |
+
#: core/core.php:632
|
| 112 |
msgid "Thank you for your donation!"
|
| 113 |
msgstr "Besten Dank für Ihre Spende!"
|
| 114 |
|
| 115 |
# @ broken-link-checker
|
| 116 |
+
#: core/core.php:640
|
| 117 |
msgid "Complete site recheck started."
|
| 118 |
msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
|
| 119 |
|
| 120 |
# @ broken-link-checker
|
| 121 |
+
#: core/core.php:662
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 122 |
msgid "General"
|
| 123 |
msgstr "Allgemein"
|
| 124 |
|
| 125 |
# @ broken-link-checker
|
| 126 |
+
#: core/core.php:663
|
| 127 |
msgid "Look For Links In"
|
| 128 |
msgstr "Suchen Sie nach Links in"
|
| 129 |
|
| 130 |
# @ broken-link-checker
|
| 131 |
+
#: core/core.php:664
|
| 132 |
msgid "Which Links To Check"
|
| 133 |
msgstr "Welche Links überprüfen"
|
| 134 |
|
| 135 |
# @ broken-link-checker
|
| 136 |
+
#: core/core.php:665
|
| 137 |
msgid "Protocols & APIs"
|
| 138 |
msgstr "Protokoll & Schnittstellen"
|
| 139 |
|
| 140 |
# @ broken-link-checker
|
| 141 |
+
#: core/core.php:666
|
| 142 |
msgid "Advanced"
|
| 143 |
msgstr "Erweitert"
|
| 144 |
|
| 145 |
# @ broken-link-checker
|
| 146 |
+
#: core/core.php:681
|
| 147 |
msgid "Broken Link Checker Options"
|
| 148 |
msgstr "Broken Link Checker Optionen"
|
| 149 |
|
| 150 |
# @ broken-link-checker
|
| 151 |
+
#: core/core.php:723 includes/admin/table-printer.php:211
|
| 152 |
msgid "Status"
|
| 153 |
msgstr "Status"
|
| 154 |
|
| 155 |
# @ broken-link-checker
|
| 156 |
+
#: core/core.php:725 includes/admin/options-page-js.php:56
|
| 157 |
msgid "Show debug info"
|
| 158 |
msgstr "Debug Infos anzeigen"
|
| 159 |
|
| 160 |
# @ broken-link-checker
|
| 161 |
+
#: core/core.php:753
|
| 162 |
msgid "Check each link"
|
| 163 |
msgstr "Überprüfe jeden Link"
|
| 164 |
|
| 165 |
# @ broken-link-checker
|
| 166 |
+
#: core/core.php:758
|
| 167 |
msgid "Every %s hours"
|
| 168 |
msgstr "Alle %s Stunden"
|
| 169 |
|
| 170 |
# @ broken-link-checker
|
| 171 |
+
#: core/core.php:767
|
| 172 |
msgid ""
|
| 173 |
"Existing links will be checked this often. New links will usually be checked "
|
| 174 |
"ASAP."
|
| 177 |
"Links werden sofort geprüft."
|
| 178 |
|
| 179 |
# @ broken-link-checker
|
| 180 |
+
#: core/core.php:774
|
| 181 |
msgid "E-mail notifications"
|
| 182 |
msgstr "E-Mail Benachrichtigungen"
|
| 183 |
|
| 184 |
# @ broken-link-checker
|
| 185 |
+
#: core/core.php:780
|
| 186 |
msgid "Send me e-mail notifications about newly detected broken links"
|
| 187 |
msgstr ""
|
| 188 |
"Dem Administrator eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte "
|
| 189 |
"Links erkannt werden"
|
| 190 |
|
| 191 |
# @ broken-link-checker
|
| 192 |
+
#: core/core.php:788
|
| 193 |
msgid "Send authors e-mail notifications about broken links in their posts"
|
| 194 |
msgstr ""
|
| 195 |
"Den Autoren eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte Links "
|
| 196 |
"erkannt werden"
|
| 197 |
|
| 198 |
+
#: core/core.php:795
|
| 199 |
msgid "Notification e-mail address"
|
| 200 |
msgstr "Benachrichtigungs-E-Mail-Adresse"
|
| 201 |
|
| 202 |
+
#: core/core.php:807
|
| 203 |
msgid ""
|
| 204 |
"Leave empty to use the e-mail address specified in Settings → General."
|
| 205 |
msgstr ""
|
| 207 |
"verwenden."
|
| 208 |
|
| 209 |
# @ broken-link-checker
|
| 210 |
+
#: core/core.php:814
|
| 211 |
msgid "Link tweaks"
|
| 212 |
msgstr "Link Einstellungen"
|
| 213 |
|
| 214 |
# @ broken-link-checker
|
| 215 |
+
#: core/core.php:820
|
| 216 |
msgid "Apply custom formatting to broken links"
|
| 217 |
msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
|
| 218 |
|
| 219 |
# @ broken-link-checker
|
| 220 |
+
#: core/core.php:824 core/core.php:855
|
| 221 |
msgid "Edit CSS"
|
| 222 |
msgstr "Bearbeite CSS"
|
| 223 |
|
| 224 |
+
#: core/core.php:840
|
| 225 |
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
| 226 |
msgstr "Beispiel: Lorem ipsum <a %s>fehlerhafter Link</a>, dolor sit amet."
|
| 227 |
|
| 228 |
+
#: core/core.php:843 core/core.php:874
|
| 229 |
msgid "Click \"Save Changes\" to update example output."
|
| 230 |
msgstr "Drücken Sie \"Änderung übernehmen\", um das Beispiel zu aktualisieren."
|
| 231 |
|
| 232 |
# @ broken-link-checker
|
| 233 |
+
#: core/core.php:851
|
| 234 |
msgid "Apply custom formatting to removed links"
|
| 235 |
msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
|
| 236 |
|
| 237 |
+
#: core/core.php:871
|
| 238 |
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
| 239 |
msgstr "Beispiel: Lorem ipsum <span %s>entfernter Link</span>, dolor sit amet."
|
| 240 |
|
| 241 |
# @ broken-link-checker
|
| 242 |
+
#: core/core.php:884
|
| 243 |
msgid "Stop search engines from following broken links"
|
| 244 |
msgstr "Suchmaschinen von folgenden fehlerhaften Links stoppen"
|
| 245 |
|
| 246 |
+
#: core/core.php:890
|
| 247 |
+
msgctxt "\"Link tweaks\" settings"
|
| 248 |
+
msgid ""
|
| 249 |
+
"These settings only apply to the content of posts, not comments or custom "
|
| 250 |
+
"fields."
|
| 251 |
+
msgstr ""
|
| 252 |
+
"Diese Einstellungen gelten nur für den Inhalt der Beiträge, keine Kommentare "
|
| 253 |
+
"oder benutzerdefinierte Felder."
|
| 254 |
+
|
| 255 |
+
#: core/core.php:901
|
| 256 |
msgctxt "settings page"
|
| 257 |
msgid "Suggestions"
|
| 258 |
msgstr "Vorschläge"
|
| 259 |
|
| 260 |
# @ broken-link-checker
|
| 261 |
+
#: core/core.php:906
|
| 262 |
msgid "Suggest alternatives to broken links"
|
| 263 |
msgstr "Alternativen zu fehlerhaften Links vorschlagen"
|
| 264 |
|
| 265 |
+
#: core/core.php:912
|
| 266 |
+
msgctxt "settings page"
|
| 267 |
+
msgid "Warnings"
|
| 268 |
+
msgstr "Warnungen"
|
| 269 |
+
|
| 270 |
+
#: core/core.php:917
|
| 271 |
+
msgid "Show uncertain or minor problems as \"warnings\" instead of \"broken\""
|
| 272 |
+
msgstr ""
|
| 273 |
+
"Unklare oder geringfügige Probleme als \"Warnung\" anstelle \"Fehlerhaft\" "
|
| 274 |
+
"anzeigen"
|
| 275 |
+
|
| 276 |
+
#: core/core.php:920
|
| 277 |
+
msgid ""
|
| 278 |
+
"Turning off this option will make the plugin report all problems as broken "
|
| 279 |
+
"links."
|
| 280 |
+
msgstr ""
|
| 281 |
+
"Durch deaktivieren dieser Option werden im Plugin-Bericht alle Probleme als "
|
| 282 |
+
"fehlerhafte Links gekennzeichnet."
|
| 283 |
+
|
| 284 |
# @ broken-link-checker
|
| 285 |
+
#: core/core.php:935
|
| 286 |
msgid "Look for links in"
|
| 287 |
msgstr "Suchen Sie nach Links in"
|
| 288 |
|
| 289 |
# @ broken-link-checker
|
| 290 |
+
#: core/core.php:946
|
| 291 |
msgid "Post statuses"
|
| 292 |
msgstr "Beitrag Status"
|
| 293 |
|
| 294 |
# @ broken-link-checker
|
| 295 |
+
#: core/core.php:979
|
| 296 |
msgid "Link types"
|
| 297 |
msgstr "Link Typen"
|
| 298 |
|
| 299 |
# @ broken-link-checker
|
| 300 |
+
#: core/core.php:985
|
| 301 |
msgid "Error : All link parsers missing!"
|
| 302 |
msgstr "Fehler: Alle Link-Parser fehlen!"
|
| 303 |
|
| 304 |
# @ broken-link-checker
|
| 305 |
+
#: core/core.php:992
|
| 306 |
msgid "Exclusion list"
|
| 307 |
msgstr "Ausschlussliste"
|
| 308 |
|
| 309 |
# @ broken-link-checker
|
| 310 |
+
#: core/core.php:993
|
| 311 |
msgid ""
|
| 312 |
"Don't check links where the URL contains any of these words (one per line) :"
|
| 313 |
msgstr ""
|
| 314 |
"URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
|
| 315 |
|
| 316 |
# @ broken-link-checker
|
| 317 |
+
#: core/core.php:1011
|
| 318 |
msgid "Check links using"
|
| 319 |
msgstr "Überprüfe Links"
|
| 320 |
|
| 321 |
# @ broken-link-checker
|
| 322 |
+
#: core/core.php:1030 includes/links.php:1012
|
| 323 |
msgid "Timeout"
|
| 324 |
msgstr "Zeitüberschreitung"
|
| 325 |
|
| 326 |
# @ broken-link-checker
|
| 327 |
# @ default
|
| 328 |
+
#: core/core.php:1036 core/core.php:1123 core/core.php:3409
|
| 329 |
msgid "%s seconds"
|
| 330 |
msgstr "%s Sekunden"
|
| 331 |
|
| 332 |
# @ broken-link-checker
|
| 333 |
+
#: core/core.php:1045
|
| 334 |
msgid "Links that take longer than this to load will be marked as broken."
|
| 335 |
msgstr ""
|
| 336 |
"Links die länger zum laden brauchen als hier eingetragen, gelten als "
|
| 337 |
"fehlerhaft."
|
| 338 |
|
| 339 |
# @ broken-link-checker
|
| 340 |
+
#: core/core.php:1052
|
| 341 |
msgid "Link monitor"
|
| 342 |
msgstr "Link Monitor"
|
| 343 |
|
| 344 |
# @ broken-link-checker
|
| 345 |
+
#: core/core.php:1060
|
| 346 |
msgid "Run continuously while the Dashboard is open"
|
| 347 |
msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
|
| 348 |
|
| 349 |
# @ broken-link-checker
|
| 350 |
+
#: core/core.php:1068
|
| 351 |
msgid "Run hourly in the background"
|
| 352 |
msgstr "Stündlich im Hintergrund arbeiten"
|
| 353 |
|
| 354 |
+
#: core/core.php:1076
|
| 355 |
msgid "Show the dashboard widget for"
|
| 356 |
msgstr "Dashboard-Widget anzeigen für"
|
| 357 |
|
| 358 |
+
#: core/core.php:1081
|
| 359 |
msgctxt "dashboard widget visibility"
|
| 360 |
msgid "Administrator"
|
| 361 |
msgstr "Administrator"
|
| 362 |
|
| 363 |
+
#: core/core.php:1082
|
| 364 |
msgctxt "dashboard widget visibility"
|
| 365 |
msgid "Editor and above"
|
| 366 |
msgstr "Redakteur und höher"
|
| 367 |
|
| 368 |
+
#: core/core.php:1083
|
| 369 |
msgctxt "dashboard widget visibility"
|
| 370 |
msgid "Nobody (disables the widget)"
|
| 371 |
msgstr "Niemand (deaktiviert das Widget)"
|
| 372 |
|
| 373 |
# @ broken-link-checker
|
| 374 |
+
#: core/core.php:1099
|
| 375 |
+
msgctxt "settings page"
|
| 376 |
+
msgid "Show link actions"
|
| 377 |
+
msgstr "Zeige Link Aktionen"
|
| 378 |
+
|
| 379 |
+
# @ broken-link-checker
|
| 380 |
+
#: core/core.php:1117
|
| 381 |
msgid "Max. execution time"
|
| 382 |
msgstr "Max. Ausführungszeit"
|
| 383 |
|
| 384 |
# @ broken-link-checker
|
| 385 |
+
#: core/core.php:1134
|
| 386 |
msgid ""
|
| 387 |
"The plugin works by periodically launching a background job that parses your "
|
| 388 |
"posts for links, checks the discovered URLs, and performs other time-"
|
| 395 |
"Instanzen laufen sollen, bevor sie gestoppt werden."
|
| 396 |
|
| 397 |
# @ broken-link-checker
|
| 398 |
+
#: core/core.php:1143
|
| 399 |
msgid "Server load limit"
|
| 400 |
msgstr "Server Belastungsgrenze"
|
| 401 |
|
| 402 |
+
#: core/core.php:1158
|
| 403 |
msgid "Current load : %s"
|
| 404 |
msgstr "Aktuelle Belastung: %s"
|
| 405 |
|
| 406 |
# @ broken-link-checker
|
| 407 |
+
#: core/core.php:1163
|
| 408 |
msgid ""
|
| 409 |
"Link checking will be suspended if the average <a href=\"%s\">server load</"
|
| 410 |
"a> rises above this number. Leave this field blank to disable load limiting."
|
| 411 |
msgstr ""
|
| 412 |
"Die Link Überprüfung wird ausgesetzt, wenn die durchschnittliche <a href=\"%s"
|
| 413 |
"\">Belastung des Servers</a> über diese Zahl ansteigt. Lassen Sie dieses "
|
| 414 |
+
"Feld leer, um das Belastungslimit zu deaktivieren."
|
| 415 |
|
| 416 |
# @ broken-link-checker
|
| 417 |
+
#: core/core.php:1172
|
| 418 |
msgid "Not available"
|
| 419 |
msgstr "Nicht verfügbar"
|
| 420 |
|
| 421 |
# @ broken-link-checker
|
| 422 |
+
#: core/core.php:1174
|
| 423 |
msgid ""
|
| 424 |
"Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
|
| 425 |
"code> is present and accessible."
|
| 427 |
"Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</"
|
| 428 |
"code> vorhanden und zugänglich ist."
|
| 429 |
|
| 430 |
+
#: core/core.php:1182
|
| 431 |
msgid "Target resource usage"
|
| 432 |
msgstr "Ziel Ressourcenverbrauch"
|
| 433 |
|
| 434 |
+
#: core/core.php:1200
|
| 435 |
msgid "Logging"
|
| 436 |
msgstr "Protokollierung"
|
| 437 |
|
| 438 |
+
#: core/core.php:1206
|
| 439 |
msgid "Enable logging"
|
| 440 |
msgstr "Protokollierung aktivieren"
|
| 441 |
|
| 442 |
+
#: core/core.php:1213
|
| 443 |
msgid "Log file location"
|
| 444 |
msgstr "Speicherort Protokolldatei"
|
| 445 |
|
| 446 |
+
#: core/core.php:1222
|
| 447 |
msgctxt "log file location"
|
| 448 |
msgid "Default"
|
| 449 |
msgstr "Standard"
|
| 450 |
|
| 451 |
# @ broken-link-checker
|
| 452 |
+
#: core/core.php:1236
|
| 453 |
msgctxt "log file location"
|
| 454 |
msgid "Custom"
|
| 455 |
msgstr "Benutzerdefiniert"
|
| 456 |
|
| 457 |
# @ broken-link-checker
|
| 458 |
+
#: core/core.php:1248
|
| 459 |
msgid "Forced recheck"
|
| 460 |
msgstr "Erneute Überprüfung erzwingen"
|
| 461 |
|
| 462 |
# @ broken-link-checker
|
| 463 |
+
#: core/core.php:1251
|
| 464 |
msgid "Re-check all pages"
|
| 465 |
msgstr "Überprüfe alle Seiten noch einmal"
|
| 466 |
|
| 467 |
# @ broken-link-checker
|
| 468 |
+
#: core/core.php:1255
|
| 469 |
msgid ""
|
| 470 |
"The \"Nuclear Option\". Click this button to make the plugin empty its link "
|
| 471 |
"database and recheck the entire site from scratch."
|
| 474 |
"Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
|
| 475 |
|
| 476 |
# @ default
|
| 477 |
+
#: core/core.php:1266
|
| 478 |
msgid "Save Changes"
|
| 479 |
msgstr "Änderungen speichern"
|
| 480 |
|
| 481 |
# @ broken-link-checker
|
| 482 |
+
#: core/core.php:1317
|
| 483 |
msgid "Configure"
|
| 484 |
msgstr "Konfigurieren"
|
| 485 |
|
| 486 |
+
#: core/core.php:1399
|
| 487 |
msgid ""
|
| 488 |
"Enter the names of custom fields you want to check (one per line). If a "
|
| 489 |
"field contains HTML code, prefix its name with <code>html:</code>. For "
|
| 495 |
"code>."
|
| 496 |
|
| 497 |
# @ broken-link-checker
|
| 498 |
+
#: core/core.php:1534 core/core.php:1617 core/core.php:1649
|
| 499 |
msgid "Database error : %s"
|
| 500 |
msgstr "Datenbank Fehler: %s"
|
| 501 |
|
| 502 |
# @ broken-link-checker
|
| 503 |
+
#: core/core.php:1599
|
| 504 |
msgid "You must enter a filter name!"
|
| 505 |
msgstr "Sie müssen einen Filter Namen eingeben!"
|
| 506 |
|
| 507 |
# @ broken-link-checker
|
| 508 |
+
#: core/core.php:1603
|
| 509 |
msgid "Invalid search query."
|
| 510 |
msgstr "Ungültige Suchanfrage."
|
| 511 |
|
| 512 |
# @ broken-link-checker
|
| 513 |
+
#: core/core.php:1612
|
| 514 |
msgid "Filter \"%s\" created"
|
| 515 |
msgstr "Filter \"%s\" erstellt"
|
| 516 |
|
| 517 |
# @ broken-link-checker
|
| 518 |
+
#: core/core.php:1639
|
| 519 |
msgid "Filter ID not specified."
|
| 520 |
msgstr "Link ID nicht spezifiziert."
|
| 521 |
|
| 522 |
# @ broken-link-checker
|
| 523 |
+
#: core/core.php:1646
|
| 524 |
msgid "Filter deleted"
|
| 525 |
msgstr "Filter gelöscht"
|
| 526 |
|
| 527 |
# @ broken-link-checker
|
| 528 |
+
#: core/core.php:1693
|
| 529 |
msgid "Replaced %d redirect with a direct link"
|
| 530 |
msgid_plural "Replaced %d redirects with direct links"
|
| 531 |
msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
|
| 532 |
msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
|
| 533 |
|
| 534 |
# @ broken-link-checker
|
| 535 |
+
#: core/core.php:1704
|
| 536 |
+
msgid "Failed to fix %d redirect"
|
| 537 |
+
msgid_plural "Failed to fix %d redirects"
|
| 538 |
+
msgstr[0] "Übernehmen der Umleitung %d schlug fehl"
|
| 539 |
+
msgstr[1] "Übernehmen der Umleitungen %d schlug fehl"
|
| 540 |
+
|
| 541 |
+
# @ broken-link-checker
|
| 542 |
+
#: core/core.php:1715
|
| 543 |
msgid "None of the selected links are redirects!"
|
| 544 |
msgstr "Keiner der ausgewählten Links sind Umleitungen!"
|
| 545 |
|
| 546 |
# @ broken-link-checker
|
| 547 |
+
#: core/core.php:1793
|
| 548 |
msgid "%d link updated."
|
| 549 |
msgid_plural "%d links updated."
|
| 550 |
msgstr[0] "Link %d aktualisiert."
|
| 551 |
msgstr[1] "Links %d aktualisiert."
|
| 552 |
|
| 553 |
# @ broken-link-checker
|
| 554 |
+
#: core/core.php:1804
|
| 555 |
msgid "Failed to update %d link."
|
| 556 |
msgid_plural "Failed to update %d links."
|
| 557 |
msgstr[0] "Link %d konnte nicht aktualisiert werden."
|
| 558 |
msgstr[1] "Links %d konnten nicht aktualisiert werden."
|
| 559 |
|
| 560 |
# @ broken-link-checker
|
| 561 |
+
#: core/core.php:1893
|
| 562 |
msgid "%d link removed"
|
| 563 |
msgid_plural "%d links removed"
|
| 564 |
msgstr[0] "%d Link entfernt"
|
| 565 |
msgstr[1] "%d Links entfernt"
|
| 566 |
|
| 567 |
# @ broken-link-checker
|
| 568 |
+
#: core/core.php:1904
|
| 569 |
msgid "Failed to remove %d link"
|
| 570 |
msgid_plural "Failed to remove %d links"
|
| 571 |
msgstr[0] "Link %d konnte nicht entfernt werden"
|
| 572 |
msgstr[1] "Links %d konnten nicht entfernt werden"
|
| 573 |
|
| 574 |
# @ default
|
| 575 |
+
#: core/core.php:2013
|
| 576 |
msgid ""
|
| 577 |
"%d item was skipped because it can't be moved to the Trash. You need to "
|
| 578 |
"delete it manually."
|
| 587 |
"verschoben werden können. Löschen Sie diese manuell."
|
| 588 |
|
| 589 |
# @ broken-link-checker
|
| 590 |
+
#: core/core.php:2035
|
| 591 |
msgid "Didn't find anything to delete!"
|
| 592 |
msgstr "Nichts gefunden um zu löschen!"
|
| 593 |
|
| 594 |
# @ broken-link-checker
|
| 595 |
+
#: core/core.php:2063
|
| 596 |
msgid "%d link scheduled for rechecking"
|
| 597 |
msgid_plural "%d links scheduled for rechecking"
|
| 598 |
msgstr[0] "%d Link zur erneuten Überprüfung geplant"
|
| 599 |
msgstr[1] "%d Links zur erneuten Überprüfung geplant"
|
| 600 |
|
| 601 |
# @ broken-link-checker
|
| 602 |
+
#: core/core.php:2110 core/core.php:2923
|
| 603 |
msgid "This link was manually marked as working by the user."
|
| 604 |
msgstr ""
|
| 605 |
"Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
|
| 606 |
|
| 607 |
# @ broken-link-checker
|
| 608 |
+
#: core/core.php:2117 core/core.php:2175
|
| 609 |
msgid "Couldn't modify link %d"
|
| 610 |
msgstr "Link %d konnte nicht geändert werden"
|
| 611 |
|
| 612 |
# @ broken-link-checker
|
| 613 |
+
#: core/core.php:2127
|
| 614 |
msgid "%d link marked as not broken"
|
| 615 |
msgid_plural "%d links marked as not broken"
|
| 616 |
msgstr[0] "%d Link als nicht fehlerhaft markiert"
|
| 617 |
msgstr[1] "%d Links als nicht fehlerhaft markiert"
|
| 618 |
|
| 619 |
# @ broken-link-checker
|
| 620 |
+
#: core/core.php:2185
|
| 621 |
+
msgid "%d link dismissed"
|
| 622 |
+
msgid_plural "%d links dismissed"
|
| 623 |
+
msgstr[0] "%d Link abgelehnt"
|
| 624 |
+
msgstr[1] "%d Links abgelehnt"
|
| 625 |
+
|
| 626 |
+
#: core/core.php:2242
|
| 627 |
+
msgid ""
|
| 628 |
+
"The \"Warnings\" page lists problems that are probably temporary or "
|
| 629 |
+
"suspected to be false positives.<br> Warnings that persist for a long time "
|
| 630 |
+
"will usually be reclassified as broken links."
|
| 631 |
+
msgstr ""
|
| 632 |
+
"Die Seite \"Warnungen\" listet Probleme auf, die wahrscheinlich "
|
| 633 |
+
"vorübergehend oder verdächtigt werden, Fehlalarme zu sein. <br> Warnungen, "
|
| 634 |
+
"die für eine lange Zeit bestehen, werden in der Regel als fehlerhafte Links "
|
| 635 |
+
"eingestuft."
|
| 636 |
+
|
| 637 |
+
#: core/core.php:2247
|
| 638 |
+
msgctxt "admin notice under Tools - Broken links - Warnings"
|
| 639 |
+
msgid "Hide notice"
|
| 640 |
+
msgstr "Hinweis ausblenden"
|
| 641 |
+
|
| 642 |
+
#: core/core.php:2253
|
| 643 |
+
msgctxt "a link from the admin notice under Tools - Broken links - Warnings"
|
| 644 |
+
msgid "Change warning settings"
|
| 645 |
+
msgstr "Warneinstellungen ändern"
|
| 646 |
+
|
| 647 |
+
# @ broken-link-checker
|
| 648 |
+
#: core/core.php:2278
|
| 649 |
msgid "Table columns"
|
| 650 |
msgstr "Tabellenspalten"
|
| 651 |
|
| 652 |
# @ default
|
| 653 |
+
#: core/core.php:2297
|
| 654 |
msgid "Show on screen"
|
| 655 |
msgstr "Auf dem Bildschirm anzeigen"
|
| 656 |
|
| 657 |
# @ broken-link-checker
|
| 658 |
+
#: core/core.php:2304
|
| 659 |
msgid "links"
|
| 660 |
msgstr "Links"
|
| 661 |
|
| 662 |
# @ default
|
| 663 |
# @ broken-link-checker
|
| 664 |
+
#: core/core.php:2305 includes/admin/table-printer.php:171
|
| 665 |
msgid "Apply"
|
| 666 |
msgstr "Anwenden"
|
| 667 |
|
| 668 |
# @ broken-link-checker
|
| 669 |
+
#: core/core.php:2309
|
| 670 |
msgid "Misc"
|
| 671 |
msgstr "Sonstige"
|
| 672 |
|
| 673 |
# @ broken-link-checker
|
| 674 |
+
#: core/core.php:2324
|
| 675 |
msgid "Highlight links broken for at least %s days"
|
| 676 |
msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
|
| 677 |
|
| 678 |
# @ broken-link-checker
|
| 679 |
+
#: core/core.php:2333
|
| 680 |
msgid "Color-code status codes"
|
| 681 |
msgstr "Farb-Code Status Codes"
|
| 682 |
|
| 683 |
# @ broken-link-checker
|
| 684 |
+
#: core/core.php:2350 core/core.php:2907 core/core.php:2948 core/core.php:2981
|
| 685 |
+
#: core/core.php:3070 core/core.php:3114 core/core.php:3175
|
| 686 |
msgid "You're not allowed to do that!"
|
| 687 |
msgstr "Sie haben nicht die Erlaubnis das zu tun!"
|
| 688 |
|
| 689 |
# @ broken-link-checker
|
| 690 |
+
#: core/core.php:2778
|
| 691 |
msgid "View broken links"
|
| 692 |
msgstr "Fehlerhafte Links anschauen"
|
| 693 |
|
| 694 |
# @ broken-link-checker
|
| 695 |
+
#: core/core.php:2779
|
| 696 |
msgid "Found %d broken link"
|
| 697 |
msgid_plural "Found %d broken links"
|
| 698 |
msgstr[0] "%d fehlerhafte Links gefunden"
|
| 699 |
msgstr[1] "%d fehlerhafte Links gefunden"
|
| 700 |
|
| 701 |
# @ broken-link-checker
|
| 702 |
+
#: core/core.php:2785
|
| 703 |
msgid "No broken links found."
|
| 704 |
msgstr "Keine fehlerhaften Links gefunden."
|
| 705 |
|
| 706 |
# @ broken-link-checker
|
| 707 |
+
#: core/core.php:2792
|
| 708 |
msgid "%d URL in the work queue"
|
| 709 |
msgid_plural "%d URLs in the work queue"
|
| 710 |
msgstr[0] "%d URL in der Warteschlange"
|
| 711 |
msgstr[1] "%d URLs in der Warteschlange"
|
| 712 |
|
| 713 |
# @ broken-link-checker
|
| 714 |
+
#: core/core.php:2795
|
| 715 |
msgid "No URLs in the work queue."
|
| 716 |
msgstr "Keine URLs in der Warteschlange."
|
| 717 |
|
| 718 |
# @ broken-link-checker
|
| 719 |
+
#: core/core.php:2801
|
| 720 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 721 |
msgid "%d unique URL"
|
| 722 |
msgid_plural "%d unique URLs"
|
| 724 |
msgstr[1] "%d eindeutige URLs"
|
| 725 |
|
| 726 |
# @ broken-link-checker
|
| 727 |
+
#: core/core.php:2805
|
| 728 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 729 |
msgid "%d link"
|
| 730 |
msgid_plural "%d links"
|
| 732 |
msgstr[1] "%d Links"
|
| 733 |
|
| 734 |
# @ broken-link-checker
|
| 735 |
+
#: core/core.php:2811
|
| 736 |
msgid "Detected %1$s in %2$s and still searching..."
|
| 737 |
msgstr "Endeckt %1$s in %2$s und suche immer noch ..."
|
| 738 |
|
| 739 |
# @ broken-link-checker
|
| 740 |
+
#: core/core.php:2817
|
| 741 |
msgid "Detected %1$s in %2$s."
|
| 742 |
msgstr "Endeckt %1$s in %2$s."
|
| 743 |
|
| 744 |
# @ broken-link-checker
|
| 745 |
+
#: core/core.php:2824
|
| 746 |
msgid "Searching your blog for links..."
|
| 747 |
msgstr "Durchsucht Ihr Blog nach Links ..."
|
| 748 |
|
| 749 |
# @ broken-link-checker
|
| 750 |
+
#: core/core.php:2826
|
| 751 |
msgid "No links detected."
|
| 752 |
msgstr "Keine Links gefunden."
|
| 753 |
|
| 754 |
# @ broken-link-checker
|
| 755 |
+
#: core/core.php:2852
|
| 756 |
msgctxt "current load"
|
| 757 |
msgid "Unknown"
|
| 758 |
msgstr "Unbekannt"
|
| 759 |
|
| 760 |
# @ broken-link-checker
|
| 761 |
+
#: core/core.php:2915 core/core.php:2956 core/core.php:2996 core/core.php:3080
|
| 762 |
+
#: core/core.php:3129 core/core.php:3190
|
| 763 |
msgid "Oops, I can't find the link %d"
|
| 764 |
msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
|
| 765 |
|
| 766 |
# @ broken-link-checker
|
| 767 |
+
#: core/core.php:2929 core/core.php:2966
|
| 768 |
msgid "Oops, couldn't modify the link!"
|
| 769 |
msgstr "Hoppla, der Link konnte nicht geändert werden!"
|
| 770 |
|
| 771 |
# @ broken-link-checker
|
| 772 |
+
#: core/core.php:2932 core/core.php:2969 core/core.php:3106 core/core.php:3120
|
| 773 |
+
#: core/core.php:3181
|
| 774 |
msgid "Error : link_id not specified"
|
| 775 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
| 776 |
|
| 777 |
# @ broken-link-checker
|
| 778 |
+
#: core/core.php:2987
|
| 779 |
msgid "Error : link_id or new_url not specified"
|
| 780 |
msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
|
| 781 |
|
| 782 |
# @ broken-link-checker
|
| 783 |
+
#: core/core.php:3005
|
| 784 |
msgid "Oops, the new URL is invalid!"
|
| 785 |
msgstr "Hoppla, die neue URL funktioniert nicht!"
|
| 786 |
|
| 787 |
# @ broken-link-checker
|
| 788 |
+
#: core/core.php:3020
|
| 789 |
msgid "An unexpected error occurred!"
|
| 790 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
| 791 |
|
| 792 |
# @ broken-link-checker
|
| 793 |
+
#: core/core.php:3089
|
| 794 |
msgid "An unexpected error occured!"
|
| 795 |
msgstr "Ein unerwarteter Fehler ist aufgetreten!"
|
| 796 |
|
| 797 |
# @ broken-link-checker
|
| 798 |
+
#: core/core.php:3217
|
| 799 |
msgid "You don't have sufficient privileges to access this information!"
|
| 800 |
msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
|
| 801 |
|
| 802 |
# @ broken-link-checker
|
| 803 |
+
#: core/core.php:3230
|
| 804 |
msgid "Error : link ID not specified"
|
| 805 |
msgstr "Fehler: Link ID nicht spezifiziert"
|
| 806 |
|
| 807 |
# @ broken-link-checker
|
| 808 |
+
#: core/core.php:3244
|
| 809 |
msgid "Failed to load link details (%s)"
|
| 810 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
| 811 |
|
| 812 |
# @ broken-link-checker
|
| 813 |
#. Plugin Name of the plugin/theme
|
| 814 |
+
#: core/core.php:3298
|
| 815 |
msgid "Broken Link Checker"
|
| 816 |
msgstr "Broken Link Checker"
|
| 817 |
|
| 818 |
# @ broken-link-checker
|
| 819 |
+
#: core/core.php:3318
|
| 820 |
msgid "PHP version"
|
| 821 |
msgstr "PHP Version"
|
| 822 |
|
| 823 |
# @ broken-link-checker
|
| 824 |
+
#: core/core.php:3324
|
| 825 |
msgid "MySQL version"
|
| 826 |
msgstr "MySQL Version"
|
| 827 |
|
| 828 |
# @ broken-link-checker
|
| 829 |
+
#: core/core.php:3337
|
| 830 |
msgid ""
|
| 831 |
"You have an old version of CURL. Redirect detection may not work properly."
|
| 832 |
msgstr ""
|
| 834 |
"funktioniert eventuell nicht."
|
| 835 |
|
| 836 |
# @ broken-link-checker
|
| 837 |
+
#: core/core.php:3349 core/core.php:3365 core/core.php:3370
|
| 838 |
msgid "Not installed"
|
| 839 |
msgstr "Nicht installiert"
|
| 840 |
|
| 841 |
# @ broken-link-checker
|
| 842 |
+
#: core/core.php:3352
|
| 843 |
msgid "CURL version"
|
| 844 |
msgstr "CURL Version"
|
| 845 |
|
| 846 |
# @ broken-link-checker
|
| 847 |
+
#: core/core.php:3358
|
| 848 |
msgid "Installed"
|
| 849 |
msgstr "Installiert"
|
| 850 |
|
| 851 |
# @ broken-link-checker
|
| 852 |
+
#: core/core.php:3371
|
| 853 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
| 854 |
msgstr ""
|
| 855 |
"Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin "
|
| 856 |
"funktioniert!"
|
| 857 |
|
| 858 |
# @ broken-link-checker
|
| 859 |
+
#: core/core.php:3382
|
| 860 |
msgid "On"
|
| 861 |
msgstr "An"
|
| 862 |
|
| 863 |
# @ broken-link-checker
|
| 864 |
+
#: core/core.php:3383
|
| 865 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
| 866 |
msgstr ""
|
| 867 |
"Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode "
|
| 868 |
"aktiviert ist."
|
| 869 |
|
| 870 |
# @ broken-link-checker
|
| 871 |
+
#: core/core.php:3388 core/core.php:3402
|
| 872 |
msgid "Off"
|
| 873 |
msgstr "Aus"
|
| 874 |
|
| 875 |
# @ broken-link-checker
|
| 876 |
+
#: core/core.php:3396
|
| 877 |
msgid "On ( %s )"
|
| 878 |
msgstr "An (%s)"
|
| 879 |
|
| 880 |
# @ broken-link-checker
|
| 881 |
+
#: core/core.php:3397
|
| 882 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
| 883 |
msgstr ""
|
| 884 |
"Umleitungen werden eventuell als fehlerhafte Links erkannt, falls "
|
| 885 |
"open_basedir aktiviert ist."
|
| 886 |
|
| 887 |
# @ broken-link-checker
|
| 888 |
+
#: core/core.php:3426
|
| 889 |
msgid ""
|
| 890 |
"If this value is zero even after several page reloads you have probably "
|
| 891 |
"encountered a bug."
|
| 894 |
"ein Fehler aufgetreten."
|
| 895 |
|
| 896 |
# @ broken-link-checker
|
| 897 |
+
#: core/core.php:3549 core/core.php:3668
|
| 898 |
msgid "[%s] Broken links detected"
|
| 899 |
msgstr "[%s] Fehlerhafte Links entdeckt"
|
| 900 |
|
| 901 |
# @ broken-link-checker
|
| 902 |
+
#: core/core.php:3554
|
| 903 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
| 904 |
msgid_plural ""
|
| 905 |
"Broken Link Checker has detected %d new broken links on your site."
|
| 909 |
"Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
|
| 910 |
|
| 911 |
# @ broken-link-checker
|
| 912 |
+
#: core/core.php:3585
|
| 913 |
msgid "Here's a list of the first %d broken links:"
|
| 914 |
msgid_plural "Here's a list of the first %d broken links:"
|
| 915 |
msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
| 916 |
msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
|
| 917 |
|
| 918 |
# @ broken-link-checker
|
| 919 |
+
#: core/core.php:3594
|
| 920 |
msgid "Here's a list of the new broken links: "
|
| 921 |
msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
|
| 922 |
|
| 923 |
# @ broken-link-checker
|
| 924 |
+
#: core/core.php:3603
|
| 925 |
msgid "Link text : %s"
|
| 926 |
msgstr "Linktext: %s"
|
| 927 |
|
| 928 |
# @ broken-link-checker
|
| 929 |
+
#: core/core.php:3604
|
| 930 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
| 931 |
msgstr "Link URL: <a href=\"%s\">%s</a>"
|
| 932 |
|
| 933 |
# @ broken-link-checker
|
| 934 |
+
#: core/core.php:3605
|
| 935 |
msgid "Source : %s"
|
| 936 |
msgstr "Quelle: %s"
|
| 937 |
|
| 938 |
# @ brokenk-link-checker
|
| 939 |
+
#: core/core.php:3619
|
| 940 |
msgid "You can see all broken links here:"
|
| 941 |
msgstr "Hier sehen Sie alle fehlerhaften Links:"
|
| 942 |
|
| 943 |
# @ broken-link-checker
|
| 944 |
+
#: core/core.php:3673
|
| 945 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
| 946 |
msgid_plural ""
|
| 947 |
"Broken Link Checker has detected %d new broken links in your posts."
|
| 950 |
msgstr[1] "Broken Link Checker hat %d fehlerhafte Links in Beiträgen entdeckt."
|
| 951 |
|
| 952 |
# @ default
|
| 953 |
+
#: core/init.php:255
|
| 954 |
msgid "Once Weekly"
|
| 955 |
msgstr "Einmal wöchentlich"
|
| 956 |
|
| 957 |
# @ default
|
| 958 |
+
#: core/init.php:261
|
| 959 |
msgid "Twice a Month"
|
| 960 |
msgstr "Zweimal im Monat"
|
| 961 |
|
| 962 |
# @ broken-link-checker
|
| 963 |
+
#: core/init.php:337
|
| 964 |
msgid ""
|
| 965 |
"Broken Link Checker installation failed. Try deactivating and then "
|
| 966 |
"reactivating the plugin."
|
| 968 |
"Broken Link Checker Installation fehlgeschlagen. Deaktivieren Sie das Plugin "
|
| 969 |
"und aktivieren es anschliessend wieder."
|
| 970 |
|
| 971 |
+
#: core/init.php:341
|
| 972 |
msgid ""
|
| 973 |
"Please activate the plugin separately on each site. Network activation is "
|
| 974 |
"not supported."
|
| 982 |
msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
|
| 983 |
|
| 984 |
# @ broken-link-checker
|
| 985 |
+
#: includes/admin/links-page-js.php:63 includes/admin/links-page-js.php:639
|
| 986 |
msgid "Wait..."
|
| 987 |
msgstr "Warte ..."
|
| 988 |
|
| 989 |
+
#: includes/admin/links-page-js.php:368
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 990 |
msgctxt "link text"
|
| 991 |
msgid "(None)"
|
| 992 |
msgstr "(Keine)"
|
| 993 |
|
| 994 |
+
#: includes/admin/links-page-js.php:369
|
| 995 |
msgctxt "link text"
|
| 996 |
msgid "(Multiple links)"
|
| 997 |
msgstr "(Mehrere Links)"
|
| 998 |
|
| 999 |
# @ broken-link-checker
|
| 1000 |
+
#: includes/admin/links-page-js.php:427
|
| 1001 |
msgctxt "link suggestions"
|
| 1002 |
msgid "Searching..."
|
| 1003 |
msgstr "Suche ..."
|
| 1004 |
|
| 1005 |
# @ broken-link-checker
|
| 1006 |
+
#: includes/admin/links-page-js.php:428
|
| 1007 |
msgctxt "link suggestions"
|
| 1008 |
msgid "No suggestions available."
|
| 1009 |
msgstr "Kein Vorschlag verfügbar."
|
| 1010 |
|
| 1011 |
+
#: includes/admin/links-page-js.php:429
|
| 1012 |
msgctxt "link suggestions"
|
| 1013 |
msgid "Archived page from %s (via the Wayback Machine)"
|
| 1014 |
msgstr "Archivierte Seite von %s (via Wayback Machine)"
|
| 1015 |
|
| 1016 |
# @ broken-link-checker
|
| 1017 |
+
#: includes/admin/links-page-js.php:523
|
| 1018 |
msgid "%d instances of the link were successfully modified."
|
| 1019 |
msgstr "%d Instanzen von diesem Link wurden erfolgreich geändert."
|
| 1020 |
|
| 1021 |
# @ broken-link-checker
|
| 1022 |
+
#: includes/admin/links-page-js.php:529
|
| 1023 |
msgid ""
|
| 1024 |
"However, %d instances couldn't be edited and still point to the old URL."
|
| 1025 |
msgstr ""
|
| 1027 |
"noch auf die alte URL."
|
| 1028 |
|
| 1029 |
# @ broken-link-checker
|
| 1030 |
+
#: includes/admin/links-page-js.php:535
|
| 1031 |
msgid "The link could not be modified."
|
| 1032 |
msgstr "Der Link konnte nicht geändert werden."
|
| 1033 |
|
| 1034 |
# @ broken-link-checker
|
| 1035 |
+
#: includes/admin/links-page-js.php:538
|
| 1036 |
msgid "The following error(s) occurred :"
|
| 1037 |
msgstr "Folgende Fehler sind aufgetreten:"
|
| 1038 |
|
| 1039 |
+
#: includes/admin/links-page-js.php:602
|
| 1040 |
msgid "Error: Link URL must not be empty."
|
| 1041 |
msgstr "Fehler: Die Link URL darf nicht leer sein."
|
| 1042 |
|
| 1043 |
# @ broken-link-checker
|
| 1044 |
+
#: includes/admin/links-page-js.php:677
|
| 1045 |
msgid "%d instances of the link were successfully unlinked."
|
| 1046 |
msgstr "%d Instanzen von diesem Link wurden erfolgreich gelöscht."
|
| 1047 |
|
| 1048 |
# @ broken-link-checker
|
| 1049 |
+
#: includes/admin/links-page-js.php:683
|
| 1050 |
msgid "However, %d instances couldn't be removed."
|
| 1051 |
msgstr "Allerdings, %d Instanzen konnten nicht entfernt werden."
|
| 1052 |
|
| 1053 |
# @ broken-link-checker
|
| 1054 |
+
#: includes/admin/links-page-js.php:688
|
| 1055 |
msgid "The plugin failed to remove the link."
|
| 1056 |
msgstr "Das Plugin konnte den Link nicht entfernen."
|
| 1057 |
|
| 1058 |
# @ broken-link-checker
|
| 1059 |
+
#: includes/admin/links-page-js.php:691
|
| 1060 |
msgid "The following error(s) occured :"
|
| 1061 |
msgstr "Folgende Fehler sind aufgetreten:"
|
| 1062 |
|
| 1063 |
# @ broken-link-checker
|
| 1064 |
+
#: includes/admin/links-page-js.php:737
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1065 |
msgid "Enter a name for the new custom filter"
|
| 1066 |
msgstr "Gib einen Namen für den neuen benutzerdefinierten Filter ein"
|
| 1067 |
|
| 1068 |
# @ broken-link-checker
|
| 1069 |
+
#: includes/admin/links-page-js.php:749
|
| 1070 |
msgid ""
|
| 1071 |
"You are about to delete the current filter.\n"
|
| 1072 |
"'Cancel' to stop, 'OK' to delete"
|
| 1075 |
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
| 1076 |
|
| 1077 |
# @ broken-link-checker
|
| 1078 |
+
#: includes/admin/links-page-js.php:773
|
| 1079 |
msgid ""
|
| 1080 |
"Are you sure you want to delete all posts, bookmarks or other items that "
|
| 1081 |
"contain any of the selected links? This action can't be undone.\n"
|
| 1087 |
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
| 1088 |
|
| 1089 |
# @ broken-link-checker
|
| 1090 |
+
#: includes/admin/links-page-js.php:787
|
| 1091 |
msgid ""
|
| 1092 |
"Are you sure you want to remove the selected links? This action can't be "
|
| 1093 |
"undone.\n"
|
| 1097 |
"Aktion kann nicht rückgängig gemacht werden.\n"
|
| 1098 |
" 'Abbrechen' um abzubrechen, 'OK' um zu entfernen."
|
| 1099 |
|
| 1100 |
+
#: includes/admin/links-page-js.php:899
|
| 1101 |
msgid "Enter a search string first."
|
| 1102 |
msgstr "Geben Sie zuerst einen Suchbegriff ein."
|
| 1103 |
|
| 1104 |
+
#: includes/admin/links-page-js.php:906
|
| 1105 |
msgid "Select one or more links to edit."
|
| 1106 |
msgstr "Wählen Sie einen oder mehrere Links zum bearbeiten."
|
| 1107 |
|
| 1121 |
msgstr "Diesen Filter löschen"
|
| 1122 |
|
| 1123 |
# @ broken-link-checker
|
| 1124 |
+
#: includes/admin/search-form.php:32 includes/link-query.php:81
|
| 1125 |
msgid "Search"
|
| 1126 |
msgstr "Suche"
|
| 1127 |
|
| 1136 |
msgstr "URL"
|
| 1137 |
|
| 1138 |
# @ broken-link-checker
|
| 1139 |
+
#: includes/admin/search-form.php:48 includes/admin/table-printer.php:542
|
| 1140 |
msgid "HTTP code"
|
| 1141 |
msgstr "HTTP Code"
|
| 1142 |
|
| 1166 |
msgstr "Suche Links"
|
| 1167 |
|
| 1168 |
# @ broken-link-checker
|
| 1169 |
+
#: includes/admin/search-form.php:113 includes/admin/table-printer.php:368
|
| 1170 |
+
#: includes/admin/table-printer.php:747 includes/admin/table-printer.php:872
|
| 1171 |
msgid "Cancel"
|
| 1172 |
msgstr "Abbrechen"
|
| 1173 |
|
| 1217 |
msgstr "URL umleiten"
|
| 1218 |
|
| 1219 |
# @ broken-link-checker
|
| 1220 |
+
#: includes/admin/table-printer.php:286
|
| 1221 |
msgid "Bulk Actions"
|
| 1222 |
msgstr "Massenänderung"
|
| 1223 |
|
| 1224 |
+
# @ broken-link-checker
|
| 1225 |
+
#: includes/admin/table-printer.php:289
|
| 1226 |
+
msgid "Fix redirects"
|
| 1227 |
+
msgstr "Umleitungen übernehmen"
|
| 1228 |
+
|
| 1229 |
+
# @ broken-link-checker
|
| 1230 |
+
#: includes/admin/table-printer.php:290
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1231 |
msgid "Mark as not broken"
|
| 1232 |
msgstr "Als nicht fehlerhaft markieren"
|
| 1233 |
|
| 1234 |
# @ broken-link-checker
|
| 1235 |
+
#: includes/admin/table-printer.php:295
|
| 1236 |
msgid "Move sources to Trash"
|
| 1237 |
msgstr "Verschiebe Quelle in den Papierkorb"
|
| 1238 |
|
| 1239 |
# @ broken-link-checker
|
| 1240 |
+
#: includes/admin/table-printer.php:297
|
| 1241 |
msgid "Delete sources"
|
| 1242 |
msgstr "Quellen löschen"
|
| 1243 |
|
| 1244 |
# @ default
|
| 1245 |
+
#: includes/admin/table-printer.php:312
|
| 1246 |
msgid "«"
|
| 1247 |
msgstr "«"
|
| 1248 |
|
| 1249 |
# @ default
|
| 1250 |
+
#: includes/admin/table-printer.php:313
|
| 1251 |
msgid "»"
|
| 1252 |
msgstr "»"
|
| 1253 |
|
| 1254 |
# @ broken-link-checker
|
| 1255 |
+
#: includes/admin/table-printer.php:321
|
| 1256 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
| 1257 |
msgstr "Anzeigen %s–%s von <span class=\"current-link-count\">%s</span>"
|
| 1258 |
|
| 1259 |
# @ broken-link-checker
|
| 1260 |
+
#: includes/admin/table-printer.php:344
|
| 1261 |
msgid "Bulk Edit URLs"
|
| 1262 |
msgstr "Mehrere URLs bearbeiten"
|
| 1263 |
|
| 1264 |
+
#: includes/admin/table-printer.php:346
|
| 1265 |
msgid "Find"
|
| 1266 |
msgstr "Finden"
|
| 1267 |
|
| 1268 |
+
#: includes/admin/table-printer.php:350
|
| 1269 |
msgid "Replace with"
|
| 1270 |
msgstr "Ersetzen mit"
|
| 1271 |
|
| 1272 |
# @ broken-link-checker
|
| 1273 |
+
#: includes/admin/table-printer.php:358
|
| 1274 |
msgid "Case sensitive"
|
| 1275 |
msgstr "Gross- und Kleinschreibung"
|
| 1276 |
|
| 1277 |
+
#: includes/admin/table-printer.php:362
|
| 1278 |
msgid "Regular expression"
|
| 1279 |
msgstr "Regulärer Ausdruck"
|
| 1280 |
|
| 1281 |
# @ broken-link-checker
|
| 1282 |
+
#: includes/admin/table-printer.php:370 includes/admin/table-printer.php:873
|
| 1283 |
msgid "Update"
|
| 1284 |
msgstr "Aktualisieren"
|
| 1285 |
|
| 1286 |
# @ broken-link-checker
|
| 1287 |
+
#: includes/admin/table-printer.php:523
|
| 1288 |
msgid "Post published on"
|
| 1289 |
msgstr "Beitrag publiziert am"
|
| 1290 |
|
| 1291 |
# @ broken-link-checker
|
| 1292 |
+
#: includes/admin/table-printer.php:528
|
| 1293 |
msgid "Link last checked"
|
| 1294 |
msgstr "Link zuletzt geprüft"
|
| 1295 |
|
| 1296 |
# @ broken-link-checker
|
| 1297 |
+
#: includes/admin/table-printer.php:532
|
| 1298 |
msgid "Never"
|
| 1299 |
msgstr "Nie"
|
| 1300 |
|
| 1301 |
# @ broken-link-checker
|
| 1302 |
+
#: includes/admin/table-printer.php:547
|
| 1303 |
msgid "Response time"
|
| 1304 |
msgstr "Reaktionszeit"
|
| 1305 |
|
| 1306 |
# @ broken-link-checker
|
| 1307 |
+
#: includes/admin/table-printer.php:549
|
| 1308 |
msgid "%2.3f seconds"
|
| 1309 |
msgstr "%2.3f Sekunden"
|
| 1310 |
|
| 1311 |
# @ broken-link-checker
|
| 1312 |
+
#: includes/admin/table-printer.php:552
|
| 1313 |
msgid "Final URL"
|
| 1314 |
msgstr "Endgültige URL"
|
| 1315 |
|
| 1316 |
# @ broken-link-checker
|
| 1317 |
+
#: includes/admin/table-printer.php:557
|
| 1318 |
msgid "Redirect count"
|
| 1319 |
msgstr "Weiterleitung Anzahl"
|
| 1320 |
|
| 1321 |
# @ broken-link-checker
|
| 1322 |
+
#: includes/admin/table-printer.php:562
|
| 1323 |
msgid "Instance count"
|
| 1324 |
msgstr "Instanz Anzahl"
|
| 1325 |
|
| 1326 |
# @ broken-link-checker
|
| 1327 |
+
#: includes/admin/table-printer.php:571
|
| 1328 |
msgid "This link has failed %d time."
|
| 1329 |
msgid_plural "This link has failed %d times."
|
| 1330 |
msgstr[0] "Dieser Link schlug %d mal fehl."
|
| 1331 |
msgstr[1] "Dieser Link schlug %d mal fehl."
|
| 1332 |
|
| 1333 |
# @ broken-link-checker
|
| 1334 |
+
#: includes/admin/table-printer.php:579
|
| 1335 |
msgid "This link has been broken for %s."
|
| 1336 |
msgstr "Dieser Links ist fehlerhaft seit %s."
|
| 1337 |
|
| 1338 |
# @ broken-link-checker
|
| 1339 |
+
#: includes/admin/table-printer.php:590
|
| 1340 |
msgid "Log"
|
| 1341 |
msgstr "Log"
|
| 1342 |
|
| 1343 |
# @ broken-link-checker
|
| 1344 |
+
#: includes/admin/table-printer.php:615 includes/admin/table-printer.php:660
|
| 1345 |
msgid "Show more info about this link"
|
| 1346 |
msgstr "Mehr Informationen über diesen Link anzeigen"
|
| 1347 |
|
| 1348 |
# @ broken-link-checker
|
| 1349 |
+
#: includes/admin/table-printer.php:633
|
| 1350 |
msgctxt "checked how long ago"
|
| 1351 |
msgid "Checked"
|
| 1352 |
msgstr "Geprüft"
|
| 1353 |
|
| 1354 |
# @ broken-link-checker
|
| 1355 |
+
#: includes/admin/table-printer.php:649
|
| 1356 |
msgid "Broken for"
|
| 1357 |
msgstr "Fehlerhaft für"
|
| 1358 |
|
| 1359 |
+
# @ broken-link-checker
|
| 1360 |
+
#: includes/admin/table-printer.php:661
|
| 1361 |
+
msgctxt "link in the \"Status\" column"
|
| 1362 |
+
msgid "Details"
|
| 1363 |
+
msgstr "Details"
|
| 1364 |
+
|
| 1365 |
# @ default
|
| 1366 |
+
#: includes/admin/table-printer.php:678
|
| 1367 |
msgid "Edit this link"
|
| 1368 |
msgstr "Diesen Link bearbeiten"
|
| 1369 |
|
| 1370 |
# @ broken-link-checker
|
| 1371 |
+
#: includes/admin/table-printer.php:680
|
| 1372 |
msgid "Remove this link from all posts"
|
| 1373 |
msgstr "Löschen Sie diesen Link von allen Beiträgen"
|
| 1374 |
|
| 1375 |
# @ broken-link-checker
|
| 1376 |
+
#: includes/admin/table-printer.php:686
|
| 1377 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
| 1378 |
msgstr ""
|
| 1379 |
"Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als "
|
| 1380 |
"gültig"
|
| 1381 |
|
| 1382 |
+
#: includes/admin/table-printer.php:694
|
| 1383 |
msgid "Hide this link and do not report it again unless its status changes"
|
| 1384 |
msgstr ""
|
| 1385 |
"Verstecken Sie diesen Link und melden ihn nicht wieder, auch wenn sein "
|
| 1386 |
"Status ändert"
|
| 1387 |
|
| 1388 |
+
#: includes/admin/table-printer.php:700
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1389 |
msgid "Undismiss this link"
|
| 1390 |
msgstr "Link wieder einblenden"
|
| 1391 |
|
| 1392 |
+
#: includes/admin/table-printer.php:701
|
| 1393 |
msgid "Undismiss"
|
| 1394 |
msgstr "Einblenden"
|
| 1395 |
|
| 1396 |
# @ broken-link-checker
|
| 1397 |
+
#: includes/admin/table-printer.php:714
|
| 1398 |
+
msgid "Replace this redirect with a direct link"
|
| 1399 |
+
msgstr "Ersetzen Sie diese Umleitung mit einem direkten Link"
|
| 1400 |
+
|
| 1401 |
+
# @ broken-link-checker
|
| 1402 |
+
#: includes/admin/table-printer.php:748
|
| 1403 |
msgid "Update URL"
|
| 1404 |
msgstr "Aktualisiere URL"
|
| 1405 |
|
| 1406 |
# @ broken-link-checker
|
| 1407 |
+
#: includes/admin/table-printer.php:775
|
| 1408 |
msgid "[An orphaned link! This is a bug.]"
|
| 1409 |
msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
|
| 1410 |
|
| 1411 |
# @ broken-link-checker
|
| 1412 |
+
#: includes/admin/table-printer.php:852
|
| 1413 |
msgctxt "inline editor title"
|
| 1414 |
msgid "Edit Link"
|
| 1415 |
msgstr "Link bearbeiten"
|
| 1416 |
|
| 1417 |
# @ broken-link-checker
|
| 1418 |
+
#: includes/admin/table-printer.php:855
|
| 1419 |
msgctxt "inline link editor"
|
| 1420 |
msgid "Text"
|
| 1421 |
msgstr "Text"
|
| 1422 |
|
| 1423 |
# @ broken-link-checker
|
| 1424 |
+
#: includes/admin/table-printer.php:860
|
| 1425 |
msgctxt "inline link editor"
|
| 1426 |
msgid "URL"
|
| 1427 |
msgstr "URL"
|
| 1428 |
|
| 1429 |
+
#: includes/admin/table-printer.php:865
|
| 1430 |
msgctxt "inline link editor"
|
| 1431 |
msgid "Suggestions"
|
| 1432 |
msgstr "Vorschläge"
|
| 1433 |
|
| 1434 |
+
#: includes/admin/table-printer.php:885
|
| 1435 |
msgid "Use this URL"
|
| 1436 |
msgstr "URL verwenden"
|
| 1437 |
|
| 1438 |
# @ default
|
| 1439 |
+
#: includes/any-post.php:426 modules/containers/blogroll.php:46
|
| 1440 |
+
#: modules/containers/comment.php:159 modules/containers/custom_field.php:230
|
| 1441 |
msgid "Edit"
|
| 1442 |
msgstr "Bearbeiten"
|
| 1443 |
|
| 1444 |
# @ default
|
| 1445 |
+
#: includes/any-post.php:434 modules/containers/custom_field.php:236
|
| 1446 |
msgid "Move this item to the Trash"
|
| 1447 |
msgstr "Element in den Papierkorb verschieben"
|
| 1448 |
|
| 1449 |
# @ default
|
| 1450 |
+
#: includes/any-post.php:436 modules/containers/custom_field.php:238
|
| 1451 |
msgid "Trash"
|
| 1452 |
msgstr "Papierkorb"
|
| 1453 |
|
| 1454 |
# @ default
|
| 1455 |
+
#: includes/any-post.php:441 modules/containers/custom_field.php:243
|
| 1456 |
msgid "Delete this item permanently"
|
| 1457 |
msgstr "Element endgültig löschen"
|
| 1458 |
|
| 1459 |
# @ default
|
| 1460 |
+
#: includes/any-post.php:443 modules/containers/blogroll.php:47
|
| 1461 |
+
#: modules/containers/custom_field.php:245
|
| 1462 |
msgid "Delete"
|
| 1463 |
msgstr "Löschen"
|
| 1464 |
|
| 1465 |
# @ default
|
| 1466 |
+
#: includes/any-post.php:456
|
| 1467 |
msgid "Preview “%s”"
|
| 1468 |
msgstr "Vorschau “%s”"
|
| 1469 |
|
| 1470 |
# @ default
|
| 1471 |
+
#: includes/any-post.php:457
|
| 1472 |
msgid "Preview"
|
| 1473 |
msgstr "Vorschau"
|
| 1474 |
|
| 1475 |
# @ default
|
| 1476 |
+
#: includes/any-post.php:464
|
| 1477 |
msgid "View “%s”"
|
| 1478 |
msgstr "Ansehen “%s”"
|
| 1479 |
|
| 1480 |
# @ default
|
| 1481 |
+
#: includes/any-post.php:465 modules/containers/comment.php:172
|
| 1482 |
+
#: modules/containers/custom_field.php:250
|
| 1483 |
msgid "View"
|
| 1484 |
msgstr "Ansehen"
|
| 1485 |
|
| 1486 |
# @ default
|
| 1487 |
+
#: includes/any-post.php:484 modules/containers/custom_field.php:230
|
| 1488 |
msgid "Edit this item"
|
| 1489 |
msgstr "Bearbeiten Sie dieses Element"
|
| 1490 |
|
| 1491 |
# @ broken-link-checker
|
| 1492 |
+
#: includes/any-post.php:548 modules/containers/blogroll.php:83
|
| 1493 |
#: modules/containers/comment.php:43
|
| 1494 |
msgid "Nothing to update"
|
| 1495 |
msgstr "Nichts zu aktualisieren"
|
| 1496 |
|
| 1497 |
# @ broken-link-checker
|
| 1498 |
+
#: includes/any-post.php:558
|
| 1499 |
msgid "Updating post %d failed"
|
| 1500 |
msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
|
| 1501 |
|
| 1502 |
# @ broken-link-checker
|
| 1503 |
+
#: includes/any-post.php:595 modules/containers/custom_field.php:317
|
| 1504 |
msgid "Failed to delete post \"%s\" (%d)"
|
| 1505 |
msgstr "Löschen des Beitrages \"%s\" (%d) schlug fehl"
|
| 1506 |
|
| 1507 |
# @ broken-link-checker
|
| 1508 |
+
#: includes/any-post.php:614 modules/containers/custom_field.php:336
|
| 1509 |
msgid ""
|
| 1510 |
"Can't move post \"%s\" (%d) to the trash because the trash feature is "
|
| 1511 |
"disabled"
|
| 1514 |
"diese Funktion deaktiviert ist"
|
| 1515 |
|
| 1516 |
# @ broken-link-checker
|
| 1517 |
+
#: includes/any-post.php:634 modules/containers/custom_field.php:355
|
| 1518 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
| 1519 |
msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
|
| 1520 |
|
| 1521 |
# @ broken-link-checker
|
| 1522 |
+
#: includes/any-post.php:742
|
| 1523 |
msgid "%d post deleted."
|
| 1524 |
msgid_plural "%d posts deleted."
|
| 1525 |
msgstr[0] "%d Artikel gelöscht."
|
| 1526 |
msgstr[1] "%d Artikel gelöscht."
|
| 1527 |
|
| 1528 |
# @ broken-link-checker
|
| 1529 |
+
#: includes/any-post.php:744
|
| 1530 |
msgid "%d page deleted."
|
| 1531 |
msgid_plural "%d pages deleted."
|
| 1532 |
msgstr[0] "%d Seite gelöscht."
|
| 1533 |
msgstr[1] "%d Seiten gelöscht."
|
| 1534 |
|
| 1535 |
# @ broken-link-checker
|
| 1536 |
+
#: includes/any-post.php:746
|
| 1537 |
msgid "%d \"%s\" deleted."
|
| 1538 |
msgid_plural "%d \"%s\" deleted."
|
| 1539 |
msgstr[0] "%d \"%s\" gelöscht."
|
| 1540 |
msgstr[1] "%d \"%s\" gelöscht."
|
| 1541 |
|
| 1542 |
# @ broken-link-checker
|
| 1543 |
+
#: includes/any-post.php:765
|
| 1544 |
msgid "%d post moved to the Trash."
|
| 1545 |
msgid_plural "%d posts moved to the Trash."
|
| 1546 |
msgstr[0] "%d Artikel in den Papierkorb verschoben."
|
| 1547 |
msgstr[1] "%d Artikel in den Papierkorb verschoben."
|
| 1548 |
|
| 1549 |
# @ broken-link-checker
|
| 1550 |
+
#: includes/any-post.php:767
|
| 1551 |
msgid "%d page moved to the Trash."
|
| 1552 |
msgid_plural "%d pages moved to the Trash."
|
| 1553 |
msgstr[0] "%d Seite in den Papierkorb verschoben."
|
| 1554 |
msgstr[1] "%d Seiten in den Papierkorb verschoben."
|
| 1555 |
|
| 1556 |
# @ broken-link-checker
|
| 1557 |
+
#: includes/any-post.php:769
|
| 1558 |
msgid "%d \"%s\" moved to the Trash."
|
| 1559 |
msgid_plural "%d \"%s\" moved to the Trash."
|
| 1560 |
msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
|
| 1695 |
msgid "Parser '%s' not found."
|
| 1696 |
msgstr "Parser '%s' nicht gefunden."
|
| 1697 |
|
| 1698 |
+
# @ broken-link-checker
|
| 1699 |
+
#: includes/link-query.php:25
|
| 1700 |
+
msgid "All"
|
| 1701 |
+
msgstr "Alle"
|
| 1702 |
+
|
| 1703 |
# @ broken-link-checker
|
| 1704 |
#: includes/link-query.php:26
|
| 1705 |
+
msgid "Detected Links"
|
| 1706 |
+
msgstr "Gefundene Links"
|
| 1707 |
+
|
| 1708 |
+
# @ broken-link-checker
|
| 1709 |
+
#: includes/link-query.php:27
|
| 1710 |
+
msgid "No links found (yet)"
|
| 1711 |
+
msgstr "(Noch) keine Links gefunden"
|
| 1712 |
+
|
| 1713 |
+
# @ broken-link-checker
|
| 1714 |
+
#: includes/link-query.php:36
|
| 1715 |
msgid "Broken"
|
| 1716 |
msgstr "Fehlerhaft"
|
| 1717 |
|
| 1718 |
# @ broken-link-checker
|
| 1719 |
+
#: includes/link-query.php:38
|
| 1720 |
msgid "No broken links found"
|
| 1721 |
msgstr "Keine fehlerhaften Links gefunden"
|
| 1722 |
|
| 1723 |
+
#: includes/link-query.php:46
|
| 1724 |
+
msgctxt "filter name"
|
| 1725 |
+
msgid "Warnings"
|
| 1726 |
+
msgstr "Warnungen"
|
| 1727 |
+
|
| 1728 |
+
#: includes/link-query.php:47
|
| 1729 |
+
msgid "Warnings"
|
| 1730 |
+
msgstr "Warnungen"
|
| 1731 |
+
|
| 1732 |
# @ broken-link-checker
|
| 1733 |
+
#: includes/link-query.php:48
|
| 1734 |
+
msgid "No warnings found"
|
| 1735 |
+
msgstr "Keine Warnungen gefunden"
|
| 1736 |
+
|
| 1737 |
+
# @ broken-link-checker
|
| 1738 |
+
#: includes/link-query.php:56
|
| 1739 |
msgid "Redirects"
|
| 1740 |
msgstr "Umleitungen"
|
| 1741 |
|
| 1742 |
# @ broken-link-checker
|
| 1743 |
+
#: includes/link-query.php:57
|
| 1744 |
msgid "Redirected Links"
|
| 1745 |
msgstr "Umgeleitete Links"
|
| 1746 |
|
| 1747 |
# @ broken-link-checker
|
| 1748 |
+
#: includes/link-query.php:58
|
| 1749 |
msgid "No redirects found"
|
| 1750 |
msgstr "Keine umgeleiteten Links gefunden"
|
| 1751 |
|
| 1752 |
+
#: includes/link-query.php:66
|
| 1753 |
msgid "Dismissed"
|
| 1754 |
msgstr "Ausgeblendete"
|
| 1755 |
|
| 1756 |
# @ broken-link-checker
|
| 1757 |
+
#: includes/link-query.php:67
|
| 1758 |
msgid "Dismissed Links"
|
| 1759 |
msgstr "Ausgeblendete Links"
|
| 1760 |
|
| 1761 |
# @ broken-link-checker
|
| 1762 |
+
#: includes/link-query.php:68
|
| 1763 |
msgid "No dismissed links found"
|
| 1764 |
msgstr "Keine ausgeblendeten Links gefunden"
|
| 1765 |
|
| 1766 |
# @ broken-link-checker
|
| 1767 |
+
#: includes/link-query.php:82
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1768 |
msgid "Search Results"
|
| 1769 |
msgstr "Such Resultat"
|
| 1770 |
|
| 1771 |
# @ broken-link-checker
|
| 1772 |
+
#: includes/link-query.php:83 includes/link-query.php:130
|
| 1773 |
msgid "No links found for your query"
|
| 1774 |
msgstr "Keine Links für Deine Anfrage gefunden"
|
| 1775 |
|
| 1776 |
# @ broken-link-checker
|
| 1777 |
+
#: includes/links.php:224
|
| 1778 |
msgid "The plugin script was terminated while trying to check the link."
|
| 1779 |
msgstr "Das Plugin-Skript wurde beim Versuch den Link zu überprüfen beendet."
|
| 1780 |
|
| 1781 |
# @ broken-link-checker
|
| 1782 |
+
#: includes/links.php:271
|
| 1783 |
msgid "The plugin doesn't know how to check this type of link."
|
| 1784 |
msgstr "Das Plugin weiss nicht genau, wie er diesen Link Typ überprüfen soll."
|
| 1785 |
|
| 1786 |
# @ broken-link-checker
|
| 1787 |
+
#: includes/links.php:502
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1788 |
msgid "Link is broken."
|
| 1789 |
msgstr "Link ist fehlerhaft."
|
| 1790 |
|
| 1791 |
# @ broken-link-checker
|
| 1792 |
+
#: includes/links.php:504
|
| 1793 |
+
msgid "Link is valid."
|
| 1794 |
+
msgstr "Link ist valide."
|
| 1795 |
+
|
| 1796 |
+
# @ broken-link-checker
|
| 1797 |
+
#: includes/links.php:728 includes/links.php:830 includes/links.php:857
|
| 1798 |
msgid "Link is not valid"
|
| 1799 |
msgstr "Link ist nicht gültig"
|
| 1800 |
|
| 1801 |
# @ broken-link-checker
|
| 1802 |
+
#: includes/links.php:745
|
| 1803 |
msgid ""
|
| 1804 |
"This link can not be edited because it is not used anywhere on this site."
|
| 1805 |
msgstr ""
|
| 1807 |
"Website verwendet wird."
|
| 1808 |
|
| 1809 |
# @ broken-link-checker
|
| 1810 |
+
#: includes/links.php:771
|
| 1811 |
msgid "Failed to create a DB entry for the new URL."
|
| 1812 |
msgstr ""
|
| 1813 |
"Das Erstellen eines Datenbankeintrages für die neue URL ist fehlgeschlagen."
|
| 1814 |
|
| 1815 |
# @ broken-link-checker
|
| 1816 |
+
#: includes/links.php:837
|
| 1817 |
msgid "This link is not a redirect"
|
| 1818 |
msgstr "Dieser Link ist keine Umleitung"
|
| 1819 |
|
| 1820 |
# @ broken-link-checker
|
| 1821 |
+
#: includes/links.php:884 includes/links.php:921
|
| 1822 |
msgid "Couldn't delete the link's database record"
|
| 1823 |
msgstr "Links können nicht aus der Datenbank gelöscht werden"
|
| 1824 |
|
| 1825 |
# @ broken-link-checker
|
| 1826 |
+
#: includes/links.php:995
|
| 1827 |
msgctxt "link status"
|
| 1828 |
msgid "Unknown"
|
| 1829 |
msgstr "Unbekannt"
|
| 1830 |
|
| 1831 |
# @ link status
|
| 1832 |
# @ broken-link-checker
|
| 1833 |
+
#: includes/links.php:1008 modules/checkers/http.php:308
|
| 1834 |
+
#: modules/extras/mediafire.php:115
|
| 1835 |
msgid "Unknown Error"
|
| 1836 |
msgstr "Unbekannter Fehler"
|
| 1837 |
|
| 1838 |
# @ broken-link-checker
|
| 1839 |
+
#: includes/links.php:1032
|
| 1840 |
msgid "Not checked"
|
| 1841 |
msgstr "Nicht überprüft"
|
| 1842 |
|
| 1843 |
# @ broken-link-checker
|
| 1844 |
+
#: includes/links.php:1035
|
| 1845 |
msgid "False positive"
|
| 1846 |
msgstr "Falsch positiv"
|
| 1847 |
|
| 1848 |
# @ broken-link-checker
|
| 1849 |
+
#: includes/links.php:1038 modules/extras/rapidshare.php:145
|
| 1850 |
#: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
|
| 1851 |
msgctxt "link status"
|
| 1852 |
msgid "OK"
|
| 1933 |
msgstr[1] "%d Monate vergangen"
|
| 1934 |
|
| 1935 |
# @ broken-link-checker
|
| 1936 |
+
#: modules/checkers/http.php:285
|
| 1937 |
msgid "Server Not Found"
|
| 1938 |
msgstr "Server nicht gefunden"
|
| 1939 |
|
| 1940 |
# @ broken-link-checker
|
| 1941 |
+
#: modules/checkers/http.php:301
|
| 1942 |
msgid "Connection Failed"
|
| 1943 |
msgstr "Verbindung fehlgeschlagen"
|
| 1944 |
|
| 1945 |
# @ broken-link-checker
|
| 1946 |
+
#: modules/checkers/http.php:344 modules/checkers/http.php:414
|
| 1947 |
msgid "HTTP code : %d"
|
| 1948 |
msgstr "HTTP Code: %d"
|
| 1949 |
|
| 1950 |
# @ broken-link-checker
|
| 1951 |
+
#: modules/checkers/http.php:346 modules/checkers/http.php:416
|
| 1952 |
msgid "(No response)"
|
| 1953 |
msgstr "(Keine Antwort)"
|
| 1954 |
|
| 1955 |
# @ broken-link-checker
|
| 1956 |
+
#: modules/checkers/http.php:352
|
| 1957 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
| 1958 |
msgstr ""
|
| 1959 |
"Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
|
| 1960 |
|
| 1961 |
# @ broken-link-checker
|
| 1962 |
+
#: modules/checkers/http.php:423
|
| 1963 |
msgid "Request timed out."
|
| 1964 |
msgstr "Erfordert Zeitlimit."
|
| 1965 |
|
| 1966 |
# @ broken-link-checker
|
| 1967 |
+
#: modules/checkers/http.php:441
|
| 1968 |
msgid "Using Snoopy"
|
| 1969 |
msgstr "Benutzt Snoopy"
|
| 1970 |
|
| 2020 |
msgstr "Kommentar %d kann nicht in den Papierkorb verschoben werden"
|
| 2021 |
|
| 2022 |
# @ default
|
| 2023 |
+
#: modules/containers/comment.php:159 modules/containers/comment.php:201
|
| 2024 |
msgid "Edit comment"
|
| 2025 |
msgstr "Kommentar bearbeiten"
|
| 2026 |
|
| 2027 |
# @ default
|
| 2028 |
+
#: modules/containers/comment.php:166
|
| 2029 |
msgid "Delete Permanently"
|
| 2030 |
msgstr "Endgültig löschen"
|
| 2031 |
|
| 2032 |
# @ default
|
| 2033 |
+
#: modules/containers/comment.php:168
|
| 2034 |
msgid "Move this comment to the trash"
|
| 2035 |
msgstr "%d Kommentar in den Papierkorb verschieben"
|
| 2036 |
|
| 2037 |
# @ default
|
| 2038 |
+
#: modules/containers/comment.php:168
|
| 2039 |
msgctxt "verb"
|
| 2040 |
msgid "Trash"
|
| 2041 |
msgstr "Papierkorb"
|
| 2042 |
|
| 2043 |
# @ broken-link-checker
|
| 2044 |
+
#: modules/containers/comment.php:172
|
| 2045 |
msgid "View comment"
|
| 2046 |
msgstr "Kommentar ansehen"
|
| 2047 |
|
| 2048 |
# @ broken-link-checker
|
| 2049 |
+
#: modules/containers/comment.php:189
|
| 2050 |
msgid "Comment"
|
| 2051 |
msgstr "Kommentar"
|
| 2052 |
|
| 2053 |
# @ broken-link-checker
|
| 2054 |
+
#: modules/containers/comment.php:364
|
| 2055 |
msgid "%d comment has been deleted."
|
| 2056 |
msgid_plural "%d comments have been deleted."
|
| 2057 |
msgstr[0] "%d Kommentar wurde gelöscht."
|
| 2058 |
msgstr[1] "%d Kommentare wurde gelöscht."
|
| 2059 |
|
| 2060 |
# @ broken-link-checker
|
| 2061 |
+
#: modules/containers/comment.php:383
|
| 2062 |
msgid "%d comment moved to the Trash."
|
| 2063 |
msgid_plural "%d comments moved to the Trash."
|
| 2064 |
msgstr[0] "%d Kommentar in den Papierkorb verschoben."
|
| 2075 |
msgstr "Löschen des Meta-Feldes '%s' in %s [%d] schlug fehl"
|
| 2076 |
|
| 2077 |
# @ default
|
| 2078 |
+
#: modules/containers/custom_field.php:216
|
| 2079 |
msgid "Edit this post"
|
| 2080 |
msgstr "Bearbeiten Sie diesen Beitrag"
|
| 2081 |
|
| 2082 |
# @ broken-link-checker
|
| 2083 |
+
#: modules/containers/custom_field.php:250
|
| 2084 |
msgid "View \"%s\""
|
| 2085 |
msgstr "\"%s\" ansehen"
|
| 2086 |
|
| 2118 |
msgstr "Eingebetteter GoogleVideo Video"
|
| 2119 |
|
| 2120 |
# @ broken-link-checker
|
| 2121 |
+
#: modules/extras/mediafire.php:97 modules/extras/mediafire.php:103
|
| 2122 |
#: modules/extras/rapidshare.php:139
|
| 2123 |
msgid "Not Found"
|
| 2124 |
msgstr "Nicht gefunden"
|
| 2125 |
|
| 2126 |
+
#: modules/extras/mediafire.php:109
|
| 2127 |
+
msgid "Permission Denied"
|
| 2128 |
+
msgstr "Zugriff verweigert"
|
| 2129 |
+
|
| 2130 |
# @ broken-link-checker
|
| 2131 |
#: modules/extras/rapidshare.php:51
|
| 2132 |
msgid "Using RapidShare API"
|
languages/broken-link-checker-zh_CN.mo
CHANGED
|
Binary file
|
languages/broken-link-checker-zh_CN.po
CHANGED
|
@@ -2,792 +2,879 @@ 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: 2014-
|
| 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"
|
| 13 |
-
"X-Poedit-Language: Chinese\n"
|
| 14 |
-
"X-Poedit-Country: CHINA\n"
|
| 15 |
"X-Poedit-SourceCharset: utf-8\n"
|
| 16 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
|
|
| 17 |
|
| 18 |
-
#: core/core.php:
|
| 19 |
-
#: includes/admin/links-page-js.php:44
|
| 20 |
msgid "Loading..."
|
| 21 |
msgstr "加载中……"
|
| 22 |
|
| 23 |
-
#: core/core.php:
|
| 24 |
-
#: includes/admin/options-page-js.php:18
|
| 25 |
msgid "[ Network error ]"
|
| 26 |
msgstr "[ 网络错误 ]"
|
| 27 |
|
| 28 |
-
#: core/core.php:
|
| 29 |
msgid "Automatically expand the widget if broken links have been detected"
|
| 30 |
msgstr "当检测到失效链接时自动展开窗口部件"
|
| 31 |
|
| 32 |
-
#: core/core.php:
|
| 33 |
msgid "Link Checker Settings"
|
| 34 |
msgstr "链接检查器设置"
|
| 35 |
|
| 36 |
-
#: core/core.php:
|
| 37 |
msgid "Link Checker"
|
| 38 |
msgstr "链接检查器"
|
| 39 |
|
| 40 |
-
#: core/core.php:
|
| 41 |
-
#: includes/link-query.php:27
|
| 42 |
msgid "Broken Links"
|
| 43 |
msgstr "失效链接"
|
| 44 |
|
| 45 |
-
#: core/core.php:
|
| 46 |
msgid "View Broken Links"
|
| 47 |
msgstr "查看失效链接"
|
| 48 |
|
| 49 |
-
#: core/core.php:
|
| 50 |
msgid "Feedback"
|
| 51 |
msgstr "反馈"
|
| 52 |
|
| 53 |
-
#: core/core.php:
|
| 54 |
msgid "Go to Broken Links"
|
| 55 |
msgstr "查看失效链接"
|
| 56 |
|
| 57 |
-
#: core/core.php:
|
| 58 |
msgid "Settings"
|
| 59 |
msgstr "设置"
|
| 60 |
|
| 61 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
msgid "Settings saved."
|
| 63 |
msgstr "设置已保存。"
|
| 64 |
|
| 65 |
-
#: core/core.php:
|
| 66 |
msgid "Thank you for your donation!"
|
| 67 |
msgstr "感谢您的捐赠!"
|
| 68 |
|
| 69 |
-
#: core/core.php:
|
| 70 |
msgid "Complete site recheck started."
|
| 71 |
msgstr "站点完整重新检查开始。"
|
| 72 |
|
| 73 |
-
#: core/core.php:
|
| 74 |
-
msgid "Details"
|
| 75 |
-
msgstr "详情"
|
| 76 |
-
|
| 77 |
-
#: core/core.php:609
|
| 78 |
msgid "General"
|
| 79 |
msgstr "常规"
|
| 80 |
|
| 81 |
-
#: core/core.php:
|
| 82 |
msgid "Look For Links In"
|
| 83 |
msgstr "检查范围"
|
| 84 |
|
| 85 |
-
#: core/core.php:
|
| 86 |
msgid "Which Links To Check"
|
| 87 |
msgstr "检查类型"
|
| 88 |
|
| 89 |
-
#: core/core.php:
|
| 90 |
msgid "Protocols & APIs"
|
| 91 |
-
msgstr "协议和API"
|
| 92 |
|
| 93 |
-
#: core/core.php:
|
| 94 |
msgid "Advanced"
|
| 95 |
msgstr "高级"
|
| 96 |
|
| 97 |
-
#: core/core.php:
|
| 98 |
msgid "Broken Link Checker Options"
|
| 99 |
msgstr "链接检查器选项"
|
| 100 |
|
| 101 |
-
#: core/core.php:
|
| 102 |
-
#: includes/admin/table-printer.php:203
|
| 103 |
msgid "Status"
|
| 104 |
msgstr "状态"
|
| 105 |
|
| 106 |
-
#: core/core.php:
|
| 107 |
-
#: includes/admin/options-page-js.php:56
|
| 108 |
msgid "Show debug info"
|
| 109 |
msgstr "显示调试信息"
|
| 110 |
|
| 111 |
-
#: core/core.php:
|
| 112 |
msgid "Check each link"
|
| 113 |
msgstr "检查每个链接"
|
| 114 |
|
| 115 |
-
#: core/core.php:
|
| 116 |
msgid "Every %s hours"
|
| 117 |
msgstr "每 %s 小时"
|
| 118 |
|
| 119 |
-
#: core/core.php:
|
| 120 |
-
msgid "
|
|
|
|
|
|
|
| 121 |
msgstr "将以此频率检测所有链接,将立即检测新增链接。"
|
| 122 |
|
| 123 |
-
#: core/core.php:
|
| 124 |
msgid "E-mail notifications"
|
| 125 |
msgstr "电子邮件通知"
|
| 126 |
|
| 127 |
-
#: core/core.php:
|
| 128 |
msgid "Send me e-mail notifications about newly detected broken links"
|
| 129 |
msgstr "当检测到新失效链接时向我发送电子邮件通知"
|
| 130 |
|
| 131 |
-
#: core/core.php:
|
| 132 |
msgid "Send authors e-mail notifications about broken links in their posts"
|
| 133 |
msgstr "当检测到新失效链接时向作者发送电子邮件通知"
|
| 134 |
|
| 135 |
-
#: core/core.php:
|
| 136 |
msgid "Notification e-mail address"
|
| 137 |
msgstr "接收通知的电子邮件地址"
|
| 138 |
|
| 139 |
-
#: core/core.php:
|
| 140 |
-
msgid "
|
|
|
|
| 141 |
msgstr "留空以使用 设置 → 常规 中指定的电子邮件地址。"
|
| 142 |
|
| 143 |
-
#: core/core.php:
|
| 144 |
msgid "Link tweaks"
|
| 145 |
msgstr "链接调整"
|
| 146 |
|
| 147 |
-
#: core/core.php:
|
| 148 |
msgid "Apply custom formatting to broken links"
|
| 149 |
msgstr "将自定义样式应用到失效链接"
|
| 150 |
|
| 151 |
-
#: core/core.php:
|
| 152 |
-
#: core/core.php:802
|
| 153 |
msgid "Edit CSS"
|
| 154 |
msgstr "编辑样式"
|
| 155 |
|
| 156 |
-
#: core/core.php:
|
| 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:
|
| 161 |
-
#: core/core.php:821
|
| 162 |
msgid "Click \"Save Changes\" to update example output."
|
| 163 |
msgstr "单击“保持变更”更新输出示例。"
|
| 164 |
|
| 165 |
-
#: core/core.php:
|
| 166 |
msgid "Apply custom formatting to removed links"
|
| 167 |
msgstr "对已经移除的链接应用自定义格式"
|
| 168 |
|
| 169 |
-
#: core/core.php:
|
| 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:
|
| 174 |
msgid "Stop search engines from following broken links"
|
| 175 |
msgstr "要求搜索引擎不跟踪已经失效的链接"
|
| 176 |
|
| 177 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 178 |
msgctxt "settings page"
|
| 179 |
msgid "Suggestions"
|
| 180 |
msgstr "建议"
|
| 181 |
|
| 182 |
-
#: core/core.php:
|
| 183 |
msgid "Suggest alternatives to broken links"
|
| 184 |
msgstr "提供失效链接的替换建议"
|
| 185 |
|
| 186 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 187 |
msgid "Look for links in"
|
| 188 |
msgstr "检查以下范围的链接"
|
| 189 |
|
| 190 |
-
#: core/core.php:
|
| 191 |
msgid "Post statuses"
|
| 192 |
msgstr "发布状态"
|
| 193 |
|
| 194 |
-
#: core/core.php:
|
| 195 |
msgid "Link types"
|
| 196 |
msgstr "链接类型"
|
| 197 |
|
| 198 |
-
#: core/core.php:
|
| 199 |
msgid "Error : All link parsers missing!"
|
| 200 |
msgstr "错误:无法找到链接解析器!"
|
| 201 |
|
| 202 |
-
#: core/core.php:
|
| 203 |
msgid "Exclusion list"
|
| 204 |
msgstr "排除列表"
|
| 205 |
|
| 206 |
-
#: core/core.php:
|
| 207 |
-
msgid "
|
|
|
|
| 208 |
msgstr "不检测含有以下关键字的链接(每个关键字一行):"
|
| 209 |
|
| 210 |
-
#: core/core.php:
|
| 211 |
msgid "Check links using"
|
| 212 |
msgstr "检查链接"
|
| 213 |
|
| 214 |
-
#: core/core.php:
|
| 215 |
-
#: includes/links.php:867
|
| 216 |
msgid "Timeout"
|
| 217 |
msgstr "超时"
|
| 218 |
|
| 219 |
-
#: core/core.php:
|
| 220 |
-
#: core/core.php:1031
|
| 221 |
-
#: core/core.php:3019
|
| 222 |
msgid "%s seconds"
|
| 223 |
msgstr "%s 秒"
|
| 224 |
|
| 225 |
-
#: core/core.php:
|
| 226 |
msgid "Links that take longer than this to load will be marked as broken."
|
| 227 |
msgstr "检测时若链接在此时间内未响应将被视为失效。"
|
| 228 |
|
| 229 |
-
#: core/core.php:
|
| 230 |
msgid "Link monitor"
|
| 231 |
msgstr "链接监视器"
|
| 232 |
|
| 233 |
-
#: core/core.php:
|
| 234 |
msgid "Run continuously while the Dashboard is open"
|
| 235 |
msgstr "在仪表盘打开时持续运行"
|
| 236 |
|
| 237 |
-
#: core/core.php:
|
| 238 |
msgid "Run hourly in the background"
|
| 239 |
msgstr "在后台每小时运行一次"
|
| 240 |
|
| 241 |
-
#: core/core.php:
|
| 242 |
msgid "Show the dashboard widget for"
|
| 243 |
msgstr "为以下用户显示仪表盘部件"
|
| 244 |
|
| 245 |
-
#: core/core.php:
|
| 246 |
msgctxt "dashboard widget visibility"
|
| 247 |
msgid "Administrator"
|
| 248 |
msgstr "管理员"
|
| 249 |
|
| 250 |
-
#: core/core.php:
|
| 251 |
msgctxt "dashboard widget visibility"
|
| 252 |
msgid "Editor and above"
|
| 253 |
msgstr "编辑及以上"
|
| 254 |
|
| 255 |
-
#: core/core.php:
|
| 256 |
msgctxt "dashboard widget visibility"
|
| 257 |
msgid "Nobody (disables the widget)"
|
| 258 |
msgstr "没有人(禁用此小部件)"
|
| 259 |
|
| 260 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 261 |
msgid "Max. execution time"
|
| 262 |
msgstr "最大执行时间"
|
| 263 |
|
| 264 |
-
#: core/core.php:
|
| 265 |
-
msgid "
|
| 266 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 267 |
|
| 268 |
-
#: core/core.php:
|
| 269 |
msgid "Server load limit"
|
| 270 |
msgstr "服务器负载限制"
|
| 271 |
|
| 272 |
-
#: core/core.php:
|
| 273 |
msgid "Current load : %s"
|
| 274 |
msgstr "当前负载:%s"
|
| 275 |
|
| 276 |
-
#: core/core.php:
|
| 277 |
-
msgid "
|
| 278 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 279 |
|
| 280 |
-
#: core/core.php:
|
| 281 |
msgid "Not available"
|
| 282 |
msgstr "不可用"
|
| 283 |
|
| 284 |
-
#: core/core.php:
|
| 285 |
-
msgid "
|
| 286 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 287 |
|
| 288 |
-
#: core/core.php:
|
| 289 |
msgid "Logging"
|
| 290 |
msgstr "日志"
|
| 291 |
|
| 292 |
-
#: core/core.php:
|
| 293 |
msgid "Enable logging"
|
| 294 |
msgstr "启用日志"
|
| 295 |
|
| 296 |
-
#: core/core.php:
|
| 297 |
msgid "Log file location"
|
| 298 |
msgstr "日志文件位置"
|
| 299 |
|
| 300 |
-
#: core/core.php:
|
| 301 |
msgctxt "log file location"
|
| 302 |
msgid "Default"
|
| 303 |
msgstr "默认"
|
| 304 |
|
| 305 |
-
#: core/core.php:
|
| 306 |
msgctxt "log file location"
|
| 307 |
msgid "Custom"
|
| 308 |
msgstr "自定义"
|
| 309 |
|
| 310 |
-
#: core/core.php:
|
| 311 |
msgid "Forced recheck"
|
| 312 |
msgstr "强制重新检查"
|
| 313 |
|
| 314 |
-
#: core/core.php:
|
| 315 |
msgid "Re-check all pages"
|
| 316 |
msgstr "重新检查所有页面"
|
| 317 |
|
| 318 |
-
#: core/core.php:
|
| 319 |
-
msgid "
|
| 320 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 321 |
|
| 322 |
-
#: core/core.php:
|
| 323 |
msgid "Save Changes"
|
| 324 |
msgstr "保存更改"
|
| 325 |
|
| 326 |
-
#: core/core.php:
|
| 327 |
msgid "Configure"
|
| 328 |
msgstr "配置"
|
| 329 |
|
| 330 |
-
#: core/core.php:
|
| 331 |
-
msgid "
|
| 332 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 333 |
|
| 334 |
-
#: core/core.php:
|
| 335 |
-
#: core/core.php:1503
|
| 336 |
-
#: core/core.php:1535
|
| 337 |
msgid "Database error : %s"
|
| 338 |
msgstr "数据库错误:%s"
|
| 339 |
|
| 340 |
-
#: core/core.php:
|
| 341 |
msgid "You must enter a filter name!"
|
| 342 |
msgstr "你需要输入一个过滤器名称!"
|
| 343 |
|
| 344 |
-
#: core/core.php:
|
| 345 |
msgid "Invalid search query."
|
| 346 |
msgstr "无效的查询。"
|
| 347 |
|
| 348 |
-
#: core/core.php:
|
| 349 |
msgid "Filter \"%s\" created"
|
| 350 |
msgstr "已创建“%s”过滤器"
|
| 351 |
|
| 352 |
-
#: core/core.php:
|
| 353 |
msgid "Filter ID not specified."
|
| 354 |
msgstr "过滤器ID未指定。"
|
| 355 |
|
| 356 |
-
#: core/core.php:
|
| 357 |
msgid "Filter deleted"
|
| 358 |
msgstr "已删除过滤器"
|
| 359 |
|
| 360 |
-
#: core/core.php:
|
| 361 |
msgid "Replaced %d redirect with a direct link"
|
| 362 |
msgid_plural "Replaced %d redirects with direct links"
|
| 363 |
-
msgstr[0] "
|
| 364 |
|
| 365 |
-
#: core/core.php:
|
| 366 |
msgid "Failed to fix %d redirect"
|
| 367 |
msgid_plural "Failed to fix %d redirects"
|
| 368 |
-
msgstr[0] "
|
| 369 |
|
| 370 |
-
#: core/core.php:
|
| 371 |
msgid "None of the selected links are redirects!"
|
| 372 |
msgstr "选中的链接均不是重定向链接!"
|
| 373 |
|
| 374 |
-
#: core/core.php:
|
| 375 |
msgid "%d link updated."
|
| 376 |
msgid_plural "%d links updated."
|
| 377 |
-
msgstr[0] "%d个链接已更新。"
|
| 378 |
|
| 379 |
-
#: core/core.php:
|
| 380 |
msgid "Failed to update %d link."
|
| 381 |
msgid_plural "Failed to update %d links."
|
| 382 |
-
msgstr[0] "
|
| 383 |
|
| 384 |
-
#: core/core.php:
|
| 385 |
msgid "%d link removed"
|
| 386 |
msgid_plural "%d links removed"
|
| 387 |
-
msgstr[0] "
|
| 388 |
|
| 389 |
-
#: core/core.php:
|
| 390 |
msgid "Failed to remove %d link"
|
| 391 |
msgid_plural "Failed to remove %d links"
|
| 392 |
-
msgstr[0] "
|
| 393 |
|
| 394 |
-
#: core/core.php:
|
| 395 |
-
msgid "
|
| 396 |
-
|
| 397 |
-
|
| 398 |
-
|
| 399 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 400 |
msgid "Didn't find anything to delete!"
|
| 401 |
msgstr "没有任何需要删除的内容!"
|
| 402 |
|
| 403 |
-
#: core/core.php:
|
| 404 |
msgid "%d link scheduled for rechecking"
|
| 405 |
msgid_plural "%d links scheduled for rechecking"
|
| 406 |
-
msgstr[0] "
|
| 407 |
|
| 408 |
-
#: core/core.php:
|
| 409 |
-
#: core/core.php:2637
|
| 410 |
msgid "This link was manually marked as working by the user."
|
| 411 |
msgstr "此链接被用户标记为有效。"
|
| 412 |
|
| 413 |
-
#: core/core.php:
|
| 414 |
msgid "Couldn't modify link %d"
|
| 415 |
-
msgstr "
|
| 416 |
|
| 417 |
-
#: core/core.php:
|
| 418 |
msgid "%d link marked as not broken"
|
| 419 |
msgid_plural "%d links marked as not broken"
|
| 420 |
-
msgstr[0] "%d个链接被标记为未损坏"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 421 |
|
| 422 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 423 |
msgid "Table columns"
|
| 424 |
msgstr "表格栏目"
|
| 425 |
|
| 426 |
-
#: core/core.php:
|
| 427 |
msgid "Show on screen"
|
| 428 |
msgstr "在屏幕上显示"
|
| 429 |
|
| 430 |
-
#: core/core.php:
|
| 431 |
msgid "links"
|
| 432 |
msgstr "链接"
|
| 433 |
|
| 434 |
-
#: core/core.php:
|
| 435 |
-
#: includes/admin/table-printer.php:171
|
| 436 |
msgid "Apply"
|
| 437 |
msgstr "应用"
|
| 438 |
|
| 439 |
-
#: core/core.php:
|
| 440 |
msgid "Misc"
|
| 441 |
msgstr "杂项"
|
| 442 |
|
| 443 |
-
#: core/core.php:
|
| 444 |
msgid "Highlight links broken for at least %s days"
|
| 445 |
msgstr "高亮显示至少已经失效%s天的链接"
|
| 446 |
|
| 447 |
-
#: core/core.php:
|
| 448 |
msgid "Color-code status codes"
|
| 449 |
msgstr "色彩标记状态码"
|
| 450 |
|
| 451 |
-
#: core/core.php:
|
| 452 |
-
#: core/core.php:
|
| 453 |
-
#: core/core.php:2662
|
| 454 |
-
#: core/core.php:2695
|
| 455 |
-
#: core/core.php:2782
|
| 456 |
msgid "You're not allowed to do that!"
|
| 457 |
msgstr "您无权限执行此操作!"
|
| 458 |
|
| 459 |
-
#: core/core.php:
|
| 460 |
msgid "View broken links"
|
| 461 |
msgstr "查看失效链接"
|
| 462 |
|
| 463 |
-
#: core/core.php:
|
| 464 |
msgid "Found %d broken link"
|
| 465 |
msgid_plural "Found %d broken links"
|
| 466 |
-
msgstr[0] "
|
| 467 |
|
| 468 |
-
#: core/core.php:
|
| 469 |
msgid "No broken links found."
|
| 470 |
msgstr "未找到失效链接。"
|
| 471 |
|
| 472 |
-
#: core/core.php:
|
| 473 |
msgid "%d URL in the work queue"
|
| 474 |
msgid_plural "%d URLs in the work queue"
|
| 475 |
msgstr[0] "执行队列中还有%d条网址"
|
| 476 |
|
| 477 |
-
#: core/core.php:
|
| 478 |
msgid "No URLs in the work queue."
|
| 479 |
msgstr "执行队列中无网址。"
|
| 480 |
|
| 481 |
-
#: core/core.php:
|
| 482 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 483 |
msgid "%d unique URL"
|
| 484 |
msgid_plural "%d unique URLs"
|
| 485 |
-
msgstr[0] "%d个唯一网址"
|
| 486 |
|
| 487 |
-
#: core/core.php:
|
| 488 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 489 |
msgid "%d link"
|
| 490 |
msgid_plural "%d links"
|
| 491 |
-
msgstr[0] "%d个链接"
|
| 492 |
|
| 493 |
-
#: core/core.php:
|
| 494 |
msgid "Detected %1$s in %2$s and still searching..."
|
| 495 |
-
msgstr "
|
| 496 |
|
| 497 |
-
#: core/core.php:
|
| 498 |
msgid "Detected %1$s in %2$s."
|
| 499 |
-
msgstr "
|
| 500 |
|
| 501 |
-
#: core/core.php:
|
| 502 |
msgid "Searching your blog for links..."
|
| 503 |
msgstr "正在您的博客中搜索链接……"
|
| 504 |
|
| 505 |
-
#: core/core.php:
|
| 506 |
msgid "No links detected."
|
| 507 |
msgstr "没有发现链接。"
|
| 508 |
|
| 509 |
-
#: core/core.php:
|
| 510 |
msgctxt "current load"
|
| 511 |
msgid "Unknown"
|
| 512 |
msgstr "未知"
|
| 513 |
|
| 514 |
-
#: core/core.php:
|
| 515 |
-
#: core/core.php:
|
| 516 |
-
#: core/core.php:2710
|
| 517 |
-
#: core/core.php:2792
|
| 518 |
msgid "Oops, I can't find the link %d"
|
| 519 |
msgstr "啊哦,我找不到%d号链接"
|
| 520 |
|
| 521 |
-
#: core/core.php:
|
| 522 |
-
#: core/core.php:2680
|
| 523 |
msgid "Oops, couldn't modify the link!"
|
| 524 |
msgstr "啊哦,无法修改此链接!"
|
| 525 |
|
| 526 |
-
#: core/core.php:
|
| 527 |
-
#: core/core.php:
|
| 528 |
-
#: core/core.php:2818
|
| 529 |
msgid "Error : link_id not specified"
|
| 530 |
-
msgstr "错误:未指定link_id"
|
| 531 |
|
| 532 |
-
#: core/core.php:
|
| 533 |
msgid "Error : link_id or new_url not specified"
|
| 534 |
-
msgstr "错误:未指定link_id或者new_url"
|
| 535 |
|
| 536 |
-
#: core/core.php:
|
| 537 |
msgid "Oops, the new URL is invalid!"
|
| 538 |
msgstr "啊哦,这条新的链接无效!"
|
| 539 |
|
| 540 |
-
#: core/core.php:
|
| 541 |
msgid "An unexpected error occurred!"
|
| 542 |
msgstr "发生了一个未知的错误!"
|
| 543 |
|
| 544 |
-
#: core/core.php:
|
| 545 |
msgid "An unexpected error occured!"
|
| 546 |
msgstr "发生了一个未捕获的异常!"
|
| 547 |
|
| 548 |
-
#: core/core.php:
|
| 549 |
msgid "You don't have sufficient privileges to access this information!"
|
| 550 |
msgstr "您没有足够的权限来访问此信息!"
|
| 551 |
|
| 552 |
-
#: core/core.php:
|
| 553 |
msgid "Error : link ID not specified"
|
| 554 |
msgstr "错误:链接 ID 未指定"
|
| 555 |
|
| 556 |
-
#: core/core.php:
|
| 557 |
msgid "Failed to load link details (%s)"
|
| 558 |
-
msgstr "
|
| 559 |
|
| 560 |
-
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.9.
|
| 561 |
#. Plugin Name of the plugin/theme
|
| 562 |
-
#: core/core.php:
|
| 563 |
msgid "Broken Link Checker"
|
| 564 |
msgstr "失效链接检查器"
|
| 565 |
|
| 566 |
-
#: core/core.php:
|
| 567 |
msgid "PHP version"
|
| 568 |
msgstr "PHP 版本"
|
| 569 |
|
| 570 |
-
#: core/core.php:
|
| 571 |
msgid "MySQL version"
|
| 572 |
msgstr "MySQL 版本"
|
| 573 |
|
| 574 |
-
#: core/core.php:
|
| 575 |
-
msgid "
|
|
|
|
| 576 |
msgstr "您的 CURL 版本过低,重定向检测可能无法正确运行。"
|
| 577 |
|
| 578 |
-
#: core/core.php:
|
| 579 |
-
#: core/core.php:2975
|
| 580 |
-
#: core/core.php:2980
|
| 581 |
msgid "Not installed"
|
| 582 |
msgstr "未安装"
|
| 583 |
|
| 584 |
-
#: core/core.php:
|
| 585 |
msgid "CURL version"
|
| 586 |
msgstr "CURL 版本"
|
| 587 |
|
| 588 |
-
#: core/core.php:
|
| 589 |
msgid "Installed"
|
| 590 |
msgstr "已安装"
|
| 591 |
|
| 592 |
-
#: core/core.php:
|
| 593 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
| 594 |
msgstr "要让插件正常运行,您必须安装 CURL 或者 Snoopy!"
|
| 595 |
|
| 596 |
-
#: core/core.php:
|
| 597 |
msgid "On"
|
| 598 |
msgstr "开启"
|
| 599 |
|
| 600 |
-
#: core/core.php:
|
| 601 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
| 602 |
msgstr "在安全模式打开时重定向可能被识别为无效链接。"
|
| 603 |
|
| 604 |
-
#: core/core.php:
|
| 605 |
-
#: core/core.php:3012
|
| 606 |
msgid "Off"
|
| 607 |
msgstr "关闭"
|
| 608 |
|
| 609 |
-
#: core/core.php:
|
| 610 |
msgid "On ( %s )"
|
| 611 |
msgstr "在(%s)内"
|
| 612 |
|
| 613 |
-
#: core/core.php:
|
| 614 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
| 615 |
msgstr "当 open_basedir 打开时重定向可能被识别为无效链接。"
|
| 616 |
|
| 617 |
-
#: core/core.php:
|
| 618 |
-
msgid "
|
| 619 |
-
|
|
|
|
|
|
|
| 620 |
|
| 621 |
-
#: core/core.php:
|
| 622 |
-
#: core/core.php:3278
|
| 623 |
msgid "[%s] Broken links detected"
|
| 624 |
msgstr "[%s] 检测到失效链接"
|
| 625 |
|
| 626 |
-
#: core/core.php:
|
| 627 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
| 628 |
-
msgid_plural "
|
| 629 |
-
|
|
|
|
| 630 |
|
| 631 |
-
#: core/core.php:
|
| 632 |
msgid "Here's a list of the first %d broken links:"
|
| 633 |
msgid_plural "Here's a list of the first %d broken links:"
|
| 634 |
-
msgstr[0] "
|
| 635 |
|
| 636 |
-
#: core/core.php:
|
| 637 |
msgid "Here's a list of the new broken links: "
|
| 638 |
msgstr "以下列出了新的失效链接:"
|
| 639 |
|
| 640 |
-
#: core/core.php:
|
| 641 |
msgid "Link text : %s"
|
| 642 |
msgstr "链接文字:%s"
|
| 643 |
|
| 644 |
-
#: core/core.php:
|
| 645 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
| 646 |
msgstr "链接网址:<a href=\"%s\">%s</a>"
|
| 647 |
|
| 648 |
-
#: core/core.php:
|
| 649 |
msgid "Source : %s"
|
| 650 |
msgstr "来源:%s"
|
| 651 |
|
| 652 |
-
#: core/core.php:
|
| 653 |
msgid "You can see all broken links here:"
|
| 654 |
msgstr "你可以在此处浏览所有的失效链接:"
|
| 655 |
|
| 656 |
-
#: core/core.php:
|
| 657 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
| 658 |
-
msgid_plural "
|
| 659 |
-
|
|
|
|
| 660 |
|
| 661 |
-
#: core/init.php:
|
| 662 |
msgid "Once Weekly"
|
| 663 |
msgstr "每周一次"
|
| 664 |
|
| 665 |
-
#: core/init.php:
|
| 666 |
msgid "Twice a Month"
|
| 667 |
msgstr "每月两次"
|
| 668 |
|
| 669 |
-
#: core/init.php:
|
| 670 |
-
msgid "
|
|
|
|
|
|
|
| 671 |
msgstr "失效链接检查器安装失败。请尝试重新激活本插件。"
|
| 672 |
|
| 673 |
-
#: core/init.php:
|
| 674 |
-
msgid "
|
|
|
|
|
|
|
| 675 |
msgstr "网络激活不可用。请在各站点上分别启用此插件。"
|
| 676 |
|
| 677 |
-
#: includes/admin/db-upgrade.php:
|
| 678 |
msgid "Failed to delete old DB tables. Database error : %s"
|
| 679 |
msgstr "删除旧数据库失败。数据库错误:%s"
|
| 680 |
|
| 681 |
-
#: includes/admin/links-page-js.php:
|
| 682 |
-
#: includes/admin/links-page-js.php:525
|
| 683 |
msgid "Wait..."
|
| 684 |
msgstr "稍等……"
|
| 685 |
|
| 686 |
-
#: includes/admin/links-page-js.php:
|
| 687 |
-
#: includes/admin/table-printer.php:663
|
| 688 |
-
msgid "Not broken"
|
| 689 |
-
msgstr "未失效"
|
| 690 |
-
|
| 691 |
-
#: includes/admin/links-page-js.php:243
|
| 692 |
msgctxt "link text"
|
| 693 |
msgid "(None)"
|
| 694 |
msgstr "(无)"
|
| 695 |
|
| 696 |
-
#: includes/admin/links-page-js.php:
|
| 697 |
msgctxt "link text"
|
| 698 |
msgid "(Multiple links)"
|
| 699 |
msgstr "(多个链接)"
|
| 700 |
|
| 701 |
-
#: includes/admin/links-page-js.php:
|
| 702 |
msgctxt "link suggestions"
|
| 703 |
msgid "Searching..."
|
| 704 |
msgstr "搜索中……"
|
| 705 |
|
| 706 |
-
#: includes/admin/links-page-js.php:
|
| 707 |
msgctxt "link suggestions"
|
| 708 |
msgid "No suggestions available."
|
| 709 |
msgstr "没有可用的建议。"
|
| 710 |
|
| 711 |
-
#: includes/admin/links-page-js.php:
|
| 712 |
msgctxt "link suggestions"
|
| 713 |
msgid "Archived page from %s (via the Wayback Machine)"
|
| 714 |
msgstr "存档于 %s 的页面(来自 Wayback Machine)"
|
| 715 |
|
| 716 |
-
#: includes/admin/links-page-js.php:
|
| 717 |
msgid "%d instances of the link were successfully modified."
|
| 718 |
-
msgstr "
|
| 719 |
|
| 720 |
-
#: includes/admin/links-page-js.php:
|
| 721 |
-
msgid "
|
| 722 |
-
|
|
|
|
| 723 |
|
| 724 |
-
#: includes/admin/links-page-js.php:
|
| 725 |
msgid "The link could not be modified."
|
| 726 |
msgstr "无法修改链接。"
|
| 727 |
|
| 728 |
-
#: includes/admin/links-page-js.php:
|
| 729 |
msgid "The following error(s) occurred :"
|
| 730 |
msgstr "发生了以下错误:"
|
| 731 |
|
| 732 |
-
#: includes/admin/links-page-js.php:
|
| 733 |
msgid "Error: Link URL must not be empty."
|
| 734 |
msgstr "错误:链接 URL 不能为空。"
|
| 735 |
|
| 736 |
-
#: includes/admin/links-page-js.php:
|
| 737 |
msgid "%d instances of the link were successfully unlinked."
|
| 738 |
-
msgstr "
|
| 739 |
|
| 740 |
-
#: includes/admin/links-page-js.php:
|
| 741 |
msgid "However, %d instances couldn't be removed."
|
| 742 |
-
msgstr "然而,%d个链接无法被移除。"
|
| 743 |
|
| 744 |
-
#: includes/admin/links-page-js.php:
|
| 745 |
msgid "The plugin failed to remove the link."
|
| 746 |
msgstr "移除链接失败。"
|
| 747 |
|
| 748 |
-
#: includes/admin/links-page-js.php:
|
| 749 |
msgid "The following error(s) occured :"
|
| 750 |
msgstr "发生了以下错误:"
|
| 751 |
|
| 752 |
-
#: includes/admin/links-page-js.php:
|
| 753 |
-
#: includes/admin/table-printer.php:281
|
| 754 |
-
#: includes/admin/table-printer.php:657
|
| 755 |
-
msgid "Unlink"
|
| 756 |
-
msgstr "取消链接"
|
| 757 |
-
|
| 758 |
-
#: includes/admin/links-page-js.php:629
|
| 759 |
msgid "Enter a name for the new custom filter"
|
| 760 |
msgstr "输入一个新的自定义过滤器名程"
|
| 761 |
|
| 762 |
-
#: includes/admin/links-page-js.php:
|
| 763 |
msgid ""
|
| 764 |
"You are about to delete the current filter.\n"
|
| 765 |
"'Cancel' to stop, 'OK' to delete"
|
| 766 |
msgstr ""
|
| 767 |
"你将要删除当前使用的过滤器。\n"
|
| 768 |
-
"
|
| 769 |
|
| 770 |
-
#: includes/admin/links-page-js.php:
|
| 771 |
msgid ""
|
| 772 |
-
"Are you sure you want to delete all posts, bookmarks or other items that
|
|
|
|
| 773 |
"'Cancel' to stop, 'OK' to delete"
|
| 774 |
msgstr ""
|
| 775 |
-
"
|
|
|
|
| 776 |
"“取消”以停止,“确定”以删除"
|
| 777 |
|
| 778 |
-
#: includes/admin/links-page-js.php:
|
| 779 |
msgid ""
|
| 780 |
-
"Are you sure you want to remove the selected links? This action can't be
|
|
|
|
| 781 |
"'Cancel' to stop, 'OK' to remove"
|
| 782 |
msgstr ""
|
| 783 |
"你确认将会删除选定的链接吗?本操作无法撤销。\n"
|
| 784 |
"“取消”以停止,“确定”以删除"
|
| 785 |
|
| 786 |
-
#: includes/admin/links-page-js.php:
|
| 787 |
msgid "Enter a search string first."
|
| 788 |
msgstr "需要先输入搜索字符"
|
| 789 |
|
| 790 |
-
#: includes/admin/links-page-js.php:
|
| 791 |
msgid "Select one or more links to edit."
|
| 792 |
msgstr "选择并编辑一个或多个链接"
|
| 793 |
|
|
@@ -803,8 +890,7 @@ msgstr "保存此搜索为过滤器"
|
|
| 803 |
msgid "Delete This Filter"
|
| 804 |
msgstr "删除此过滤器"
|
| 805 |
|
| 806 |
-
#: includes/admin/search-form.php:32
|
| 807 |
-
#: includes/link-query.php:65
|
| 808 |
msgid "Search"
|
| 809 |
msgstr "搜索"
|
| 810 |
|
|
@@ -812,13 +898,11 @@ msgstr "搜索"
|
|
| 812 |
msgid "Link text"
|
| 813 |
msgstr "链接文字"
|
| 814 |
|
| 815 |
-
#: includes/admin/search-form.php:45
|
| 816 |
-
#: includes/admin/table-printer.php:208
|
| 817 |
msgid "URL"
|
| 818 |
msgstr "网址"
|
| 819 |
|
| 820 |
-
#: includes/admin/search-form.php:48
|
| 821 |
-
#: includes/admin/table-printer.php:527
|
| 822 |
msgid "HTTP code"
|
| 823 |
msgstr "HTTP代码"
|
| 824 |
|
|
@@ -826,8 +910,7 @@ msgstr "HTTP代码"
|
|
| 826 |
msgid "Link status"
|
| 827 |
msgstr "链接状态"
|
| 828 |
|
| 829 |
-
#: includes/admin/search-form.php:68
|
| 830 |
-
#: includes/admin/search-form.php:85
|
| 831 |
msgid "Link type"
|
| 832 |
msgstr "链接类型"
|
| 833 |
|
|
@@ -843,346 +926,331 @@ msgstr "链接使用于"
|
|
| 843 |
msgid "Search Links"
|
| 844 |
msgstr "搜索链接"
|
| 845 |
|
| 846 |
-
#: includes/admin/search-form.php:113
|
| 847 |
-
#: includes/admin/table-printer.php:
|
| 848 |
-
#: includes/admin/table-printer.php:687
|
| 849 |
-
#: includes/admin/table-printer.php:812
|
| 850 |
msgid "Cancel"
|
| 851 |
msgstr "取消"
|
| 852 |
|
| 853 |
-
#: includes/admin/sidebar.php:
|
| 854 |
msgid "More plugins by Janis Elsts"
|
| 855 |
msgstr "更多 Janis Elsts 制作的插件"
|
| 856 |
|
| 857 |
-
#: includes/admin/sidebar.php:
|
| 858 |
msgid "Donate $10, $20 or $50!"
|
| 859 |
-
msgstr "
|
| 860 |
|
| 861 |
-
#: includes/admin/sidebar.php:
|
| 862 |
-
msgid "
|
|
|
|
|
|
|
| 863 |
msgstr "如果你喜欢本插件,请捐款支持插件的开发与维护!"
|
| 864 |
|
| 865 |
-
#: includes/admin/sidebar.php:
|
| 866 |
msgid "Return to WordPress Dashboard"
|
| 867 |
msgstr "返回到 WordPress 仪表盘"
|
| 868 |
|
| 869 |
-
#: includes/admin/table-printer.php:
|
| 870 |
msgid "Compact View"
|
| 871 |
msgstr "紧凑视图"
|
| 872 |
|
| 873 |
-
#: includes/admin/table-printer.php:
|
| 874 |
msgid "Detailed View"
|
| 875 |
msgstr "详细视图"
|
| 876 |
|
| 877 |
-
#: includes/admin/table-printer.php:
|
| 878 |
msgid "Source"
|
| 879 |
msgstr "来源"
|
| 880 |
|
| 881 |
-
#: includes/admin/table-printer.php:
|
| 882 |
msgid "Link Text"
|
| 883 |
msgstr "链接文字"
|
| 884 |
|
| 885 |
-
#: includes/admin/table-printer.php:
|
| 886 |
msgid "Redirect URL"
|
| 887 |
msgstr "重定向网址"
|
| 888 |
|
| 889 |
-
#: includes/admin/table-printer.php:
|
| 890 |
msgid "Bulk Actions"
|
| 891 |
msgstr "批量操作"
|
| 892 |
|
| 893 |
-
#: includes/admin/table-printer.php:
|
| 894 |
-
#: includes/admin/table-printer.php:654
|
| 895 |
-
msgid "Edit URL"
|
| 896 |
-
msgstr "修改网址"
|
| 897 |
-
|
| 898 |
-
#: includes/admin/table-printer.php:278
|
| 899 |
-
msgid "Recheck"
|
| 900 |
-
msgstr "重新检查"
|
| 901 |
-
|
| 902 |
-
#: includes/admin/table-printer.php:279
|
| 903 |
msgid "Fix redirects"
|
| 904 |
msgstr "修复重定向"
|
| 905 |
|
| 906 |
-
#: includes/admin/table-printer.php:
|
| 907 |
msgid "Mark as not broken"
|
| 908 |
msgstr "标记为未失效"
|
| 909 |
|
| 910 |
-
#: includes/admin/table-printer.php:
|
| 911 |
msgid "Move sources to Trash"
|
| 912 |
msgstr "移动到回收站"
|
| 913 |
|
| 914 |
-
#: includes/admin/table-printer.php:
|
| 915 |
msgid "Delete sources"
|
| 916 |
msgstr "删除资源"
|
| 917 |
|
| 918 |
-
#: includes/admin/table-printer.php:
|
| 919 |
msgid "«"
|
| 920 |
msgstr "«"
|
| 921 |
|
| 922 |
-
#: includes/admin/table-printer.php:
|
| 923 |
msgid "»"
|
| 924 |
msgstr "»"
|
| 925 |
|
| 926 |
-
#: includes/admin/table-printer.php:
|
| 927 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
| 928 |
-
msgstr "
|
|
|
|
| 929 |
|
| 930 |
-
#: includes/admin/table-printer.php:
|
| 931 |
msgid "Bulk Edit URLs"
|
| 932 |
msgstr "批量修改网址"
|
| 933 |
|
| 934 |
-
#: includes/admin/table-printer.php:
|
| 935 |
msgid "Find"
|
| 936 |
msgstr "查找"
|
| 937 |
|
| 938 |
-
#: includes/admin/table-printer.php:
|
| 939 |
msgid "Replace with"
|
| 940 |
msgstr "代替以"
|
| 941 |
|
| 942 |
-
#: includes/admin/table-printer.php:
|
| 943 |
msgid "Case sensitive"
|
| 944 |
msgstr "大小写敏感"
|
| 945 |
|
| 946 |
-
#: includes/admin/table-printer.php:
|
| 947 |
msgid "Regular expression"
|
| 948 |
msgstr "正则表达式"
|
| 949 |
|
| 950 |
-
#: includes/admin/table-printer.php:
|
| 951 |
-
#: includes/admin/table-printer.php:813
|
| 952 |
msgid "Update"
|
| 953 |
msgstr "更新"
|
| 954 |
|
| 955 |
-
#: includes/admin/table-printer.php:
|
| 956 |
msgid "Post published on"
|
| 957 |
msgstr "文章发布在"
|
| 958 |
|
| 959 |
-
#: includes/admin/table-printer.php:
|
| 960 |
msgid "Link last checked"
|
| 961 |
msgstr "最后一次检查的链接"
|
| 962 |
|
| 963 |
-
#: includes/admin/table-printer.php:
|
| 964 |
msgid "Never"
|
| 965 |
msgstr "从不"
|
| 966 |
|
| 967 |
-
#: includes/admin/table-printer.php:
|
| 968 |
msgid "Response time"
|
| 969 |
msgstr "响应时间"
|
| 970 |
|
| 971 |
-
#: includes/admin/table-printer.php:
|
| 972 |
msgid "%2.3f seconds"
|
| 973 |
msgstr "%2.3f 秒"
|
| 974 |
|
| 975 |
-
#: includes/admin/table-printer.php:
|
| 976 |
msgid "Final URL"
|
| 977 |
msgstr "最终网址"
|
| 978 |
|
| 979 |
-
#: includes/admin/table-printer.php:
|
| 980 |
msgid "Redirect count"
|
| 981 |
msgstr "重定向数目"
|
| 982 |
|
| 983 |
-
#: includes/admin/table-printer.php:
|
| 984 |
msgid "Instance count"
|
| 985 |
msgstr "实例数目"
|
| 986 |
|
| 987 |
-
#: includes/admin/table-printer.php:
|
| 988 |
msgid "This link has failed %d time."
|
| 989 |
msgid_plural "This link has failed %d times."
|
| 990 |
-
msgstr[0] "
|
| 991 |
|
| 992 |
-
#: includes/admin/table-printer.php:
|
| 993 |
msgid "This link has been broken for %s."
|
| 994 |
-
msgstr "
|
| 995 |
|
| 996 |
-
#: includes/admin/table-printer.php:
|
| 997 |
msgid "Log"
|
| 998 |
msgstr "日志"
|
| 999 |
|
| 1000 |
-
#: includes/admin/table-printer.php:
|
| 1001 |
msgid "Show more info about this link"
|
| 1002 |
msgstr "显示关于此链接的更多信息"
|
| 1003 |
|
| 1004 |
-
#: includes/admin/table-printer.php:
|
| 1005 |
msgctxt "checked how long ago"
|
| 1006 |
msgid "Checked"
|
| 1007 |
msgstr "已检查"
|
| 1008 |
|
| 1009 |
-
#: includes/admin/table-printer.php:
|
| 1010 |
msgid "Broken for"
|
| 1011 |
msgstr "失效于"
|
| 1012 |
|
| 1013 |
-
#: includes/admin/table-printer.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1014 |
msgid "Edit this link"
|
| 1015 |
msgstr "编辑此链接"
|
| 1016 |
|
| 1017 |
-
#: includes/admin/table-printer.php:
|
| 1018 |
msgid "Remove this link from all posts"
|
| 1019 |
msgstr "将此链接从所有文章中删除"
|
| 1020 |
|
| 1021 |
-
#: includes/admin/table-printer.php:
|
| 1022 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
| 1023 |
msgstr "将此链接从失效链接列表中删除并标记为有效"
|
| 1024 |
|
| 1025 |
-
#: includes/admin/table-printer.php:
|
| 1026 |
msgid "Hide this link and do not report it again unless its status changes"
|
| 1027 |
msgstr "隐藏此链接,除非链接状态发生改变不再报告此链接问题"
|
| 1028 |
|
| 1029 |
-
#: includes/admin/table-printer.php:
|
| 1030 |
-
msgid "Dismiss"
|
| 1031 |
-
msgstr "屏蔽"
|
| 1032 |
-
|
| 1033 |
-
#: includes/admin/table-printer.php:676
|
| 1034 |
msgid "Undismiss this link"
|
| 1035 |
msgstr "不再屏蔽此链接"
|
| 1036 |
|
| 1037 |
-
#: includes/admin/table-printer.php:
|
| 1038 |
msgid "Undismiss"
|
| 1039 |
msgstr "取消屏蔽"
|
| 1040 |
|
| 1041 |
-
#: includes/admin/table-printer.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1042 |
msgid "Update URL"
|
| 1043 |
msgstr "修改网址"
|
| 1044 |
|
| 1045 |
-
#: includes/admin/table-printer.php:
|
| 1046 |
msgid "[An orphaned link! This is a bug.]"
|
| 1047 |
msgstr "[一个孤立链接!这是一个错误。]"
|
| 1048 |
|
| 1049 |
-
#: includes/admin/table-printer.php:
|
| 1050 |
msgctxt "inline editor title"
|
| 1051 |
msgid "Edit Link"
|
| 1052 |
msgstr "编辑链接"
|
| 1053 |
|
| 1054 |
-
#: includes/admin/table-printer.php:
|
| 1055 |
msgctxt "inline link editor"
|
| 1056 |
msgid "Text"
|
| 1057 |
msgstr "文本"
|
| 1058 |
|
| 1059 |
-
#: includes/admin/table-printer.php:
|
| 1060 |
msgctxt "inline link editor"
|
| 1061 |
msgid "URL"
|
| 1062 |
msgstr "URL"
|
| 1063 |
|
| 1064 |
-
#: includes/admin/table-printer.php:
|
| 1065 |
msgctxt "inline link editor"
|
| 1066 |
msgid "Suggestions"
|
| 1067 |
msgstr "建议"
|
| 1068 |
|
| 1069 |
-
#: includes/admin/table-printer.php:
|
| 1070 |
msgid "Use this URL"
|
| 1071 |
msgstr "使用此 URL"
|
| 1072 |
|
| 1073 |
-
#: includes/any-post.php:
|
| 1074 |
-
#: modules/containers/
|
| 1075 |
-
#: modules/containers/comment.php:153
|
| 1076 |
-
#: modules/containers/custom_field.php:207
|
| 1077 |
msgid "Edit"
|
| 1078 |
msgstr "编辑"
|
| 1079 |
|
| 1080 |
-
#: includes/any-post.php:
|
| 1081 |
-
#: modules/containers/custom_field.php:213
|
| 1082 |
msgid "Move this item to the Trash"
|
| 1083 |
msgstr "移动此项到回收站"
|
| 1084 |
|
| 1085 |
-
#: includes/any-post.php:
|
| 1086 |
-
#: modules/containers/custom_field.php:215
|
| 1087 |
msgid "Trash"
|
| 1088 |
msgstr "回收站"
|
| 1089 |
|
| 1090 |
-
#: includes/any-post.php:
|
| 1091 |
-
#: modules/containers/custom_field.php:220
|
| 1092 |
msgid "Delete this item permanently"
|
| 1093 |
msgstr "永久删除此项目"
|
| 1094 |
|
| 1095 |
-
#: includes/any-post.php:
|
| 1096 |
-
#: modules/containers/
|
| 1097 |
-
#: modules/containers/custom_field.php:222
|
| 1098 |
msgid "Delete"
|
| 1099 |
msgstr "删除"
|
| 1100 |
|
| 1101 |
-
#: includes/any-post.php:
|
| 1102 |
msgid "Preview “%s”"
|
| 1103 |
msgstr "预览 “%s”"
|
| 1104 |
|
| 1105 |
-
#: includes/any-post.php:
|
| 1106 |
msgid "Preview"
|
| 1107 |
msgstr "预览"
|
| 1108 |
|
| 1109 |
-
#: includes/any-post.php:
|
| 1110 |
msgid "View “%s”"
|
| 1111 |
msgstr "查看 “%s”"
|
| 1112 |
|
| 1113 |
-
#: includes/any-post.php:
|
| 1114 |
-
#: modules/containers/
|
| 1115 |
-
#: modules/containers/custom_field.php:227
|
| 1116 |
msgid "View"
|
| 1117 |
msgstr "查看"
|
| 1118 |
|
| 1119 |
-
#: includes/any-post.php:
|
| 1120 |
-
#: modules/containers/custom_field.php:207
|
| 1121 |
msgid "Edit this item"
|
| 1122 |
msgstr "编辑此项目"
|
| 1123 |
|
| 1124 |
-
#: includes/any-post.php:
|
| 1125 |
-
#: modules/containers/blogroll.php:83
|
| 1126 |
#: modules/containers/comment.php:43
|
| 1127 |
msgid "Nothing to update"
|
| 1128 |
msgstr "无需更新"
|
| 1129 |
|
| 1130 |
-
#: includes/any-post.php:
|
| 1131 |
msgid "Updating post %d failed"
|
| 1132 |
msgstr "更新文章%d失败"
|
| 1133 |
|
| 1134 |
-
#: includes/any-post.php:
|
| 1135 |
-
#: modules/containers/custom_field.php:294
|
| 1136 |
msgid "Failed to delete post \"%s\" (%d)"
|
| 1137 |
msgstr "删除文章《%s》(%d)失败"
|
| 1138 |
|
| 1139 |
-
#: includes/any-post.php:
|
| 1140 |
-
|
| 1141 |
-
|
|
|
|
| 1142 |
msgstr "由于回收站功能已关闭,无法移动文章《%s》(%d)到回收站。"
|
| 1143 |
|
| 1144 |
-
#: includes/any-post.php:
|
| 1145 |
-
#: modules/containers/custom_field.php:332
|
| 1146 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
| 1147 |
msgstr "移动文章《%s》(%d)到回收站失败"
|
| 1148 |
|
| 1149 |
-
#: includes/any-post.php:
|
| 1150 |
msgid "%d post deleted."
|
| 1151 |
msgid_plural "%d posts deleted."
|
| 1152 |
-
msgstr[0] "
|
| 1153 |
|
| 1154 |
-
#: includes/any-post.php:
|
| 1155 |
msgid "%d page deleted."
|
| 1156 |
msgid_plural "%d pages deleted."
|
| 1157 |
-
msgstr[0] "
|
| 1158 |
|
| 1159 |
-
#: includes/any-post.php:
|
| 1160 |
msgid "%d \"%s\" deleted."
|
| 1161 |
msgid_plural "%d \"%s\" deleted."
|
| 1162 |
-
msgstr[0] "
|
| 1163 |
|
| 1164 |
-
#: includes/any-post.php:
|
| 1165 |
msgid "%d post moved to the Trash."
|
| 1166 |
msgid_plural "%d posts moved to the Trash."
|
| 1167 |
-
msgstr[0] "
|
| 1168 |
|
| 1169 |
-
#: includes/any-post.php:
|
| 1170 |
msgid "%d page moved to the Trash."
|
| 1171 |
msgid_plural "%d pages moved to the Trash."
|
| 1172 |
-
msgstr[0] "
|
| 1173 |
|
| 1174 |
-
#: includes/any-post.php:
|
| 1175 |
msgid "%d \"%s\" moved to the Trash."
|
| 1176 |
msgid_plural "%d \"%s\" moved to the Trash."
|
| 1177 |
-
msgstr[0] "
|
| 1178 |
|
| 1179 |
#: includes/containers.php:122
|
| 1180 |
msgid "%d '%s' has been deleted"
|
| 1181 |
msgid_plural "%d '%s' have been deleted"
|
| 1182 |
-
msgstr[0] "
|
| 1183 |
|
| 1184 |
-
#: includes/containers.php:
|
| 1185 |
-
#: includes/containers.php:898
|
| 1186 |
msgid "Container type '%s' not recognized"
|
| 1187 |
msgstr "无法识别“%s”类型"
|
| 1188 |
|
|
@@ -1204,7 +1272,7 @@ msgstr "评论"
|
|
| 1204 |
#: includes/extra-strings.php:5
|
| 1205 |
msgctxt "module name"
|
| 1206 |
msgid "Custom fields"
|
| 1207 |
-
msgstr "
|
| 1208 |
|
| 1209 |
#: includes/extra-strings.php:6
|
| 1210 |
msgctxt "module name"
|
|
@@ -1218,300 +1286,286 @@ msgstr "嵌入的 GoogleVideo 视频"
|
|
| 1218 |
|
| 1219 |
#: includes/extra-strings.php:8
|
| 1220 |
msgctxt "module name"
|
| 1221 |
-
msgid "Embedded Megavideo videos"
|
| 1222 |
-
msgstr "嵌入的 Megavideo 视频"
|
| 1223 |
-
|
| 1224 |
-
#: includes/extra-strings.php:9
|
| 1225 |
-
msgctxt "module name"
|
| 1226 |
msgid "Embedded Vimeo videos"
|
| 1227 |
msgstr "嵌入的 Vimeo 视频"
|
| 1228 |
|
| 1229 |
-
#: includes/extra-strings.php:
|
| 1230 |
msgctxt "module name"
|
| 1231 |
msgid "Embedded YouTube playlists (old embed code)"
|
| 1232 |
msgstr "嵌入的 YouTube 播放列表(旧版引用代码)"
|
| 1233 |
|
| 1234 |
-
#: includes/extra-strings.php:
|
| 1235 |
msgctxt "module name"
|
| 1236 |
msgid "Embedded YouTube videos"
|
| 1237 |
msgstr "嵌入的 Youtube 视频"
|
| 1238 |
|
| 1239 |
-
#: includes/extra-strings.php:
|
| 1240 |
msgctxt "module name"
|
| 1241 |
msgid "Embedded YouTube videos (old embed code)"
|
| 1242 |
msgstr "嵌入的 Megavideo 视频(旧版引用代码)"
|
| 1243 |
|
| 1244 |
-
#: includes/extra-strings.php:
|
| 1245 |
-
msgctxt "module name"
|
| 1246 |
-
msgid "FileServe API"
|
| 1247 |
-
msgstr "FileServe API"
|
| 1248 |
-
|
| 1249 |
-
#: includes/extra-strings.php:14
|
| 1250 |
msgctxt "module name"
|
| 1251 |
msgid "HTML images"
|
| 1252 |
msgstr "HTML 图像"
|
| 1253 |
|
| 1254 |
-
#: includes/extra-strings.php:
|
| 1255 |
msgctxt "module name"
|
| 1256 |
msgid "HTML links"
|
| 1257 |
msgstr "HTML 链接"
|
| 1258 |
|
| 1259 |
-
#: includes/extra-strings.php:
|
| 1260 |
msgctxt "module name"
|
| 1261 |
msgid "MediaFire API"
|
| 1262 |
msgstr "MediaFire API"
|
| 1263 |
|
| 1264 |
-
#: includes/extra-strings.php:
|
| 1265 |
-
msgctxt "module name"
|
| 1266 |
-
msgid "MegaUpload API"
|
| 1267 |
-
msgstr "MegaUpload API"
|
| 1268 |
-
|
| 1269 |
-
#: includes/extra-strings.php:18
|
| 1270 |
msgctxt "module name"
|
| 1271 |
msgid "Plaintext URLs"
|
| 1272 |
msgstr "纯文本网址"
|
| 1273 |
|
| 1274 |
-
#: includes/extra-strings.php:
|
| 1275 |
msgctxt "module name"
|
| 1276 |
msgid "RapidShare API"
|
| 1277 |
msgstr "RapidShare API"
|
| 1278 |
|
| 1279 |
-
#: includes/extra-strings.php:
|
| 1280 |
msgctxt "module name"
|
| 1281 |
msgid "Smart YouTube httpv:// URLs"
|
| 1282 |
msgstr "智能 YouTube httpv:// URL"
|
| 1283 |
|
| 1284 |
-
#: includes/extra-strings.php:
|
| 1285 |
msgctxt "module name"
|
| 1286 |
msgid "YouTube API"
|
| 1287 |
msgstr "YouTube API"
|
| 1288 |
|
| 1289 |
-
#: includes/extra-strings.php:
|
| 1290 |
msgctxt "module name"
|
| 1291 |
msgid "Posts"
|
| 1292 |
msgstr "文章"
|
| 1293 |
|
| 1294 |
-
#: includes/extra-strings.php:
|
| 1295 |
msgctxt "module name"
|
| 1296 |
msgid "Pages"
|
| 1297 |
msgstr "页面"
|
| 1298 |
|
| 1299 |
-
#: includes/instances.php:105
|
| 1300 |
-
#: includes/instances.php:161
|
| 1301 |
msgid "Container %s[%d] not found"
|
| 1302 |
msgstr "没有找到%s[%d]容器"
|
| 1303 |
|
| 1304 |
-
#: includes/instances.php:114
|
| 1305 |
-
#: includes/instances.php:170
|
| 1306 |
msgid "Parser '%s' not found."
|
| 1307 |
msgstr "没有找到%s解析器。"
|
| 1308 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1309 |
#: includes/link-query.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1310 |
msgid "Broken"
|
| 1311 |
msgstr "失效"
|
| 1312 |
|
| 1313 |
-
#: includes/link-query.php:
|
| 1314 |
msgid "No broken links found"
|
| 1315 |
msgstr "未找到失效链接"
|
| 1316 |
|
| 1317 |
-
#: includes/link-query.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1318 |
msgid "Redirects"
|
| 1319 |
msgstr "重定向"
|
| 1320 |
|
| 1321 |
-
#: includes/link-query.php:
|
| 1322 |
msgid "Redirected Links"
|
| 1323 |
msgstr "被重定向的链接"
|
| 1324 |
|
| 1325 |
-
#: includes/link-query.php:
|
| 1326 |
msgid "No redirects found"
|
| 1327 |
msgstr "未发现重定向的链接"
|
| 1328 |
|
| 1329 |
-
#: includes/link-query.php:
|
| 1330 |
msgid "Dismissed"
|
| 1331 |
msgstr "已屏蔽"
|
| 1332 |
|
| 1333 |
-
#: includes/link-query.php:
|
| 1334 |
msgid "Dismissed Links"
|
| 1335 |
msgstr "已屏蔽链接"
|
| 1336 |
|
| 1337 |
-
#: includes/link-query.php:
|
| 1338 |
msgid "No dismissed links found"
|
| 1339 |
msgstr "未找到已屏蔽链接"
|
| 1340 |
|
| 1341 |
-
#: includes/link-query.php:
|
| 1342 |
-
msgid "All"
|
| 1343 |
-
msgstr "所有"
|
| 1344 |
-
|
| 1345 |
-
#: includes/link-query.php:57
|
| 1346 |
-
msgid "Detected Links"
|
| 1347 |
-
msgstr "检测到的链接"
|
| 1348 |
-
|
| 1349 |
-
#: includes/link-query.php:58
|
| 1350 |
-
msgid "No links found (yet)"
|
| 1351 |
-
msgstr "(尚未)发现连接"
|
| 1352 |
-
|
| 1353 |
-
#: includes/link-query.php:66
|
| 1354 |
msgid "Search Results"
|
| 1355 |
msgstr "搜索结果"
|
| 1356 |
|
| 1357 |
-
#: includes/link-query.php:
|
| 1358 |
-
#: includes/link-query.php:114
|
| 1359 |
msgid "No links found for your query"
|
| 1360 |
msgstr "没有查询到链接"
|
| 1361 |
|
| 1362 |
-
#: includes/links.php:
|
| 1363 |
msgid "The plugin script was terminated while trying to check the link."
|
| 1364 |
msgstr "插件脚步在试图检查链接时被关闭。"
|
| 1365 |
|
| 1366 |
-
#: includes/links.php:
|
| 1367 |
msgid "The plugin doesn't know how to check this type of link."
|
| 1368 |
msgstr "插件无法找到检查此类链接的方法。"
|
| 1369 |
|
| 1370 |
-
#: includes/links.php:
|
| 1371 |
-
msgid "Link is valid."
|
| 1372 |
-
msgstr "链接有效。"
|
| 1373 |
-
|
| 1374 |
-
#: includes/links.php:363
|
| 1375 |
msgid "Link is broken."
|
| 1376 |
msgstr "链接失效。"
|
| 1377 |
|
| 1378 |
-
#: includes/links.php:
|
| 1379 |
-
|
| 1380 |
-
|
|
|
|
|
|
|
| 1381 |
msgid "Link is not valid"
|
| 1382 |
msgstr "链接有误"
|
| 1383 |
|
| 1384 |
-
#: includes/links.php:
|
| 1385 |
-
msgid "
|
|
|
|
| 1386 |
msgstr "此链接因未在任何内容中使用而无法被编辑。"
|
| 1387 |
|
| 1388 |
-
#: includes/links.php:
|
| 1389 |
msgid "Failed to create a DB entry for the new URL."
|
| 1390 |
msgstr "为新网址建立数据库条目失败。"
|
| 1391 |
|
| 1392 |
-
#: includes/links.php:
|
| 1393 |
msgid "This link is not a redirect"
|
| 1394 |
msgstr "此链接不是重定向"
|
| 1395 |
|
| 1396 |
-
#: includes/links.php:
|
| 1397 |
-
#: includes/links.php:775
|
| 1398 |
msgid "Couldn't delete the link's database record"
|
| 1399 |
msgstr "无法删除链接的数据库记录"
|
| 1400 |
|
| 1401 |
-
#: includes/links.php:
|
| 1402 |
msgctxt "link status"
|
| 1403 |
msgid "Unknown"
|
| 1404 |
msgstr "未知"
|
| 1405 |
|
| 1406 |
-
#: includes/links.php:
|
| 1407 |
-
#: modules/
|
| 1408 |
-
#: modules/extras/mediafire.php:101
|
| 1409 |
msgid "Unknown Error"
|
| 1410 |
msgstr "未知错误"
|
| 1411 |
|
| 1412 |
-
#: includes/links.php:
|
| 1413 |
msgid "Not checked"
|
| 1414 |
msgstr "未检查"
|
| 1415 |
|
| 1416 |
-
#: includes/links.php:
|
| 1417 |
msgid "False positive"
|
| 1418 |
msgstr "错误报告"
|
| 1419 |
|
| 1420 |
-
#: includes/links.php:
|
| 1421 |
-
#: modules/extras/
|
| 1422 |
-
#: modules/extras/megaupload.php:115
|
| 1423 |
-
#: modules/extras/rapidshare.php:145
|
| 1424 |
-
#: modules/extras/rapidshare.php:151
|
| 1425 |
-
#: modules/extras/rapidshare.php:178
|
| 1426 |
msgctxt "link status"
|
| 1427 |
msgid "OK"
|
| 1428 |
msgstr "正常"
|
| 1429 |
|
| 1430 |
-
#: includes/parsers.php:
|
| 1431 |
msgid "Editing is not implemented in the '%s' parser"
|
| 1432 |
msgstr "编辑未在“%s”解析器中生效"
|
| 1433 |
|
| 1434 |
-
#: includes/parsers.php:
|
| 1435 |
msgid "Unlinking is not implemented in the '%s' parser"
|
| 1436 |
msgstr "取消操作未在“%s”解析器中生效"
|
| 1437 |
|
| 1438 |
#: includes/utility-class.php:245
|
| 1439 |
msgid "%d second"
|
| 1440 |
msgid_plural "%d seconds"
|
| 1441 |
-
msgstr[0] "%d秒"
|
| 1442 |
|
| 1443 |
#: includes/utility-class.php:246
|
| 1444 |
msgid "%d second ago"
|
| 1445 |
msgid_plural "%d seconds ago"
|
| 1446 |
-
msgstr[0] "%s秒前"
|
| 1447 |
|
| 1448 |
#: includes/utility-class.php:249
|
| 1449 |
msgid "%d minute"
|
| 1450 |
msgid_plural "%d minutes"
|
| 1451 |
-
msgstr[0] "%d分钟"
|
| 1452 |
|
| 1453 |
#: includes/utility-class.php:250
|
| 1454 |
msgid "%d minute ago"
|
| 1455 |
msgid_plural "%d minutes ago"
|
| 1456 |
-
msgstr[0] "%d分钟前"
|
| 1457 |
|
| 1458 |
#: includes/utility-class.php:253
|
| 1459 |
msgid "%d hour"
|
| 1460 |
msgid_plural "%d hours"
|
| 1461 |
-
msgstr[0] "%d小时"
|
| 1462 |
|
| 1463 |
#: includes/utility-class.php:254
|
| 1464 |
msgid "%d hour ago"
|
| 1465 |
msgid_plural "%d hours ago"
|
| 1466 |
-
msgstr[0] "%d小时前"
|
| 1467 |
|
| 1468 |
#: includes/utility-class.php:257
|
| 1469 |
msgid "%d day"
|
| 1470 |
msgid_plural "%d days"
|
| 1471 |
-
msgstr[0] "%d天"
|
| 1472 |
|
| 1473 |
#: includes/utility-class.php:258
|
| 1474 |
msgid "%d day ago"
|
| 1475 |
msgid_plural "%d days ago"
|
| 1476 |
-
msgstr[0] "%d
|
| 1477 |
|
| 1478 |
#: includes/utility-class.php:261
|
| 1479 |
msgid "%d month"
|
| 1480 |
msgid_plural "%d months"
|
| 1481 |
-
msgstr[0] "%d月"
|
| 1482 |
|
| 1483 |
#: includes/utility-class.php:262
|
| 1484 |
msgid "%d month ago"
|
| 1485 |
msgid_plural "%d months ago"
|
| 1486 |
-
msgstr[0] "%d月前"
|
| 1487 |
|
| 1488 |
-
#: modules/checkers/http.php:
|
| 1489 |
msgid "Server Not Found"
|
| 1490 |
msgstr "找不到服务器"
|
| 1491 |
|
| 1492 |
-
#: modules/checkers/http.php:
|
| 1493 |
msgid "Connection Failed"
|
| 1494 |
msgstr "建立连接失败"
|
| 1495 |
|
| 1496 |
-
#: modules/checkers/http.php:
|
| 1497 |
-
#: modules/checkers/http.php:388
|
| 1498 |
msgid "HTTP code : %d"
|
| 1499 |
msgstr "HTTP代码:%d"
|
| 1500 |
|
| 1501 |
-
#: modules/checkers/http.php:
|
| 1502 |
-
#: modules/checkers/http.php:390
|
| 1503 |
msgid "(No response)"
|
| 1504 |
msgstr "(无响应)"
|
| 1505 |
|
| 1506 |
-
#: modules/checkers/http.php:
|
| 1507 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
| 1508 |
msgstr "最大的可能是连接超时或者此域名不存在。"
|
| 1509 |
|
| 1510 |
-
#: modules/checkers/http.php:
|
| 1511 |
msgid "Request timed out."
|
| 1512 |
msgstr "请求超时。"
|
| 1513 |
|
| 1514 |
-
#: modules/checkers/http.php:
|
| 1515 |
msgid "Using Snoopy"
|
| 1516 |
msgstr "使用 Snoopy"
|
| 1517 |
|
|
@@ -1519,8 +1573,7 @@ msgstr "使用 Snoopy"
|
|
| 1519 |
msgid "Bookmark"
|
| 1520 |
msgstr "书签"
|
| 1521 |
|
| 1522 |
-
#: modules/containers/blogroll.php:27
|
| 1523 |
-
#: modules/containers/blogroll.php:46
|
| 1524 |
msgid "Edit this bookmark"
|
| 1525 |
msgstr "编辑此书签"
|
| 1526 |
|
|
@@ -1557,41 +1610,40 @@ msgstr "删除评论%d失败"
|
|
| 1557 |
msgid "Can't move comment %d to the trash"
|
| 1558 |
msgstr "无法移动评论%d到回收站"
|
| 1559 |
|
| 1560 |
-
#: modules/containers/comment.php:
|
| 1561 |
-
#: modules/containers/comment.php:195
|
| 1562 |
msgid "Edit comment"
|
| 1563 |
msgstr "编辑评论"
|
| 1564 |
|
| 1565 |
-
#: modules/containers/comment.php:
|
| 1566 |
msgid "Delete Permanently"
|
| 1567 |
msgstr "永久删除"
|
| 1568 |
|
| 1569 |
-
#: modules/containers/comment.php:
|
| 1570 |
msgid "Move this comment to the trash"
|
| 1571 |
msgstr "移动此条评论到回收站"
|
| 1572 |
|
| 1573 |
-
#: modules/containers/comment.php:
|
| 1574 |
msgctxt "verb"
|
| 1575 |
msgid "Trash"
|
| 1576 |
msgstr "回收站"
|
| 1577 |
|
| 1578 |
-
#: modules/containers/comment.php:
|
| 1579 |
msgid "View comment"
|
| 1580 |
msgstr "查看评论"
|
| 1581 |
|
| 1582 |
-
#: modules/containers/comment.php:
|
| 1583 |
msgid "Comment"
|
| 1584 |
msgstr "评论"
|
| 1585 |
|
| 1586 |
-
#: modules/containers/comment.php:
|
| 1587 |
msgid "%d comment has been deleted."
|
| 1588 |
msgid_plural "%d comments have been deleted."
|
| 1589 |
-
msgstr[0] "
|
| 1590 |
|
| 1591 |
-
#: modules/containers/comment.php:
|
| 1592 |
msgid "%d comment moved to the Trash."
|
| 1593 |
msgid_plural "%d comments moved to the Trash."
|
| 1594 |
-
msgstr[0] "
|
| 1595 |
|
| 1596 |
#: modules/containers/custom_field.php:85
|
| 1597 |
msgid "Failed to update the meta field '%s' on %s [%d]"
|
|
@@ -1601,16 +1653,15 @@ msgstr "更新Meta栏目“%s”失败,栏目位于%s [%d]"
|
|
| 1601 |
msgid "Failed to delete the meta field '%s' on %s [%d]"
|
| 1602 |
msgstr "删除Meta栏目“%s”失败,栏目位于%s [%d]"
|
| 1603 |
|
| 1604 |
-
#: modules/containers/custom_field.php:
|
| 1605 |
msgid "Edit this post"
|
| 1606 |
msgstr "编辑此文章"
|
| 1607 |
|
| 1608 |
-
#: modules/containers/custom_field.php:
|
| 1609 |
msgid "View \"%s\""
|
| 1610 |
msgstr "查看“%s”"
|
| 1611 |
|
| 1612 |
-
#: modules/containers/dummy.php:34
|
| 1613 |
-
#: modules/containers/dummy.php:45
|
| 1614 |
msgid "I don't know how to edit a '%s' [%d]."
|
| 1615 |
msgstr "我不知道如何编辑“%s” [%d]。"
|
| 1616 |
|
|
@@ -1623,26 +1674,11 @@ msgid "Embedded DailyMotion video"
|
|
| 1623 |
msgstr "嵌入的 DailyMotion 视频"
|
| 1624 |
|
| 1625 |
#: modules/extras/embed-parser-base.php:197
|
| 1626 |
-
msgid "
|
|
|
|
|
|
|
| 1627 |
msgstr "无法使用失效链接检查器编辑嵌入的视频,请手动编辑或替换存在问题的视频。"
|
| 1628 |
|
| 1629 |
-
#: modules/extras/fileserve.php:55
|
| 1630 |
-
msgid "Using FileServe API"
|
| 1631 |
-
msgstr "使用 FileServe API"
|
| 1632 |
-
|
| 1633 |
-
#: modules/extras/fileserve.php:112
|
| 1634 |
-
#: modules/extras/mediafire.php:91
|
| 1635 |
-
#: modules/extras/mediafire.php:96
|
| 1636 |
-
#: modules/extras/megaupload.php:81
|
| 1637 |
-
#: modules/extras/megaupload.php:123
|
| 1638 |
-
#: modules/extras/rapidshare.php:139
|
| 1639 |
-
msgid "Not Found"
|
| 1640 |
-
msgstr "找不到"
|
| 1641 |
-
|
| 1642 |
-
#: modules/extras/fileserve.php:115
|
| 1643 |
-
msgid "FileServe : %d %s"
|
| 1644 |
-
msgstr "FileServe:%d %s"
|
| 1645 |
-
|
| 1646 |
#: modules/extras/googlevideo-embed.php:24
|
| 1647 |
msgid "GoogleVideo Video"
|
| 1648 |
msgstr "GoogleVideo 视频"
|
|
@@ -1651,21 +1687,14 @@ msgstr "GoogleVideo 视频"
|
|
| 1651 |
msgid "Embedded GoogleVideo video"
|
| 1652 |
msgstr "嵌入的 GoogleVideo 视频"
|
| 1653 |
|
| 1654 |
-
#: modules/extras/
|
| 1655 |
-
|
| 1656 |
-
|
| 1657 |
-
|
| 1658 |
-
#: modules/extras/megaupload.php:136
|
| 1659 |
-
msgid "API Error"
|
| 1660 |
-
msgstr "API错误"
|
| 1661 |
-
|
| 1662 |
-
#: modules/extras/megavideo-embed.php:24
|
| 1663 |
-
msgid "Megavideo Video"
|
| 1664 |
-
msgstr "Megavideo视频"
|
| 1665 |
|
| 1666 |
-
#: modules/extras/
|
| 1667 |
-
msgid "
|
| 1668 |
-
msgstr "
|
| 1669 |
|
| 1670 |
#: modules/extras/rapidshare.php:51
|
| 1671 |
msgid "Using RapidShare API"
|
|
@@ -1699,13 +1728,11 @@ msgstr "Vimeo 视频"
|
|
| 1699 |
msgid "Embedded Vimeo video"
|
| 1700 |
msgstr "嵌入的 Vimeo 视频"
|
| 1701 |
|
| 1702 |
-
#: modules/extras/youtube-embed.php:24
|
| 1703 |
-
#: modules/extras/youtube-iframe.php:25
|
| 1704 |
msgid "YouTube Video"
|
| 1705 |
msgstr "YouTube 视频"
|
| 1706 |
|
| 1707 |
-
#: modules/extras/youtube-embed.php:25
|
| 1708 |
-
#: modules/extras/youtube-iframe.php:26
|
| 1709 |
msgid "Embedded YouTube video"
|
| 1710 |
msgstr "嵌入的 YouTube 视频"
|
| 1711 |
|
|
@@ -1717,8 +1744,7 @@ msgstr "YouTube 播放列表"
|
|
| 1717 |
msgid "Embedded YouTube playlist"
|
| 1718 |
msgstr "嵌入的 Youtube 播放列表"
|
| 1719 |
|
| 1720 |
-
#: modules/extras/youtube.php:124
|
| 1721 |
-
#: modules/extras/youtube.php:127
|
| 1722 |
msgid "Video Not Found"
|
| 1723 |
msgstr "找不到视频"
|
| 1724 |
|
|
@@ -1728,36 +1754,30 @@ msgstr "视频已被移除"
|
|
| 1728 |
|
| 1729 |
#: modules/extras/youtube.php:143
|
| 1730 |
msgid "Invalid Video ID"
|
| 1731 |
-
msgstr "无效的视频ID"
|
| 1732 |
|
| 1733 |
#: modules/extras/youtube.php:155
|
| 1734 |
msgid "Video OK"
|
| 1735 |
msgstr "视频正常"
|
| 1736 |
|
| 1737 |
-
#: modules/extras/youtube.php:156
|
| 1738 |
-
#: modules/extras/youtube.php:
|
| 1739 |
-
#: modules/extras/youtube.php:249
|
| 1740 |
-
#: modules/extras/youtube.php:289
|
| 1741 |
msgid "OK"
|
| 1742 |
msgstr "正常"
|
| 1743 |
|
| 1744 |
-
#: modules/extras/youtube.php:170
|
| 1745 |
-
#: modules/extras/youtube.php:271
|
| 1746 |
msgid "Video status : %s%s"
|
| 1747 |
msgstr "视频状态:%s%s"
|
| 1748 |
|
| 1749 |
-
#: modules/extras/youtube.php:182
|
| 1750 |
-
#: modules/extras/youtube.php:280
|
| 1751 |
msgid "Video Restricted"
|
| 1752 |
msgstr "视频受限制"
|
| 1753 |
|
| 1754 |
-
#: modules/extras/youtube.php:199
|
| 1755 |
-
#: modules/extras/youtube.php:305
|
| 1756 |
msgid "Unknown YouTube API response received."
|
| 1757 |
msgstr "收到未知的 YouTube API 响应。"
|
| 1758 |
|
| 1759 |
-
#: modules/extras/youtube.php:217
|
| 1760 |
-
#: modules/extras/youtube.php:220
|
| 1761 |
msgid "Playlist Not Found"
|
| 1762 |
msgstr "找不到播放列表"
|
| 1763 |
|
|
@@ -1787,14 +1807,16 @@ msgstr "图像"
|
|
| 1787 |
|
| 1788 |
#: modules/parsers/metadata.php:119
|
| 1789 |
msgid "Custom field"
|
| 1790 |
-
msgstr "
|
| 1791 |
|
| 1792 |
#. Plugin URI of the plugin/theme
|
| 1793 |
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 1794 |
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 1795 |
|
| 1796 |
#. Description of the plugin/theme
|
| 1797 |
-
msgid "
|
|
|
|
|
|
|
| 1798 |
msgstr "检查您文章中的失效链接和丢失的图片,如果有任何发现就在仪表盘中提醒您。"
|
| 1799 |
|
| 1800 |
#. Author of the plugin/theme
|
|
@@ -1805,6 +1827,36 @@ msgstr "Janis Elsts"
|
|
| 1805 |
msgid "http://w-shadow.com/"
|
| 1806 |
msgstr "http://w-shadow.com/"
|
| 1807 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1808 |
#~ msgid "Check URLs entered in these custom fields (one per line) :"
|
| 1809 |
#~ msgstr "检测输入到此自定义栏目中的链接(每个链接一行):"
|
| 1810 |
|
| 2 |
msgstr ""
|
| 3 |
"Project-Id-Version: \n"
|
| 4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 5 |
+
"POT-Creation-Date: 2014-11-25 11:57:14+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: zh_CN\n"
|
| 10 |
"MIME-Version: 1.0\n"
|
| 11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 12 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
|
|
| 13 |
"X-Poedit-SourceCharset: utf-8\n"
|
| 14 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
| 15 |
+
"X-Generator: Poedit 1.5.4\n"
|
| 16 |
|
| 17 |
+
#: core/core.php:156 includes/admin/links-page-js.php:44
|
|
|
|
| 18 |
msgid "Loading..."
|
| 19 |
msgstr "加载中……"
|
| 20 |
|
| 21 |
+
#: core/core.php:180 includes/admin/options-page-js.php:18
|
|
|
|
| 22 |
msgid "[ Network error ]"
|
| 23 |
msgstr "[ 网络错误 ]"
|
| 24 |
|
| 25 |
+
#: core/core.php:207
|
| 26 |
msgid "Automatically expand the widget if broken links have been detected"
|
| 27 |
msgstr "当检测到失效链接时自动展开窗口部件"
|
| 28 |
|
| 29 |
+
#: core/core.php:298
|
| 30 |
msgid "Link Checker Settings"
|
| 31 |
msgstr "链接检查器设置"
|
| 32 |
|
| 33 |
+
#: core/core.php:299
|
| 34 |
msgid "Link Checker"
|
| 35 |
msgstr "链接检查器"
|
| 36 |
|
| 37 |
+
#: core/core.php:304 includes/link-query.php:37
|
|
|
|
| 38 |
msgid "Broken Links"
|
| 39 |
msgstr "失效链接"
|
| 40 |
|
| 41 |
+
#: core/core.php:320
|
| 42 |
msgid "View Broken Links"
|
| 43 |
msgstr "查看失效链接"
|
| 44 |
|
| 45 |
+
#: core/core.php:335
|
| 46 |
msgid "Feedback"
|
| 47 |
msgstr "反馈"
|
| 48 |
|
| 49 |
+
#: core/core.php:343
|
| 50 |
msgid "Go to Broken Links"
|
| 51 |
msgstr "查看失效链接"
|
| 52 |
|
| 53 |
+
#: core/core.php:372
|
| 54 |
msgid "Settings"
|
| 55 |
msgstr "设置"
|
| 56 |
|
| 57 |
+
#: core/core.php:401 includes/admin/table-printer.php:287
|
| 58 |
+
#: includes/admin/table-printer.php:678
|
| 59 |
+
msgid "Edit URL"
|
| 60 |
+
msgstr "修改网址"
|
| 61 |
+
|
| 62 |
+
#: core/core.php:402 includes/admin/links-page-js.php:699
|
| 63 |
+
#: includes/admin/table-printer.php:292 includes/admin/table-printer.php:681
|
| 64 |
+
msgid "Unlink"
|
| 65 |
+
msgstr "取消链接"
|
| 66 |
+
|
| 67 |
+
#: core/core.php:403 includes/admin/links-page-js.php:110
|
| 68 |
+
#: includes/admin/table-printer.php:687
|
| 69 |
+
msgid "Not broken"
|
| 70 |
+
msgstr "未失效"
|
| 71 |
+
|
| 72 |
+
#: core/core.php:404 includes/admin/table-printer.php:291
|
| 73 |
+
#: includes/admin/table-printer.php:695
|
| 74 |
+
msgid "Dismiss"
|
| 75 |
+
msgstr "屏蔽"
|
| 76 |
+
|
| 77 |
+
#: core/core.php:405 includes/admin/table-printer.php:288
|
| 78 |
+
#: includes/admin/table-printer.php:707
|
| 79 |
+
msgid "Recheck"
|
| 80 |
+
msgstr "重新检查"
|
| 81 |
+
|
| 82 |
+
#: core/core.php:406 includes/admin/table-printer.php:715
|
| 83 |
+
msgctxt "link action; replace one redirect with a direct link"
|
| 84 |
+
msgid "Fix redirect"
|
| 85 |
+
msgstr "修复重定向"
|
| 86 |
+
|
| 87 |
+
#: core/core.php:626
|
| 88 |
msgid "Settings saved."
|
| 89 |
msgstr "设置已保存。"
|
| 90 |
|
| 91 |
+
#: core/core.php:632
|
| 92 |
msgid "Thank you for your donation!"
|
| 93 |
msgstr "感谢您的捐赠!"
|
| 94 |
|
| 95 |
+
#: core/core.php:640
|
| 96 |
msgid "Complete site recheck started."
|
| 97 |
msgstr "站点完整重新检查开始。"
|
| 98 |
|
| 99 |
+
#: core/core.php:662
|
|
|
|
|
|
|
|
|
|
|
|
|
| 100 |
msgid "General"
|
| 101 |
msgstr "常规"
|
| 102 |
|
| 103 |
+
#: core/core.php:663
|
| 104 |
msgid "Look For Links In"
|
| 105 |
msgstr "检查范围"
|
| 106 |
|
| 107 |
+
#: core/core.php:664
|
| 108 |
msgid "Which Links To Check"
|
| 109 |
msgstr "检查类型"
|
| 110 |
|
| 111 |
+
#: core/core.php:665
|
| 112 |
msgid "Protocols & APIs"
|
| 113 |
+
msgstr "协议和 API"
|
| 114 |
|
| 115 |
+
#: core/core.php:666
|
| 116 |
msgid "Advanced"
|
| 117 |
msgstr "高级"
|
| 118 |
|
| 119 |
+
#: core/core.php:681
|
| 120 |
msgid "Broken Link Checker Options"
|
| 121 |
msgstr "链接检查器选项"
|
| 122 |
|
| 123 |
+
#: core/core.php:723 includes/admin/table-printer.php:211
|
|
|
|
| 124 |
msgid "Status"
|
| 125 |
msgstr "状态"
|
| 126 |
|
| 127 |
+
#: core/core.php:725 includes/admin/options-page-js.php:56
|
|
|
|
| 128 |
msgid "Show debug info"
|
| 129 |
msgstr "显示调试信息"
|
| 130 |
|
| 131 |
+
#: core/core.php:753
|
| 132 |
msgid "Check each link"
|
| 133 |
msgstr "检查每个链接"
|
| 134 |
|
| 135 |
+
#: core/core.php:758
|
| 136 |
msgid "Every %s hours"
|
| 137 |
msgstr "每 %s 小时"
|
| 138 |
|
| 139 |
+
#: core/core.php:767
|
| 140 |
+
msgid ""
|
| 141 |
+
"Existing links will be checked this often. New links will usually be checked "
|
| 142 |
+
"ASAP."
|
| 143 |
msgstr "将以此频率检测所有链接,将立即检测新增链接。"
|
| 144 |
|
| 145 |
+
#: core/core.php:774
|
| 146 |
msgid "E-mail notifications"
|
| 147 |
msgstr "电子邮件通知"
|
| 148 |
|
| 149 |
+
#: core/core.php:780
|
| 150 |
msgid "Send me e-mail notifications about newly detected broken links"
|
| 151 |
msgstr "当检测到新失效链接时向我发送电子邮件通知"
|
| 152 |
|
| 153 |
+
#: core/core.php:788
|
| 154 |
msgid "Send authors e-mail notifications about broken links in their posts"
|
| 155 |
msgstr "当检测到新失效链接时向作者发送电子邮件通知"
|
| 156 |
|
| 157 |
+
#: core/core.php:795
|
| 158 |
msgid "Notification e-mail address"
|
| 159 |
msgstr "接收通知的电子邮件地址"
|
| 160 |
|
| 161 |
+
#: core/core.php:807
|
| 162 |
+
msgid ""
|
| 163 |
+
"Leave empty to use the e-mail address specified in Settings → General."
|
| 164 |
msgstr "留空以使用 设置 → 常规 中指定的电子邮件地址。"
|
| 165 |
|
| 166 |
+
#: core/core.php:814
|
| 167 |
msgid "Link tweaks"
|
| 168 |
msgstr "链接调整"
|
| 169 |
|
| 170 |
+
#: core/core.php:820
|
| 171 |
msgid "Apply custom formatting to broken links"
|
| 172 |
msgstr "将自定义样式应用到失效链接"
|
| 173 |
|
| 174 |
+
#: core/core.php:824 core/core.php:855
|
|
|
|
| 175 |
msgid "Edit CSS"
|
| 176 |
msgstr "编辑样式"
|
| 177 |
|
| 178 |
+
#: core/core.php:840
|
| 179 |
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
| 180 |
msgstr "示例:Lorem ipsum <a %s>失效链接</a>, dolor sit amet."
|
| 181 |
|
| 182 |
+
#: core/core.php:843 core/core.php:874
|
|
|
|
| 183 |
msgid "Click \"Save Changes\" to update example output."
|
| 184 |
msgstr "单击“保持变更”更新输出示例。"
|
| 185 |
|
| 186 |
+
#: core/core.php:851
|
| 187 |
msgid "Apply custom formatting to removed links"
|
| 188 |
msgstr "对已经移除的链接应用自定义格式"
|
| 189 |
|
| 190 |
+
#: core/core.php:871
|
| 191 |
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
| 192 |
msgstr "示例:Lorem ipsum <span %s>失效链接</span>, dolor sit amet."
|
| 193 |
|
| 194 |
+
#: core/core.php:884
|
| 195 |
msgid "Stop search engines from following broken links"
|
| 196 |
msgstr "要求搜索引擎不跟踪已经失效的链接"
|
| 197 |
|
| 198 |
+
#: core/core.php:890
|
| 199 |
+
msgctxt "\"Link tweaks\" settings"
|
| 200 |
+
msgid ""
|
| 201 |
+
"These settings only apply to the content of posts, not comments or custom "
|
| 202 |
+
"fields."
|
| 203 |
+
msgstr "此类设置仅对文章内容生效,不适用于评论或自定义字段。"
|
| 204 |
+
|
| 205 |
+
#: core/core.php:901
|
| 206 |
msgctxt "settings page"
|
| 207 |
msgid "Suggestions"
|
| 208 |
msgstr "建议"
|
| 209 |
|
| 210 |
+
#: core/core.php:906
|
| 211 |
msgid "Suggest alternatives to broken links"
|
| 212 |
msgstr "提供失效链接的替换建议"
|
| 213 |
|
| 214 |
+
#: core/core.php:912
|
| 215 |
+
msgctxt "settings page"
|
| 216 |
+
msgid "Warnings"
|
| 217 |
+
msgstr "注意"
|
| 218 |
+
|
| 219 |
+
#: core/core.php:917
|
| 220 |
+
msgid "Show uncertain or minor problems as \"warnings\" instead of \"broken\""
|
| 221 |
+
msgstr "将不确定或小问题报告为“注意”而非“失效”"
|
| 222 |
+
|
| 223 |
+
#: core/core.php:920
|
| 224 |
+
msgid ""
|
| 225 |
+
"Turning off this option will make the plugin report all problems as broken "
|
| 226 |
+
"links."
|
| 227 |
+
msgstr "关闭此选项将报告所有问题为失效链接。"
|
| 228 |
+
|
| 229 |
+
#: core/core.php:935
|
| 230 |
msgid "Look for links in"
|
| 231 |
msgstr "检查以下范围的链接"
|
| 232 |
|
| 233 |
+
#: core/core.php:946
|
| 234 |
msgid "Post statuses"
|
| 235 |
msgstr "发布状态"
|
| 236 |
|
| 237 |
+
#: core/core.php:979
|
| 238 |
msgid "Link types"
|
| 239 |
msgstr "链接类型"
|
| 240 |
|
| 241 |
+
#: core/core.php:985
|
| 242 |
msgid "Error : All link parsers missing!"
|
| 243 |
msgstr "错误:无法找到链接解析器!"
|
| 244 |
|
| 245 |
+
#: core/core.php:992
|
| 246 |
msgid "Exclusion list"
|
| 247 |
msgstr "排除列表"
|
| 248 |
|
| 249 |
+
#: core/core.php:993
|
| 250 |
+
msgid ""
|
| 251 |
+
"Don't check links where the URL contains any of these words (one per line) :"
|
| 252 |
msgstr "不检测含有以下关键字的链接(每个关键字一行):"
|
| 253 |
|
| 254 |
+
#: core/core.php:1011
|
| 255 |
msgid "Check links using"
|
| 256 |
msgstr "检查链接"
|
| 257 |
|
| 258 |
+
#: core/core.php:1030 includes/links.php:1012
|
|
|
|
| 259 |
msgid "Timeout"
|
| 260 |
msgstr "超时"
|
| 261 |
|
| 262 |
+
#: core/core.php:1036 core/core.php:1123 core/core.php:3409
|
|
|
|
|
|
|
| 263 |
msgid "%s seconds"
|
| 264 |
msgstr "%s 秒"
|
| 265 |
|
| 266 |
+
#: core/core.php:1045
|
| 267 |
msgid "Links that take longer than this to load will be marked as broken."
|
| 268 |
msgstr "检测时若链接在此时间内未响应将被视为失效。"
|
| 269 |
|
| 270 |
+
#: core/core.php:1052
|
| 271 |
msgid "Link monitor"
|
| 272 |
msgstr "链接监视器"
|
| 273 |
|
| 274 |
+
#: core/core.php:1060
|
| 275 |
msgid "Run continuously while the Dashboard is open"
|
| 276 |
msgstr "在仪表盘打开时持续运行"
|
| 277 |
|
| 278 |
+
#: core/core.php:1068
|
| 279 |
msgid "Run hourly in the background"
|
| 280 |
msgstr "在后台每小时运行一次"
|
| 281 |
|
| 282 |
+
#: core/core.php:1076
|
| 283 |
msgid "Show the dashboard widget for"
|
| 284 |
msgstr "为以下用户显示仪表盘部件"
|
| 285 |
|
| 286 |
+
#: core/core.php:1081
|
| 287 |
msgctxt "dashboard widget visibility"
|
| 288 |
msgid "Administrator"
|
| 289 |
msgstr "管理员"
|
| 290 |
|
| 291 |
+
#: core/core.php:1082
|
| 292 |
msgctxt "dashboard widget visibility"
|
| 293 |
msgid "Editor and above"
|
| 294 |
msgstr "编辑及以上"
|
| 295 |
|
| 296 |
+
#: core/core.php:1083
|
| 297 |
msgctxt "dashboard widget visibility"
|
| 298 |
msgid "Nobody (disables the widget)"
|
| 299 |
msgstr "没有人(禁用此小部件)"
|
| 300 |
|
| 301 |
+
#: core/core.php:1099
|
| 302 |
+
msgctxt "settings page"
|
| 303 |
+
msgid "Show link actions"
|
| 304 |
+
msgstr "显示链接操作"
|
| 305 |
+
|
| 306 |
+
#: core/core.php:1117
|
| 307 |
msgid "Max. execution time"
|
| 308 |
msgstr "最大执行时间"
|
| 309 |
|
| 310 |
+
#: core/core.php:1134
|
| 311 |
+
msgid ""
|
| 312 |
+
"The plugin works by periodically launching a background job that parses your "
|
| 313 |
+
"posts for links, checks the discovered URLs, and performs other time-"
|
| 314 |
+
"consuming tasks. Here you can set for how long, at most, the link monitor "
|
| 315 |
+
"may run each time before stopping."
|
| 316 |
+
msgstr ""
|
| 317 |
+
"插件通过定期在后台创建一个实例来解析你的文章以搜索链接,检查找到的链接并执行"
|
| 318 |
+
"一些其他耗时的任务。在这里你可以设置后台实例每次最多可以运行多长时间,通常情"
|
| 319 |
+
"况下,链接监视会在每次会话结束前完成。"
|
| 320 |
|
| 321 |
+
#: core/core.php:1143
|
| 322 |
msgid "Server load limit"
|
| 323 |
msgstr "服务器负载限制"
|
| 324 |
|
| 325 |
+
#: core/core.php:1158
|
| 326 |
msgid "Current load : %s"
|
| 327 |
msgstr "当前负载:%s"
|
| 328 |
|
| 329 |
+
#: core/core.php:1163
|
| 330 |
+
msgid ""
|
| 331 |
+
"Link checking will be suspended if the average <a href=\"%s\">server load</"
|
| 332 |
+
"a> rises above this number. Leave this field blank to disable load limiting."
|
| 333 |
+
msgstr ""
|
| 334 |
+
"当平均<a href=\"%s\">服务器负载</a>超过此值时,链接检查将会暂停。留空此栏以关"
|
| 335 |
+
"闭负载限制。"
|
| 336 |
|
| 337 |
+
#: core/core.php:1172
|
| 338 |
msgid "Not available"
|
| 339 |
msgstr "不可用"
|
| 340 |
|
| 341 |
+
#: core/core.php:1174
|
| 342 |
+
msgid ""
|
| 343 |
+
"Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
|
| 344 |
+
"code> is present and accessible."
|
| 345 |
+
msgstr ""
|
| 346 |
+
"负载限制仅适用于开启<code>/proc/loadavg</code>并且可读取的类Linux操作系统。"
|
| 347 |
+
|
| 348 |
+
#: core/core.php:1182
|
| 349 |
+
msgid "Target resource usage"
|
| 350 |
+
msgstr "目标资源使用量"
|
| 351 |
|
| 352 |
+
#: core/core.php:1200
|
| 353 |
msgid "Logging"
|
| 354 |
msgstr "日志"
|
| 355 |
|
| 356 |
+
#: core/core.php:1206
|
| 357 |
msgid "Enable logging"
|
| 358 |
msgstr "启用日志"
|
| 359 |
|
| 360 |
+
#: core/core.php:1213
|
| 361 |
msgid "Log file location"
|
| 362 |
msgstr "日志文件位置"
|
| 363 |
|
| 364 |
+
#: core/core.php:1222
|
| 365 |
msgctxt "log file location"
|
| 366 |
msgid "Default"
|
| 367 |
msgstr "默认"
|
| 368 |
|
| 369 |
+
#: core/core.php:1236
|
| 370 |
msgctxt "log file location"
|
| 371 |
msgid "Custom"
|
| 372 |
msgstr "自定义"
|
| 373 |
|
| 374 |
+
#: core/core.php:1248
|
| 375 |
msgid "Forced recheck"
|
| 376 |
msgstr "强制重新检查"
|
| 377 |
|
| 378 |
+
#: core/core.php:1251
|
| 379 |
msgid "Re-check all pages"
|
| 380 |
msgstr "重新检查所有页面"
|
| 381 |
|
| 382 |
+
#: core/core.php:1255
|
| 383 |
+
msgid ""
|
| 384 |
+
"The \"Nuclear Option\". Click this button to make the plugin empty its link "
|
| 385 |
+
"database and recheck the entire site from scratch."
|
| 386 |
+
msgstr ""
|
| 387 |
+
"注意这是“强破坏性选项”。单击此按钮以清空链接数据库并重新检查站点上的所有链"
|
| 388 |
+
"接。"
|
| 389 |
|
| 390 |
+
#: core/core.php:1266
|
| 391 |
msgid "Save Changes"
|
| 392 |
msgstr "保存更改"
|
| 393 |
|
| 394 |
+
#: core/core.php:1317
|
| 395 |
msgid "Configure"
|
| 396 |
msgstr "配置"
|
| 397 |
|
| 398 |
+
#: core/core.php:1399
|
| 399 |
+
msgid ""
|
| 400 |
+
"Enter the names of custom fields you want to check (one per line). If a "
|
| 401 |
+
"field contains HTML code, prefix its name with <code>html:</code>. For "
|
| 402 |
+
"example, <code>html:field_name</code>."
|
| 403 |
+
msgstr ""
|
| 404 |
+
"输入需要检查的自定义字段名称(每行一个)。如果栏目包含 HTML 代码,请在名称前"
|
| 405 |
+
"添加前缀 <code>html:</code>,例如 <code>html:field_name</code>。"
|
| 406 |
|
| 407 |
+
#: core/core.php:1534 core/core.php:1617 core/core.php:1649
|
|
|
|
|
|
|
| 408 |
msgid "Database error : %s"
|
| 409 |
msgstr "数据库错误:%s"
|
| 410 |
|
| 411 |
+
#: core/core.php:1599
|
| 412 |
msgid "You must enter a filter name!"
|
| 413 |
msgstr "你需要输入一个过滤器名称!"
|
| 414 |
|
| 415 |
+
#: core/core.php:1603
|
| 416 |
msgid "Invalid search query."
|
| 417 |
msgstr "无效的查询。"
|
| 418 |
|
| 419 |
+
#: core/core.php:1612
|
| 420 |
msgid "Filter \"%s\" created"
|
| 421 |
msgstr "已创建“%s”过滤器"
|
| 422 |
|
| 423 |
+
#: core/core.php:1639
|
| 424 |
msgid "Filter ID not specified."
|
| 425 |
msgstr "过滤器ID未指定。"
|
| 426 |
|
| 427 |
+
#: core/core.php:1646
|
| 428 |
msgid "Filter deleted"
|
| 429 |
msgstr "已删除过滤器"
|
| 430 |
|
| 431 |
+
#: core/core.php:1693
|
| 432 |
msgid "Replaced %d redirect with a direct link"
|
| 433 |
msgid_plural "Replaced %d redirects with direct links"
|
| 434 |
+
msgstr[0] "已使用直接链接替换了 %d 个重定向"
|
| 435 |
|
| 436 |
+
#: core/core.php:1704
|
| 437 |
msgid "Failed to fix %d redirect"
|
| 438 |
msgid_plural "Failed to fix %d redirects"
|
| 439 |
+
msgstr[0] "修复 %d 个重定向失败"
|
| 440 |
|
| 441 |
+
#: core/core.php:1715
|
| 442 |
msgid "None of the selected links are redirects!"
|
| 443 |
msgstr "选中的链接均不是重定向链接!"
|
| 444 |
|
| 445 |
+
#: core/core.php:1793
|
| 446 |
msgid "%d link updated."
|
| 447 |
msgid_plural "%d links updated."
|
| 448 |
+
msgstr[0] "%d 个链接已更新。"
|
| 449 |
|
| 450 |
+
#: core/core.php:1804
|
| 451 |
msgid "Failed to update %d link."
|
| 452 |
msgid_plural "Failed to update %d links."
|
| 453 |
+
msgstr[0] "更新 %d 个链接失败。"
|
| 454 |
|
| 455 |
+
#: core/core.php:1893
|
| 456 |
msgid "%d link removed"
|
| 457 |
msgid_plural "%d links removed"
|
| 458 |
+
msgstr[0] "已移除 %d 个链接"
|
| 459 |
|
| 460 |
+
#: core/core.php:1904
|
| 461 |
msgid "Failed to remove %d link"
|
| 462 |
msgid_plural "Failed to remove %d links"
|
| 463 |
+
msgstr[0] "移除 %d 个链接失败"
|
| 464 |
|
| 465 |
+
#: core/core.php:2013
|
| 466 |
+
msgid ""
|
| 467 |
+
"%d item was skipped because it can't be moved to the Trash. You need to "
|
| 468 |
+
"delete it manually."
|
| 469 |
+
msgid_plural ""
|
| 470 |
+
"%d items were skipped because they can't be moved to the Trash. You need to "
|
| 471 |
+
"delete them manually."
|
| 472 |
+
msgstr[0] "%d 个项目由于无法移动到回收站而被忽略,你需要手动删除这些项目。"
|
| 473 |
+
|
| 474 |
+
#: core/core.php:2035
|
| 475 |
msgid "Didn't find anything to delete!"
|
| 476 |
msgstr "没有任何需要删除的内容!"
|
| 477 |
|
| 478 |
+
#: core/core.php:2063
|
| 479 |
msgid "%d link scheduled for rechecking"
|
| 480 |
msgid_plural "%d links scheduled for rechecking"
|
| 481 |
+
msgstr[0] "已计划重新检查 %d 个链接"
|
| 482 |
|
| 483 |
+
#: core/core.php:2110 core/core.php:2923
|
|
|
|
| 484 |
msgid "This link was manually marked as working by the user."
|
| 485 |
msgstr "此链接被用户标记为有效。"
|
| 486 |
|
| 487 |
+
#: core/core.php:2117 core/core.php:2175
|
| 488 |
msgid "Couldn't modify link %d"
|
| 489 |
+
msgstr "无法修改链接 %d"
|
| 490 |
|
| 491 |
+
#: core/core.php:2127
|
| 492 |
msgid "%d link marked as not broken"
|
| 493 |
msgid_plural "%d links marked as not broken"
|
| 494 |
+
msgstr[0] "%d 个链接被标记为未损坏"
|
| 495 |
+
|
| 496 |
+
#: core/core.php:2185
|
| 497 |
+
msgid "%d link dismissed"
|
| 498 |
+
msgid_plural "%d links dismissed"
|
| 499 |
+
msgstr[0] "已移除 %d 个链接"
|
| 500 |
|
| 501 |
+
#: core/core.php:2242
|
| 502 |
+
msgid ""
|
| 503 |
+
"The \"Warnings\" page lists problems that are probably temporary or "
|
| 504 |
+
"suspected to be false positives.<br> Warnings that persist for a long time "
|
| 505 |
+
"will usually be reclassified as broken links."
|
| 506 |
+
msgstr ""
|
| 507 |
+
"“注意”页面显示临时出错或被认为是误报的链接。如果链接问题长时间存在将被重新定"
|
| 508 |
+
"义为失效链接。"
|
| 509 |
+
|
| 510 |
+
#: core/core.php:2247
|
| 511 |
+
msgctxt "admin notice under Tools - Broken links - Warnings"
|
| 512 |
+
msgid "Hide notice"
|
| 513 |
+
msgstr "隐藏提示"
|
| 514 |
+
|
| 515 |
+
#: core/core.php:2253
|
| 516 |
+
msgctxt "a link from the admin notice under Tools - Broken links - Warnings"
|
| 517 |
+
msgid "Change warning settings"
|
| 518 |
+
msgstr "修改警告设置"
|
| 519 |
+
|
| 520 |
+
#: core/core.php:2278
|
| 521 |
msgid "Table columns"
|
| 522 |
msgstr "表格栏目"
|
| 523 |
|
| 524 |
+
#: core/core.php:2297
|
| 525 |
msgid "Show on screen"
|
| 526 |
msgstr "在屏幕上显示"
|
| 527 |
|
| 528 |
+
#: core/core.php:2304
|
| 529 |
msgid "links"
|
| 530 |
msgstr "链接"
|
| 531 |
|
| 532 |
+
#: core/core.php:2305 includes/admin/table-printer.php:171
|
|
|
|
| 533 |
msgid "Apply"
|
| 534 |
msgstr "应用"
|
| 535 |
|
| 536 |
+
#: core/core.php:2309
|
| 537 |
msgid "Misc"
|
| 538 |
msgstr "杂项"
|
| 539 |
|
| 540 |
+
#: core/core.php:2324
|
| 541 |
msgid "Highlight links broken for at least %s days"
|
| 542 |
msgstr "高亮显示至少已经失效%s天的链接"
|
| 543 |
|
| 544 |
+
#: core/core.php:2333
|
| 545 |
msgid "Color-code status codes"
|
| 546 |
msgstr "色彩标记状态码"
|
| 547 |
|
| 548 |
+
#: core/core.php:2350 core/core.php:2907 core/core.php:2948 core/core.php:2981
|
| 549 |
+
#: core/core.php:3070 core/core.php:3114 core/core.php:3175
|
|
|
|
|
|
|
|
|
|
| 550 |
msgid "You're not allowed to do that!"
|
| 551 |
msgstr "您无权限执行此操作!"
|
| 552 |
|
| 553 |
+
#: core/core.php:2778
|
| 554 |
msgid "View broken links"
|
| 555 |
msgstr "查看失效链接"
|
| 556 |
|
| 557 |
+
#: core/core.php:2779
|
| 558 |
msgid "Found %d broken link"
|
| 559 |
msgid_plural "Found %d broken links"
|
| 560 |
+
msgstr[0] "已找到 %d 条失效链接"
|
| 561 |
|
| 562 |
+
#: core/core.php:2785
|
| 563 |
msgid "No broken links found."
|
| 564 |
msgstr "未找到失效链接。"
|
| 565 |
|
| 566 |
+
#: core/core.php:2792
|
| 567 |
msgid "%d URL in the work queue"
|
| 568 |
msgid_plural "%d URLs in the work queue"
|
| 569 |
msgstr[0] "执行队列中还有%d条网址"
|
| 570 |
|
| 571 |
+
#: core/core.php:2795
|
| 572 |
msgid "No URLs in the work queue."
|
| 573 |
msgstr "执行队列中无网址。"
|
| 574 |
|
| 575 |
+
#: core/core.php:2801
|
| 576 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 577 |
msgid "%d unique URL"
|
| 578 |
msgid_plural "%d unique URLs"
|
| 579 |
+
msgstr[0] "%d 个唯一网址"
|
| 580 |
|
| 581 |
+
#: core/core.php:2805
|
| 582 |
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 583 |
msgid "%d link"
|
| 584 |
msgid_plural "%d links"
|
| 585 |
+
msgstr[0] "%d 个链接"
|
| 586 |
|
| 587 |
+
#: core/core.php:2811
|
| 588 |
msgid "Detected %1$s in %2$s and still searching..."
|
| 589 |
+
msgstr "在 %2$s 中发现 %1$s,还在继续搜索……"
|
| 590 |
|
| 591 |
+
#: core/core.php:2817
|
| 592 |
msgid "Detected %1$s in %2$s."
|
| 593 |
+
msgstr "在 %2$s 中发现 %1$s。"
|
| 594 |
|
| 595 |
+
#: core/core.php:2824
|
| 596 |
msgid "Searching your blog for links..."
|
| 597 |
msgstr "正在您的博客中搜索链接……"
|
| 598 |
|
| 599 |
+
#: core/core.php:2826
|
| 600 |
msgid "No links detected."
|
| 601 |
msgstr "没有发现链接。"
|
| 602 |
|
| 603 |
+
#: core/core.php:2852
|
| 604 |
msgctxt "current load"
|
| 605 |
msgid "Unknown"
|
| 606 |
msgstr "未知"
|
| 607 |
|
| 608 |
+
#: core/core.php:2915 core/core.php:2956 core/core.php:2996 core/core.php:3080
|
| 609 |
+
#: core/core.php:3129 core/core.php:3190
|
|
|
|
|
|
|
| 610 |
msgid "Oops, I can't find the link %d"
|
| 611 |
msgstr "啊哦,我找不到%d号链接"
|
| 612 |
|
| 613 |
+
#: core/core.php:2929 core/core.php:2966
|
|
|
|
| 614 |
msgid "Oops, couldn't modify the link!"
|
| 615 |
msgstr "啊哦,无法修改此链接!"
|
| 616 |
|
| 617 |
+
#: core/core.php:2932 core/core.php:2969 core/core.php:3106 core/core.php:3120
|
| 618 |
+
#: core/core.php:3181
|
|
|
|
| 619 |
msgid "Error : link_id not specified"
|
| 620 |
+
msgstr "错误:未指定 link_id"
|
| 621 |
|
| 622 |
+
#: core/core.php:2987
|
| 623 |
msgid "Error : link_id or new_url not specified"
|
| 624 |
+
msgstr "错误:未指定link_id 或者 new_url"
|
| 625 |
|
| 626 |
+
#: core/core.php:3005
|
| 627 |
msgid "Oops, the new URL is invalid!"
|
| 628 |
msgstr "啊哦,这条新的链接无效!"
|
| 629 |
|
| 630 |
+
#: core/core.php:3020
|
| 631 |
msgid "An unexpected error occurred!"
|
| 632 |
msgstr "发生了一个未知的错误!"
|
| 633 |
|
| 634 |
+
#: core/core.php:3089
|
| 635 |
msgid "An unexpected error occured!"
|
| 636 |
msgstr "发生了一个未捕获的异常!"
|
| 637 |
|
| 638 |
+
#: core/core.php:3217
|
| 639 |
msgid "You don't have sufficient privileges to access this information!"
|
| 640 |
msgstr "您没有足够的权限来访问此信息!"
|
| 641 |
|
| 642 |
+
#: core/core.php:3230
|
| 643 |
msgid "Error : link ID not specified"
|
| 644 |
msgstr "错误:链接 ID 未指定"
|
| 645 |
|
| 646 |
+
#: core/core.php:3244
|
| 647 |
msgid "Failed to load link details (%s)"
|
| 648 |
+
msgstr "加载链接(%s)详情失败"
|
| 649 |
|
| 650 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.9.5) #-#-#-#-#
|
| 651 |
#. Plugin Name of the plugin/theme
|
| 652 |
+
#: core/core.php:3298
|
| 653 |
msgid "Broken Link Checker"
|
| 654 |
msgstr "失效链接检查器"
|
| 655 |
|
| 656 |
+
#: core/core.php:3318
|
| 657 |
msgid "PHP version"
|
| 658 |
msgstr "PHP 版本"
|
| 659 |
|
| 660 |
+
#: core/core.php:3324
|
| 661 |
msgid "MySQL version"
|
| 662 |
msgstr "MySQL 版本"
|
| 663 |
|
| 664 |
+
#: core/core.php:3337
|
| 665 |
+
msgid ""
|
| 666 |
+
"You have an old version of CURL. Redirect detection may not work properly."
|
| 667 |
msgstr "您的 CURL 版本过低,重定向检测可能无法正确运行。"
|
| 668 |
|
| 669 |
+
#: core/core.php:3349 core/core.php:3365 core/core.php:3370
|
|
|
|
|
|
|
| 670 |
msgid "Not installed"
|
| 671 |
msgstr "未安装"
|
| 672 |
|
| 673 |
+
#: core/core.php:3352
|
| 674 |
msgid "CURL version"
|
| 675 |
msgstr "CURL 版本"
|
| 676 |
|
| 677 |
+
#: core/core.php:3358
|
| 678 |
msgid "Installed"
|
| 679 |
msgstr "已安装"
|
| 680 |
|
| 681 |
+
#: core/core.php:3371
|
| 682 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
| 683 |
msgstr "要让插件正常运行,您必须安装 CURL 或者 Snoopy!"
|
| 684 |
|
| 685 |
+
#: core/core.php:3382
|
| 686 |
msgid "On"
|
| 687 |
msgstr "开启"
|
| 688 |
|
| 689 |
+
#: core/core.php:3383
|
| 690 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
| 691 |
msgstr "在安全模式打开时重定向可能被识别为无效链接。"
|
| 692 |
|
| 693 |
+
#: core/core.php:3388 core/core.php:3402
|
|
|
|
| 694 |
msgid "Off"
|
| 695 |
msgstr "关闭"
|
| 696 |
|
| 697 |
+
#: core/core.php:3396
|
| 698 |
msgid "On ( %s )"
|
| 699 |
msgstr "在(%s)内"
|
| 700 |
|
| 701 |
+
#: core/core.php:3397
|
| 702 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
| 703 |
msgstr "当 open_basedir 打开时重定向可能被识别为无效链接。"
|
| 704 |
|
| 705 |
+
#: core/core.php:3426
|
| 706 |
+
msgid ""
|
| 707 |
+
"If this value is zero even after several page reloads you have probably "
|
| 708 |
+
"encountered a bug."
|
| 709 |
+
msgstr "如果此值为 0,你将有可能在重新载入数页后遇到问题。"
|
| 710 |
|
| 711 |
+
#: core/core.php:3549 core/core.php:3668
|
|
|
|
| 712 |
msgid "[%s] Broken links detected"
|
| 713 |
msgstr "[%s] 检测到失效链接"
|
| 714 |
|
| 715 |
+
#: core/core.php:3554
|
| 716 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
| 717 |
+
msgid_plural ""
|
| 718 |
+
"Broken Link Checker has detected %d new broken links on your site."
|
| 719 |
+
msgstr[0] "失效链接检查器在站点上发现了 %d 个新的失效链接。"
|
| 720 |
|
| 721 |
+
#: core/core.php:3585
|
| 722 |
msgid "Here's a list of the first %d broken links:"
|
| 723 |
msgid_plural "Here's a list of the first %d broken links:"
|
| 724 |
+
msgstr[0] "以下列表显示了最新的 %s 个失效链接:"
|
| 725 |
|
| 726 |
+
#: core/core.php:3594
|
| 727 |
msgid "Here's a list of the new broken links: "
|
| 728 |
msgstr "以下列出了新的失效链接:"
|
| 729 |
|
| 730 |
+
#: core/core.php:3603
|
| 731 |
msgid "Link text : %s"
|
| 732 |
msgstr "链接文字:%s"
|
| 733 |
|
| 734 |
+
#: core/core.php:3604
|
| 735 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
| 736 |
msgstr "链接网址:<a href=\"%s\">%s</a>"
|
| 737 |
|
| 738 |
+
#: core/core.php:3605
|
| 739 |
msgid "Source : %s"
|
| 740 |
msgstr "来源:%s"
|
| 741 |
|
| 742 |
+
#: core/core.php:3619
|
| 743 |
msgid "You can see all broken links here:"
|
| 744 |
msgstr "你可以在此处浏览所有的失效链接:"
|
| 745 |
|
| 746 |
+
#: core/core.php:3673
|
| 747 |
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
| 748 |
+
msgid_plural ""
|
| 749 |
+
"Broken Link Checker has detected %d new broken links in your posts."
|
| 750 |
+
msgstr[0] "失效链接检查器在你的文章中发现了 %d 个新的失效链接。"
|
| 751 |
|
| 752 |
+
#: core/init.php:255
|
| 753 |
msgid "Once Weekly"
|
| 754 |
msgstr "每周一次"
|
| 755 |
|
| 756 |
+
#: core/init.php:261
|
| 757 |
msgid "Twice a Month"
|
| 758 |
msgstr "每月两次"
|
| 759 |
|
| 760 |
+
#: core/init.php:337
|
| 761 |
+
msgid ""
|
| 762 |
+
"Broken Link Checker installation failed. Try deactivating and then "
|
| 763 |
+
"reactivating the plugin."
|
| 764 |
msgstr "失效链接检查器安装失败。请尝试重新激活本插件。"
|
| 765 |
|
| 766 |
+
#: core/init.php:341
|
| 767 |
+
msgid ""
|
| 768 |
+
"Please activate the plugin separately on each site. Network activation is "
|
| 769 |
+
"not supported."
|
| 770 |
msgstr "网络激活不可用。请在各站点上分别启用此插件。"
|
| 771 |
|
| 772 |
+
#: includes/admin/db-upgrade.php:97
|
| 773 |
msgid "Failed to delete old DB tables. Database error : %s"
|
| 774 |
msgstr "删除旧数据库失败。数据库错误:%s"
|
| 775 |
|
| 776 |
+
#: includes/admin/links-page-js.php:63 includes/admin/links-page-js.php:639
|
|
|
|
| 777 |
msgid "Wait..."
|
| 778 |
msgstr "稍等……"
|
| 779 |
|
| 780 |
+
#: includes/admin/links-page-js.php:368
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 781 |
msgctxt "link text"
|
| 782 |
msgid "(None)"
|
| 783 |
msgstr "(无)"
|
| 784 |
|
| 785 |
+
#: includes/admin/links-page-js.php:369
|
| 786 |
msgctxt "link text"
|
| 787 |
msgid "(Multiple links)"
|
| 788 |
msgstr "(多个链接)"
|
| 789 |
|
| 790 |
+
#: includes/admin/links-page-js.php:427
|
| 791 |
msgctxt "link suggestions"
|
| 792 |
msgid "Searching..."
|
| 793 |
msgstr "搜索中……"
|
| 794 |
|
| 795 |
+
#: includes/admin/links-page-js.php:428
|
| 796 |
msgctxt "link suggestions"
|
| 797 |
msgid "No suggestions available."
|
| 798 |
msgstr "没有可用的建议。"
|
| 799 |
|
| 800 |
+
#: includes/admin/links-page-js.php:429
|
| 801 |
msgctxt "link suggestions"
|
| 802 |
msgid "Archived page from %s (via the Wayback Machine)"
|
| 803 |
msgstr "存档于 %s 的页面(来自 Wayback Machine)"
|
| 804 |
|
| 805 |
+
#: includes/admin/links-page-js.php:523
|
| 806 |
msgid "%d instances of the link were successfully modified."
|
| 807 |
+
msgstr "成功修改了 %d 个链接。"
|
| 808 |
|
| 809 |
+
#: includes/admin/links-page-js.php:529
|
| 810 |
+
msgid ""
|
| 811 |
+
"However, %d instances couldn't be edited and still point to the old URL."
|
| 812 |
+
msgstr "然而,%d 个链接由于无法被编辑仍然指向了旧的网址。"
|
| 813 |
|
| 814 |
+
#: includes/admin/links-page-js.php:535
|
| 815 |
msgid "The link could not be modified."
|
| 816 |
msgstr "无法修改链接。"
|
| 817 |
|
| 818 |
+
#: includes/admin/links-page-js.php:538
|
| 819 |
msgid "The following error(s) occurred :"
|
| 820 |
msgstr "发生了以下错误:"
|
| 821 |
|
| 822 |
+
#: includes/admin/links-page-js.php:602
|
| 823 |
msgid "Error: Link URL must not be empty."
|
| 824 |
msgstr "错误:链接 URL 不能为空。"
|
| 825 |
|
| 826 |
+
#: includes/admin/links-page-js.php:677
|
| 827 |
msgid "%d instances of the link were successfully unlinked."
|
| 828 |
+
msgstr "成功取消了 %d 个链接。"
|
| 829 |
|
| 830 |
+
#: includes/admin/links-page-js.php:683
|
| 831 |
msgid "However, %d instances couldn't be removed."
|
| 832 |
+
msgstr "然而,%d 个链接无法被移除。"
|
| 833 |
|
| 834 |
+
#: includes/admin/links-page-js.php:688
|
| 835 |
msgid "The plugin failed to remove the link."
|
| 836 |
msgstr "移除链接失败。"
|
| 837 |
|
| 838 |
+
#: includes/admin/links-page-js.php:691
|
| 839 |
msgid "The following error(s) occured :"
|
| 840 |
msgstr "发生了以下错误:"
|
| 841 |
|
| 842 |
+
#: includes/admin/links-page-js.php:737
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 843 |
msgid "Enter a name for the new custom filter"
|
| 844 |
msgstr "输入一个新的自定义过滤器名程"
|
| 845 |
|
| 846 |
+
#: includes/admin/links-page-js.php:749
|
| 847 |
msgid ""
|
| 848 |
"You are about to delete the current filter.\n"
|
| 849 |
"'Cancel' to stop, 'OK' to delete"
|
| 850 |
msgstr ""
|
| 851 |
"你将要删除当前使用的过滤器。\n"
|
| 852 |
+
"“取消”以停止,“确定”以删除"
|
| 853 |
|
| 854 |
+
#: includes/admin/links-page-js.php:773
|
| 855 |
msgid ""
|
| 856 |
+
"Are you sure you want to delete all posts, bookmarks or other items that "
|
| 857 |
+
"contain any of the selected links? This action can't be undone.\n"
|
| 858 |
"'Cancel' to stop, 'OK' to delete"
|
| 859 |
msgstr ""
|
| 860 |
+
"你确认将会删除任何包含有任意一个选定链接的文章、书签和其他内容吗?本操作无法"
|
| 861 |
+
"撤销。\n"
|
| 862 |
"“取消”以停止,“确定”以删除"
|
| 863 |
|
| 864 |
+
#: includes/admin/links-page-js.php:787
|
| 865 |
msgid ""
|
| 866 |
+
"Are you sure you want to remove the selected links? This action can't be "
|
| 867 |
+
"undone.\n"
|
| 868 |
"'Cancel' to stop, 'OK' to remove"
|
| 869 |
msgstr ""
|
| 870 |
"你确认将会删除选定的链接吗?本操作无法撤销。\n"
|
| 871 |
"“取消”以停止,“确定”以删除"
|
| 872 |
|
| 873 |
+
#: includes/admin/links-page-js.php:899
|
| 874 |
msgid "Enter a search string first."
|
| 875 |
msgstr "需要先输入搜索字符"
|
| 876 |
|
| 877 |
+
#: includes/admin/links-page-js.php:906
|
| 878 |
msgid "Select one or more links to edit."
|
| 879 |
msgstr "选择并编辑一个或多个链接"
|
| 880 |
|
| 890 |
msgid "Delete This Filter"
|
| 891 |
msgstr "删除此过滤器"
|
| 892 |
|
| 893 |
+
#: includes/admin/search-form.php:32 includes/link-query.php:81
|
|
|
|
| 894 |
msgid "Search"
|
| 895 |
msgstr "搜索"
|
| 896 |
|
| 898 |
msgid "Link text"
|
| 899 |
msgstr "链接文字"
|
| 900 |
|
| 901 |
+
#: includes/admin/search-form.php:45 includes/admin/table-printer.php:216
|
|
|
|
| 902 |
msgid "URL"
|
| 903 |
msgstr "网址"
|
| 904 |
|
| 905 |
+
#: includes/admin/search-form.php:48 includes/admin/table-printer.php:542
|
|
|
|
| 906 |
msgid "HTTP code"
|
| 907 |
msgstr "HTTP代码"
|
| 908 |
|
| 910 |
msgid "Link status"
|
| 911 |
msgstr "链接状态"
|
| 912 |
|
| 913 |
+
#: includes/admin/search-form.php:68 includes/admin/search-form.php:85
|
|
|
|
| 914 |
msgid "Link type"
|
| 915 |
msgstr "链接类型"
|
| 916 |
|
| 926 |
msgid "Search Links"
|
| 927 |
msgstr "搜索链接"
|
| 928 |
|
| 929 |
+
#: includes/admin/search-form.php:113 includes/admin/table-printer.php:368
|
| 930 |
+
#: includes/admin/table-printer.php:747 includes/admin/table-printer.php:872
|
|
|
|
|
|
|
| 931 |
msgid "Cancel"
|
| 932 |
msgstr "取消"
|
| 933 |
|
| 934 |
+
#: includes/admin/sidebar.php:25
|
| 935 |
msgid "More plugins by Janis Elsts"
|
| 936 |
msgstr "更多 Janis Elsts 制作的插件"
|
| 937 |
|
| 938 |
+
#: includes/admin/sidebar.php:48
|
| 939 |
msgid "Donate $10, $20 or $50!"
|
| 940 |
+
msgstr "捐赠 $10、$20 或 $50!"
|
| 941 |
|
| 942 |
+
#: includes/admin/sidebar.php:51
|
| 943 |
+
msgid ""
|
| 944 |
+
"If you like this plugin, please donate to support development and "
|
| 945 |
+
"maintenance!"
|
| 946 |
msgstr "如果你喜欢本插件,请捐款支持插件的开发与维护!"
|
| 947 |
|
| 948 |
+
#: includes/admin/sidebar.php:69
|
| 949 |
msgid "Return to WordPress Dashboard"
|
| 950 |
msgstr "返回到 WordPress 仪表盘"
|
| 951 |
|
| 952 |
+
#: includes/admin/table-printer.php:188
|
| 953 |
msgid "Compact View"
|
| 954 |
msgstr "紧凑视图"
|
| 955 |
|
| 956 |
+
#: includes/admin/table-printer.php:193
|
| 957 |
msgid "Detailed View"
|
| 958 |
msgstr "详细视图"
|
| 959 |
|
| 960 |
+
#: includes/admin/table-printer.php:223
|
| 961 |
msgid "Source"
|
| 962 |
msgstr "来源"
|
| 963 |
|
| 964 |
+
#: includes/admin/table-printer.php:229
|
| 965 |
msgid "Link Text"
|
| 966 |
msgstr "链接文字"
|
| 967 |
|
| 968 |
+
#: includes/admin/table-printer.php:236
|
| 969 |
msgid "Redirect URL"
|
| 970 |
msgstr "重定向网址"
|
| 971 |
|
| 972 |
+
#: includes/admin/table-printer.php:286
|
| 973 |
msgid "Bulk Actions"
|
| 974 |
msgstr "批量操作"
|
| 975 |
|
| 976 |
+
#: includes/admin/table-printer.php:289
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 977 |
msgid "Fix redirects"
|
| 978 |
msgstr "修复重定向"
|
| 979 |
|
| 980 |
+
#: includes/admin/table-printer.php:290
|
| 981 |
msgid "Mark as not broken"
|
| 982 |
msgstr "标记为未失效"
|
| 983 |
|
| 984 |
+
#: includes/admin/table-printer.php:295
|
| 985 |
msgid "Move sources to Trash"
|
| 986 |
msgstr "移动到回收站"
|
| 987 |
|
| 988 |
+
#: includes/admin/table-printer.php:297
|
| 989 |
msgid "Delete sources"
|
| 990 |
msgstr "删除资源"
|
| 991 |
|
| 992 |
+
#: includes/admin/table-printer.php:312
|
| 993 |
msgid "«"
|
| 994 |
msgstr "«"
|
| 995 |
|
| 996 |
+
#: includes/admin/table-printer.php:313
|
| 997 |
msgid "»"
|
| 998 |
msgstr "»"
|
| 999 |
|
| 1000 |
+
#: includes/admin/table-printer.php:321
|
| 1001 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
| 1002 |
+
msgstr ""
|
| 1003 |
+
"显示 %s–%s 项结果,总共 <span class=\"current-link-count\">%s</span> 项"
|
| 1004 |
|
| 1005 |
+
#: includes/admin/table-printer.php:344
|
| 1006 |
msgid "Bulk Edit URLs"
|
| 1007 |
msgstr "批量修改网址"
|
| 1008 |
|
| 1009 |
+
#: includes/admin/table-printer.php:346
|
| 1010 |
msgid "Find"
|
| 1011 |
msgstr "查找"
|
| 1012 |
|
| 1013 |
+
#: includes/admin/table-printer.php:350
|
| 1014 |
msgid "Replace with"
|
| 1015 |
msgstr "代替以"
|
| 1016 |
|
| 1017 |
+
#: includes/admin/table-printer.php:358
|
| 1018 |
msgid "Case sensitive"
|
| 1019 |
msgstr "大小写敏感"
|
| 1020 |
|
| 1021 |
+
#: includes/admin/table-printer.php:362
|
| 1022 |
msgid "Regular expression"
|
| 1023 |
msgstr "正则表达式"
|
| 1024 |
|
| 1025 |
+
#: includes/admin/table-printer.php:370 includes/admin/table-printer.php:873
|
|
|
|
| 1026 |
msgid "Update"
|
| 1027 |
msgstr "更新"
|
| 1028 |
|
| 1029 |
+
#: includes/admin/table-printer.php:523
|
| 1030 |
msgid "Post published on"
|
| 1031 |
msgstr "文章发布在"
|
| 1032 |
|
| 1033 |
+
#: includes/admin/table-printer.php:528
|
| 1034 |
msgid "Link last checked"
|
| 1035 |
msgstr "最后一次检查的链接"
|
| 1036 |
|
| 1037 |
+
#: includes/admin/table-printer.php:532
|
| 1038 |
msgid "Never"
|
| 1039 |
msgstr "从不"
|
| 1040 |
|
| 1041 |
+
#: includes/admin/table-printer.php:547
|
| 1042 |
msgid "Response time"
|
| 1043 |
msgstr "响应时间"
|
| 1044 |
|
| 1045 |
+
#: includes/admin/table-printer.php:549
|
| 1046 |
msgid "%2.3f seconds"
|
| 1047 |
msgstr "%2.3f 秒"
|
| 1048 |
|
| 1049 |
+
#: includes/admin/table-printer.php:552
|
| 1050 |
msgid "Final URL"
|
| 1051 |
msgstr "最终网址"
|
| 1052 |
|
| 1053 |
+
#: includes/admin/table-printer.php:557
|
| 1054 |
msgid "Redirect count"
|
| 1055 |
msgstr "重定向数目"
|
| 1056 |
|
| 1057 |
+
#: includes/admin/table-printer.php:562
|
| 1058 |
msgid "Instance count"
|
| 1059 |
msgstr "实例数目"
|
| 1060 |
|
| 1061 |
+
#: includes/admin/table-printer.php:571
|
| 1062 |
msgid "This link has failed %d time."
|
| 1063 |
msgid_plural "This link has failed %d times."
|
| 1064 |
+
msgstr[0] "%d 次检查报告此链接失效。"
|
| 1065 |
|
| 1066 |
+
#: includes/admin/table-printer.php:579
|
| 1067 |
msgid "This link has been broken for %s."
|
| 1068 |
+
msgstr "此链接已失效了 %s。"
|
| 1069 |
|
| 1070 |
+
#: includes/admin/table-printer.php:590
|
| 1071 |
msgid "Log"
|
| 1072 |
msgstr "日志"
|
| 1073 |
|
| 1074 |
+
#: includes/admin/table-printer.php:615 includes/admin/table-printer.php:660
|
| 1075 |
msgid "Show more info about this link"
|
| 1076 |
msgstr "显示关于此链接的更多信息"
|
| 1077 |
|
| 1078 |
+
#: includes/admin/table-printer.php:633
|
| 1079 |
msgctxt "checked how long ago"
|
| 1080 |
msgid "Checked"
|
| 1081 |
msgstr "已检查"
|
| 1082 |
|
| 1083 |
+
#: includes/admin/table-printer.php:649
|
| 1084 |
msgid "Broken for"
|
| 1085 |
msgstr "失效于"
|
| 1086 |
|
| 1087 |
+
#: includes/admin/table-printer.php:661
|
| 1088 |
+
msgctxt "link in the \"Status\" column"
|
| 1089 |
+
msgid "Details"
|
| 1090 |
+
msgstr "详细"
|
| 1091 |
+
|
| 1092 |
+
#: includes/admin/table-printer.php:678
|
| 1093 |
msgid "Edit this link"
|
| 1094 |
msgstr "编辑此链接"
|
| 1095 |
|
| 1096 |
+
#: includes/admin/table-printer.php:680
|
| 1097 |
msgid "Remove this link from all posts"
|
| 1098 |
msgstr "将此链接从所有文章中删除"
|
| 1099 |
|
| 1100 |
+
#: includes/admin/table-printer.php:686
|
| 1101 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
| 1102 |
msgstr "将此链接从失效链接列表中删除并标记为有效"
|
| 1103 |
|
| 1104 |
+
#: includes/admin/table-printer.php:694
|
| 1105 |
msgid "Hide this link and do not report it again unless its status changes"
|
| 1106 |
msgstr "隐藏此链接,除非链接状态发生改变不再报告此链接问题"
|
| 1107 |
|
| 1108 |
+
#: includes/admin/table-printer.php:700
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1109 |
msgid "Undismiss this link"
|
| 1110 |
msgstr "不再屏蔽此链接"
|
| 1111 |
|
| 1112 |
+
#: includes/admin/table-printer.php:701
|
| 1113 |
msgid "Undismiss"
|
| 1114 |
msgstr "取消屏蔽"
|
| 1115 |
|
| 1116 |
+
#: includes/admin/table-printer.php:714
|
| 1117 |
+
msgid "Replace this redirect with a direct link"
|
| 1118 |
+
msgstr "使用直接链接替换此重定向"
|
| 1119 |
+
|
| 1120 |
+
#: includes/admin/table-printer.php:748
|
| 1121 |
msgid "Update URL"
|
| 1122 |
msgstr "修改网址"
|
| 1123 |
|
| 1124 |
+
#: includes/admin/table-printer.php:775
|
| 1125 |
msgid "[An orphaned link! This is a bug.]"
|
| 1126 |
msgstr "[一个孤立链接!这是一个错误。]"
|
| 1127 |
|
| 1128 |
+
#: includes/admin/table-printer.php:852
|
| 1129 |
msgctxt "inline editor title"
|
| 1130 |
msgid "Edit Link"
|
| 1131 |
msgstr "编辑链接"
|
| 1132 |
|
| 1133 |
+
#: includes/admin/table-printer.php:855
|
| 1134 |
msgctxt "inline link editor"
|
| 1135 |
msgid "Text"
|
| 1136 |
msgstr "文本"
|
| 1137 |
|
| 1138 |
+
#: includes/admin/table-printer.php:860
|
| 1139 |
msgctxt "inline link editor"
|
| 1140 |
msgid "URL"
|
| 1141 |
msgstr "URL"
|
| 1142 |
|
| 1143 |
+
#: includes/admin/table-printer.php:865
|
| 1144 |
msgctxt "inline link editor"
|
| 1145 |
msgid "Suggestions"
|
| 1146 |
msgstr "建议"
|
| 1147 |
|
| 1148 |
+
#: includes/admin/table-printer.php:885
|
| 1149 |
msgid "Use this URL"
|
| 1150 |
msgstr "使用此 URL"
|
| 1151 |
|
| 1152 |
+
#: includes/any-post.php:426 modules/containers/blogroll.php:46
|
| 1153 |
+
#: modules/containers/comment.php:159 modules/containers/custom_field.php:230
|
|
|
|
|
|
|
| 1154 |
msgid "Edit"
|
| 1155 |
msgstr "编辑"
|
| 1156 |
|
| 1157 |
+
#: includes/any-post.php:434 modules/containers/custom_field.php:236
|
|
|
|
| 1158 |
msgid "Move this item to the Trash"
|
| 1159 |
msgstr "移动此项到回收站"
|
| 1160 |
|
| 1161 |
+
#: includes/any-post.php:436 modules/containers/custom_field.php:238
|
|
|
|
| 1162 |
msgid "Trash"
|
| 1163 |
msgstr "回收站"
|
| 1164 |
|
| 1165 |
+
#: includes/any-post.php:441 modules/containers/custom_field.php:243
|
|
|
|
| 1166 |
msgid "Delete this item permanently"
|
| 1167 |
msgstr "永久删除此项目"
|
| 1168 |
|
| 1169 |
+
#: includes/any-post.php:443 modules/containers/blogroll.php:47
|
| 1170 |
+
#: modules/containers/custom_field.php:245
|
|
|
|
| 1171 |
msgid "Delete"
|
| 1172 |
msgstr "删除"
|
| 1173 |
|
| 1174 |
+
#: includes/any-post.php:456
|
| 1175 |
msgid "Preview “%s”"
|
| 1176 |
msgstr "预览 “%s”"
|
| 1177 |
|
| 1178 |
+
#: includes/any-post.php:457
|
| 1179 |
msgid "Preview"
|
| 1180 |
msgstr "预览"
|
| 1181 |
|
| 1182 |
+
#: includes/any-post.php:464
|
| 1183 |
msgid "View “%s”"
|
| 1184 |
msgstr "查看 “%s”"
|
| 1185 |
|
| 1186 |
+
#: includes/any-post.php:465 modules/containers/comment.php:172
|
| 1187 |
+
#: modules/containers/custom_field.php:250
|
|
|
|
| 1188 |
msgid "View"
|
| 1189 |
msgstr "查看"
|
| 1190 |
|
| 1191 |
+
#: includes/any-post.php:484 modules/containers/custom_field.php:230
|
|
|
|
| 1192 |
msgid "Edit this item"
|
| 1193 |
msgstr "编辑此项目"
|
| 1194 |
|
| 1195 |
+
#: includes/any-post.php:548 modules/containers/blogroll.php:83
|
|
|
|
| 1196 |
#: modules/containers/comment.php:43
|
| 1197 |
msgid "Nothing to update"
|
| 1198 |
msgstr "无需更新"
|
| 1199 |
|
| 1200 |
+
#: includes/any-post.php:558
|
| 1201 |
msgid "Updating post %d failed"
|
| 1202 |
msgstr "更新文章%d失败"
|
| 1203 |
|
| 1204 |
+
#: includes/any-post.php:595 modules/containers/custom_field.php:317
|
|
|
|
| 1205 |
msgid "Failed to delete post \"%s\" (%d)"
|
| 1206 |
msgstr "删除文章《%s》(%d)失败"
|
| 1207 |
|
| 1208 |
+
#: includes/any-post.php:614 modules/containers/custom_field.php:336
|
| 1209 |
+
msgid ""
|
| 1210 |
+
"Can't move post \"%s\" (%d) to the trash because the trash feature is "
|
| 1211 |
+
"disabled"
|
| 1212 |
msgstr "由于回收站功能已关闭,无法移动文章《%s》(%d)到回收站。"
|
| 1213 |
|
| 1214 |
+
#: includes/any-post.php:634 modules/containers/custom_field.php:355
|
|
|
|
| 1215 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
| 1216 |
msgstr "移动文章《%s》(%d)到回收站失败"
|
| 1217 |
|
| 1218 |
+
#: includes/any-post.php:742
|
| 1219 |
msgid "%d post deleted."
|
| 1220 |
msgid_plural "%d posts deleted."
|
| 1221 |
+
msgstr[0] "已删除 %d 篇文章。"
|
| 1222 |
|
| 1223 |
+
#: includes/any-post.php:744
|
| 1224 |
msgid "%d page deleted."
|
| 1225 |
msgid_plural "%d pages deleted."
|
| 1226 |
+
msgstr[0] "已删除 %d 个页面。"
|
| 1227 |
|
| 1228 |
+
#: includes/any-post.php:746
|
| 1229 |
msgid "%d \"%s\" deleted."
|
| 1230 |
msgid_plural "%d \"%s\" deleted."
|
| 1231 |
+
msgstr[0] "已删除 %d 个“%s”。"
|
| 1232 |
|
| 1233 |
+
#: includes/any-post.php:765
|
| 1234 |
msgid "%d post moved to the Trash."
|
| 1235 |
msgid_plural "%d posts moved to the Trash."
|
| 1236 |
+
msgstr[0] "已移动 %d 篇文章到回收站。"
|
| 1237 |
|
| 1238 |
+
#: includes/any-post.php:767
|
| 1239 |
msgid "%d page moved to the Trash."
|
| 1240 |
msgid_plural "%d pages moved to the Trash."
|
| 1241 |
+
msgstr[0] "已移动 %d 个页面到回收站。"
|
| 1242 |
|
| 1243 |
+
#: includes/any-post.php:769
|
| 1244 |
msgid "%d \"%s\" moved to the Trash."
|
| 1245 |
msgid_plural "%d \"%s\" moved to the Trash."
|
| 1246 |
+
msgstr[0] "已移动 %d 个“%s”到回收站。"
|
| 1247 |
|
| 1248 |
#: includes/containers.php:122
|
| 1249 |
msgid "%d '%s' has been deleted"
|
| 1250 |
msgid_plural "%d '%s' have been deleted"
|
| 1251 |
+
msgstr[0] "已删除 %d 个‘%s’。"
|
| 1252 |
|
| 1253 |
+
#: includes/containers.php:882 includes/containers.php:900
|
|
|
|
| 1254 |
msgid "Container type '%s' not recognized"
|
| 1255 |
msgstr "无法识别“%s”类型"
|
| 1256 |
|
| 1272 |
#: includes/extra-strings.php:5
|
| 1273 |
msgctxt "module name"
|
| 1274 |
msgid "Custom fields"
|
| 1275 |
+
msgstr "自定义字段"
|
| 1276 |
|
| 1277 |
#: includes/extra-strings.php:6
|
| 1278 |
msgctxt "module name"
|
| 1286 |
|
| 1287 |
#: includes/extra-strings.php:8
|
| 1288 |
msgctxt "module name"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1289 |
msgid "Embedded Vimeo videos"
|
| 1290 |
msgstr "嵌入的 Vimeo 视频"
|
| 1291 |
|
| 1292 |
+
#: includes/extra-strings.php:9
|
| 1293 |
msgctxt "module name"
|
| 1294 |
msgid "Embedded YouTube playlists (old embed code)"
|
| 1295 |
msgstr "嵌入的 YouTube 播放列表(旧版引用代码)"
|
| 1296 |
|
| 1297 |
+
#: includes/extra-strings.php:10
|
| 1298 |
msgctxt "module name"
|
| 1299 |
msgid "Embedded YouTube videos"
|
| 1300 |
msgstr "嵌入的 Youtube 视频"
|
| 1301 |
|
| 1302 |
+
#: includes/extra-strings.php:11
|
| 1303 |
msgctxt "module name"
|
| 1304 |
msgid "Embedded YouTube videos (old embed code)"
|
| 1305 |
msgstr "嵌入的 Megavideo 视频(旧版引用代码)"
|
| 1306 |
|
| 1307 |
+
#: includes/extra-strings.php:12
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1308 |
msgctxt "module name"
|
| 1309 |
msgid "HTML images"
|
| 1310 |
msgstr "HTML 图像"
|
| 1311 |
|
| 1312 |
+
#: includes/extra-strings.php:13
|
| 1313 |
msgctxt "module name"
|
| 1314 |
msgid "HTML links"
|
| 1315 |
msgstr "HTML 链接"
|
| 1316 |
|
| 1317 |
+
#: includes/extra-strings.php:14
|
| 1318 |
msgctxt "module name"
|
| 1319 |
msgid "MediaFire API"
|
| 1320 |
msgstr "MediaFire API"
|
| 1321 |
|
| 1322 |
+
#: includes/extra-strings.php:15
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1323 |
msgctxt "module name"
|
| 1324 |
msgid "Plaintext URLs"
|
| 1325 |
msgstr "纯文本网址"
|
| 1326 |
|
| 1327 |
+
#: includes/extra-strings.php:16
|
| 1328 |
msgctxt "module name"
|
| 1329 |
msgid "RapidShare API"
|
| 1330 |
msgstr "RapidShare API"
|
| 1331 |
|
| 1332 |
+
#: includes/extra-strings.php:17
|
| 1333 |
msgctxt "module name"
|
| 1334 |
msgid "Smart YouTube httpv:// URLs"
|
| 1335 |
msgstr "智能 YouTube httpv:// URL"
|
| 1336 |
|
| 1337 |
+
#: includes/extra-strings.php:18
|
| 1338 |
msgctxt "module name"
|
| 1339 |
msgid "YouTube API"
|
| 1340 |
msgstr "YouTube API"
|
| 1341 |
|
| 1342 |
+
#: includes/extra-strings.php:19
|
| 1343 |
msgctxt "module name"
|
| 1344 |
msgid "Posts"
|
| 1345 |
msgstr "文章"
|
| 1346 |
|
| 1347 |
+
#: includes/extra-strings.php:20
|
| 1348 |
msgctxt "module name"
|
| 1349 |
msgid "Pages"
|
| 1350 |
msgstr "页面"
|
| 1351 |
|
| 1352 |
+
#: includes/instances.php:105 includes/instances.php:161
|
|
|
|
| 1353 |
msgid "Container %s[%d] not found"
|
| 1354 |
msgstr "没有找到%s[%d]容器"
|
| 1355 |
|
| 1356 |
+
#: includes/instances.php:114 includes/instances.php:170
|
|
|
|
| 1357 |
msgid "Parser '%s' not found."
|
| 1358 |
msgstr "没有找到%s解析器。"
|
| 1359 |
|
| 1360 |
+
#: includes/link-query.php:25
|
| 1361 |
+
msgid "All"
|
| 1362 |
+
msgstr "所有"
|
| 1363 |
+
|
| 1364 |
#: includes/link-query.php:26
|
| 1365 |
+
msgid "Detected Links"
|
| 1366 |
+
msgstr "检测到的链接"
|
| 1367 |
+
|
| 1368 |
+
#: includes/link-query.php:27
|
| 1369 |
+
msgid "No links found (yet)"
|
| 1370 |
+
msgstr "(尚未)发现连接"
|
| 1371 |
+
|
| 1372 |
+
#: includes/link-query.php:36
|
| 1373 |
msgid "Broken"
|
| 1374 |
msgstr "失效"
|
| 1375 |
|
| 1376 |
+
#: includes/link-query.php:38
|
| 1377 |
msgid "No broken links found"
|
| 1378 |
msgstr "未找到失效链接"
|
| 1379 |
|
| 1380 |
+
#: includes/link-query.php:46
|
| 1381 |
+
msgctxt "filter name"
|
| 1382 |
+
msgid "Warnings"
|
| 1383 |
+
msgstr "注意"
|
| 1384 |
+
|
| 1385 |
+
#: includes/link-query.php:47
|
| 1386 |
+
msgid "Warnings"
|
| 1387 |
+
msgstr "注意"
|
| 1388 |
+
|
| 1389 |
+
#: includes/link-query.php:48
|
| 1390 |
+
msgid "No warnings found"
|
| 1391 |
+
msgstr "没有警告"
|
| 1392 |
+
|
| 1393 |
+
#: includes/link-query.php:56
|
| 1394 |
msgid "Redirects"
|
| 1395 |
msgstr "重定向"
|
| 1396 |
|
| 1397 |
+
#: includes/link-query.php:57
|
| 1398 |
msgid "Redirected Links"
|
| 1399 |
msgstr "被重定向的链接"
|
| 1400 |
|
| 1401 |
+
#: includes/link-query.php:58
|
| 1402 |
msgid "No redirects found"
|
| 1403 |
msgstr "未发现重定向的链接"
|
| 1404 |
|
| 1405 |
+
#: includes/link-query.php:66
|
| 1406 |
msgid "Dismissed"
|
| 1407 |
msgstr "已屏蔽"
|
| 1408 |
|
| 1409 |
+
#: includes/link-query.php:67
|
| 1410 |
msgid "Dismissed Links"
|
| 1411 |
msgstr "已屏蔽链接"
|
| 1412 |
|
| 1413 |
+
#: includes/link-query.php:68
|
| 1414 |
msgid "No dismissed links found"
|
| 1415 |
msgstr "未找到已屏蔽链接"
|
| 1416 |
|
| 1417 |
+
#: includes/link-query.php:82
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1418 |
msgid "Search Results"
|
| 1419 |
msgstr "搜索结果"
|
| 1420 |
|
| 1421 |
+
#: includes/link-query.php:83 includes/link-query.php:130
|
|
|
|
| 1422 |
msgid "No links found for your query"
|
| 1423 |
msgstr "没有查询到链接"
|
| 1424 |
|
| 1425 |
+
#: includes/links.php:224
|
| 1426 |
msgid "The plugin script was terminated while trying to check the link."
|
| 1427 |
msgstr "插件脚步在试图检查链接时被关闭。"
|
| 1428 |
|
| 1429 |
+
#: includes/links.php:271
|
| 1430 |
msgid "The plugin doesn't know how to check this type of link."
|
| 1431 |
msgstr "插件无法找到检查此类链接的方法。"
|
| 1432 |
|
| 1433 |
+
#: includes/links.php:502
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1434 |
msgid "Link is broken."
|
| 1435 |
msgstr "链接失效。"
|
| 1436 |
|
| 1437 |
+
#: includes/links.php:504
|
| 1438 |
+
msgid "Link is valid."
|
| 1439 |
+
msgstr "链接有效。"
|
| 1440 |
+
|
| 1441 |
+
#: includes/links.php:728 includes/links.php:830 includes/links.php:857
|
| 1442 |
msgid "Link is not valid"
|
| 1443 |
msgstr "链接有误"
|
| 1444 |
|
| 1445 |
+
#: includes/links.php:745
|
| 1446 |
+
msgid ""
|
| 1447 |
+
"This link can not be edited because it is not used anywhere on this site."
|
| 1448 |
msgstr "此链接因未在任何内容中使用而无法被编辑。"
|
| 1449 |
|
| 1450 |
+
#: includes/links.php:771
|
| 1451 |
msgid "Failed to create a DB entry for the new URL."
|
| 1452 |
msgstr "为新网址建立数据库条目失败。"
|
| 1453 |
|
| 1454 |
+
#: includes/links.php:837
|
| 1455 |
msgid "This link is not a redirect"
|
| 1456 |
msgstr "此链接不是重定向"
|
| 1457 |
|
| 1458 |
+
#: includes/links.php:884 includes/links.php:921
|
|
|
|
| 1459 |
msgid "Couldn't delete the link's database record"
|
| 1460 |
msgstr "无法删除链接的数据库记录"
|
| 1461 |
|
| 1462 |
+
#: includes/links.php:995
|
| 1463 |
msgctxt "link status"
|
| 1464 |
msgid "Unknown"
|
| 1465 |
msgstr "未知"
|
| 1466 |
|
| 1467 |
+
#: includes/links.php:1008 modules/checkers/http.php:308
|
| 1468 |
+
#: modules/extras/mediafire.php:115
|
|
|
|
| 1469 |
msgid "Unknown Error"
|
| 1470 |
msgstr "未知错误"
|
| 1471 |
|
| 1472 |
+
#: includes/links.php:1032
|
| 1473 |
msgid "Not checked"
|
| 1474 |
msgstr "未检查"
|
| 1475 |
|
| 1476 |
+
#: includes/links.php:1035
|
| 1477 |
msgid "False positive"
|
| 1478 |
msgstr "错误报告"
|
| 1479 |
|
| 1480 |
+
#: includes/links.php:1038 modules/extras/rapidshare.php:145
|
| 1481 |
+
#: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1482 |
msgctxt "link status"
|
| 1483 |
msgid "OK"
|
| 1484 |
msgstr "正常"
|
| 1485 |
|
| 1486 |
+
#: includes/parsers.php:117
|
| 1487 |
msgid "Editing is not implemented in the '%s' parser"
|
| 1488 |
msgstr "编辑未在“%s”解析器中生效"
|
| 1489 |
|
| 1490 |
+
#: includes/parsers.php:132
|
| 1491 |
msgid "Unlinking is not implemented in the '%s' parser"
|
| 1492 |
msgstr "取消操作未在“%s”解析器中生效"
|
| 1493 |
|
| 1494 |
#: includes/utility-class.php:245
|
| 1495 |
msgid "%d second"
|
| 1496 |
msgid_plural "%d seconds"
|
| 1497 |
+
msgstr[0] "%d 秒"
|
| 1498 |
|
| 1499 |
#: includes/utility-class.php:246
|
| 1500 |
msgid "%d second ago"
|
| 1501 |
msgid_plural "%d seconds ago"
|
| 1502 |
+
msgstr[0] "%s 秒前"
|
| 1503 |
|
| 1504 |
#: includes/utility-class.php:249
|
| 1505 |
msgid "%d minute"
|
| 1506 |
msgid_plural "%d minutes"
|
| 1507 |
+
msgstr[0] "%d 分钟"
|
| 1508 |
|
| 1509 |
#: includes/utility-class.php:250
|
| 1510 |
msgid "%d minute ago"
|
| 1511 |
msgid_plural "%d minutes ago"
|
| 1512 |
+
msgstr[0] "%d 分钟前"
|
| 1513 |
|
| 1514 |
#: includes/utility-class.php:253
|
| 1515 |
msgid "%d hour"
|
| 1516 |
msgid_plural "%d hours"
|
| 1517 |
+
msgstr[0] "%d 小时"
|
| 1518 |
|
| 1519 |
#: includes/utility-class.php:254
|
| 1520 |
msgid "%d hour ago"
|
| 1521 |
msgid_plural "%d hours ago"
|
| 1522 |
+
msgstr[0] "%d 小时前"
|
| 1523 |
|
| 1524 |
#: includes/utility-class.php:257
|
| 1525 |
msgid "%d day"
|
| 1526 |
msgid_plural "%d days"
|
| 1527 |
+
msgstr[0] "%d 天"
|
| 1528 |
|
| 1529 |
#: includes/utility-class.php:258
|
| 1530 |
msgid "%d day ago"
|
| 1531 |
msgid_plural "%d days ago"
|
| 1532 |
+
msgstr[0] "%d 天前"
|
| 1533 |
|
| 1534 |
#: includes/utility-class.php:261
|
| 1535 |
msgid "%d month"
|
| 1536 |
msgid_plural "%d months"
|
| 1537 |
+
msgstr[0] "%d 月"
|
| 1538 |
|
| 1539 |
#: includes/utility-class.php:262
|
| 1540 |
msgid "%d month ago"
|
| 1541 |
msgid_plural "%d months ago"
|
| 1542 |
+
msgstr[0] "%d 月前"
|
| 1543 |
|
| 1544 |
+
#: modules/checkers/http.php:285
|
| 1545 |
msgid "Server Not Found"
|
| 1546 |
msgstr "找不到服务器"
|
| 1547 |
|
| 1548 |
+
#: modules/checkers/http.php:301
|
| 1549 |
msgid "Connection Failed"
|
| 1550 |
msgstr "建立连接失败"
|
| 1551 |
|
| 1552 |
+
#: modules/checkers/http.php:344 modules/checkers/http.php:414
|
|
|
|
| 1553 |
msgid "HTTP code : %d"
|
| 1554 |
msgstr "HTTP代码:%d"
|
| 1555 |
|
| 1556 |
+
#: modules/checkers/http.php:346 modules/checkers/http.php:416
|
|
|
|
| 1557 |
msgid "(No response)"
|
| 1558 |
msgstr "(无响应)"
|
| 1559 |
|
| 1560 |
+
#: modules/checkers/http.php:352
|
| 1561 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
| 1562 |
msgstr "最大的可能是连接超时或者此域名不存在。"
|
| 1563 |
|
| 1564 |
+
#: modules/checkers/http.php:423
|
| 1565 |
msgid "Request timed out."
|
| 1566 |
msgstr "请求超时。"
|
| 1567 |
|
| 1568 |
+
#: modules/checkers/http.php:441
|
| 1569 |
msgid "Using Snoopy"
|
| 1570 |
msgstr "使用 Snoopy"
|
| 1571 |
|
| 1573 |
msgid "Bookmark"
|
| 1574 |
msgstr "书签"
|
| 1575 |
|
| 1576 |
+
#: modules/containers/blogroll.php:27 modules/containers/blogroll.php:46
|
|
|
|
| 1577 |
msgid "Edit this bookmark"
|
| 1578 |
msgstr "编辑此书签"
|
| 1579 |
|
| 1610 |
msgid "Can't move comment %d to the trash"
|
| 1611 |
msgstr "无法移动评论%d到回收站"
|
| 1612 |
|
| 1613 |
+
#: modules/containers/comment.php:159 modules/containers/comment.php:201
|
|
|
|
| 1614 |
msgid "Edit comment"
|
| 1615 |
msgstr "编辑评论"
|
| 1616 |
|
| 1617 |
+
#: modules/containers/comment.php:166
|
| 1618 |
msgid "Delete Permanently"
|
| 1619 |
msgstr "永久删除"
|
| 1620 |
|
| 1621 |
+
#: modules/containers/comment.php:168
|
| 1622 |
msgid "Move this comment to the trash"
|
| 1623 |
msgstr "移动此条评论到回收站"
|
| 1624 |
|
| 1625 |
+
#: modules/containers/comment.php:168
|
| 1626 |
msgctxt "verb"
|
| 1627 |
msgid "Trash"
|
| 1628 |
msgstr "回收站"
|
| 1629 |
|
| 1630 |
+
#: modules/containers/comment.php:172
|
| 1631 |
msgid "View comment"
|
| 1632 |
msgstr "查看评论"
|
| 1633 |
|
| 1634 |
+
#: modules/containers/comment.php:189
|
| 1635 |
msgid "Comment"
|
| 1636 |
msgstr "评论"
|
| 1637 |
|
| 1638 |
+
#: modules/containers/comment.php:364
|
| 1639 |
msgid "%d comment has been deleted."
|
| 1640 |
msgid_plural "%d comments have been deleted."
|
| 1641 |
+
msgstr[0] "已删除 %d 条评论。"
|
| 1642 |
|
| 1643 |
+
#: modules/containers/comment.php:383
|
| 1644 |
msgid "%d comment moved to the Trash."
|
| 1645 |
msgid_plural "%d comments moved to the Trash."
|
| 1646 |
+
msgstr[0] "已移动 %d 条评论到回收站。"
|
| 1647 |
|
| 1648 |
#: modules/containers/custom_field.php:85
|
| 1649 |
msgid "Failed to update the meta field '%s' on %s [%d]"
|
| 1653 |
msgid "Failed to delete the meta field '%s' on %s [%d]"
|
| 1654 |
msgstr "删除Meta栏目“%s”失败,栏目位于%s [%d]"
|
| 1655 |
|
| 1656 |
+
#: modules/containers/custom_field.php:216
|
| 1657 |
msgid "Edit this post"
|
| 1658 |
msgstr "编辑此文章"
|
| 1659 |
|
| 1660 |
+
#: modules/containers/custom_field.php:250
|
| 1661 |
msgid "View \"%s\""
|
| 1662 |
msgstr "查看“%s”"
|
| 1663 |
|
| 1664 |
+
#: modules/containers/dummy.php:34 modules/containers/dummy.php:45
|
|
|
|
| 1665 |
msgid "I don't know how to edit a '%s' [%d]."
|
| 1666 |
msgstr "我不知道如何编辑“%s” [%d]。"
|
| 1667 |
|
| 1674 |
msgstr "嵌入的 DailyMotion 视频"
|
| 1675 |
|
| 1676 |
#: modules/extras/embed-parser-base.php:197
|
| 1677 |
+
msgid ""
|
| 1678 |
+
"Embedded videos can't be edited using Broken Link Checker. Please edit or "
|
| 1679 |
+
"replace the video in question manually."
|
| 1680 |
msgstr "无法使用失效链接检查器编辑嵌入的视频,请手动编辑或替换存在问题的视频。"
|
| 1681 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1682 |
#: modules/extras/googlevideo-embed.php:24
|
| 1683 |
msgid "GoogleVideo Video"
|
| 1684 |
msgstr "GoogleVideo 视频"
|
| 1687 |
msgid "Embedded GoogleVideo video"
|
| 1688 |
msgstr "嵌入的 GoogleVideo 视频"
|
| 1689 |
|
| 1690 |
+
#: modules/extras/mediafire.php:97 modules/extras/mediafire.php:103
|
| 1691 |
+
#: modules/extras/rapidshare.php:139
|
| 1692 |
+
msgid "Not Found"
|
| 1693 |
+
msgstr "找不到"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1694 |
|
| 1695 |
+
#: modules/extras/mediafire.php:109
|
| 1696 |
+
msgid "Permission Denied"
|
| 1697 |
+
msgstr "没有权限"
|
| 1698 |
|
| 1699 |
#: modules/extras/rapidshare.php:51
|
| 1700 |
msgid "Using RapidShare API"
|
| 1728 |
msgid "Embedded Vimeo video"
|
| 1729 |
msgstr "嵌入的 Vimeo 视频"
|
| 1730 |
|
| 1731 |
+
#: modules/extras/youtube-embed.php:24 modules/extras/youtube-iframe.php:25
|
|
|
|
| 1732 |
msgid "YouTube Video"
|
| 1733 |
msgstr "YouTube 视频"
|
| 1734 |
|
| 1735 |
+
#: modules/extras/youtube-embed.php:25 modules/extras/youtube-iframe.php:26
|
|
|
|
| 1736 |
msgid "Embedded YouTube video"
|
| 1737 |
msgstr "嵌入的 YouTube 视频"
|
| 1738 |
|
| 1744 |
msgid "Embedded YouTube playlist"
|
| 1745 |
msgstr "嵌入的 Youtube 播放列表"
|
| 1746 |
|
| 1747 |
+
#: modules/extras/youtube.php:124 modules/extras/youtube.php:127
|
|
|
|
| 1748 |
msgid "Video Not Found"
|
| 1749 |
msgstr "找不到视频"
|
| 1750 |
|
| 1754 |
|
| 1755 |
#: modules/extras/youtube.php:143
|
| 1756 |
msgid "Invalid Video ID"
|
| 1757 |
+
msgstr "无效的视频 ID"
|
| 1758 |
|
| 1759 |
#: modules/extras/youtube.php:155
|
| 1760 |
msgid "Video OK"
|
| 1761 |
msgstr "视频正常"
|
| 1762 |
|
| 1763 |
+
#: modules/extras/youtube.php:156 modules/extras/youtube.php:177
|
| 1764 |
+
#: modules/extras/youtube.php:249 modules/extras/youtube.php:289
|
|
|
|
|
|
|
| 1765 |
msgid "OK"
|
| 1766 |
msgstr "正常"
|
| 1767 |
|
| 1768 |
+
#: modules/extras/youtube.php:170 modules/extras/youtube.php:271
|
|
|
|
| 1769 |
msgid "Video status : %s%s"
|
| 1770 |
msgstr "视频状态:%s%s"
|
| 1771 |
|
| 1772 |
+
#: modules/extras/youtube.php:182 modules/extras/youtube.php:280
|
|
|
|
| 1773 |
msgid "Video Restricted"
|
| 1774 |
msgstr "视频受限制"
|
| 1775 |
|
| 1776 |
+
#: modules/extras/youtube.php:199 modules/extras/youtube.php:305
|
|
|
|
| 1777 |
msgid "Unknown YouTube API response received."
|
| 1778 |
msgstr "收到未知的 YouTube API 响应。"
|
| 1779 |
|
| 1780 |
+
#: modules/extras/youtube.php:217 modules/extras/youtube.php:220
|
|
|
|
| 1781 |
msgid "Playlist Not Found"
|
| 1782 |
msgstr "找不到播放列表"
|
| 1783 |
|
| 1807 |
|
| 1808 |
#: modules/parsers/metadata.php:119
|
| 1809 |
msgid "Custom field"
|
| 1810 |
+
msgstr "自定义字段"
|
| 1811 |
|
| 1812 |
#. Plugin URI of the plugin/theme
|
| 1813 |
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 1814 |
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 1815 |
|
| 1816 |
#. Description of the plugin/theme
|
| 1817 |
+
msgid ""
|
| 1818 |
+
"Checks your blog for broken links and missing images and notifies you on the "
|
| 1819 |
+
"dashboard if any are found."
|
| 1820 |
msgstr "检查您文章中的失效链接和丢失的图片,如果有任何发现就在仪表盘中提醒您。"
|
| 1821 |
|
| 1822 |
#. Author of the plugin/theme
|
| 1827 |
msgid "http://w-shadow.com/"
|
| 1828 |
msgstr "http://w-shadow.com/"
|
| 1829 |
|
| 1830 |
+
#~ msgctxt "module name"
|
| 1831 |
+
#~ msgid "Embedded Megavideo videos"
|
| 1832 |
+
#~ msgstr "嵌入的 Megavideo 视频"
|
| 1833 |
+
|
| 1834 |
+
#~ msgctxt "module name"
|
| 1835 |
+
#~ msgid "FileServe API"
|
| 1836 |
+
#~ msgstr "FileServe API"
|
| 1837 |
+
|
| 1838 |
+
#~ msgctxt "module name"
|
| 1839 |
+
#~ msgid "MegaUpload API"
|
| 1840 |
+
#~ msgstr "MegaUpload API"
|
| 1841 |
+
|
| 1842 |
+
#~ msgid "Using FileServe API"
|
| 1843 |
+
#~ msgstr "使用 FileServe API"
|
| 1844 |
+
|
| 1845 |
+
#~ msgid "FileServe : %d %s"
|
| 1846 |
+
#~ msgstr "FileServe:%d %s"
|
| 1847 |
+
|
| 1848 |
+
#~ msgid "File Temporarily Unavailable"
|
| 1849 |
+
#~ msgstr "文件临时不可用"
|
| 1850 |
+
|
| 1851 |
+
#~ msgid "API Error"
|
| 1852 |
+
#~ msgstr "API错误"
|
| 1853 |
+
|
| 1854 |
+
#~ msgid "Megavideo Video"
|
| 1855 |
+
#~ msgstr "Megavideo视频"
|
| 1856 |
+
|
| 1857 |
+
#~ msgid "Embedded Megavideo video"
|
| 1858 |
+
#~ msgstr "嵌入的 Megavideo 视频"
|
| 1859 |
+
|
| 1860 |
#~ msgid "Check URLs entered in these custom fields (one per line) :"
|
| 1861 |
#~ msgstr "检测输入到此自定义栏目中的链接(每个链接一行):"
|
| 1862 |
|
modules/extras/embed-parser-base.php
CHANGED
|
@@ -109,7 +109,7 @@ class blcEmbedParserBase extends blcParser {
|
|
| 109 |
}
|
| 110 |
|
| 111 |
//Find <embed> elements not wrapped in an <object> element.
|
| 112 |
-
$embeds = blcUtility::extract_tags($html, 'embed',
|
| 113 |
foreach($embeds as $embed) {
|
| 114 |
if ( !empty($embed['attributes']['src']) ){
|
| 115 |
$embed['embed_code'] = $embed['full_tag'];
|
| 109 |
}
|
| 110 |
|
| 111 |
//Find <embed> elements not wrapped in an <object> element.
|
| 112 |
+
$embeds = blcUtility::extract_tags($html, 'embed', true, true);
|
| 113 |
foreach($embeds as $embed) {
|
| 114 |
if ( !empty($embed['attributes']['src']) ){
|
| 115 |
$embed['embed_code'] = $embed['full_tag'];
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
| 4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
| 5 |
Requires at least: 3.2
|
| 6 |
Tested up to: 4.0.1
|
| 7 |
-
Stable tag: 1.10.
|
| 8 |
|
| 9 |
This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
|
| 10 |
|
|
@@ -98,6 +98,16 @@ To upgrade your installation
|
|
| 98 |
|
| 99 |
== Changelog ==
|
| 100 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
= 1.10 =
|
| 102 |
* Added a way to hide individual link actions like "Dismiss" and "Unlink".
|
| 103 |
* Added a "Fix redirect" link action. It replaces a redirect with a direct link. It is hidden by default and can be enabled through the settings page.
|
| 4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
| 5 |
Requires at least: 3.2
|
| 6 |
Tested up to: 4.0.1
|
| 7 |
+
Stable tag: 1.10.2
|
| 8 |
|
| 9 |
This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
|
| 10 |
|
| 98 |
|
| 99 |
== Changelog ==
|
| 100 |
|
| 101 |
+
= 1.10.2 =
|
| 102 |
+
* Fixed an XSS vulnerability on the link checker settings page.
|
| 103 |
+
* Fixed old YouTube embed code parsing - now it should pick up self-closing embed tags without an `<object>` wrapper.
|
| 104 |
+
* Updated German translation.
|
| 105 |
+
* Updated Simplified Chinese translation.
|
| 106 |
+
* Link actions will now wrap properly on small screens.
|
| 107 |
+
|
| 108 |
+
= 1.10.1 =
|
| 109 |
+
* Fixed a database versioning issue that would cause multiple errors when upgrading from 1.9.5 to 1.10.
|
| 110 |
+
|
| 111 |
= 1.10 =
|
| 112 |
* Added a way to hide individual link actions like "Dismiss" and "Unlink".
|
| 113 |
* Added a "Fix redirect" link action. It replaces a redirect with a direct link. It is hidden by default and can be enabled through the settings page.
|
