Version Description
- Added a Hungarian translation.
- Fixed a bunch of "deprecated function" notices that showed up due to wpdb::escape() becoming deprecated in WP 3.6.
- Fixed a vulnerability that would allow users with the ability to bulk-edit links to execute arbitrary PHP code by using a specially crafted regex as the search string.
- Updated German translation.
- Replaced the old Dutch translation with a new and more complete translation by Robin Roelofsen.
Download this release
Release Info
| Developer | whiteshadow |
| Plugin | |
| Version | 1.8.3 |
| Comparing to | |
| See all releases | |
Code changes from version 1.8.2 to 1.8.3
- broken-link-checker.php +1 -1
- core/core.php +37 -2
- idn/idna_convert.class.php +0 -1
- idn/transcode_wrapper.php +0 -1
- idn/uctc.php +0 -1
- includes/activation.php +0 -1
- includes/admin/db-schema.php +0 -2
- includes/admin/db-upgrade.php +0 -2
- includes/any-post.php +2 -2
- includes/checkers.php +0 -1
- includes/containers.php +1 -1
- includes/instances.php +0 -1
- includes/link-query.php +5 -6
- includes/links.php +0 -1
- includes/logger.php +0 -3
- includes/module-base.php +0 -1
- includes/module-manager.php +1 -1
- includes/parsers.php +0 -1
- includes/screen-options/screen-options.php +0 -1
- includes/utility-class.php +0 -1
- includes/wp-mutex.php +0 -1
- languages/broken-link-checker-de_DE.mo +0 -0
- languages/broken-link-checker-de_DE.po +28 -17
- languages/broken-link-checker-hu_HU.mo +0 -0
- languages/broken-link-checker-hu_HU.po +1754 -0
- languages/broken-link-checker-nl_NL.mo +0 -0
- languages/broken-link-checker-nl_NL.po +1697 -504
- readme.txt +11 -3
broken-link-checker.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: Broken Link Checker
|
| 4 |
Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
|
| 5 |
Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
|
| 6 |
-
Version: 1.8.
|
| 7 |
Author: Janis Elsts
|
| 8 |
Author URI: http://w-shadow.com/
|
| 9 |
Text Domain: broken-link-checker
|
| 3 |
Plugin Name: Broken Link Checker
|
| 4 |
Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
|
| 5 |
Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
|
| 6 |
+
Version: 1.8.3
|
| 7 |
Author: Janis Elsts
|
| 8 |
Author URI: http://w-shadow.com/
|
| 9 |
Text Domain: broken-link-checker
|
core/core.php
CHANGED
|
@@ -1525,14 +1525,14 @@ class wsBrokenLinkChecker {
|
|
| 1525 |
|
| 1526 |
$delimiter = '`'; //Pick a char that's uncommon in URLs so that escaping won't usually be a problem
|
| 1527 |
if ( $use_regex ){
|
| 1528 |
-
$search = $delimiter .
|
| 1529 |
if ( !$case_sensitive ){
|
| 1530 |
$search .= 'i';
|
| 1531 |
}
|
| 1532 |
} elseif ( !$case_sensitive ) {
|
| 1533 |
//str_ireplace() would be more appropriate for case-insensitive, non-regexp replacement,
|
| 1534 |
//but that's only available in PHP5.
|
| 1535 |
-
$search = $delimiter .
|
| 1536 |
$use_regex = true;
|
| 1537 |
}
|
| 1538 |
|
|
@@ -1598,6 +1598,41 @@ class wsBrokenLinkChecker {
|
|
| 1598 |
|
| 1599 |
return array($message, $msg_class);
|
| 1600 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1601 |
|
| 1602 |
/**
|
| 1603 |
* Unlink multiple links.
|
| 1525 |
|
| 1526 |
$delimiter = '`'; //Pick a char that's uncommon in URLs so that escaping won't usually be a problem
|
| 1527 |
if ( $use_regex ){
|
| 1528 |
+
$search = $delimiter . $this->escape_regex_delimiter($search, $delimiter) . $delimiter;
|
| 1529 |
if ( !$case_sensitive ){
|
| 1530 |
$search .= 'i';
|
| 1531 |
}
|
| 1532 |
} elseif ( !$case_sensitive ) {
|
| 1533 |
//str_ireplace() would be more appropriate for case-insensitive, non-regexp replacement,
|
| 1534 |
//but that's only available in PHP5.
|
| 1535 |
+
$search = $delimiter . preg_quote($search, $delimiter) . $delimiter . 'i';
|
| 1536 |
$use_regex = true;
|
| 1537 |
}
|
| 1538 |
|
| 1598 |
|
| 1599 |
return array($message, $msg_class);
|
| 1600 |
}
|
| 1601 |
+
|
| 1602 |
+
/**
|
| 1603 |
+
* Escape all instances of the $delimiter character with a backslash (unless already escaped).
|
| 1604 |
+
*
|
| 1605 |
+
* @param string $pattern
|
| 1606 |
+
* @param string $delimiter
|
| 1607 |
+
* @return string
|
| 1608 |
+
*/
|
| 1609 |
+
private function escape_regex_delimiter($pattern, $delimiter) {
|
| 1610 |
+
if ( empty($pattern) ) {
|
| 1611 |
+
return '';
|
| 1612 |
+
}
|
| 1613 |
+
|
| 1614 |
+
$output = '';
|
| 1615 |
+
$length = strlen($pattern);
|
| 1616 |
+
$escaped = false;
|
| 1617 |
+
|
| 1618 |
+
for ($i = 0; $i < $length; $i++) {
|
| 1619 |
+
$char = $pattern[$i];
|
| 1620 |
+
|
| 1621 |
+
if ( $escaped ) {
|
| 1622 |
+
$escaped = false;
|
| 1623 |
+
} else {
|
| 1624 |
+
if ( $char == '\\' ) {
|
| 1625 |
+
$escaped = true;
|
| 1626 |
+
} else if ( $char == $delimiter ) {
|
| 1627 |
+
$char = '\\' . $char;
|
| 1628 |
+
}
|
| 1629 |
+
}
|
| 1630 |
+
|
| 1631 |
+
$output .= $char;
|
| 1632 |
+
}
|
| 1633 |
+
|
| 1634 |
+
return $output;
|
| 1635 |
+
}
|
| 1636 |
|
| 1637 |
/**
|
| 1638 |
* Unlink multiple links.
|
idn/idna_convert.class.php
CHANGED
|
@@ -2704,4 +2704,3 @@ class idna_convert
|
|
| 2704 |
)
|
| 2705 |
);
|
| 2706 |
}
|
| 2707 |
-
?>
|
| 2704 |
)
|
| 2705 |
);
|
| 2706 |
}
|
|
|
idn/transcode_wrapper.php
CHANGED
|
@@ -134,4 +134,3 @@ function map_iso8859_1_w1252($string = '')
|
|
| 134 |
return $return;
|
| 135 |
}
|
| 136 |
|
| 137 |
-
?>
|
| 134 |
return $return;
|
| 135 |
}
|
| 136 |
|
|
|
idn/uctc.php
CHANGED
|
@@ -295,4 +295,3 @@ class uctc {
|
|
| 295 |
}
|
| 296 |
|
| 297 |
}
|
| 298 |
-
?>
|
| 295 |
}
|
| 296 |
|
| 297 |
}
|
|
|
includes/activation.php
CHANGED
|
@@ -88,4 +88,3 @@ $blclog->info(sprintf(
|
|
| 88 |
));
|
| 89 |
$blclog->save();
|
| 90 |
|
| 91 |
-
?>
|
| 88 |
));
|
| 89 |
$blclog->save();
|
| 90 |
|
|
|
includes/admin/db-schema.php
CHANGED
|
@@ -93,5 +93,3 @@ EOM;
|
|
| 93 |
}
|
| 94 |
|
| 95 |
}
|
| 96 |
-
|
| 97 |
-
?>
|
| 93 |
}
|
| 94 |
|
| 95 |
}
|
|
|
|
|
|
includes/admin/db-upgrade.php
CHANGED
|
@@ -572,5 +572,3 @@ class blcTableDelta {
|
|
| 572 |
|
| 573 |
}
|
| 574 |
|
| 575 |
-
|
| 576 |
-
?>
|
| 572 |
|
| 573 |
}
|
| 574 |
|
|
|
|
|
|
includes/any-post.php
CHANGED
|
@@ -185,8 +185,8 @@ class blcPostTypeOverlord {
|
|
| 185 |
return;
|
| 186 |
}
|
| 187 |
|
| 188 |
-
$escaped_post_types = array_map(
|
| 189 |
-
$escaped_post_statuses = array_map(
|
| 190 |
|
| 191 |
if ( $forced ){
|
| 192 |
//Create new synchronization records for all posts.
|
| 185 |
return;
|
| 186 |
}
|
| 187 |
|
| 188 |
+
$escaped_post_types = array_map('esc_sql', $this->enabled_post_types);
|
| 189 |
+
$escaped_post_statuses = array_map('esc_sql', $this->enabled_post_statuses);
|
| 190 |
|
| 191 |
if ( $forced ){
|
| 192 |
//Create new synchronization records for all posts.
|
includes/checkers.php
CHANGED
|
@@ -118,4 +118,3 @@ class blcCheckerHelper {
|
|
| 118 |
}
|
| 119 |
}
|
| 120 |
|
| 121 |
-
?>
|
| 118 |
}
|
| 119 |
}
|
| 120 |
|
|
|
includes/containers.php
CHANGED
|
@@ -693,7 +693,7 @@ class blcContainerHelper {
|
|
| 693 |
|
| 694 |
$pieces = array();
|
| 695 |
foreach($by_type as $container_type => $container_ids){
|
| 696 |
-
$pieces[] = '( container_type = "'.
|
| 697 |
}
|
| 698 |
|
| 699 |
$q .= implode("\n\t OR ", $pieces);
|
| 693 |
|
| 694 |
$pieces = array();
|
| 695 |
foreach($by_type as $container_type => $container_ids){
|
| 696 |
+
$pieces[] = '( container_type = "'. esc_sql($container_type) .'" AND container_id IN ('. implode(', ', $container_ids) .') )';
|
| 697 |
}
|
| 698 |
|
| 699 |
$q .= implode("\n\t OR ", $pieces);
|
includes/instances.php
CHANGED
|
@@ -605,4 +605,3 @@ function blc_cleanup_instances(){
|
|
| 605 |
|
| 606 |
}//class_exists
|
| 607 |
|
| 608 |
-
?>
|
| 605 |
|
| 606 |
}//class_exists
|
| 607 |
|
|
|
includes/link-query.php
CHANGED
|
@@ -292,7 +292,7 @@ class blcLinkQuery {
|
|
| 292 |
//Parser type should match the parser_type column in the instance table.
|
| 293 |
if ( !empty($s_parser_type) ){
|
| 294 |
$s_parser_type = array_map('trim', array_unique($s_parser_type));
|
| 295 |
-
$s_parser_type = array_map(
|
| 296 |
|
| 297 |
if ( count($s_parser_type) == 1 ){
|
| 298 |
$pieces[] = sprintf("instances.parser_type = '%s'", reset($s_parser_type));
|
|
@@ -307,7 +307,7 @@ class blcLinkQuery {
|
|
| 307 |
if ( !empty($s_container_type) ){
|
| 308 |
//Sanitize for use in SQL
|
| 309 |
$s_container_type = array_map('trim', array_unique($s_container_type));
|
| 310 |
-
$s_container_type = array_map(
|
| 311 |
|
| 312 |
if ( count($s_container_type) == 1 ){
|
| 313 |
$pieces[] = sprintf("instances.container_type = '%s'", reset($s_container_type));
|
|
@@ -346,7 +346,7 @@ class blcLinkQuery {
|
|
| 346 |
|
| 347 |
//Anchor text - use LIKE search
|
| 348 |
if ( !empty($params['s_link_text']) ){
|
| 349 |
-
$s_link_text = like_escape(
|
| 350 |
$s_link_text = str_replace('*', '%', $s_link_text);
|
| 351 |
|
| 352 |
$pieces[] = '(instances.link_text LIKE "%' . $s_link_text . '%")';
|
|
@@ -357,7 +357,7 @@ class blcLinkQuery {
|
|
| 357 |
//There is limited wildcard support, e.g. "google.*/search" will match both
|
| 358 |
//"google.com/search" and "google.lv/search"
|
| 359 |
if ( !empty($params['s_link_url']) ){
|
| 360 |
-
$s_link_url = like_escape(
|
| 361 |
$s_link_url = str_replace('*', '%', $s_link_url);
|
| 362 |
|
| 363 |
$pieces[] = '(links.url LIKE "%'. $s_link_url .'%") OR '.
|
|
@@ -375,7 +375,7 @@ class blcLinkQuery {
|
|
| 375 |
|
| 376 |
//Link type can match either the the parser_type or the container_type.
|
| 377 |
if ( !empty($params['s_link_type']) ){
|
| 378 |
-
$s_link_type =
|
| 379 |
$pieces[] = "instances.parser_type = '$s_link_type' OR instances.container_type='$s_link_type'";
|
| 380 |
$join_instances = true;
|
| 381 |
}
|
|
@@ -818,4 +818,3 @@ function blc_get_links($params = null){
|
|
| 818 |
return $instance->get_links($params);
|
| 819 |
}
|
| 820 |
|
| 821 |
-
?>
|
| 292 |
//Parser type should match the parser_type column in the instance table.
|
| 293 |
if ( !empty($s_parser_type) ){
|
| 294 |
$s_parser_type = array_map('trim', array_unique($s_parser_type));
|
| 295 |
+
$s_parser_type = array_map('esc_sql', $s_parser_type);
|
| 296 |
|
| 297 |
if ( count($s_parser_type) == 1 ){
|
| 298 |
$pieces[] = sprintf("instances.parser_type = '%s'", reset($s_parser_type));
|
| 307 |
if ( !empty($s_container_type) ){
|
| 308 |
//Sanitize for use in SQL
|
| 309 |
$s_container_type = array_map('trim', array_unique($s_container_type));
|
| 310 |
+
$s_container_type = array_map('esc_sql', $s_container_type);
|
| 311 |
|
| 312 |
if ( count($s_container_type) == 1 ){
|
| 313 |
$pieces[] = sprintf("instances.container_type = '%s'", reset($s_container_type));
|
| 346 |
|
| 347 |
//Anchor text - use LIKE search
|
| 348 |
if ( !empty($params['s_link_text']) ){
|
| 349 |
+
$s_link_text = like_escape(esc_sql($params['s_link_text']));
|
| 350 |
$s_link_text = str_replace('*', '%', $s_link_text);
|
| 351 |
|
| 352 |
$pieces[] = '(instances.link_text LIKE "%' . $s_link_text . '%")';
|
| 357 |
//There is limited wildcard support, e.g. "google.*/search" will match both
|
| 358 |
//"google.com/search" and "google.lv/search"
|
| 359 |
if ( !empty($params['s_link_url']) ){
|
| 360 |
+
$s_link_url = like_escape(esc_sql($params['s_link_url']));
|
| 361 |
$s_link_url = str_replace('*', '%', $s_link_url);
|
| 362 |
|
| 363 |
$pieces[] = '(links.url LIKE "%'. $s_link_url .'%") OR '.
|
| 375 |
|
| 376 |
//Link type can match either the the parser_type or the container_type.
|
| 377 |
if ( !empty($params['s_link_type']) ){
|
| 378 |
+
$s_link_type = esc_sql($params['s_link_type']);
|
| 379 |
$pieces[] = "instances.parser_type = '$s_link_type' OR instances.container_type='$s_link_type'";
|
| 380 |
$join_instances = true;
|
| 381 |
}
|
| 818 |
return $instance->get_links($params);
|
| 819 |
}
|
| 820 |
|
|
|
includes/links.php
CHANGED
|
@@ -930,4 +930,3 @@ function blc_cleanup_links( $link_id = null ){
|
|
| 930 |
return $rez !== false;
|
| 931 |
}
|
| 932 |
|
| 933 |
-
?>
|
| 930 |
return $rez !== false;
|
| 931 |
}
|
| 932 |
|
|
|
includes/logger.php
CHANGED
|
@@ -120,6 +120,3 @@ class blcDummyLogger extends blcLogger { }
|
|
| 120 |
|
| 121 |
endif;
|
| 122 |
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
?>
|
| 120 |
|
| 121 |
endif;
|
| 122 |
|
|
|
|
|
|
|
|
|
includes/module-base.php
CHANGED
|
@@ -70,4 +70,3 @@ class blcModule {
|
|
| 70 |
}
|
| 71 |
}
|
| 72 |
|
| 73 |
-
?>
|
| 70 |
}
|
| 71 |
}
|
| 72 |
|
|
|
includes/module-manager.php
CHANGED
|
@@ -191,7 +191,7 @@ class blcModuleManager {
|
|
| 191 |
$modules = $this->get_active_by_category($category);
|
| 192 |
}
|
| 193 |
|
| 194 |
-
$modules = array_map(
|
| 195 |
$modules = "'" . implode("', '", $modules) . "'";
|
| 196 |
|
| 197 |
return $modules;
|
| 191 |
$modules = $this->get_active_by_category($category);
|
| 192 |
}
|
| 193 |
|
| 194 |
+
$modules = array_map('esc_sql', array_keys($modules));
|
| 195 |
$modules = "'" . implode("', '", $modules) . "'";
|
| 196 |
|
| 197 |
return $modules;
|
includes/parsers.php
CHANGED
|
@@ -332,4 +332,3 @@ class blcParserHelper {
|
|
| 332 |
}
|
| 333 |
}
|
| 334 |
|
| 335 |
-
?>
|
| 332 |
}
|
| 333 |
}
|
| 334 |
|
|
|
includes/screen-options/screen-options.php
CHANGED
|
@@ -279,4 +279,3 @@ if ( !function_exists('add_screen_options_panel') ){
|
|
| 279 |
|
| 280 |
}
|
| 281 |
|
| 282 |
-
?>
|
| 279 |
|
| 280 |
}
|
| 281 |
|
|
|
includes/utility-class.php
CHANGED
|
@@ -415,4 +415,3 @@ class blcUtility {
|
|
| 415 |
|
| 416 |
}//class_exists
|
| 417 |
|
| 418 |
-
?>
|
| 415 |
|
| 416 |
}//class_exists
|
| 417 |
|
|
|
includes/wp-mutex.php
CHANGED
|
@@ -55,4 +55,3 @@ class WPMutex {
|
|
| 55 |
|
| 56 |
endif;
|
| 57 |
|
| 58 |
-
?>
|
| 55 |
|
| 56 |
endif;
|
| 57 |
|
|
|
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.8\n"
|
| 4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 5 |
-
"POT-Creation-Date: 2013-06-
|
| 6 |
-
"PO-Revision-Date: 2013-
|
| 7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
| 8 |
"Language-Team: \n"
|
| 9 |
"Language: de_CH\n"
|
|
@@ -16,7 +16,7 @@ msgstr ""
|
|
| 16 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
| 17 |
"X-Textdomain-Support: yes\n"
|
| 18 |
"X-Poedit-Basepath: .\n"
|
| 19 |
-
"X-Generator: Poedit 1.5.
|
| 20 |
"X-Poedit-SearchPath-0: .\n"
|
| 21 |
|
| 22 |
# @ broken-link-checker
|
|
@@ -669,7 +669,7 @@ msgid "Failed to load link details (%s)"
|
|
| 669 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
| 670 |
|
| 671 |
# @ broken-link-checker
|
| 672 |
-
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.
|
| 673 |
#. Plugin Name of the plugin/theme
|
| 674 |
#: core/core.php:2712
|
| 675 |
msgid "Broken Link Checker"
|
|
@@ -1431,71 +1431,82 @@ msgstr "Eingebettete Vimeo Videos"
|
|
| 1431 |
# @ broken-link-checker
|
| 1432 |
#: includes/extra-strings.php:10
|
| 1433 |
msgctxt "module name"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1434 |
msgid "Embedded YouTube videos"
|
| 1435 |
msgstr "Eingebettete YouTube Videos"
|
| 1436 |
|
| 1437 |
# @ broken-link-checker
|
| 1438 |
-
#: includes/extra-strings.php:
|
| 1439 |
msgctxt "module name"
|
| 1440 |
msgid "Embedded YouTube videos (old embed code)"
|
| 1441 |
-
msgstr "Eingebettete YouTube Videos (
|
| 1442 |
|
| 1443 |
# @ broken-link-checker
|
| 1444 |
-
#: includes/extra-strings.php:
|
| 1445 |
msgctxt "module name"
|
| 1446 |
msgid "FileServe API"
|
| 1447 |
msgstr "FileServe API"
|
| 1448 |
|
| 1449 |
# @ broken-link-checker
|
| 1450 |
-
#: includes/extra-strings.php:
|
| 1451 |
msgctxt "module name"
|
| 1452 |
msgid "HTML images"
|
| 1453 |
msgstr "HTML Bilder"
|
| 1454 |
|
| 1455 |
# @ broken-link-checker
|
| 1456 |
-
#: includes/extra-strings.php:
|
| 1457 |
msgctxt "module name"
|
| 1458 |
msgid "HTML links"
|
| 1459 |
msgstr "HTML Links"
|
| 1460 |
|
| 1461 |
# @ broken-link-checker
|
| 1462 |
-
#: includes/extra-strings.php:
|
| 1463 |
msgctxt "module name"
|
| 1464 |
msgid "MediaFire API"
|
| 1465 |
msgstr "MediaFire API"
|
| 1466 |
|
| 1467 |
# @ broken-link-checker
|
| 1468 |
-
#: includes/extra-strings.php:
|
| 1469 |
msgctxt "module name"
|
| 1470 |
msgid "MegaUpload API"
|
| 1471 |
msgstr "MegaUpload API"
|
| 1472 |
|
| 1473 |
# @ broken-link-checker
|
| 1474 |
-
#: includes/extra-strings.php:
|
| 1475 |
msgctxt "module name"
|
| 1476 |
msgid "Plaintext URLs"
|
| 1477 |
msgstr "Klartext URLs"
|
| 1478 |
|
| 1479 |
# @ broken-link-checker
|
| 1480 |
-
#: includes/extra-strings.php:
|
| 1481 |
msgctxt "module name"
|
| 1482 |
msgid "RapidShare API"
|
| 1483 |
msgstr "RapidShare API"
|
| 1484 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1485 |
# @ broken-link-checker
|
| 1486 |
-
#: includes/extra-strings.php:
|
| 1487 |
msgctxt "module name"
|
| 1488 |
msgid "YouTube API"
|
| 1489 |
msgstr "YouTube API"
|
| 1490 |
|
| 1491 |
# @ broken-link-checker
|
| 1492 |
-
#: includes/extra-strings.php:
|
| 1493 |
msgctxt "module name"
|
| 1494 |
msgid "Posts"
|
| 1495 |
msgstr "Beiträge"
|
| 1496 |
|
| 1497 |
# @ broken-link-checker
|
| 1498 |
-
#: includes/extra-strings.php:
|
| 1499 |
msgctxt "module name"
|
| 1500 |
msgid "Pages"
|
| 1501 |
msgstr "Seiten"
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
+
"Project-Id-Version: Broken Link Checker | V1.8.2\n"
|
| 4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 5 |
+
"POT-Creation-Date: 2013-06-23 07:51:56+00:00\n"
|
| 6 |
+
"PO-Revision-Date: 2013-07-25 18:09+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.5.7\n"
|
| 20 |
"X-Poedit-SearchPath-0: .\n"
|
| 21 |
|
| 22 |
# @ broken-link-checker
|
| 669 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
| 670 |
|
| 671 |
# @ broken-link-checker
|
| 672 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.8) #-#-#-#-#
|
| 673 |
#. Plugin Name of the plugin/theme
|
| 674 |
#: core/core.php:2712
|
| 675 |
msgid "Broken Link Checker"
|
| 1431 |
# @ broken-link-checker
|
| 1432 |
#: includes/extra-strings.php:10
|
| 1433 |
msgctxt "module name"
|
| 1434 |
+
msgid "Embedded YouTube playlists (old embed code)"
|
| 1435 |
+
msgstr "Eingebettete YouTube Wiedergabelisten (alter Code)"
|
| 1436 |
+
|
| 1437 |
+
# @ broken-link-checker
|
| 1438 |
+
#: includes/extra-strings.php:11
|
| 1439 |
+
msgctxt "module name"
|
| 1440 |
msgid "Embedded YouTube videos"
|
| 1441 |
msgstr "Eingebettete YouTube Videos"
|
| 1442 |
|
| 1443 |
# @ broken-link-checker
|
| 1444 |
+
#: includes/extra-strings.php:12
|
| 1445 |
msgctxt "module name"
|
| 1446 |
msgid "Embedded YouTube videos (old embed code)"
|
| 1447 |
+
msgstr "Eingebettete YouTube Videos (alter Code)"
|
| 1448 |
|
| 1449 |
# @ broken-link-checker
|
| 1450 |
+
#: includes/extra-strings.php:13
|
| 1451 |
msgctxt "module name"
|
| 1452 |
msgid "FileServe API"
|
| 1453 |
msgstr "FileServe API"
|
| 1454 |
|
| 1455 |
# @ broken-link-checker
|
| 1456 |
+
#: includes/extra-strings.php:14
|
| 1457 |
msgctxt "module name"
|
| 1458 |
msgid "HTML images"
|
| 1459 |
msgstr "HTML Bilder"
|
| 1460 |
|
| 1461 |
# @ broken-link-checker
|
| 1462 |
+
#: includes/extra-strings.php:15
|
| 1463 |
msgctxt "module name"
|
| 1464 |
msgid "HTML links"
|
| 1465 |
msgstr "HTML Links"
|
| 1466 |
|
| 1467 |
# @ broken-link-checker
|
| 1468 |
+
#: includes/extra-strings.php:16
|
| 1469 |
msgctxt "module name"
|
| 1470 |
msgid "MediaFire API"
|
| 1471 |
msgstr "MediaFire API"
|
| 1472 |
|
| 1473 |
# @ broken-link-checker
|
| 1474 |
+
#: includes/extra-strings.php:17
|
| 1475 |
msgctxt "module name"
|
| 1476 |
msgid "MegaUpload API"
|
| 1477 |
msgstr "MegaUpload API"
|
| 1478 |
|
| 1479 |
# @ broken-link-checker
|
| 1480 |
+
#: includes/extra-strings.php:18
|
| 1481 |
msgctxt "module name"
|
| 1482 |
msgid "Plaintext URLs"
|
| 1483 |
msgstr "Klartext URLs"
|
| 1484 |
|
| 1485 |
# @ broken-link-checker
|
| 1486 |
+
#: includes/extra-strings.php:19
|
| 1487 |
msgctxt "module name"
|
| 1488 |
msgid "RapidShare API"
|
| 1489 |
msgstr "RapidShare API"
|
| 1490 |
|
| 1491 |
+
#: includes/extra-strings.php:20
|
| 1492 |
+
msgctxt "module name"
|
| 1493 |
+
msgid "Smart YouTube httpv:// URLs"
|
| 1494 |
+
msgstr "Smart YouTube httpv:// URLs"
|
| 1495 |
+
|
| 1496 |
# @ broken-link-checker
|
| 1497 |
+
#: includes/extra-strings.php:21
|
| 1498 |
msgctxt "module name"
|
| 1499 |
msgid "YouTube API"
|
| 1500 |
msgstr "YouTube API"
|
| 1501 |
|
| 1502 |
# @ broken-link-checker
|
| 1503 |
+
#: includes/extra-strings.php:22
|
| 1504 |
msgctxt "module name"
|
| 1505 |
msgid "Posts"
|
| 1506 |
msgstr "Beiträge"
|
| 1507 |
|
| 1508 |
# @ broken-link-checker
|
| 1509 |
+
#: includes/extra-strings.php:23
|
| 1510 |
msgctxt "module name"
|
| 1511 |
msgid "Pages"
|
| 1512 |
msgstr "Seiten"
|
languages/broken-link-checker-hu_HU.mo
ADDED
|
Binary file
|
languages/broken-link-checker-hu_HU.po
ADDED
|
@@ -0,0 +1,1754 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Broken Link Checker package.
|
| 2 |
+
msgid ""
|
| 3 |
+
msgstr ""
|
| 4 |
+
"Project-Id-Version: Broken Link Checker 1.8\n"
|
| 5 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 6 |
+
"POT-Creation-Date: 2013-06-23 07:51:56+00:00\n"
|
| 7 |
+
"PO-Revision-Date: 2013-08-10 10:02+0200\n"
|
| 8 |
+
"Last-Translator: Janis Elsts <whiteshadow@w-shadow.com>\n"
|
| 9 |
+
"Language-Team: LANGUAGE Connect <rjalali@languageconnect.net>\n"
|
| 10 |
+
"MIME-Version: 1.0\n"
|
| 11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 13 |
+
"X-Generator: Poedit 1.5.7\n"
|
| 14 |
+
"Language: Hungarian\n"
|
| 15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 16 |
+
|
| 17 |
+
#: core/core.php:151 includes/admin/links-page-js.php:37
|
| 18 |
+
msgid "Loading..."
|
| 19 |
+
msgstr "Betöltés folyamatban..."
|
| 20 |
+
|
| 21 |
+
#: core/core.php:175 includes/admin/options-page-js.php:18
|
| 22 |
+
msgid "[ Network error ]"
|
| 23 |
+
msgstr "[ Hálózati hiba ]"
|
| 24 |
+
|
| 25 |
+
#: core/core.php:202
|
| 26 |
+
msgid "Automatically expand the widget if broken links have been detected"
|
| 27 |
+
msgstr "Vezérlő automatikus kibontása nem működő hivatkozás észlelése esetén"
|
| 28 |
+
|
| 29 |
+
#: core/core.php:292
|
| 30 |
+
msgid "Link Checker Settings"
|
| 31 |
+
msgstr "Link Checker beállítása"
|
| 32 |
+
|
| 33 |
+
#: core/core.php:293
|
| 34 |
+
msgid "Link Checker"
|
| 35 |
+
msgstr "Link Checker"
|
| 36 |
+
|
| 37 |
+
#: core/core.php:298 includes/link-query.php:27
|
| 38 |
+
msgid "Broken Links"
|
| 39 |
+
msgstr "Nem működő hivatkozások"
|
| 40 |
+
|
| 41 |
+
#: core/core.php:314
|
| 42 |
+
msgid "View Broken Links"
|
| 43 |
+
msgstr "Nem működő hivatkozások megtekintése"
|
| 44 |
+
|
| 45 |
+
#: core/core.php:329
|
| 46 |
+
msgid "Feedback"
|
| 47 |
+
msgstr "Visszajelzés"
|
| 48 |
+
|
| 49 |
+
#: core/core.php:337
|
| 50 |
+
msgid "Go to Broken Links"
|
| 51 |
+
msgstr "Ugrás a nem működő hivatkozásokhoz"
|
| 52 |
+
|
| 53 |
+
#: core/core.php:366
|
| 54 |
+
msgid "Settings"
|
| 55 |
+
msgstr "Beállítások"
|
| 56 |
+
|
| 57 |
+
#: core/core.php:533
|
| 58 |
+
msgid "Settings saved."
|
| 59 |
+
msgstr "Beállítások elmentve."
|
| 60 |
+
|
| 61 |
+
#: core/core.php:539
|
| 62 |
+
msgid "Thank you for your donation!"
|
| 63 |
+
msgstr "Köszönjük adományát!"
|
| 64 |
+
|
| 65 |
+
#: core/core.php:547
|
| 66 |
+
msgid "Complete site recheck started."
|
| 67 |
+
msgstr "Teljes oldal-újraellenőrzés elindítva."
|
| 68 |
+
|
| 69 |
+
#: core/core.php:556
|
| 70 |
+
msgid "Details"
|
| 71 |
+
msgstr "Részletek"
|
| 72 |
+
|
| 73 |
+
#: core/core.php:570
|
| 74 |
+
msgid "General"
|
| 75 |
+
msgstr "Általános"
|
| 76 |
+
|
| 77 |
+
#: core/core.php:571
|
| 78 |
+
msgid "Look For Links In"
|
| 79 |
+
msgstr "Hivatkozások keresési helye"
|
| 80 |
+
|
| 81 |
+
#: core/core.php:572
|
| 82 |
+
msgid "Which Links To Check"
|
| 83 |
+
msgstr "Ellenőrzendő hivatkozások"
|
| 84 |
+
|
| 85 |
+
#: core/core.php:573
|
| 86 |
+
msgid "Protocols & APIs"
|
| 87 |
+
msgstr "Protokollok és API-k"
|
| 88 |
+
|
| 89 |
+
#: core/core.php:574
|
| 90 |
+
msgid "Advanced"
|
| 91 |
+
msgstr "Haladó"
|
| 92 |
+
|
| 93 |
+
#: core/core.php:589
|
| 94 |
+
msgid "Broken Link Checker Options"
|
| 95 |
+
msgstr "Nem működő hivatkozások ellenőrzési beállításai"
|
| 96 |
+
|
| 97 |
+
#: core/core.php:631 includes/admin/table-printer.php:197
|
| 98 |
+
msgid "Status"
|
| 99 |
+
msgstr "Állapot"
|
| 100 |
+
|
| 101 |
+
#: core/core.php:633 includes/admin/options-page-js.php:56
|
| 102 |
+
msgid "Show debug info"
|
| 103 |
+
msgstr "Hibakeresési adatok megjelenítése"
|
| 104 |
+
|
| 105 |
+
#: core/core.php:661
|
| 106 |
+
msgid "Check each link"
|
| 107 |
+
msgstr "Minden egyes hivatkozás ellenőrzése"
|
| 108 |
+
|
| 109 |
+
#: core/core.php:666
|
| 110 |
+
msgid "Every %s hours"
|
| 111 |
+
msgstr "%s óránként"
|
| 112 |
+
|
| 113 |
+
#: core/core.php:675
|
| 114 |
+
msgid ""
|
| 115 |
+
"Existing links will be checked this often. New links will usually be checked "
|
| 116 |
+
"ASAP."
|
| 117 |
+
msgstr ""
|
| 118 |
+
"A meglévő hivatkozások ilyen gyakran lesznek ellenőrizve. Az új "
|
| 119 |
+
"hivatkozásokat általában azonnal ellenőrzi a rendszer."
|
| 120 |
+
|
| 121 |
+
#: core/core.php:682
|
| 122 |
+
msgid "E-mail notifications"
|
| 123 |
+
msgstr "E-mail értesítések"
|
| 124 |
+
|
| 125 |
+
#: core/core.php:688
|
| 126 |
+
msgid "Send me e-mail notifications about newly detected broken links"
|
| 127 |
+
msgstr ""
|
| 128 |
+
"E-mail értesítéseket kérek magamnak az újonnan észlelt nem működő "
|
| 129 |
+
"hivatkozásokról"
|
| 130 |
+
|
| 131 |
+
#: core/core.php:696
|
| 132 |
+
msgid "Send authors e-mail notifications about broken links in their posts"
|
| 133 |
+
msgstr ""
|
| 134 |
+
"E-mail értesítéseket kérek a szerzőknek a bejegyzéseikben újonnan észlelt "
|
| 135 |
+
"nem működő hivatkozásokról"
|
| 136 |
+
|
| 137 |
+
#: core/core.php:703
|
| 138 |
+
msgid "Notification e-mail address"
|
| 139 |
+
msgstr "Értesítési e-mail cím"
|
| 140 |
+
|
| 141 |
+
#: core/core.php:715
|
| 142 |
+
msgid ""
|
| 143 |
+
"Leave empty to use the e-mail address specified in Settings → General."
|
| 144 |
+
msgstr ""
|
| 145 |
+
"Hagyja üresen, ha a Beállítások → Általános menüben megadott e-mail "
|
| 146 |
+
"címet szeretné használni."
|
| 147 |
+
|
| 148 |
+
#: core/core.php:722
|
| 149 |
+
msgid "Link tweaks"
|
| 150 |
+
msgstr "Hivatkozás-finomhangolás"
|
| 151 |
+
|
| 152 |
+
#: core/core.php:728
|
| 153 |
+
msgid "Apply custom formatting to broken links"
|
| 154 |
+
msgstr "Egyedi formázás alkalmazása a nem működő hivatkozásokra"
|
| 155 |
+
|
| 156 |
+
#: core/core.php:732 core/core.php:763
|
| 157 |
+
msgid "Edit CSS"
|
| 158 |
+
msgstr "CSS szerkesztése"
|
| 159 |
+
|
| 160 |
+
#: core/core.php:748
|
| 161 |
+
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
| 162 |
+
msgstr "Például: Lorem ipsum <a %s>nem működő hivatkozás</a>, dolor sit amet."
|
| 163 |
+
|
| 164 |
+
#: core/core.php:751 core/core.php:782
|
| 165 |
+
msgid "Click \"Save Changes\" to update example output."
|
| 166 |
+
msgstr ""
|
| 167 |
+
"A példakimenet frissítéséhez kattintson a \"Módosítások mentése\" "
|
| 168 |
+
"lehetőségre."
|
| 169 |
+
|
| 170 |
+
#: core/core.php:759
|
| 171 |
+
msgid "Apply custom formatting to removed links"
|
| 172 |
+
msgstr "Egyedi formázás alkalmazása az eltávolított hivatkozásokra"
|
| 173 |
+
|
| 174 |
+
#: core/core.php:779
|
| 175 |
+
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
| 176 |
+
msgstr ""
|
| 177 |
+
"Például: Lorem ipsum <span %s>eltávolított hivatkozás</span>, dolor sit amet."
|
| 178 |
+
|
| 179 |
+
#: core/core.php:792
|
| 180 |
+
msgid "Stop search engines from following broken links"
|
| 181 |
+
msgstr "Keresőmotorok általi követés leállítása nem működő hivatkozások esetén"
|
| 182 |
+
|
| 183 |
+
#: core/core.php:809
|
| 184 |
+
msgid "Look for links in"
|
| 185 |
+
msgstr "Hivatkozások keresési helye"
|
| 186 |
+
|
| 187 |
+
#: core/core.php:820
|
| 188 |
+
msgid "Post statuses"
|
| 189 |
+
msgstr "Bejegyzésállapotok"
|
| 190 |
+
|
| 191 |
+
#: core/core.php:853
|
| 192 |
+
msgid "Link types"
|
| 193 |
+
msgstr "Hivatkozástípusok"
|
| 194 |
+
|
| 195 |
+
#: core/core.php:859
|
| 196 |
+
msgid "Error : All link parsers missing!"
|
| 197 |
+
msgstr "Hiba: Minden hivatkozáselemző hiányzik!"
|
| 198 |
+
|
| 199 |
+
#: core/core.php:866
|
| 200 |
+
msgid "Exclusion list"
|
| 201 |
+
msgstr "Kivétellista"
|
| 202 |
+
|
| 203 |
+
#: core/core.php:867
|
| 204 |
+
msgid ""
|
| 205 |
+
"Don't check links where the URL contains any of these words (one per line) :"
|
| 206 |
+
msgstr ""
|
| 207 |
+
"Hivatkozások ellenőrzésének mellőzése, ahol az URL a következő szavak "
|
| 208 |
+
"(soronként egyet írjon) bármelyikét tartalmazza:"
|
| 209 |
+
|
| 210 |
+
#: core/core.php:885
|
| 211 |
+
msgid "Check links using"
|
| 212 |
+
msgstr "Hivatkozások ellenőrzése a következő használatával:"
|
| 213 |
+
|
| 214 |
+
#: core/core.php:904 includes/links.php:856
|
| 215 |
+
msgid "Timeout"
|
| 216 |
+
msgstr "Időtúllépés"
|
| 217 |
+
|
| 218 |
+
#: core/core.php:910 core/core.php:979 core/core.php:2823
|
| 219 |
+
msgid "%s seconds"
|
| 220 |
+
msgstr "%s másodperc"
|
| 221 |
+
|
| 222 |
+
#: core/core.php:919
|
| 223 |
+
msgid "Links that take longer than this to load will be marked as broken."
|
| 224 |
+
msgstr ""
|
| 225 |
+
"Az ennél hosszabb idő alatt betöltő hivatkozások nem működőként lesznek "
|
| 226 |
+
"jelölve."
|
| 227 |
+
|
| 228 |
+
#: core/core.php:926
|
| 229 |
+
msgid "Link monitor"
|
| 230 |
+
msgstr "Hivatkozásfelügyelő"
|
| 231 |
+
|
| 232 |
+
#: core/core.php:934
|
| 233 |
+
msgid "Run continuously while the Dashboard is open"
|
| 234 |
+
msgstr "Fut, ha a kezelőpanel meg van nyitva"
|
| 235 |
+
|
| 236 |
+
#: core/core.php:942
|
| 237 |
+
msgid "Run hourly in the background"
|
| 238 |
+
msgstr "Óránként fut a háttérben"
|
| 239 |
+
|
| 240 |
+
#: core/core.php:950
|
| 241 |
+
msgid "Show the dashboard widget for"
|
| 242 |
+
msgstr "A kezelőpaneli vezérlő megjelenítése a következőre:"
|
| 243 |
+
|
| 244 |
+
#: core/core.php:955
|
| 245 |
+
msgid "Administrator"
|
| 246 |
+
msgstr "Rendszergazda"
|
| 247 |
+
|
| 248 |
+
#: core/core.php:956
|
| 249 |
+
msgid "Editor and above"
|
| 250 |
+
msgstr "Szerkesztő és afeletti"
|
| 251 |
+
|
| 252 |
+
#: core/core.php:957
|
| 253 |
+
msgid "Nobody (disables the widget)"
|
| 254 |
+
msgstr "Senki (a vezérlő letiltása)"
|
| 255 |
+
|
| 256 |
+
#: core/core.php:973
|
| 257 |
+
msgid "Max. execution time"
|
| 258 |
+
msgstr "Max. végrehajtási idő"
|
| 259 |
+
|
| 260 |
+
#: core/core.php:990
|
| 261 |
+
msgid ""
|
| 262 |
+
"The plugin works by periodically launching a background job that parses your "
|
| 263 |
+
"posts for links, checks the discovered URLs, and performs other time-"
|
| 264 |
+
"consuming tasks. Here you can set for how long, at most, the link monitor "
|
| 265 |
+
"may run each time before stopping."
|
| 266 |
+
msgstr ""
|
| 267 |
+
"A bővítmény rendszeres időközönként háttérben futó feladatot indít az Ön "
|
| 268 |
+
"bejegyzéseiben található hivatkozások elemzésére, ellenőrzi a talált URL "
|
| 269 |
+
"címeket, és további időigényes feladatokat hajt végre. Itt beállíthatja, "
|
| 270 |
+
"hogy hivatkozásonként legfeljebb mennyi ideig fusson a hivatkozásfelügyelő, "
|
| 271 |
+
"mielőtt le lenne állítva."
|
| 272 |
+
|
| 273 |
+
#: core/core.php:999
|
| 274 |
+
msgid "Server load limit"
|
| 275 |
+
msgstr "Kiszolgálóterhelési korlát"
|
| 276 |
+
|
| 277 |
+
#: core/core.php:1014
|
| 278 |
+
msgid "Current load : %s"
|
| 279 |
+
msgstr "Jelenlegi terhelés: %s"
|
| 280 |
+
|
| 281 |
+
#: core/core.php:1019
|
| 282 |
+
msgid ""
|
| 283 |
+
"Link checking will be suspended if the average <a href=\"%s\">server load</"
|
| 284 |
+
"a> rises above this number. Leave this field blank to disable load limiting."
|
| 285 |
+
msgstr ""
|
| 286 |
+
"A hivatkozásellenőrzés fel lesz függesztve, ha az átlagos <a href=\"%s"
|
| 287 |
+
"\">kiszolgálóterhelés</a> efölé az érték fölé nő. A terheléskorlátozás "
|
| 288 |
+
"funkció letiltásához hagyja üresen ezt a mezőt."
|
| 289 |
+
|
| 290 |
+
#: core/core.php:1028
|
| 291 |
+
msgid "Not available"
|
| 292 |
+
msgstr "Nem áll rendelkezésre"
|
| 293 |
+
|
| 294 |
+
#: core/core.php:1030
|
| 295 |
+
msgid ""
|
| 296 |
+
"Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
|
| 297 |
+
"code> is present and accessible."
|
| 298 |
+
msgstr ""
|
| 299 |
+
"A terheléskorlátozás csak olyan Linuxhoz hasonló rendszereknél működik, ahol "
|
| 300 |
+
"a <code>proc/loadavg</code> megtalálható és hozzáférhető."
|
| 301 |
+
|
| 302 |
+
#: core/core.php:1038
|
| 303 |
+
msgid "Forced recheck"
|
| 304 |
+
msgstr "Kényszerített újraellenőrzés"
|
| 305 |
+
|
| 306 |
+
#: core/core.php:1041
|
| 307 |
+
msgid "Re-check all pages"
|
| 308 |
+
msgstr "Minden oldal újraellenőrzése"
|
| 309 |
+
|
| 310 |
+
#: core/core.php:1045
|
| 311 |
+
msgid ""
|
| 312 |
+
"The \"Nuclear Option\". Click this button to make the plugin empty its link "
|
| 313 |
+
"database and recheck the entire site from scratch."
|
| 314 |
+
msgstr ""
|
| 315 |
+
"Az \"atombomba megoldás\". Erre a gombra kattintva a bővítmény kiüríti "
|
| 316 |
+
"hivatkozás-adatbázisát, és a teljes oldalt nulláról újraellenőrzi."
|
| 317 |
+
|
| 318 |
+
#: core/core.php:1056
|
| 319 |
+
msgid "Save Changes"
|
| 320 |
+
msgstr "Módosítások mentése"
|
| 321 |
+
|
| 322 |
+
#: core/core.php:1107
|
| 323 |
+
msgid "Configure"
|
| 324 |
+
msgstr "Beállítás"
|
| 325 |
+
|
| 326 |
+
#: core/core.php:1189
|
| 327 |
+
msgid "Check URLs entered in these custom fields (one per line) :"
|
| 328 |
+
msgstr ""
|
| 329 |
+
"Az ezekbe az egyedi mezőkbe beírt URL címek (soronként egyet adjon meg) "
|
| 330 |
+
"ellenőrzése:"
|
| 331 |
+
|
| 332 |
+
#: core/core.php:1317 core/core.php:1399 core/core.php:1431
|
| 333 |
+
msgid "Database error : %s"
|
| 334 |
+
msgstr "Adatbázishiba : %s"
|
| 335 |
+
|
| 336 |
+
#: core/core.php:1381
|
| 337 |
+
msgid "You must enter a filter name!"
|
| 338 |
+
msgstr "Be kell írnia egy szűrőnevet!"
|
| 339 |
+
|
| 340 |
+
#: core/core.php:1385
|
| 341 |
+
msgid "Invalid search query."
|
| 342 |
+
msgstr "Érvénytelen keresési lekérdezés."
|
| 343 |
+
|
| 344 |
+
#: core/core.php:1394
|
| 345 |
+
msgid "Filter \"%s\" created"
|
| 346 |
+
msgstr "\"%s\" szűrő létrehozva"
|
| 347 |
+
|
| 348 |
+
#: core/core.php:1421
|
| 349 |
+
msgid "Filter ID not specified."
|
| 350 |
+
msgstr "Szűrőazonosító nincs meghatározva."
|
| 351 |
+
|
| 352 |
+
#: core/core.php:1428
|
| 353 |
+
msgid "Filter deleted"
|
| 354 |
+
msgstr "Szűrő törölve"
|
| 355 |
+
|
| 356 |
+
#: core/core.php:1475
|
| 357 |
+
msgid "Replaced %d redirect with a direct link"
|
| 358 |
+
msgid_plural "Replaced %d redirects with direct links"
|
| 359 |
+
msgstr[0] "%d átirányítás közvetlen hivatkozásra lett cserélve"
|
| 360 |
+
msgstr[1] "%d átirányítás közvetlen hivatkozásra lett cserélve"
|
| 361 |
+
|
| 362 |
+
#: core/core.php:1486
|
| 363 |
+
msgid "Failed to fix %d redirect"
|
| 364 |
+
msgid_plural "Failed to fix %d redirects"
|
| 365 |
+
msgstr[0] "%d átirányítás javítása nem sikerült"
|
| 366 |
+
msgstr[1] "%d átirányítás javítása nem sikerült"
|
| 367 |
+
|
| 368 |
+
#: core/core.php:1497
|
| 369 |
+
msgid "None of the selected links are redirects!"
|
| 370 |
+
msgstr "A kiválasztott hivatkozások egyike sem átirányítás!"
|
| 371 |
+
|
| 372 |
+
#: core/core.php:1575
|
| 373 |
+
msgid "%d link updated."
|
| 374 |
+
msgid_plural "%d links updated."
|
| 375 |
+
msgstr[0] "%d hivatkozás frissítve lett."
|
| 376 |
+
msgstr[1] "%d hivatkozás frissítve lett."
|
| 377 |
+
|
| 378 |
+
#: core/core.php:1586
|
| 379 |
+
msgid "Failed to update %d link."
|
| 380 |
+
msgid_plural "Failed to update %d links."
|
| 381 |
+
msgstr[0] "%d hivatkozás frissítése nem sikerült."
|
| 382 |
+
msgstr[1] "%d hivatkozás frissítése nem sikerült."
|
| 383 |
+
|
| 384 |
+
#: core/core.php:1640
|
| 385 |
+
msgid "%d link removed"
|
| 386 |
+
msgid_plural "%d links removed"
|
| 387 |
+
msgstr[0] "%d hivatkozás el lett távolítva"
|
| 388 |
+
msgstr[1] "%d hivatkozás el lett távolítva"
|
| 389 |
+
|
| 390 |
+
#: core/core.php:1651
|
| 391 |
+
msgid "Failed to remove %d link"
|
| 392 |
+
msgid_plural "Failed to remove %d links"
|
| 393 |
+
msgstr[0] "%d hivatkozás eltávolítása nem sikerült"
|
| 394 |
+
msgstr[1] "%d hivatkozás eltávolítása nem sikerült"
|
| 395 |
+
|
| 396 |
+
#: core/core.php:1760
|
| 397 |
+
msgid ""
|
| 398 |
+
"%d item was skipped because it can't be moved to the Trash. You need to "
|
| 399 |
+
"delete it manually."
|
| 400 |
+
msgid_plural ""
|
| 401 |
+
"%d items were skipped because they can't be moved to the Trash. You need to "
|
| 402 |
+
"delete them manually."
|
| 403 |
+
msgstr[0] ""
|
| 404 |
+
"%d elem ki lett hagyva, mert nem helyezhető át a Lomtárba. A törlést kézileg "
|
| 405 |
+
"kell elvégezni."
|
| 406 |
+
msgstr[1] ""
|
| 407 |
+
"%d elem ki lett hagyva, mert nem helyezhetők át a Lomtárba. A törlést "
|
| 408 |
+
"kézileg kell elvégezni."
|
| 409 |
+
|
| 410 |
+
#: core/core.php:1782
|
| 411 |
+
msgid "Didn't find anything to delete!"
|
| 412 |
+
msgstr "Nem található törlendő elem."
|
| 413 |
+
|
| 414 |
+
#: core/core.php:1810
|
| 415 |
+
msgid "%d link scheduled for rechecking"
|
| 416 |
+
msgid_plural "%d links scheduled for rechecking"
|
| 417 |
+
msgstr[0] "%d hivatkozás újraellenőrzése van beütemezve"
|
| 418 |
+
msgstr[1] "%d hivatkozás újraellenőrzése van beütemezve"
|
| 419 |
+
|
| 420 |
+
#: core/core.php:1856 core/core.php:2465
|
| 421 |
+
msgid "This link was manually marked as working by the user."
|
| 422 |
+
msgstr "Ezt a hivatkozást a felhasználó kézileg működőnek jelölte."
|
| 423 |
+
|
| 424 |
+
#: core/core.php:1863
|
| 425 |
+
msgid "Couldn't modify link %d"
|
| 426 |
+
msgstr "%d hivatkozás nem módosítható"
|
| 427 |
+
|
| 428 |
+
#: core/core.php:1873
|
| 429 |
+
msgid "%d link marked as not broken"
|
| 430 |
+
msgid_plural "%d links marked as not broken"
|
| 431 |
+
msgstr[0] "%d hivatkozás működőnek lett jelölve"
|
| 432 |
+
msgstr[1] "%d hivatkozás működőnek lett jelölve"
|
| 433 |
+
|
| 434 |
+
#: core/core.php:1913
|
| 435 |
+
msgid "Table columns"
|
| 436 |
+
msgstr "Táblázatoszlopok"
|
| 437 |
+
|
| 438 |
+
#: core/core.php:1932
|
| 439 |
+
msgid "Show on screen"
|
| 440 |
+
msgstr "Képernyőn való megjelenítés"
|
| 441 |
+
|
| 442 |
+
#: core/core.php:1939
|
| 443 |
+
msgid "links"
|
| 444 |
+
msgstr "hivatkozások"
|
| 445 |
+
|
| 446 |
+
#: core/core.php:1940 includes/admin/table-printer.php:165
|
| 447 |
+
msgid "Apply"
|
| 448 |
+
msgstr "Alkalmazás"
|
| 449 |
+
|
| 450 |
+
#: core/core.php:1944
|
| 451 |
+
msgid "Misc"
|
| 452 |
+
msgstr "Egyéb"
|
| 453 |
+
|
| 454 |
+
#: core/core.php:1959
|
| 455 |
+
msgid "Highlight links broken for at least %s days"
|
| 456 |
+
msgstr "Hivatkozások nem működőnek jelölése legalább %s napig"
|
| 457 |
+
|
| 458 |
+
#: core/core.php:1968
|
| 459 |
+
msgid "Color-code status codes"
|
| 460 |
+
msgstr "Színkódos állapotkódok"
|
| 461 |
+
|
| 462 |
+
#: core/core.php:1985 core/core.php:2450 core/core.php:2490 core/core.php:2523
|
| 463 |
+
#: core/core.php:2586
|
| 464 |
+
msgid "You're not allowed to do that!"
|
| 465 |
+
msgstr "Erre nem rendelkezik jogosultsággal!"
|
| 466 |
+
|
| 467 |
+
#: core/core.php:2320
|
| 468 |
+
msgid "View broken links"
|
| 469 |
+
msgstr "Nem működő hivatkozások megjelenítése"
|
| 470 |
+
|
| 471 |
+
#: core/core.php:2321
|
| 472 |
+
msgid "Found %d broken link"
|
| 473 |
+
msgid_plural "Found %d broken links"
|
| 474 |
+
msgstr[0] "A rendszer %d nem működő hivatkozást talált"
|
| 475 |
+
msgstr[1] "A rendszer %d nem működő hivatkozást talált"
|
| 476 |
+
|
| 477 |
+
#: core/core.php:2327
|
| 478 |
+
msgid "No broken links found."
|
| 479 |
+
msgstr "A rendszer nem talált nem működő hivatkozást."
|
| 480 |
+
|
| 481 |
+
#: core/core.php:2334
|
| 482 |
+
msgid "%d URL in the work queue"
|
| 483 |
+
msgid_plural "%d URLs in the work queue"
|
| 484 |
+
msgstr[0] "%d URL cím a munkasorban"
|
| 485 |
+
msgstr[1] "%d URL cím a munkasorban"
|
| 486 |
+
|
| 487 |
+
#: core/core.php:2337
|
| 488 |
+
msgid "No URLs in the work queue."
|
| 489 |
+
msgstr "Nincs URL cím a munkasorban."
|
| 490 |
+
|
| 491 |
+
#: core/core.php:2343
|
| 492 |
+
msgid "%d unique URL"
|
| 493 |
+
msgid_plural "%d unique URLs"
|
| 494 |
+
msgstr[0] "%d egyedi URL-cím"
|
| 495 |
+
msgstr[1] "%d egyedi URL-cím"
|
| 496 |
+
|
| 497 |
+
#: core/core.php:2347
|
| 498 |
+
msgid "%d link"
|
| 499 |
+
msgid_plural "%d links"
|
| 500 |
+
msgstr[0] "%d hivatkozás"
|
| 501 |
+
msgstr[1] "%d hivatkozás"
|
| 502 |
+
|
| 503 |
+
#: core/core.php:2353
|
| 504 |
+
msgid "Detected %1$s in %2$s and still searching..."
|
| 505 |
+
msgstr "%1$s/%2$s észlelve, és a keresésnek még nincs vége..."
|
| 506 |
+
|
| 507 |
+
#: core/core.php:2359
|
| 508 |
+
msgid "Detected %1$s in %2$s."
|
| 509 |
+
msgstr "%1$s/%2$s észlelve."
|
| 510 |
+
|
| 511 |
+
#: core/core.php:2366
|
| 512 |
+
msgid "Searching your blog for links..."
|
| 513 |
+
msgstr "Hivatkozáskeresés az Ön blogjában folyamatban..."
|
| 514 |
+
|
| 515 |
+
#: core/core.php:2368
|
| 516 |
+
msgid "No links detected."
|
| 517 |
+
msgstr "A rendszer nem talált hivatkozást."
|
| 518 |
+
|
| 519 |
+
#: core/core.php:2394
|
| 520 |
+
msgctxt "current load"
|
| 521 |
+
msgid "Unknown"
|
| 522 |
+
msgstr "Ismeretlen"
|
| 523 |
+
|
| 524 |
+
#: core/core.php:2458 core/core.php:2498 core/core.php:2533 core/core.php:2596
|
| 525 |
+
msgid "Oops, I can't find the link %d"
|
| 526 |
+
msgstr "Ajaj, a rendszer nem találja a következő hivatkozást: %d."
|
| 527 |
+
|
| 528 |
+
#: core/core.php:2471 core/core.php:2508
|
| 529 |
+
msgid "Oops, couldn't modify the link!"
|
| 530 |
+
msgstr "Ajaj, a hivatkozás nem módosítható!"
|
| 531 |
+
|
| 532 |
+
#: core/core.php:2474 core/core.php:2511 core/core.php:2622
|
| 533 |
+
msgid "Error : link_id not specified"
|
| 534 |
+
msgstr "Hiba: link_id nincs meghatározva"
|
| 535 |
+
|
| 536 |
+
#: core/core.php:2543
|
| 537 |
+
msgid "Oops, the new URL is invalid!"
|
| 538 |
+
msgstr "Ajaj, az új URL-cím érvénytelen!"
|
| 539 |
+
|
| 540 |
+
#: core/core.php:2554 core/core.php:2605
|
| 541 |
+
msgid "An unexpected error occured!"
|
| 542 |
+
msgstr "Váratlan hiba történt!"
|
| 543 |
+
|
| 544 |
+
#: core/core.php:2572
|
| 545 |
+
msgid "Error : link_id or new_url not specified"
|
| 546 |
+
msgstr "Hiba: link_id vagy new_url nincs meghatározva"
|
| 547 |
+
|
| 548 |
+
#: core/core.php:2631
|
| 549 |
+
msgid "You don't have sufficient privileges to access this information!"
|
| 550 |
+
msgstr "Nincs elegendő jogosultsága, hogy ehhez az információhoz hozzáférjen!"
|
| 551 |
+
|
| 552 |
+
#: core/core.php:2644
|
| 553 |
+
msgid "Error : link ID not specified"
|
| 554 |
+
msgstr "Hiba: hivatkozásazonosító nincs megadva"
|
| 555 |
+
|
| 556 |
+
#: core/core.php:2658
|
| 557 |
+
msgid "Failed to load link details (%s)"
|
| 558 |
+
msgstr "Hivatkozásrészletek (%s) betöltése nem sikerült"
|
| 559 |
+
|
| 560 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.8) #-#-#-#-#
|
| 561 |
+
#. Plugin Name of the plugin/theme
|
| 562 |
+
#: core/core.php:2712
|
| 563 |
+
msgid "Broken Link Checker"
|
| 564 |
+
msgstr "Broken Link Checker"
|
| 565 |
+
|
| 566 |
+
#: core/core.php:2732
|
| 567 |
+
msgid "PHP version"
|
| 568 |
+
msgstr "PHP verzió"
|
| 569 |
+
|
| 570 |
+
#: core/core.php:2738
|
| 571 |
+
msgid "MySQL version"
|
| 572 |
+
msgstr "MySQL verzió"
|
| 573 |
+
|
| 574 |
+
#: core/core.php:2751
|
| 575 |
+
msgid ""
|
| 576 |
+
"You have an old version of CURL. Redirect detection may not work properly."
|
| 577 |
+
msgstr ""
|
| 578 |
+
"Ön a CURL régi verziójával rendelkezik. Előfordulhat, hogy az "
|
| 579 |
+
"átirányításészlelés nem működik megfelelően."
|
| 580 |
+
|
| 581 |
+
#: core/core.php:2763 core/core.php:2779 core/core.php:2784
|
| 582 |
+
msgid "Not installed"
|
| 583 |
+
msgstr "Nincs telepítve"
|
| 584 |
+
|
| 585 |
+
#: core/core.php:2766
|
| 586 |
+
msgid "CURL version"
|
| 587 |
+
msgstr "CURL verzió"
|
| 588 |
+
|
| 589 |
+
#: core/core.php:2772
|
| 590 |
+
msgid "Installed"
|
| 591 |
+
msgstr "Telepítve"
|
| 592 |
+
|
| 593 |
+
#: core/core.php:2785
|
| 594 |
+
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
| 595 |
+
msgstr ""
|
| 596 |
+
"A bővítmény működéséhez a CURL vagy Snoopy programnak telepítve kell lennie."
|
| 597 |
+
|
| 598 |
+
#: core/core.php:2796
|
| 599 |
+
msgid "On"
|
| 600 |
+
msgstr "Be"
|
| 601 |
+
|
| 602 |
+
#: core/core.php:2797
|
| 603 |
+
msgid "Redirects may be detected as broken links when safe_mode is on."
|
| 604 |
+
msgstr ""
|
| 605 |
+
"Ha a safe_mode be van kapcsolva, a rendszer az átirányításokat nem működő "
|
| 606 |
+
"hivatkozásként értelmezi."
|
| 607 |
+
|
| 608 |
+
#: core/core.php:2802 core/core.php:2816
|
| 609 |
+
msgid "Off"
|
| 610 |
+
msgstr "Ki"
|
| 611 |
+
|
| 612 |
+
#: core/core.php:2810
|
| 613 |
+
msgid "On ( %s )"
|
| 614 |
+
msgstr "Be ( %s )"
|
| 615 |
+
|
| 616 |
+
#: core/core.php:2811
|
| 617 |
+
msgid "Redirects may be detected as broken links when open_basedir is on."
|
| 618 |
+
msgstr ""
|
| 619 |
+
"Ha az open_basedir be van kapcsolva, a rendszer az átirányításokat nem "
|
| 620 |
+
"működő hivatkozásként értelmezi."
|
| 621 |
+
|
| 622 |
+
#: core/core.php:2840
|
| 623 |
+
msgid ""
|
| 624 |
+
"If this value is zero even after several page reloads you have probably "
|
| 625 |
+
"encountered a bug."
|
| 626 |
+
msgstr ""
|
| 627 |
+
"Ha ez az érték több újratöltés után is nulla, valószínűleg hiba történt."
|
| 628 |
+
|
| 629 |
+
#: core/core.php:2935 core/core.php:3033
|
| 630 |
+
msgid "[%s] Broken links detected"
|
| 631 |
+
msgstr "[%s] A rendszer nem működő hivatkozást talált"
|
| 632 |
+
|
| 633 |
+
#: core/core.php:2940
|
| 634 |
+
msgid "Broken Link Checker has detected %d new broken link on your site."
|
| 635 |
+
msgid_plural ""
|
| 636 |
+
"Broken Link Checker has detected %d new broken links on your site."
|
| 637 |
+
msgstr[0] ""
|
| 638 |
+
"A Broken Link Checker %d új nem működő hivatkozást észlelt az Ön oldalán."
|
| 639 |
+
msgstr[1] ""
|
| 640 |
+
"A Broken Link Checker %d új nem működő hivatkozást észlelt az Ön oldalán."
|
| 641 |
+
|
| 642 |
+
#: core/core.php:2963
|
| 643 |
+
msgid "Here's a list of the first %d broken links:"
|
| 644 |
+
msgid_plural "Here's a list of the first %d broken links:"
|
| 645 |
+
msgstr[0] "Íme az első %d nem működő hivatkozást tartalmazó lista:"
|
| 646 |
+
msgstr[1] "Íme az első %d nem működő hivatkozást tartalmazó lista:"
|
| 647 |
+
|
| 648 |
+
#: core/core.php:2972
|
| 649 |
+
msgid "Here's a list of the new broken links: "
|
| 650 |
+
msgstr "Íme az új nem működő hivatkozások listája: "
|
| 651 |
+
|
| 652 |
+
#: core/core.php:2981
|
| 653 |
+
msgid "Link text : %s"
|
| 654 |
+
msgstr "Hivatkozásszöveg: %s"
|
| 655 |
+
|
| 656 |
+
#: core/core.php:2982
|
| 657 |
+
msgid "Link URL : <a href=\"%s\">%s</a>"
|
| 658 |
+
msgstr "Hivatkozás URL-címe: <a href=\"%s\">%s</a>"
|
| 659 |
+
|
| 660 |
+
#: core/core.php:2983
|
| 661 |
+
msgid "Source : %s"
|
| 662 |
+
msgstr "Forrás: %s"
|
| 663 |
+
|
| 664 |
+
#: core/core.php:2996
|
| 665 |
+
msgid "You can see all broken links here:"
|
| 666 |
+
msgstr "Az összes nem működő hivatkozást itt tekintheti meg:"
|
| 667 |
+
|
| 668 |
+
#: core/core.php:3038
|
| 669 |
+
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
| 670 |
+
msgid_plural ""
|
| 671 |
+
"Broken Link Checker has detected %d new broken links in your posts."
|
| 672 |
+
msgstr[0] ""
|
| 673 |
+
"A Broken Link Checker %d új nem működő hivatkozást észlelt az Ön "
|
| 674 |
+
"bejegyzésében."
|
| 675 |
+
msgstr[1] ""
|
| 676 |
+
"A Broken Link Checker %d új nem működő hivatkozást észlelt az Ön "
|
| 677 |
+
"bejegyzésében."
|
| 678 |
+
|
| 679 |
+
#: core/init.php:240
|
| 680 |
+
msgid "Once Weekly"
|
| 681 |
+
msgstr "Heti egyszer"
|
| 682 |
+
|
| 683 |
+
#: core/init.php:246
|
| 684 |
+
msgid "Twice a Month"
|
| 685 |
+
msgstr "Havonta kétszer"
|
| 686 |
+
|
| 687 |
+
#: core/init.php:322
|
| 688 |
+
msgid ""
|
| 689 |
+
"Broken Link Checker installation failed. Try deactivating and then "
|
| 690 |
+
"reactivating the plugin."
|
| 691 |
+
msgstr ""
|
| 692 |
+
"A Broken Link Checker telepítése nem sikerült. Próbálja meg inaktiválni, "
|
| 693 |
+
"majd újraaktiválni a bővítményt."
|
| 694 |
+
|
| 695 |
+
#: includes/admin/db-upgrade.php:95
|
| 696 |
+
msgid "Failed to delete old DB tables. Database error : %s"
|
| 697 |
+
msgstr "A régi adatbázis-táblázatok törlése nem sikerült. Adatbázishiba: %s"
|
| 698 |
+
|
| 699 |
+
#: includes/admin/links-page-js.php:55 includes/admin/links-page-js.php:403
|
| 700 |
+
msgid "Wait..."
|
| 701 |
+
msgstr "Várjon..."
|
| 702 |
+
|
| 703 |
+
#: includes/admin/links-page-js.php:100 includes/admin/table-printer.php:630
|
| 704 |
+
msgid "Not broken"
|
| 705 |
+
msgstr "Működik"
|
| 706 |
+
|
| 707 |
+
#: includes/admin/links-page-js.php:315
|
| 708 |
+
msgid "%d instances of the link were successfully modified."
|
| 709 |
+
msgstr "A hivatkozás %d példánya sikeresen módosítva lett."
|
| 710 |
+
|
| 711 |
+
#: includes/admin/links-page-js.php:321
|
| 712 |
+
msgid ""
|
| 713 |
+
"However, %d instances couldn't be edited and still point to the old URL."
|
| 714 |
+
msgstr ""
|
| 715 |
+
"%d példány azonban nem volt szerkeszthető, és továbbra is a régi URL-címre "
|
| 716 |
+
"mutat."
|
| 717 |
+
|
| 718 |
+
#: includes/admin/links-page-js.php:327
|
| 719 |
+
msgid "The link could not be modified."
|
| 720 |
+
msgstr "A hivatkozás nem módosítható."
|
| 721 |
+
|
| 722 |
+
#: includes/admin/links-page-js.php:330 includes/admin/links-page-js.php:455
|
| 723 |
+
msgid "The following error(s) occured :"
|
| 724 |
+
msgstr "A következő hiba történt:"
|
| 725 |
+
|
| 726 |
+
#: includes/admin/links-page-js.php:441
|
| 727 |
+
msgid "%d instances of the link were successfully unlinked."
|
| 728 |
+
msgstr "A hivatkozás %d példánya sikeresen hivatkozásmentesítve lett."
|
| 729 |
+
|
| 730 |
+
#: includes/admin/links-page-js.php:447
|
| 731 |
+
msgid "However, %d instances couldn't be removed."
|
| 732 |
+
msgstr "%d példány azonban nem volt eltávolítható."
|
| 733 |
+
|
| 734 |
+
#: includes/admin/links-page-js.php:452
|
| 735 |
+
msgid "The plugin failed to remove the link."
|
| 736 |
+
msgstr "A bővítménynek nem sikerült eltávolítania a hivatkozást."
|
| 737 |
+
|
| 738 |
+
#: includes/admin/links-page-js.php:463 includes/admin/table-printer.php:273
|
| 739 |
+
#: includes/admin/table-printer.php:624
|
| 740 |
+
msgid "Unlink"
|
| 741 |
+
msgstr "Hivatkozásmentesítés"
|
| 742 |
+
|
| 743 |
+
#: includes/admin/links-page-js.php:507
|
| 744 |
+
msgid "Enter a name for the new custom filter"
|
| 745 |
+
msgstr "Írjon be nevet az új egyedi szűrőnek"
|
| 746 |
+
|
| 747 |
+
#: includes/admin/links-page-js.php:518
|
| 748 |
+
msgid ""
|
| 749 |
+
"You are about to delete the current filter.\n"
|
| 750 |
+
"'Cancel' to stop, 'OK' to delete"
|
| 751 |
+
msgstr ""
|
| 752 |
+
"Ön az aktuális szűrő törlésére készül.\n"
|
| 753 |
+
"A megszakításhoz kattintson a \"Mégse\", a törléshez az \"OK\" lehetőségre."
|
| 754 |
+
|
| 755 |
+
#: includes/admin/links-page-js.php:538
|
| 756 |
+
msgid ""
|
| 757 |
+
"Are you sure you want to delete all posts, bookmarks or other items that "
|
| 758 |
+
"contain any of the selected links? This action can't be undone.\n"
|
| 759 |
+
"'Cancel' to stop, 'OK' to delete"
|
| 760 |
+
msgstr ""
|
| 761 |
+
"Biztos, hogy törölni szeretne minden bejegyzést, könyvjelzőt vagy egyéb "
|
| 762 |
+
"olyan elemet, mely a kiválasztott hivatkozások bármelyikét tartalmazza? Ez a "
|
| 763 |
+
"művelet nem visszavonható.\n"
|
| 764 |
+
"A megszakításhoz kattintson a \"Mégse\", a törléshez az \"OK\" lehetőségre."
|
| 765 |
+
|
| 766 |
+
#: includes/admin/links-page-js.php:548
|
| 767 |
+
msgid ""
|
| 768 |
+
"Are you sure you want to remove the selected links? This action can't be "
|
| 769 |
+
"undone.\n"
|
| 770 |
+
"'Cancel' to stop, 'OK' to remove"
|
| 771 |
+
msgstr ""
|
| 772 |
+
"Biztos, hogy törölni szeretné a kiválasztott hivatkozásokat? Ez a művelet "
|
| 773 |
+
"nem visszavonható.\n"
|
| 774 |
+
"A megszakításhoz kattintson a \"Mégse\", az eltávolításhoz az \"OK\" "
|
| 775 |
+
"lehetőségre."
|
| 776 |
+
|
| 777 |
+
#: includes/admin/links-page-js.php:657
|
| 778 |
+
msgid "Enter a search string first."
|
| 779 |
+
msgstr "Először írja be a keresett karakterláncot."
|
| 780 |
+
|
| 781 |
+
#: includes/admin/links-page-js.php:664
|
| 782 |
+
msgid "Select one or more links to edit."
|
| 783 |
+
msgstr "Válasszon ki egy vagy több szerkesztendő hivatkozást."
|
| 784 |
+
|
| 785 |
+
#: includes/admin/options-page-js.php:54
|
| 786 |
+
msgid "Hide debug info"
|
| 787 |
+
msgstr "Hibakeresési adatok elrejtése"
|
| 788 |
+
|
| 789 |
+
#: includes/admin/search-form.php:16
|
| 790 |
+
msgid "Save This Search As a Filter"
|
| 791 |
+
msgstr "Aktuális keresés elmentése szűrőként"
|
| 792 |
+
|
| 793 |
+
#: includes/admin/search-form.php:26
|
| 794 |
+
msgid "Delete This Filter"
|
| 795 |
+
msgstr "Aktuális szűrő törlése"
|
| 796 |
+
|
| 797 |
+
#: includes/admin/search-form.php:32 includes/link-query.php:65
|
| 798 |
+
msgid "Search"
|
| 799 |
+
msgstr "Keresés"
|
| 800 |
+
|
| 801 |
+
#: includes/admin/search-form.php:42
|
| 802 |
+
msgid "Link text"
|
| 803 |
+
msgstr "Hivatkozásszöveg"
|
| 804 |
+
|
| 805 |
+
#: includes/admin/search-form.php:45 includes/admin/table-printer.php:202
|
| 806 |
+
msgid "URL"
|
| 807 |
+
msgstr "URL-cím"
|
| 808 |
+
|
| 809 |
+
#: includes/admin/search-form.php:48 includes/admin/table-printer.php:491
|
| 810 |
+
msgid "HTTP code"
|
| 811 |
+
msgstr "HTTP-kód"
|
| 812 |
+
|
| 813 |
+
#: includes/admin/search-form.php:51
|
| 814 |
+
msgid "Link status"
|
| 815 |
+
msgstr "Hivatkozásállapot"
|
| 816 |
+
|
| 817 |
+
#: includes/admin/search-form.php:68 includes/admin/search-form.php:85
|
| 818 |
+
msgid "Link type"
|
| 819 |
+
msgstr "Hivatkozástípus"
|
| 820 |
+
|
| 821 |
+
#: includes/admin/search-form.php:70
|
| 822 |
+
msgid "Any"
|
| 823 |
+
msgstr "Bármilyen"
|
| 824 |
+
|
| 825 |
+
#: includes/admin/search-form.php:74
|
| 826 |
+
msgid "Links used in"
|
| 827 |
+
msgstr "Hivatkozások használati helye"
|
| 828 |
+
|
| 829 |
+
#: includes/admin/search-form.php:112
|
| 830 |
+
msgid "Search Links"
|
| 831 |
+
msgstr "Hivatkozások keresése"
|
| 832 |
+
|
| 833 |
+
#: includes/admin/search-form.php:113 includes/admin/table-printer.php:349
|
| 834 |
+
#: includes/admin/table-printer.php:652 includes/admin/table-printer.php:658
|
| 835 |
+
msgid "Cancel"
|
| 836 |
+
msgstr "Mégse"
|
| 837 |
+
|
| 838 |
+
#: includes/admin/sidebar.php:24
|
| 839 |
+
msgid "More plugins by Janis Elsts"
|
| 840 |
+
msgstr "További bővítmények Janis Elsts-től"
|
| 841 |
+
|
| 842 |
+
#: includes/admin/sidebar.php:47
|
| 843 |
+
msgid "Donate $10, $20 or $50!"
|
| 844 |
+
msgstr "Adományozzon 10, 20 vagy 50 dollárt!"
|
| 845 |
+
|
| 846 |
+
#: includes/admin/sidebar.php:50
|
| 847 |
+
msgid ""
|
| 848 |
+
"If you like this plugin, please donate to support development and "
|
| 849 |
+
"maintenance!"
|
| 850 |
+
msgstr ""
|
| 851 |
+
"Ha tetszett ez a bővítmény, kérjük, adományozzon a fejlesztésére és "
|
| 852 |
+
"karbantartására!"
|
| 853 |
+
|
| 854 |
+
#: includes/admin/sidebar.php:68
|
| 855 |
+
msgid "Return to WordPress Dashboard"
|
| 856 |
+
msgstr "Vissza a WordPress kezelőpultjára"
|
| 857 |
+
|
| 858 |
+
#: includes/admin/table-printer.php:179
|
| 859 |
+
msgid "Compact View"
|
| 860 |
+
msgstr "Kis méretű nézet"
|
| 861 |
+
|
| 862 |
+
#: includes/admin/table-printer.php:180
|
| 863 |
+
msgid "Detailed View"
|
| 864 |
+
msgstr "Részletes nézet"
|
| 865 |
+
|
| 866 |
+
#: includes/admin/table-printer.php:209
|
| 867 |
+
msgid "Source"
|
| 868 |
+
msgstr "Forrás"
|
| 869 |
+
|
| 870 |
+
#: includes/admin/table-printer.php:215
|
| 871 |
+
msgid "Link Text"
|
| 872 |
+
msgstr "Hivatkozásszöveg"
|
| 873 |
+
|
| 874 |
+
#: includes/admin/table-printer.php:220
|
| 875 |
+
msgid "Redirect URL"
|
| 876 |
+
msgstr "Átirányítás URL-címe"
|
| 877 |
+
|
| 878 |
+
#: includes/admin/table-printer.php:268
|
| 879 |
+
msgid "Bulk Actions"
|
| 880 |
+
msgstr "Tömeges végrehajtások"
|
| 881 |
+
|
| 882 |
+
#: includes/admin/table-printer.php:269 includes/admin/table-printer.php:621
|
| 883 |
+
msgid "Edit URL"
|
| 884 |
+
msgstr "URL-cím szerkesztése"
|
| 885 |
+
|
| 886 |
+
#: includes/admin/table-printer.php:270
|
| 887 |
+
msgid "Recheck"
|
| 888 |
+
msgstr "Újraellenőrzés"
|
| 889 |
+
|
| 890 |
+
#: includes/admin/table-printer.php:271
|
| 891 |
+
msgid "Fix redirects"
|
| 892 |
+
msgstr "Átirányítások javítása"
|
| 893 |
+
|
| 894 |
+
#: includes/admin/table-printer.php:272
|
| 895 |
+
msgid "Mark as not broken"
|
| 896 |
+
msgstr "Működőnek jelölés"
|
| 897 |
+
|
| 898 |
+
#: includes/admin/table-printer.php:276
|
| 899 |
+
msgid "Move sources to Trash"
|
| 900 |
+
msgstr "Források Lomtárba helyezése"
|
| 901 |
+
|
| 902 |
+
#: includes/admin/table-printer.php:278
|
| 903 |
+
msgid "Delete sources"
|
| 904 |
+
msgstr "Források törlése"
|
| 905 |
+
|
| 906 |
+
#: includes/admin/table-printer.php:293
|
| 907 |
+
msgid "«"
|
| 908 |
+
msgstr "«"
|
| 909 |
+
|
| 910 |
+
#: includes/admin/table-printer.php:294
|
| 911 |
+
msgid "»"
|
| 912 |
+
msgstr "»"
|
| 913 |
+
|
| 914 |
+
#: includes/admin/table-printer.php:302
|
| 915 |
+
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
| 916 |
+
msgstr ""
|
| 917 |
+
"%s–%s / <span class=\"current-link-count\">%s</span> megjelenítése"
|
| 918 |
+
|
| 919 |
+
#: includes/admin/table-printer.php:325
|
| 920 |
+
msgid "Bulk Edit URLs"
|
| 921 |
+
msgstr "Tömeges szerkesztés URL-címei"
|
| 922 |
+
|
| 923 |
+
#: includes/admin/table-printer.php:327
|
| 924 |
+
msgid "Find"
|
| 925 |
+
msgstr "Keresés"
|
| 926 |
+
|
| 927 |
+
#: includes/admin/table-printer.php:331
|
| 928 |
+
msgid "Replace with"
|
| 929 |
+
msgstr "Csere erre"
|
| 930 |
+
|
| 931 |
+
#: includes/admin/table-printer.php:339
|
| 932 |
+
msgid "Case sensitive"
|
| 933 |
+
msgstr "Kis- és nagybetűk megkülönböztetése"
|
| 934 |
+
|
| 935 |
+
#: includes/admin/table-printer.php:343
|
| 936 |
+
msgid "Regular expression"
|
| 937 |
+
msgstr "Reguláris kifejezés"
|
| 938 |
+
|
| 939 |
+
#: includes/admin/table-printer.php:351
|
| 940 |
+
msgid "Update"
|
| 941 |
+
msgstr "Frissítés"
|
| 942 |
+
|
| 943 |
+
#: includes/admin/table-printer.php:476
|
| 944 |
+
msgid "Post published on"
|
| 945 |
+
msgstr "Bejegyzés közzétételének dátuma:"
|
| 946 |
+
|
| 947 |
+
#: includes/admin/table-printer.php:481
|
| 948 |
+
msgid "Link last checked"
|
| 949 |
+
msgstr "Hivatkozás utolsó ellenőrzésének ideje"
|
| 950 |
+
|
| 951 |
+
#: includes/admin/table-printer.php:485
|
| 952 |
+
msgid "Never"
|
| 953 |
+
msgstr "Soha"
|
| 954 |
+
|
| 955 |
+
#: includes/admin/table-printer.php:496
|
| 956 |
+
msgid "Response time"
|
| 957 |
+
msgstr "Válaszidő"
|
| 958 |
+
|
| 959 |
+
#: includes/admin/table-printer.php:498
|
| 960 |
+
msgid "%2.3f seconds"
|
| 961 |
+
msgstr "%2.3f másodperc"
|
| 962 |
+
|
| 963 |
+
#: includes/admin/table-printer.php:501
|
| 964 |
+
msgid "Final URL"
|
| 965 |
+
msgstr "Végső URL-cím"
|
| 966 |
+
|
| 967 |
+
#: includes/admin/table-printer.php:506
|
| 968 |
+
msgid "Redirect count"
|
| 969 |
+
msgstr "Átirányítás száma"
|
| 970 |
+
|
| 971 |
+
#: includes/admin/table-printer.php:511
|
| 972 |
+
msgid "Instance count"
|
| 973 |
+
msgstr "Példány száma"
|
| 974 |
+
|
| 975 |
+
#: includes/admin/table-printer.php:520
|
| 976 |
+
msgid "This link has failed %d time."
|
| 977 |
+
msgid_plural "This link has failed %d times."
|
| 978 |
+
msgstr[0] "Ez a hivatkozás %d alkalommal volt hibás."
|
| 979 |
+
msgstr[1] "Ez a hivatkozás %d alkalommal volt hibás."
|
| 980 |
+
|
| 981 |
+
#: includes/admin/table-printer.php:528
|
| 982 |
+
msgid "This link has been broken for %s."
|
| 983 |
+
msgstr "Ez a hivatkozás %s ideje nem működik."
|
| 984 |
+
|
| 985 |
+
#: includes/admin/table-printer.php:539
|
| 986 |
+
msgid "Log"
|
| 987 |
+
msgstr "Napló"
|
| 988 |
+
|
| 989 |
+
#: includes/admin/table-printer.php:564
|
| 990 |
+
msgid "Show more info about this link"
|
| 991 |
+
msgstr "További részletek mutatása az aktuális hivatkozásról"
|
| 992 |
+
|
| 993 |
+
#: includes/admin/table-printer.php:582
|
| 994 |
+
msgid "Checked"
|
| 995 |
+
msgstr "Ellenőrizve"
|
| 996 |
+
|
| 997 |
+
#: includes/admin/table-printer.php:598
|
| 998 |
+
msgid "Broken for"
|
| 999 |
+
msgstr "Nem működik ennyi ideje:"
|
| 1000 |
+
|
| 1001 |
+
#: includes/admin/table-printer.php:621
|
| 1002 |
+
msgid "Edit link URL"
|
| 1003 |
+
msgstr "Hivatkozás URL-címének szerkesztése"
|
| 1004 |
+
|
| 1005 |
+
#: includes/admin/table-printer.php:623
|
| 1006 |
+
msgid "Remove this link from all posts"
|
| 1007 |
+
msgstr "Aktuális hivatkozás eltávolítása az összes bejegyzésből"
|
| 1008 |
+
|
| 1009 |
+
#: includes/admin/table-printer.php:629
|
| 1010 |
+
msgid "Remove this link from the list of broken links and mark it as valid"
|
| 1011 |
+
msgstr ""
|
| 1012 |
+
"Aktuális hivatkozás eltávolítása a nem működő hivatkozások listájáról, és "
|
| 1013 |
+
"megjelölése érvényesként"
|
| 1014 |
+
|
| 1015 |
+
#: includes/admin/table-printer.php:637
|
| 1016 |
+
msgid "Hide this link and do not report it again unless its status changes"
|
| 1017 |
+
msgstr ""
|
| 1018 |
+
"Aktuális hivatkozás elrejtése és újbóli jelentésének szüneteltetése annak "
|
| 1019 |
+
"állapotváltozásáig"
|
| 1020 |
+
|
| 1021 |
+
#: includes/admin/table-printer.php:638
|
| 1022 |
+
msgid "Dismiss"
|
| 1023 |
+
msgstr "Elvetés"
|
| 1024 |
+
|
| 1025 |
+
#: includes/admin/table-printer.php:643
|
| 1026 |
+
msgid "Undismiss this link"
|
| 1027 |
+
msgstr "Aktuális hivatkozás elvetésének megszüntetése"
|
| 1028 |
+
|
| 1029 |
+
#: includes/admin/table-printer.php:644
|
| 1030 |
+
msgid "Undismiss"
|
| 1031 |
+
msgstr "Elvetés megszüntetése"
|
| 1032 |
+
|
| 1033 |
+
#: includes/admin/table-printer.php:652
|
| 1034 |
+
msgid "Cancel URL editing"
|
| 1035 |
+
msgstr "URL-szerkesztés megszakítása"
|
| 1036 |
+
|
| 1037 |
+
#: includes/admin/table-printer.php:659
|
| 1038 |
+
msgid "Update URL"
|
| 1039 |
+
msgstr "URL-cím frissítése"
|
| 1040 |
+
|
| 1041 |
+
#: includes/admin/table-printer.php:686
|
| 1042 |
+
msgid "[An orphaned link! This is a bug.]"
|
| 1043 |
+
msgstr "[Árva hivatkozás! Ez egy hiba.]"
|
| 1044 |
+
|
| 1045 |
+
#: includes/any-post.php:397 modules/containers/blogroll.php:46
|
| 1046 |
+
#: modules/containers/comment.php:153 modules/containers/custom_field.php:197
|
| 1047 |
+
msgid "Edit"
|
| 1048 |
+
msgstr "Szerkesztés"
|
| 1049 |
+
|
| 1050 |
+
#: includes/any-post.php:405 modules/containers/custom_field.php:203
|
| 1051 |
+
msgid "Move this item to the Trash"
|
| 1052 |
+
msgstr "Aktuális elem Lomtárba helyezése"
|
| 1053 |
+
|
| 1054 |
+
#: includes/any-post.php:407 modules/containers/custom_field.php:205
|
| 1055 |
+
msgid "Trash"
|
| 1056 |
+
msgstr "Lomtár"
|
| 1057 |
+
|
| 1058 |
+
#: includes/any-post.php:412 modules/containers/custom_field.php:210
|
| 1059 |
+
msgid "Delete this item permanently"
|
| 1060 |
+
msgstr "Aktuális elem végleges törlése"
|
| 1061 |
+
|
| 1062 |
+
#: includes/any-post.php:414 modules/containers/blogroll.php:47
|
| 1063 |
+
#: modules/containers/custom_field.php:212
|
| 1064 |
+
msgid "Delete"
|
| 1065 |
+
msgstr "Törlés"
|
| 1066 |
+
|
| 1067 |
+
#: includes/any-post.php:427
|
| 1068 |
+
msgid "Preview “%s”"
|
| 1069 |
+
msgstr "“%s” megjelenítése"
|
| 1070 |
+
|
| 1071 |
+
#: includes/any-post.php:428
|
| 1072 |
+
msgid "Preview"
|
| 1073 |
+
msgstr "Megjelenítés"
|
| 1074 |
+
|
| 1075 |
+
#: includes/any-post.php:435
|
| 1076 |
+
msgid "View “%s”"
|
| 1077 |
+
msgstr "“%s” megtekintése"
|
| 1078 |
+
|
| 1079 |
+
#: includes/any-post.php:436 modules/containers/comment.php:166
|
| 1080 |
+
#: modules/containers/custom_field.php:217
|
| 1081 |
+
msgid "View"
|
| 1082 |
+
msgstr "Megtekintés"
|
| 1083 |
+
|
| 1084 |
+
#: includes/any-post.php:455 modules/containers/custom_field.php:197
|
| 1085 |
+
msgid "Edit this item"
|
| 1086 |
+
msgstr "Aktuális elem szerkesztése"
|
| 1087 |
+
|
| 1088 |
+
#: includes/any-post.php:519 modules/containers/blogroll.php:83
|
| 1089 |
+
#: modules/containers/comment.php:43
|
| 1090 |
+
msgid "Nothing to update"
|
| 1091 |
+
msgstr "Nincs mit frissíteni"
|
| 1092 |
+
|
| 1093 |
+
#: includes/any-post.php:529
|
| 1094 |
+
msgid "Updating post %d failed"
|
| 1095 |
+
msgstr "A(z) %d bejegyzés frissítése nem sikerült"
|
| 1096 |
+
|
| 1097 |
+
#: includes/any-post.php:566 modules/containers/custom_field.php:284
|
| 1098 |
+
msgid "Failed to delete post \"%s\" (%d)"
|
| 1099 |
+
msgstr "A(z) \"%s\" bejegyzés törlése (%d) nem sikerült"
|
| 1100 |
+
|
| 1101 |
+
#: includes/any-post.php:585 modules/containers/custom_field.php:303
|
| 1102 |
+
msgid ""
|
| 1103 |
+
"Can't move post \"%s\" (%d) to the trash because the trash feature is "
|
| 1104 |
+
"disabled"
|
| 1105 |
+
msgstr ""
|
| 1106 |
+
"A(z) \"%s\" bejegyzés Lomtárba való áthelyezése (%d) nem sikerült, mert a "
|
| 1107 |
+
"Lomtár funkció le van tiltva"
|
| 1108 |
+
|
| 1109 |
+
#: includes/any-post.php:605 modules/containers/custom_field.php:322
|
| 1110 |
+
msgid "Failed to move post \"%s\" (%d) to the trash"
|
| 1111 |
+
msgstr "A(z) \"%s\" bejegyzés Lomtárba való áthelyezése (%d) nem sikerült"
|
| 1112 |
+
|
| 1113 |
+
#: includes/any-post.php:713
|
| 1114 |
+
msgid "%d post deleted."
|
| 1115 |
+
msgid_plural "%d posts deleted."
|
| 1116 |
+
msgstr[0] "A rendszer %d bejegyzést törölt."
|
| 1117 |
+
msgstr[1] "A rendszer %d bejegyzést törölt."
|
| 1118 |
+
|
| 1119 |
+
#: includes/any-post.php:715
|
| 1120 |
+
msgid "%d page deleted."
|
| 1121 |
+
msgid_plural "%d pages deleted."
|
| 1122 |
+
msgstr[0] "A rendszer %d oldalt törölt."
|
| 1123 |
+
msgstr[1] "A rendszer %d oldalt törölt."
|
| 1124 |
+
|
| 1125 |
+
#: includes/any-post.php:717
|
| 1126 |
+
msgid "%d \"%s\" deleted."
|
| 1127 |
+
msgid_plural "%d \"%s\" deleted."
|
| 1128 |
+
msgstr[0] "A rendszer %d \"%s\" elemet törölt."
|
| 1129 |
+
msgstr[1] "A rendszer %d \"%s\" elemet törölt."
|
| 1130 |
+
|
| 1131 |
+
#: includes/any-post.php:736
|
| 1132 |
+
msgid "%d post moved to the Trash."
|
| 1133 |
+
msgid_plural "%d posts moved to the Trash."
|
| 1134 |
+
msgstr[0] "A rendszer %d bejegyzést helyezett át a Lomtárba."
|
| 1135 |
+
msgstr[1] "A rendszer %d bejegyzést helyezett át a Lomtárba."
|
| 1136 |
+
|
| 1137 |
+
#: includes/any-post.php:738
|
| 1138 |
+
msgid "%d page moved to the Trash."
|
| 1139 |
+
msgid_plural "%d pages moved to the Trash."
|
| 1140 |
+
msgstr[0] "A rendszer %d oldalt helyezett át a Lomtárba."
|
| 1141 |
+
msgstr[1] "A rendszer %d oldalt helyezett át a Lomtárba."
|
| 1142 |
+
|
| 1143 |
+
#: includes/any-post.php:740
|
| 1144 |
+
msgid "%d \"%s\" moved to the Trash."
|
| 1145 |
+
msgid_plural "%d \"%s\" moved to the Trash."
|
| 1146 |
+
msgstr[0] "A rendszer %d \"%s\" elemet helyezett át a Lomtárba."
|
| 1147 |
+
msgstr[1] "A rendszer %d \"%s\" elemet helyezett át a Lomtárba."
|
| 1148 |
+
|
| 1149 |
+
#: includes/containers.php:122
|
| 1150 |
+
msgid "%d '%s' has been deleted"
|
| 1151 |
+
msgid_plural "%d '%s' have been deleted"
|
| 1152 |
+
msgstr[0] "A rendszer %d \"%s\" elemet törölt"
|
| 1153 |
+
msgstr[1] "A rendszer %d \"%s\" elemet törölt"
|
| 1154 |
+
|
| 1155 |
+
#: includes/containers.php:873 includes/containers.php:891
|
| 1156 |
+
msgid "Container type '%s' not recognized"
|
| 1157 |
+
msgstr "A(z) \"%s\" tárolótípust a rendszer nem ismeri fel"
|
| 1158 |
+
|
| 1159 |
+
#: includes/extra-strings.php:2
|
| 1160 |
+
msgid "Basic HTTP"
|
| 1161 |
+
msgstr "Alap HTTP"
|
| 1162 |
+
|
| 1163 |
+
#: includes/extra-strings.php:3
|
| 1164 |
+
msgid "Blogroll items"
|
| 1165 |
+
msgstr "Blogroll elemek"
|
| 1166 |
+
|
| 1167 |
+
#: includes/extra-strings.php:4
|
| 1168 |
+
msgid "Comments"
|
| 1169 |
+
msgstr "Megjegyzések"
|
| 1170 |
+
|
| 1171 |
+
#: includes/extra-strings.php:5
|
| 1172 |
+
msgid "Custom fields"
|
| 1173 |
+
msgstr "Egyedi mezők"
|
| 1174 |
+
|
| 1175 |
+
#: includes/extra-strings.php:6
|
| 1176 |
+
msgid "Embedded DailyMotion videos"
|
| 1177 |
+
msgstr "Beágyazott DailyMotion videók"
|
| 1178 |
+
|
| 1179 |
+
#: includes/extra-strings.php:7
|
| 1180 |
+
msgid "Embedded GoogleVideo videos"
|
| 1181 |
+
msgstr "Beágyazott GoogleVideo videók"
|
| 1182 |
+
|
| 1183 |
+
#: includes/extra-strings.php:8
|
| 1184 |
+
msgid "Embedded Megavideo videos"
|
| 1185 |
+
msgstr "Beágyazott Megavideo videók"
|
| 1186 |
+
|
| 1187 |
+
#: includes/extra-strings.php:9
|
| 1188 |
+
msgid "Embedded Vimeo videos"
|
| 1189 |
+
msgstr "Beágyazott Vimeo videók"
|
| 1190 |
+
|
| 1191 |
+
#: includes/extra-strings.php:10
|
| 1192 |
+
msgid "Embedded YouTube playlists (old embed code)"
|
| 1193 |
+
msgstr "Beágyazott YouTube lejátszási listák (régi beágyazási kód)"
|
| 1194 |
+
|
| 1195 |
+
#: includes/extra-strings.php:11
|
| 1196 |
+
msgid "Embedded YouTube videos"
|
| 1197 |
+
msgstr "Beágyazott YouTube videók"
|
| 1198 |
+
|
| 1199 |
+
#: includes/extra-strings.php:12
|
| 1200 |
+
msgid "Embedded YouTube videos (old embed code)"
|
| 1201 |
+
msgstr "Beágyazott YouTube videók (régi beágyazási kód)"
|
| 1202 |
+
|
| 1203 |
+
#: includes/extra-strings.php:13
|
| 1204 |
+
msgid "FileServe API"
|
| 1205 |
+
msgstr "FileServe API"
|
| 1206 |
+
|
| 1207 |
+
#: includes/extra-strings.php:14
|
| 1208 |
+
msgid "HTML images"
|
| 1209 |
+
msgstr "HTML-képek"
|
| 1210 |
+
|
| 1211 |
+
#: includes/extra-strings.php:15
|
| 1212 |
+
msgid "HTML links"
|
| 1213 |
+
msgstr "HTML-hivatkozások"
|
| 1214 |
+
|
| 1215 |
+
#: includes/extra-strings.php:16
|
| 1216 |
+
msgid "MediaFire API"
|
| 1217 |
+
msgstr "MediaFire API"
|
| 1218 |
+
|
| 1219 |
+
#: includes/extra-strings.php:17
|
| 1220 |
+
msgid "MegaUpload API"
|
| 1221 |
+
msgstr "MegaUpload API"
|
| 1222 |
+
|
| 1223 |
+
#: includes/extra-strings.php:18
|
| 1224 |
+
msgid "Plaintext URLs"
|
| 1225 |
+
msgstr "Egyszerű szöveg URL-címek"
|
| 1226 |
+
|
| 1227 |
+
#: includes/extra-strings.php:19
|
| 1228 |
+
msgid "RapidShare API"
|
| 1229 |
+
msgstr "RapidShare API"
|
| 1230 |
+
|
| 1231 |
+
#: includes/extra-strings.php:20
|
| 1232 |
+
msgid "Smart YouTube httpv:// URLs"
|
| 1233 |
+
msgstr "Intelligens YouTube httpv:// URL-címek"
|
| 1234 |
+
|
| 1235 |
+
#: includes/extra-strings.php:21
|
| 1236 |
+
msgid "YouTube API"
|
| 1237 |
+
msgstr "YouTube API"
|
| 1238 |
+
|
| 1239 |
+
#: includes/extra-strings.php:22
|
| 1240 |
+
msgid "Posts"
|
| 1241 |
+
msgstr "Bejegyzések"
|
| 1242 |
+
|
| 1243 |
+
#: includes/extra-strings.php:23
|
| 1244 |
+
msgid "Pages"
|
| 1245 |
+
msgstr "Oldalak"
|
| 1246 |
+
|
| 1247 |
+
#: includes/instances.php:104 includes/instances.php:160
|
| 1248 |
+
msgid "Container %s[%d] not found"
|
| 1249 |
+
msgstr "A rendszer nem találta a(z) %s[%d] tárolót"
|
| 1250 |
+
|
| 1251 |
+
#: includes/instances.php:113 includes/instances.php:169
|
| 1252 |
+
msgid "Parser '%s' not found."
|
| 1253 |
+
msgstr "A rendszer nem találta a(z) \"%s\" elemzőt."
|
| 1254 |
+
|
| 1255 |
+
#: includes/link-query.php:26
|
| 1256 |
+
msgid "Broken"
|
| 1257 |
+
msgstr "Nem működik"
|
| 1258 |
+
|
| 1259 |
+
#: includes/link-query.php:28
|
| 1260 |
+
msgid "No broken links found"
|
| 1261 |
+
msgstr "A rendszer nem talált nem működő hivatkozást"
|
| 1262 |
+
|
| 1263 |
+
#: includes/link-query.php:36
|
| 1264 |
+
msgid "Redirects"
|
| 1265 |
+
msgstr "Átirányítások"
|
| 1266 |
+
|
| 1267 |
+
#: includes/link-query.php:37
|
| 1268 |
+
msgid "Redirected Links"
|
| 1269 |
+
msgstr "Átirányított hivatkozások"
|
| 1270 |
+
|
| 1271 |
+
#: includes/link-query.php:38
|
| 1272 |
+
msgid "No redirects found"
|
| 1273 |
+
msgstr "A rendszer nem talált átirányítást"
|
| 1274 |
+
|
| 1275 |
+
#: includes/link-query.php:46
|
| 1276 |
+
msgid "Dismissed"
|
| 1277 |
+
msgstr "Elvetve"
|
| 1278 |
+
|
| 1279 |
+
#: includes/link-query.php:47
|
| 1280 |
+
msgid "Dismissed Links"
|
| 1281 |
+
msgstr "Elvetett hivatkozások"
|
| 1282 |
+
|
| 1283 |
+
#: includes/link-query.php:48
|
| 1284 |
+
msgid "No dismissed links found"
|
| 1285 |
+
msgstr "A rendszer nem talált elvetett hivatkozásokat"
|
| 1286 |
+
|
| 1287 |
+
#: includes/link-query.php:56
|
| 1288 |
+
msgid "All"
|
| 1289 |
+
msgstr "Összes"
|
| 1290 |
+
|
| 1291 |
+
#: includes/link-query.php:57
|
| 1292 |
+
msgid "Detected Links"
|
| 1293 |
+
msgstr "Észlelt hivatkozások"
|
| 1294 |
+
|
| 1295 |
+
#: includes/link-query.php:58
|
| 1296 |
+
msgid "No links found (yet)"
|
| 1297 |
+
msgstr "A rendszer (még) nem talált hivatkozásokat"
|
| 1298 |
+
|
| 1299 |
+
#: includes/link-query.php:66
|
| 1300 |
+
msgid "Search Results"
|
| 1301 |
+
msgstr "Keresési eredmények"
|
| 1302 |
+
|
| 1303 |
+
#: includes/link-query.php:67 includes/link-query.php:114
|
| 1304 |
+
msgid "No links found for your query"
|
| 1305 |
+
msgstr "A rendszer nem talált hivatkozást az Ön lekérdezésére"
|
| 1306 |
+
|
| 1307 |
+
#: includes/links.php:218
|
| 1308 |
+
msgid "The plugin script was terminated while trying to check the link."
|
| 1309 |
+
msgstr ""
|
| 1310 |
+
"A bővítmény parancsfájlja a hivatkozás ellenőrzése közben le lett állítva."
|
| 1311 |
+
|
| 1312 |
+
#: includes/links.php:264
|
| 1313 |
+
msgid "The plugin doesn't know how to check this type of link."
|
| 1314 |
+
msgstr "A bővítmény nem tudja, hogy hogyan ellenőrizze ezt a hivatkozástípust."
|
| 1315 |
+
|
| 1316 |
+
#: includes/links.php:357
|
| 1317 |
+
msgid "Link is valid."
|
| 1318 |
+
msgstr "A hivatkozás érvényes."
|
| 1319 |
+
|
| 1320 |
+
#: includes/links.php:359
|
| 1321 |
+
msgid "Link is broken."
|
| 1322 |
+
msgstr "A hivatkozás nem működik."
|
| 1323 |
+
|
| 1324 |
+
#: includes/links.php:571 includes/links.php:673 includes/links.php:700
|
| 1325 |
+
msgid "Link is not valid"
|
| 1326 |
+
msgstr "A hivatkozás nem érvényes"
|
| 1327 |
+
|
| 1328 |
+
#: includes/links.php:588
|
| 1329 |
+
msgid ""
|
| 1330 |
+
"This link can not be edited because it is not used anywhere on this site."
|
| 1331 |
+
msgstr ""
|
| 1332 |
+
"Az aktuális hivatkozás nem szerkeszthető, mert ezen az oldalon sehol sincs "
|
| 1333 |
+
"felhasználva."
|
| 1334 |
+
|
| 1335 |
+
#: includes/links.php:614
|
| 1336 |
+
msgid "Failed to create a DB entry for the new URL."
|
| 1337 |
+
msgstr "Adatbázis-bejegyzés létrehozása nem sikerült az új URL-címre."
|
| 1338 |
+
|
| 1339 |
+
#: includes/links.php:680
|
| 1340 |
+
msgid "This link is not a redirect"
|
| 1341 |
+
msgstr "Ez a hivatkozás nem átirányítás"
|
| 1342 |
+
|
| 1343 |
+
#: includes/links.php:727 includes/links.php:764
|
| 1344 |
+
msgid "Couldn't delete the link's database record"
|
| 1345 |
+
msgstr "A hivatkozás adatbázis-bejegyzése nem törölhető"
|
| 1346 |
+
|
| 1347 |
+
#: includes/links.php:838
|
| 1348 |
+
msgctxt "link status"
|
| 1349 |
+
msgid "Unknown"
|
| 1350 |
+
msgstr "Ismeretlen"
|
| 1351 |
+
|
| 1352 |
+
#: includes/links.php:852 modules/checkers/http.php:263
|
| 1353 |
+
#: modules/extras/mediafire.php:101
|
| 1354 |
+
msgid "Unknown Error"
|
| 1355 |
+
msgstr "Ismeretlen hiba"
|
| 1356 |
+
|
| 1357 |
+
#: includes/links.php:876
|
| 1358 |
+
msgid "Not checked"
|
| 1359 |
+
msgstr "Nincs ellenőrizve"
|
| 1360 |
+
|
| 1361 |
+
#: includes/links.php:879
|
| 1362 |
+
msgid "False positive"
|
| 1363 |
+
msgstr "Vakriasztás"
|
| 1364 |
+
|
| 1365 |
+
#: includes/links.php:882 modules/extras/fileserve.php:121
|
| 1366 |
+
#: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
|
| 1367 |
+
#: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
|
| 1368 |
+
msgctxt "link status"
|
| 1369 |
+
msgid "OK"
|
| 1370 |
+
msgstr "OK"
|
| 1371 |
+
|
| 1372 |
+
#: includes/parsers.php:109
|
| 1373 |
+
msgid "Editing is not implemented in the '%s' parser"
|
| 1374 |
+
msgstr "Szerkesztés nem lett végrehajtva a(z) \"%s\" elemzőben"
|
| 1375 |
+
|
| 1376 |
+
#: includes/parsers.php:124
|
| 1377 |
+
msgid "Unlinking is not implemented in the '%s' parser"
|
| 1378 |
+
msgstr "A hivatkozásmentesítés nem lett végrehajtva a(z) \"%s\" elemzőben."
|
| 1379 |
+
|
| 1380 |
+
#: includes/utility-class.php:245
|
| 1381 |
+
msgid "%d second"
|
| 1382 |
+
msgid_plural "%d seconds"
|
| 1383 |
+
msgstr[0] "%d másodperc"
|
| 1384 |
+
msgstr[1] "%d másodperc"
|
| 1385 |
+
|
| 1386 |
+
#: includes/utility-class.php:246
|
| 1387 |
+
msgid "%d second ago"
|
| 1388 |
+
msgid_plural "%d seconds ago"
|
| 1389 |
+
msgstr[0] "%d másodperce"
|
| 1390 |
+
msgstr[1] "%d másodperce"
|
| 1391 |
+
|
| 1392 |
+
#: includes/utility-class.php:249
|
| 1393 |
+
msgid "%d minute"
|
| 1394 |
+
msgid_plural "%d minutes"
|
| 1395 |
+
msgstr[0] "%d perc"
|
| 1396 |
+
msgstr[1] "%d perc"
|
| 1397 |
+
|
| 1398 |
+
#: includes/utility-class.php:250
|
| 1399 |
+
msgid "%d minute ago"
|
| 1400 |
+
msgid_plural "%d minutes ago"
|
| 1401 |
+
msgstr[0] "%d perce"
|
| 1402 |
+
msgstr[1] "%d perce"
|
| 1403 |
+
|
| 1404 |
+
#: includes/utility-class.php:253
|
| 1405 |
+
msgid "%d hour"
|
| 1406 |
+
msgid_plural "%d hours"
|
| 1407 |
+
msgstr[0] "%d óra"
|
| 1408 |
+
msgstr[1] "%d óra"
|
| 1409 |
+
|
| 1410 |
+
#: includes/utility-class.php:254
|
| 1411 |
+
msgid "%d hour ago"
|
| 1412 |
+
msgid_plural "%d hours ago"
|
| 1413 |
+
msgstr[0] "%d órája"
|
| 1414 |
+
msgstr[1] "%d órája"
|
| 1415 |
+
|
| 1416 |
+
#: includes/utility-class.php:257
|
| 1417 |
+
msgid "%d day"
|
| 1418 |
+
msgid_plural "%d days"
|
| 1419 |
+
msgstr[0] "%d nap"
|
| 1420 |
+
msgstr[1] "%d nap"
|
| 1421 |
+
|
| 1422 |
+
#: includes/utility-class.php:258
|
| 1423 |
+
msgid "%d day ago"
|
| 1424 |
+
msgid_plural "%d days ago"
|
| 1425 |
+
msgstr[0] "%d napja"
|
| 1426 |
+
msgstr[1] "%d napja"
|
| 1427 |
+
|
| 1428 |
+
#: includes/utility-class.php:261
|
| 1429 |
+
msgid "%d month"
|
| 1430 |
+
msgid_plural "%d months"
|
| 1431 |
+
msgstr[0] "%d hónap"
|
| 1432 |
+
msgstr[1] "%d hónap"
|
| 1433 |
+
|
| 1434 |
+
#: includes/utility-class.php:262
|
| 1435 |
+
msgid "%d month ago"
|
| 1436 |
+
msgid_plural "%d months ago"
|
| 1437 |
+
msgstr[0] "%d hónapja"
|
| 1438 |
+
msgstr[1] "%d hónapja"
|
| 1439 |
+
|
| 1440 |
+
#: modules/checkers/http.php:242
|
| 1441 |
+
msgid "Server Not Found"
|
| 1442 |
+
msgstr "Kiszolgáló nem található"
|
| 1443 |
+
|
| 1444 |
+
#: modules/checkers/http.php:257
|
| 1445 |
+
msgid "Connection Failed"
|
| 1446 |
+
msgstr "Kapcsolódási hiba"
|
| 1447 |
+
|
| 1448 |
+
#: modules/checkers/http.php:292 modules/checkers/http.php:362
|
| 1449 |
+
msgid "HTTP code : %d"
|
| 1450 |
+
msgstr "HTTP-kód: %d"
|
| 1451 |
+
|
| 1452 |
+
#: modules/checkers/http.php:294 modules/checkers/http.php:364
|
| 1453 |
+
msgid "(No response)"
|
| 1454 |
+
msgstr "(Nincs válasz)"
|
| 1455 |
+
|
| 1456 |
+
#: modules/checkers/http.php:300
|
| 1457 |
+
msgid "Most likely the connection timed out or the domain doesn't exist."
|
| 1458 |
+
msgstr "Valószínűleg a kapcsolat ideje lejárt vagy a tartomány nem létezik."
|
| 1459 |
+
|
| 1460 |
+
#: modules/checkers/http.php:371
|
| 1461 |
+
msgid "Request timed out."
|
| 1462 |
+
msgstr "A kérelem ideje lejárt."
|
| 1463 |
+
|
| 1464 |
+
#: modules/checkers/http.php:389
|
| 1465 |
+
msgid "Using Snoopy"
|
| 1466 |
+
msgstr "Snoopy használata"
|
| 1467 |
+
|
| 1468 |
+
#: modules/containers/blogroll.php:21
|
| 1469 |
+
msgid "Bookmark"
|
| 1470 |
+
msgstr "Könyvjelző"
|
| 1471 |
+
|
| 1472 |
+
#: modules/containers/blogroll.php:27 modules/containers/blogroll.php:46
|
| 1473 |
+
msgid "Edit this bookmark"
|
| 1474 |
+
msgstr "Aktuális könyvjelző szerkesztése"
|
| 1475 |
+
|
| 1476 |
+
#: modules/containers/blogroll.php:47
|
| 1477 |
+
msgid ""
|
| 1478 |
+
"You are about to delete this link '%s'\n"
|
| 1479 |
+
" 'Cancel' to stop, 'OK' to delete."
|
| 1480 |
+
msgstr ""
|
| 1481 |
+
"Ön az aktuális \"%s\" hivatkozás törlésére készül.\n"
|
| 1482 |
+
"A megszakításhoz kattintson a \"Mégse\", a törléshez az \"OK\" lehetőségre."
|
| 1483 |
+
|
| 1484 |
+
#: modules/containers/blogroll.php:97
|
| 1485 |
+
msgid "Updating bookmark %d failed"
|
| 1486 |
+
msgstr "A(z) %d könyvjelző frissítése nem sikerült"
|
| 1487 |
+
|
| 1488 |
+
#: modules/containers/blogroll.php:128
|
| 1489 |
+
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
| 1490 |
+
msgstr "A(z) \"%s\" blogroll hivatkozás törlése (%d) nem sikerült"
|
| 1491 |
+
|
| 1492 |
+
#: modules/containers/blogroll.php:298
|
| 1493 |
+
msgid "%d blogroll link deleted."
|
| 1494 |
+
msgid_plural "%d blogroll links deleted."
|
| 1495 |
+
msgstr[0] "A rendszer %d blogroll hivatkozást törölt."
|
| 1496 |
+
msgstr[1] "A rendszer %d blogroll hivatkozást törölt."
|
| 1497 |
+
|
| 1498 |
+
#: modules/containers/comment.php:53
|
| 1499 |
+
msgid "Updating comment %d failed"
|
| 1500 |
+
msgstr "A(z) %d megjegyzés frissítése nem sikerült"
|
| 1501 |
+
|
| 1502 |
+
#: modules/containers/comment.php:74
|
| 1503 |
+
msgid "Failed to delete comment %d"
|
| 1504 |
+
msgstr "A(z) %d megjegyzés törlése nem sikerült"
|
| 1505 |
+
|
| 1506 |
+
#: modules/containers/comment.php:95
|
| 1507 |
+
msgid "Can't move comment %d to the trash"
|
| 1508 |
+
msgstr "A(z) %d megjegyzés Lomtárba helyezése nem lehetséges"
|
| 1509 |
+
|
| 1510 |
+
#: modules/containers/comment.php:153 modules/containers/comment.php:195
|
| 1511 |
+
msgid "Edit comment"
|
| 1512 |
+
msgstr "Megjegyzés szerkesztése"
|
| 1513 |
+
|
| 1514 |
+
#: modules/containers/comment.php:160
|
| 1515 |
+
msgid "Delete Permanently"
|
| 1516 |
+
msgstr "Végleges törlés"
|
| 1517 |
+
|
| 1518 |
+
#: modules/containers/comment.php:162
|
| 1519 |
+
msgid "Move this comment to the trash"
|
| 1520 |
+
msgstr "Aktuális megjegyzés Lomtárba helyezése"
|
| 1521 |
+
|
| 1522 |
+
#: modules/containers/comment.php:162
|
| 1523 |
+
msgctxt "verb"
|
| 1524 |
+
msgid "Trash"
|
| 1525 |
+
msgstr "Lomtár"
|
| 1526 |
+
|
| 1527 |
+
#: modules/containers/comment.php:166
|
| 1528 |
+
msgid "View comment"
|
| 1529 |
+
msgstr "Megjegyzés megtekintése"
|
| 1530 |
+
|
| 1531 |
+
#: modules/containers/comment.php:183
|
| 1532 |
+
msgid "Comment"
|
| 1533 |
+
msgstr "Megjegyzés"
|
| 1534 |
+
|
| 1535 |
+
#: modules/containers/comment.php:355
|
| 1536 |
+
msgid "%d comment has been deleted."
|
| 1537 |
+
msgid_plural "%d comments have been deleted."
|
| 1538 |
+
msgstr[0] "A rendszer %d megjegyzést törölt."
|
| 1539 |
+
msgstr[1] "A rendszer %d megjegyzést törölt."
|
| 1540 |
+
|
| 1541 |
+
#: modules/containers/comment.php:374
|
| 1542 |
+
msgid "%d comment moved to the Trash."
|
| 1543 |
+
msgid_plural "%d comments moved to the Trash."
|
| 1544 |
+
msgstr[0] "A rendszer %d megjegyzést helyezett át a Lomtárba."
|
| 1545 |
+
msgstr[1] "A rendszer %d megjegyzést helyezett át a Lomtárba."
|
| 1546 |
+
|
| 1547 |
+
#: modules/containers/custom_field.php:84
|
| 1548 |
+
msgid "Failed to update the meta field '%s' on %s [%d]"
|
| 1549 |
+
msgstr "A(z) \"%s\" metamező frissítése nem sikerült a következőnél: %s [%d]."
|
| 1550 |
+
|
| 1551 |
+
#: modules/containers/custom_field.php:110
|
| 1552 |
+
msgid "Failed to delete the meta field '%s' on %s [%d]"
|
| 1553 |
+
msgstr "A(z) \"%s\" metamező frissítése nem sikerült a következőnél: %s [%d]."
|
| 1554 |
+
|
| 1555 |
+
#: modules/containers/custom_field.php:187
|
| 1556 |
+
msgid "Edit this post"
|
| 1557 |
+
msgstr "Aktuális bejegyzés szerkesztése"
|
| 1558 |
+
|
| 1559 |
+
#: modules/containers/custom_field.php:217
|
| 1560 |
+
msgid "View \"%s\""
|
| 1561 |
+
msgstr "\"%s\" megtekintése"
|
| 1562 |
+
|
| 1563 |
+
#: modules/containers/dummy.php:34 modules/containers/dummy.php:45
|
| 1564 |
+
msgid "I don't know how to edit a '%s' [%d]."
|
| 1565 |
+
msgstr "Nem tudom, hogyan kell szerkeszteni a következőket: \"%s\" [%d]."
|
| 1566 |
+
|
| 1567 |
+
#: modules/extras/dailymotion-embed.php:23
|
| 1568 |
+
msgid "DailyMotion Video"
|
| 1569 |
+
msgstr "DailyMotion videó"
|
| 1570 |
+
|
| 1571 |
+
#: modules/extras/dailymotion-embed.php:24
|
| 1572 |
+
msgid "Embedded DailyMotion video"
|
| 1573 |
+
msgstr "Beágyazott DailyMotion videó"
|
| 1574 |
+
|
| 1575 |
+
#: modules/extras/embed-parser-base.php:197
|
| 1576 |
+
msgid ""
|
| 1577 |
+
"Embedded videos can't be edited using Broken Link Checker. Please edit or "
|
| 1578 |
+
"replace the video in question manually."
|
| 1579 |
+
msgstr ""
|
| 1580 |
+
"A beágyazott videók nem szerkeszthetők a Broken Link Checker alkalmazással. "
|
| 1581 |
+
"Kérjük, szerkessze meg vagy cserélje le a kérdéses videót kézileg."
|
| 1582 |
+
|
| 1583 |
+
#: modules/extras/fileserve.php:55
|
| 1584 |
+
msgid "Using FileServe API"
|
| 1585 |
+
msgstr "FileServe API használata"
|
| 1586 |
+
|
| 1587 |
+
#: modules/extras/fileserve.php:112 modules/extras/mediafire.php:91
|
| 1588 |
+
#: modules/extras/mediafire.php:96 modules/extras/megaupload.php:81
|
| 1589 |
+
#: modules/extras/megaupload.php:123 modules/extras/rapidshare.php:139
|
| 1590 |
+
msgid "Not Found"
|
| 1591 |
+
msgstr "Nem található"
|
| 1592 |
+
|
| 1593 |
+
#: modules/extras/fileserve.php:115
|
| 1594 |
+
msgid "FileServe : %d %s"
|
| 1595 |
+
msgstr "FileServe: %d %s"
|
| 1596 |
+
|
| 1597 |
+
#: modules/extras/googlevideo-embed.php:24
|
| 1598 |
+
msgid "GoogleVideo Video"
|
| 1599 |
+
msgstr "GoogleVideo videó"
|
| 1600 |
+
|
| 1601 |
+
#: modules/extras/googlevideo-embed.php:25
|
| 1602 |
+
msgid "Embedded GoogleVideo video"
|
| 1603 |
+
msgstr "Beágyazott GoogleVideo videó"
|
| 1604 |
+
|
| 1605 |
+
#: modules/extras/megaupload.php:130
|
| 1606 |
+
msgid "File Temporarily Unavailable"
|
| 1607 |
+
msgstr "A fájl pillanatnyilag nem elérhető"
|
| 1608 |
+
|
| 1609 |
+
#: modules/extras/megaupload.php:136
|
| 1610 |
+
msgid "API Error"
|
| 1611 |
+
msgstr "API hiba"
|
| 1612 |
+
|
| 1613 |
+
#: modules/extras/megavideo-embed.php:24
|
| 1614 |
+
msgid "Megavideo Video"
|
| 1615 |
+
msgstr "Megavideo videó"
|
| 1616 |
+
|
| 1617 |
+
#: modules/extras/megavideo-embed.php:25
|
| 1618 |
+
msgid "Embedded Megavideo video"
|
| 1619 |
+
msgstr "Beágyazott Megavideo videó"
|
| 1620 |
+
|
| 1621 |
+
#: modules/extras/rapidshare.php:51
|
| 1622 |
+
msgid "Using RapidShare API"
|
| 1623 |
+
msgstr "RapidShare API használata"
|
| 1624 |
+
|
| 1625 |
+
#: modules/extras/rapidshare.php:158
|
| 1626 |
+
msgid "RS Server Down"
|
| 1627 |
+
msgstr "Az RS kiszolgálót nem lehet elérni"
|
| 1628 |
+
|
| 1629 |
+
#: modules/extras/rapidshare.php:165
|
| 1630 |
+
msgid "File Blocked"
|
| 1631 |
+
msgstr "Letiltott fájl"
|
| 1632 |
+
|
| 1633 |
+
#: modules/extras/rapidshare.php:172
|
| 1634 |
+
msgid "File Locked"
|
| 1635 |
+
msgstr "Zárolt fájl"
|
| 1636 |
+
|
| 1637 |
+
#: modules/extras/rapidshare.php:183
|
| 1638 |
+
msgid "RapidShare : %s"
|
| 1639 |
+
msgstr "RapidShare: %s"
|
| 1640 |
+
|
| 1641 |
+
#: modules/extras/rapidshare.php:189
|
| 1642 |
+
msgid "RapidShare API error: %s"
|
| 1643 |
+
msgstr "RapidShare API hiba: %s"
|
| 1644 |
+
|
| 1645 |
+
#: modules/extras/vimeo-embed.php:24
|
| 1646 |
+
msgid "Vimeo Video"
|
| 1647 |
+
msgstr "Vimeo videó"
|
| 1648 |
+
|
| 1649 |
+
#: modules/extras/vimeo-embed.php:25
|
| 1650 |
+
msgid "Embedded Vimeo video"
|
| 1651 |
+
msgstr "Beágyazott Vimeo videó"
|
| 1652 |
+
|
| 1653 |
+
#: modules/extras/youtube-embed.php:24 modules/extras/youtube-iframe.php:25
|
| 1654 |
+
msgid "YouTube Video"
|
| 1655 |
+
msgstr "YouTube videó"
|
| 1656 |
+
|
| 1657 |
+
#: modules/extras/youtube-embed.php:25 modules/extras/youtube-iframe.php:26
|
| 1658 |
+
msgid "Embedded YouTube video"
|
| 1659 |
+
msgstr "Beágyazott YouTube videó"
|
| 1660 |
+
|
| 1661 |
+
#: modules/extras/youtube-playlist-embed.php:24
|
| 1662 |
+
msgid "YouTube Playlist"
|
| 1663 |
+
msgstr "YouTube lejátszási lista"
|
| 1664 |
+
|
| 1665 |
+
#: modules/extras/youtube-playlist-embed.php:25
|
| 1666 |
+
msgid "Embedded YouTube playlist"
|
| 1667 |
+
msgstr "Beágyazott YouTube lejátszási lista"
|
| 1668 |
+
|
| 1669 |
+
#: modules/extras/youtube.php:124 modules/extras/youtube.php:127
|
| 1670 |
+
msgid "Video Not Found"
|
| 1671 |
+
msgstr "Videó nem található"
|
| 1672 |
+
|
| 1673 |
+
#: modules/extras/youtube.php:135
|
| 1674 |
+
msgid "Video Removed"
|
| 1675 |
+
msgstr "Videó eltávolítva"
|
| 1676 |
+
|
| 1677 |
+
#: modules/extras/youtube.php:143
|
| 1678 |
+
msgid "Invalid Video ID"
|
| 1679 |
+
msgstr "Érvénytelen videóazonosító"
|
| 1680 |
+
|
| 1681 |
+
#: modules/extras/youtube.php:155
|
| 1682 |
+
msgid "Video OK"
|
| 1683 |
+
msgstr "Videó OK"
|
| 1684 |
+
|
| 1685 |
+
#: modules/extras/youtube.php:156 modules/extras/youtube.php:177
|
| 1686 |
+
#: modules/extras/youtube.php:249 modules/extras/youtube.php:289
|
| 1687 |
+
msgid "OK"
|
| 1688 |
+
msgstr "OK"
|
| 1689 |
+
|
| 1690 |
+
#: modules/extras/youtube.php:170 modules/extras/youtube.php:271
|
| 1691 |
+
msgid "Video status : %s%s"
|
| 1692 |
+
msgstr "Videóállapot: %s%s"
|
| 1693 |
+
|
| 1694 |
+
#: modules/extras/youtube.php:182 modules/extras/youtube.php:280
|
| 1695 |
+
msgid "Video Restricted"
|
| 1696 |
+
msgstr "Videó korlátozva"
|
| 1697 |
+
|
| 1698 |
+
#: modules/extras/youtube.php:199 modules/extras/youtube.php:305
|
| 1699 |
+
msgid "Unknown YouTube API response received."
|
| 1700 |
+
msgstr "Ismeretlen YouTube API válasz érkezett."
|
| 1701 |
+
|
| 1702 |
+
#: modules/extras/youtube.php:217 modules/extras/youtube.php:220
|
| 1703 |
+
msgid "Playlist Not Found"
|
| 1704 |
+
msgstr "A lejátszási lista nem található"
|
| 1705 |
+
|
| 1706 |
+
#: modules/extras/youtube.php:227
|
| 1707 |
+
msgid "Playlist Restricted"
|
| 1708 |
+
msgstr "Lejátszási lista korlátozva"
|
| 1709 |
+
|
| 1710 |
+
#: modules/extras/youtube.php:234
|
| 1711 |
+
msgid "Invalid Playlist"
|
| 1712 |
+
msgstr "Érvénytelen lejátszási lista"
|
| 1713 |
+
|
| 1714 |
+
#: modules/extras/youtube.php:248
|
| 1715 |
+
msgid "Playlist OK"
|
| 1716 |
+
msgstr "Lejátszási lista OK"
|
| 1717 |
+
|
| 1718 |
+
#: modules/extras/youtube.php:255
|
| 1719 |
+
msgid "This playlist has no entries or all entries have been deleted."
|
| 1720 |
+
msgstr ""
|
| 1721 |
+
"Az aktuális lejátszási lista nem tartalmaz bejegyzést, vagy minden "
|
| 1722 |
+
"bejegyzése törölve lett."
|
| 1723 |
+
|
| 1724 |
+
#: modules/extras/youtube.php:256
|
| 1725 |
+
msgid "Empty Playlist"
|
| 1726 |
+
msgstr "Lejátszási lista tartalmának törlése"
|
| 1727 |
+
|
| 1728 |
+
#: modules/parsers/image.php:164
|
| 1729 |
+
msgid "Image"
|
| 1730 |
+
msgstr "Kép"
|
| 1731 |
+
|
| 1732 |
+
#: modules/parsers/metadata.php:118
|
| 1733 |
+
msgid "Custom field"
|
| 1734 |
+
msgstr "Egyedi mező"
|
| 1735 |
+
|
| 1736 |
+
#. Plugin URI of the plugin/theme
|
| 1737 |
+
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 1738 |
+
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 1739 |
+
|
| 1740 |
+
#. Description of the plugin/theme
|
| 1741 |
+
msgid ""
|
| 1742 |
+
"Checks your blog for broken links and missing images and notifies you on the "
|
| 1743 |
+
"dashboard if any are found."
|
| 1744 |
+
msgstr ""
|
| 1745 |
+
"Ellenőrzi az Ön blogját, hogy van-e benne nem működő hivatkozás és hiányzó "
|
| 1746 |
+
"kép, és ha van, arról értesítést küld a kezelőpulton."
|
| 1747 |
+
|
| 1748 |
+
#. Author of the plugin/theme
|
| 1749 |
+
msgid "Janis Elsts"
|
| 1750 |
+
msgstr "Janis Elsts"
|
| 1751 |
+
|
| 1752 |
+
#. Author URI of the plugin/theme
|
| 1753 |
+
msgid "http://w-shadow.com/"
|
| 1754 |
+
msgstr "http://w-shadow.com/"
|
languages/broken-link-checker-nl_NL.mo
CHANGED
|
Binary file
|
languages/broken-link-checker-nl_NL.po
CHANGED
|
@@ -1,719 +1,1906 @@
|
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
"Project-Id-Version: Broken-link-checker\n"
|
| 4 |
-
"Report-Msgid-Bugs-To:
|
| 5 |
-
"POT-Creation-Date:
|
| 6 |
"PO-Revision-Date: \n"
|
| 7 |
-
"Last-Translator:
|
| 8 |
"Language-Team: Brokenlinkchecker <gvmelle@gmail.com>\n"
|
|
|
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
-
"X-Poedit-Language: Dutch\n"
|
| 13 |
-
"X-Poedit-Country: NETHERLANDS\n"
|
| 14 |
"X-Poedit-SourceCharset: utf-8\n"
|
| 15 |
"X-Poedit-KeywordsList: __;_e;_c\n"
|
| 16 |
"X-Poedit-Basepath: .\n"
|
| 17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
|
| 18 |
"X-Poedit-SearchPath-0: .\n"
|
| 19 |
"X-Poedit-SearchPath-1: ..\n"
|
| 20 |
|
| 21 |
-
#: core.php:
|
| 22 |
-
#: core.php:1284
|
| 23 |
msgid "Loading..."
|
| 24 |
-
msgstr "Aan
|
| 25 |
|
| 26 |
-
#: core.php:
|
| 27 |
-
#: core.php:569
|
| 28 |
msgid "[ Network error ]"
|
| 29 |
-
msgstr "[Netwerk fout]"
|
| 30 |
|
| 31 |
-
#: core.php:
|
| 32 |
msgid "Automatically expand the widget if broken links have been detected"
|
| 33 |
-
msgstr "
|
| 34 |
-
|
| 35 |
-
#: core.php:359
|
| 36 |
-
#: core.php:368
|
| 37 |
-
#: core.php:386
|
| 38 |
-
#: core.php:400
|
| 39 |
-
#: core.php:907
|
| 40 |
-
#, php-format
|
| 41 |
-
msgid "Database error : %s"
|
| 42 |
-
msgstr "Database fout : %s"
|
| 43 |
|
| 44 |
-
#: core.php:
|
| 45 |
msgid "Link Checker Settings"
|
| 46 |
msgstr "Link Checker Instellingen"
|
| 47 |
|
| 48 |
-
#: core.php:
|
| 49 |
msgid "Link Checker"
|
| 50 |
-
msgstr "Link Checker"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
|
| 52 |
-
#: core.php:
|
| 53 |
msgid "View Broken Links"
|
| 54 |
-
msgstr "Bekijk Verbroken
|
| 55 |
|
| 56 |
-
#: core.php:
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
msgstr "Verbroken Koppelingen"
|
| 60 |
|
| 61 |
-
#: core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
msgid "Settings"
|
| 63 |
msgstr "Instellingen"
|
| 64 |
|
| 65 |
-
#: core.php:533
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
msgid "Broken Link Checker Options"
|
| 67 |
-
msgstr "
|
| 68 |
|
| 69 |
-
#: core.php:
|
| 70 |
msgid "Status"
|
| 71 |
-
msgstr "Status"
|
| 72 |
|
| 73 |
-
#: core.php:
|
| 74 |
-
#: core.php:771
|
| 75 |
msgid "Show debug info"
|
| 76 |
-
msgstr "Toon debug
|
| 77 |
-
|
| 78 |
-
#: core.php:582
|
| 79 |
-
msgid "Re-check all pages"
|
| 80 |
-
msgstr "controleer all pagina's nogmaals"
|
| 81 |
|
| 82 |
-
#: core.php:
|
| 83 |
msgid "Check each link"
|
| 84 |
-
msgstr "Controleer
|
| 85 |
|
| 86 |
-
#: core.php:
|
| 87 |
-
#, php-format
|
| 88 |
msgid "Every %s hours"
|
| 89 |
msgstr "Elke %s uur"
|
| 90 |
|
| 91 |
-
#: core.php:
|
| 92 |
-
msgid "
|
| 93 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 94 |
|
| 95 |
-
#: core.php:
|
| 96 |
-
msgid "
|
| 97 |
-
msgstr "
|
| 98 |
|
| 99 |
-
#: core.php:
|
| 100 |
-
msgid "
|
| 101 |
-
msgstr "
|
| 102 |
|
| 103 |
-
#: core.php:
|
| 104 |
-
msgid "
|
| 105 |
-
msgstr "
|
|
|
|
| 106 |
|
| 107 |
-
#: core.php:
|
| 108 |
-
msgid "
|
| 109 |
-
msgstr "
|
| 110 |
|
| 111 |
-
#: core.php:
|
| 112 |
-
msgid "
|
| 113 |
-
|
|
|
|
|
|
|
|
|
|
| 114 |
|
| 115 |
-
#: core.php:
|
| 116 |
-
msgid "
|
| 117 |
-
msgstr "
|
| 118 |
|
| 119 |
-
#: core.php:
|
| 120 |
-
msgid "
|
| 121 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 122 |
|
| 123 |
-
#: core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 124 |
msgid "Timeout"
|
| 125 |
-
msgstr "Timeout"
|
| 126 |
|
| 127 |
-
#: core.php:
|
| 128 |
-
#: core.php:735
|
| 129 |
-
#, php-format
|
| 130 |
msgid "%s seconds"
|
| 131 |
msgstr "%s seconden"
|
| 132 |
|
| 133 |
-
#: core.php:
|
| 134 |
msgid "Links that take longer than this to load will be marked as broken."
|
| 135 |
-
msgstr "
|
|
|
|
|
|
|
| 136 |
|
| 137 |
-
#: core.php:
|
| 138 |
-
msgid "
|
| 139 |
-
msgstr "
|
| 140 |
|
| 141 |
-
#: core.php:
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
msgid "OK"
|
| 145 |
-
msgstr "OK"
|
| 146 |
|
| 147 |
-
#: core.php:
|
| 148 |
-
msgid "
|
| 149 |
-
msgstr "
|
| 150 |
|
| 151 |
-
#: core.php:
|
| 152 |
-
msgid "
|
| 153 |
-
msgstr "
|
| 154 |
|
| 155 |
-
#: core.php:
|
| 156 |
-
|
| 157 |
-
|
|
|
|
| 158 |
|
| 159 |
-
#: core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 160 |
msgid "Max. execution time"
|
| 161 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 162 |
|
| 163 |
-
#: core.php:
|
| 164 |
-
msgid "
|
| 165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 166 |
|
| 167 |
-
#: core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 168 |
msgid "Save Changes"
|
| 169 |
-
msgstr "
|
| 170 |
|
| 171 |
-
#: core.php:
|
| 172 |
-
msgid "
|
| 173 |
-
msgstr "
|
| 174 |
|
| 175 |
-
#: core.php:
|
| 176 |
-
msgid "
|
| 177 |
-
msgstr "
|
| 178 |
|
| 179 |
-
#: core.php:
|
| 180 |
-
msgid "
|
| 181 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 182 |
|
| 183 |
-
#: core.php:
|
| 184 |
-
msgid "
|
| 185 |
-
msgstr "
|
| 186 |
|
| 187 |
-
#: core.php:
|
| 188 |
-
msgid "
|
| 189 |
-
|
|
|
|
|
|
|
| 190 |
|
| 191 |
-
#: core.php:
|
| 192 |
-
msgid "
|
| 193 |
-
msgstr "
|
| 194 |
|
| 195 |
-
#: core.php:
|
| 196 |
-
msgid "
|
| 197 |
-
msgstr "
|
| 198 |
|
| 199 |
-
#: core.php:
|
| 200 |
-
msgid "
|
| 201 |
-
msgstr "
|
| 202 |
|
| 203 |
-
#: core.php:
|
| 204 |
-
msgid "
|
| 205 |
-
msgstr "
|
| 206 |
|
| 207 |
-
#: core.php:
|
| 208 |
-
msgid "
|
| 209 |
-
msgstr "
|
| 210 |
|
| 211 |
-
#: core.php:
|
| 212 |
-
msgid "
|
| 213 |
-
msgstr "
|
| 214 |
|
| 215 |
-
#: core.php:
|
| 216 |
-
|
| 217 |
-
|
| 218 |
-
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
| 219 |
-
msgstr "Weergave van %s–%s van <span class=\"huidige-link-aantal\">%s</span>"
|
| 220 |
|
| 221 |
-
#: core.php:
|
| 222 |
-
|
| 223 |
-
|
|
|
|
| 224 |
|
| 225 |
-
#: core.php:
|
| 226 |
-
msgid "
|
| 227 |
-
msgstr "
|
| 228 |
|
| 229 |
-
#: core.php:
|
| 230 |
-
msgid "
|
| 231 |
-
|
|
|
|
|
|
|
| 232 |
|
| 233 |
-
#: core.php:
|
| 234 |
-
|
| 235 |
-
|
| 236 |
-
msgstr "Bewerk dit bericht"
|
| 237 |
|
| 238 |
-
#: core.php:
|
| 239 |
-
|
| 240 |
-
|
| 241 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 242 |
|
| 243 |
-
#: core.php:
|
| 244 |
-
msgid "
|
| 245 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 246 |
|
| 247 |
-
#: core.php:
|
| 248 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 249 |
msgid ""
|
| 250 |
-
"You
|
| 251 |
-
" 'Cancel' to stop, 'OK' to delete."
|
| 252 |
msgstr ""
|
| 253 |
-
"U
|
| 254 |
-
"
|
| 255 |
|
| 256 |
-
#: core.php:
|
| 257 |
-
|
| 258 |
-
|
| 259 |
-
msgstr "Verwijderen"
|
| 260 |
|
| 261 |
-
#: core.php:
|
| 262 |
-
|
| 263 |
-
|
| 264 |
-
msgstr "Toon \"%s\""
|
| 265 |
|
| 266 |
-
#: core.php:
|
| 267 |
-
msgid "
|
| 268 |
-
msgstr "
|
| 269 |
|
| 270 |
-
#: core.php:
|
| 271 |
-
|
| 272 |
-
|
| 273 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 274 |
|
| 275 |
-
#: core.php:
|
| 276 |
-
#, php-format
|
| 277 |
msgid ""
|
| 278 |
-
"
|
| 279 |
-
"
|
| 280 |
msgstr ""
|
| 281 |
-
"
|
| 282 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 283 |
|
| 284 |
-
#:
|
| 285 |
-
msgid "
|
| 286 |
-
msgstr "
|
| 287 |
|
| 288 |
-
#:
|
| 289 |
-
msgid "
|
| 290 |
-
msgstr "
|
| 291 |
|
| 292 |
-
#:
|
| 293 |
-
msgid "
|
| 294 |
-
msgstr "
|
| 295 |
|
| 296 |
-
#:
|
| 297 |
-
msgid "
|
| 298 |
-
msgstr "
|
| 299 |
|
| 300 |
-
#:
|
| 301 |
-
msgid "
|
| 302 |
-
|
|
|
|
|
|
|
|
|
|
| 303 |
|
| 304 |
-
#:
|
| 305 |
-
|
| 306 |
-
|
| 307 |
-
msgstr "Details"
|
| 308 |
|
| 309 |
-
#:
|
| 310 |
-
msgid "
|
| 311 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 312 |
|
| 313 |
-
#:
|
| 314 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 315 |
msgid "Unlink"
|
| 316 |
msgstr "ontkoppel"
|
| 317 |
|
| 318 |
-
#:
|
| 319 |
-
|
| 320 |
-
|
| 321 |
-
msgid "Excluded"
|
| 322 |
-
msgstr "Uitgesloten"
|
| 323 |
|
| 324 |
-
#:
|
| 325 |
-
msgid "
|
| 326 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 327 |
|
| 328 |
-
#:
|
| 329 |
-
|
| 330 |
-
|
| 331 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 332 |
|
| 333 |
-
#:
|
| 334 |
-
msgid "
|
| 335 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 336 |
|
| 337 |
-
#:
|
| 338 |
-
|
| 339 |
-
|
| 340 |
-
msgstr "Bewerk URL"
|
| 341 |
|
| 342 |
-
#:
|
| 343 |
-
msgid "
|
| 344 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 345 |
|
| 346 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 347 |
msgid "Cancel"
|
| 348 |
msgstr "Annuleren"
|
| 349 |
|
| 350 |
-
#:
|
| 351 |
-
msgid "
|
| 352 |
-
msgstr "
|
| 353 |
|
| 354 |
-
#:
|
| 355 |
-
|
| 356 |
-
|
| 357 |
-
msgstr "Negeren"
|
| 358 |
|
| 359 |
-
#:
|
| 360 |
-
|
| 361 |
-
|
| 362 |
-
|
| 363 |
-
msgstr "
|
|
|
|
|
|
|
| 364 |
|
| 365 |
-
#:
|
| 366 |
-
msgid "
|
| 367 |
-
msgstr "
|
| 368 |
|
| 369 |
-
#:
|
| 370 |
-
msgid "
|
| 371 |
-
msgstr "
|
| 372 |
|
| 373 |
-
#:
|
| 374 |
-
msgid "
|
| 375 |
-
msgstr "
|
| 376 |
|
| 377 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 378 |
msgid "Post published on"
|
| 379 |
msgstr "Bericht gepubliceer op"
|
| 380 |
|
| 381 |
-
#:
|
| 382 |
msgid "Link last checked"
|
| 383 |
-
msgstr "
|
| 384 |
|
| 385 |
-
#:
|
| 386 |
msgid "Never"
|
| 387 |
msgstr "Nooit"
|
| 388 |
|
| 389 |
-
#:
|
| 390 |
-
msgid "HTTP code"
|
| 391 |
-
msgstr "HTTP code"
|
| 392 |
-
|
| 393 |
-
#: core.php:1465
|
| 394 |
msgid "Response time"
|
| 395 |
msgstr "Responstijd"
|
| 396 |
|
| 397 |
-
#:
|
| 398 |
-
#, php-format
|
| 399 |
msgid "%2.3f seconds"
|
| 400 |
msgstr "%2.3f seconden"
|
| 401 |
|
| 402 |
-
#:
|
| 403 |
msgid "Final URL"
|
| 404 |
-
msgstr "
|
| 405 |
|
| 406 |
-
#:
|
| 407 |
msgid "Redirect count"
|
| 408 |
-
msgstr "
|
| 409 |
|
| 410 |
-
#:
|
| 411 |
msgid "Instance count"
|
| 412 |
msgstr "Aantal"
|
| 413 |
|
| 414 |
-
#:
|
| 415 |
-
#, php-format
|
| 416 |
msgid "This link has failed %d time."
|
| 417 |
msgid_plural "This link has failed %d times."
|
| 418 |
-
msgstr[0] "Deze
|
| 419 |
-
msgstr[1] "Deze
|
| 420 |
|
| 421 |
-
#:
|
| 422 |
-
|
| 423 |
-
|
| 424 |
-
msgstr "Deze koppeling is niet gecontroleerd omdat een overeenkomend sleutelwoord is gevonden in uw lijst van uitsluitingen."
|
| 425 |
|
| 426 |
-
#:
|
| 427 |
-
msgid "
|
| 428 |
-
msgstr "
|
| 429 |
|
| 430 |
-
#:
|
| 431 |
-
|
| 432 |
-
|
| 433 |
-
msgid_plural "Found %d broken links"
|
| 434 |
-
msgstr[0] "%d verbroken koppeling gevonden"
|
| 435 |
-
msgstr[1] "%d verbroken koppelingen gevonden"
|
| 436 |
|
| 437 |
-
#:
|
| 438 |
-
|
| 439 |
-
|
|
|
|
| 440 |
|
| 441 |
-
#:
|
| 442 |
-
|
| 443 |
-
|
| 444 |
-
msgid_plural "%d URLs in the work queue"
|
| 445 |
-
msgstr[0] "%d URL in de wachtrij"
|
| 446 |
-
msgstr[1] "%d URL's in de wachtrij"
|
| 447 |
|
| 448 |
-
#:
|
| 449 |
-
msgid "
|
| 450 |
-
msgstr "
|
| 451 |
-
|
| 452 |
-
#: core.php:1944
|
| 453 |
-
#, php-format
|
| 454 |
-
msgid "Detected %d unique URL"
|
| 455 |
-
msgid_plural "Detected %d unique URLs"
|
| 456 |
-
msgstr[0] "%d unieke URL ontdekt"
|
| 457 |
-
msgstr[1] "%d unieke URL's ontdekt"
|
| 458 |
-
|
| 459 |
-
#: core.php:1945
|
| 460 |
-
#, php-format
|
| 461 |
-
msgid "in %d link"
|
| 462 |
-
msgid_plural "in %d links"
|
| 463 |
-
msgstr[0] "In %d koppeling"
|
| 464 |
-
msgstr[1] "in %d koppelingen"
|
| 465 |
-
|
| 466 |
-
#: core.php:1950
|
| 467 |
-
msgid "and still searching..."
|
| 468 |
-
msgstr "en nog steeds aan 't zoeken..."
|
| 469 |
-
|
| 470 |
-
#: core.php:1956
|
| 471 |
-
msgid "Searching your blog for links..."
|
| 472 |
-
msgstr "Uw blog aan 't doorzoeken op koppelingen..."
|
| 473 |
|
| 474 |
-
#:
|
| 475 |
-
msgid "
|
| 476 |
-
msgstr "
|
| 477 |
|
| 478 |
-
#:
|
| 479 |
-
|
| 480 |
-
|
| 481 |
-
|
| 482 |
-
|
| 483 |
-
msgstr "U heeft geen toestemming om dat te doen!"
|
| 484 |
|
| 485 |
-
#:
|
| 486 |
-
|
| 487 |
-
|
| 488 |
-
|
| 489 |
-
|
| 490 |
-
msgid "Oops, I can't find the link %d"
|
| 491 |
-
msgstr "Oei, ik kan koppeling %d niet vinden"
|
| 492 |
|
| 493 |
-
#:
|
| 494 |
-
msgid "
|
| 495 |
-
msgstr "
|
| 496 |
|
| 497 |
-
#:
|
| 498 |
-
msgid "
|
| 499 |
-
msgstr "
|
| 500 |
|
| 501 |
-
#:
|
| 502 |
-
|
| 503 |
-
|
| 504 |
-
msgstr "Fout : link_id niet opgegeven"
|
| 505 |
|
| 506 |
-
#:
|
| 507 |
-
msgid "
|
| 508 |
-
msgstr "
|
| 509 |
|
| 510 |
-
#:
|
| 511 |
-
msgid "
|
| 512 |
-
msgstr "
|
| 513 |
|
| 514 |
-
#:
|
| 515 |
-
msgid "
|
| 516 |
-
msgstr "
|
| 517 |
|
| 518 |
-
#:
|
| 519 |
-
|
| 520 |
-
msgid "
|
| 521 |
-
msgstr "
|
| 522 |
|
| 523 |
-
#:
|
| 524 |
-
msgid "
|
| 525 |
-
msgstr "
|
| 526 |
|
| 527 |
-
#:
|
| 528 |
-
msgid "
|
| 529 |
-
msgstr "
|
| 530 |
|
| 531 |
-
#:
|
| 532 |
-
msgid "
|
| 533 |
-
msgstr "
|
| 534 |
|
| 535 |
-
#:
|
| 536 |
-
|
| 537 |
-
msgid "
|
| 538 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 539 |
|
| 540 |
-
#:
|
| 541 |
-
|
| 542 |
-
msgid "
|
| 543 |
-
msgstr "
|
| 544 |
|
| 545 |
-
#:
|
| 546 |
-
msgid "
|
| 547 |
-
msgstr "
|
| 548 |
|
| 549 |
-
#:
|
| 550 |
-
|
| 551 |
-
msgid "
|
| 552 |
-
msgstr "
|
| 553 |
|
| 554 |
-
#:
|
| 555 |
-
|
| 556 |
-
|
| 557 |
-
msgstr "Geef spv de map <code>%1$s</code> schrijfrechten voor invoegtoepassingen of <a href=\"%2$s\">stel een aangepaste tijdelijke map in</a>."
|
| 558 |
|
| 559 |
-
#:
|
| 560 |
-
msgid "
|
| 561 |
-
msgstr "
|
| 562 |
|
| 563 |
-
#:
|
| 564 |
msgid ""
|
| 565 |
-
"
|
| 566 |
-
"
|
| 567 |
-
|
| 568 |
-
"\
|
| 569 |
-
"
|
| 570 |
-
|
| 571 |
-
|
| 572 |
-
"
|
| 573 |
-
"\
|
| 574 |
-
|
| 575 |
-
|
| 576 |
-
"
|
| 577 |
-
"
|
| 578 |
-
|
| 579 |
-
|
| 580 |
-
|
| 581 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 582 |
|
| 583 |
-
#:
|
| 584 |
-
msgid "
|
| 585 |
-
msgstr "
|
| 586 |
|
| 587 |
-
#:
|
| 588 |
-
msgid "
|
| 589 |
-
msgstr "
|
| 590 |
|
| 591 |
-
#:
|
| 592 |
-
|
| 593 |
-
|
| 594 |
-
msgid "Not installed"
|
| 595 |
-
msgstr "Niet geïnstalleerd."
|
| 596 |
|
| 597 |
-
#:
|
| 598 |
-
msgid "
|
| 599 |
-
msgstr "
|
| 600 |
|
| 601 |
-
#:
|
| 602 |
-
msgid "
|
| 603 |
-
msgstr "
|
| 604 |
|
| 605 |
-
#:
|
| 606 |
-
msgid "
|
| 607 |
-
msgstr "
|
| 608 |
|
| 609 |
-
#:
|
| 610 |
-
msgid "
|
| 611 |
-
msgstr "
|
| 612 |
|
| 613 |
-
#:
|
| 614 |
-
msgid "
|
| 615 |
-
msgstr "
|
| 616 |
|
| 617 |
-
#:
|
| 618 |
-
|
| 619 |
-
|
| 620 |
-
msgstr "Uit"
|
| 621 |
|
| 622 |
-
#:
|
| 623 |
-
|
| 624 |
-
|
| 625 |
-
msgstr "Aan (%s)"
|
| 626 |
|
| 627 |
-
#:
|
| 628 |
-
msgid "
|
| 629 |
-
msgstr "
|
| 630 |
|
| 631 |
-
#:
|
| 632 |
-
msgid "
|
| 633 |
-
msgstr "
|
| 634 |
|
| 635 |
-
#:
|
| 636 |
-
msgid "
|
| 637 |
-
msgstr "
|
|
|
|
| 638 |
|
| 639 |
-
#:
|
| 640 |
-
|
| 641 |
-
|
| 642 |
-
msgstr "eerste poging : %d"
|
| 643 |
|
| 644 |
-
#:
|
| 645 |
-
msgid "
|
| 646 |
-
msgstr "
|
| 647 |
|
| 648 |
-
#:
|
| 649 |
-
msgid "
|
| 650 |
-
msgstr "
|
| 651 |
|
| 652 |
-
#:
|
| 653 |
-
|
| 654 |
-
|
| 655 |
-
msgstr "Tweede poging : %d"
|
| 656 |
|
| 657 |
-
#:
|
| 658 |
-
msgid "
|
| 659 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 660 |
|
| 661 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 662 |
msgid "Request timed out."
|
| 663 |
msgstr "Time-out voor Verzoek opgetreden."
|
| 664 |
|
| 665 |
-
#:
|
| 666 |
-
msgid "
|
| 667 |
-
msgstr "
|
| 668 |
|
| 669 |
-
#:
|
| 670 |
-
msgid "
|
| 671 |
-
msgstr "
|
| 672 |
|
| 673 |
-
#:
|
| 674 |
-
msgid "
|
| 675 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 676 |
|
| 677 |
-
#:
|
| 678 |
-
|
| 679 |
-
|
| 680 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 681 |
|
| 682 |
-
#:
|
| 683 |
-
|
| 684 |
-
|
| 685 |
-
msgstr "Fout bij het vernieuwen van de koppeling %d : %s"
|
| 686 |
|
| 687 |
-
|
| 688 |
-
msgid "
|
| 689 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 690 |
|
| 691 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 692 |
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 693 |
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 694 |
|
| 695 |
-
#. Description of
|
| 696 |
-
msgid "
|
| 697 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 698 |
|
| 699 |
-
#. Author of
|
| 700 |
msgid "Janis Elsts"
|
| 701 |
msgstr "Janis Elsts"
|
| 702 |
|
| 703 |
-
#. Author URI of
|
| 704 |
-
msgid "http://w-shadow.com/
|
| 705 |
-
msgstr "http://w-shadow.com/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 706 |
|
| 707 |
-
#~ msgid "hours"
|
| 708 |
-
#~ msgstr "uur"
|
| 709 |
-
#~ msgid "Apply"
|
| 710 |
-
#~ msgstr "Toepassen van "
|
| 711 |
#~ msgid ""
|
| 712 |
#~ "<span class='view'><a class='blc-details-button' href='javascript:void"
|
| 713 |
#~ "(0)' title='Show more info about this link'>Details</a>"
|
| 714 |
#~ msgstr ""
|
| 715 |
#~ "<span class='view'><a class='blc-details-button' href='javascript:void"
|
| 716 |
#~ "(0)' title='Toon meer info over deze link'>Details</a>"
|
|
|
|
| 717 |
#~ msgid ""
|
| 718 |
#~ "<span class='delete'><a class='submitdelete blc-unlink-button' "
|
| 719 |
#~ "title='Remove this link from all posts' id='unlink-button-$rownum' "
|
|
@@ -722,8 +1909,10 @@ msgstr "http://w-shadow.com/blog/"
|
|
| 722 |
#~ "<span class='delete'><a class='submitdelete blc-unlink-button' "
|
| 723 |
#~ "title='Verwijder deze link uit alle berichten' id='unlink-button-$rownum' "
|
| 724 |
#~ "href='javascript:void(0);'>Ontkoppel</a>"
|
|
|
|
| 725 |
#~ msgid "<span class='delete'>Excluded"
|
| 726 |
#~ msgstr "<span class='delete'>Uitgesloten"
|
|
|
|
| 727 |
#~ msgid ""
|
| 728 |
#~ "<span class='delete'><a class='submitdelete blc-exclude-button' "
|
| 729 |
#~ "title='Add this URL to the exclusion list' id='exclude-button-$rownum' "
|
|
@@ -732,31 +1921,35 @@ msgstr "http://w-shadow.com/blog/"
|
|
| 732 |
#~ "<span class='delete'><a class='submitdelete blc-unlink-button' "
|
| 733 |
#~ "title='Voeg deze URL toe aan de lijst met uitzonderingen' id='unlink-"
|
| 734 |
#~ "button-$rownum' href='javascript:void(0);'>Uitsluiten</a>"
|
|
|
|
| 735 |
#~ msgid ""
|
| 736 |
#~ "<span class='edit'><a href='javascript:void(0)' class='blc-edit-button' "
|
| 737 |
#~ "title='Edit link URL'>Edit URL</a>"
|
| 738 |
#~ msgstr ""
|
| 739 |
#~ "<span class='edit'><a href='javascript:void(0)' class='blc-edit-button' "
|
| 740 |
#~ "title='Bewerk link van URL'>Bewerk URL</a>"
|
|
|
|
| 741 |
#~ msgid "'Remove this message and mark the link as valid'>Discard"
|
| 742 |
#~ msgstr ""
|
| 743 |
#~ "'Verwijder deze boodschap en markeer de koppling als geldig'>Negeren"
|
|
|
|
| 744 |
#~ msgid ""
|
| 745 |
#~ "<a href='%stools.php?page=view-broken-links' title='View broken "
|
| 746 |
#~ "links'><strong>Found %d broken link%s</strong></a>"
|
| 747 |
#~ msgstr ""
|
| 748 |
#~ "<a href='%stools.php?page=view-broken-links' title='Bekijk verbroken "
|
| 749 |
#~ "links'><strong>%d verbroken link%s gevonden</strong></a>"
|
|
|
|
| 750 |
#~ msgid ""
|
| 751 |
#~ "<a class=\"row-title\" href=\"post.php?action=edit&post=$link"
|
| 752 |
#~ "[source_id]\" title=\"Edit this post\">{$link[post_title]}</a>"
|
| 753 |
#~ msgstr ""
|
| 754 |
#~ "<a class=\"row-title\" href=\"post.php?action=edit&post=$link"
|
| 755 |
#~ "[source_id]\" title=\"Bewerk dit bericht\">{$link[post_title]}</a>"
|
|
|
|
| 756 |
#~ msgid ""
|
| 757 |
#~ "<a class=\"row-title\" href=\"link.php?action=edit&link_id=$link"
|
| 758 |
#~ "[source_id]\" title=\"Edit this bookmark\">{$link[link_text]}</a>"
|
| 759 |
#~ msgstr ""
|
| 760 |
#~ "<a class=\"row-title\" href=\"link.php?action=edit&link_id=$link"
|
| 761 |
#~ "[source_id]\" title=\"Bewerk deze bladwijzer\">{$link[link_text]}</a>"
|
| 762 |
-
|
| 1 |
msgid ""
|
| 2 |
msgstr ""
|
| 3 |
"Project-Id-Version: Broken-link-checker\n"
|
| 4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 5 |
+
"POT-Creation-Date: 2013-06-23 07:51:56+00:00\n"
|
| 6 |
"PO-Revision-Date: \n"
|
| 7 |
+
"Last-Translator: Robin Roelofsen <info@dreamdesignsolutions.nl>\n"
|
| 8 |
"Language-Team: Brokenlinkchecker <gvmelle@gmail.com>\n"
|
| 9 |
+
"Language: nl_NL\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 |
"X-Poedit-KeywordsList: __;_e;_c\n"
|
| 15 |
"X-Poedit-Basepath: .\n"
|
| 16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 17 |
+
"X-Generator: Poedit 1.5.7\n"
|
| 18 |
"X-Poedit-SearchPath-0: .\n"
|
| 19 |
"X-Poedit-SearchPath-1: ..\n"
|
| 20 |
|
| 21 |
+
#: core/core.php:151 includes/admin/links-page-js.php:37
|
|
|
|
| 22 |
msgid "Loading..."
|
| 23 |
+
msgstr "Aan het laden..."
|
| 24 |
|
| 25 |
+
#: core/core.php:175 includes/admin/options-page-js.php:18
|
|
|
|
| 26 |
msgid "[ Network error ]"
|
| 27 |
+
msgstr "[ Netwerk fout ]"
|
| 28 |
|
| 29 |
+
#: core/core.php:202
|
| 30 |
msgid "Automatically expand the widget if broken links have been detected"
|
| 31 |
+
msgstr ""
|
| 32 |
+
"Automatisch de widget uitklappen wanneer er verbroken links zijn ontdekt"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
|
| 34 |
+
#: core/core.php:292
|
| 35 |
msgid "Link Checker Settings"
|
| 36 |
msgstr "Link Checker Instellingen"
|
| 37 |
|
| 38 |
+
#: core/core.php:293
|
| 39 |
msgid "Link Checker"
|
| 40 |
+
msgstr "Broken Link Checker"
|
| 41 |
+
|
| 42 |
+
#: core/core.php:298 includes/link-query.php:27
|
| 43 |
+
msgid "Broken Links"
|
| 44 |
+
msgstr "Verbroken Links"
|
| 45 |
|
| 46 |
+
#: core/core.php:314
|
| 47 |
msgid "View Broken Links"
|
| 48 |
+
msgstr "Bekijk Verbroken Links"
|
| 49 |
|
| 50 |
+
#: core/core.php:329
|
| 51 |
+
msgid "Feedback"
|
| 52 |
+
msgstr "Reacties"
|
|
|
|
| 53 |
|
| 54 |
+
#: core/core.php:337
|
| 55 |
+
msgid "Go to Broken Links"
|
| 56 |
+
msgstr "Ga naar Verbroken Links"
|
| 57 |
+
|
| 58 |
+
#: core/core.php:366
|
| 59 |
msgid "Settings"
|
| 60 |
msgstr "Instellingen"
|
| 61 |
|
| 62 |
+
#: core/core.php:533
|
| 63 |
+
msgid "Settings saved."
|
| 64 |
+
msgstr "Instellingen opgeslagen."
|
| 65 |
+
|
| 66 |
+
#: core/core.php:539
|
| 67 |
+
msgid "Thank you for your donation!"
|
| 68 |
+
msgstr "Bedankt voor je donatie!"
|
| 69 |
+
|
| 70 |
+
#: core/core.php:547
|
| 71 |
+
msgid "Complete site recheck started."
|
| 72 |
+
msgstr "Volledige site controle begonnen."
|
| 73 |
+
|
| 74 |
+
#: core/core.php:556
|
| 75 |
+
msgid "Details"
|
| 76 |
+
msgstr "Details"
|
| 77 |
+
|
| 78 |
+
#: core/core.php:570
|
| 79 |
+
msgid "General"
|
| 80 |
+
msgstr "Algemeen"
|
| 81 |
+
|
| 82 |
+
#: core/core.php:571
|
| 83 |
+
msgid "Look For Links In"
|
| 84 |
+
msgstr "Zoek Naar Links In"
|
| 85 |
+
|
| 86 |
+
#: core/core.php:572
|
| 87 |
+
msgid "Which Links To Check"
|
| 88 |
+
msgstr "Deze Links Controleren"
|
| 89 |
+
|
| 90 |
+
#: core/core.php:573
|
| 91 |
+
msgid "Protocols & APIs"
|
| 92 |
+
msgstr "Protocollen & APIs"
|
| 93 |
+
|
| 94 |
+
#: core/core.php:574
|
| 95 |
+
msgid "Advanced"
|
| 96 |
+
msgstr "Geavanceerd"
|
| 97 |
+
|
| 98 |
+
#: core/core.php:589
|
| 99 |
msgid "Broken Link Checker Options"
|
| 100 |
+
msgstr "Broken Link Checker Opties"
|
| 101 |
|
| 102 |
+
#: core/core.php:631 includes/admin/table-printer.php:197
|
| 103 |
msgid "Status"
|
| 104 |
+
msgstr "Status:"
|
| 105 |
|
| 106 |
+
#: core/core.php:633 includes/admin/options-page-js.php:56
|
|
|
|
| 107 |
msgid "Show debug info"
|
| 108 |
+
msgstr "Toon debug informatie"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
|
| 110 |
+
#: core/core.php:661
|
| 111 |
msgid "Check each link"
|
| 112 |
+
msgstr "Controleer iedere link:"
|
| 113 |
|
| 114 |
+
#: core/core.php:666
|
|
|
|
| 115 |
msgid "Every %s hours"
|
| 116 |
msgstr "Elke %s uur"
|
| 117 |
|
| 118 |
+
#: core/core.php:675
|
| 119 |
+
msgid ""
|
| 120 |
+
"Existing links will be checked this often. New links will usually be checked "
|
| 121 |
+
"ASAP."
|
| 122 |
+
msgstr ""
|
| 123 |
+
"Bestaande links zullen met deze regelmaat worden gecontroleerd. Nieuwe links "
|
| 124 |
+
"worden meestal zo snel mogelijk gecontroleerd. "
|
| 125 |
|
| 126 |
+
#: core/core.php:682
|
| 127 |
+
msgid "E-mail notifications"
|
| 128 |
+
msgstr "E-mail meldingen:"
|
| 129 |
|
| 130 |
+
#: core/core.php:688
|
| 131 |
+
msgid "Send me e-mail notifications about newly detected broken links"
|
| 132 |
+
msgstr "Stuur mij meldingen via e-mail over nieuw ontdekte verbroken links"
|
| 133 |
|
| 134 |
+
#: core/core.php:696
|
| 135 |
+
msgid "Send authors e-mail notifications about broken links in their posts"
|
| 136 |
+
msgstr ""
|
| 137 |
+
"Stuur schrijvers meldingen via e-mail over verbroken links in hun berichten"
|
| 138 |
|
| 139 |
+
#: core/core.php:703
|
| 140 |
+
msgid "Notification e-mail address"
|
| 141 |
+
msgstr "E-mail adres voor meldingen:"
|
| 142 |
|
| 143 |
+
#: core/core.php:715
|
| 144 |
+
msgid ""
|
| 145 |
+
"Leave empty to use the e-mail address specified in Settings → General."
|
| 146 |
+
msgstr ""
|
| 147 |
+
"Laat dit veld leeg om het e-mail adres te gebruiken dat is opgegeven bij "
|
| 148 |
+
"Instellingen → Algemeen."
|
| 149 |
|
| 150 |
+
#: core/core.php:722
|
| 151 |
+
msgid "Link tweaks"
|
| 152 |
+
msgstr "Link aanpassingen:"
|
| 153 |
|
| 154 |
+
#: core/core.php:728
|
| 155 |
+
msgid "Apply custom formatting to broken links"
|
| 156 |
+
msgstr "Speciale formattering toepassen op verbroken links"
|
| 157 |
+
|
| 158 |
+
#: core/core.php:732 core/core.php:763
|
| 159 |
+
msgid "Edit CSS"
|
| 160 |
+
msgstr "Bewerk CSS"
|
| 161 |
+
|
| 162 |
+
#: core/core.php:748
|
| 163 |
+
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
| 164 |
+
msgstr "Voorbeeld: Lorem ipsum <a %s>verbroken link</a>, dolor sit amet."
|
| 165 |
+
|
| 166 |
+
#: core/core.php:751 core/core.php:782
|
| 167 |
+
msgid "Click \"Save Changes\" to update example output."
|
| 168 |
+
msgstr "Klik op \"Instellingen opslaan\" om het voorbeeld te verversen."
|
| 169 |
+
|
| 170 |
+
#: core/core.php:759
|
| 171 |
+
msgid "Apply custom formatting to removed links"
|
| 172 |
+
msgstr "Speciale formattering toepassen op verwijderde links"
|
| 173 |
+
|
| 174 |
+
#: core/core.php:779
|
| 175 |
+
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
| 176 |
+
msgstr ""
|
| 177 |
+
"Voorbeeld: Lorem ipsum <span %s>verwijderde link</span>, dolor sit amet."
|
| 178 |
+
|
| 179 |
+
#: core/core.php:792
|
| 180 |
+
msgid "Stop search engines from following broken links"
|
| 181 |
+
msgstr "Verhinder dat zoekmachines verbroken links volgen"
|
| 182 |
+
|
| 183 |
+
#: core/core.php:809
|
| 184 |
+
msgid "Look for links in"
|
| 185 |
+
msgstr "Zoek naar links in:"
|
| 186 |
+
|
| 187 |
+
#: core/core.php:820
|
| 188 |
+
msgid "Post statuses"
|
| 189 |
+
msgstr "Bericht statussen:"
|
| 190 |
+
|
| 191 |
+
#: core/core.php:853
|
| 192 |
+
msgid "Link types"
|
| 193 |
+
msgstr "Linksoorten:"
|
| 194 |
+
|
| 195 |
+
#: core/core.php:859
|
| 196 |
+
msgid "Error : All link parsers missing!"
|
| 197 |
+
msgstr "Fout: alle linkparsers ontbreken! "
|
| 198 |
+
|
| 199 |
+
#: core/core.php:866
|
| 200 |
+
msgid "Exclusion list"
|
| 201 |
+
msgstr "Uitsluitingslijst:"
|
| 202 |
|
| 203 |
+
#: core/core.php:867
|
| 204 |
+
msgid ""
|
| 205 |
+
"Don't check links where the URL contains any of these words (one per line) :"
|
| 206 |
+
msgstr ""
|
| 207 |
+
"Controleer geen links waarbij de URL één of meerdere van deze woorden bevat "
|
| 208 |
+
"(één per regel):"
|
| 209 |
+
|
| 210 |
+
#: core/core.php:885
|
| 211 |
+
msgid "Check links using"
|
| 212 |
+
msgstr "Controleer links die gebruik maken van:"
|
| 213 |
+
|
| 214 |
+
#: core/core.php:904 includes/links.php:856
|
| 215 |
msgid "Timeout"
|
| 216 |
+
msgstr "Timeout:"
|
| 217 |
|
| 218 |
+
#: core/core.php:910 core/core.php:979 core/core.php:2823
|
|
|
|
|
|
|
| 219 |
msgid "%s seconds"
|
| 220 |
msgstr "%s seconden"
|
| 221 |
|
| 222 |
+
#: core/core.php:919
|
| 223 |
msgid "Links that take longer than this to load will be marked as broken."
|
| 224 |
+
msgstr ""
|
| 225 |
+
"Links die er langer over doen om te laden zullen worden aangemerkt als "
|
| 226 |
+
"verbroken."
|
| 227 |
|
| 228 |
+
#: core/core.php:926
|
| 229 |
+
msgid "Link monitor"
|
| 230 |
+
msgstr "Linkcontrole:"
|
| 231 |
|
| 232 |
+
#: core/core.php:934
|
| 233 |
+
msgid "Run continuously while the Dashboard is open"
|
| 234 |
+
msgstr "Draai continu zolang het Dashboard openstaat"
|
|
|
|
|
|
|
| 235 |
|
| 236 |
+
#: core/core.php:942
|
| 237 |
+
msgid "Run hourly in the background"
|
| 238 |
+
msgstr "Draai ieder uur in de achtergrond"
|
| 239 |
|
| 240 |
+
#: core/core.php:950
|
| 241 |
+
msgid "Show the dashboard widget for"
|
| 242 |
+
msgstr "Laat het Dashboard widget zien voor:"
|
| 243 |
|
| 244 |
+
#: core/core.php:955
|
| 245 |
+
msgctxt "dashboard widget visibility"
|
| 246 |
+
msgid "Administrator"
|
| 247 |
+
msgstr "Beheerder"
|
| 248 |
|
| 249 |
+
#: core/core.php:956
|
| 250 |
+
msgctxt "dashboard widget visibility"
|
| 251 |
+
msgid "Editor and above"
|
| 252 |
+
msgstr "Redacteur en hoger"
|
| 253 |
+
|
| 254 |
+
#: core/core.php:957
|
| 255 |
+
msgctxt "dashboard widget visibility"
|
| 256 |
+
msgid "Nobody (disables the widget)"
|
| 257 |
+
msgstr "Niemand (deze optie zet de widget uit)"
|
| 258 |
+
|
| 259 |
+
#: core/core.php:973
|
| 260 |
msgid "Max. execution time"
|
| 261 |
+
msgstr "Maximale uitvoeringstijd:"
|
| 262 |
+
|
| 263 |
+
#: core/core.php:990
|
| 264 |
+
msgid ""
|
| 265 |
+
"The plugin works by periodically launching a background job that parses your "
|
| 266 |
+
"posts for links, checks the discovered URLs, and performs other time-"
|
| 267 |
+
"consuming tasks. Here you can set for how long, at most, the link monitor "
|
| 268 |
+
"may run each time before stopping."
|
| 269 |
+
msgstr ""
|
| 270 |
+
"De plugin start regelmatig een proces in de achtergrond dat je berichten "
|
| 271 |
+
"controleert op links, de ontdekte links controleert, en andere tijdrovende "
|
| 272 |
+
"zaken uitvoert. Je kunt hier instellen hoe lang, op z'n langst, de "
|
| 273 |
+
"linkcontrole elke keer mag draaien voor het stopt."
|
| 274 |
+
|
| 275 |
+
#: core/core.php:999
|
| 276 |
+
msgid "Server load limit"
|
| 277 |
+
msgstr "Serverbelasting limiet:"
|
| 278 |
+
|
| 279 |
+
#: core/core.php:1014
|
| 280 |
+
msgid "Current load : %s"
|
| 281 |
+
msgstr "Huidige serverbelasting: %s"
|
| 282 |
|
| 283 |
+
#: core/core.php:1019
|
| 284 |
+
msgid ""
|
| 285 |
+
"Link checking will be suspended if the average <a href=\"%s\">server load</"
|
| 286 |
+
"a> rises above this number. Leave this field blank to disable load limiting."
|
| 287 |
+
msgstr ""
|
| 288 |
+
"Links controleren zal worden stopgezet wanneer de gemiddelde <a href=\"%s"
|
| 289 |
+
"\">serverbelasting</a> boven dit getal uitkomt. Laat dit veld leeg om "
|
| 290 |
+
"belastinglimitering uit te zetten."
|
| 291 |
+
|
| 292 |
+
#: core/core.php:1028
|
| 293 |
+
msgid "Not available"
|
| 294 |
+
msgstr "Niet beschikbaar"
|
| 295 |
+
|
| 296 |
+
#: core/core.php:1030
|
| 297 |
+
msgid ""
|
| 298 |
+
"Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
|
| 299 |
+
"code> is present and accessible."
|
| 300 |
+
msgstr ""
|
| 301 |
+
"Belastinglimitering werkt alleen op Linux-achtige systemen waar <code>/proc/"
|
| 302 |
+
"loadavg</code> aanwezig en bereikbaar is."
|
| 303 |
|
| 304 |
+
#: core/core.php:1038
|
| 305 |
+
msgid "Forced recheck"
|
| 306 |
+
msgstr "Geforceerd controleren:"
|
| 307 |
+
|
| 308 |
+
#: core/core.php:1041
|
| 309 |
+
msgid "Re-check all pages"
|
| 310 |
+
msgstr "Controleer nu all pagina's"
|
| 311 |
+
|
| 312 |
+
#: core/core.php:1045
|
| 313 |
+
msgid ""
|
| 314 |
+
"The \"Nuclear Option\". Click this button to make the plugin empty its link "
|
| 315 |
+
"database and recheck the entire site from scratch."
|
| 316 |
+
msgstr ""
|
| 317 |
+
"De \"Ultieme Optie\". Wanneer je op deze knop klikt maakt de plugin zijn "
|
| 318 |
+
"link database leeg, en controleert het programma de volledige site."
|
| 319 |
+
|
| 320 |
+
#: core/core.php:1056
|
| 321 |
msgid "Save Changes"
|
| 322 |
+
msgstr "Wijzigingen Opslaan"
|
| 323 |
|
| 324 |
+
#: core/core.php:1107
|
| 325 |
+
msgid "Configure"
|
| 326 |
+
msgstr "Configureer"
|
| 327 |
|
| 328 |
+
#: core/core.php:1189
|
| 329 |
+
msgid "Check URLs entered in these custom fields (one per line) :"
|
| 330 |
+
msgstr "Controleer de URLs die hieronder zijn ingevuld (één per regel):"
|
| 331 |
|
| 332 |
+
#: core/core.php:1317 core/core.php:1399 core/core.php:1431
|
| 333 |
+
msgid "Database error : %s"
|
| 334 |
+
msgstr "Database fout: %s"
|
| 335 |
+
|
| 336 |
+
#: core/core.php:1381
|
| 337 |
+
msgid "You must enter a filter name!"
|
| 338 |
+
msgstr "Je moet een filternaam invullen!"
|
| 339 |
+
|
| 340 |
+
#: core/core.php:1385
|
| 341 |
+
msgid "Invalid search query."
|
| 342 |
+
msgstr "Onjuiste zoekopdracht"
|
| 343 |
+
|
| 344 |
+
#: core/core.php:1394
|
| 345 |
+
msgid "Filter \"%s\" created"
|
| 346 |
+
msgstr "Filter \"%s\" aangemaakt"
|
| 347 |
+
|
| 348 |
+
#: core/core.php:1421
|
| 349 |
+
msgid "Filter ID not specified."
|
| 350 |
+
msgstr "Filter ID niet opgegeven."
|
| 351 |
+
|
| 352 |
+
#: core/core.php:1428
|
| 353 |
+
msgid "Filter deleted"
|
| 354 |
+
msgstr "Filter verwijderd"
|
| 355 |
+
|
| 356 |
+
#: core/core.php:1475
|
| 357 |
+
msgid "Replaced %d redirect with a direct link"
|
| 358 |
+
msgid_plural "Replaced %d redirects with direct links"
|
| 359 |
+
msgstr[0] "%d verwijzing vervangen door een directe link"
|
| 360 |
+
msgstr[1] "%d verwijzingen vervangen door een directe link."
|
| 361 |
+
|
| 362 |
+
#: core/core.php:1486
|
| 363 |
+
msgid "Failed to fix %d redirect"
|
| 364 |
+
msgid_plural "Failed to fix %d redirects"
|
| 365 |
+
msgstr[0] "Kon %d verwijzing niet repareren"
|
| 366 |
+
msgstr[1] "Kon %d verwijzingen niet repareren"
|
| 367 |
+
|
| 368 |
+
#: core/core.php:1497
|
| 369 |
+
msgid "None of the selected links are redirects!"
|
| 370 |
+
msgstr "Geen van de geselecteerde links zijn verwijzingen!"
|
| 371 |
+
|
| 372 |
+
#: core/core.php:1575
|
| 373 |
+
msgid "%d link updated."
|
| 374 |
+
msgid_plural "%d links updated."
|
| 375 |
+
msgstr[0] "%d link bijgewerkt."
|
| 376 |
+
msgstr[1] "%d links bijgewerkt."
|
| 377 |
+
|
| 378 |
+
#: core/core.php:1586
|
| 379 |
+
msgid "Failed to update %d link."
|
| 380 |
+
msgid_plural "Failed to update %d links."
|
| 381 |
+
msgstr[0] "Kon %d link niet aanpassen."
|
| 382 |
+
msgstr[1] "Kon %d links niet aanpassen."
|
| 383 |
+
|
| 384 |
+
#: core/core.php:1640
|
| 385 |
+
msgid "%d link removed"
|
| 386 |
+
msgid_plural "%d links removed"
|
| 387 |
+
msgstr[0] "%d link verwijderd"
|
| 388 |
+
msgstr[1] "%d links verwijderd"
|
| 389 |
+
|
| 390 |
+
#: core/core.php:1651
|
| 391 |
+
msgid "Failed to remove %d link"
|
| 392 |
+
msgid_plural "Failed to remove %d links"
|
| 393 |
+
msgstr[0] "Kon %d link niet verwijderen"
|
| 394 |
+
msgstr[1] "Kon %d links niet verwijderen"
|
| 395 |
+
|
| 396 |
+
#: core/core.php:1760
|
| 397 |
+
msgid ""
|
| 398 |
+
"%d item was skipped because it can't be moved to the Trash. You need to "
|
| 399 |
+
"delete it manually."
|
| 400 |
+
msgid_plural ""
|
| 401 |
+
"%d items were skipped because they can't be moved to the Trash. You need to "
|
| 402 |
+
"delete them manually."
|
| 403 |
+
msgstr[0] ""
|
| 404 |
+
"%d onderdeel is overgeslagen omdat het niet naar de Prullenbak kan worden "
|
| 405 |
+
"verplaatst. Je moet deze handmatig verwijderen."
|
| 406 |
+
msgstr[1] ""
|
| 407 |
+
"%d onderdelen zijn overgeslagen omdat het niet naar de Prullenbak kan worden "
|
| 408 |
+
"verplaatst. Je moet deze handmatig verwijderen."
|
| 409 |
+
|
| 410 |
+
#: core/core.php:1782
|
| 411 |
+
msgid "Didn't find anything to delete!"
|
| 412 |
+
msgstr "Kon niets vinden om te verwijderen!"
|
| 413 |
+
|
| 414 |
+
#: core/core.php:1810
|
| 415 |
+
msgid "%d link scheduled for rechecking"
|
| 416 |
+
msgid_plural "%d links scheduled for rechecking"
|
| 417 |
+
msgstr[0] "%d link ingepland voor controle"
|
| 418 |
+
msgstr[1] "%d links ingepland voor controle"
|
| 419 |
+
|
| 420 |
+
#: core/core.php:1856 core/core.php:2465
|
| 421 |
+
msgid "This link was manually marked as working by the user."
|
| 422 |
+
msgstr "Deze link is handmatig aangemerkt als werkend door de gebruiker."
|
| 423 |
|
| 424 |
+
#: core/core.php:1863
|
| 425 |
+
msgid "Couldn't modify link %d"
|
| 426 |
+
msgstr "Kon deze link niet bewerken: %d"
|
| 427 |
|
| 428 |
+
#: core/core.php:1873
|
| 429 |
+
msgid "%d link marked as not broken"
|
| 430 |
+
msgid_plural "%d links marked as not broken"
|
| 431 |
+
msgstr[0] "%d link gemarkeerd als niet verbroken"
|
| 432 |
+
msgstr[1] "%d links gemarkeerd als niet verbroken"
|
| 433 |
|
| 434 |
+
#: core/core.php:1913
|
| 435 |
+
msgid "Table columns"
|
| 436 |
+
msgstr "Tabel colommen"
|
| 437 |
|
| 438 |
+
#: core/core.php:1932
|
| 439 |
+
msgid "Show on screen"
|
| 440 |
+
msgstr "Toon op scherm"
|
| 441 |
|
| 442 |
+
#: core/core.php:1939
|
| 443 |
+
msgid "links"
|
| 444 |
+
msgstr "links"
|
| 445 |
|
| 446 |
+
#: core/core.php:1940 includes/admin/table-printer.php:165
|
| 447 |
+
msgid "Apply"
|
| 448 |
+
msgstr "Toepassen"
|
| 449 |
|
| 450 |
+
#: core/core.php:1944
|
| 451 |
+
msgid "Misc"
|
| 452 |
+
msgstr "Divers"
|
| 453 |
|
| 454 |
+
#: core/core.php:1959
|
| 455 |
+
msgid "Highlight links broken for at least %s days"
|
| 456 |
+
msgstr "Laat links zien die minstens %s dagen verbroken zijn"
|
| 457 |
|
| 458 |
+
#: core/core.php:1968
|
| 459 |
+
msgid "Color-code status codes"
|
| 460 |
+
msgstr "Kleurcodering voor status codes"
|
|
|
|
|
|
|
| 461 |
|
| 462 |
+
#: core/core.php:1985 core/core.php:2450 core/core.php:2490 core/core.php:2523
|
| 463 |
+
#: core/core.php:2586
|
| 464 |
+
msgid "You're not allowed to do that!"
|
| 465 |
+
msgstr "Je hebt geen toestemming om dat te doen!"
|
| 466 |
|
| 467 |
+
#: core/core.php:2320
|
| 468 |
+
msgid "View broken links"
|
| 469 |
+
msgstr "Bekijk verbroken links"
|
| 470 |
|
| 471 |
+
#: core/core.php:2321
|
| 472 |
+
msgid "Found %d broken link"
|
| 473 |
+
msgid_plural "Found %d broken links"
|
| 474 |
+
msgstr[0] "%d verbroken link gevonden"
|
| 475 |
+
msgstr[1] "%d verbroken links gevonden"
|
| 476 |
|
| 477 |
+
#: core/core.php:2327
|
| 478 |
+
msgid "No broken links found."
|
| 479 |
+
msgstr "Geen verbroken links gevonden."
|
|
|
|
| 480 |
|
| 481 |
+
#: core/core.php:2334
|
| 482 |
+
msgid "%d URL in the work queue"
|
| 483 |
+
msgid_plural "%d URLs in the work queue"
|
| 484 |
+
msgstr[0] "%d URL in de wachtrij"
|
| 485 |
+
msgstr[1] "%d URL's in de wachtrij"
|
| 486 |
+
|
| 487 |
+
#: core/core.php:2337
|
| 488 |
+
msgid "No URLs in the work queue."
|
| 489 |
+
msgstr "Geen URLs meer in de wachtrij."
|
| 490 |
+
|
| 491 |
+
#: core/core.php:2343
|
| 492 |
+
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 493 |
+
msgid "%d unique URL"
|
| 494 |
+
msgid_plural "%d unique URLs"
|
| 495 |
+
msgstr[0] "%d unieke URL"
|
| 496 |
+
msgstr[1] "%d unieke URLs"
|
| 497 |
+
|
| 498 |
+
#: core/core.php:2347
|
| 499 |
+
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 500 |
+
msgid "%d link"
|
| 501 |
+
msgid_plural "%d links"
|
| 502 |
+
msgstr[0] "%d link"
|
| 503 |
+
msgstr[1] "%d links"
|
| 504 |
+
|
| 505 |
+
#: core/core.php:2353
|
| 506 |
+
msgid "Detected %1$s in %2$s and still searching..."
|
| 507 |
+
msgstr "%1$s in %2$s gevonden, en nog steeds aan 't zoeken..."
|
| 508 |
+
|
| 509 |
+
#: core/core.php:2359
|
| 510 |
+
msgid "Detected %1$s in %2$s."
|
| 511 |
+
msgstr "%1$s in %2$s gevonden."
|
| 512 |
+
|
| 513 |
+
#: core/core.php:2366
|
| 514 |
+
msgid "Searching your blog for links..."
|
| 515 |
+
msgstr "Uw blog aan 't doorzoeken naar links..."
|
| 516 |
+
|
| 517 |
+
#: core/core.php:2368
|
| 518 |
+
msgid "No links detected."
|
| 519 |
+
msgstr "Geen links gevonden."
|
| 520 |
+
|
| 521 |
+
#: core/core.php:2394
|
| 522 |
+
msgctxt "current load"
|
| 523 |
+
msgid "Unknown"
|
| 524 |
+
msgstr "Onbekend"
|
| 525 |
+
|
| 526 |
+
#: core/core.php:2458 core/core.php:2498 core/core.php:2533 core/core.php:2596
|
| 527 |
+
msgid "Oops, I can't find the link %d"
|
| 528 |
+
msgstr "Oeps, ik kan link %d niet vinden"
|
| 529 |
+
|
| 530 |
+
#: core/core.php:2471 core/core.php:2508
|
| 531 |
+
msgid "Oops, couldn't modify the link!"
|
| 532 |
+
msgstr "Oeps, ik kan deze link niet aanpassen!"
|
| 533 |
+
|
| 534 |
+
#: core/core.php:2474 core/core.php:2511 core/core.php:2622
|
| 535 |
+
msgid "Error : link_id not specified"
|
| 536 |
+
msgstr "Fout : link_id niet opgegeven"
|
| 537 |
+
|
| 538 |
+
#: core/core.php:2543
|
| 539 |
+
msgid "Oops, the new URL is invalid!"
|
| 540 |
+
msgstr "Oeps, de nieuwe URL is ongeldig!"
|
| 541 |
+
|
| 542 |
+
#: core/core.php:2554 core/core.php:2605
|
| 543 |
+
msgid "An unexpected error occured!"
|
| 544 |
+
msgstr "Er is een onverwachte fout opgetreden!"
|
| 545 |
+
|
| 546 |
+
#: core/core.php:2572
|
| 547 |
+
msgid "Error : link_id or new_url not specified"
|
| 548 |
+
msgstr "Fout: link_id of new_url niet opgegeven"
|
| 549 |
+
|
| 550 |
+
#: core/core.php:2631
|
| 551 |
+
msgid "You don't have sufficient privileges to access this information!"
|
| 552 |
+
msgstr "U heeft niet genoeg rechten om deze informatie te bekijken! "
|
| 553 |
+
|
| 554 |
+
#: core/core.php:2644
|
| 555 |
+
msgid "Error : link ID not specified"
|
| 556 |
+
msgstr "Fout : link ID niet opgegeven"
|
| 557 |
|
| 558 |
+
#: core/core.php:2658
|
| 559 |
+
msgid "Failed to load link details (%s)"
|
| 560 |
+
msgstr "Kon linkgegevens (%s) niet laden"
|
| 561 |
+
|
| 562 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.8) #-#-#-#-#
|
| 563 |
+
#. Plugin Name of the plugin/theme
|
| 564 |
+
#: core/core.php:2712
|
| 565 |
+
msgid "Broken Link Checker"
|
| 566 |
+
msgstr "Broken Link Checker"
|
| 567 |
|
| 568 |
+
#: core/core.php:2732
|
| 569 |
+
msgid "PHP version"
|
| 570 |
+
msgstr "PHP versie"
|
| 571 |
+
|
| 572 |
+
#: core/core.php:2738
|
| 573 |
+
msgid "MySQL version"
|
| 574 |
+
msgstr "MySQL versie"
|
| 575 |
+
|
| 576 |
+
#: core/core.php:2751
|
| 577 |
msgid ""
|
| 578 |
+
"You have an old version of CURL. Redirect detection may not work properly."
|
|
|
|
| 579 |
msgstr ""
|
| 580 |
+
"U draait een oude versie van CURL. Omleidingsdetectie werkt misschien niet "
|
| 581 |
+
"goed."
|
| 582 |
|
| 583 |
+
#: core/core.php:2763 core/core.php:2779 core/core.php:2784
|
| 584 |
+
msgid "Not installed"
|
| 585 |
+
msgstr "Niet geïnstalleerd."
|
|
|
|
| 586 |
|
| 587 |
+
#: core/core.php:2766
|
| 588 |
+
msgid "CURL version"
|
| 589 |
+
msgstr "CURL versie"
|
|
|
|
| 590 |
|
| 591 |
+
#: core/core.php:2772
|
| 592 |
+
msgid "Installed"
|
| 593 |
+
msgstr "Geïnstalleerd."
|
| 594 |
|
| 595 |
+
#: core/core.php:2785
|
| 596 |
+
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
| 597 |
+
msgstr ""
|
| 598 |
+
"U moet CURL of Snoopy hebben geïnstalleerd. Anders werkt de plugin niet!"
|
| 599 |
+
|
| 600 |
+
#: core/core.php:2796
|
| 601 |
+
msgid "On"
|
| 602 |
+
msgstr "Aan"
|
| 603 |
+
|
| 604 |
+
#: core/core.php:2797
|
| 605 |
+
msgid "Redirects may be detected as broken links when safe_mode is on."
|
| 606 |
+
msgstr ""
|
| 607 |
+
"Omgeleide links worden misschien gezien als verbroken links wanneer "
|
| 608 |
+
"safe_mode aan staat."
|
| 609 |
+
|
| 610 |
+
#: core/core.php:2802 core/core.php:2816
|
| 611 |
+
msgid "Off"
|
| 612 |
+
msgstr "Uit"
|
| 613 |
+
|
| 614 |
+
#: core/core.php:2810
|
| 615 |
+
msgid "On ( %s )"
|
| 616 |
+
msgstr "Aan (%s)"
|
| 617 |
+
|
| 618 |
+
#: core/core.php:2811
|
| 619 |
+
msgid "Redirects may be detected as broken links when open_basedir is on."
|
| 620 |
+
msgstr ""
|
| 621 |
+
"Omgeleide link worden misschien gezien als verbroken links wanneer "
|
| 622 |
+
"open_basedir aan staan."
|
| 623 |
|
| 624 |
+
#: core/core.php:2840
|
|
|
|
| 625 |
msgid ""
|
| 626 |
+
"If this value is zero even after several page reloads you have probably "
|
| 627 |
+
"encountered a bug."
|
| 628 |
msgstr ""
|
| 629 |
+
"Wanneer deze waarde op nul staat, ook na het meerdere malen herladen van de "
|
| 630 |
+
"pagina, heb je waarschijnlijk eenn bug ontdekt."
|
| 631 |
+
|
| 632 |
+
#: core/core.php:2935 core/core.php:3033
|
| 633 |
+
msgid "[%s] Broken links detected"
|
| 634 |
+
msgstr "[%s] verbroken links gevonden"
|
| 635 |
+
|
| 636 |
+
#: core/core.php:2940
|
| 637 |
+
msgid "Broken Link Checker has detected %d new broken link on your site."
|
| 638 |
+
msgid_plural ""
|
| 639 |
+
"Broken Link Checker has detected %d new broken links on your site."
|
| 640 |
+
msgstr[0] ""
|
| 641 |
+
"Broken Link Checker heeft %d nieuwe verbroken link op jouw site gevonden."
|
| 642 |
+
msgstr[1] ""
|
| 643 |
+
"Broken Link Checker heeft %d nieuwe verbroken links op jouw site gevonden."
|
| 644 |
+
|
| 645 |
+
#: core/core.php:2963
|
| 646 |
+
msgid "Here's a list of the first %d broken links:"
|
| 647 |
+
msgid_plural "Here's a list of the first %d broken links:"
|
| 648 |
+
msgstr[0] "Hier is een lijst van de eerste %d verbroken links:"
|
| 649 |
+
msgstr[1] "Hier is een lijst van de eerste %d verbroken links:"
|
| 650 |
+
|
| 651 |
+
#: core/core.php:2972
|
| 652 |
+
msgid "Here's a list of the new broken links: "
|
| 653 |
+
msgstr "Hier is een lijst van de nieuwe verbroken links:"
|
| 654 |
+
|
| 655 |
+
#: core/core.php:2981
|
| 656 |
+
msgid "Link text : %s"
|
| 657 |
+
msgstr "Linktekst: %s"
|
| 658 |
+
|
| 659 |
+
#: core/core.php:2982
|
| 660 |
+
msgid "Link URL : <a href=\"%s\">%s</a>"
|
| 661 |
+
msgstr "Link URL : <a href=\"%s\">%s</a>"
|
| 662 |
+
|
| 663 |
+
#: core/core.php:2983
|
| 664 |
+
msgid "Source : %s"
|
| 665 |
+
msgstr "Bron: %s"
|
| 666 |
+
|
| 667 |
+
#: core/core.php:2996
|
| 668 |
+
msgid "You can see all broken links here:"
|
| 669 |
+
msgstr "Je kunt hier alle verbroken links zien:"
|
| 670 |
+
|
| 671 |
+
#: core/core.php:3038
|
| 672 |
+
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
| 673 |
+
msgid_plural ""
|
| 674 |
+
"Broken Link Checker has detected %d new broken links in your posts."
|
| 675 |
+
msgstr[0] ""
|
| 676 |
+
"Broken Link Checker heeft %d nieuwe verbroken link in jouw berichten "
|
| 677 |
+
"gevonden."
|
| 678 |
+
msgstr[1] ""
|
| 679 |
+
"Broken Link Checker heeft %d nieuwe verbroken links in jouw berichten "
|
| 680 |
+
"gevonden."
|
| 681 |
+
|
| 682 |
+
#: core/init.php:240
|
| 683 |
+
msgid "Once Weekly"
|
| 684 |
+
msgstr "Wekelijks"
|
| 685 |
+
|
| 686 |
+
#: core/init.php:246
|
| 687 |
+
msgid "Twice a Month"
|
| 688 |
+
msgstr "Twee Keer per Maand"
|
| 689 |
+
|
| 690 |
+
#: core/init.php:322
|
| 691 |
+
msgid ""
|
| 692 |
+
"Broken Link Checker installation failed. Try deactivating and then "
|
| 693 |
+
"reactivating the plugin."
|
| 694 |
+
msgstr ""
|
| 695 |
+
"De installatie van Broken Link Checker is mislukt. Probeer de plugin te "
|
| 696 |
+
"deactiveren en weer te activeren."
|
| 697 |
|
| 698 |
+
#: includes/admin/db-upgrade.php:95
|
| 699 |
+
msgid "Failed to delete old DB tables. Database error : %s"
|
| 700 |
+
msgstr "Kon de oude databasetabellen niet verwijderen. Database fout: %s"
|
| 701 |
|
| 702 |
+
#: includes/admin/links-page-js.php:55 includes/admin/links-page-js.php:403
|
| 703 |
+
msgid "Wait..."
|
| 704 |
+
msgstr "Wachten..."
|
| 705 |
|
| 706 |
+
#: includes/admin/links-page-js.php:100 includes/admin/table-printer.php:630
|
| 707 |
+
msgid "Not broken"
|
| 708 |
+
msgstr "Niet verbroken"
|
| 709 |
|
| 710 |
+
#: includes/admin/links-page-js.php:315
|
| 711 |
+
msgid "%d instances of the link were successfully modified."
|
| 712 |
+
msgstr "%d links zijn met succes aangepast."
|
| 713 |
|
| 714 |
+
#: includes/admin/links-page-js.php:321
|
| 715 |
+
msgid ""
|
| 716 |
+
"However, %d instances couldn't be edited and still point to the old URL."
|
| 717 |
+
msgstr ""
|
| 718 |
+
"Alleen konden %d links niet worden aangepast, en deze wijzen nog steeds naar "
|
| 719 |
+
"de oude URL."
|
| 720 |
|
| 721 |
+
#: includes/admin/links-page-js.php:327
|
| 722 |
+
msgid "The link could not be modified."
|
| 723 |
+
msgstr "De link kon niet worden aangepast."
|
|
|
|
| 724 |
|
| 725 |
+
#: includes/admin/links-page-js.php:330 includes/admin/links-page-js.php:455
|
| 726 |
+
msgid "The following error(s) occured :"
|
| 727 |
+
msgstr "De volgende fout(en) kwam(en) voor:"
|
| 728 |
+
|
| 729 |
+
#: includes/admin/links-page-js.php:441
|
| 730 |
+
msgid "%d instances of the link were successfully unlinked."
|
| 731 |
+
msgstr "%d links zijn met succes verwijderd."
|
| 732 |
+
|
| 733 |
+
#: includes/admin/links-page-js.php:447
|
| 734 |
+
msgid "However, %d instances couldn't be removed."
|
| 735 |
+
msgstr "%d links konden echter niet worden verwijderd."
|
| 736 |
|
| 737 |
+
#: includes/admin/links-page-js.php:452
|
| 738 |
+
msgid "The plugin failed to remove the link."
|
| 739 |
+
msgstr "De plugin kon de link niet verwijderen."
|
| 740 |
+
|
| 741 |
+
#: includes/admin/links-page-js.php:463 includes/admin/table-printer.php:273
|
| 742 |
+
#: includes/admin/table-printer.php:624
|
| 743 |
msgid "Unlink"
|
| 744 |
msgstr "ontkoppel"
|
| 745 |
|
| 746 |
+
#: includes/admin/links-page-js.php:507
|
| 747 |
+
msgid "Enter a name for the new custom filter"
|
| 748 |
+
msgstr "Geef een naam aan het nieuwe filter"
|
|
|
|
|
|
|
| 749 |
|
| 750 |
+
#: includes/admin/links-page-js.php:518
|
| 751 |
+
msgid ""
|
| 752 |
+
"You are about to delete the current filter.\n"
|
| 753 |
+
"'Cancel' to stop, 'OK' to delete"
|
| 754 |
+
msgstr ""
|
| 755 |
+
"Je staat op het punt om het huidige filter te verwijderen.\n"
|
| 756 |
+
"'Annuleren' om te annuleren, 'OK' om te verwijderen"
|
| 757 |
|
| 758 |
+
#: includes/admin/links-page-js.php:538
|
| 759 |
+
msgid ""
|
| 760 |
+
"Are you sure you want to delete all posts, bookmarks or other items that "
|
| 761 |
+
"contain any of the selected links? This action can't be undone.\n"
|
| 762 |
+
"'Cancel' to stop, 'OK' to delete"
|
| 763 |
+
msgstr ""
|
| 764 |
+
"Weet u zeker dat u alle berichten, bladwijzers en andere onderdelen die één "
|
| 765 |
+
"van de geselecteerde links bevat wilt verijwderen? Dit kan niet "
|
| 766 |
+
"teruggedraaid worden.\n"
|
| 767 |
+
"'Annuleren' om te annuleren, 'OK' om te verwijderen"
|
| 768 |
|
| 769 |
+
#: includes/admin/links-page-js.php:548
|
| 770 |
+
msgid ""
|
| 771 |
+
"Are you sure you want to remove the selected links? This action can't be "
|
| 772 |
+
"undone.\n"
|
| 773 |
+
"'Cancel' to stop, 'OK' to remove"
|
| 774 |
+
msgstr ""
|
| 775 |
+
"Weet je zeker dat je de geselecteerde links wilt verwijderen? Dit kan niet "
|
| 776 |
+
"teruggedraaid worden.\n"
|
| 777 |
+
"'Annuleren' om te annuleren, 'OK' om te verwijderen"
|
| 778 |
|
| 779 |
+
#: includes/admin/links-page-js.php:657
|
| 780 |
+
msgid "Enter a search string first."
|
| 781 |
+
msgstr "Vul eerst een zoekopdracht in."
|
|
|
|
| 782 |
|
| 783 |
+
#: includes/admin/links-page-js.php:664
|
| 784 |
+
msgid "Select one or more links to edit."
|
| 785 |
+
msgstr "Selecteer één of meerdere links om aan te passen."
|
| 786 |
+
|
| 787 |
+
#: includes/admin/options-page-js.php:54
|
| 788 |
+
msgid "Hide debug info"
|
| 789 |
+
msgstr "Verberg Foutopsporingsinformatie"
|
| 790 |
+
|
| 791 |
+
#: includes/admin/search-form.php:16
|
| 792 |
+
msgid "Save This Search As a Filter"
|
| 793 |
+
msgstr "Sla deze Zoekopdracht op als Filter"
|
| 794 |
+
|
| 795 |
+
#: includes/admin/search-form.php:26
|
| 796 |
+
msgid "Delete This Filter"
|
| 797 |
+
msgstr "Verwijder Dit Filter"
|
| 798 |
+
|
| 799 |
+
#: includes/admin/search-form.php:32 includes/link-query.php:65
|
| 800 |
+
msgid "Search"
|
| 801 |
+
msgstr "Zoek"
|
| 802 |
+
|
| 803 |
+
#: includes/admin/search-form.php:42
|
| 804 |
+
msgid "Link text"
|
| 805 |
+
msgstr "Link tekst"
|
| 806 |
+
|
| 807 |
+
#: includes/admin/search-form.php:45 includes/admin/table-printer.php:202
|
| 808 |
+
msgid "URL"
|
| 809 |
+
msgstr "URL"
|
| 810 |
|
| 811 |
+
#: includes/admin/search-form.php:48 includes/admin/table-printer.php:491
|
| 812 |
+
msgid "HTTP code"
|
| 813 |
+
msgstr "HTTP code"
|
| 814 |
+
|
| 815 |
+
#: includes/admin/search-form.php:51
|
| 816 |
+
msgid "Link status"
|
| 817 |
+
msgstr "Link status"
|
| 818 |
+
|
| 819 |
+
#: includes/admin/search-form.php:68 includes/admin/search-form.php:85
|
| 820 |
+
msgid "Link type"
|
| 821 |
+
msgstr "Link type"
|
| 822 |
+
|
| 823 |
+
#: includes/admin/search-form.php:70
|
| 824 |
+
msgid "Any"
|
| 825 |
+
msgstr "Elke"
|
| 826 |
+
|
| 827 |
+
#: includes/admin/search-form.php:74
|
| 828 |
+
msgid "Links used in"
|
| 829 |
+
msgstr "Links gebruikt in"
|
| 830 |
+
|
| 831 |
+
#: includes/admin/search-form.php:112
|
| 832 |
+
msgid "Search Links"
|
| 833 |
+
msgstr "Zoek Links"
|
| 834 |
+
|
| 835 |
+
#: includes/admin/search-form.php:113 includes/admin/table-printer.php:349
|
| 836 |
+
#: includes/admin/table-printer.php:652 includes/admin/table-printer.php:658
|
| 837 |
msgid "Cancel"
|
| 838 |
msgstr "Annuleren"
|
| 839 |
|
| 840 |
+
#: includes/admin/sidebar.php:24
|
| 841 |
+
msgid "More plugins by Janis Elsts"
|
| 842 |
+
msgstr "Meer plugins van Janis Elsts"
|
| 843 |
|
| 844 |
+
#: includes/admin/sidebar.php:47
|
| 845 |
+
msgid "Donate $10, $20 or $50!"
|
| 846 |
+
msgstr "Doneer $10, $20 of $50!"
|
|
|
|
| 847 |
|
| 848 |
+
#: includes/admin/sidebar.php:50
|
| 849 |
+
msgid ""
|
| 850 |
+
"If you like this plugin, please donate to support development and "
|
| 851 |
+
"maintenance!"
|
| 852 |
+
msgstr ""
|
| 853 |
+
"Bevalt deze plugin, help dan verdere ontwikkeling en onderhoud te "
|
| 854 |
+
"ondersteunen door een bedrag te doneren!"
|
| 855 |
|
| 856 |
+
#: includes/admin/sidebar.php:68
|
| 857 |
+
msgid "Return to WordPress Dashboard"
|
| 858 |
+
msgstr "Ga terug naar het WordPress Dashboard"
|
| 859 |
|
| 860 |
+
#: includes/admin/table-printer.php:179
|
| 861 |
+
msgid "Compact View"
|
| 862 |
+
msgstr "Compacte Weergave"
|
| 863 |
|
| 864 |
+
#: includes/admin/table-printer.php:180
|
| 865 |
+
msgid "Detailed View"
|
| 866 |
+
msgstr "Gedetailleerde Weergave"
|
| 867 |
|
| 868 |
+
#: includes/admin/table-printer.php:209
|
| 869 |
+
msgid "Source"
|
| 870 |
+
msgstr "Bron"
|
| 871 |
+
|
| 872 |
+
#: includes/admin/table-printer.php:215
|
| 873 |
+
msgid "Link Text"
|
| 874 |
+
msgstr "Link Tekst"
|
| 875 |
+
|
| 876 |
+
#: includes/admin/table-printer.php:220
|
| 877 |
+
msgid "Redirect URL"
|
| 878 |
+
msgstr "URL omleiden"
|
| 879 |
+
|
| 880 |
+
#: includes/admin/table-printer.php:268
|
| 881 |
+
msgid "Bulk Actions"
|
| 882 |
+
msgstr "Meerdere Acties"
|
| 883 |
+
|
| 884 |
+
#: includes/admin/table-printer.php:269 includes/admin/table-printer.php:621
|
| 885 |
+
msgid "Edit URL"
|
| 886 |
+
msgstr "Bewerk URL"
|
| 887 |
+
|
| 888 |
+
#: includes/admin/table-printer.php:270
|
| 889 |
+
msgid "Recheck"
|
| 890 |
+
msgstr "Controleer"
|
| 891 |
+
|
| 892 |
+
#: includes/admin/table-printer.php:271
|
| 893 |
+
msgid "Fix redirects"
|
| 894 |
+
msgstr "Omleidingen repareren"
|
| 895 |
+
|
| 896 |
+
#: includes/admin/table-printer.php:272
|
| 897 |
+
msgid "Mark as not broken"
|
| 898 |
+
msgstr "Markeer als niet verbroken"
|
| 899 |
+
|
| 900 |
+
#: includes/admin/table-printer.php:276
|
| 901 |
+
msgid "Move sources to Trash"
|
| 902 |
+
msgstr "Verplaats bronnen naar Prullenbak"
|
| 903 |
+
|
| 904 |
+
#: includes/admin/table-printer.php:278
|
| 905 |
+
msgid "Delete sources"
|
| 906 |
+
msgstr "Verwijder bronnen"
|
| 907 |
+
|
| 908 |
+
#: includes/admin/table-printer.php:293
|
| 909 |
+
msgid "«"
|
| 910 |
+
msgstr "«"
|
| 911 |
+
|
| 912 |
+
#: includes/admin/table-printer.php:294
|
| 913 |
+
msgid "»"
|
| 914 |
+
msgstr "»"
|
| 915 |
+
|
| 916 |
+
#: includes/admin/table-printer.php:302
|
| 917 |
+
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
| 918 |
+
msgstr ""
|
| 919 |
+
"Weergave van %s–%s van <span class=\"huidige-link-aantal\">%s</span>"
|
| 920 |
+
|
| 921 |
+
#: includes/admin/table-printer.php:325
|
| 922 |
+
msgid "Bulk Edit URLs"
|
| 923 |
+
msgstr "Meerdere URLs Bewerken"
|
| 924 |
+
|
| 925 |
+
#: includes/admin/table-printer.php:327
|
| 926 |
+
msgid "Find"
|
| 927 |
+
msgstr "Zoek"
|
| 928 |
+
|
| 929 |
+
#: includes/admin/table-printer.php:331
|
| 930 |
+
msgid "Replace with"
|
| 931 |
+
msgstr "Vervang door"
|
| 932 |
+
|
| 933 |
+
#: includes/admin/table-printer.php:339
|
| 934 |
+
msgid "Case sensitive"
|
| 935 |
+
msgstr "Hoofdlettergevoelig"
|
| 936 |
+
|
| 937 |
+
#: includes/admin/table-printer.php:343
|
| 938 |
+
msgid "Regular expression"
|
| 939 |
+
msgstr "Reguliere expressie"
|
| 940 |
+
|
| 941 |
+
#: includes/admin/table-printer.php:351
|
| 942 |
+
msgid "Update"
|
| 943 |
+
msgstr "Aanpassen"
|
| 944 |
+
|
| 945 |
+
#: includes/admin/table-printer.php:476
|
| 946 |
msgid "Post published on"
|
| 947 |
msgstr "Bericht gepubliceer op"
|
| 948 |
|
| 949 |
+
#: includes/admin/table-printer.php:481
|
| 950 |
msgid "Link last checked"
|
| 951 |
+
msgstr "Link laatst gecontroleerd op"
|
| 952 |
|
| 953 |
+
#: includes/admin/table-printer.php:485
|
| 954 |
msgid "Never"
|
| 955 |
msgstr "Nooit"
|
| 956 |
|
| 957 |
+
#: includes/admin/table-printer.php:496
|
|
|
|
|
|
|
|
|
|
|
|
|
| 958 |
msgid "Response time"
|
| 959 |
msgstr "Responstijd"
|
| 960 |
|
| 961 |
+
#: includes/admin/table-printer.php:498
|
|
|
|
| 962 |
msgid "%2.3f seconds"
|
| 963 |
msgstr "%2.3f seconden"
|
| 964 |
|
| 965 |
+
#: includes/admin/table-printer.php:501
|
| 966 |
msgid "Final URL"
|
| 967 |
+
msgstr "Uiteindelijke URL"
|
| 968 |
|
| 969 |
+
#: includes/admin/table-printer.php:506
|
| 970 |
msgid "Redirect count"
|
| 971 |
+
msgstr "Aantal omleidingen"
|
| 972 |
|
| 973 |
+
#: includes/admin/table-printer.php:511
|
| 974 |
msgid "Instance count"
|
| 975 |
msgstr "Aantal"
|
| 976 |
|
| 977 |
+
#: includes/admin/table-printer.php:520
|
|
|
|
| 978 |
msgid "This link has failed %d time."
|
| 979 |
msgid_plural "This link has failed %d times."
|
| 980 |
+
msgstr[0] "Deze link werkte %d keer niet."
|
| 981 |
+
msgstr[1] "Deze link werkte %d keer niet."
|
| 982 |
|
| 983 |
+
#: includes/admin/table-printer.php:528
|
| 984 |
+
msgid "This link has been broken for %s."
|
| 985 |
+
msgstr "Deze link is al %s verbroken."
|
|
|
|
| 986 |
|
| 987 |
+
#: includes/admin/table-printer.php:539
|
| 988 |
+
msgid "Log"
|
| 989 |
+
msgstr "Logboek"
|
| 990 |
|
| 991 |
+
#: includes/admin/table-printer.php:564
|
| 992 |
+
msgid "Show more info about this link"
|
| 993 |
+
msgstr "Toon meer informatie over deze link"
|
|
|
|
|
|
|
|
|
|
| 994 |
|
| 995 |
+
#: includes/admin/table-printer.php:582
|
| 996 |
+
msgctxt "checked how long ago"
|
| 997 |
+
msgid "Checked"
|
| 998 |
+
msgstr "Gecontroleerd"
|
| 999 |
|
| 1000 |
+
#: includes/admin/table-printer.php:598
|
| 1001 |
+
msgid "Broken for"
|
| 1002 |
+
msgstr "Verbroken gedurende"
|
|
|
|
|
|
|
|
|
|
| 1003 |
|
| 1004 |
+
#: includes/admin/table-printer.php:621
|
| 1005 |
+
msgid "Edit link URL"
|
| 1006 |
+
msgstr "Bewerk link URL"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1007 |
|
| 1008 |
+
#: includes/admin/table-printer.php:623
|
| 1009 |
+
msgid "Remove this link from all posts"
|
| 1010 |
+
msgstr "Verwijder deze link uit alle berichten"
|
| 1011 |
|
| 1012 |
+
#: includes/admin/table-printer.php:629
|
| 1013 |
+
msgid "Remove this link from the list of broken links and mark it as valid"
|
| 1014 |
+
msgstr ""
|
| 1015 |
+
"Verwijder deze link uit de lijst met verbroken links en markeer hem als "
|
| 1016 |
+
"geldig"
|
|
|
|
| 1017 |
|
| 1018 |
+
#: includes/admin/table-printer.php:637
|
| 1019 |
+
msgid "Hide this link and do not report it again unless its status changes"
|
| 1020 |
+
msgstr ""
|
| 1021 |
+
"Verberg deze link en laat het niet meer zien, behalve wanneer de status "
|
| 1022 |
+
"verandert"
|
|
|
|
|
|
|
| 1023 |
|
| 1024 |
+
#: includes/admin/table-printer.php:638
|
| 1025 |
+
msgid "Dismiss"
|
| 1026 |
+
msgstr "Overslaan"
|
| 1027 |
|
| 1028 |
+
#: includes/admin/table-printer.php:643
|
| 1029 |
+
msgid "Undismiss this link"
|
| 1030 |
+
msgstr "Sla deze link niet over"
|
| 1031 |
|
| 1032 |
+
#: includes/admin/table-printer.php:644
|
| 1033 |
+
msgid "Undismiss"
|
| 1034 |
+
msgstr "Niet overslaan"
|
|
|
|
| 1035 |
|
| 1036 |
+
#: includes/admin/table-printer.php:652
|
| 1037 |
+
msgid "Cancel URL editing"
|
| 1038 |
+
msgstr "Annuleer bewerken URL"
|
| 1039 |
|
| 1040 |
+
#: includes/admin/table-printer.php:659
|
| 1041 |
+
msgid "Update URL"
|
| 1042 |
+
msgstr "Bijwerken URL"
|
| 1043 |
|
| 1044 |
+
#: includes/admin/table-printer.php:686
|
| 1045 |
+
msgid "[An orphaned link! This is a bug.]"
|
| 1046 |
+
msgstr "[Een link zonder referentie! Dit is een bug.]"
|
| 1047 |
|
| 1048 |
+
#: includes/any-post.php:397 modules/containers/blogroll.php:46
|
| 1049 |
+
#: modules/containers/comment.php:153 modules/containers/custom_field.php:197
|
| 1050 |
+
msgid "Edit"
|
| 1051 |
+
msgstr "Bewerken"
|
| 1052 |
|
| 1053 |
+
#: includes/any-post.php:405 modules/containers/custom_field.php:203
|
| 1054 |
+
msgid "Move this item to the Trash"
|
| 1055 |
+
msgstr "Verplaats dit onderdeel naar de Prullenbak"
|
| 1056 |
|
| 1057 |
+
#: includes/any-post.php:407 modules/containers/custom_field.php:205
|
| 1058 |
+
msgid "Trash"
|
| 1059 |
+
msgstr "Prullenbak"
|
| 1060 |
|
| 1061 |
+
#: includes/any-post.php:412 modules/containers/custom_field.php:210
|
| 1062 |
+
msgid "Delete this item permanently"
|
| 1063 |
+
msgstr "Verwijder dit onderdeel permanent"
|
| 1064 |
|
| 1065 |
+
#: includes/any-post.php:414 modules/containers/blogroll.php:47
|
| 1066 |
+
#: modules/containers/custom_field.php:212
|
| 1067 |
+
msgid "Delete"
|
| 1068 |
+
msgstr "Verwijderen"
|
| 1069 |
+
|
| 1070 |
+
#: includes/any-post.php:427
|
| 1071 |
+
msgid "Preview “%s”"
|
| 1072 |
+
msgstr "Voorbeeld “%s”"
|
| 1073 |
+
|
| 1074 |
+
#: includes/any-post.php:428
|
| 1075 |
+
msgid "Preview"
|
| 1076 |
+
msgstr "Voorbeeld"
|
| 1077 |
+
|
| 1078 |
+
#: includes/any-post.php:435
|
| 1079 |
+
msgid "View “%s”"
|
| 1080 |
+
msgstr "Bekijk “%s”"
|
| 1081 |
|
| 1082 |
+
#: includes/any-post.php:436 modules/containers/comment.php:166
|
| 1083 |
+
#: modules/containers/custom_field.php:217
|
| 1084 |
+
msgid "View"
|
| 1085 |
+
msgstr "Bekijken"
|
| 1086 |
|
| 1087 |
+
#: includes/any-post.php:455 modules/containers/custom_field.php:197
|
| 1088 |
+
msgid "Edit this item"
|
| 1089 |
+
msgstr "Bewerk dit onderdeel"
|
| 1090 |
|
| 1091 |
+
#: includes/any-post.php:519 modules/containers/blogroll.php:83
|
| 1092 |
+
#: modules/containers/comment.php:43
|
| 1093 |
+
msgid "Nothing to update"
|
| 1094 |
+
msgstr "Niets aan te passen"
|
| 1095 |
|
| 1096 |
+
#: includes/any-post.php:529
|
| 1097 |
+
msgid "Updating post %d failed"
|
| 1098 |
+
msgstr "Kon bericht %d niet aanpassen"
|
|
|
|
| 1099 |
|
| 1100 |
+
#: includes/any-post.php:566 modules/containers/custom_field.php:284
|
| 1101 |
+
msgid "Failed to delete post \"%s\" (%d)"
|
| 1102 |
+
msgstr "Kon dit bericht niet verwijderen: \"%s\" (%d)"
|
| 1103 |
|
| 1104 |
+
#: includes/any-post.php:585 modules/containers/custom_field.php:303
|
| 1105 |
msgid ""
|
| 1106 |
+
"Can't move post \"%s\" (%d) to the trash because the trash feature is "
|
| 1107 |
+
"disabled"
|
| 1108 |
+
msgstr ""
|
| 1109 |
+
"Kan post \"%s\" (%d) niet naar de Prullenbak verplaatsen omdat de "
|
| 1110 |
+
"prullenbakmogelijkheid is uitgezet"
|
| 1111 |
+
|
| 1112 |
+
#: includes/any-post.php:605 modules/containers/custom_field.php:322
|
| 1113 |
+
msgid "Failed to move post \"%s\" (%d) to the trash"
|
| 1114 |
+
msgstr "Kon bericht \"%s\" (%d) niet verplaatsen naar de Prullenbak"
|
| 1115 |
+
|
| 1116 |
+
#: includes/any-post.php:713
|
| 1117 |
+
msgid "%d post deleted."
|
| 1118 |
+
msgid_plural "%d posts deleted."
|
| 1119 |
+
msgstr[0] "%d bericht verwijderd."
|
| 1120 |
+
msgstr[1] "%d berichten verwijderd."
|
| 1121 |
+
|
| 1122 |
+
#: includes/any-post.php:715
|
| 1123 |
+
msgid "%d page deleted."
|
| 1124 |
+
msgid_plural "%d pages deleted."
|
| 1125 |
+
msgstr[0] "%d pagina verwijderd."
|
| 1126 |
+
msgstr[1] "%d pagina's verwijderd."
|
| 1127 |
+
|
| 1128 |
+
#: includes/any-post.php:717
|
| 1129 |
+
msgid "%d \"%s\" deleted."
|
| 1130 |
+
msgid_plural "%d \"%s\" deleted."
|
| 1131 |
+
msgstr[0] "%d \"%s\" verwijderd."
|
| 1132 |
+
msgstr[1] "%d \"%s\" verwijderd."
|
| 1133 |
+
|
| 1134 |
+
#: includes/any-post.php:736
|
| 1135 |
+
msgid "%d post moved to the Trash."
|
| 1136 |
+
msgid_plural "%d posts moved to the Trash."
|
| 1137 |
+
msgstr[0] "%d bericht verplaatst naar de Prullenbak."
|
| 1138 |
+
msgstr[1] "%d berichten verplaatst naar de Prullenbak."
|
| 1139 |
+
|
| 1140 |
+
#: includes/any-post.php:738
|
| 1141 |
+
msgid "%d page moved to the Trash."
|
| 1142 |
+
msgid_plural "%d pages moved to the Trash."
|
| 1143 |
+
msgstr[0] "%d pagina verplaatst naar de Prullenbak."
|
| 1144 |
+
msgstr[1] "%d pagina's verplaatst naar de Prullenbak."
|
| 1145 |
+
|
| 1146 |
+
#: includes/any-post.php:740
|
| 1147 |
+
msgid "%d \"%s\" moved to the Trash."
|
| 1148 |
+
msgid_plural "%d \"%s\" moved to the Trash."
|
| 1149 |
+
msgstr[0] "%d \"%s\" verplaatst naar de Prullenbak."
|
| 1150 |
+
msgstr[1] "%d \"%s\" verplaatst naar de Prullenbak."
|
| 1151 |
+
|
| 1152 |
+
#: includes/containers.php:122
|
| 1153 |
+
msgid "%d '%s' has been deleted"
|
| 1154 |
+
msgid_plural "%d '%s' have been deleted"
|
| 1155 |
+
msgstr[0] "%d '%s' is verwijderd"
|
| 1156 |
+
msgstr[1] "%d '%s' zijn verwijderd"
|
| 1157 |
+
|
| 1158 |
+
#: includes/containers.php:873 includes/containers.php:891
|
| 1159 |
+
msgid "Container type '%s' not recognized"
|
| 1160 |
+
msgstr "Container type '%s' niet herkend"
|
| 1161 |
+
|
| 1162 |
+
#: includes/extra-strings.php:2
|
| 1163 |
+
msgctxt "module name"
|
| 1164 |
+
msgid "Basic HTTP"
|
| 1165 |
+
msgstr "Standaard HTTP"
|
| 1166 |
+
|
| 1167 |
+
#: includes/extra-strings.php:3
|
| 1168 |
+
msgctxt "module name"
|
| 1169 |
+
msgid "Blogroll items"
|
| 1170 |
+
msgstr "Blogroll links"
|
| 1171 |
+
|
| 1172 |
+
#: includes/extra-strings.php:4
|
| 1173 |
+
msgctxt "module name"
|
| 1174 |
+
msgid "Comments"
|
| 1175 |
+
msgstr "Reacties"
|
| 1176 |
+
|
| 1177 |
+
#: includes/extra-strings.php:5
|
| 1178 |
+
msgctxt "module name"
|
| 1179 |
+
msgid "Custom fields"
|
| 1180 |
+
msgstr "Aangepaste velden"
|
| 1181 |
+
|
| 1182 |
+
#: includes/extra-strings.php:6
|
| 1183 |
+
msgctxt "module name"
|
| 1184 |
+
msgid "Embedded DailyMotion videos"
|
| 1185 |
+
msgstr "Ingesloten DailyMotion videos"
|
| 1186 |
+
|
| 1187 |
+
#: includes/extra-strings.php:7
|
| 1188 |
+
msgctxt "module name"
|
| 1189 |
+
msgid "Embedded GoogleVideo videos"
|
| 1190 |
+
msgstr "Ingesloten GoogleVideo videos"
|
| 1191 |
+
|
| 1192 |
+
#: includes/extra-strings.php:8
|
| 1193 |
+
msgctxt "module name"
|
| 1194 |
+
msgid "Embedded Megavideo videos"
|
| 1195 |
+
msgstr "Ingesloten Megavideo videos"
|
| 1196 |
+
|
| 1197 |
+
#: includes/extra-strings.php:9
|
| 1198 |
+
msgctxt "module name"
|
| 1199 |
+
msgid "Embedded Vimeo videos"
|
| 1200 |
+
msgstr "Ingesloten Vimeo videos"
|
| 1201 |
+
|
| 1202 |
+
#: includes/extra-strings.php:10
|
| 1203 |
+
msgctxt "module name"
|
| 1204 |
+
msgid "Embedded YouTube playlists (old embed code)"
|
| 1205 |
+
msgstr "Ingesloten YouTube playlists (oude insluitingscode)"
|
| 1206 |
+
|
| 1207 |
+
#: includes/extra-strings.php:11
|
| 1208 |
+
msgctxt "module name"
|
| 1209 |
+
msgid "Embedded YouTube videos"
|
| 1210 |
+
msgstr "Ingesloten YouTube videos"
|
| 1211 |
+
|
| 1212 |
+
#: includes/extra-strings.php:12
|
| 1213 |
+
msgctxt "module name"
|
| 1214 |
+
msgid "Embedded YouTube videos (old embed code)"
|
| 1215 |
+
msgstr "Ingesloten YouTube videos (oude insluitingscode)"
|
| 1216 |
+
|
| 1217 |
+
#: includes/extra-strings.php:13
|
| 1218 |
+
msgctxt "module name"
|
| 1219 |
+
msgid "FileServe API"
|
| 1220 |
+
msgstr "FileServe API"
|
| 1221 |
+
|
| 1222 |
+
#: includes/extra-strings.php:14
|
| 1223 |
+
msgctxt "module name"
|
| 1224 |
+
msgid "HTML images"
|
| 1225 |
+
msgstr "HTML afbeeldingen"
|
| 1226 |
+
|
| 1227 |
+
#: includes/extra-strings.php:15
|
| 1228 |
+
msgctxt "module name"
|
| 1229 |
+
msgid "HTML links"
|
| 1230 |
+
msgstr "HTML links"
|
| 1231 |
+
|
| 1232 |
+
#: includes/extra-strings.php:16
|
| 1233 |
+
msgctxt "module name"
|
| 1234 |
+
msgid "MediaFire API"
|
| 1235 |
+
msgstr "MediaFire API"
|
| 1236 |
+
|
| 1237 |
+
#: includes/extra-strings.php:17
|
| 1238 |
+
msgctxt "module name"
|
| 1239 |
+
msgid "MegaUpload API"
|
| 1240 |
+
msgstr "MegaUpload API"
|
| 1241 |
+
|
| 1242 |
+
#: includes/extra-strings.php:18
|
| 1243 |
+
msgctxt "module name"
|
| 1244 |
+
msgid "Plaintext URLs"
|
| 1245 |
+
msgstr "Standaard tekst URLs"
|
| 1246 |
+
|
| 1247 |
+
#: includes/extra-strings.php:19
|
| 1248 |
+
msgctxt "module name"
|
| 1249 |
+
msgid "RapidShare API"
|
| 1250 |
+
msgstr "RapidShare API"
|
| 1251 |
+
|
| 1252 |
+
#: includes/extra-strings.php:20
|
| 1253 |
+
msgctxt "module name"
|
| 1254 |
+
msgid "Smart YouTube httpv:// URLs"
|
| 1255 |
+
msgstr "Smart YouTube httpv:// URLs"
|
| 1256 |
+
|
| 1257 |
+
#: includes/extra-strings.php:21
|
| 1258 |
+
msgctxt "module name"
|
| 1259 |
+
msgid "YouTube API"
|
| 1260 |
+
msgstr "YouTube API"
|
| 1261 |
+
|
| 1262 |
+
#: includes/extra-strings.php:22
|
| 1263 |
+
msgctxt "module name"
|
| 1264 |
+
msgid "Posts"
|
| 1265 |
+
msgstr "Berichten"
|
| 1266 |
+
|
| 1267 |
+
#: includes/extra-strings.php:23
|
| 1268 |
+
msgctxt "module name"
|
| 1269 |
+
msgid "Pages"
|
| 1270 |
+
msgstr "Pagina's"
|
| 1271 |
+
|
| 1272 |
+
#: includes/instances.php:104 includes/instances.php:160
|
| 1273 |
+
msgid "Container %s[%d] not found"
|
| 1274 |
+
msgstr "Container %s[%d] niet gevonden"
|
| 1275 |
+
|
| 1276 |
+
#: includes/instances.php:113 includes/instances.php:169
|
| 1277 |
+
msgid "Parser '%s' not found."
|
| 1278 |
+
msgstr "Parser '%s' niet gevonden."
|
| 1279 |
+
|
| 1280 |
+
#: includes/link-query.php:26
|
| 1281 |
+
msgid "Broken"
|
| 1282 |
+
msgstr "Verbroken"
|
| 1283 |
|
| 1284 |
+
#: includes/link-query.php:28
|
| 1285 |
+
msgid "No broken links found"
|
| 1286 |
+
msgstr "Geen verbroken links gevonden."
|
| 1287 |
|
| 1288 |
+
#: includes/link-query.php:36
|
| 1289 |
+
msgid "Redirects"
|
| 1290 |
+
msgstr "Omleidingen"
|
| 1291 |
|
| 1292 |
+
#: includes/link-query.php:37
|
| 1293 |
+
msgid "Redirected Links"
|
| 1294 |
+
msgstr "Omgeleide Links"
|
|
|
|
|
|
|
| 1295 |
|
| 1296 |
+
#: includes/link-query.php:38
|
| 1297 |
+
msgid "No redirects found"
|
| 1298 |
+
msgstr "Geen omleidingen gevonden."
|
| 1299 |
|
| 1300 |
+
#: includes/link-query.php:46
|
| 1301 |
+
msgid "Dismissed"
|
| 1302 |
+
msgstr "Overgeslagen"
|
| 1303 |
|
| 1304 |
+
#: includes/link-query.php:47
|
| 1305 |
+
msgid "Dismissed Links"
|
| 1306 |
+
msgstr "Overgeslagen Links"
|
| 1307 |
|
| 1308 |
+
#: includes/link-query.php:48
|
| 1309 |
+
msgid "No dismissed links found"
|
| 1310 |
+
msgstr "Geen overgeslagen links gevonden."
|
| 1311 |
|
| 1312 |
+
#: includes/link-query.php:56
|
| 1313 |
+
msgid "All"
|
| 1314 |
+
msgstr "Alles"
|
| 1315 |
|
| 1316 |
+
#: includes/link-query.php:57
|
| 1317 |
+
msgid "Detected Links"
|
| 1318 |
+
msgstr "Gevonden links"
|
|
|
|
| 1319 |
|
| 1320 |
+
#: includes/link-query.php:58
|
| 1321 |
+
msgid "No links found (yet)"
|
| 1322 |
+
msgstr "(Nog) geen links gevonden"
|
|
|
|
| 1323 |
|
| 1324 |
+
#: includes/link-query.php:66
|
| 1325 |
+
msgid "Search Results"
|
| 1326 |
+
msgstr "Zoekresultaten"
|
| 1327 |
|
| 1328 |
+
#: includes/link-query.php:67 includes/link-query.php:114
|
| 1329 |
+
msgid "No links found for your query"
|
| 1330 |
+
msgstr "Geen links gevonden voor deze zoekopdracht"
|
| 1331 |
|
| 1332 |
+
#: includes/links.php:218
|
| 1333 |
+
msgid "The plugin script was terminated while trying to check the link."
|
| 1334 |
+
msgstr ""
|
| 1335 |
+
"Het plugin script stopte met werken tijdens het controleren van de link."
|
| 1336 |
|
| 1337 |
+
#: includes/links.php:264
|
| 1338 |
+
msgid "The plugin doesn't know how to check this type of link."
|
| 1339 |
+
msgstr "De plugin weet niet hoe het dit type link moet controleren."
|
|
|
|
| 1340 |
|
| 1341 |
+
#: includes/links.php:357
|
| 1342 |
+
msgid "Link is valid."
|
| 1343 |
+
msgstr "Link is geldig."
|
| 1344 |
|
| 1345 |
+
#: includes/links.php:359
|
| 1346 |
+
msgid "Link is broken."
|
| 1347 |
+
msgstr "Link is verbroken."
|
| 1348 |
|
| 1349 |
+
#: includes/links.php:571 includes/links.php:673 includes/links.php:700
|
| 1350 |
+
msgid "Link is not valid"
|
| 1351 |
+
msgstr "Link is niet geldig"
|
|
|
|
| 1352 |
|
| 1353 |
+
#: includes/links.php:588
|
| 1354 |
+
msgid ""
|
| 1355 |
+
"This link can not be edited because it is not used anywhere on this site."
|
| 1356 |
+
msgstr ""
|
| 1357 |
+
"Deze link kan niet worden aangepast omdat deze nergens op deze site wordt "
|
| 1358 |
+
"gebruikt."
|
| 1359 |
+
|
| 1360 |
+
#: includes/links.php:614
|
| 1361 |
+
msgid "Failed to create a DB entry for the new URL."
|
| 1362 |
+
msgstr "Kon geen databasevermelding voor de nieuwe URL maken."
|
| 1363 |
+
|
| 1364 |
+
#: includes/links.php:680
|
| 1365 |
+
msgid "This link is not a redirect"
|
| 1366 |
+
msgstr "Deze link is geen omleiding"
|
| 1367 |
+
|
| 1368 |
+
#: includes/links.php:727 includes/links.php:764
|
| 1369 |
+
msgid "Couldn't delete the link's database record"
|
| 1370 |
+
msgstr "Kon de databaseregel voor deze link niet verwijderen."
|
| 1371 |
+
|
| 1372 |
+
#: includes/links.php:838
|
| 1373 |
+
msgctxt "link status"
|
| 1374 |
+
msgid "Unknown"
|
| 1375 |
+
msgstr "Onbekend"
|
| 1376 |
+
|
| 1377 |
+
#: includes/links.php:852 modules/checkers/http.php:263
|
| 1378 |
+
#: modules/extras/mediafire.php:101
|
| 1379 |
+
msgid "Unknown Error"
|
| 1380 |
+
msgstr "Onbekende Fout"
|
| 1381 |
+
|
| 1382 |
+
#: includes/links.php:876
|
| 1383 |
+
msgid "Not checked"
|
| 1384 |
+
msgstr "Niet gecontroleerd"
|
| 1385 |
+
|
| 1386 |
+
#: includes/links.php:879
|
| 1387 |
+
msgid "False positive"
|
| 1388 |
+
msgstr "Vals positief"
|
| 1389 |
+
|
| 1390 |
+
#: includes/links.php:882 modules/extras/fileserve.php:121
|
| 1391 |
+
#: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
|
| 1392 |
+
#: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
|
| 1393 |
+
msgctxt "link status"
|
| 1394 |
+
msgid "OK"
|
| 1395 |
+
msgstr "OK"
|
| 1396 |
|
| 1397 |
+
#: includes/parsers.php:109
|
| 1398 |
+
msgid "Editing is not implemented in the '%s' parser"
|
| 1399 |
+
msgstr "Aanpassen is niet geïmplementeerd in de '%s' parser"
|
| 1400 |
+
|
| 1401 |
+
#: includes/parsers.php:124
|
| 1402 |
+
msgid "Unlinking is not implemented in the '%s' parser"
|
| 1403 |
+
msgstr "Link verwijderen is niet geïmplementeerd in de '%s' parser"
|
| 1404 |
+
|
| 1405 |
+
#: includes/utility-class.php:245
|
| 1406 |
+
msgid "%d second"
|
| 1407 |
+
msgid_plural "%d seconds"
|
| 1408 |
+
msgstr[0] "%d seconde"
|
| 1409 |
+
msgstr[1] "%d seconden"
|
| 1410 |
+
|
| 1411 |
+
#: includes/utility-class.php:246
|
| 1412 |
+
msgid "%d second ago"
|
| 1413 |
+
msgid_plural "%d seconds ago"
|
| 1414 |
+
msgstr[0] "%d seconde geleden"
|
| 1415 |
+
msgstr[1] "%d seconden geleden"
|
| 1416 |
+
|
| 1417 |
+
#: includes/utility-class.php:249
|
| 1418 |
+
msgid "%d minute"
|
| 1419 |
+
msgid_plural "%d minutes"
|
| 1420 |
+
msgstr[0] "%d minuut"
|
| 1421 |
+
msgstr[1] "%d minuten"
|
| 1422 |
+
|
| 1423 |
+
#: includes/utility-class.php:250
|
| 1424 |
+
msgid "%d minute ago"
|
| 1425 |
+
msgid_plural "%d minutes ago"
|
| 1426 |
+
msgstr[0] "%d minuut geleden"
|
| 1427 |
+
msgstr[1] "%d minuten geleden"
|
| 1428 |
+
|
| 1429 |
+
#: includes/utility-class.php:253
|
| 1430 |
+
msgid "%d hour"
|
| 1431 |
+
msgid_plural "%d hours"
|
| 1432 |
+
msgstr[0] "%d uur"
|
| 1433 |
+
msgstr[1] "%d uren"
|
| 1434 |
+
|
| 1435 |
+
#: includes/utility-class.php:254
|
| 1436 |
+
msgid "%d hour ago"
|
| 1437 |
+
msgid_plural "%d hours ago"
|
| 1438 |
+
msgstr[0] "%d uur geleden"
|
| 1439 |
+
msgstr[1] "%d uren geleden"
|
| 1440 |
+
|
| 1441 |
+
#: includes/utility-class.php:257
|
| 1442 |
+
msgid "%d day"
|
| 1443 |
+
msgid_plural "%d days"
|
| 1444 |
+
msgstr[0] "%d dag"
|
| 1445 |
+
msgstr[1] "%d dagen"
|
| 1446 |
+
|
| 1447 |
+
#: includes/utility-class.php:258
|
| 1448 |
+
msgid "%d day ago"
|
| 1449 |
+
msgid_plural "%d days ago"
|
| 1450 |
+
msgstr[0] "%d dag geleden"
|
| 1451 |
+
msgstr[1] "%d dagen geleden"
|
| 1452 |
+
|
| 1453 |
+
#: includes/utility-class.php:261
|
| 1454 |
+
msgid "%d month"
|
| 1455 |
+
msgid_plural "%d months"
|
| 1456 |
+
msgstr[0] "%d maand"
|
| 1457 |
+
msgstr[1] "%d maanden"
|
| 1458 |
+
|
| 1459 |
+
#: includes/utility-class.php:262
|
| 1460 |
+
msgid "%d month ago"
|
| 1461 |
+
msgid_plural "%d months ago"
|
| 1462 |
+
msgstr[0] "%d maand geleden"
|
| 1463 |
+
msgstr[1] "%d maanden geleden"
|
| 1464 |
+
|
| 1465 |
+
#: modules/checkers/http.php:242
|
| 1466 |
+
msgid "Server Not Found"
|
| 1467 |
+
msgstr "Server Niet Gevonden"
|
| 1468 |
+
|
| 1469 |
+
#: modules/checkers/http.php:257
|
| 1470 |
+
msgid "Connection Failed"
|
| 1471 |
+
msgstr "Verbinding Mislukt"
|
| 1472 |
+
|
| 1473 |
+
#: modules/checkers/http.php:292 modules/checkers/http.php:362
|
| 1474 |
+
msgid "HTTP code : %d"
|
| 1475 |
+
msgstr "HTTP code: %d"
|
| 1476 |
+
|
| 1477 |
+
#: modules/checkers/http.php:294 modules/checkers/http.php:364
|
| 1478 |
+
msgid "(No response)"
|
| 1479 |
+
msgstr "(Geen reactie)"
|
| 1480 |
+
|
| 1481 |
+
#: modules/checkers/http.php:300
|
| 1482 |
+
msgid "Most likely the connection timed out or the domain doesn't exist."
|
| 1483 |
+
msgstr ""
|
| 1484 |
+
"Hoogstwaarschijnlijk is er een time-out voor de verbinding opgetreden, of "
|
| 1485 |
+
"het domein bestaat niet."
|
| 1486 |
+
|
| 1487 |
+
#: modules/checkers/http.php:371
|
| 1488 |
msgid "Request timed out."
|
| 1489 |
msgstr "Time-out voor Verzoek opgetreden."
|
| 1490 |
|
| 1491 |
+
#: modules/checkers/http.php:389
|
| 1492 |
+
msgid "Using Snoopy"
|
| 1493 |
+
msgstr "Gebruikt Snoopy"
|
| 1494 |
|
| 1495 |
+
#: modules/containers/blogroll.php:21
|
| 1496 |
+
msgid "Bookmark"
|
| 1497 |
+
msgstr "Bladwijzer"
|
| 1498 |
|
| 1499 |
+
#: modules/containers/blogroll.php:27 modules/containers/blogroll.php:46
|
| 1500 |
+
msgid "Edit this bookmark"
|
| 1501 |
+
msgstr "Bewerk deze bladwijzer "
|
| 1502 |
+
|
| 1503 |
+
#: modules/containers/blogroll.php:47
|
| 1504 |
+
msgid ""
|
| 1505 |
+
"You are about to delete this link '%s'\n"
|
| 1506 |
+
" 'Cancel' to stop, 'OK' to delete."
|
| 1507 |
+
msgstr ""
|
| 1508 |
+
"U staat op het punt deze link '%s' te verwijderen\n"
|
| 1509 |
+
" 'Annuleren' om te stoppen, 'OK' om te verwijderen."
|
| 1510 |
|
| 1511 |
+
#: modules/containers/blogroll.php:97
|
| 1512 |
+
msgid "Updating bookmark %d failed"
|
| 1513 |
+
msgstr "Aanpassen van bladwijzer %d mislukt."
|
| 1514 |
+
|
| 1515 |
+
#: modules/containers/blogroll.php:128
|
| 1516 |
+
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
| 1517 |
+
msgstr "Kon deze blogroll link niet verwijderen: \"%s\" (%d)"
|
| 1518 |
+
|
| 1519 |
+
#: modules/containers/blogroll.php:298
|
| 1520 |
+
msgid "%d blogroll link deleted."
|
| 1521 |
+
msgid_plural "%d blogroll links deleted."
|
| 1522 |
+
msgstr[0] "%d blogroll link verwijderd."
|
| 1523 |
+
msgstr[1] "%d blogroll links verwijderd."
|
| 1524 |
+
|
| 1525 |
+
#: modules/containers/comment.php:53
|
| 1526 |
+
msgid "Updating comment %d failed"
|
| 1527 |
+
msgstr "Aanpassen van reactie %d mislukt"
|
| 1528 |
+
|
| 1529 |
+
#: modules/containers/comment.php:74
|
| 1530 |
+
msgid "Failed to delete comment %d"
|
| 1531 |
+
msgstr "Kon reactie %d niet verwijderen"
|
| 1532 |
+
|
| 1533 |
+
#: modules/containers/comment.php:95
|
| 1534 |
+
msgid "Can't move comment %d to the trash"
|
| 1535 |
+
msgstr "Kan reactie %d niet naar de prullenbak verplaatsen"
|
| 1536 |
+
|
| 1537 |
+
#: modules/containers/comment.php:153 modules/containers/comment.php:195
|
| 1538 |
+
msgid "Edit comment"
|
| 1539 |
+
msgstr "Reactie aanpassen"
|
| 1540 |
+
|
| 1541 |
+
#: modules/containers/comment.php:160
|
| 1542 |
+
msgid "Delete Permanently"
|
| 1543 |
+
msgstr "Permanent Verwijderen"
|
| 1544 |
+
|
| 1545 |
+
#: modules/containers/comment.php:162
|
| 1546 |
+
msgid "Move this comment to the trash"
|
| 1547 |
+
msgstr "Verplaats deze reactie naar de prullenbak"
|
| 1548 |
+
|
| 1549 |
+
#: modules/containers/comment.php:162
|
| 1550 |
+
msgctxt "verb"
|
| 1551 |
+
msgid "Trash"
|
| 1552 |
+
msgstr "Weggooien"
|
| 1553 |
+
|
| 1554 |
+
#: modules/containers/comment.php:166
|
| 1555 |
+
msgid "View comment"
|
| 1556 |
+
msgstr "Bekijk reactie"
|
| 1557 |
+
|
| 1558 |
+
#: modules/containers/comment.php:183
|
| 1559 |
+
msgid "Comment"
|
| 1560 |
+
msgstr "Reactie"
|
| 1561 |
+
|
| 1562 |
+
#: modules/containers/comment.php:355
|
| 1563 |
+
msgid "%d comment has been deleted."
|
| 1564 |
+
msgid_plural "%d comments have been deleted."
|
| 1565 |
+
msgstr[0] "%d reactie is verwijderd"
|
| 1566 |
+
msgstr[1] "%d reacties zijn verwijderd"
|
| 1567 |
+
|
| 1568 |
+
#: modules/containers/comment.php:374
|
| 1569 |
+
msgid "%d comment moved to the Trash."
|
| 1570 |
+
msgid_plural "%d comments moved to the Trash."
|
| 1571 |
+
msgstr[0] "%d reactie verplaatst naar de Prullenbak."
|
| 1572 |
+
msgstr[1] "%d reacties verplaatst naar de Prullenbak."
|
| 1573 |
+
|
| 1574 |
+
#: modules/containers/custom_field.php:84
|
| 1575 |
+
msgid "Failed to update the meta field '%s' on %s [%d]"
|
| 1576 |
+
msgstr "Kon meta veld '%s' op %s [%d] niet aanpassen."
|
| 1577 |
+
|
| 1578 |
+
#: modules/containers/custom_field.php:110
|
| 1579 |
+
msgid "Failed to delete the meta field '%s' on %s [%d]"
|
| 1580 |
+
msgstr "Kon meta veld '%s' op %s [%d] niet verwijderen"
|
| 1581 |
+
|
| 1582 |
+
#: modules/containers/custom_field.php:187
|
| 1583 |
+
msgid "Edit this post"
|
| 1584 |
+
msgstr "Bewerk dit bericht"
|
| 1585 |
|
| 1586 |
+
#: modules/containers/custom_field.php:217
|
| 1587 |
+
msgid "View \"%s\""
|
| 1588 |
+
msgstr "Toon \"%s\""
|
|
|
|
| 1589 |
|
| 1590 |
+
#: modules/containers/dummy.php:34 modules/containers/dummy.php:45
|
| 1591 |
+
msgid "I don't know how to edit a '%s' [%d]."
|
| 1592 |
+
msgstr "Ik weet niet hoe ik een '%s' [%d] kan bewerken."
|
| 1593 |
+
|
| 1594 |
+
#: modules/extras/dailymotion-embed.php:23
|
| 1595 |
+
msgid "DailyMotion Video"
|
| 1596 |
+
msgstr "DailyMotion Video"
|
| 1597 |
+
|
| 1598 |
+
#: modules/extras/dailymotion-embed.php:24
|
| 1599 |
+
msgid "Embedded DailyMotion video"
|
| 1600 |
+
msgstr "Ingesloten DailyMotion video"
|
| 1601 |
+
|
| 1602 |
+
#: modules/extras/embed-parser-base.php:197
|
| 1603 |
+
msgid ""
|
| 1604 |
+
"Embedded videos can't be edited using Broken Link Checker. Please edit or "
|
| 1605 |
+
"replace the video in question manually."
|
| 1606 |
+
msgstr ""
|
| 1607 |
+
"Ingesloten videos kunnen niet worden bewerkt met Broken Link Checker. Bewerk "
|
| 1608 |
+
"of vervang de betreffende video alstublieft handmatig."
|
| 1609 |
+
|
| 1610 |
+
#: modules/extras/fileserve.php:55
|
| 1611 |
+
msgid "Using FileServe API"
|
| 1612 |
+
msgstr "Gebruikt de FileServe API"
|
| 1613 |
+
|
| 1614 |
+
#: modules/extras/fileserve.php:112 modules/extras/mediafire.php:91
|
| 1615 |
+
#: modules/extras/mediafire.php:96 modules/extras/megaupload.php:81
|
| 1616 |
+
#: modules/extras/megaupload.php:123 modules/extras/rapidshare.php:139
|
| 1617 |
+
msgid "Not Found"
|
| 1618 |
+
msgstr "Niet Gevonden"
|
| 1619 |
+
|
| 1620 |
+
#: modules/extras/fileserve.php:115
|
| 1621 |
+
msgid "FileServe : %d %s"
|
| 1622 |
+
msgstr "FileServe: %d %s"
|
| 1623 |
+
|
| 1624 |
+
#: modules/extras/googlevideo-embed.php:24
|
| 1625 |
+
msgid "GoogleVideo Video"
|
| 1626 |
+
msgstr "GoogleVideo Video"
|
| 1627 |
+
|
| 1628 |
+
#: modules/extras/googlevideo-embed.php:25
|
| 1629 |
+
msgid "Embedded GoogleVideo video"
|
| 1630 |
+
msgstr "Ingesloten GoogleVideo video"
|
| 1631 |
+
|
| 1632 |
+
#: modules/extras/megaupload.php:130
|
| 1633 |
+
msgid "File Temporarily Unavailable"
|
| 1634 |
+
msgstr "Besdtand Tijdelijk Niet Beschikbaar"
|
| 1635 |
+
|
| 1636 |
+
#: modules/extras/megaupload.php:136
|
| 1637 |
+
msgid "API Error"
|
| 1638 |
+
msgstr "API Fout"
|
| 1639 |
+
|
| 1640 |
+
#: modules/extras/megavideo-embed.php:24
|
| 1641 |
+
msgid "Megavideo Video"
|
| 1642 |
+
msgstr "Megavideo Video"
|
| 1643 |
+
|
| 1644 |
+
#: modules/extras/megavideo-embed.php:25
|
| 1645 |
+
msgid "Embedded Megavideo video"
|
| 1646 |
+
msgstr "Ingesloten Megavideo video"
|
| 1647 |
+
|
| 1648 |
+
#: modules/extras/rapidshare.php:51
|
| 1649 |
+
msgid "Using RapidShare API"
|
| 1650 |
+
msgstr "Gebruikt de RapidShare API"
|
| 1651 |
+
|
| 1652 |
+
#: modules/extras/rapidshare.php:158
|
| 1653 |
+
msgid "RS Server Down"
|
| 1654 |
+
msgstr "RS Server Draait Niet"
|
| 1655 |
+
|
| 1656 |
+
#: modules/extras/rapidshare.php:165
|
| 1657 |
+
msgid "File Blocked"
|
| 1658 |
+
msgstr "Bestand Geblokkeerd"
|
| 1659 |
+
|
| 1660 |
+
#: modules/extras/rapidshare.php:172
|
| 1661 |
+
msgid "File Locked"
|
| 1662 |
+
msgstr "Bestand Op Slot"
|
| 1663 |
+
|
| 1664 |
+
#: modules/extras/rapidshare.php:183
|
| 1665 |
+
msgid "RapidShare : %s"
|
| 1666 |
+
msgstr "RapidShare: %s"
|
| 1667 |
+
|
| 1668 |
+
#: modules/extras/rapidshare.php:189
|
| 1669 |
+
msgid "RapidShare API error: %s"
|
| 1670 |
+
msgstr "RapidShare API fout: %s"
|
| 1671 |
+
|
| 1672 |
+
#: modules/extras/vimeo-embed.php:24
|
| 1673 |
+
msgid "Vimeo Video"
|
| 1674 |
+
msgstr "Vimeo Video"
|
| 1675 |
+
|
| 1676 |
+
#: modules/extras/vimeo-embed.php:25
|
| 1677 |
+
msgid "Embedded Vimeo video"
|
| 1678 |
+
msgstr "Ingesloten Vimeo video"
|
| 1679 |
+
|
| 1680 |
+
#: modules/extras/youtube-embed.php:24 modules/extras/youtube-iframe.php:25
|
| 1681 |
+
msgid "YouTube Video"
|
| 1682 |
+
msgstr "YouTube Video"
|
| 1683 |
+
|
| 1684 |
+
#: modules/extras/youtube-embed.php:25 modules/extras/youtube-iframe.php:26
|
| 1685 |
+
msgid "Embedded YouTube video"
|
| 1686 |
+
msgstr "Ingesloten YouTube video"
|
| 1687 |
+
|
| 1688 |
+
#: modules/extras/youtube-playlist-embed.php:24
|
| 1689 |
+
msgid "YouTube Playlist"
|
| 1690 |
+
msgstr "YouTube Playlist"
|
| 1691 |
+
|
| 1692 |
+
#: modules/extras/youtube-playlist-embed.php:25
|
| 1693 |
+
msgid "Embedded YouTube playlist"
|
| 1694 |
+
msgstr "Ingesloten YouTube playlist"
|
| 1695 |
+
|
| 1696 |
+
#: modules/extras/youtube.php:124 modules/extras/youtube.php:127
|
| 1697 |
+
msgid "Video Not Found"
|
| 1698 |
+
msgstr "Video Niet Gevonden"
|
| 1699 |
+
|
| 1700 |
+
#: modules/extras/youtube.php:135
|
| 1701 |
+
msgid "Video Removed"
|
| 1702 |
+
msgstr "Video Verwijderd"
|
| 1703 |
+
|
| 1704 |
+
#: modules/extras/youtube.php:143
|
| 1705 |
+
msgid "Invalid Video ID"
|
| 1706 |
+
msgstr "Verkeerd Video ID"
|
| 1707 |
+
|
| 1708 |
+
#: modules/extras/youtube.php:155
|
| 1709 |
+
msgid "Video OK"
|
| 1710 |
+
msgstr "Video OK"
|
| 1711 |
+
|
| 1712 |
+
#: modules/extras/youtube.php:156 modules/extras/youtube.php:177
|
| 1713 |
+
#: modules/extras/youtube.php:249 modules/extras/youtube.php:289
|
| 1714 |
+
msgid "OK"
|
| 1715 |
+
msgstr "OK"
|
| 1716 |
+
|
| 1717 |
+
#: modules/extras/youtube.php:170 modules/extras/youtube.php:271
|
| 1718 |
+
msgid "Video status : %s%s"
|
| 1719 |
+
msgstr "Video status: %s%s"
|
| 1720 |
+
|
| 1721 |
+
#: modules/extras/youtube.php:182 modules/extras/youtube.php:280
|
| 1722 |
+
msgid "Video Restricted"
|
| 1723 |
+
msgstr "Video Afgeschermd"
|
| 1724 |
+
|
| 1725 |
+
#: modules/extras/youtube.php:199 modules/extras/youtube.php:305
|
| 1726 |
+
msgid "Unknown YouTube API response received."
|
| 1727 |
+
msgstr "Onbekende YouTube API reactie ontvangen."
|
| 1728 |
|
| 1729 |
+
#: modules/extras/youtube.php:217 modules/extras/youtube.php:220
|
| 1730 |
+
msgid "Playlist Not Found"
|
| 1731 |
+
msgstr "Playlist Niet Gevonden"
|
| 1732 |
+
|
| 1733 |
+
#: modules/extras/youtube.php:227
|
| 1734 |
+
msgid "Playlist Restricted"
|
| 1735 |
+
msgstr "Playlist Afgeschermd"
|
| 1736 |
+
|
| 1737 |
+
#: modules/extras/youtube.php:234
|
| 1738 |
+
msgid "Invalid Playlist"
|
| 1739 |
+
msgstr "Onbekende Playlist"
|
| 1740 |
+
|
| 1741 |
+
#: modules/extras/youtube.php:248
|
| 1742 |
+
msgid "Playlist OK"
|
| 1743 |
+
msgstr "Playlist OK"
|
| 1744 |
+
|
| 1745 |
+
#: modules/extras/youtube.php:255
|
| 1746 |
+
msgid "This playlist has no entries or all entries have been deleted."
|
| 1747 |
+
msgstr "Deze playlist bevat geen nummers, of alle nummers zijn verwijderd."
|
| 1748 |
+
|
| 1749 |
+
#: modules/extras/youtube.php:256
|
| 1750 |
+
msgid "Empty Playlist"
|
| 1751 |
+
msgstr "Lege Playlist"
|
| 1752 |
+
|
| 1753 |
+
#: modules/parsers/image.php:164
|
| 1754 |
+
msgid "Image"
|
| 1755 |
+
msgstr "Afbeelding"
|
| 1756 |
+
|
| 1757 |
+
#: modules/parsers/metadata.php:118
|
| 1758 |
+
msgid "Custom field"
|
| 1759 |
+
msgstr "Aangepast Veld"
|
| 1760 |
+
|
| 1761 |
+
#. Plugin URI of the plugin/theme
|
| 1762 |
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 1763 |
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 1764 |
|
| 1765 |
+
#. Description of the plugin/theme
|
| 1766 |
+
msgid ""
|
| 1767 |
+
"Checks your blog for broken links and missing images and notifies you on the "
|
| 1768 |
+
"dashboard if any are found."
|
| 1769 |
+
msgstr ""
|
| 1770 |
+
"Controleert je blog op verbroken links en ontbrekende afbeeldingen, en laat "
|
| 1771 |
+
"in het Dashboard zien of deze gevonden zijn."
|
| 1772 |
|
| 1773 |
+
#. Author of the plugin/theme
|
| 1774 |
msgid "Janis Elsts"
|
| 1775 |
msgstr "Janis Elsts"
|
| 1776 |
|
| 1777 |
+
#. Author URI of the plugin/theme
|
| 1778 |
+
msgid "http://w-shadow.com/"
|
| 1779 |
+
msgstr "http://w-shadow.com/"
|
| 1780 |
+
|
| 1781 |
+
#~ msgid "Broken link CSS"
|
| 1782 |
+
#~ msgstr "Verbroken link CSS"
|
| 1783 |
+
|
| 1784 |
+
#~ msgid "Custom temporary directory"
|
| 1785 |
+
#~ msgstr "Aangepaste tijdelijke map"
|
| 1786 |
+
|
| 1787 |
+
#~ msgid "Error : This directory isn't writable by PHP."
|
| 1788 |
+
#~ msgstr "Fout : er zijn PHP geen schrijfrechten in deze map."
|
| 1789 |
+
|
| 1790 |
+
#~ msgid "Error : This directory doesn't exist."
|
| 1791 |
+
#~ msgstr "Fout: deze map bestaat niet."
|
| 1792 |
+
|
| 1793 |
+
#~ msgid ""
|
| 1794 |
+
#~ "Set this field if you want the plugin to use a custom directory for its "
|
| 1795 |
+
#~ "lockfiles. Otherwise, leave it blank."
|
| 1796 |
+
#~ msgstr ""
|
| 1797 |
+
#~ "Vul dit veld in als u de invoegtoepassing een aangepaste map wilt laten "
|
| 1798 |
+
#~ "gebruiken voor zijn vergrendelingsbestanden. Zo niet, dan laat u het veld "
|
| 1799 |
+
#~ "leeg."
|
| 1800 |
+
|
| 1801 |
+
#~ msgid "Excluded"
|
| 1802 |
+
#~ msgstr "Uitgesloten"
|
| 1803 |
+
|
| 1804 |
+
#~ msgid "Add this URL to the exclusion list"
|
| 1805 |
+
#~ msgstr "Voeg deze URL toe aan de lijst met uitsluitingen"
|
| 1806 |
+
|
| 1807 |
+
#~ msgid "Exclude"
|
| 1808 |
+
#~ msgstr "Uitsluiten"
|
| 1809 |
+
|
| 1810 |
+
#~ msgid "Discard"
|
| 1811 |
+
#~ msgstr "Negeren"
|
| 1812 |
+
|
| 1813 |
+
#~ msgid "Saving changes..."
|
| 1814 |
+
#~ msgstr "Veranderingen Opslaan..."
|
| 1815 |
+
|
| 1816 |
+
#~ msgid ""
|
| 1817 |
+
#~ "This link wasn't checked because a matching keyword was found on your "
|
| 1818 |
+
#~ "exclusion list."
|
| 1819 |
+
#~ msgstr ""
|
| 1820 |
+
#~ "Deze koppeling is niet gecontroleerd omdat een overeenkomend sleutelwoord "
|
| 1821 |
+
#~ "is gevonden in uw lijst van uitsluitingen."
|
| 1822 |
+
|
| 1823 |
+
#~ msgid "URL %s was removed."
|
| 1824 |
+
#~ msgstr "de URL %s is verwijderd."
|
| 1825 |
+
|
| 1826 |
+
#~ msgid "URL %s added to the exclusion list"
|
| 1827 |
+
#~ msgstr "URL %s toegevoegd aan de lijst van uitsluitingen"
|
| 1828 |
+
|
| 1829 |
+
#~ msgid ""
|
| 1830 |
+
#~ "The current temporary directory is not accessible; please <a href=\"%s"
|
| 1831 |
+
#~ "\">set a different one</a>."
|
| 1832 |
+
#~ msgstr ""
|
| 1833 |
+
#~ "De huidige tijdelijke map is niet toegankelijk: svp <a href=\"%s\">een "
|
| 1834 |
+
#~ "nieuwe instellen</a>."
|
| 1835 |
+
|
| 1836 |
+
#~ msgid ""
|
| 1837 |
+
#~ "Please make the directory <code>%1$s</code> writable by plugins or <a "
|
| 1838 |
+
#~ "href=\"%2$s\">set a custom temporary directory</a>."
|
| 1839 |
+
#~ msgstr ""
|
| 1840 |
+
#~ "Geef spv de map <code>%1$s</code> schrijfrechten voor invoegtoepassingen "
|
| 1841 |
+
#~ "of <a href=\"%2$s\">stel een aangepaste tijdelijke map in</a>."
|
| 1842 |
+
|
| 1843 |
+
#~ msgid "Broken Link Checker can't create a lockfile."
|
| 1844 |
+
#~ msgstr "BLC kan geen vergrendelbestand maken."
|
| 1845 |
+
|
| 1846 |
+
#~ msgid ""
|
| 1847 |
+
#~ "The plugin uses a file-based locking mechanism to ensure that only one "
|
| 1848 |
+
#~ "instance of the\n"
|
| 1849 |
+
#~ "\t\t\t\tresource-heavy link checking algorithm is running at any given "
|
| 1850 |
+
#~ "time. Unfortunately, \n"
|
| 1851 |
+
#~ "\t\t\t\tBLC can't find a writable directory where it could store the "
|
| 1852 |
+
#~ "lockfile - it failed to \n"
|
| 1853 |
+
#~ "\t\t\t\tdetect the location of your server's temporary directory, and the "
|
| 1854 |
+
#~ "plugin's own directory\n"
|
| 1855 |
+
#~ "\t\t\t\tisn't writable by PHP. To fix this problem, please make the "
|
| 1856 |
+
#~ "plugin's directory writable\n"
|
| 1857 |
+
#~ "\t\t\t\tor enter a specify a custom temporary directory in the plugin's "
|
| 1858 |
+
#~ "settings."
|
| 1859 |
+
#~ msgstr ""
|
| 1860 |
+
#~ "De invoegtoepassing gebruikt een vergrendelingsbestand om zeker te "
|
| 1861 |
+
#~ "stellen dat slechts exemplaar van het\n"
|
| 1862 |
+
#~ "\t\t\t\tveel geheugen inbeslagnemende algorithme voor kopplingscontrole "
|
| 1863 |
+
#~ "is geladen. Helaas kan \n"
|
| 1864 |
+
#~ "\t\t\t\tBLC geen beschrijfbare map vinden waar het zijn "
|
| 1865 |
+
#~ "vergrendelingsbestand kan opslaan. BLC kon \n"
|
| 1866 |
+
#~ "\t\t\t\tuw server's tijdelijke map niet vinden en de eigen map is "
|
| 1867 |
+
#~ "niet beschrijfbaar door PHP. \n"
|
| 1868 |
+
#~ "\t\t\t\t Om dit probleem op te lossen moet u de map schrijfrechten "
|
| 1869 |
+
#~ "geven \n"
|
| 1870 |
+
#~ "\t\t\t\tof zelf een tijdelijke map opgeven bij de instellingen van de "
|
| 1871 |
+
#~ "invoegtoepassing."
|
| 1872 |
+
|
| 1873 |
+
#~ msgid ""
|
| 1874 |
+
#~ "Can't create a lockfile. Please specify a custom temporary directory."
|
| 1875 |
+
#~ msgstr ""
|
| 1876 |
+
#~ "Kan geen vergrendelingsbestand maken. Geef een aangepast tijdelijke mapm "
|
| 1877 |
+
#~ "op."
|
| 1878 |
+
|
| 1879 |
+
#~ msgid "First try : %d"
|
| 1880 |
+
#~ msgstr "eerste poging : %d"
|
| 1881 |
+
|
| 1882 |
+
#~ msgid "Trying a second time with different settings..."
|
| 1883 |
+
#~ msgstr "Een tweede poging met verschillende instellingen..."
|
| 1884 |
+
|
| 1885 |
+
#~ msgid "Second try : 0 (No response)"
|
| 1886 |
+
#~ msgstr "Tweede poging : 0 (Geen reactie)"
|
| 1887 |
+
|
| 1888 |
+
#~ msgid "Second try : %d"
|
| 1889 |
+
#~ msgstr "Tweede poging : %d"
|
| 1890 |
+
|
| 1891 |
+
#~ msgid "Error adding link %s : %s"
|
| 1892 |
+
#~ msgstr "Fout bij het toevoegen van koppeling %s : %s"
|
| 1893 |
+
|
| 1894 |
+
#~ msgid "Error updating link %d : %s"
|
| 1895 |
+
#~ msgstr "Fout bij het vernieuwen van de koppeling %d : %s"
|
| 1896 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1897 |
#~ msgid ""
|
| 1898 |
#~ "<span class='view'><a class='blc-details-button' href='javascript:void"
|
| 1899 |
#~ "(0)' title='Show more info about this link'>Details</a>"
|
| 1900 |
#~ msgstr ""
|
| 1901 |
#~ "<span class='view'><a class='blc-details-button' href='javascript:void"
|
| 1902 |
#~ "(0)' title='Toon meer info over deze link'>Details</a>"
|
| 1903 |
+
|
| 1904 |
#~ msgid ""
|
| 1905 |
#~ "<span class='delete'><a class='submitdelete blc-unlink-button' "
|
| 1906 |
#~ "title='Remove this link from all posts' id='unlink-button-$rownum' "
|
| 1909 |
#~ "<span class='delete'><a class='submitdelete blc-unlink-button' "
|
| 1910 |
#~ "title='Verwijder deze link uit alle berichten' id='unlink-button-$rownum' "
|
| 1911 |
#~ "href='javascript:void(0);'>Ontkoppel</a>"
|
| 1912 |
+
|
| 1913 |
#~ msgid "<span class='delete'>Excluded"
|
| 1914 |
#~ msgstr "<span class='delete'>Uitgesloten"
|
| 1915 |
+
|
| 1916 |
#~ msgid ""
|
| 1917 |
#~ "<span class='delete'><a class='submitdelete blc-exclude-button' "
|
| 1918 |
#~ "title='Add this URL to the exclusion list' id='exclude-button-$rownum' "
|
| 1921 |
#~ "<span class='delete'><a class='submitdelete blc-unlink-button' "
|
| 1922 |
#~ "title='Voeg deze URL toe aan de lijst met uitzonderingen' id='unlink-"
|
| 1923 |
#~ "button-$rownum' href='javascript:void(0);'>Uitsluiten</a>"
|
| 1924 |
+
|
| 1925 |
#~ msgid ""
|
| 1926 |
#~ "<span class='edit'><a href='javascript:void(0)' class='blc-edit-button' "
|
| 1927 |
#~ "title='Edit link URL'>Edit URL</a>"
|
| 1928 |
#~ msgstr ""
|
| 1929 |
#~ "<span class='edit'><a href='javascript:void(0)' class='blc-edit-button' "
|
| 1930 |
#~ "title='Bewerk link van URL'>Bewerk URL</a>"
|
| 1931 |
+
|
| 1932 |
#~ msgid "'Remove this message and mark the link as valid'>Discard"
|
| 1933 |
#~ msgstr ""
|
| 1934 |
#~ "'Verwijder deze boodschap en markeer de koppling als geldig'>Negeren"
|
| 1935 |
+
|
| 1936 |
#~ msgid ""
|
| 1937 |
#~ "<a href='%stools.php?page=view-broken-links' title='View broken "
|
| 1938 |
#~ "links'><strong>Found %d broken link%s</strong></a>"
|
| 1939 |
#~ msgstr ""
|
| 1940 |
#~ "<a href='%stools.php?page=view-broken-links' title='Bekijk verbroken "
|
| 1941 |
#~ "links'><strong>%d verbroken link%s gevonden</strong></a>"
|
| 1942 |
+
|
| 1943 |
#~ msgid ""
|
| 1944 |
#~ "<a class=\"row-title\" href=\"post.php?action=edit&post=$link"
|
| 1945 |
#~ "[source_id]\" title=\"Edit this post\">{$link[post_title]}</a>"
|
| 1946 |
#~ msgstr ""
|
| 1947 |
#~ "<a class=\"row-title\" href=\"post.php?action=edit&post=$link"
|
| 1948 |
#~ "[source_id]\" title=\"Bewerk dit bericht\">{$link[post_title]}</a>"
|
| 1949 |
+
|
| 1950 |
#~ msgid ""
|
| 1951 |
#~ "<a class=\"row-title\" href=\"link.php?action=edit&link_id=$link"
|
| 1952 |
#~ "[source_id]\" title=\"Edit this bookmark\">{$link[link_text]}</a>"
|
| 1953 |
#~ msgstr ""
|
| 1954 |
#~ "<a class=\"row-title\" href=\"link.php?action=edit&link_id=$link"
|
| 1955 |
#~ "[source_id]\" title=\"Bewerk deze bladwijzer\">{$link[link_text]}</a>"
|
|
|
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: whiteshadow
|
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
| 4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
| 5 |
Requires at least: 3.2
|
| 6 |
-
Tested up to: 3.
|
| 7 |
-
Stable tag: 1.8.
|
| 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 |
|
|
@@ -50,11 +50,12 @@ You can also click on the contents of the "Status" or "Link Text" columns to get
|
|
| 50 |
* Chinese Traditional - [YILIN](http://sh2153.com)
|
| 51 |
* Czech - [Lelkoun](http://lelkoun.cz/)
|
| 52 |
* Danish - [Georg S. Adamsen](http://wordpress.blogos.dk/)
|
| 53 |
-
* Dutch - [
|
| 54 |
* Finnish - [Jani Alha](http://www.wysiwyg.fi)
|
| 55 |
* French - [Whiler](http://blogs.wittwer.fr/whiler/), Luc Capronnier, [Guillaume Boda](http://www.michtoblog.com/)
|
| 56 |
* German - [Ivan Graf](http://blog.bildergallery.com/)
|
| 57 |
* Hindi - [Outshine Solutions](http://outshinesolutions.com/)
|
|
|
|
| 58 |
* Irish - [Ray Gren](http://letsbefamous.com/)
|
| 59 |
* Italian - [Gianni Diurno](http://gidibao.net/index.php/portfolio/) and [Giacomo Ross](http://www.luxemozione.com/) (alternative)
|
| 60 |
* Japanese - [ningendesu](http://ningendesu.com/)
|
|
@@ -94,6 +95,13 @@ To upgrade your installation
|
|
| 94 |
|
| 95 |
== Changelog ==
|
| 96 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
= 1.8.2 =
|
| 98 |
* Removed one of the translator credits links because Google flagged it as "suspicious".
|
| 99 |
* Updated French translation.
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
| 4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
| 5 |
Requires at least: 3.2
|
| 6 |
+
Tested up to: 3.6
|
| 7 |
+
Stable tag: 1.8.3
|
| 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 |
|
| 50 |
* Chinese Traditional - [YILIN](http://sh2153.com)
|
| 51 |
* Czech - [Lelkoun](http://lelkoun.cz/)
|
| 52 |
* Danish - [Georg S. Adamsen](http://wordpress.blogos.dk/)
|
| 53 |
+
* Dutch - [Robin Roelofsen](http://www.dreamdesignsolutions.nl/)
|
| 54 |
* Finnish - [Jani Alha](http://www.wysiwyg.fi)
|
| 55 |
* French - [Whiler](http://blogs.wittwer.fr/whiler/), Luc Capronnier, [Guillaume Boda](http://www.michtoblog.com/)
|
| 56 |
* German - [Ivan Graf](http://blog.bildergallery.com/)
|
| 57 |
* Hindi - [Outshine Solutions](http://outshinesolutions.com/)
|
| 58 |
+
* Hungarian - [Language Connect](http://www.languageconnect.net/)
|
| 59 |
* Irish - [Ray Gren](http://letsbefamous.com/)
|
| 60 |
* Italian - [Gianni Diurno](http://gidibao.net/index.php/portfolio/) and [Giacomo Ross](http://www.luxemozione.com/) (alternative)
|
| 61 |
* Japanese - [ningendesu](http://ningendesu.com/)
|
| 95 |
|
| 96 |
== Changelog ==
|
| 97 |
|
| 98 |
+
= 1.8.3 =
|
| 99 |
+
* Added a Hungarian translation.
|
| 100 |
+
* Fixed a bunch of "deprecated function" notices that showed up due to wpdb::escape() becoming deprecated in WP 3.6.
|
| 101 |
+
* Fixed a vulnerability that would allow users with the ability to bulk-edit links to execute arbitrary PHP code by using a specially crafted regex as the search string.
|
| 102 |
+
* Updated German translation.
|
| 103 |
+
* Replaced the old Dutch translation with a new and more complete translation by Robin Roelofsen.
|
| 104 |
+
|
| 105 |
= 1.8.2 =
|
| 106 |
* Removed one of the translator credits links because Google flagged it as "suspicious".
|
| 107 |
* Updated French translation.
|
