Version Description
- Added Polish translation.
- Updated Danish translation.
- Updated Italian translation.
- Fixed an uncommon "Cannot break/continue 1 level" error.
- Added a new user feedback survey (the link only shows up after you've used this version for at least two weeks).
Download this release
Release Info
Developer | whiteshadow |
Plugin | Broken Link Checker |
Version | 0.9.7.2 |
Comparing to | |
See all releases |
Code changes from version 0.9.7.1 to 0.9.7.2
- broken-link-checker.php +1 -1
- core/core.php +3 -2
- core/init.php +15 -15
- includes/activation.php +11 -7
- includes/survey.php +58 -0
- includes/utility-class.php +2 -3
- languages/broken-link-checker-da_DK.mo +0 -0
- languages/broken-link-checker-da_DK.po +321 -281
- languages/broken-link-checker-it_IT.mo +0 -0
- languages/broken-link-checker-it_IT.po +351 -294
- languages/broken-link-checker-pl_PL.mo +0 -0
- languages/broken-link-checker-pl_PL.po +1570 -0
- modules/parsers/html_link.php +1 -1
- readme.txt +9 -1
broken-link-checker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Broken Link Checker
|
4 |
Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
|
5 |
Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
|
6 |
-
Version: 0.9.7.
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/blog/
|
9 |
Text Domain: broken-link-checker
|
3 |
Plugin Name: Broken Link Checker
|
4 |
Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
|
5 |
Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
|
6 |
+
Version: 0.9.7.2
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/blog/
|
9 |
Text Domain: broken-link-checker
|
core/core.php
CHANGED
@@ -11,7 +11,8 @@ if ( !function_exists( 'microtime_float' ) ) {
|
|
11 |
}
|
12 |
}
|
13 |
|
14 |
-
require
|
|
|
15 |
|
16 |
if (!class_exists('wsBrokenLinkChecker')) {
|
17 |
|
@@ -394,7 +395,7 @@ class wsBrokenLinkChecker {
|
|
394 |
}
|
395 |
|
396 |
function options_page(){
|
397 |
-
global $blclog
|
398 |
|
399 |
$moduleManager = &blcModuleManager::getInstance();
|
400 |
|
11 |
}
|
12 |
}
|
13 |
|
14 |
+
require BLC_DIRECTORY . '/includes/screen-options/screen-options.php';
|
15 |
+
require BLC_DIRECTORY . '/includes/survey.php';
|
16 |
|
17 |
if (!class_exists('wsBrokenLinkChecker')) {
|
18 |
|
395 |
}
|
396 |
|
397 |
function options_page(){
|
398 |
+
global $blclog;
|
399 |
|
400 |
$moduleManager = &blcModuleManager::getInstance();
|
401 |
|
core/init.php
CHANGED
@@ -46,14 +46,15 @@ define('BLC_FOR_EDITING', 'edit');
|
|
46 |
define('BLC_FOR_PARSING', 'parse');
|
47 |
define('BLC_FOR_DISPLAY', 'display');
|
48 |
|
|
|
|
|
|
|
49 |
/***********************************************
|
50 |
Configuration
|
51 |
************************************************/
|
52 |
|
53 |
//Load and initialize the plugin's configuration
|
54 |
-
|
55 |
-
$blc_directory = dirname( blc_get_plugin_file() );
|
56 |
-
require $blc_directory . '/includes/config-manager.php';
|
57 |
|
58 |
global $blc_config_manager;
|
59 |
$blc_config_manager = new blcConfigurationManager(
|
@@ -120,7 +121,7 @@ $blc_config_manager = new blcConfigurationManager(
|
|
120 |
Logging
|
121 |
************************************************/
|
122 |
|
123 |
-
include
|
124 |
|
125 |
global $blclog;
|
126 |
$blclog = new blcDummyLogger;
|
@@ -128,8 +129,8 @@ $blclog = new blcDummyLogger;
|
|
128 |
/*
|
129 |
if ( defined('BLC_DEBUG') && constant('BLC_DEBUG') ){
|
130 |
//Load FirePHP for debug logging
|
131 |
-
if ( !class_exists('FB') && file_exists(
|
132 |
-
require_once
|
133 |
}
|
134 |
//FB::setEnabled(false);
|
135 |
}
|
@@ -253,15 +254,14 @@ add_filter('cron_schedules', 'blc_cron_schedules');
|
|
253 |
|
254 |
//Execute the installation/upgrade script when the plugin is activated.
|
255 |
function blc_activation_hook(){
|
256 |
-
|
257 |
-
require $blc_directory . '/includes/activation.php';
|
258 |
}
|
259 |
register_activation_hook(plugin_basename(blc_get_plugin_file()), 'blc_activation_hook');
|
260 |
|
261 |
//Load the plugin if installed successfully
|
262 |
if ( $blc_config_manager->options['installation_complete'] ){
|
263 |
function blc_init(){
|
264 |
-
global $
|
265 |
|
266 |
static $init_done = false;
|
267 |
if ( $init_done ){
|
@@ -270,13 +270,13 @@ if ( $blc_config_manager->options['installation_complete'] ){
|
|
270 |
$init_done = true;
|
271 |
|
272 |
//Load the base classes and utilities
|
273 |
-
require
|
274 |
-
require
|
275 |
-
require
|
276 |
-
require
|
277 |
|
278 |
//Load the module subsystem
|
279 |
-
require
|
280 |
|
281 |
//Load the modules that want to be executed in all contexts
|
282 |
$blc_module_manager->load_modules();
|
@@ -284,7 +284,7 @@ if ( $blc_config_manager->options['installation_complete'] ){
|
|
284 |
if ( is_admin() || defined('DOING_CRON') ){
|
285 |
|
286 |
//It's an admin-side or Cron request. Load the core.
|
287 |
-
require
|
288 |
$ws_link_checker = new wsBrokenLinkChecker( blc_get_plugin_file() , $blc_config_manager );
|
289 |
|
290 |
} else {
|
46 |
define('BLC_FOR_PARSING', 'parse');
|
47 |
define('BLC_FOR_DISPLAY', 'display');
|
48 |
|
49 |
+
//Path to the plugin's directory
|
50 |
+
define('BLC_DIRECTORY', dirname(blc_get_plugin_file()));
|
51 |
+
|
52 |
/***********************************************
|
53 |
Configuration
|
54 |
************************************************/
|
55 |
|
56 |
//Load and initialize the plugin's configuration
|
57 |
+
require BLC_DIRECTORY . '/includes/config-manager.php';
|
|
|
|
|
58 |
|
59 |
global $blc_config_manager;
|
60 |
$blc_config_manager = new blcConfigurationManager(
|
121 |
Logging
|
122 |
************************************************/
|
123 |
|
124 |
+
include BLC_DIRECTORY . '/includes/logger.php';
|
125 |
|
126 |
global $blclog;
|
127 |
$blclog = new blcDummyLogger;
|
129 |
/*
|
130 |
if ( defined('BLC_DEBUG') && constant('BLC_DEBUG') ){
|
131 |
//Load FirePHP for debug logging
|
132 |
+
if ( !class_exists('FB') && file_exists(BLC_DIRECTORY . '/FirePHPCore/fb.php4') ) {
|
133 |
+
require_once BLC_DIRECTORY . '/FirePHPCore/fb.php4';
|
134 |
}
|
135 |
//FB::setEnabled(false);
|
136 |
}
|
254 |
|
255 |
//Execute the installation/upgrade script when the plugin is activated.
|
256 |
function blc_activation_hook(){
|
257 |
+
require BLC_DIRECTORY . '/includes/activation.php';
|
|
|
258 |
}
|
259 |
register_activation_hook(plugin_basename(blc_get_plugin_file()), 'blc_activation_hook');
|
260 |
|
261 |
//Load the plugin if installed successfully
|
262 |
if ( $blc_config_manager->options['installation_complete'] ){
|
263 |
function blc_init(){
|
264 |
+
global $blc_module_manager, $blc_config_manager, $ws_link_checker;
|
265 |
|
266 |
static $init_done = false;
|
267 |
if ( $init_done ){
|
270 |
$init_done = true;
|
271 |
|
272 |
//Load the base classes and utilities
|
273 |
+
require BLC_DIRECTORY . '/includes/links.php';
|
274 |
+
require BLC_DIRECTORY . '/includes/link-query.php';
|
275 |
+
require BLC_DIRECTORY . '/includes/instances.php';
|
276 |
+
require BLC_DIRECTORY . '/includes/utility-class.php';
|
277 |
|
278 |
//Load the module subsystem
|
279 |
+
require BLC_DIRECTORY . '/includes/modules.php';
|
280 |
|
281 |
//Load the modules that want to be executed in all contexts
|
282 |
$blc_module_manager->load_modules();
|
284 |
if ( is_admin() || defined('DOING_CRON') ){
|
285 |
|
286 |
//It's an admin-side or Cron request. Load the core.
|
287 |
+
require BLC_DIRECTORY . '/core/core.php';
|
288 |
$ws_link_checker = new wsBrokenLinkChecker( blc_get_plugin_file() , $blc_config_manager );
|
289 |
|
290 |
} else {
|
includes/activation.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
global $
|
4 |
$queryCnt = $wpdb->num_queries;
|
5 |
|
6 |
//Completing the installation/upgrade is required for the plugin to work, so make sure
|
@@ -17,17 +17,21 @@ $blclog->info( sprintf('Plugin activated at %s.', date_i18n('Y-m-d H:i:s')) );
|
|
17 |
|
18 |
//Reset the "installation_complete" flag
|
19 |
$blc_config_manager->options['installation_complete'] = false;
|
|
|
|
|
|
|
|
|
20 |
$blc_config_manager->save_options();
|
21 |
$blclog->info('Installation/update begins.');
|
22 |
|
23 |
//Load the base classes and utilities
|
24 |
-
require
|
25 |
-
require
|
26 |
-
require
|
27 |
-
require
|
28 |
|
29 |
//Load the module subsystem
|
30 |
-
require
|
31 |
$moduleManager = & blcModuleManager::getInstance();
|
32 |
|
33 |
//If upgrading, activate/deactivate custom field and comment containers based on old ver. settings
|
@@ -43,7 +47,7 @@ if ( empty($blc_config_manager->options['custom_fields']) ){
|
|
43 |
|
44 |
//Prepare the database.
|
45 |
$blclog->info('Upgrading the database...');
|
46 |
-
require_once
|
47 |
blcDatabaseUpgrader::upgrade_database();
|
48 |
|
49 |
//Remove invalid DB entries
|
1 |
<?php
|
2 |
|
3 |
+
global $blclog, $blc_config_manager, $wpdb;
|
4 |
$queryCnt = $wpdb->num_queries;
|
5 |
|
6 |
//Completing the installation/upgrade is required for the plugin to work, so make sure
|
17 |
|
18 |
//Reset the "installation_complete" flag
|
19 |
$blc_config_manager->options['installation_complete'] = false;
|
20 |
+
//Note the time of the first installation (not very accurate, but still useful)
|
21 |
+
if ( empty($blc_config_manager->options['first_installation_timestamp']) ){
|
22 |
+
$blc_config_manager->options['first_installation_timestamp'] = time();
|
23 |
+
}
|
24 |
$blc_config_manager->save_options();
|
25 |
$blclog->info('Installation/update begins.');
|
26 |
|
27 |
//Load the base classes and utilities
|
28 |
+
require BLC_DIRECTORY . '/includes/links.php';
|
29 |
+
require BLC_DIRECTORY . '/includes/link-query.php';
|
30 |
+
require BLC_DIRECTORY . '/includes/instances.php';
|
31 |
+
require BLC_DIRECTORY . '/includes/utility-class.php';
|
32 |
|
33 |
//Load the module subsystem
|
34 |
+
require BLC_DIRECTORY . '/includes/modules.php';
|
35 |
$moduleManager = & blcModuleManager::getInstance();
|
36 |
|
37 |
//If upgrading, activate/deactivate custom field and comment containers based on old ver. settings
|
47 |
|
48 |
//Prepare the database.
|
49 |
$blclog->info('Upgrading the database...');
|
50 |
+
require_once BLC_DIRECTORY . '/includes/admin/db-upgrade.php';
|
51 |
blcDatabaseUpgrader::upgrade_database();
|
52 |
|
53 |
//Remove invalid DB entries
|
includes/survey.php
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* @author Janis Elsts
|
5 |
+
* @copyright 2010
|
6 |
+
*/
|
7 |
+
|
8 |
+
//Appearify the survey notice to people who have used BLC for at least 2 weeks (doesn't need to be very accurate)
|
9 |
+
$blc_config = &blc_get_configuration();
|
10 |
+
$blc_show_survey = empty($blc_config->options['hide_surveyio_notice'])
|
11 |
+
&& !empty($blc_config->options['first_installation_timestamp'])
|
12 |
+
&& ( time() - $blc_config->options['first_installation_timestamp'] > 2*7*24*60*60 );
|
13 |
+
|
14 |
+
if ( $blc_show_survey ){
|
15 |
+
add_action('admin_notices', 'blc_display_survey_notice');
|
16 |
+
}
|
17 |
+
|
18 |
+
/**
|
19 |
+
* Display a notice asking the user to take the Broken Link Checker user survey.
|
20 |
+
*
|
21 |
+
* @return void
|
22 |
+
*/
|
23 |
+
function blc_display_survey_notice(){
|
24 |
+
//Only people who can actually use the plugin will see the notice
|
25 |
+
if ( !current_user_can('manage_links') ) return;
|
26 |
+
|
27 |
+
if ( !empty($_GET['dismiss-blc-survey']) ){
|
28 |
+
//The user has chosen to hide the survey notice
|
29 |
+
$blc_config = &blc_get_configuration();
|
30 |
+
$blc_config->options['hide_surveyio_notice'] = true;
|
31 |
+
$blc_config->save_options();
|
32 |
+
return;
|
33 |
+
}
|
34 |
+
|
35 |
+
$survey_url = 'http://survey.io/survey/7fbf0';
|
36 |
+
|
37 |
+
$msg = sprintf(
|
38 |
+
'<strong>Help improve Broken Link Checker - <a href="%s" target="_blank" title="This link will open in a new window" id="blc-take-survey-link">take a user feedback survey!</a></strong>
|
39 |
+
<br><a href="%s">Hide this notice</a>',
|
40 |
+
$survey_url,
|
41 |
+
add_query_arg('dismiss-blc-survey', 1)
|
42 |
+
);
|
43 |
+
|
44 |
+
echo '<div id="update-nag" class="blc-survey-notice" style="text-align: left; padding-left: 10px;">'.$msg.'</div>';
|
45 |
+
|
46 |
+
//Auto-hide the notice after the user clicks the survey link
|
47 |
+
?>
|
48 |
+
<script type="text/javascript">
|
49 |
+
jQuery(function($){
|
50 |
+
$('#blc-take-survey-link').click(function(){
|
51 |
+
$('.blc-survey-notice').hide('fast');
|
52 |
+
$.get('<?php echo esc_js(add_query_arg('dismiss-blc-survey', 1, admin_url())); ?>');
|
53 |
+
});
|
54 |
+
});
|
55 |
+
</script>
|
56 |
+
<?php
|
57 |
+
}
|
58 |
+
?>
|
includes/utility-class.php
CHANGED
@@ -20,10 +20,9 @@ if ( !function_exists('sys_get_temp_dir')) {
|
|
20 |
|
21 |
//Include the internationalized domain name converter (requires PHP 5)
|
22 |
if ( defined('BLC_PRO_VERSION') && version_compare(phpversion(), '5.0.0', '>=') && !class_exists('idna_convert') ){
|
23 |
-
|
24 |
-
include $blc_directory . '/idn/idna_convert.class.php';
|
25 |
if ( !function_exists('encode_utf8') ){
|
26 |
-
include
|
27 |
}
|
28 |
}
|
29 |
|
20 |
|
21 |
//Include the internationalized domain name converter (requires PHP 5)
|
22 |
if ( defined('BLC_PRO_VERSION') && version_compare(phpversion(), '5.0.0', '>=') && !class_exists('idna_convert') ){
|
23 |
+
include BLC_DIRECTORY . '/idn/idna_convert.class.php';
|
|
|
24 |
if ( !function_exists('encode_utf8') ){
|
25 |
+
include BLC_DIRECTORY . '/idn/transcode_wrapper.php';
|
26 |
}
|
27 |
}
|
28 |
|
languages/broken-link-checker-da_DK.mo
CHANGED
Binary file
|
languages/broken-link-checker-da_DK.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Broken Link Checker 0.9.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2010-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
|
8 |
"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
|
@@ -17,730 +17,749 @@ msgstr ""
|
|
17 |
"X-Poedit-Basepath: d:\\wordpress\\plugins\\broken-link-checker\n"
|
18 |
"X-Poedit-SearchPath-0: d:\\wordpress\\plugins\\broken-link-checker\n"
|
19 |
|
20 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
21 |
msgid "Loading..."
|
22 |
msgstr "Indlæser ..."
|
23 |
|
24 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
25 |
msgid "[ Network error ]"
|
26 |
msgstr "[ Network-fejl ]"
|
27 |
|
28 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
29 |
msgid "Automatically expand the widget if broken links have been detected"
|
30 |
msgstr "Automatisk udvid widgetten, hvis der er fundet døde links"
|
31 |
|
32 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
33 |
msgid "Link Checker Settings"
|
34 |
msgstr "Link Checker-indstillinger"
|
35 |
|
36 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
37 |
msgid "Link Checker"
|
38 |
msgstr "Link Checker"
|
39 |
|
40 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
41 |
#: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:26
|
42 |
msgid "Broken Links"
|
43 |
msgstr "Døde links"
|
44 |
|
45 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
46 |
msgid "View Broken Links"
|
47 |
msgstr "Se døde links"
|
48 |
|
49 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
50 |
msgid "Settings"
|
51 |
msgstr "Indstillinger"
|
52 |
|
53 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
54 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
55 |
#, php-format
|
56 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
57 |
msgstr "Fejl: Pluginnets databasetabeller er ikke up-to-date! (Nuværende version: %d; forventet: %d)"
|
58 |
|
59 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
60 |
msgid "Settings saved."
|
61 |
msgstr "Indstillinger gemt."
|
62 |
|
63 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
64 |
msgid "Complete site recheck started."
|
65 |
msgstr "Fuldstændig ny tjek af site påbegyndt."
|
66 |
|
67 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
68 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
69 |
msgid "Details"
|
70 |
msgstr "Detaljer"
|
71 |
|
72 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
73 |
msgid "General"
|
74 |
msgstr "Generel"
|
75 |
|
76 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
77 |
msgid "Look For Links In"
|
78 |
msgstr "Se efter links i"
|
79 |
|
80 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
81 |
msgid "Which Links To Check"
|
82 |
msgstr "Hvilke links der skal tjekkes"
|
83 |
|
84 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
85 |
msgid "Protocols & APIs"
|
86 |
msgstr "Protokoller & API'er"
|
87 |
|
88 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
89 |
msgid "Advanced"
|
90 |
msgstr "Avanceret"
|
91 |
|
92 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
93 |
msgid "Broken Link Checker Options"
|
94 |
msgstr "Indstillinger for Broken Link Checker"
|
95 |
|
96 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
97 |
msgid "Status"
|
98 |
msgstr "Status"
|
99 |
|
100 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
101 |
msgid "Show debug info"
|
102 |
msgstr "Vis debug-info"
|
103 |
|
104 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
105 |
msgid "Check each link"
|
106 |
msgstr "Tjek hvert link"
|
107 |
|
108 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
109 |
#, php-format
|
110 |
msgid "Every %s hours"
|
111 |
msgstr "hver %s timer"
|
112 |
|
113 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
114 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
115 |
msgstr "Eksisterende links vil blive tjekket med dette mellemrum. Nye links tjekkes normalt så hurtigt som muligt."
|
116 |
|
117 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
118 |
msgid "E-mail notifications"
|
119 |
msgstr "E-mail-meddelelser"
|
120 |
|
121 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
122 |
msgid "Send me e-mail notifications about newly detected broken links"
|
123 |
msgstr "Send mig e-mail-meddelelser om nyligt opdagede døde links"
|
124 |
|
125 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
126 |
msgid "Link tweaks"
|
127 |
msgstr "Linktilpasninger"
|
128 |
|
129 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
130 |
msgid "Apply custom formatting to broken links"
|
131 |
msgstr "Anvend egen formattering på døde links"
|
132 |
|
133 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
134 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
135 |
msgid "Edit CSS"
|
136 |
msgstr "Redigér CSS"
|
137 |
|
138 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
139 |
msgid "Apply custom formatting to removed links"
|
140 |
msgstr "Anvend egen formattering på links, der er fjernet"
|
141 |
|
142 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
143 |
msgid "Stop search engines from following broken links"
|
144 |
msgstr "Forhindr søgemaskiner i at følge døde links"
|
145 |
|
146 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
147 |
msgid "Look for links in"
|
148 |
msgstr "Se efter links i"
|
149 |
|
150 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
151 |
msgid "Post statuses"
|
152 |
msgstr "Indlægsstatusser"
|
153 |
|
154 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
155 |
msgid "Link types"
|
156 |
msgstr "Linktyper"
|
157 |
|
158 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
159 |
msgid "Error : All link parsers missing!"
|
160 |
msgstr "Fejl: Alle linkparsers mangler!"
|
161 |
|
162 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
163 |
msgid "Exclusion list"
|
164 |
msgstr "Eksklusionsliste"
|
165 |
|
166 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
167 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
168 |
msgstr "Tjek ikke links, hvor URL'en indeholder et af disse ord (et ord per linje):"
|
169 |
|
170 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
171 |
msgid "Check links using"
|
172 |
msgstr "Tjek link med"
|
173 |
|
174 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
175 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
176 |
msgid "Timeout"
|
177 |
msgstr "Timeout"
|
178 |
|
179 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
180 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
181 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
182 |
#, php-format
|
183 |
msgid "%s seconds"
|
184 |
msgstr "%s sekunder"
|
185 |
|
186 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
187 |
msgid "Links that take longer than this to load will be marked as broken."
|
188 |
msgstr "Links, som tager længere tid at tjekke end dette, vil blive markeret som døde."
|
189 |
|
190 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
191 |
msgid "Link monitor"
|
192 |
msgstr "Linkovervågning"
|
193 |
|
194 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
195 |
msgid "Run continuously while the Dashboard is open"
|
196 |
msgstr "Kør kontinuerligt, når kontrolpanelet er åbent"
|
197 |
|
198 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
199 |
msgid "Run hourly in the background"
|
200 |
msgstr "Kør hver time i baggrunden"
|
201 |
|
202 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
203 |
msgid "Max. execution time"
|
204 |
msgstr "Max udførelsestid"
|
205 |
|
206 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
207 |
msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
|
208 |
msgstr "Pluginnet fungerer ved med mellemrum at oprette et job i baggrunden, som undersøger dine indlæg for links, tjekker de fundne URL'er og foretager andre tidskrævende opgaver. Her kan du angive, hvor længe linkovervågningen max må køre hver gang, inden den skal stoppe."
|
209 |
|
210 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
211 |
msgid "Custom temporary directory"
|
212 |
msgstr "Brugerdefineret tmp-mappe"
|
213 |
|
214 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
215 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
216 |
msgid "OK"
|
217 |
msgstr "OK"
|
218 |
|
219 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
220 |
msgid "Error : This directory isn't writable by PHP."
|
221 |
msgstr "Fejl: Denne mappe er ikke skrivbar for PHP."
|
222 |
|
223 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
224 |
msgid "Error : This directory doesn't exist."
|
225 |
msgstr "Fejl: Denne mappe eksisterer ikke."
|
226 |
|
227 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
228 |
msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
|
229 |
msgstr "Sæt dette felt, hvis du ønsker, at pluginnet skal bruge en brugerdefineret mappe til sine lock-filer. Ellers skal det ikke udfyldes."
|
230 |
|
231 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
232 |
msgid "Server load limit"
|
233 |
msgstr "Begrænsning på serverbelastning"
|
234 |
|
235 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
|
|
|
|
|
|
|
|
|
|
236 |
#, php-format
|
237 |
msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
|
238 |
msgstr "Linktjekning vil blive midlertidigt afbrudt, hvis den gennemsnitlige <a href=\"%s\">serverbelastning</a> er større end dette tal. Lad feltet stå tomt, hvis du vil deaktivere begrænsning af belastningen."
|
239 |
|
240 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
241 |
msgid "Not available"
|
242 |
msgstr "Ikke tilgængelig"
|
243 |
|
244 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
245 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
246 |
msgstr "Begrænsning af belastning virker kun på Linux-lignende systemer, hvor <code>/proc/loadavg</code> findes og er tilgængelig."
|
247 |
|
248 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
249 |
msgid "Forced recheck"
|
250 |
msgstr "Tvungen nytjek"
|
251 |
|
252 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
253 |
msgid "Re-check all pages"
|
254 |
msgstr "Tjek alle sider igen"
|
255 |
|
256 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
257 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
258 |
msgstr "\"Bombe\"-indstilling. Klik på denne knap for at få pluginnet til at tømme dets linkdatabase og tjekke hele siten igen helt forfra."
|
259 |
|
260 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
261 |
msgid "Save Changes"
|
262 |
msgstr "Gem ændringer"
|
263 |
|
264 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
265 |
msgid "Configure"
|
266 |
msgstr "Konfigurér"
|
267 |
|
268 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
269 |
msgid "Upgrade to Pro to enable this feature"
|
270 |
msgstr "Opgradér til Pro for at aktivere denne funktion"
|
271 |
|
272 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
273 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
274 |
msgstr "Tjek URL'er i disse Egne felter (en per linje):"
|
275 |
|
276 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
277 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
278 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
279 |
#, php-format
|
280 |
msgid "Database error : %s"
|
281 |
msgstr "Database-fejl : %s"
|
282 |
|
283 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
284 |
msgid "You must enter a filter name!"
|
285 |
msgstr "Du <i>skal</i> indtaste et filternavn!"
|
286 |
|
287 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
288 |
msgid "Invalid search query."
|
289 |
msgstr "Ugyldig søgeforespørgsel."
|
290 |
|
291 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
292 |
#, php-format
|
293 |
msgid "Filter \"%s\" created"
|
294 |
msgstr "Filter \"%s\" oprettet"
|
295 |
|
296 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
297 |
msgid "Filter ID not specified."
|
298 |
msgstr "Filter-id ikke angivet."
|
299 |
|
300 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
301 |
msgid "Filter deleted"
|
302 |
msgstr "Filter slettet"
|
303 |
|
304 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
305 |
#, php-format
|
306 |
msgid "Replaced %d redirect with a direct link"
|
307 |
msgid_plural "Replaced %d redirects with direct links"
|
308 |
msgstr[0] "Erstattede %d redirigeret link med et direkte link"
|
309 |
msgstr[1] "Erstattede %d redirigerede links med direkte links"
|
310 |
|
311 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
312 |
#, php-format
|
313 |
msgid "Failed to fix %d redirect"
|
314 |
msgid_plural "Failed to fix %d redirects"
|
315 |
msgstr[0] "Det lykkedes ikke at fixe %d redirigeret link"
|
316 |
msgstr[1] "Det lykkedes ikke at fixe %d redirigerede links"
|
317 |
|
318 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
319 |
msgid "None of the selected links are redirects!"
|
320 |
msgstr "Ingen af de valgte links er redirigerede links!"
|
321 |
|
322 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
#, php-format
|
324 |
msgid "%d link removed"
|
325 |
msgid_plural "%d links removed"
|
326 |
msgstr[0] "%d link fjernet"
|
327 |
msgstr[1] "%d links fjernet"
|
328 |
|
329 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
330 |
#, php-format
|
331 |
msgid "Failed to remove %d link"
|
332 |
msgid_plural "Failed to remove %d links"
|
333 |
msgstr[0] "Det mislykkedes for pluginnet at fjerne %d link."
|
334 |
msgstr[1] "Det mislykkedes for pluginnet at fjerne %d links."
|
335 |
|
336 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
337 |
#, php-format
|
338 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
339 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
340 |
msgstr[0] "%d link blev skippet, fordi det ikke kan flyttes til papirkurven. Du er nødt til at slette den selv."
|
341 |
msgstr[1] "%d link blev skippet, fordi de ikke kan flyttes til papirkurven. Du er nødt til at slette dem selv."
|
342 |
|
343 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
344 |
msgid "Didn't find anything to delete!"
|
345 |
msgstr "Fandt ikke noget, der kan slettes!"
|
346 |
|
347 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
348 |
#, php-format
|
349 |
msgid "%d link scheduled for rechecking"
|
350 |
msgid_plural "%d links scheduled for rechecking"
|
351 |
msgstr[0] "%d link er planlagt til at blive tjekket igen"
|
352 |
msgstr[1] "%d links er planlagt til at blive tjekket igen"
|
353 |
|
354 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
355 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
356 |
msgid "This link was manually marked as working by the user."
|
357 |
msgstr "Dette link blev markeret manuelt som et aktivt link af brugeren."
|
358 |
|
359 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
360 |
#, php-format
|
361 |
msgid "Couldn't modify link %d"
|
362 |
msgstr "Kunne ikke ændre linket %d"
|
363 |
|
364 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
365 |
#, php-format
|
366 |
msgid "%d link marked as not broken"
|
367 |
msgid_plural "%d links marked as not broken"
|
368 |
msgstr[0] "Et link markeret som ikke-dødt"
|
369 |
msgstr[1] "%d links markeret som ikke-døde"
|
370 |
|
371 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
372 |
msgid "Table columns"
|
373 |
msgstr "Tabelkolonner"
|
374 |
|
375 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
376 |
msgid "Show on screen"
|
377 |
msgstr "Vis på skærm"
|
378 |
|
379 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
380 |
msgid "links"
|
381 |
msgstr "links"
|
382 |
|
383 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
384 |
msgid "Apply"
|
385 |
msgstr "Anvend"
|
386 |
|
387 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
388 |
msgid "Misc"
|
389 |
msgstr "Diverse"
|
390 |
|
391 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
392 |
#, php-format
|
393 |
msgid "Highlight links broken for at least %s days"
|
394 |
msgstr "Fremhæv links, der har været døde i mindst %s dage"
|
395 |
|
396 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
397 |
msgid "Color-code status codes"
|
398 |
msgstr "Kod statuskoder med farver"
|
399 |
|
400 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
401 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
402 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
403 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
404 |
msgid "You're not allowed to do that!"
|
405 |
msgstr "Du har ikke lov til at gøre dette!"
|
406 |
|
407 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
408 |
msgid "View broken links"
|
409 |
msgstr "Se døde links"
|
410 |
|
411 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
412 |
#, php-format
|
413 |
msgid "Found %d broken link"
|
414 |
msgid_plural "Found %d broken links"
|
415 |
msgstr[0] "Har fundet %d dødt link"
|
416 |
msgstr[1] "Har fundet %d døde links"
|
417 |
|
418 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
419 |
msgid "No broken links found."
|
420 |
msgstr "Ingen døde links fundet."
|
421 |
|
422 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
423 |
#, php-format
|
424 |
msgid "%d URL in the work queue"
|
425 |
msgid_plural "%d URLs in the work queue"
|
426 |
msgstr[0] "%d URL i arbejdskøen"
|
427 |
msgstr[1] "%d URL'er i arbejdskøen"
|
428 |
|
429 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
430 |
msgid "No URLs in the work queue."
|
431 |
msgstr "Ingen URL'er i arbejdskøen"
|
432 |
|
433 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
434 |
#, php-format
|
435 |
msgid "Detected %d unique URL"
|
436 |
msgid_plural "Detected %d unique URLs"
|
437 |
msgstr[0] "Fandt %d unik URL"
|
438 |
msgstr[1] "Fandt %d unikke URL'er"
|
439 |
|
440 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
441 |
#, php-format
|
442 |
msgid "in %d link"
|
443 |
msgid_plural "in %d links"
|
444 |
msgstr[0] "i %d link"
|
445 |
msgstr[1] "i %d links"
|
446 |
|
447 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
448 |
msgid "and still searching..."
|
449 |
msgstr "og leder stadig ..."
|
450 |
|
451 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
452 |
msgid "Searching your blog for links..."
|
453 |
msgstr "Gennemsøger din blog for links ..."
|
454 |
|
455 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
456 |
msgid "No links detected."
|
457 |
msgstr "Ingen links fundet."
|
458 |
|
459 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
460 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
461 |
msgid "Unknown"
|
462 |
msgstr "Ukendt"
|
463 |
|
464 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
465 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
466 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
467 |
#, php-format
|
468 |
msgid "Oops, I can't find the link %d"
|
469 |
msgstr "Ups. Jeg kan ikke finde linket %d"
|
470 |
|
471 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
472 |
msgid "Oops, couldn't modify the link!"
|
473 |
msgstr "Ups, kunne ikke ændre linket!"
|
474 |
|
475 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
476 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
477 |
msgid "Error : link_id not specified"
|
478 |
msgstr "Fejl: link_id ikke angivet"
|
479 |
|
480 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
481 |
msgid "Oops, the new URL is invalid!"
|
482 |
msgstr "Ups. Den nye URL er ugyldig!"
|
483 |
|
484 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
485 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
486 |
msgid "An unexpected error occured!"
|
487 |
msgstr "En uventet fejl opstod!"
|
488 |
|
489 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
490 |
msgid "Error : link_id or new_url not specified"
|
491 |
msgstr "Fejl: link_id eller new_url ikke angivet"
|
492 |
|
493 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
494 |
msgid "You don't have sufficient privileges to access this information!"
|
495 |
msgstr "Du har ikke tilstrækkelige rettigheder til at tilgå denne information!"
|
496 |
|
497 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
498 |
msgid "Error : link ID not specified"
|
499 |
msgstr "Fejl: link-id ikke angivet"
|
500 |
|
501 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
502 |
#, php-format
|
503 |
msgid "Failed to load link details (%s)"
|
504 |
msgstr "Det mislykkedes at indlæse link-detaljer (%s)"
|
505 |
|
506 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
507 |
msgid "Broken Link Checker"
|
508 |
msgstr "Broken Link Checker"
|
509 |
|
510 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
511 |
#, php-format
|
512 |
msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
|
513 |
msgstr "Der er ikke adgang til den aktuelle tmp-mappe; angiv venligst <a href=\"%s\">en anden</a>."
|
514 |
|
515 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
516 |
#, php-format
|
517 |
msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
|
518 |
msgstr "Gør venligst mappen <code>%1$s</code> skrivbar for pluginnet eller <a href=\"%2$s\">angiv en brugerdefineret tmp-mappe</a>."
|
519 |
|
520 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
521 |
msgid "Broken Link Checker can't create a lockfile."
|
522 |
msgstr "Broken Link Checker kan ikke oprette en lock-fil."
|
523 |
|
524 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
525 |
msgid "The plugin uses a file-based locking mechanism to ensure that only one instance of the resource-heavy link checking algorithm is running at any given time. Unfortunately, BLC can't find a writable directory where it could store the lockfile - it failed to detect the location of your server's temporary directory, and the plugin's own directory isn't writable by PHP. To fix this problem, please make the plugin's directory writable or enter a specify a custom temporary directory in the plugin's settings."
|
526 |
msgstr "Pluginnet bruger en filbaseret lock-mekanisme for at sikre, at kun én instans af den ressourcekrævende linktjekningsalgoritme kører på én gang. Desværre kan BLC ikke finde en skrivbar mappe til at gemme lock-filen i. Det mislykkedes at finde placeringen af din servers tmp-mappe, og pluginnets egen mappe er ikke skrivbar for PHP. For at løse dette problem skal du gøre pluginnets mappe skrivbar eller indtaste en brugerdefineret tmp-mappe i pluginnets indstillinger."
|
527 |
|
528 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
529 |
msgid "PHP version"
|
530 |
msgstr "PHP version"
|
531 |
|
532 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
533 |
msgid "MySQL version"
|
534 |
msgstr "MySQL version"
|
535 |
|
536 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
537 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
538 |
msgstr "Du har en gammel version af cURL. Det er ikke sikkert, at detektion af redirigeringer fungerer ordentligt."
|
539 |
|
540 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
541 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
542 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
543 |
msgid "Not installed"
|
544 |
msgstr "Ikke installeret"
|
545 |
|
546 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
547 |
msgid "CURL version"
|
548 |
msgstr "cURL version"
|
549 |
|
550 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
551 |
msgid "Installed"
|
552 |
msgstr "Installeret"
|
553 |
|
554 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
555 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
556 |
msgstr "Du skal have enten cURL eller Snoopy installeret, hvis pluginnet skal virke!"
|
557 |
|
558 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
559 |
msgid "On"
|
560 |
msgstr "Til"
|
561 |
|
562 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
563 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
564 |
msgstr "Redirigeringer kan (fejlagtigt) blive bestemt som døde links, når safe_mode er til."
|
565 |
|
566 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
567 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
568 |
msgid "Off"
|
569 |
msgstr "Fra"
|
570 |
|
571 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
572 |
#, php-format
|
573 |
msgid "On ( %s )"
|
574 |
msgstr "Fra ( %s )"
|
575 |
|
576 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
577 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
578 |
msgstr "Redirigeringer kan (fejlagtigt) blive bestemt som døde links, når open_basedir er til."
|
579 |
|
580 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
581 |
msgid "Can't create a lockfile. Please specify a custom temporary directory."
|
582 |
msgstr "Kan ikke oprette lock-fil. Angiv venligst en brugerdefineret tmp-mappe."
|
583 |
|
584 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
585 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
586 |
msgstr "Hvis denne værdi er nul selv efter adskillige genindlæsninger af siden har du sandsynligvis opdaget en bug."
|
587 |
|
588 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
589 |
#, php-format
|
590 |
msgid "[%s] Broken links detected"
|
591 |
msgstr "[%s] døde links fundet"
|
592 |
|
593 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
594 |
#, php-format
|
595 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
596 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
597 |
msgstr[0] "Broken Link Checker har opdaget %d nyt dødt link på din site."
|
598 |
msgstr[1] "Broken Link Checker har opdaget %d nye døde links på din site."
|
599 |
|
600 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
601 |
#, php-format
|
602 |
msgid "Here's a list of the first %d broken links:"
|
603 |
msgid_plural "Here's a list of the first %d broken links:"
|
604 |
msgstr[0] "Her er en liste med det første døde link:"
|
605 |
msgstr[1] "Her er en liste med de første %d døde links:"
|
606 |
|
607 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
608 |
msgid "Here's a list of the new broken links: "
|
609 |
msgstr "Her er en liste med de nye døde links: "
|
610 |
|
611 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
612 |
#, php-format
|
613 |
msgid "Link text : %s"
|
614 |
msgstr "Linktekst: %s"
|
615 |
|
616 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
617 |
#, php-format
|
618 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
619 |
msgstr "Link-URL: <a href=\"%s\">%s</a>"
|
620 |
|
621 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
622 |
#, php-format
|
623 |
msgid "Source : %s"
|
624 |
msgstr "Kilde: %s"
|
625 |
|
626 |
-
#: d:\wordpress\plugins\broken-link-checker/core/core.php:
|
627 |
msgid "You can see all broken links here:"
|
628 |
msgstr "Du kan se alle de døde links her:"
|
629 |
|
630 |
-
#: d:\wordpress\plugins\broken-link-checker/core/init.php:
|
631 |
msgid "Once Weekly"
|
632 |
msgstr "Engang om ugen"
|
633 |
|
634 |
-
#: d:\wordpress\plugins\broken-link-checker/core/init.php:
|
635 |
msgid "Twice a Month"
|
636 |
msgstr "To gange om måneden"
|
637 |
|
638 |
-
#: d:\wordpress\plugins\broken-link-checker/core/init.php:
|
639 |
msgid "Broken Link Checker installation failed"
|
640 |
msgstr "Installation af Broken Link Checker mislykkedes"
|
641 |
|
642 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
643 |
msgid "Edit"
|
644 |
msgstr "Redigér"
|
645 |
|
646 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
647 |
msgid "Move this item to the Trash"
|
648 |
msgstr "Flyt denne til papirkurven"
|
649 |
|
650 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
651 |
msgid "Trash"
|
652 |
msgstr "Papirkurv"
|
653 |
|
654 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
655 |
msgid "Delete this item permanently"
|
656 |
msgstr "Slet dette indlæg permanent"
|
657 |
|
658 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
659 |
msgid "Delete"
|
660 |
msgstr "Slet"
|
661 |
|
662 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
663 |
#, php-format
|
664 |
msgid "Preview “%s”"
|
665 |
msgstr "Preview “%s”"
|
666 |
|
667 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
668 |
msgid "Preview"
|
669 |
msgstr "Preview"
|
670 |
|
671 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
672 |
#, php-format
|
673 |
msgid "View “%s”"
|
674 |
msgstr "Vis “%s”"
|
675 |
|
676 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
677 |
msgid "View"
|
678 |
msgstr "Se"
|
679 |
|
680 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
681 |
msgid "Edit this item"
|
682 |
msgstr "Redigér denne"
|
683 |
|
684 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
685 |
msgid "Nothing to update"
|
686 |
msgstr "Intet at opdatere"
|
687 |
|
688 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
689 |
#, php-format
|
690 |
msgid "Updating post %d failed"
|
691 |
msgstr "Opdatering af indlægget %d mislykkedes"
|
692 |
|
693 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
694 |
#, php-format
|
695 |
msgid "Failed to delete post \"%s\" (%d)"
|
696 |
msgstr "Det mislykkedes at slette indlægget \"%s\" (%d)"
|
697 |
|
698 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
699 |
#, php-format
|
700 |
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
701 |
msgstr "Kan ikke flytte indlægget \"%s\" (%d) til papirkurven, fordi papirkurvsfunktionen er deaktiveret"
|
702 |
|
703 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
704 |
#, php-format
|
705 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
706 |
msgstr "Det mislykkedes at flytte indlægget \"%s\" (%d) til papirkurven"
|
707 |
|
708 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
709 |
#, php-format
|
710 |
msgid "%d post deleted."
|
711 |
msgid_plural "%d posts deleted."
|
712 |
msgstr[0] "%d indlæg slettet"
|
713 |
msgstr[1] "%d indlæg slettet"
|
714 |
|
715 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
716 |
#, php-format
|
717 |
msgid "%d page deleted."
|
718 |
msgid_plural "%d pages deleted."
|
719 |
msgstr[0] "%d side slettet"
|
720 |
msgstr[1] "%d sider slettet"
|
721 |
|
722 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
723 |
#, php-format
|
724 |
msgid "%d \"%s\" deleted."
|
725 |
msgid_plural "%d \"%s\" deleted."
|
726 |
msgstr[0] "%d \"%s\" slettet."
|
727 |
msgstr[1] "%d \"%s\" slettet."
|
728 |
|
729 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
730 |
#, php-format
|
731 |
msgid "%d post moved to the Trash."
|
732 |
msgid_plural "%d posts moved to the Trash."
|
733 |
msgstr[0] "%d indlæg flyttet til papirkurven"
|
734 |
msgstr[1] "%d indlæg flyttet til papirkurven"
|
735 |
|
736 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
737 |
#, php-format
|
738 |
msgid "%d page moved to the Trash."
|
739 |
msgid_plural "%d pages moved to the Trash."
|
740 |
msgstr[0] "%d side flyttet til papirkurven"
|
741 |
msgstr[1] "%d side flyttet til papirkurven"
|
742 |
|
743 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:
|
744 |
#, php-format
|
745 |
msgid "%d \"%s\" moved to the Trash."
|
746 |
msgid_plural "%d \"%s\" moved to the Trash."
|
@@ -754,8 +773,8 @@ msgid_plural "%d '%s' have been deleted"
|
|
754 |
msgstr[0] "%d '%s' er blevet slettet"
|
755 |
msgstr[1] "%d '%s' er blevet slettede"
|
756 |
|
757 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/containers.php:
|
758 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/containers.php:
|
759 |
#, php-format
|
760 |
msgid "Container type '%s' not recognized"
|
761 |
msgstr "Container-type '%s' ikke genkendt"
|
@@ -881,131 +900,131 @@ msgstr "Søgeresultater"
|
|
881 |
msgid "No links found for your query"
|
882 |
msgstr "Din forespørgsel returnerede ingen links"
|
883 |
|
884 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
885 |
msgid "The plugin script was terminated while trying to check the link."
|
886 |
msgstr "Pluginskriptet blev afbrudt, mens det prøvede at tjekke et link."
|
887 |
|
888 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
889 |
msgid "The plugin doesn't know how to check this type of link."
|
890 |
msgstr "Pluginnet ved ikke, hvordan det skal tjekke denne type links."
|
891 |
|
892 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
893 |
msgid "Link is valid."
|
894 |
msgstr "Link er aktivt."
|
895 |
|
896 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
897 |
msgid "Link is broken."
|
898 |
msgstr "Link er dødt."
|
899 |
|
900 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
901 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
902 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
903 |
msgid "Link is not valid"
|
904 |
msgstr "Link er ikke gyldigt"
|
905 |
|
906 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
907 |
msgid "This link can not be edited because it is not used anywhere on this site."
|
908 |
msgstr "Dette link kan ikke redigeres, fordi det ikke bruges noget steds på denne site."
|
909 |
|
910 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
911 |
msgid "Failed to create a DB entry for the new URL."
|
912 |
msgstr "Det mislykkedes at oprette en databasepost for den nye URL."
|
913 |
|
914 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
915 |
msgid "This link is not a redirect"
|
916 |
msgstr "Dette link er ikke en redirect"
|
917 |
|
918 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
919 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
920 |
msgid "Couldn't delete the link's database record"
|
921 |
msgstr "Kunne ikke slette linkets databasepost"
|
922 |
|
923 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
924 |
msgid "Unknown Error"
|
925 |
msgstr "Ukendt fejl"
|
926 |
|
927 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
928 |
msgid "Not checked"
|
929 |
msgstr "Ikke tjekket"
|
930 |
|
931 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:
|
932 |
msgid "False positive"
|
933 |
msgstr "Falsk positiv"
|
934 |
|
935 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/parsers.php:
|
936 |
#, php-format
|
937 |
msgid "Editing is not implemented in the '%s' parser"
|
938 |
msgstr "Redigering er ikke implementeret i '%s'-parser"
|
939 |
|
940 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/parsers.php:
|
941 |
#, php-format
|
942 |
msgid "Unlinking is not implemented in the '%s' parser"
|
943 |
msgstr "Fjernelse af links er ikke implementeret i '%s'-parseren"
|
944 |
|
945 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:
|
946 |
#, php-format
|
947 |
msgid "%d second"
|
948 |
msgid_plural "%d seconds"
|
949 |
msgstr[0] "%d sekund"
|
950 |
msgstr[1] "%d sekunder"
|
951 |
|
952 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:
|
953 |
#, php-format
|
954 |
msgid "%d second ago"
|
955 |
msgid_plural "%d seconds ago"
|
956 |
msgstr[0] "%d sekund siden"
|
957 |
msgstr[1] "%d sekunder siden"
|
958 |
|
959 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:
|
960 |
#, php-format
|
961 |
msgid "%d minute"
|
962 |
msgid_plural "%d minutes"
|
963 |
msgstr[0] "%d minut"
|
964 |
msgstr[1] "%d minutter"
|
965 |
|
966 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:
|
967 |
#, php-format
|
968 |
msgid "%d minute ago"
|
969 |
msgid_plural "%d minutes ago"
|
970 |
msgstr[0] "%d minut siden"
|
971 |
msgstr[1] "%d minutter siden"
|
972 |
|
973 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:
|
974 |
#, php-format
|
975 |
msgid "%d hour"
|
976 |
msgid_plural "%d hours"
|
977 |
msgstr[0] "%d time"
|
978 |
msgstr[1] "%d timer"
|
979 |
|
980 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:
|
981 |
#, php-format
|
982 |
msgid "%d hour ago"
|
983 |
msgid_plural "%d hours ago"
|
984 |
msgstr[0] "%d time siden"
|
985 |
msgstr[1] "%d timer siden"
|
986 |
|
987 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:
|
988 |
#, php-format
|
989 |
msgid "%d day"
|
990 |
msgid_plural "%d days"
|
991 |
msgstr[0] "%d dag"
|
992 |
msgstr[1] "%d dage"
|
993 |
|
994 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:
|
995 |
#, php-format
|
996 |
msgid "%d day ago"
|
997 |
msgid_plural "%d days ago"
|
998 |
msgstr[0] "%d dag siden"
|
999 |
msgstr[1] "%d dage siden"
|
1000 |
|
1001 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:
|
1002 |
#, php-format
|
1003 |
msgid "%d month"
|
1004 |
msgid_plural "%d months"
|
1005 |
msgstr[0] "%d måned"
|
1006 |
msgstr[1] "%d måneder"
|
1007 |
|
1008 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:
|
1009 |
#, php-format
|
1010 |
msgid "%d month ago"
|
1011 |
msgid_plural "%d months ago"
|
@@ -1023,8 +1042,7 @@ msgid "Wait..."
|
|
1023 |
msgstr "Vent ..."
|
1024 |
|
1025 |
#: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:99
|
1026 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1027 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:621
|
1028 |
msgid "Not broken"
|
1029 |
msgstr "Ikke død"
|
1030 |
|
@@ -1062,9 +1080,8 @@ msgid "The plugin failed to remove the link."
|
|
1062 |
msgstr "Det mislykkedes for pluginnet at fjerne linket."
|
1063 |
|
1064 |
#: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:361
|
1065 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1066 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1067 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:615
|
1068 |
msgid "Unlink"
|
1069 |
msgstr "Fjern link"
|
1070 |
|
@@ -1088,7 +1105,7 @@ msgstr ""
|
|
1088 |
"Er du sikker på, at du ønsker at slette alle indlæg, bogmærker og andre ting, der indeholder et af de valgte links? Denne handling kan ikke fortrydes.\n"
|
1089 |
"'Annullér' for at stoppe, 'OK' for at slette"
|
1090 |
|
1091 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:
|
1092 |
msgid ""
|
1093 |
"Are you sure you want to remove the selected links? This action can't be undone.\n"
|
1094 |
"'Cancel' to stop, 'OK' to remove"
|
@@ -1096,6 +1113,14 @@ msgstr ""
|
|
1096 |
"Er du sikker på, at du ønsker at fjerne de valgte links? Denne handling kan ikke fortrydes.\n"
|
1097 |
"'Annullér' for at stoppe, 'OK' for at slette"
|
1098 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1099 |
#: d:\wordpress\plugins\broken-link-checker/includes/admin/options-page-js.php:54
|
1100 |
msgid "Hide debug info"
|
1101 |
msgstr "Skjul debug-info"
|
@@ -1113,13 +1138,12 @@ msgid "Link text"
|
|
1113 |
msgstr "Linktekst"
|
1114 |
|
1115 |
#: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:45
|
1116 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1117 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:187
|
1118 |
msgid "URL"
|
1119 |
msgstr "URL"
|
1120 |
|
1121 |
#: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:48
|
1122 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1123 |
msgid "HTTP code"
|
1124 |
msgstr "HTTP-kode"
|
1125 |
|
@@ -1145,163 +1169,179 @@ msgid "Search Links"
|
|
1145 |
msgstr "Søg links"
|
1146 |
|
1147 |
#: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:113
|
1148 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1149 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1150 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1151 |
msgid "Cancel"
|
1152 |
msgstr "Annullér"
|
1153 |
|
1154 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1155 |
msgid "Compact View"
|
1156 |
msgstr "Kompakt visning"
|
1157 |
|
1158 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1159 |
msgid "Detailed View"
|
1160 |
msgstr "Detaljeret visning"
|
1161 |
|
1162 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1163 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:192
|
1164 |
msgid "Source"
|
1165 |
msgstr "Kilde"
|
1166 |
|
1167 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1168 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:198
|
1169 |
msgid "Link Text"
|
1170 |
msgstr "Linktekst"
|
1171 |
|
1172 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1173 |
msgid "Bulk Actions"
|
1174 |
msgstr "Massehandlinger"
|
1175 |
|
1176 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
|
|
|
|
|
|
|
|
|
|
1177 |
msgid "Recheck"
|
1178 |
msgstr "Tjek igen"
|
1179 |
|
1180 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1181 |
msgid "Fix redirects"
|
1182 |
msgstr "Fix redirigerede"
|
1183 |
|
1184 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1185 |
msgid "Mark as not broken"
|
1186 |
msgstr "Markér som ikke-død"
|
1187 |
|
1188 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1189 |
msgid "Move sources to Trash"
|
1190 |
msgstr "Flyt kilder til papirkurven"
|
1191 |
|
1192 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1193 |
msgid "Delete sources"
|
1194 |
msgstr "Slet kilder"
|
1195 |
|
1196 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1197 |
msgid "«"
|
1198 |
msgstr "«"
|
1199 |
|
1200 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1201 |
msgid "»"
|
1202 |
msgstr "»"
|
1203 |
|
1204 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1205 |
#, php-format
|
1206 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1207 |
msgstr "Viser %s–%s af <span class=\"current-link-count\">%s</span>"
|
1208 |
|
1209 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1210 |
msgid "Post published on"
|
1211 |
msgstr "Indlæg udgivet den"
|
1212 |
|
1213 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1214 |
msgid "Link last checked"
|
1215 |
msgstr "Link sidst tjekket"
|
1216 |
|
1217 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1218 |
msgid "Never"
|
1219 |
msgstr "Aldrig"
|
1220 |
|
1221 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1222 |
msgid "Response time"
|
1223 |
msgstr "Svartid"
|
1224 |
|
1225 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1226 |
#, php-format
|
1227 |
msgid "%2.3f seconds"
|
1228 |
msgstr "%2.3f sekunder"
|
1229 |
|
1230 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1231 |
msgid "Final URL"
|
1232 |
msgstr "Endelige URL"
|
1233 |
|
1234 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1235 |
msgid "Redirect count"
|
1236 |
msgstr "Antal redirigeringer"
|
1237 |
|
1238 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1239 |
msgid "Instance count"
|
1240 |
msgstr "Antal instanser"
|
1241 |
|
1242 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1243 |
#, php-format
|
1244 |
msgid "This link has failed %d time."
|
1245 |
msgid_plural "This link has failed %d times."
|
1246 |
msgstr[0] "Der har været fejl på dette link %d gang."
|
1247 |
msgstr[1] "Der har været fejl på dette link %d gange."
|
1248 |
|
1249 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1250 |
#, php-format
|
1251 |
msgid "This link has been broken for %s."
|
1252 |
msgstr "Dette link har været dødt i %s."
|
1253 |
|
1254 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1255 |
msgid "Log"
|
1256 |
msgstr "Log"
|
1257 |
|
1258 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1259 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:658
|
1260 |
-
msgid "[An orphaned link! This is a bug.]"
|
1261 |
-
msgstr "[En forælderløs link! Dette er en bug.]"
|
1262 |
-
|
1263 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:522
|
1264 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:558
|
1265 |
msgid "Show more info about this link"
|
1266 |
msgstr "Vis flere oplysninger om dette link"
|
1267 |
|
1268 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1269 |
-
|
1270 |
-
|
1271 |
-
msgstr "Fjern dette link fra alle indlæg"
|
1272 |
|
1273 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1274 |
-
|
1275 |
-
|
1276 |
-
msgstr "Fjern dette link fra listen over døde links og markér det som aktivt"
|
1277 |
|
1278 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1279 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:612
|
1280 |
msgid "Edit link URL"
|
1281 |
msgstr "Redigér link-URL"
|
1282 |
|
1283 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1284 |
-
|
1285 |
-
|
1286 |
-
msgstr "Redigér URL"
|
1287 |
|
1288 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1289 |
-
|
|
|
|
|
|
|
1290 |
msgid "Cancel URL editing"
|
1291 |
msgstr "Anullér redigering af URL"
|
1292 |
|
1293 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:
|
1294 |
-
msgid "Checked"
|
1295 |
-
msgstr "Tjekket"
|
1296 |
-
|
1297 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:592
|
1298 |
-
msgid "Broken for"
|
1299 |
-
msgstr "Død for"
|
1300 |
-
|
1301 |
-
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:636
|
1302 |
msgid "Update URL"
|
1303 |
msgstr "Opdatér URL"
|
1304 |
|
|
|
|
|
|
|
|
|
1305 |
#: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:242
|
1306 |
msgid "Server Not Found"
|
1307 |
msgstr "Server ikke fundet"
|
@@ -1404,14 +1444,14 @@ msgstr "Se kommentar"
|
|
1404 |
msgid "Comment"
|
1405 |
msgstr "Kommentar"
|
1406 |
|
1407 |
-
#: d:\wordpress\plugins\broken-link-checker/modules/containers/comment.php:
|
1408 |
#, php-format
|
1409 |
msgid "%d comment has been deleted."
|
1410 |
msgid_plural "%d comments have been deleted."
|
1411 |
msgstr[0] "%d kommentar er blevet slettet"
|
1412 |
msgstr[1] "%d kommentarer er blevet slettede"
|
1413 |
|
1414 |
-
#: d:\wordpress\plugins\broken-link-checker/modules/containers/comment.php:
|
1415 |
#, php-format
|
1416 |
msgid "%d comment moved to the Trash."
|
1417 |
msgid_plural "%d comments moved to the Trash."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Broken Link Checker 0.9.7.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-10-10 21:08+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
|
8 |
"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
|
17 |
"X-Poedit-Basepath: d:\\wordpress\\plugins\\broken-link-checker\n"
|
18 |
"X-Poedit-SearchPath-0: d:\\wordpress\\plugins\\broken-link-checker\n"
|
19 |
|
20 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:152
|
21 |
msgid "Loading..."
|
22 |
msgstr "Indlæser ..."
|
23 |
|
24 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:176
|
25 |
msgid "[ Network error ]"
|
26 |
msgstr "[ Network-fejl ]"
|
27 |
|
28 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:201
|
29 |
msgid "Automatically expand the widget if broken links have been detected"
|
30 |
msgstr "Automatisk udvid widgetten, hvis der er fundet døde links"
|
31 |
|
32 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:342
|
33 |
msgid "Link Checker Settings"
|
34 |
msgstr "Link Checker-indstillinger"
|
35 |
|
36 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:343
|
37 |
msgid "Link Checker"
|
38 |
msgstr "Link Checker"
|
39 |
|
40 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:348
|
41 |
#: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:26
|
42 |
msgid "Broken Links"
|
43 |
msgstr "Døde links"
|
44 |
|
45 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:364
|
46 |
msgid "View Broken Links"
|
47 |
msgstr "Se døde links"
|
48 |
|
49 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:392
|
50 |
msgid "Settings"
|
51 |
msgstr "Indstillinger"
|
52 |
|
53 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:404
|
54 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1186
|
55 |
#, php-format
|
56 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
57 |
msgstr "Fejl: Pluginnets databasetabeller er ikke up-to-date! (Nuværende version: %d; forventet: %d)"
|
58 |
|
59 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:543
|
60 |
msgid "Settings saved."
|
61 |
msgstr "Indstillinger gemt."
|
62 |
|
63 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:550
|
64 |
msgid "Complete site recheck started."
|
65 |
msgstr "Fuldstændig ny tjek af site påbegyndt."
|
66 |
|
67 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:564
|
68 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2744
|
69 |
msgid "Details"
|
70 |
msgstr "Detaljer"
|
71 |
|
72 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:578
|
73 |
msgid "General"
|
74 |
msgstr "Generel"
|
75 |
|
76 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:579
|
77 |
msgid "Look For Links In"
|
78 |
msgstr "Se efter links i"
|
79 |
|
80 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:580
|
81 |
msgid "Which Links To Check"
|
82 |
msgstr "Hvilke links der skal tjekkes"
|
83 |
|
84 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:581
|
85 |
msgid "Protocols & APIs"
|
86 |
msgstr "Protokoller & API'er"
|
87 |
|
88 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:582
|
89 |
msgid "Advanced"
|
90 |
msgstr "Avanceret"
|
91 |
|
92 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:586
|
93 |
msgid "Broken Link Checker Options"
|
94 |
msgstr "Indstillinger for Broken Link Checker"
|
95 |
|
96 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:612
|
97 |
msgid "Status"
|
98 |
msgstr "Status"
|
99 |
|
100 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:614
|
101 |
msgid "Show debug info"
|
102 |
msgstr "Vis debug-info"
|
103 |
|
104 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:642
|
105 |
msgid "Check each link"
|
106 |
msgstr "Tjek hvert link"
|
107 |
|
108 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:647
|
109 |
#, php-format
|
110 |
msgid "Every %s hours"
|
111 |
msgstr "hver %s timer"
|
112 |
|
113 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:656
|
114 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
115 |
msgstr "Eksisterende links vil blive tjekket med dette mellemrum. Nye links tjekkes normalt så hurtigt som muligt."
|
116 |
|
117 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:663
|
118 |
msgid "E-mail notifications"
|
119 |
msgstr "E-mail-meddelelser"
|
120 |
|
121 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:669
|
122 |
msgid "Send me e-mail notifications about newly detected broken links"
|
123 |
msgstr "Send mig e-mail-meddelelser om nyligt opdagede døde links"
|
124 |
|
125 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:676
|
126 |
msgid "Link tweaks"
|
127 |
msgstr "Linktilpasninger"
|
128 |
|
129 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:682
|
130 |
msgid "Apply custom formatting to broken links"
|
131 |
msgstr "Anvend egen formattering på døde links"
|
132 |
|
133 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:686
|
134 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:714
|
135 |
msgid "Edit CSS"
|
136 |
msgstr "Redigér CSS"
|
137 |
|
138 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:710
|
139 |
msgid "Apply custom formatting to removed links"
|
140 |
msgstr "Anvend egen formattering på links, der er fjernet"
|
141 |
|
142 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:738
|
143 |
msgid "Stop search engines from following broken links"
|
144 |
msgstr "Forhindr søgemaskiner i at følge døde links"
|
145 |
|
146 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:755
|
147 |
msgid "Look for links in"
|
148 |
msgstr "Se efter links i"
|
149 |
|
150 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:766
|
151 |
msgid "Post statuses"
|
152 |
msgstr "Indlægsstatusser"
|
153 |
|
154 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:799
|
155 |
msgid "Link types"
|
156 |
msgstr "Linktyper"
|
157 |
|
158 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:805
|
159 |
msgid "Error : All link parsers missing!"
|
160 |
msgstr "Fejl: Alle linkparsers mangler!"
|
161 |
|
162 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:812
|
163 |
msgid "Exclusion list"
|
164 |
msgstr "Eksklusionsliste"
|
165 |
|
166 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:813
|
167 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
168 |
msgstr "Tjek ikke links, hvor URL'en indeholder et af disse ord (et ord per linje):"
|
169 |
|
170 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:831
|
171 |
msgid "Check links using"
|
172 |
msgstr "Tjek link med"
|
173 |
|
174 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:850
|
175 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:849
|
176 |
msgid "Timeout"
|
177 |
msgstr "Timeout"
|
178 |
|
179 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:856
|
180 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:902
|
181 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2871
|
182 |
#, php-format
|
183 |
msgid "%s seconds"
|
184 |
msgstr "%s sekunder"
|
185 |
|
186 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:865
|
187 |
msgid "Links that take longer than this to load will be marked as broken."
|
188 |
msgstr "Links, som tager længere tid at tjekke end dette, vil blive markeret som døde."
|
189 |
|
190 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:872
|
191 |
msgid "Link monitor"
|
192 |
msgstr "Linkovervågning"
|
193 |
|
194 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:880
|
195 |
msgid "Run continuously while the Dashboard is open"
|
196 |
msgstr "Kør kontinuerligt, når kontrolpanelet er åbent"
|
197 |
|
198 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:888
|
199 |
msgid "Run hourly in the background"
|
200 |
msgstr "Kør hver time i baggrunden"
|
201 |
|
202 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:896
|
203 |
msgid "Max. execution time"
|
204 |
msgstr "Max udførelsestid"
|
205 |
|
206 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:913
|
207 |
msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
|
208 |
msgstr "Pluginnet fungerer ved med mellemrum at oprette et job i baggrunden, som undersøger dine indlæg for links, tjekker de fundne URL'er og foretager andre tidskrævende opgaver. Her kan du angive, hvor længe linkovervågningen max må køre hver gang, inden den skal stoppe."
|
209 |
|
210 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:923
|
211 |
msgid "Custom temporary directory"
|
212 |
msgstr "Brugerdefineret tmp-mappe"
|
213 |
|
214 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:932
|
215 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:875
|
216 |
msgid "OK"
|
217 |
msgstr "OK"
|
218 |
|
219 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:935
|
220 |
msgid "Error : This directory isn't writable by PHP."
|
221 |
msgstr "Fejl: Denne mappe er ikke skrivbar for PHP."
|
222 |
|
223 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:940
|
224 |
msgid "Error : This directory doesn't exist."
|
225 |
msgstr "Fejl: Denne mappe eksisterer ikke."
|
226 |
|
227 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:948
|
228 |
msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
|
229 |
msgstr "Sæt dette felt, hvis du ønsker, at pluginnet skal bruge en brugerdefineret mappe til sine lock-filer. Ellers skal det ikke udfyldes."
|
230 |
|
231 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:955
|
232 |
msgid "Server load limit"
|
233 |
msgstr "Begrænsning på serverbelastning"
|
234 |
|
235 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:970
|
236 |
+
#, php-format
|
237 |
+
msgid "Current load : %s"
|
238 |
+
msgstr "Aktuel belastning: %s"
|
239 |
+
|
240 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:976
|
241 |
#, php-format
|
242 |
msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
|
243 |
msgstr "Linktjekning vil blive midlertidigt afbrudt, hvis den gennemsnitlige <a href=\"%s\">serverbelastning</a> er større end dette tal. Lad feltet stå tomt, hvis du vil deaktivere begrænsning af belastningen."
|
244 |
|
245 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:984
|
246 |
msgid "Not available"
|
247 |
msgstr "Ikke tilgængelig"
|
248 |
|
249 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:986
|
250 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
251 |
msgstr "Begrænsning af belastning virker kun på Linux-lignende systemer, hvor <code>/proc/loadavg</code> findes og er tilgængelig."
|
252 |
|
253 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:994
|
254 |
msgid "Forced recheck"
|
255 |
msgstr "Tvungen nytjek"
|
256 |
|
257 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:997
|
258 |
msgid "Re-check all pages"
|
259 |
msgstr "Tjek alle sider igen"
|
260 |
|
261 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1001
|
262 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
263 |
msgstr "\"Bombe\"-indstilling. Klik på denne knap for at få pluginnet til at tømme dets linkdatabase og tjekke hele siten igen helt forfra."
|
264 |
|
265 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1012
|
266 |
msgid "Save Changes"
|
267 |
msgstr "Gem ændringer"
|
268 |
|
269 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1057
|
270 |
msgid "Configure"
|
271 |
msgstr "Konfigurér"
|
272 |
|
273 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1117
|
274 |
msgid "Upgrade to Pro to enable this feature"
|
275 |
msgstr "Opgradér til Pro for at aktivere denne funktion"
|
276 |
|
277 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1152
|
278 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
279 |
msgstr "Tjek URL'er i disse Egne felter (en per linje):"
|
280 |
|
281 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1286
|
282 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1370
|
283 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1402
|
284 |
#, php-format
|
285 |
msgid "Database error : %s"
|
286 |
msgstr "Database-fejl : %s"
|
287 |
|
288 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1352
|
289 |
msgid "You must enter a filter name!"
|
290 |
msgstr "Du <i>skal</i> indtaste et filternavn!"
|
291 |
|
292 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1356
|
293 |
msgid "Invalid search query."
|
294 |
msgstr "Ugyldig søgeforespørgsel."
|
295 |
|
296 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1365
|
297 |
#, php-format
|
298 |
msgid "Filter \"%s\" created"
|
299 |
msgstr "Filter \"%s\" oprettet"
|
300 |
|
301 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1392
|
302 |
msgid "Filter ID not specified."
|
303 |
msgstr "Filter-id ikke angivet."
|
304 |
|
305 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1399
|
306 |
msgid "Filter deleted"
|
307 |
msgstr "Filter slettet"
|
308 |
|
309 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1447
|
310 |
#, php-format
|
311 |
msgid "Replaced %d redirect with a direct link"
|
312 |
msgid_plural "Replaced %d redirects with direct links"
|
313 |
msgstr[0] "Erstattede %d redirigeret link med et direkte link"
|
314 |
msgstr[1] "Erstattede %d redirigerede links med direkte links"
|
315 |
|
316 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1458
|
317 |
#, php-format
|
318 |
msgid "Failed to fix %d redirect"
|
319 |
msgid_plural "Failed to fix %d redirects"
|
320 |
msgstr[0] "Det lykkedes ikke at fixe %d redirigeret link"
|
321 |
msgstr[1] "Det lykkedes ikke at fixe %d redirigerede links"
|
322 |
|
323 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1468
|
324 |
msgid "None of the selected links are redirects!"
|
325 |
msgstr "Ingen af de valgte links er redirigerede links!"
|
326 |
|
327 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1547
|
328 |
+
#, php-format
|
329 |
+
msgid "%d link updated."
|
330 |
+
msgid_plural "%d links updated."
|
331 |
+
msgstr[0] "%d link opdateret."
|
332 |
+
msgstr[1] "%d links opdateret."
|
333 |
+
|
334 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1558
|
335 |
+
#, php-format
|
336 |
+
msgid "Failed to update %d link."
|
337 |
+
msgid_plural "Failed to update %d links."
|
338 |
+
msgstr[0] "Det mislykkedes at opdatere %d link."
|
339 |
+
msgstr[1] "Det mislykkedes at opdatere %d links."
|
340 |
+
|
341 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1612
|
342 |
#, php-format
|
343 |
msgid "%d link removed"
|
344 |
msgid_plural "%d links removed"
|
345 |
msgstr[0] "%d link fjernet"
|
346 |
msgstr[1] "%d links fjernet"
|
347 |
|
348 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1623
|
349 |
#, php-format
|
350 |
msgid "Failed to remove %d link"
|
351 |
msgid_plural "Failed to remove %d links"
|
352 |
msgstr[0] "Det mislykkedes for pluginnet at fjerne %d link."
|
353 |
msgstr[1] "Det mislykkedes for pluginnet at fjerne %d links."
|
354 |
|
355 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1732
|
356 |
#, php-format
|
357 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
358 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
359 |
msgstr[0] "%d link blev skippet, fordi det ikke kan flyttes til papirkurven. Du er nødt til at slette den selv."
|
360 |
msgstr[1] "%d link blev skippet, fordi de ikke kan flyttes til papirkurven. Du er nødt til at slette dem selv."
|
361 |
|
362 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1753
|
363 |
msgid "Didn't find anything to delete!"
|
364 |
msgstr "Fandt ikke noget, der kan slettes!"
|
365 |
|
366 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1781
|
367 |
#, php-format
|
368 |
msgid "%d link scheduled for rechecking"
|
369 |
msgid_plural "%d links scheduled for rechecking"
|
370 |
msgstr[0] "%d link er planlagt til at blive tjekket igen"
|
371 |
msgstr[1] "%d links er planlagt til at blive tjekket igen"
|
372 |
|
373 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1826
|
374 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2431
|
375 |
msgid "This link was manually marked as working by the user."
|
376 |
msgstr "Dette link blev markeret manuelt som et aktivt link af brugeren."
|
377 |
|
378 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1833
|
379 |
#, php-format
|
380 |
msgid "Couldn't modify link %d"
|
381 |
msgstr "Kunne ikke ændre linket %d"
|
382 |
|
383 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1844
|
384 |
#, php-format
|
385 |
msgid "%d link marked as not broken"
|
386 |
msgid_plural "%d links marked as not broken"
|
387 |
msgstr[0] "Et link markeret som ikke-dødt"
|
388 |
msgstr[1] "%d links markeret som ikke-døde"
|
389 |
|
390 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1884
|
391 |
msgid "Table columns"
|
392 |
msgstr "Tabelkolonner"
|
393 |
|
394 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1903
|
395 |
msgid "Show on screen"
|
396 |
msgstr "Vis på skærm"
|
397 |
|
398 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1910
|
399 |
msgid "links"
|
400 |
msgstr "links"
|
401 |
|
402 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1911
|
403 |
msgid "Apply"
|
404 |
msgstr "Anvend"
|
405 |
|
406 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1915
|
407 |
msgid "Misc"
|
408 |
msgstr "Diverse"
|
409 |
|
410 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1930
|
411 |
#, php-format
|
412 |
msgid "Highlight links broken for at least %s days"
|
413 |
msgstr "Fremhæv links, der har været døde i mindst %s dage"
|
414 |
|
415 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1939
|
416 |
msgid "Color-code status codes"
|
417 |
msgstr "Kod statuskoder med farver"
|
418 |
|
419 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:1956
|
420 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2416
|
421 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2452
|
422 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2515
|
423 |
msgid "You're not allowed to do that!"
|
424 |
msgstr "Du har ikke lov til at gøre dette!"
|
425 |
|
426 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2297
|
427 |
msgid "View broken links"
|
428 |
msgstr "Se døde links"
|
429 |
|
430 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2298
|
431 |
#, php-format
|
432 |
msgid "Found %d broken link"
|
433 |
msgid_plural "Found %d broken links"
|
434 |
msgstr[0] "Har fundet %d dødt link"
|
435 |
msgstr[1] "Har fundet %d døde links"
|
436 |
|
437 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2304
|
438 |
msgid "No broken links found."
|
439 |
msgstr "Ingen døde links fundet."
|
440 |
|
441 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2311
|
442 |
#, php-format
|
443 |
msgid "%d URL in the work queue"
|
444 |
msgid_plural "%d URLs in the work queue"
|
445 |
msgstr[0] "%d URL i arbejdskøen"
|
446 |
msgstr[1] "%d URL'er i arbejdskøen"
|
447 |
|
448 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2314
|
449 |
msgid "No URLs in the work queue."
|
450 |
msgstr "Ingen URL'er i arbejdskøen"
|
451 |
|
452 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2320
|
453 |
#, php-format
|
454 |
msgid "Detected %d unique URL"
|
455 |
msgid_plural "Detected %d unique URLs"
|
456 |
msgstr[0] "Fandt %d unik URL"
|
457 |
msgstr[1] "Fandt %d unikke URL'er"
|
458 |
|
459 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2321
|
460 |
#, php-format
|
461 |
msgid "in %d link"
|
462 |
msgid_plural "in %d links"
|
463 |
msgstr[0] "i %d link"
|
464 |
msgstr[1] "i %d links"
|
465 |
|
466 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2326
|
467 |
msgid "and still searching..."
|
468 |
msgstr "og leder stadig ..."
|
469 |
|
470 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2332
|
471 |
msgid "Searching your blog for links..."
|
472 |
msgstr "Gennemsøger din blog for links ..."
|
473 |
|
474 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2334
|
475 |
msgid "No links detected."
|
476 |
msgstr "Ingen links fundet."
|
477 |
|
478 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2360
|
479 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:831
|
480 |
msgid "Unknown"
|
481 |
msgstr "Ukendt"
|
482 |
|
483 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2424
|
484 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2462
|
485 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2525
|
486 |
#, php-format
|
487 |
msgid "Oops, I can't find the link %d"
|
488 |
msgstr "Ups. Jeg kan ikke finde linket %d"
|
489 |
|
490 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2437
|
491 |
msgid "Oops, couldn't modify the link!"
|
492 |
msgstr "Ups, kunne ikke ændre linket!"
|
493 |
|
494 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2440
|
495 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2551
|
496 |
msgid "Error : link_id not specified"
|
497 |
msgstr "Fejl: link_id ikke angivet"
|
498 |
|
499 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2472
|
500 |
msgid "Oops, the new URL is invalid!"
|
501 |
msgstr "Ups. Den nye URL er ugyldig!"
|
502 |
|
503 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2483
|
504 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2534
|
505 |
msgid "An unexpected error occured!"
|
506 |
msgstr "En uventet fejl opstod!"
|
507 |
|
508 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2501
|
509 |
msgid "Error : link_id or new_url not specified"
|
510 |
msgstr "Fejl: link_id eller new_url ikke angivet"
|
511 |
|
512 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2560
|
513 |
msgid "You don't have sufficient privileges to access this information!"
|
514 |
msgstr "Du har ikke tilstrækkelige rettigheder til at tilgå denne information!"
|
515 |
|
516 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2573
|
517 |
msgid "Error : link ID not specified"
|
518 |
msgstr "Fejl: link-id ikke angivet"
|
519 |
|
520 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2587
|
521 |
#, php-format
|
522 |
msgid "Failed to load link details (%s)"
|
523 |
msgstr "Det mislykkedes at indlæse link-detaljer (%s)"
|
524 |
|
525 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2716
|
526 |
msgid "Broken Link Checker"
|
527 |
msgstr "Broken Link Checker"
|
528 |
|
529 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2730
|
530 |
#, php-format
|
531 |
msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
|
532 |
msgstr "Der er ikke adgang til den aktuelle tmp-mappe; angiv venligst <a href=\"%s\">en anden</a>."
|
533 |
|
534 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2735
|
535 |
#, php-format
|
536 |
msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
|
537 |
msgstr "Gør venligst mappen <code>%1$s</code> skrivbar for pluginnet eller <a href=\"%2$s\">angiv en brugerdefineret tmp-mappe</a>."
|
538 |
|
539 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2742
|
540 |
msgid "Broken Link Checker can't create a lockfile."
|
541 |
msgstr "Broken Link Checker kan ikke oprette en lock-fil."
|
542 |
|
543 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2747
|
544 |
msgid "The plugin uses a file-based locking mechanism to ensure that only one instance of the resource-heavy link checking algorithm is running at any given time. Unfortunately, BLC can't find a writable directory where it could store the lockfile - it failed to detect the location of your server's temporary directory, and the plugin's own directory isn't writable by PHP. To fix this problem, please make the plugin's directory writable or enter a specify a custom temporary directory in the plugin's settings."
|
545 |
msgstr "Pluginnet bruger en filbaseret lock-mekanisme for at sikre, at kun én instans af den ressourcekrævende linktjekningsalgoritme kører på én gang. Desværre kan BLC ikke finde en skrivbar mappe til at gemme lock-filen i. Det mislykkedes at finde placeringen af din servers tmp-mappe, og pluginnets egen mappe er ikke skrivbar for PHP. For at løse dette problem skal du gøre pluginnets mappe skrivbar eller indtaste en brugerdefineret tmp-mappe i pluginnets indstillinger."
|
546 |
|
547 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2766
|
548 |
msgid "PHP version"
|
549 |
msgstr "PHP version"
|
550 |
|
551 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2772
|
552 |
msgid "MySQL version"
|
553 |
msgstr "MySQL version"
|
554 |
|
555 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2785
|
556 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
557 |
msgstr "Du har en gammel version af cURL. Det er ikke sikkert, at detektion af redirigeringer fungerer ordentligt."
|
558 |
|
559 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2797
|
560 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2813
|
561 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2818
|
562 |
msgid "Not installed"
|
563 |
msgstr "Ikke installeret"
|
564 |
|
565 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2800
|
566 |
msgid "CURL version"
|
567 |
msgstr "cURL version"
|
568 |
|
569 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2806
|
570 |
msgid "Installed"
|
571 |
msgstr "Installeret"
|
572 |
|
573 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2819
|
574 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
575 |
msgstr "Du skal have enten cURL eller Snoopy installeret, hvis pluginnet skal virke!"
|
576 |
|
577 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2830
|
578 |
msgid "On"
|
579 |
msgstr "Til"
|
580 |
|
581 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2831
|
582 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
583 |
msgstr "Redirigeringer kan (fejlagtigt) blive bestemt som døde links, når safe_mode er til."
|
584 |
|
585 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2836
|
586 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2850
|
587 |
msgid "Off"
|
588 |
msgstr "Fra"
|
589 |
|
590 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2844
|
591 |
#, php-format
|
592 |
msgid "On ( %s )"
|
593 |
msgstr "Fra ( %s )"
|
594 |
|
595 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2845
|
596 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
597 |
msgstr "Redirigeringer kan (fejlagtigt) blive bestemt som døde links, når open_basedir er til."
|
598 |
|
599 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2864
|
600 |
msgid "Can't create a lockfile. Please specify a custom temporary directory."
|
601 |
msgstr "Kan ikke oprette lock-fil. Angiv venligst en brugerdefineret tmp-mappe."
|
602 |
|
603 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2888
|
604 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
605 |
msgstr "Hvis denne værdi er nul selv efter adskillige genindlæsninger af siden har du sandsynligvis opdaget en bug."
|
606 |
|
607 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2959
|
608 |
#, php-format
|
609 |
msgid "[%s] Broken links detected"
|
610 |
msgstr "[%s] døde links fundet"
|
611 |
|
612 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2965
|
613 |
#, php-format
|
614 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
615 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
616 |
msgstr[0] "Broken Link Checker har opdaget %d nyt dødt link på din site."
|
617 |
msgstr[1] "Broken Link Checker har opdaget %d nye døde links på din site."
|
618 |
|
619 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2980
|
620 |
#, php-format
|
621 |
msgid "Here's a list of the first %d broken links:"
|
622 |
msgid_plural "Here's a list of the first %d broken links:"
|
623 |
msgstr[0] "Her er en liste med det første døde link:"
|
624 |
msgstr[1] "Her er en liste med de første %d døde links:"
|
625 |
|
626 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:2988
|
627 |
msgid "Here's a list of the new broken links: "
|
628 |
msgstr "Her er en liste med de nye døde links: "
|
629 |
|
630 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:3000
|
631 |
#, php-format
|
632 |
msgid "Link text : %s"
|
633 |
msgstr "Linktekst: %s"
|
634 |
|
635 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:3001
|
636 |
#, php-format
|
637 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
638 |
msgstr "Link-URL: <a href=\"%s\">%s</a>"
|
639 |
|
640 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:3002
|
641 |
#, php-format
|
642 |
msgid "Source : %s"
|
643 |
msgstr "Kilde: %s"
|
644 |
|
645 |
+
#: d:\wordpress\plugins\broken-link-checker/core/core.php:3016
|
646 |
msgid "You can see all broken links here:"
|
647 |
msgstr "Du kan se alle de døde links her:"
|
648 |
|
649 |
+
#: d:\wordpress\plugins\broken-link-checker/core/init.php:236
|
650 |
msgid "Once Weekly"
|
651 |
msgstr "Engang om ugen"
|
652 |
|
653 |
+
#: d:\wordpress\plugins\broken-link-checker/core/init.php:242
|
654 |
msgid "Twice a Month"
|
655 |
msgstr "To gange om måneden"
|
656 |
|
657 |
+
#: d:\wordpress\plugins\broken-link-checker/core/init.php:309
|
658 |
msgid "Broken Link Checker installation failed"
|
659 |
msgstr "Installation af Broken Link Checker mislykkedes"
|
660 |
|
661 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:398
|
662 |
msgid "Edit"
|
663 |
msgstr "Redigér"
|
664 |
|
665 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:406
|
666 |
msgid "Move this item to the Trash"
|
667 |
msgstr "Flyt denne til papirkurven"
|
668 |
|
669 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:408
|
670 |
msgid "Trash"
|
671 |
msgstr "Papirkurv"
|
672 |
|
673 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:413
|
674 |
msgid "Delete this item permanently"
|
675 |
msgstr "Slet dette indlæg permanent"
|
676 |
|
677 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:415
|
678 |
msgid "Delete"
|
679 |
msgstr "Slet"
|
680 |
|
681 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:428
|
682 |
#, php-format
|
683 |
msgid "Preview “%s”"
|
684 |
msgstr "Preview “%s”"
|
685 |
|
686 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:429
|
687 |
msgid "Preview"
|
688 |
msgstr "Preview"
|
689 |
|
690 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:436
|
691 |
#, php-format
|
692 |
msgid "View “%s”"
|
693 |
msgstr "Vis “%s”"
|
694 |
|
695 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:437
|
696 |
msgid "View"
|
697 |
msgstr "Se"
|
698 |
|
699 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:456
|
700 |
msgid "Edit this item"
|
701 |
msgstr "Redigér denne"
|
702 |
|
703 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:520
|
704 |
msgid "Nothing to update"
|
705 |
msgstr "Intet at opdatere"
|
706 |
|
707 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:530
|
708 |
#, php-format
|
709 |
msgid "Updating post %d failed"
|
710 |
msgstr "Opdatering af indlægget %d mislykkedes"
|
711 |
|
712 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:565
|
713 |
#, php-format
|
714 |
msgid "Failed to delete post \"%s\" (%d)"
|
715 |
msgstr "Det mislykkedes at slette indlægget \"%s\" (%d)"
|
716 |
|
717 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:584
|
718 |
#, php-format
|
719 |
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
720 |
msgstr "Kan ikke flytte indlægget \"%s\" (%d) til papirkurven, fordi papirkurvsfunktionen er deaktiveret"
|
721 |
|
722 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:604
|
723 |
#, php-format
|
724 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
725 |
msgstr "Det mislykkedes at flytte indlægget \"%s\" (%d) til papirkurven"
|
726 |
|
727 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:712
|
728 |
#, php-format
|
729 |
msgid "%d post deleted."
|
730 |
msgid_plural "%d posts deleted."
|
731 |
msgstr[0] "%d indlæg slettet"
|
732 |
msgstr[1] "%d indlæg slettet"
|
733 |
|
734 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:714
|
735 |
#, php-format
|
736 |
msgid "%d page deleted."
|
737 |
msgid_plural "%d pages deleted."
|
738 |
msgstr[0] "%d side slettet"
|
739 |
msgstr[1] "%d sider slettet"
|
740 |
|
741 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:716
|
742 |
#, php-format
|
743 |
msgid "%d \"%s\" deleted."
|
744 |
msgid_plural "%d \"%s\" deleted."
|
745 |
msgstr[0] "%d \"%s\" slettet."
|
746 |
msgstr[1] "%d \"%s\" slettet."
|
747 |
|
748 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:735
|
749 |
#, php-format
|
750 |
msgid "%d post moved to the Trash."
|
751 |
msgid_plural "%d posts moved to the Trash."
|
752 |
msgstr[0] "%d indlæg flyttet til papirkurven"
|
753 |
msgstr[1] "%d indlæg flyttet til papirkurven"
|
754 |
|
755 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:737
|
756 |
#, php-format
|
757 |
msgid "%d page moved to the Trash."
|
758 |
msgid_plural "%d pages moved to the Trash."
|
759 |
msgstr[0] "%d side flyttet til papirkurven"
|
760 |
msgstr[1] "%d side flyttet til papirkurven"
|
761 |
|
762 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:739
|
763 |
#, php-format
|
764 |
msgid "%d \"%s\" moved to the Trash."
|
765 |
msgid_plural "%d \"%s\" moved to the Trash."
|
773 |
msgstr[0] "%d '%s' er blevet slettet"
|
774 |
msgstr[1] "%d '%s' er blevet slettede"
|
775 |
|
776 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/containers.php:882
|
777 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/containers.php:900
|
778 |
#, php-format
|
779 |
msgid "Container type '%s' not recognized"
|
780 |
msgstr "Container-type '%s' ikke genkendt"
|
900 |
msgid "No links found for your query"
|
901 |
msgstr "Din forespørgsel returnerede ingen links"
|
902 |
|
903 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:215
|
904 |
msgid "The plugin script was terminated while trying to check the link."
|
905 |
msgstr "Pluginskriptet blev afbrudt, mens det prøvede at tjekke et link."
|
906 |
|
907 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:261
|
908 |
msgid "The plugin doesn't know how to check this type of link."
|
909 |
msgstr "Pluginnet ved ikke, hvordan det skal tjekke denne type links."
|
910 |
|
911 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:349
|
912 |
msgid "Link is valid."
|
913 |
msgstr "Link er aktivt."
|
914 |
|
915 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:351
|
916 |
msgid "Link is broken."
|
917 |
msgstr "Link er dødt."
|
918 |
|
919 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:564
|
920 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:666
|
921 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:693
|
922 |
msgid "Link is not valid"
|
923 |
msgstr "Link er ikke gyldigt"
|
924 |
|
925 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:581
|
926 |
msgid "This link can not be edited because it is not used anywhere on this site."
|
927 |
msgstr "Dette link kan ikke redigeres, fordi det ikke bruges noget steds på denne site."
|
928 |
|
929 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:607
|
930 |
msgid "Failed to create a DB entry for the new URL."
|
931 |
msgstr "Det mislykkedes at oprette en databasepost for den nye URL."
|
932 |
|
933 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:673
|
934 |
msgid "This link is not a redirect"
|
935 |
msgstr "Dette link er ikke en redirect"
|
936 |
|
937 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:720
|
938 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:757
|
939 |
msgid "Couldn't delete the link's database record"
|
940 |
msgstr "Kunne ikke slette linkets databasepost"
|
941 |
|
942 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:845
|
943 |
msgid "Unknown Error"
|
944 |
msgstr "Ukendt fejl"
|
945 |
|
946 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:869
|
947 |
msgid "Not checked"
|
948 |
msgstr "Ikke tjekket"
|
949 |
|
950 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/links.php:872
|
951 |
msgid "False positive"
|
952 |
msgstr "Falsk positiv"
|
953 |
|
954 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/parsers.php:109
|
955 |
#, php-format
|
956 |
msgid "Editing is not implemented in the '%s' parser"
|
957 |
msgstr "Redigering er ikke implementeret i '%s'-parser"
|
958 |
|
959 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/parsers.php:124
|
960 |
#, php-format
|
961 |
msgid "Unlinking is not implemented in the '%s' parser"
|
962 |
msgstr "Fjernelse af links er ikke implementeret i '%s'-parseren"
|
963 |
|
964 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:287
|
965 |
#, php-format
|
966 |
msgid "%d second"
|
967 |
msgid_plural "%d seconds"
|
968 |
msgstr[0] "%d sekund"
|
969 |
msgstr[1] "%d sekunder"
|
970 |
|
971 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:288
|
972 |
#, php-format
|
973 |
msgid "%d second ago"
|
974 |
msgid_plural "%d seconds ago"
|
975 |
msgstr[0] "%d sekund siden"
|
976 |
msgstr[1] "%d sekunder siden"
|
977 |
|
978 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:291
|
979 |
#, php-format
|
980 |
msgid "%d minute"
|
981 |
msgid_plural "%d minutes"
|
982 |
msgstr[0] "%d minut"
|
983 |
msgstr[1] "%d minutter"
|
984 |
|
985 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:292
|
986 |
#, php-format
|
987 |
msgid "%d minute ago"
|
988 |
msgid_plural "%d minutes ago"
|
989 |
msgstr[0] "%d minut siden"
|
990 |
msgstr[1] "%d minutter siden"
|
991 |
|
992 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:295
|
993 |
#, php-format
|
994 |
msgid "%d hour"
|
995 |
msgid_plural "%d hours"
|
996 |
msgstr[0] "%d time"
|
997 |
msgstr[1] "%d timer"
|
998 |
|
999 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:296
|
1000 |
#, php-format
|
1001 |
msgid "%d hour ago"
|
1002 |
msgid_plural "%d hours ago"
|
1003 |
msgstr[0] "%d time siden"
|
1004 |
msgstr[1] "%d timer siden"
|
1005 |
|
1006 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:299
|
1007 |
#, php-format
|
1008 |
msgid "%d day"
|
1009 |
msgid_plural "%d days"
|
1010 |
msgstr[0] "%d dag"
|
1011 |
msgstr[1] "%d dage"
|
1012 |
|
1013 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:300
|
1014 |
#, php-format
|
1015 |
msgid "%d day ago"
|
1016 |
msgid_plural "%d days ago"
|
1017 |
msgstr[0] "%d dag siden"
|
1018 |
msgstr[1] "%d dage siden"
|
1019 |
|
1020 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:303
|
1021 |
#, php-format
|
1022 |
msgid "%d month"
|
1023 |
msgid_plural "%d months"
|
1024 |
msgstr[0] "%d måned"
|
1025 |
msgstr[1] "%d måneder"
|
1026 |
|
1027 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:304
|
1028 |
#, php-format
|
1029 |
msgid "%d month ago"
|
1030 |
msgid_plural "%d months ago"
|
1042 |
msgstr "Vent ..."
|
1043 |
|
1044 |
#: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:99
|
1045 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:592
|
|
|
1046 |
msgid "Not broken"
|
1047 |
msgstr "Ikke død"
|
1048 |
|
1080 |
msgstr "Det mislykkedes for pluginnet at fjerne linket."
|
1081 |
|
1082 |
#: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:361
|
1083 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:237
|
1084 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:586
|
|
|
1085 |
msgid "Unlink"
|
1086 |
msgstr "Fjern link"
|
1087 |
|
1105 |
"Er du sikker på, at du ønsker at slette alle indlæg, bogmærker og andre ting, der indeholder et af de valgte links? Denne handling kan ikke fortrydes.\n"
|
1106 |
"'Annullér' for at stoppe, 'OK' for at slette"
|
1107 |
|
1108 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:449
|
1109 |
msgid ""
|
1110 |
"Are you sure you want to remove the selected links? This action can't be undone.\n"
|
1111 |
"'Cancel' to stop, 'OK' to remove"
|
1113 |
"Er du sikker på, at du ønsker at fjerne de valgte links? Denne handling kan ikke fortrydes.\n"
|
1114 |
"'Annullér' for at stoppe, 'OK' for at slette"
|
1115 |
|
1116 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:558
|
1117 |
+
msgid "Enter a search string first."
|
1118 |
+
msgstr "Indtast først en søgestreng."
|
1119 |
+
|
1120 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:565
|
1121 |
+
msgid "Select one or more links to edit."
|
1122 |
+
msgstr "Vælg en eller flere links, der skal redigeres."
|
1123 |
+
|
1124 |
#: d:\wordpress\plugins\broken-link-checker/includes/admin/options-page-js.php:54
|
1125 |
msgid "Hide debug info"
|
1126 |
msgstr "Skjul debug-info"
|
1138 |
msgstr "Linktekst"
|
1139 |
|
1140 |
#: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:45
|
1141 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:173
|
|
|
1142 |
msgid "URL"
|
1143 |
msgstr "URL"
|
1144 |
|
1145 |
#: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:48
|
1146 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:460
|
1147 |
msgid "HTTP code"
|
1148 |
msgstr "HTTP-kode"
|
1149 |
|
1169 |
msgstr "Søg links"
|
1170 |
|
1171 |
#: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:113
|
1172 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:318
|
1173 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:600
|
1174 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:606
|
1175 |
msgid "Cancel"
|
1176 |
msgstr "Annullér"
|
1177 |
|
1178 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:150
|
1179 |
msgid "Compact View"
|
1180 |
msgstr "Kompakt visning"
|
1181 |
|
1182 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:151
|
1183 |
msgid "Detailed View"
|
1184 |
msgstr "Detaljeret visning"
|
1185 |
|
1186 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:178
|
|
|
1187 |
msgid "Source"
|
1188 |
msgstr "Kilde"
|
1189 |
|
1190 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:184
|
|
|
1191 |
msgid "Link Text"
|
1192 |
msgstr "Linktekst"
|
1193 |
|
1194 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:232
|
1195 |
msgid "Bulk Actions"
|
1196 |
msgstr "Massehandlinger"
|
1197 |
|
1198 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:233
|
1199 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:583
|
1200 |
+
msgid "Edit URL"
|
1201 |
+
msgstr "Redigér URL"
|
1202 |
+
|
1203 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:234
|
1204 |
msgid "Recheck"
|
1205 |
msgstr "Tjek igen"
|
1206 |
|
1207 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:235
|
1208 |
msgid "Fix redirects"
|
1209 |
msgstr "Fix redirigerede"
|
1210 |
|
1211 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:236
|
1212 |
msgid "Mark as not broken"
|
1213 |
msgstr "Markér som ikke-død"
|
1214 |
|
1215 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:240
|
1216 |
msgid "Move sources to Trash"
|
1217 |
msgstr "Flyt kilder til papirkurven"
|
1218 |
|
1219 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:242
|
1220 |
msgid "Delete sources"
|
1221 |
msgstr "Slet kilder"
|
1222 |
|
1223 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:262
|
1224 |
msgid "«"
|
1225 |
msgstr "«"
|
1226 |
|
1227 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:263
|
1228 |
msgid "»"
|
1229 |
msgstr "»"
|
1230 |
|
1231 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:271
|
1232 |
#, php-format
|
1233 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1234 |
msgstr "Viser %s–%s af <span class=\"current-link-count\">%s</span>"
|
1235 |
|
1236 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:294
|
1237 |
+
msgid "Bulk Edit URLs"
|
1238 |
+
msgstr "Masseredigér URL'er"
|
1239 |
+
|
1240 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:296
|
1241 |
+
msgid "Find"
|
1242 |
+
msgstr "Find"
|
1243 |
+
|
1244 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:300
|
1245 |
+
msgid "Replace with"
|
1246 |
+
msgstr "Erstat med"
|
1247 |
+
|
1248 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:308
|
1249 |
+
msgid "Case sensitive"
|
1250 |
+
msgstr "Der skelnes mellem små og store bogstaver"
|
1251 |
+
|
1252 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:312
|
1253 |
+
msgid "Regular expression"
|
1254 |
+
msgstr "Regular expression"
|
1255 |
+
|
1256 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:320
|
1257 |
+
msgid "Update"
|
1258 |
+
msgstr "Opdatér"
|
1259 |
+
|
1260 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:445
|
1261 |
msgid "Post published on"
|
1262 |
msgstr "Indlæg udgivet den"
|
1263 |
|
1264 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:450
|
1265 |
msgid "Link last checked"
|
1266 |
msgstr "Link sidst tjekket"
|
1267 |
|
1268 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:454
|
1269 |
msgid "Never"
|
1270 |
msgstr "Aldrig"
|
1271 |
|
1272 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:465
|
1273 |
msgid "Response time"
|
1274 |
msgstr "Svartid"
|
1275 |
|
1276 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:467
|
1277 |
#, php-format
|
1278 |
msgid "%2.3f seconds"
|
1279 |
msgstr "%2.3f sekunder"
|
1280 |
|
1281 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:470
|
1282 |
msgid "Final URL"
|
1283 |
msgstr "Endelige URL"
|
1284 |
|
1285 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:475
|
1286 |
msgid "Redirect count"
|
1287 |
msgstr "Antal redirigeringer"
|
1288 |
|
1289 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:480
|
1290 |
msgid "Instance count"
|
1291 |
msgstr "Antal instanser"
|
1292 |
|
1293 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:489
|
1294 |
#, php-format
|
1295 |
msgid "This link has failed %d time."
|
1296 |
msgid_plural "This link has failed %d times."
|
1297 |
msgstr[0] "Der har været fejl på dette link %d gang."
|
1298 |
msgstr[1] "Der har været fejl på dette link %d gange."
|
1299 |
|
1300 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:497
|
1301 |
#, php-format
|
1302 |
msgid "This link has been broken for %s."
|
1303 |
msgstr "Dette link har været dødt i %s."
|
1304 |
|
1305 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:508
|
1306 |
msgid "Log"
|
1307 |
msgstr "Log"
|
1308 |
|
1309 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:529
|
|
|
|
|
|
|
|
|
|
|
|
|
1310 |
msgid "Show more info about this link"
|
1311 |
msgstr "Vis flere oplysninger om dette link"
|
1312 |
|
1313 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:547
|
1314 |
+
msgid "Checked"
|
1315 |
+
msgstr "Tjekket"
|
|
|
1316 |
|
1317 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:563
|
1318 |
+
msgid "Broken for"
|
1319 |
+
msgstr "Død for"
|
|
|
1320 |
|
1321 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:583
|
|
|
1322 |
msgid "Edit link URL"
|
1323 |
msgstr "Redigér link-URL"
|
1324 |
|
1325 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:585
|
1326 |
+
msgid "Remove this link from all posts"
|
1327 |
+
msgstr "Fjern dette link fra alle indlæg"
|
|
|
1328 |
|
1329 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:591
|
1330 |
+
msgid "Remove this link from the list of broken links and mark it as valid"
|
1331 |
+
msgstr "Fjern dette link fra listen over døde links og markér det som aktivt"
|
1332 |
+
|
1333 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:600
|
1334 |
msgid "Cancel URL editing"
|
1335 |
msgstr "Anullér redigering af URL"
|
1336 |
|
1337 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:607
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1338 |
msgid "Update URL"
|
1339 |
msgstr "Opdatér URL"
|
1340 |
|
1341 |
+
#: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:629
|
1342 |
+
msgid "[An orphaned link! This is a bug.]"
|
1343 |
+
msgstr "[En forælderløs link! Dette er en bug.]"
|
1344 |
+
|
1345 |
#: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:242
|
1346 |
msgid "Server Not Found"
|
1347 |
msgstr "Server ikke fundet"
|
1444 |
msgid "Comment"
|
1445 |
msgstr "Kommentar"
|
1446 |
|
1447 |
+
#: d:\wordpress\plugins\broken-link-checker/modules/containers/comment.php:372
|
1448 |
#, php-format
|
1449 |
msgid "%d comment has been deleted."
|
1450 |
msgid_plural "%d comments have been deleted."
|
1451 |
msgstr[0] "%d kommentar er blevet slettet"
|
1452 |
msgstr[1] "%d kommentarer er blevet slettede"
|
1453 |
|
1454 |
+
#: d:\wordpress\plugins\broken-link-checker/modules/containers/comment.php:391
|
1455 |
#, php-format
|
1456 |
msgid "%d comment moved to the Trash."
|
1457 |
msgid_plural "%d comments moved to the Trash."
|
languages/broken-link-checker-it_IT.mo
CHANGED
Binary file
|
languages/broken-link-checker-it_IT.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Broken Link Checker in italiano\n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
10 |
-
"POT-Creation-Date: 2010-08
|
11 |
-
"PO-Revision-Date: 2010-
|
12 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
13 |
"Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -32,614 +32,636 @@ msgstr "[ Network error ]"
|
|
32 |
msgid "Automatically expand the widget if broken links have been detected"
|
33 |
msgstr "Espandi in automatico il widget qualora un link rotto fosse stato rilevato"
|
34 |
|
35 |
-
#: core/core.php:
|
36 |
msgid "Link Checker Settings"
|
37 |
msgstr "Impostazioni Link Checker"
|
38 |
|
39 |
-
#: core/core.php:
|
40 |
msgid "Link Checker"
|
41 |
msgstr "Link Checker"
|
42 |
|
43 |
-
#: core/core.php:
|
44 |
#: includes/link-query.php:26
|
45 |
msgid "Broken Links"
|
46 |
msgstr "Link rotti"
|
47 |
|
48 |
-
#: core/core.php:
|
49 |
msgid "View Broken Links"
|
50 |
msgstr "Visualizza i link rotti"
|
51 |
|
52 |
-
#: core/core.php:
|
53 |
msgid "Settings"
|
54 |
msgstr "Impostazioni"
|
55 |
|
56 |
-
#: core/core.php:
|
57 |
-
#: core/core.php:
|
58 |
#, php-format
|
59 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
60 |
msgstr "Errore: le tabelle del database di questo plugin non sono aggiornate! (versione in uso : %d, attesa : %d)"
|
61 |
|
62 |
-
#: core/core.php:
|
63 |
msgid "Settings saved."
|
64 |
msgstr "Le impostazioni sono state salvate."
|
65 |
|
66 |
-
#: core/core.php:
|
67 |
msgid "Complete site recheck started."
|
68 |
msgstr "E' in atto la nuova verifica completa per il sito."
|
69 |
|
70 |
-
#: core/core.php:
|
71 |
-
#: core/core.php:
|
72 |
-
#: includes/admin/table-printer.php:521
|
73 |
msgid "Details"
|
74 |
msgstr "Dettagli"
|
75 |
|
76 |
-
#: core/core.php:
|
77 |
msgid "General"
|
78 |
msgstr "Generale"
|
79 |
|
80 |
-
#: core/core.php:
|
81 |
msgid "Look For Links In"
|
82 |
msgstr "Cerca i link in"
|
83 |
|
84 |
-
#: core/core.php:
|
85 |
msgid "Which Links To Check"
|
86 |
msgstr "Quali link controllare"
|
87 |
|
88 |
-
#: core/core.php:
|
89 |
msgid "Protocols & APIs"
|
90 |
msgstr "Protocolli & API"
|
91 |
|
92 |
-
#: core/core.php:
|
93 |
msgid "Advanced"
|
94 |
msgstr "Avanzate"
|
95 |
|
96 |
-
#: core/core.php:
|
97 |
msgid "Broken Link Checker Options"
|
98 |
msgstr "Opzioni Broken Link Checker"
|
99 |
|
100 |
-
#: core/core.php:
|
101 |
-
#: includes/admin/table-printer.php:
|
102 |
msgid "Status"
|
103 |
msgstr "Stato"
|
104 |
|
105 |
-
#: core/core.php:
|
106 |
#: includes/admin/options-page-js.php:56
|
107 |
msgid "Show debug info"
|
108 |
msgstr "Mostra info debug"
|
109 |
|
110 |
-
#: core/core.php:
|
111 |
msgid "Check each link"
|
112 |
msgstr "Controlla i link"
|
113 |
|
114 |
-
#: core/core.php:
|
115 |
#, php-format
|
116 |
msgid "Every %s hours"
|
117 |
msgstr "Ogni %s ore"
|
118 |
|
119 |
-
#: core/core.php:
|
120 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
121 |
msgstr "I link già esistenti verranno controllati con questa frequenza i nuovi, lo saranno a breve."
|
122 |
|
123 |
-
#: core/core.php:
|
124 |
msgid "E-mail notifications"
|
125 |
msgstr "Notifiche email"
|
126 |
|
127 |
-
#: core/core.php:
|
128 |
msgid "Send me e-mail notifications about newly detected broken links"
|
129 |
msgstr "Inviami una email di notifica al rilevamento di un nuovo link rotto"
|
130 |
|
131 |
-
#: core/core.php:
|
132 |
msgid "Link tweaks"
|
133 |
msgstr "Link tweaks"
|
134 |
|
135 |
-
#: core/core.php:
|
136 |
msgid "Apply custom formatting to broken links"
|
137 |
msgstr "Applica formattazione personalizzata ai link rotti"
|
138 |
|
139 |
-
#: core/core.php:
|
140 |
-
#: core/core.php:
|
141 |
msgid "Edit CSS"
|
142 |
msgstr "Modifica CSS"
|
143 |
|
144 |
-
#: core/core.php:
|
145 |
msgid "Apply custom formatting to removed links"
|
146 |
msgstr "Applica la formattazione personalizzata ai link rimossi"
|
147 |
|
148 |
-
#: core/core.php:
|
149 |
msgid "Stop search engines from following broken links"
|
150 |
msgstr "Blocca i motori di ricerca per i seguenti link"
|
151 |
|
152 |
-
#: core/core.php:
|
153 |
msgid "Look for links in"
|
154 |
msgstr "Cerca i links in"
|
155 |
|
156 |
-
#: core/core.php:
|
157 |
msgid "Post statuses"
|
158 |
msgstr "Stati articolo"
|
159 |
|
160 |
-
#: core/core.php:
|
161 |
msgid "Link types"
|
162 |
msgstr "Tipo di link"
|
163 |
|
164 |
-
#: core/core.php:
|
165 |
msgid "Error : All link parsers missing!"
|
166 |
msgstr "Errore : manca l'analisi di tutti i link!"
|
167 |
|
168 |
-
#: core/core.php:
|
169 |
msgid "Exclusion list"
|
170 |
msgstr "Lista estromessi"
|
171 |
|
172 |
-
#: core/core.php:
|
173 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
174 |
msgstr "Non controllare gli URL che contengono queste parole (una per riga):"
|
175 |
|
176 |
-
#: core/core.php:
|
177 |
msgid "Check links using"
|
178 |
msgstr "Controlla utilizzo link"
|
179 |
|
180 |
-
#: core/core.php:
|
181 |
-
#: includes/links.php:
|
182 |
msgid "Timeout"
|
183 |
msgstr "Timeout"
|
184 |
|
185 |
-
#: core/core.php:
|
186 |
-
#: core/core.php:
|
187 |
-
#: core/core.php:
|
188 |
#, php-format
|
189 |
msgid "%s seconds"
|
190 |
msgstr "%s secondi"
|
191 |
|
192 |
-
#: core/core.php:
|
193 |
msgid "Links that take longer than this to load will be marked as broken."
|
194 |
msgstr "I link che impiegheranno un maggior tempo per essere caricati verranno considerati come rotti."
|
195 |
|
196 |
-
#: core/core.php:
|
197 |
msgid "Link monitor"
|
198 |
msgstr "Monitoraggio link"
|
199 |
|
200 |
-
#: core/core.php:
|
201 |
msgid "Run continuously while the Dashboard is open"
|
202 |
msgstr "Funzionamento continuo durante il periodo di login"
|
203 |
|
204 |
-
#: core/core.php:
|
205 |
msgid "Run hourly in the background"
|
206 |
msgstr "Funzionamento in background ogni ora"
|
207 |
|
208 |
-
#: core/core.php:
|
209 |
msgid "Max. execution time"
|
210 |
msgstr "Tempo max. operazione"
|
211 |
|
212 |
-
#: core/core.php:
|
213 |
msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
|
214 |
msgstr "Questo plugin opera grazie ad una richiesta periodica che lavora in background atta al rilevamento dei link contenuti nei post alla ricerca degli URL nonché compie delle operazioni che richiedono del tempo. Qui puoi impostare il tempo massimo di durata per la richiesta in background prima che essa termini."
|
215 |
|
216 |
-
#: core/core.php:
|
217 |
msgid "Custom temporary directory"
|
218 |
msgstr "Cartella temporanea personalizzata:"
|
219 |
|
220 |
-
#: core/core.php:
|
221 |
msgid "OK"
|
222 |
msgstr "OK"
|
223 |
|
224 |
-
#: core/core.php:
|
225 |
msgid "Error : This directory isn't writable by PHP."
|
226 |
msgstr "Errore : questa cartella non é scrivibile via PHP."
|
227 |
|
228 |
-
#: core/core.php:
|
229 |
msgid "Error : This directory doesn't exist."
|
230 |
msgstr "Errore : questa cartella non esiste."
|
231 |
|
232 |
-
#: core/core.php:
|
233 |
msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
|
234 |
msgstr "Compila questo campo qualora gradissi che il plugin faccia uso di una cartella personalizzata per i lockfile diversamente, lascia in bianco."
|
235 |
|
236 |
-
#: core/core.php:
|
237 |
msgid "Server load limit"
|
238 |
msgstr "Limite server load"
|
239 |
|
240 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
241 |
#, php-format
|
242 |
msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
|
243 |
msgstr "La verifica dei link sarà sospesa nel caso in cui il valore di media del <a href=\"%s\">server load</a> superasse questo numero. Lascia in bianco per disattivare il limite di caricamento."
|
244 |
|
245 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
246 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
247 |
msgstr "Il limite di caricamento funziona solamente per i sistemi Linux-like laddove la funzione <code>/proc/loadavg</code> sia presente ed accessibile."
|
248 |
|
249 |
-
#: core/core.php:
|
250 |
msgid "Forced recheck"
|
251 |
msgstr "Imponi nuova verifica"
|
252 |
|
253 |
-
#: core/core.php:
|
254 |
msgid "Re-check all pages"
|
255 |
msgstr "Ricontrolla tutte le pagine"
|
256 |
|
257 |
-
#: core/core.php:
|
258 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
259 |
msgstr "La \"Opzione atomica\". Clicca questo pulsante per fare sì che il plugin svuoti i link nel database ed effettui da zero un controllo del sito."
|
260 |
|
261 |
-
#: core/core.php:
|
262 |
msgid "Save Changes"
|
263 |
msgstr "Salva le modifiche"
|
264 |
|
265 |
-
#: core/core.php:
|
266 |
msgid "Configure"
|
267 |
msgstr "Configura"
|
268 |
|
269 |
-
#: core/core.php:
|
270 |
msgid "Upgrade to Pro to enable this feature"
|
271 |
msgstr "Aggiorna alla versione pro per attivare questa opzione"
|
272 |
|
273 |
-
#: core/core.php:
|
274 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
275 |
msgstr "Controlla gli URL inseriti in questi campi personalizzati (uno per riga):"
|
276 |
|
277 |
-
#: core/core.php:
|
278 |
-
#: core/core.php:
|
279 |
-
#: core/core.php:
|
280 |
#, php-format
|
281 |
msgid "Database error : %s"
|
282 |
msgstr "Errore database : %s"
|
283 |
|
284 |
-
#: core/core.php:
|
285 |
msgid "You must enter a filter name!"
|
286 |
msgstr "Deve essere inserito un nome del filtro!"
|
287 |
|
288 |
-
#: core/core.php:
|
289 |
msgid "Invalid search query."
|
290 |
msgstr "Termine di ricerca non valido."
|
291 |
|
292 |
-
#: core/core.php:
|
293 |
#, php-format
|
294 |
msgid "Filter \"%s\" created"
|
295 |
msgstr "E' stato creato il filtro \"%s\""
|
296 |
|
297 |
-
#: core/core.php:
|
298 |
msgid "Filter ID not specified."
|
299 |
msgstr "ID filtro non specificato."
|
300 |
|
301 |
-
#: core/core.php:
|
302 |
msgid "Filter deleted"
|
303 |
msgstr "Il filtro é stato cancellato"
|
304 |
|
305 |
-
#: core/core.php:
|
306 |
#, php-format
|
307 |
msgid "Replaced %d redirect with a direct link"
|
308 |
msgid_plural "Replaced %d redirects with direct links"
|
309 |
msgstr[0] "Sostituito %d reindirizzamento con un link diretto"
|
310 |
msgstr[1] "Sostituiti %d reindirizzamenti con dei link diretti"
|
311 |
|
312 |
-
#: core/core.php:
|
313 |
#, php-format
|
314 |
msgid "Failed to fix %d redirect"
|
315 |
msgid_plural "Failed to fix %d redirects"
|
316 |
msgstr[0] "Impossibile correggere il reindirizzamento per %d"
|
317 |
msgstr[1] "Impossibile correggere i reindirizzamenti per %d"
|
318 |
|
319 |
-
#: core/core.php:
|
320 |
msgid "None of the selected links are redirects!"
|
321 |
msgstr "Nessuno dei link selezionati é reindirizzato!"
|
322 |
|
323 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
#, php-format
|
325 |
msgid "%d link removed"
|
326 |
msgid_plural "%d links removed"
|
327 |
msgstr[0] "%d il link é stato rimosso"
|
328 |
msgstr[1] "%d i link sono stati rimossi"
|
329 |
|
330 |
-
#: core/core.php:
|
331 |
#, php-format
|
332 |
msgid "Failed to remove %d link"
|
333 |
msgid_plural "Failed to remove %d links"
|
334 |
msgstr[0] "Impossibile rimuovere il link %d"
|
335 |
msgstr[1] "Impossibile rimuovere i link %d"
|
336 |
|
337 |
-
#: core/core.php:
|
338 |
#, php-format
|
339 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
340 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
341 |
msgstr[0] "%d l'elemento é stato saltato poiché non potrà essere spostato nel cestino. Dovrai cancellarlo manualmente."
|
342 |
msgstr[1] "%d gli elementi sono stati saltati poiché non potranno essere spostati nel cestino. Dovrai cancellarli manualmente."
|
343 |
|
344 |
-
#: core/core.php:
|
345 |
msgid "Didn't find anything to delete!"
|
346 |
msgstr "Nulla da cancellare!"
|
347 |
|
348 |
-
#: core/core.php:
|
349 |
#, php-format
|
350 |
msgid "%d link scheduled for rechecking"
|
351 |
msgid_plural "%d links scheduled for rechecking"
|
352 |
msgstr[0] "%d link in verifica programmata"
|
353 |
msgstr[1] "%d link in verifica programmata"
|
354 |
|
355 |
-
#: core/core.php:
|
356 |
-
#: core/core.php:
|
357 |
msgid "This link was manually marked as working by the user."
|
358 |
msgstr "L'utente ha segnalato manualmente che questo link é funzionante."
|
359 |
|
360 |
-
#: core/core.php:
|
361 |
#, php-format
|
362 |
msgid "Couldn't modify link %d"
|
363 |
msgstr "Non é possibile modificare il link %d"
|
364 |
|
365 |
-
#: core/core.php:
|
366 |
#, php-format
|
367 |
msgid "%d link marked as not broken"
|
368 |
msgid_plural "%d links marked as not broken"
|
369 |
msgstr[0] "%d link segnato come funzionante"
|
370 |
msgstr[1] "%d link segnati come funzionanti"
|
371 |
|
372 |
-
#: core/core.php:
|
373 |
msgid "Table columns"
|
374 |
msgstr "Colonne tabella"
|
375 |
|
376 |
-
#: core/core.php:
|
377 |
msgid "Show on screen"
|
378 |
msgstr "Mostra sullo schermo"
|
379 |
|
380 |
-
#: core/core.php:
|
381 |
msgid "links"
|
382 |
msgstr "link"
|
383 |
|
384 |
-
#: core/core.php:
|
385 |
-
#: includes/admin/table-printer.php:
|
386 |
msgid "Apply"
|
387 |
msgstr "Applica"
|
388 |
|
389 |
-
#: core/core.php:
|
390 |
msgid "Misc"
|
391 |
msgstr "Varie"
|
392 |
|
393 |
-
#: core/core.php:
|
394 |
#, php-format
|
395 |
msgid "Highlight links broken for at least %s days"
|
396 |
msgstr "Evidenzia i link rotti per gli ultimi %s giorni"
|
397 |
|
398 |
-
#: core/core.php:
|
399 |
msgid "Color-code status codes"
|
400 |
msgstr "Codici stato codice-colore"
|
401 |
|
402 |
-
#: core/core.php:
|
403 |
-
#: core/core.php:
|
404 |
-
#: core/core.php:
|
405 |
-
#: core/core.php:
|
406 |
msgid "You're not allowed to do that!"
|
407 |
msgstr "Non hai il permesso per farlo!"
|
408 |
|
409 |
-
#: core/core.php:
|
410 |
msgid "View broken links"
|
411 |
msgstr "Visualizza i link rotti"
|
412 |
|
413 |
-
#: core/core.php:
|
414 |
#, php-format
|
415 |
msgid "Found %d broken link"
|
416 |
msgid_plural "Found %d broken links"
|
417 |
msgstr[0] "E' stato trovato %d link rotto"
|
418 |
msgstr[1] "Sono stati trovati %d link rotti"
|
419 |
|
420 |
-
#: core/core.php:
|
421 |
msgid "No broken links found."
|
422 |
msgstr "Non é stato trovato alcun link rotto."
|
423 |
|
424 |
-
#: core/core.php:
|
425 |
#, php-format
|
426 |
msgid "%d URL in the work queue"
|
427 |
msgid_plural "%d URLs in the work queue"
|
428 |
msgstr[0] "%d URL in coda di elaborazione"
|
429 |
msgstr[1] "%d URL in coda di elaborazione"
|
430 |
|
431 |
-
#: core/core.php:
|
432 |
msgid "No URLs in the work queue."
|
433 |
msgstr "Nessun URL in coda di elaborazione."
|
434 |
|
435 |
-
#: core/core.php:
|
436 |
#, php-format
|
437 |
msgid "Detected %d unique URL"
|
438 |
msgid_plural "Detected %d unique URLs"
|
439 |
msgstr[0] "E' stato rilevato %d URL unico"
|
440 |
msgstr[1] "Sono stati rilevati %d URL unici"
|
441 |
|
442 |
-
#: core/core.php:
|
443 |
#, php-format
|
444 |
msgid "in %d link"
|
445 |
msgid_plural "in %d links"
|
446 |
msgstr[0] "in %d link"
|
447 |
msgstr[1] "in %d link"
|
448 |
|
449 |
-
#: core/core.php:
|
450 |
msgid "and still searching..."
|
451 |
msgstr "ricerca in corso..."
|
452 |
|
453 |
-
#: core/core.php:
|
454 |
msgid "Searching your blog for links..."
|
455 |
msgstr "Ricerca dei link in corso..."
|
456 |
|
457 |
-
#: core/core.php:
|
458 |
msgid "No links detected."
|
459 |
msgstr "Nessun link é stato rilevato."
|
460 |
|
461 |
-
#: core/core.php:
|
462 |
msgctxt "current load"
|
463 |
msgid "Unknown"
|
464 |
msgstr "Sconosciuto"
|
465 |
|
466 |
-
#: core/core.php:
|
467 |
-
#: core/core.php:
|
468 |
-
#: core/core.php:
|
469 |
#, php-format
|
470 |
msgid "Oops, I can't find the link %d"
|
471 |
msgstr "Oops, non é possibile trovare il link %d"
|
472 |
|
473 |
-
#: core/core.php:
|
474 |
msgid "Oops, couldn't modify the link!"
|
475 |
msgstr "Oops, non é possibile modificare il link!"
|
476 |
|
477 |
-
#: core/core.php:
|
478 |
-
#: core/core.php:
|
479 |
msgid "Error : link_id not specified"
|
480 |
msgstr "Errore : non é stata specificata la link_id"
|
481 |
|
482 |
-
#: core/core.php:
|
483 |
msgid "Oops, the new URL is invalid!"
|
484 |
msgstr "Oops, il nuovo URL non é valido!"
|
485 |
|
486 |
-
#: core/core.php:
|
487 |
-
#: core/core.php:
|
488 |
msgid "An unexpected error occured!"
|
489 |
msgstr "Si é verificato un errore inatteso!"
|
490 |
|
491 |
-
#: core/core.php:
|
492 |
msgid "Error : link_id or new_url not specified"
|
493 |
msgstr "Errore : non é stata specificata la link_id oppure il new_url"
|
494 |
|
495 |
-
#: core/core.php:
|
496 |
msgid "You don't have sufficient privileges to access this information!"
|
497 |
msgstr "Non hai i permessi necessari per poter accedere a questa informazione!"
|
498 |
|
499 |
-
#: core/core.php:
|
500 |
msgid "Error : link ID not specified"
|
501 |
msgstr "Errore : La ID del link non é stata specificata"
|
502 |
|
503 |
-
#: core/core.php:
|
504 |
#, php-format
|
505 |
msgid "Failed to load link details (%s)"
|
506 |
msgstr "Non é stato possibile caricare i dettagli sul link (%s)"
|
507 |
|
508 |
-
#. #-#-#-#-# plugin.pot (Broken Link Checker 0.9.
|
509 |
#. Plugin Name of the plugin/theme
|
510 |
-
#: core/core.php:
|
511 |
msgid "Broken Link Checker"
|
512 |
msgstr "Broken Link Checker"
|
513 |
|
514 |
-
#: core/core.php:
|
515 |
#, php-format
|
516 |
msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
|
517 |
msgstr "La cartella temporanea non é accessibile; impostane una <a href=\"%s\">differente</a>."
|
518 |
|
519 |
-
#: core/core.php:
|
520 |
#, php-format
|
521 |
msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
|
522 |
msgstr "Rendi scrivibile la cartella <code>%1$s</code> oppure imposta una <a href=\"%2$s\">cartella temporanea</a>."
|
523 |
|
524 |
-
#: core/core.php:
|
525 |
msgid "Broken Link Checker can't create a lockfile."
|
526 |
msgstr "Broken Link Checker non può creare un lockfile."
|
527 |
|
528 |
-
#: core/core.php:
|
529 |
msgid "The plugin uses a file-based locking mechanism to ensure that only one instance of the resource-heavy link checking algorithm is running at any given time. Unfortunately, BLC can't find a writable directory where it could store the lockfile - it failed to detect the location of your server's temporary directory, and the plugin's own directory isn't writable by PHP. To fix this problem, please make the plugin's directory writable or enter a specify a custom temporary directory in the plugin's settings."
|
530 |
msgstr "Questo plugin utilizza un meccanismo di locking su base-file in modo tale che una sola richiesta per volta venga inoltrata all'algoritmo per la ricerca dei link. Sfortunatamente, BLC non ha trovato una cartella scrivibile laddove poter allocare il lockfile - non é stato possibile rilevare la posizione della cartella temporanea nel server e la cartella stessa del plugin non é scrivibile via PHP. Per risolvere il problema, rendi scrivibile la cartella del plugin oppure inserisci nelle impostazioni del plugin il percorso ad una cartella temporanea personalizzata."
|
531 |
|
532 |
-
#: core/core.php:
|
533 |
msgid "PHP version"
|
534 |
msgstr "Versione PHP"
|
535 |
|
536 |
-
#: core/core.php:
|
537 |
msgid "MySQL version"
|
538 |
msgstr "Versione MySQL"
|
539 |
|
540 |
-
#: core/core.php:
|
541 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
542 |
msgstr "Hai una versione datata del CURL. Il rilevamento del reindirizzamento potrebbe non funzionare."
|
543 |
|
544 |
-
#: core/core.php:
|
545 |
-
#: core/core.php:
|
546 |
-
#: core/core.php:
|
547 |
msgid "Not installed"
|
548 |
msgstr "Non installato"
|
549 |
|
550 |
-
#: core/core.php:
|
551 |
msgid "CURL version"
|
552 |
msgstr "Versione CURL"
|
553 |
|
554 |
-
#: core/core.php:
|
555 |
msgid "Installed"
|
556 |
msgstr "Installato"
|
557 |
|
558 |
-
#: core/core.php:
|
559 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
560 |
msgstr "E' necessario che tu abbia installato il CURL oppure Snoopy affinché il plugin possa funzionare!"
|
561 |
|
562 |
-
#: core/core.php:
|
563 |
msgid "On"
|
564 |
msgstr "On"
|
565 |
|
566 |
-
#: core/core.php:
|
567 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
568 |
msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la modalità safe_mode fosse attiva."
|
569 |
|
570 |
-
#: core/core.php:
|
571 |
-
#: core/core.php:
|
572 |
msgid "Off"
|
573 |
msgstr "Off"
|
574 |
|
575 |
-
#: core/core.php:
|
576 |
#, php-format
|
577 |
msgid "On ( %s )"
|
578 |
msgstr "On ( %s )"
|
579 |
|
580 |
-
#: core/core.php:
|
581 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
582 |
msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la funzione open_basedir fosse attiva."
|
583 |
|
584 |
-
#: core/core.php:
|
585 |
msgid "Can't create a lockfile. Please specify a custom temporary directory."
|
586 |
msgstr "Non é stato possibile creare un lockfile. Specificare una cartella temporanea personalizzata."
|
587 |
|
588 |
-
#: core/core.php:
|
589 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
590 |
msgstr "Nel caso in cui questo valore fosse a zero nonostante tu abbia caricato più volte la pagina, é probabile che tu abbia rilevato un bug."
|
591 |
|
592 |
-
#: core/core.php:
|
593 |
#, php-format
|
594 |
msgid "[%s] Broken links detected"
|
595 |
msgstr "[%s] Link rotti rilevati"
|
596 |
|
597 |
-
#: core/core.php:
|
598 |
#, php-format
|
599 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
600 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
601 |
msgstr[0] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotto."
|
602 |
msgstr[1] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotti."
|
603 |
|
604 |
-
#: core/core.php:
|
605 |
#, php-format
|
606 |
msgid "Here's a list of the first %d broken links:"
|
607 |
msgid_plural "Here's a list of the first %d broken links:"
|
608 |
msgstr[0] "Ecco una lista del primo %d link rotto:"
|
609 |
msgstr[1] "Ecco una lista dei primi %d link rotti:"
|
610 |
|
611 |
-
#: core/core.php:
|
612 |
msgid "Here's a list of the new broken links: "
|
613 |
msgstr "Ecco una lista con i nuovi link rotti:"
|
614 |
|
615 |
-
#: core/core.php:
|
616 |
#, php-format
|
617 |
msgid "Link text : %s"
|
618 |
msgstr "Testo del link : %s"
|
619 |
|
620 |
-
#: core/core.php:
|
621 |
#, php-format
|
622 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
623 |
msgstr "URL del link : <a href=\"%s\">%s</a>"
|
624 |
|
625 |
-
#: core/core.php:
|
626 |
#, php-format
|
627 |
msgid "Source : %s"
|
628 |
msgstr "Sorgente : %s"
|
629 |
|
630 |
-
#: core/core.php:
|
631 |
msgid "You can see all broken links here:"
|
632 |
msgstr "Qui puoi vedere tutti i link rotti:"
|
633 |
|
634 |
-
#: core/init.php:
|
635 |
msgid "Once Weekly"
|
636 |
msgstr "Una volta alla settimana"
|
637 |
|
638 |
-
#: core/init.php:
|
639 |
msgid "Twice a Month"
|
640 |
msgstr "Due volte al mese"
|
641 |
|
642 |
-
#: core/init.php:
|
643 |
msgid "Broken Link Checker installation failed"
|
644 |
msgstr "L'installazione di Broken Link Checker é fallita."
|
645 |
|
@@ -654,8 +676,7 @@ msgid "Wait..."
|
|
654 |
msgstr "Attendi..."
|
655 |
|
656 |
#: includes/admin/links-page-js.php:99
|
657 |
-
#: includes/admin/table-printer.php:
|
658 |
-
#: includes/admin/table-printer.php:620
|
659 |
msgid "Not broken"
|
660 |
msgstr "Non rotto"
|
661 |
|
@@ -693,9 +714,8 @@ msgid "The plugin failed to remove the link."
|
|
693 |
msgstr "Il plugin non é stato in grado di rimuovere il link."
|
694 |
|
695 |
#: includes/admin/links-page-js.php:361
|
696 |
-
#: includes/admin/table-printer.php:
|
697 |
-
#: includes/admin/table-printer.php:
|
698 |
-
#: includes/admin/table-printer.php:614
|
699 |
msgid "Unlink"
|
700 |
msgstr "Scollega"
|
701 |
|
@@ -719,6 +739,22 @@ msgstr ""
|
|
719 |
"Sei certo di volere cancellare tutti gli articoli, segnalibri od altro che contengano uno dei link selezionati? Questa operazione sarà irreversibile.\n"
|
720 |
"'Annulla' per fermarti, 'OK' per cancellare"
|
721 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
722 |
#: includes/admin/options-page-js.php:54
|
723 |
msgid "Hide debug info"
|
724 |
msgstr "Nascondi le info debug"
|
@@ -741,13 +777,12 @@ msgid "Link text"
|
|
741 |
msgstr "Testo del link"
|
742 |
|
743 |
#: includes/admin/search-form.php:45
|
744 |
-
#: includes/admin/table-printer.php:
|
745 |
-
#: includes/admin/table-printer.php:186
|
746 |
msgid "URL"
|
747 |
msgstr "URL"
|
748 |
|
749 |
#: includes/admin/search-form.php:48
|
750 |
-
#: includes/admin/table-printer.php:
|
751 |
msgid "HTTP code"
|
752 |
msgstr "Codice HTTP"
|
753 |
|
@@ -773,285 +808,298 @@ msgid "Search Links"
|
|
773 |
msgstr "Ricerca link"
|
774 |
|
775 |
#: includes/admin/search-form.php:113
|
776 |
-
#: includes/admin/table-printer.php:
|
777 |
-
#: includes/admin/table-printer.php:
|
778 |
-
#: includes/admin/table-printer.php:
|
779 |
msgid "Cancel"
|
780 |
msgstr "Annulla"
|
781 |
|
782 |
-
#: includes/admin/table-printer.php:
|
783 |
msgid "Compact View"
|
784 |
msgstr "Visualizzazione compatta"
|
785 |
|
786 |
-
#: includes/admin/table-printer.php:
|
787 |
msgid "Detailed View"
|
788 |
msgstr "Visualizzazione dettagliata"
|
789 |
|
790 |
-
#: includes/admin/table-printer.php:
|
791 |
msgid "Source"
|
792 |
msgstr "Sorgente"
|
793 |
|
794 |
-
#: includes/admin/table-printer.php:
|
795 |
-
#: includes/admin/table-printer.php:197
|
796 |
msgid "Link Text"
|
797 |
msgstr "Testo link"
|
798 |
|
799 |
-
#: includes/admin/table-printer.php:
|
800 |
-
msgid "Used in"
|
801 |
-
msgstr "Utilizzato in"
|
802 |
-
|
803 |
-
#: includes/admin/table-printer.php:245
|
804 |
msgid "Bulk Actions"
|
805 |
msgstr "Azione di massa"
|
806 |
|
807 |
-
#: includes/admin/table-printer.php:
|
|
|
|
|
|
|
|
|
|
|
808 |
msgid "Recheck"
|
809 |
msgstr "Ricontrolla"
|
810 |
|
811 |
-
#: includes/admin/table-printer.php:
|
812 |
msgid "Fix redirects"
|
813 |
msgstr "Correggi re-indirizzamenti"
|
814 |
|
815 |
-
#: includes/admin/table-printer.php:
|
816 |
msgid "Mark as not broken"
|
817 |
msgstr "segna come rotto"
|
818 |
|
819 |
-
#: includes/admin/table-printer.php:
|
820 |
msgid "Move sources to Trash"
|
821 |
msgstr "Sposta le fonti nel cestino"
|
822 |
|
823 |
-
#: includes/admin/table-printer.php:
|
824 |
msgid "Delete sources"
|
825 |
msgstr "Cancella soegenti"
|
826 |
|
827 |
-
#: includes/admin/table-printer.php:
|
828 |
msgid "«"
|
829 |
msgstr "«"
|
830 |
|
831 |
-
#: includes/admin/table-printer.php:
|
832 |
msgid "»"
|
833 |
msgstr "»"
|
834 |
|
835 |
-
#: includes/admin/table-printer.php:
|
836 |
#, php-format
|
837 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
838 |
msgstr "Si stanno mostrando %s–%s di <span class=\"current-link-count\">%s</span>"
|
839 |
|
840 |
-
#: includes/admin/table-printer.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
841 |
msgid "Post published on"
|
842 |
msgstr "Articolo pubblicato il"
|
843 |
|
844 |
-
#: includes/admin/table-printer.php:
|
845 |
msgid "Link last checked"
|
846 |
msgstr "Ultimo controllo link"
|
847 |
|
848 |
-
#: includes/admin/table-printer.php:
|
849 |
msgid "Never"
|
850 |
msgstr "Mai"
|
851 |
|
852 |
-
#: includes/admin/table-printer.php:
|
853 |
msgid "Response time"
|
854 |
msgstr "Tempo di risposta"
|
855 |
|
856 |
-
#: includes/admin/table-printer.php:
|
857 |
#, php-format
|
858 |
msgid "%2.3f seconds"
|
859 |
msgstr "%2.3f secondi"
|
860 |
|
861 |
-
#: includes/admin/table-printer.php:
|
862 |
msgid "Final URL"
|
863 |
msgstr "URL finale"
|
864 |
|
865 |
-
#: includes/admin/table-printer.php:
|
866 |
msgid "Redirect count"
|
867 |
msgstr "Computo reindirizzamento"
|
868 |
|
869 |
-
#: includes/admin/table-printer.php:
|
870 |
msgid "Instance count"
|
871 |
msgstr "Computo richieste"
|
872 |
|
873 |
-
#: includes/admin/table-printer.php:
|
874 |
#, php-format
|
875 |
msgid "This link has failed %d time."
|
876 |
msgid_plural "This link has failed %d times."
|
877 |
msgstr[0] "Questo link é stato difettoso %d volte."
|
878 |
msgstr[1] "Questi link sono stati difettosi %d volte."
|
879 |
|
880 |
-
#: includes/admin/table-printer.php:
|
881 |
#, php-format
|
882 |
msgid "This link has been broken for %s."
|
883 |
msgstr "Questo link é stato rotto per %s."
|
884 |
|
885 |
-
#: includes/admin/table-printer.php:
|
886 |
msgid "Log"
|
887 |
msgstr "Registro"
|
888 |
|
889 |
-
#: includes/admin/table-printer.php:
|
890 |
-
#: includes/admin/table-printer.php:657
|
891 |
-
msgid "[An orphaned link! This is a bug.]"
|
892 |
-
msgstr "[Un link orfano! Questo é un bug.]"
|
893 |
-
|
894 |
-
#: includes/admin/table-printer.php:521
|
895 |
-
#: includes/admin/table-printer.php:557
|
896 |
msgid "Show more info about this link"
|
897 |
msgstr "Mostra più info su questo link"
|
898 |
|
899 |
-
#: includes/admin/table-printer.php:
|
900 |
-
|
901 |
-
msgid "
|
902 |
-
msgstr "
|
903 |
|
904 |
-
#: includes/admin/table-printer.php:
|
905 |
-
|
906 |
-
|
907 |
-
msgstr "Rimuovi questo link dalla lista dei link rotti e segnalo come valido"
|
908 |
|
909 |
-
#: includes/admin/table-printer.php:
|
910 |
-
#: includes/admin/table-printer.php:611
|
911 |
msgid "Edit link URL"
|
912 |
msgstr "Modifica URL del link"
|
913 |
|
914 |
-
#: includes/admin/table-printer.php:
|
915 |
-
|
916 |
-
|
917 |
-
|
|
|
|
|
|
|
918 |
|
919 |
-
#: includes/admin/table-printer.php:
|
920 |
-
#: includes/admin/table-printer.php:628
|
921 |
msgid "Cancel URL editing"
|
922 |
msgstr "Annulla modifica URL"
|
923 |
|
924 |
-
#: includes/admin/table-printer.php:
|
925 |
-
msgctxt "checked how long ago"
|
926 |
-
msgid "Checked"
|
927 |
-
msgstr "Verificato"
|
928 |
-
|
929 |
-
#: includes/admin/table-printer.php:591
|
930 |
-
msgid "Broken for"
|
931 |
-
msgstr "Rotto per"
|
932 |
-
|
933 |
-
#: includes/admin/table-printer.php:635
|
934 |
msgid "Update URL"
|
935 |
msgstr "Aggiorna URL"
|
936 |
|
937 |
-
#: includes/
|
|
|
|
|
|
|
|
|
938 |
#: modules/containers/blogroll.php:46
|
939 |
#: modules/containers/comment.php:153
|
940 |
#: modules/containers/custom_field.php:197
|
941 |
msgid "Edit"
|
942 |
msgstr "Modifica"
|
943 |
|
944 |
-
#: includes/any-post.php:
|
945 |
#: modules/containers/custom_field.php:203
|
946 |
msgid "Move this item to the Trash"
|
947 |
msgstr "Sposta questo termine nel cestino"
|
948 |
|
949 |
-
#: includes/any-post.php:
|
950 |
#: modules/containers/custom_field.php:205
|
951 |
msgid "Trash"
|
952 |
msgstr "Cestino"
|
953 |
|
954 |
-
#: includes/any-post.php:
|
955 |
#: modules/containers/custom_field.php:210
|
956 |
msgid "Delete this item permanently"
|
957 |
msgstr "Cancella questo termine in modo definitivo"
|
958 |
|
959 |
-
#: includes/any-post.php:
|
960 |
#: modules/containers/blogroll.php:47
|
961 |
#: modules/containers/custom_field.php:212
|
962 |
msgid "Delete"
|
963 |
msgstr "Cancella"
|
964 |
|
965 |
-
#: includes/any-post.php:
|
966 |
#, php-format
|
967 |
msgid "Preview “%s”"
|
968 |
msgstr "Anteprima “%s”"
|
969 |
|
970 |
-
#: includes/any-post.php:
|
971 |
msgid "Preview"
|
972 |
msgstr "Anteprima"
|
973 |
|
974 |
-
#: includes/any-post.php:
|
975 |
#, php-format
|
976 |
msgid "View “%s”"
|
977 |
msgstr "Visualizza “%s”"
|
978 |
|
979 |
-
#: includes/any-post.php:
|
980 |
#: modules/containers/comment.php:166
|
981 |
#: modules/containers/custom_field.php:217
|
982 |
msgid "View"
|
983 |
msgstr "Visualizza"
|
984 |
|
985 |
-
#: includes/any-post.php:
|
986 |
#: modules/containers/custom_field.php:197
|
987 |
msgid "Edit this item"
|
988 |
msgstr "modifica questo termine"
|
989 |
|
990 |
-
#: includes/any-post.php:
|
991 |
#: modules/containers/blogroll.php:83
|
992 |
#: modules/containers/comment.php:43
|
993 |
msgid "Nothing to update"
|
994 |
msgstr "Nulla da aggiornare"
|
995 |
|
996 |
-
#: includes/any-post.php:
|
997 |
#, php-format
|
998 |
msgid "Updating post %d failed"
|
999 |
msgstr "Aggiornamento articolo %d non riuscito"
|
1000 |
|
1001 |
-
#: includes/any-post.php:
|
1002 |
#: modules/containers/custom_field.php:284
|
1003 |
#, php-format
|
1004 |
msgid "Failed to delete post \"%s\" (%d)"
|
1005 |
msgstr "Non é stato possibile cancellare il post \"%s\" (%d)"
|
1006 |
|
1007 |
-
#: includes/any-post.php:
|
1008 |
#: modules/containers/custom_field.php:303
|
1009 |
#, php-format
|
1010 |
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
1011 |
msgstr "Non é stato possibile spostare l'articolo \"%s\" (%d) nel cestino poiché la funzione cestino non é attiva"
|
1012 |
|
1013 |
-
#: includes/any-post.php:
|
1014 |
#: modules/containers/custom_field.php:322
|
1015 |
#, php-format
|
1016 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
1017 |
msgstr "Impossibile spostare l'articolo \"%s\" (%d) nel cestino"
|
1018 |
|
1019 |
-
#: includes/any-post.php:
|
1020 |
#, php-format
|
1021 |
msgid "%d post deleted."
|
1022 |
msgid_plural "%d posts deleted."
|
1023 |
msgstr[0] "%d articolo cancellato"
|
1024 |
msgstr[1] "%d articoli cancellati"
|
1025 |
|
1026 |
-
#: includes/any-post.php:
|
1027 |
#, php-format
|
1028 |
msgid "%d page deleted."
|
1029 |
msgid_plural "%d pages deleted."
|
1030 |
msgstr[0] "%d pagina cancellata."
|
1031 |
msgstr[1] "%d pagine cancellate."
|
1032 |
|
1033 |
-
#: includes/any-post.php:
|
1034 |
#, php-format
|
1035 |
msgid "%d \"%s\" deleted."
|
1036 |
msgid_plural "%d \"%s\" deleted."
|
1037 |
msgstr[0] "%d \"%s\" cancellato."
|
1038 |
msgstr[1] "%d \"%s\" cancellati."
|
1039 |
|
1040 |
-
#: includes/any-post.php:
|
1041 |
#, php-format
|
1042 |
msgid "%d post moved to the Trash."
|
1043 |
msgid_plural "%d posts moved to the Trash."
|
1044 |
msgstr[0] "%d il post é stato spostato nel cestino"
|
1045 |
msgstr[1] "%d i post sono stati spostati nel cestino"
|
1046 |
|
1047 |
-
#: includes/any-post.php:
|
1048 |
#, php-format
|
1049 |
msgid "%d page moved to the Trash."
|
1050 |
msgid_plural "%d pages moved to the Trash."
|
1051 |
msgstr[0] "%d La pagina é stata spostata nel cestino."
|
1052 |
msgstr[1] "%d le pagine soono state spostate nel cestino"
|
1053 |
|
1054 |
-
#: includes/any-post.php:
|
1055 |
#, php-format
|
1056 |
msgid "%d \"%s\" moved to the Trash."
|
1057 |
msgid_plural "%d \"%s\" moved to the Trash."
|
@@ -1065,8 +1113,8 @@ msgid_plural "%d '%s' have been deleted"
|
|
1065 |
msgstr[0] "%d '%s' é stato cancellato"
|
1066 |
msgstr[1] "%d '%s' sono stati cancellati"
|
1067 |
|
1068 |
-
#: includes/containers.php:
|
1069 |
-
#: includes/containers.php:
|
1070 |
#, php-format
|
1071 |
msgid "Container type '%s' not recognized"
|
1072 |
msgstr "Container type '%s' non riconosciuto"
|
@@ -1204,176 +1252,182 @@ msgstr "Risultati della ricerca"
|
|
1204 |
msgid "No links found for your query"
|
1205 |
msgstr "Nessun link trovato in relazione ai termini di ricerca"
|
1206 |
|
1207 |
-
#: includes/links.php:
|
1208 |
msgid "The plugin script was terminated while trying to check the link."
|
1209 |
msgstr "Lo script del plugin was é stato fermato durante il tentativo di verifica del link."
|
1210 |
|
1211 |
-
#: includes/links.php:
|
1212 |
msgid "The plugin doesn't know how to check this type of link."
|
1213 |
msgstr "Questo plugin non é in grado di potere verificare questo tipo di link."
|
1214 |
|
1215 |
-
#: includes/links.php:
|
1216 |
msgid "Link is valid."
|
1217 |
msgstr "Il link é valido."
|
1218 |
|
1219 |
-
#: includes/links.php:
|
1220 |
msgid "Link is broken."
|
1221 |
msgstr "Il link é rotto."
|
1222 |
|
1223 |
-
#: includes/links.php:
|
1224 |
-
#: includes/links.php:
|
1225 |
-
#: includes/links.php:
|
1226 |
msgid "Link is not valid"
|
1227 |
msgstr "Link non valido"
|
1228 |
|
1229 |
-
#: includes/links.php:
|
1230 |
msgid "This link can not be edited because it is not used anywhere on this site."
|
1231 |
msgstr "Questo link non può essere modificato poiché non viene utilizzato in nessuna parte di questo sito."
|
1232 |
|
1233 |
-
#: includes/links.php:
|
1234 |
msgid "Failed to create a DB entry for the new URL."
|
1235 |
msgstr "Non é stato possibile creare una entry nel DB per il nuovo URL."
|
1236 |
|
1237 |
-
#: includes/links.php:
|
1238 |
msgid "This link is not a redirect"
|
1239 |
msgstr "Questo link non é redirect"
|
1240 |
|
1241 |
-
#: includes/links.php:
|
1242 |
-
#: includes/links.php:
|
1243 |
msgid "Couldn't delete the link's database record"
|
1244 |
msgstr "Non é possibile cancellare dal database il record per il link"
|
1245 |
|
1246 |
-
#: includes/links.php:
|
1247 |
msgctxt "link status"
|
1248 |
msgid "Unknown"
|
1249 |
msgstr "Sconosciuto"
|
1250 |
|
1251 |
-
#: includes/links.php:
|
1252 |
-
#: modules/checkers/http.php:
|
1253 |
msgid "Unknown Error"
|
1254 |
msgstr "Errore sconosciuto"
|
1255 |
|
1256 |
-
#: includes/links.php:
|
1257 |
msgid "Not checked"
|
1258 |
msgstr "Non verificato"
|
1259 |
|
1260 |
-
#: includes/links.php:
|
1261 |
msgid "False positive"
|
1262 |
msgstr "Falso positivo"
|
1263 |
|
1264 |
-
#: includes/links.php:
|
1265 |
msgctxt "link status"
|
1266 |
msgid "OK"
|
1267 |
msgstr "OK"
|
1268 |
|
1269 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
1270 |
#, php-format
|
1271 |
msgid "Editing is not implemented in the '%s' parser"
|
1272 |
msgstr "La modifica non é implementata nel '%s' parser"
|
1273 |
|
1274 |
-
#: includes/parsers.php:
|
1275 |
#, php-format
|
1276 |
msgid "Unlinking is not implemented in the '%s' parser"
|
1277 |
msgstr "Il de-link non é implementatato nel '%s' parser"
|
1278 |
|
1279 |
-
#: includes/utility-class.php:
|
1280 |
#, php-format
|
1281 |
msgid "%d second"
|
1282 |
msgid_plural "%d seconds"
|
1283 |
msgstr[0] "%d secondo"
|
1284 |
msgstr[1] "%d secondi"
|
1285 |
|
1286 |
-
#: includes/utility-class.php:
|
1287 |
#, php-format
|
1288 |
msgid "%d second ago"
|
1289 |
msgid_plural "%d seconds ago"
|
1290 |
msgstr[0] "%d secondo fa"
|
1291 |
msgstr[1] "%d secondi fa"
|
1292 |
|
1293 |
-
#: includes/utility-class.php:
|
1294 |
#, php-format
|
1295 |
msgid "%d minute"
|
1296 |
msgid_plural "%d minutes"
|
1297 |
msgstr[0] "%d minuto"
|
1298 |
msgstr[1] "%d minuti"
|
1299 |
|
1300 |
-
#: includes/utility-class.php:
|
1301 |
#, php-format
|
1302 |
msgid "%d minute ago"
|
1303 |
msgid_plural "%d minutes ago"
|
1304 |
msgstr[0] "%d minuto fa"
|
1305 |
msgstr[1] "%d minuti fa"
|
1306 |
|
1307 |
-
#: includes/utility-class.php:
|
1308 |
#, php-format
|
1309 |
msgid "%d hour"
|
1310 |
msgid_plural "%d hours"
|
1311 |
msgstr[0] "%d ora"
|
1312 |
msgstr[1] "%d ore"
|
1313 |
|
1314 |
-
#: includes/utility-class.php:
|
1315 |
#, php-format
|
1316 |
msgid "%d hour ago"
|
1317 |
msgid_plural "%d hours ago"
|
1318 |
msgstr[0] "%d ora fa"
|
1319 |
msgstr[1] "%d ore fa"
|
1320 |
|
1321 |
-
#: includes/utility-class.php:
|
1322 |
#, php-format
|
1323 |
msgid "%d day"
|
1324 |
msgid_plural "%d days"
|
1325 |
msgstr[0] "%d giorno"
|
1326 |
msgstr[1] "%d giorni"
|
1327 |
|
1328 |
-
#: includes/utility-class.php:
|
1329 |
#, php-format
|
1330 |
msgid "%d day ago"
|
1331 |
msgid_plural "%d days ago"
|
1332 |
msgstr[0] "%d giorno fa"
|
1333 |
msgstr[1] "%d giorni fa"
|
1334 |
|
1335 |
-
#: includes/utility-class.php:
|
1336 |
#, php-format
|
1337 |
msgid "%d month"
|
1338 |
msgid_plural "%d months"
|
1339 |
msgstr[0] "%d mese"
|
1340 |
msgstr[1] "%d mesi"
|
1341 |
|
1342 |
-
#: includes/utility-class.php:
|
1343 |
#, php-format
|
1344 |
msgid "%d month ago"
|
1345 |
msgid_plural "%d months ago"
|
1346 |
msgstr[0] "%d mese fa"
|
1347 |
msgstr[1] "%d mesi fa"
|
1348 |
|
1349 |
-
#: modules/checkers/http.php:
|
1350 |
msgid "Server Not Found"
|
1351 |
msgstr "Server non trovato"
|
1352 |
|
1353 |
-
#: modules/checkers/http.php:
|
1354 |
msgid "Connection Failed"
|
1355 |
msgstr "Tentativo di connessione non riuscito"
|
1356 |
|
1357 |
-
#: modules/checkers/http.php:
|
1358 |
-
#: modules/checkers/http.php:
|
1359 |
#, php-format
|
1360 |
msgid "HTTP code : %d"
|
1361 |
msgstr "Codice HTTP : %d"
|
1362 |
|
1363 |
-
#: modules/checkers/http.php:
|
1364 |
-
#: modules/checkers/http.php:
|
1365 |
msgid "(No response)"
|
1366 |
msgstr "(nessuna risposta)"
|
1367 |
|
1368 |
-
#: modules/checkers/http.php:
|
1369 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
1370 |
msgstr "Connessione scaduta oppure il dominio non esiste."
|
1371 |
|
1372 |
-
#: modules/checkers/http.php:
|
1373 |
msgid "Request timed out."
|
1374 |
msgstr "Richiesta scaduta."
|
1375 |
|
1376 |
-
#: modules/checkers/http.php:
|
1377 |
msgid "Using Snoopy"
|
1378 |
msgstr "Snoopy in uso"
|
1379 |
|
@@ -1453,14 +1507,14 @@ msgstr "Visualizza il commento"
|
|
1453 |
msgid "Comment"
|
1454 |
msgstr "Commento"
|
1455 |
|
1456 |
-
#: modules/containers/comment.php:
|
1457 |
#, php-format
|
1458 |
msgid "%d comment has been deleted."
|
1459 |
msgid_plural "%d comments have been deleted."
|
1460 |
msgstr[0] "%d commento é stato cancellato"
|
1461 |
msgstr[1] "%d commenti sono stati cancellati"
|
1462 |
|
1463 |
-
#: modules/containers/comment.php:
|
1464 |
#, php-format
|
1465 |
msgid "%d comment moved to the Trash."
|
1466 |
msgid_plural "%d comments moved to the Trash."
|
@@ -1516,6 +1570,9 @@ msgstr "Janis Elsts"
|
|
1516 |
msgid "http://w-shadow.com/blog/"
|
1517 |
msgstr "http://w-shadow.com/blog/"
|
1518 |
|
|
|
|
|
|
|
1519 |
#~ msgid ""
|
1520 |
#~ "Unexpected error: The plugin doesn't know how to upgrade its database to "
|
1521 |
#~ "version '%d'."
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Broken Link Checker in italiano\n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
10 |
+
"POT-Creation-Date: 2010-10-08 16:08+0000\n"
|
11 |
+
"PO-Revision-Date: 2010-10-16 21:26+0100\n"
|
12 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
13 |
"Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
|
14 |
"MIME-Version: 1.0\n"
|
32 |
msgid "Automatically expand the widget if broken links have been detected"
|
33 |
msgstr "Espandi in automatico il widget qualora un link rotto fosse stato rilevato"
|
34 |
|
35 |
+
#: core/core.php:342
|
36 |
msgid "Link Checker Settings"
|
37 |
msgstr "Impostazioni Link Checker"
|
38 |
|
39 |
+
#: core/core.php:343
|
40 |
msgid "Link Checker"
|
41 |
msgstr "Link Checker"
|
42 |
|
43 |
+
#: core/core.php:348
|
44 |
#: includes/link-query.php:26
|
45 |
msgid "Broken Links"
|
46 |
msgstr "Link rotti"
|
47 |
|
48 |
+
#: core/core.php:364
|
49 |
msgid "View Broken Links"
|
50 |
msgstr "Visualizza i link rotti"
|
51 |
|
52 |
+
#: core/core.php:392
|
53 |
msgid "Settings"
|
54 |
msgstr "Impostazioni"
|
55 |
|
56 |
+
#: core/core.php:404
|
57 |
+
#: core/core.php:1186
|
58 |
#, php-format
|
59 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
60 |
msgstr "Errore: le tabelle del database di questo plugin non sono aggiornate! (versione in uso : %d, attesa : %d)"
|
61 |
|
62 |
+
#: core/core.php:543
|
63 |
msgid "Settings saved."
|
64 |
msgstr "Le impostazioni sono state salvate."
|
65 |
|
66 |
+
#: core/core.php:550
|
67 |
msgid "Complete site recheck started."
|
68 |
msgstr "E' in atto la nuova verifica completa per il sito."
|
69 |
|
70 |
+
#: core/core.php:564
|
71 |
+
#: core/core.php:2744
|
|
|
72 |
msgid "Details"
|
73 |
msgstr "Dettagli"
|
74 |
|
75 |
+
#: core/core.php:578
|
76 |
msgid "General"
|
77 |
msgstr "Generale"
|
78 |
|
79 |
+
#: core/core.php:579
|
80 |
msgid "Look For Links In"
|
81 |
msgstr "Cerca i link in"
|
82 |
|
83 |
+
#: core/core.php:580
|
84 |
msgid "Which Links To Check"
|
85 |
msgstr "Quali link controllare"
|
86 |
|
87 |
+
#: core/core.php:581
|
88 |
msgid "Protocols & APIs"
|
89 |
msgstr "Protocolli & API"
|
90 |
|
91 |
+
#: core/core.php:582
|
92 |
msgid "Advanced"
|
93 |
msgstr "Avanzate"
|
94 |
|
95 |
+
#: core/core.php:586
|
96 |
msgid "Broken Link Checker Options"
|
97 |
msgstr "Opzioni Broken Link Checker"
|
98 |
|
99 |
+
#: core/core.php:612
|
100 |
+
#: includes/admin/table-printer.php:168
|
101 |
msgid "Status"
|
102 |
msgstr "Stato"
|
103 |
|
104 |
+
#: core/core.php:614
|
105 |
#: includes/admin/options-page-js.php:56
|
106 |
msgid "Show debug info"
|
107 |
msgstr "Mostra info debug"
|
108 |
|
109 |
+
#: core/core.php:642
|
110 |
msgid "Check each link"
|
111 |
msgstr "Controlla i link"
|
112 |
|
113 |
+
#: core/core.php:647
|
114 |
#, php-format
|
115 |
msgid "Every %s hours"
|
116 |
msgstr "Ogni %s ore"
|
117 |
|
118 |
+
#: core/core.php:656
|
119 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
120 |
msgstr "I link già esistenti verranno controllati con questa frequenza i nuovi, lo saranno a breve."
|
121 |
|
122 |
+
#: core/core.php:663
|
123 |
msgid "E-mail notifications"
|
124 |
msgstr "Notifiche email"
|
125 |
|
126 |
+
#: core/core.php:669
|
127 |
msgid "Send me e-mail notifications about newly detected broken links"
|
128 |
msgstr "Inviami una email di notifica al rilevamento di un nuovo link rotto"
|
129 |
|
130 |
+
#: core/core.php:676
|
131 |
msgid "Link tweaks"
|
132 |
msgstr "Link tweaks"
|
133 |
|
134 |
+
#: core/core.php:682
|
135 |
msgid "Apply custom formatting to broken links"
|
136 |
msgstr "Applica formattazione personalizzata ai link rotti"
|
137 |
|
138 |
+
#: core/core.php:686
|
139 |
+
#: core/core.php:714
|
140 |
msgid "Edit CSS"
|
141 |
msgstr "Modifica CSS"
|
142 |
|
143 |
+
#: core/core.php:710
|
144 |
msgid "Apply custom formatting to removed links"
|
145 |
msgstr "Applica la formattazione personalizzata ai link rimossi"
|
146 |
|
147 |
+
#: core/core.php:738
|
148 |
msgid "Stop search engines from following broken links"
|
149 |
msgstr "Blocca i motori di ricerca per i seguenti link"
|
150 |
|
151 |
+
#: core/core.php:755
|
152 |
msgid "Look for links in"
|
153 |
msgstr "Cerca i links in"
|
154 |
|
155 |
+
#: core/core.php:766
|
156 |
msgid "Post statuses"
|
157 |
msgstr "Stati articolo"
|
158 |
|
159 |
+
#: core/core.php:799
|
160 |
msgid "Link types"
|
161 |
msgstr "Tipo di link"
|
162 |
|
163 |
+
#: core/core.php:805
|
164 |
msgid "Error : All link parsers missing!"
|
165 |
msgstr "Errore : manca l'analisi di tutti i link!"
|
166 |
|
167 |
+
#: core/core.php:812
|
168 |
msgid "Exclusion list"
|
169 |
msgstr "Lista estromessi"
|
170 |
|
171 |
+
#: core/core.php:813
|
172 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
173 |
msgstr "Non controllare gli URL che contengono queste parole (una per riga):"
|
174 |
|
175 |
+
#: core/core.php:831
|
176 |
msgid "Check links using"
|
177 |
msgstr "Controlla utilizzo link"
|
178 |
|
179 |
+
#: core/core.php:850
|
180 |
+
#: includes/links.php:849
|
181 |
msgid "Timeout"
|
182 |
msgstr "Timeout"
|
183 |
|
184 |
+
#: core/core.php:856
|
185 |
+
#: core/core.php:902
|
186 |
+
#: core/core.php:2871
|
187 |
#, php-format
|
188 |
msgid "%s seconds"
|
189 |
msgstr "%s secondi"
|
190 |
|
191 |
+
#: core/core.php:865
|
192 |
msgid "Links that take longer than this to load will be marked as broken."
|
193 |
msgstr "I link che impiegheranno un maggior tempo per essere caricati verranno considerati come rotti."
|
194 |
|
195 |
+
#: core/core.php:872
|
196 |
msgid "Link monitor"
|
197 |
msgstr "Monitoraggio link"
|
198 |
|
199 |
+
#: core/core.php:880
|
200 |
msgid "Run continuously while the Dashboard is open"
|
201 |
msgstr "Funzionamento continuo durante il periodo di login"
|
202 |
|
203 |
+
#: core/core.php:888
|
204 |
msgid "Run hourly in the background"
|
205 |
msgstr "Funzionamento in background ogni ora"
|
206 |
|
207 |
+
#: core/core.php:896
|
208 |
msgid "Max. execution time"
|
209 |
msgstr "Tempo max. operazione"
|
210 |
|
211 |
+
#: core/core.php:913
|
212 |
msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
|
213 |
msgstr "Questo plugin opera grazie ad una richiesta periodica che lavora in background atta al rilevamento dei link contenuti nei post alla ricerca degli URL nonché compie delle operazioni che richiedono del tempo. Qui puoi impostare il tempo massimo di durata per la richiesta in background prima che essa termini."
|
214 |
|
215 |
+
#: core/core.php:923
|
216 |
msgid "Custom temporary directory"
|
217 |
msgstr "Cartella temporanea personalizzata:"
|
218 |
|
219 |
+
#: core/core.php:932
|
220 |
msgid "OK"
|
221 |
msgstr "OK"
|
222 |
|
223 |
+
#: core/core.php:935
|
224 |
msgid "Error : This directory isn't writable by PHP."
|
225 |
msgstr "Errore : questa cartella non é scrivibile via PHP."
|
226 |
|
227 |
+
#: core/core.php:940
|
228 |
msgid "Error : This directory doesn't exist."
|
229 |
msgstr "Errore : questa cartella non esiste."
|
230 |
|
231 |
+
#: core/core.php:948
|
232 |
msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
|
233 |
msgstr "Compila questo campo qualora gradissi che il plugin faccia uso di una cartella personalizzata per i lockfile diversamente, lascia in bianco."
|
234 |
|
235 |
+
#: core/core.php:955
|
236 |
msgid "Server load limit"
|
237 |
msgstr "Limite server load"
|
238 |
|
239 |
+
#: core/core.php:970
|
240 |
+
#, php-format
|
241 |
+
msgid "Current load : %s"
|
242 |
+
msgstr "In caricamento : %s"
|
243 |
+
|
244 |
+
#: core/core.php:976
|
245 |
#, php-format
|
246 |
msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
|
247 |
msgstr "La verifica dei link sarà sospesa nel caso in cui il valore di media del <a href=\"%s\">server load</a> superasse questo numero. Lascia in bianco per disattivare il limite di caricamento."
|
248 |
|
249 |
+
#: core/core.php:984
|
250 |
+
msgid "Not available"
|
251 |
+
msgstr "Non disponibile"
|
252 |
+
|
253 |
+
#: core/core.php:986
|
254 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
255 |
msgstr "Il limite di caricamento funziona solamente per i sistemi Linux-like laddove la funzione <code>/proc/loadavg</code> sia presente ed accessibile."
|
256 |
|
257 |
+
#: core/core.php:994
|
258 |
msgid "Forced recheck"
|
259 |
msgstr "Imponi nuova verifica"
|
260 |
|
261 |
+
#: core/core.php:997
|
262 |
msgid "Re-check all pages"
|
263 |
msgstr "Ricontrolla tutte le pagine"
|
264 |
|
265 |
+
#: core/core.php:1001
|
266 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
267 |
msgstr "La \"Opzione atomica\". Clicca questo pulsante per fare sì che il plugin svuoti i link nel database ed effettui da zero un controllo del sito."
|
268 |
|
269 |
+
#: core/core.php:1012
|
270 |
msgid "Save Changes"
|
271 |
msgstr "Salva le modifiche"
|
272 |
|
273 |
+
#: core/core.php:1057
|
274 |
msgid "Configure"
|
275 |
msgstr "Configura"
|
276 |
|
277 |
+
#: core/core.php:1117
|
278 |
msgid "Upgrade to Pro to enable this feature"
|
279 |
msgstr "Aggiorna alla versione pro per attivare questa opzione"
|
280 |
|
281 |
+
#: core/core.php:1152
|
282 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
283 |
msgstr "Controlla gli URL inseriti in questi campi personalizzati (uno per riga):"
|
284 |
|
285 |
+
#: core/core.php:1286
|
286 |
+
#: core/core.php:1370
|
287 |
+
#: core/core.php:1402
|
288 |
#, php-format
|
289 |
msgid "Database error : %s"
|
290 |
msgstr "Errore database : %s"
|
291 |
|
292 |
+
#: core/core.php:1352
|
293 |
msgid "You must enter a filter name!"
|
294 |
msgstr "Deve essere inserito un nome del filtro!"
|
295 |
|
296 |
+
#: core/core.php:1356
|
297 |
msgid "Invalid search query."
|
298 |
msgstr "Termine di ricerca non valido."
|
299 |
|
300 |
+
#: core/core.php:1365
|
301 |
#, php-format
|
302 |
msgid "Filter \"%s\" created"
|
303 |
msgstr "E' stato creato il filtro \"%s\""
|
304 |
|
305 |
+
#: core/core.php:1392
|
306 |
msgid "Filter ID not specified."
|
307 |
msgstr "ID filtro non specificato."
|
308 |
|
309 |
+
#: core/core.php:1399
|
310 |
msgid "Filter deleted"
|
311 |
msgstr "Il filtro é stato cancellato"
|
312 |
|
313 |
+
#: core/core.php:1447
|
314 |
#, php-format
|
315 |
msgid "Replaced %d redirect with a direct link"
|
316 |
msgid_plural "Replaced %d redirects with direct links"
|
317 |
msgstr[0] "Sostituito %d reindirizzamento con un link diretto"
|
318 |
msgstr[1] "Sostituiti %d reindirizzamenti con dei link diretti"
|
319 |
|
320 |
+
#: core/core.php:1458
|
321 |
#, php-format
|
322 |
msgid "Failed to fix %d redirect"
|
323 |
msgid_plural "Failed to fix %d redirects"
|
324 |
msgstr[0] "Impossibile correggere il reindirizzamento per %d"
|
325 |
msgstr[1] "Impossibile correggere i reindirizzamenti per %d"
|
326 |
|
327 |
+
#: core/core.php:1468
|
328 |
msgid "None of the selected links are redirects!"
|
329 |
msgstr "Nessuno dei link selezionati é reindirizzato!"
|
330 |
|
331 |
+
#: core/core.php:1547
|
332 |
+
#, php-format
|
333 |
+
msgid "%d link updated."
|
334 |
+
msgid_plural "%d links updated."
|
335 |
+
msgstr[0] "%d link aggiornato."
|
336 |
+
msgstr[1] "%d link aggiornati."
|
337 |
+
|
338 |
+
#: core/core.php:1558
|
339 |
+
#, php-format
|
340 |
+
msgid "Failed to update %d link."
|
341 |
+
msgid_plural "Failed to update %d links."
|
342 |
+
msgstr[0] "Impossibile aggiornare il link %d"
|
343 |
+
msgstr[1] "Impossibile aggiornare i link %d"
|
344 |
+
|
345 |
+
#: core/core.php:1612
|
346 |
#, php-format
|
347 |
msgid "%d link removed"
|
348 |
msgid_plural "%d links removed"
|
349 |
msgstr[0] "%d il link é stato rimosso"
|
350 |
msgstr[1] "%d i link sono stati rimossi"
|
351 |
|
352 |
+
#: core/core.php:1623
|
353 |
#, php-format
|
354 |
msgid "Failed to remove %d link"
|
355 |
msgid_plural "Failed to remove %d links"
|
356 |
msgstr[0] "Impossibile rimuovere il link %d"
|
357 |
msgstr[1] "Impossibile rimuovere i link %d"
|
358 |
|
359 |
+
#: core/core.php:1732
|
360 |
#, php-format
|
361 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
362 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
363 |
msgstr[0] "%d l'elemento é stato saltato poiché non potrà essere spostato nel cestino. Dovrai cancellarlo manualmente."
|
364 |
msgstr[1] "%d gli elementi sono stati saltati poiché non potranno essere spostati nel cestino. Dovrai cancellarli manualmente."
|
365 |
|
366 |
+
#: core/core.php:1753
|
367 |
msgid "Didn't find anything to delete!"
|
368 |
msgstr "Nulla da cancellare!"
|
369 |
|
370 |
+
#: core/core.php:1781
|
371 |
#, php-format
|
372 |
msgid "%d link scheduled for rechecking"
|
373 |
msgid_plural "%d links scheduled for rechecking"
|
374 |
msgstr[0] "%d link in verifica programmata"
|
375 |
msgstr[1] "%d link in verifica programmata"
|
376 |
|
377 |
+
#: core/core.php:1826
|
378 |
+
#: core/core.php:2431
|
379 |
msgid "This link was manually marked as working by the user."
|
380 |
msgstr "L'utente ha segnalato manualmente che questo link é funzionante."
|
381 |
|
382 |
+
#: core/core.php:1833
|
383 |
#, php-format
|
384 |
msgid "Couldn't modify link %d"
|
385 |
msgstr "Non é possibile modificare il link %d"
|
386 |
|
387 |
+
#: core/core.php:1844
|
388 |
#, php-format
|
389 |
msgid "%d link marked as not broken"
|
390 |
msgid_plural "%d links marked as not broken"
|
391 |
msgstr[0] "%d link segnato come funzionante"
|
392 |
msgstr[1] "%d link segnati come funzionanti"
|
393 |
|
394 |
+
#: core/core.php:1884
|
395 |
msgid "Table columns"
|
396 |
msgstr "Colonne tabella"
|
397 |
|
398 |
+
#: core/core.php:1903
|
399 |
msgid "Show on screen"
|
400 |
msgstr "Mostra sullo schermo"
|
401 |
|
402 |
+
#: core/core.php:1910
|
403 |
msgid "links"
|
404 |
msgstr "link"
|
405 |
|
406 |
+
#: core/core.php:1911
|
407 |
+
#: includes/admin/table-printer.php:136
|
408 |
msgid "Apply"
|
409 |
msgstr "Applica"
|
410 |
|
411 |
+
#: core/core.php:1915
|
412 |
msgid "Misc"
|
413 |
msgstr "Varie"
|
414 |
|
415 |
+
#: core/core.php:1930
|
416 |
#, php-format
|
417 |
msgid "Highlight links broken for at least %s days"
|
418 |
msgstr "Evidenzia i link rotti per gli ultimi %s giorni"
|
419 |
|
420 |
+
#: core/core.php:1939
|
421 |
msgid "Color-code status codes"
|
422 |
msgstr "Codici stato codice-colore"
|
423 |
|
424 |
+
#: core/core.php:1956
|
425 |
+
#: core/core.php:2416
|
426 |
+
#: core/core.php:2452
|
427 |
+
#: core/core.php:2515
|
428 |
msgid "You're not allowed to do that!"
|
429 |
msgstr "Non hai il permesso per farlo!"
|
430 |
|
431 |
+
#: core/core.php:2297
|
432 |
msgid "View broken links"
|
433 |
msgstr "Visualizza i link rotti"
|
434 |
|
435 |
+
#: core/core.php:2298
|
436 |
#, php-format
|
437 |
msgid "Found %d broken link"
|
438 |
msgid_plural "Found %d broken links"
|
439 |
msgstr[0] "E' stato trovato %d link rotto"
|
440 |
msgstr[1] "Sono stati trovati %d link rotti"
|
441 |
|
442 |
+
#: core/core.php:2304
|
443 |
msgid "No broken links found."
|
444 |
msgstr "Non é stato trovato alcun link rotto."
|
445 |
|
446 |
+
#: core/core.php:2311
|
447 |
#, php-format
|
448 |
msgid "%d URL in the work queue"
|
449 |
msgid_plural "%d URLs in the work queue"
|
450 |
msgstr[0] "%d URL in coda di elaborazione"
|
451 |
msgstr[1] "%d URL in coda di elaborazione"
|
452 |
|
453 |
+
#: core/core.php:2314
|
454 |
msgid "No URLs in the work queue."
|
455 |
msgstr "Nessun URL in coda di elaborazione."
|
456 |
|
457 |
+
#: core/core.php:2320
|
458 |
#, php-format
|
459 |
msgid "Detected %d unique URL"
|
460 |
msgid_plural "Detected %d unique URLs"
|
461 |
msgstr[0] "E' stato rilevato %d URL unico"
|
462 |
msgstr[1] "Sono stati rilevati %d URL unici"
|
463 |
|
464 |
+
#: core/core.php:2321
|
465 |
#, php-format
|
466 |
msgid "in %d link"
|
467 |
msgid_plural "in %d links"
|
468 |
msgstr[0] "in %d link"
|
469 |
msgstr[1] "in %d link"
|
470 |
|
471 |
+
#: core/core.php:2326
|
472 |
msgid "and still searching..."
|
473 |
msgstr "ricerca in corso..."
|
474 |
|
475 |
+
#: core/core.php:2332
|
476 |
msgid "Searching your blog for links..."
|
477 |
msgstr "Ricerca dei link in corso..."
|
478 |
|
479 |
+
#: core/core.php:2334
|
480 |
msgid "No links detected."
|
481 |
msgstr "Nessun link é stato rilevato."
|
482 |
|
483 |
+
#: core/core.php:2360
|
484 |
msgctxt "current load"
|
485 |
msgid "Unknown"
|
486 |
msgstr "Sconosciuto"
|
487 |
|
488 |
+
#: core/core.php:2424
|
489 |
+
#: core/core.php:2462
|
490 |
+
#: core/core.php:2525
|
491 |
#, php-format
|
492 |
msgid "Oops, I can't find the link %d"
|
493 |
msgstr "Oops, non é possibile trovare il link %d"
|
494 |
|
495 |
+
#: core/core.php:2437
|
496 |
msgid "Oops, couldn't modify the link!"
|
497 |
msgstr "Oops, non é possibile modificare il link!"
|
498 |
|
499 |
+
#: core/core.php:2440
|
500 |
+
#: core/core.php:2551
|
501 |
msgid "Error : link_id not specified"
|
502 |
msgstr "Errore : non é stata specificata la link_id"
|
503 |
|
504 |
+
#: core/core.php:2472
|
505 |
msgid "Oops, the new URL is invalid!"
|
506 |
msgstr "Oops, il nuovo URL non é valido!"
|
507 |
|
508 |
+
#: core/core.php:2483
|
509 |
+
#: core/core.php:2534
|
510 |
msgid "An unexpected error occured!"
|
511 |
msgstr "Si é verificato un errore inatteso!"
|
512 |
|
513 |
+
#: core/core.php:2501
|
514 |
msgid "Error : link_id or new_url not specified"
|
515 |
msgstr "Errore : non é stata specificata la link_id oppure il new_url"
|
516 |
|
517 |
+
#: core/core.php:2560
|
518 |
msgid "You don't have sufficient privileges to access this information!"
|
519 |
msgstr "Non hai i permessi necessari per poter accedere a questa informazione!"
|
520 |
|
521 |
+
#: core/core.php:2573
|
522 |
msgid "Error : link ID not specified"
|
523 |
msgstr "Errore : La ID del link non é stata specificata"
|
524 |
|
525 |
+
#: core/core.php:2587
|
526 |
#, php-format
|
527 |
msgid "Failed to load link details (%s)"
|
528 |
msgstr "Non é stato possibile caricare i dettagli sul link (%s)"
|
529 |
|
530 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 0.9.6) #-#-#-#-#
|
531 |
#. Plugin Name of the plugin/theme
|
532 |
+
#: core/core.php:2716
|
533 |
msgid "Broken Link Checker"
|
534 |
msgstr "Broken Link Checker"
|
535 |
|
536 |
+
#: core/core.php:2730
|
537 |
#, php-format
|
538 |
msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
|
539 |
msgstr "La cartella temporanea non é accessibile; impostane una <a href=\"%s\">differente</a>."
|
540 |
|
541 |
+
#: core/core.php:2735
|
542 |
#, php-format
|
543 |
msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
|
544 |
msgstr "Rendi scrivibile la cartella <code>%1$s</code> oppure imposta una <a href=\"%2$s\">cartella temporanea</a>."
|
545 |
|
546 |
+
#: core/core.php:2742
|
547 |
msgid "Broken Link Checker can't create a lockfile."
|
548 |
msgstr "Broken Link Checker non può creare un lockfile."
|
549 |
|
550 |
+
#: core/core.php:2747
|
551 |
msgid "The plugin uses a file-based locking mechanism to ensure that only one instance of the resource-heavy link checking algorithm is running at any given time. Unfortunately, BLC can't find a writable directory where it could store the lockfile - it failed to detect the location of your server's temporary directory, and the plugin's own directory isn't writable by PHP. To fix this problem, please make the plugin's directory writable or enter a specify a custom temporary directory in the plugin's settings."
|
552 |
msgstr "Questo plugin utilizza un meccanismo di locking su base-file in modo tale che una sola richiesta per volta venga inoltrata all'algoritmo per la ricerca dei link. Sfortunatamente, BLC non ha trovato una cartella scrivibile laddove poter allocare il lockfile - non é stato possibile rilevare la posizione della cartella temporanea nel server e la cartella stessa del plugin non é scrivibile via PHP. Per risolvere il problema, rendi scrivibile la cartella del plugin oppure inserisci nelle impostazioni del plugin il percorso ad una cartella temporanea personalizzata."
|
553 |
|
554 |
+
#: core/core.php:2766
|
555 |
msgid "PHP version"
|
556 |
msgstr "Versione PHP"
|
557 |
|
558 |
+
#: core/core.php:2772
|
559 |
msgid "MySQL version"
|
560 |
msgstr "Versione MySQL"
|
561 |
|
562 |
+
#: core/core.php:2785
|
563 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
564 |
msgstr "Hai una versione datata del CURL. Il rilevamento del reindirizzamento potrebbe non funzionare."
|
565 |
|
566 |
+
#: core/core.php:2797
|
567 |
+
#: core/core.php:2813
|
568 |
+
#: core/core.php:2818
|
569 |
msgid "Not installed"
|
570 |
msgstr "Non installato"
|
571 |
|
572 |
+
#: core/core.php:2800
|
573 |
msgid "CURL version"
|
574 |
msgstr "Versione CURL"
|
575 |
|
576 |
+
#: core/core.php:2806
|
577 |
msgid "Installed"
|
578 |
msgstr "Installato"
|
579 |
|
580 |
+
#: core/core.php:2819
|
581 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
582 |
msgstr "E' necessario che tu abbia installato il CURL oppure Snoopy affinché il plugin possa funzionare!"
|
583 |
|
584 |
+
#: core/core.php:2830
|
585 |
msgid "On"
|
586 |
msgstr "On"
|
587 |
|
588 |
+
#: core/core.php:2831
|
589 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
590 |
msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la modalità safe_mode fosse attiva."
|
591 |
|
592 |
+
#: core/core.php:2836
|
593 |
+
#: core/core.php:2850
|
594 |
msgid "Off"
|
595 |
msgstr "Off"
|
596 |
|
597 |
+
#: core/core.php:2844
|
598 |
#, php-format
|
599 |
msgid "On ( %s )"
|
600 |
msgstr "On ( %s )"
|
601 |
|
602 |
+
#: core/core.php:2845
|
603 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
604 |
msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la funzione open_basedir fosse attiva."
|
605 |
|
606 |
+
#: core/core.php:2864
|
607 |
msgid "Can't create a lockfile. Please specify a custom temporary directory."
|
608 |
msgstr "Non é stato possibile creare un lockfile. Specificare una cartella temporanea personalizzata."
|
609 |
|
610 |
+
#: core/core.php:2888
|
611 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
612 |
msgstr "Nel caso in cui questo valore fosse a zero nonostante tu abbia caricato più volte la pagina, é probabile che tu abbia rilevato un bug."
|
613 |
|
614 |
+
#: core/core.php:2959
|
615 |
#, php-format
|
616 |
msgid "[%s] Broken links detected"
|
617 |
msgstr "[%s] Link rotti rilevati"
|
618 |
|
619 |
+
#: core/core.php:2965
|
620 |
#, php-format
|
621 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
622 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
623 |
msgstr[0] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotto."
|
624 |
msgstr[1] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotti."
|
625 |
|
626 |
+
#: core/core.php:2980
|
627 |
#, php-format
|
628 |
msgid "Here's a list of the first %d broken links:"
|
629 |
msgid_plural "Here's a list of the first %d broken links:"
|
630 |
msgstr[0] "Ecco una lista del primo %d link rotto:"
|
631 |
msgstr[1] "Ecco una lista dei primi %d link rotti:"
|
632 |
|
633 |
+
#: core/core.php:2988
|
634 |
msgid "Here's a list of the new broken links: "
|
635 |
msgstr "Ecco una lista con i nuovi link rotti:"
|
636 |
|
637 |
+
#: core/core.php:3000
|
638 |
#, php-format
|
639 |
msgid "Link text : %s"
|
640 |
msgstr "Testo del link : %s"
|
641 |
|
642 |
+
#: core/core.php:3001
|
643 |
#, php-format
|
644 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
645 |
msgstr "URL del link : <a href=\"%s\">%s</a>"
|
646 |
|
647 |
+
#: core/core.php:3002
|
648 |
#, php-format
|
649 |
msgid "Source : %s"
|
650 |
msgstr "Sorgente : %s"
|
651 |
|
652 |
+
#: core/core.php:3016
|
653 |
msgid "You can see all broken links here:"
|
654 |
msgstr "Qui puoi vedere tutti i link rotti:"
|
655 |
|
656 |
+
#: core/init.php:236
|
657 |
msgid "Once Weekly"
|
658 |
msgstr "Una volta alla settimana"
|
659 |
|
660 |
+
#: core/init.php:242
|
661 |
msgid "Twice a Month"
|
662 |
msgstr "Due volte al mese"
|
663 |
|
664 |
+
#: core/init.php:309
|
665 |
msgid "Broken Link Checker installation failed"
|
666 |
msgstr "L'installazione di Broken Link Checker é fallita."
|
667 |
|
676 |
msgstr "Attendi..."
|
677 |
|
678 |
#: includes/admin/links-page-js.php:99
|
679 |
+
#: includes/admin/table-printer.php:592
|
|
|
680 |
msgid "Not broken"
|
681 |
msgstr "Non rotto"
|
682 |
|
714 |
msgstr "Il plugin non é stato in grado di rimuovere il link."
|
715 |
|
716 |
#: includes/admin/links-page-js.php:361
|
717 |
+
#: includes/admin/table-printer.php:237
|
718 |
+
#: includes/admin/table-printer.php:586
|
|
|
719 |
msgid "Unlink"
|
720 |
msgstr "Scollega"
|
721 |
|
739 |
"Sei certo di volere cancellare tutti gli articoli, segnalibri od altro che contengano uno dei link selezionati? Questa operazione sarà irreversibile.\n"
|
740 |
"'Annulla' per fermarti, 'OK' per cancellare"
|
741 |
|
742 |
+
#: includes/admin/links-page-js.php:449
|
743 |
+
msgid ""
|
744 |
+
"Are you sure you want to remove the selected links? This action can't be undone.\n"
|
745 |
+
"'Cancel' to stop, 'OK' to remove"
|
746 |
+
msgstr ""
|
747 |
+
"Sei certo di volere cancellare i link selezionati? Questa operazione sarà irreversibile.\n"
|
748 |
+
"'Annulla' per fermarti, 'OK' per cancellare"
|
749 |
+
|
750 |
+
#: includes/admin/links-page-js.php:558
|
751 |
+
msgid "Enter a search string first."
|
752 |
+
msgstr "Inserisci prima il termine di ricerca."
|
753 |
+
|
754 |
+
#: includes/admin/links-page-js.php:565
|
755 |
+
msgid "Select one or more links to edit."
|
756 |
+
msgstr "Seleziona uno o più link da modificare."
|
757 |
+
|
758 |
#: includes/admin/options-page-js.php:54
|
759 |
msgid "Hide debug info"
|
760 |
msgstr "Nascondi le info debug"
|
777 |
msgstr "Testo del link"
|
778 |
|
779 |
#: includes/admin/search-form.php:45
|
780 |
+
#: includes/admin/table-printer.php:173
|
|
|
781 |
msgid "URL"
|
782 |
msgstr "URL"
|
783 |
|
784 |
#: includes/admin/search-form.php:48
|
785 |
+
#: includes/admin/table-printer.php:460
|
786 |
msgid "HTTP code"
|
787 |
msgstr "Codice HTTP"
|
788 |
|
808 |
msgstr "Ricerca link"
|
809 |
|
810 |
#: includes/admin/search-form.php:113
|
811 |
+
#: includes/admin/table-printer.php:318
|
812 |
+
#: includes/admin/table-printer.php:600
|
813 |
+
#: includes/admin/table-printer.php:606
|
814 |
msgid "Cancel"
|
815 |
msgstr "Annulla"
|
816 |
|
817 |
+
#: includes/admin/table-printer.php:150
|
818 |
msgid "Compact View"
|
819 |
msgstr "Visualizzazione compatta"
|
820 |
|
821 |
+
#: includes/admin/table-printer.php:151
|
822 |
msgid "Detailed View"
|
823 |
msgstr "Visualizzazione dettagliata"
|
824 |
|
825 |
+
#: includes/admin/table-printer.php:178
|
826 |
msgid "Source"
|
827 |
msgstr "Sorgente"
|
828 |
|
829 |
+
#: includes/admin/table-printer.php:184
|
|
|
830 |
msgid "Link Text"
|
831 |
msgstr "Testo link"
|
832 |
|
833 |
+
#: includes/admin/table-printer.php:232
|
|
|
|
|
|
|
|
|
834 |
msgid "Bulk Actions"
|
835 |
msgstr "Azione di massa"
|
836 |
|
837 |
+
#: includes/admin/table-printer.php:233
|
838 |
+
#: includes/admin/table-printer.php:583
|
839 |
+
msgid "Edit URL"
|
840 |
+
msgstr "Modifica URL"
|
841 |
+
|
842 |
+
#: includes/admin/table-printer.php:234
|
843 |
msgid "Recheck"
|
844 |
msgstr "Ricontrolla"
|
845 |
|
846 |
+
#: includes/admin/table-printer.php:235
|
847 |
msgid "Fix redirects"
|
848 |
msgstr "Correggi re-indirizzamenti"
|
849 |
|
850 |
+
#: includes/admin/table-printer.php:236
|
851 |
msgid "Mark as not broken"
|
852 |
msgstr "segna come rotto"
|
853 |
|
854 |
+
#: includes/admin/table-printer.php:240
|
855 |
msgid "Move sources to Trash"
|
856 |
msgstr "Sposta le fonti nel cestino"
|
857 |
|
858 |
+
#: includes/admin/table-printer.php:242
|
859 |
msgid "Delete sources"
|
860 |
msgstr "Cancella soegenti"
|
861 |
|
862 |
+
#: includes/admin/table-printer.php:262
|
863 |
msgid "«"
|
864 |
msgstr "«"
|
865 |
|
866 |
+
#: includes/admin/table-printer.php:263
|
867 |
msgid "»"
|
868 |
msgstr "»"
|
869 |
|
870 |
+
#: includes/admin/table-printer.php:271
|
871 |
#, php-format
|
872 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
873 |
msgstr "Si stanno mostrando %s–%s di <span class=\"current-link-count\">%s</span>"
|
874 |
|
875 |
+
#: includes/admin/table-printer.php:294
|
876 |
+
msgid "Bulk Edit URLs"
|
877 |
+
msgstr "Modifica URL (di gruppo)"
|
878 |
+
|
879 |
+
#: includes/admin/table-printer.php:296
|
880 |
+
msgid "Find"
|
881 |
+
msgstr "Trova"
|
882 |
+
|
883 |
+
#: includes/admin/table-printer.php:300
|
884 |
+
msgid "Replace with"
|
885 |
+
msgstr "Sostituisci con"
|
886 |
+
|
887 |
+
#: includes/admin/table-printer.php:308
|
888 |
+
msgid "Case sensitive"
|
889 |
+
msgstr "Maiuscole/minuscole"
|
890 |
+
|
891 |
+
#: includes/admin/table-printer.php:312
|
892 |
+
msgid "Regular expression"
|
893 |
+
msgstr "Espressione regolare"
|
894 |
+
|
895 |
+
#: includes/admin/table-printer.php:320
|
896 |
+
msgid "Update"
|
897 |
+
msgstr "Aggiorna"
|
898 |
+
|
899 |
+
#: includes/admin/table-printer.php:445
|
900 |
msgid "Post published on"
|
901 |
msgstr "Articolo pubblicato il"
|
902 |
|
903 |
+
#: includes/admin/table-printer.php:450
|
904 |
msgid "Link last checked"
|
905 |
msgstr "Ultimo controllo link"
|
906 |
|
907 |
+
#: includes/admin/table-printer.php:454
|
908 |
msgid "Never"
|
909 |
msgstr "Mai"
|
910 |
|
911 |
+
#: includes/admin/table-printer.php:465
|
912 |
msgid "Response time"
|
913 |
msgstr "Tempo di risposta"
|
914 |
|
915 |
+
#: includes/admin/table-printer.php:467
|
916 |
#, php-format
|
917 |
msgid "%2.3f seconds"
|
918 |
msgstr "%2.3f secondi"
|
919 |
|
920 |
+
#: includes/admin/table-printer.php:470
|
921 |
msgid "Final URL"
|
922 |
msgstr "URL finale"
|
923 |
|
924 |
+
#: includes/admin/table-printer.php:475
|
925 |
msgid "Redirect count"
|
926 |
msgstr "Computo reindirizzamento"
|
927 |
|
928 |
+
#: includes/admin/table-printer.php:480
|
929 |
msgid "Instance count"
|
930 |
msgstr "Computo richieste"
|
931 |
|
932 |
+
#: includes/admin/table-printer.php:489
|
933 |
#, php-format
|
934 |
msgid "This link has failed %d time."
|
935 |
msgid_plural "This link has failed %d times."
|
936 |
msgstr[0] "Questo link é stato difettoso %d volte."
|
937 |
msgstr[1] "Questi link sono stati difettosi %d volte."
|
938 |
|
939 |
+
#: includes/admin/table-printer.php:497
|
940 |
#, php-format
|
941 |
msgid "This link has been broken for %s."
|
942 |
msgstr "Questo link é stato rotto per %s."
|
943 |
|
944 |
+
#: includes/admin/table-printer.php:508
|
945 |
msgid "Log"
|
946 |
msgstr "Registro"
|
947 |
|
948 |
+
#: includes/admin/table-printer.php:529
|
|
|
|
|
|
|
|
|
|
|
|
|
949 |
msgid "Show more info about this link"
|
950 |
msgstr "Mostra più info su questo link"
|
951 |
|
952 |
+
#: includes/admin/table-printer.php:547
|
953 |
+
msgctxt "checked how long ago"
|
954 |
+
msgid "Checked"
|
955 |
+
msgstr "Verificato"
|
956 |
|
957 |
+
#: includes/admin/table-printer.php:563
|
958 |
+
msgid "Broken for"
|
959 |
+
msgstr "Rotto per"
|
|
|
960 |
|
961 |
+
#: includes/admin/table-printer.php:583
|
|
|
962 |
msgid "Edit link URL"
|
963 |
msgstr "Modifica URL del link"
|
964 |
|
965 |
+
#: includes/admin/table-printer.php:585
|
966 |
+
msgid "Remove this link from all posts"
|
967 |
+
msgstr "Rimuovi questo link da tutti gli articoli"
|
968 |
+
|
969 |
+
#: includes/admin/table-printer.php:591
|
970 |
+
msgid "Remove this link from the list of broken links and mark it as valid"
|
971 |
+
msgstr "Rimuovi questo link dalla lista dei link rotti e segnalo come valido"
|
972 |
|
973 |
+
#: includes/admin/table-printer.php:600
|
|
|
974 |
msgid "Cancel URL editing"
|
975 |
msgstr "Annulla modifica URL"
|
976 |
|
977 |
+
#: includes/admin/table-printer.php:607
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
978 |
msgid "Update URL"
|
979 |
msgstr "Aggiorna URL"
|
980 |
|
981 |
+
#: includes/admin/table-printer.php:629
|
982 |
+
msgid "[An orphaned link! This is a bug.]"
|
983 |
+
msgstr "[Un link orfano! Questo é un bug.]"
|
984 |
+
|
985 |
+
#: includes/any-post.php:398
|
986 |
#: modules/containers/blogroll.php:46
|
987 |
#: modules/containers/comment.php:153
|
988 |
#: modules/containers/custom_field.php:197
|
989 |
msgid "Edit"
|
990 |
msgstr "Modifica"
|
991 |
|
992 |
+
#: includes/any-post.php:406
|
993 |
#: modules/containers/custom_field.php:203
|
994 |
msgid "Move this item to the Trash"
|
995 |
msgstr "Sposta questo termine nel cestino"
|
996 |
|
997 |
+
#: includes/any-post.php:408
|
998 |
#: modules/containers/custom_field.php:205
|
999 |
msgid "Trash"
|
1000 |
msgstr "Cestino"
|
1001 |
|
1002 |
+
#: includes/any-post.php:413
|
1003 |
#: modules/containers/custom_field.php:210
|
1004 |
msgid "Delete this item permanently"
|
1005 |
msgstr "Cancella questo termine in modo definitivo"
|
1006 |
|
1007 |
+
#: includes/any-post.php:415
|
1008 |
#: modules/containers/blogroll.php:47
|
1009 |
#: modules/containers/custom_field.php:212
|
1010 |
msgid "Delete"
|
1011 |
msgstr "Cancella"
|
1012 |
|
1013 |
+
#: includes/any-post.php:428
|
1014 |
#, php-format
|
1015 |
msgid "Preview “%s”"
|
1016 |
msgstr "Anteprima “%s”"
|
1017 |
|
1018 |
+
#: includes/any-post.php:429
|
1019 |
msgid "Preview"
|
1020 |
msgstr "Anteprima"
|
1021 |
|
1022 |
+
#: includes/any-post.php:436
|
1023 |
#, php-format
|
1024 |
msgid "View “%s”"
|
1025 |
msgstr "Visualizza “%s”"
|
1026 |
|
1027 |
+
#: includes/any-post.php:437
|
1028 |
#: modules/containers/comment.php:166
|
1029 |
#: modules/containers/custom_field.php:217
|
1030 |
msgid "View"
|
1031 |
msgstr "Visualizza"
|
1032 |
|
1033 |
+
#: includes/any-post.php:456
|
1034 |
#: modules/containers/custom_field.php:197
|
1035 |
msgid "Edit this item"
|
1036 |
msgstr "modifica questo termine"
|
1037 |
|
1038 |
+
#: includes/any-post.php:520
|
1039 |
#: modules/containers/blogroll.php:83
|
1040 |
#: modules/containers/comment.php:43
|
1041 |
msgid "Nothing to update"
|
1042 |
msgstr "Nulla da aggiornare"
|
1043 |
|
1044 |
+
#: includes/any-post.php:530
|
1045 |
#, php-format
|
1046 |
msgid "Updating post %d failed"
|
1047 |
msgstr "Aggiornamento articolo %d non riuscito"
|
1048 |
|
1049 |
+
#: includes/any-post.php:565
|
1050 |
#: modules/containers/custom_field.php:284
|
1051 |
#, php-format
|
1052 |
msgid "Failed to delete post \"%s\" (%d)"
|
1053 |
msgstr "Non é stato possibile cancellare il post \"%s\" (%d)"
|
1054 |
|
1055 |
+
#: includes/any-post.php:584
|
1056 |
#: modules/containers/custom_field.php:303
|
1057 |
#, php-format
|
1058 |
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
1059 |
msgstr "Non é stato possibile spostare l'articolo \"%s\" (%d) nel cestino poiché la funzione cestino non é attiva"
|
1060 |
|
1061 |
+
#: includes/any-post.php:604
|
1062 |
#: modules/containers/custom_field.php:322
|
1063 |
#, php-format
|
1064 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
1065 |
msgstr "Impossibile spostare l'articolo \"%s\" (%d) nel cestino"
|
1066 |
|
1067 |
+
#: includes/any-post.php:712
|
1068 |
#, php-format
|
1069 |
msgid "%d post deleted."
|
1070 |
msgid_plural "%d posts deleted."
|
1071 |
msgstr[0] "%d articolo cancellato"
|
1072 |
msgstr[1] "%d articoli cancellati"
|
1073 |
|
1074 |
+
#: includes/any-post.php:714
|
1075 |
#, php-format
|
1076 |
msgid "%d page deleted."
|
1077 |
msgid_plural "%d pages deleted."
|
1078 |
msgstr[0] "%d pagina cancellata."
|
1079 |
msgstr[1] "%d pagine cancellate."
|
1080 |
|
1081 |
+
#: includes/any-post.php:716
|
1082 |
#, php-format
|
1083 |
msgid "%d \"%s\" deleted."
|
1084 |
msgid_plural "%d \"%s\" deleted."
|
1085 |
msgstr[0] "%d \"%s\" cancellato."
|
1086 |
msgstr[1] "%d \"%s\" cancellati."
|
1087 |
|
1088 |
+
#: includes/any-post.php:735
|
1089 |
#, php-format
|
1090 |
msgid "%d post moved to the Trash."
|
1091 |
msgid_plural "%d posts moved to the Trash."
|
1092 |
msgstr[0] "%d il post é stato spostato nel cestino"
|
1093 |
msgstr[1] "%d i post sono stati spostati nel cestino"
|
1094 |
|
1095 |
+
#: includes/any-post.php:737
|
1096 |
#, php-format
|
1097 |
msgid "%d page moved to the Trash."
|
1098 |
msgid_plural "%d pages moved to the Trash."
|
1099 |
msgstr[0] "%d La pagina é stata spostata nel cestino."
|
1100 |
msgstr[1] "%d le pagine soono state spostate nel cestino"
|
1101 |
|
1102 |
+
#: includes/any-post.php:739
|
1103 |
#, php-format
|
1104 |
msgid "%d \"%s\" moved to the Trash."
|
1105 |
msgid_plural "%d \"%s\" moved to the Trash."
|
1113 |
msgstr[0] "%d '%s' é stato cancellato"
|
1114 |
msgstr[1] "%d '%s' sono stati cancellati"
|
1115 |
|
1116 |
+
#: includes/containers.php:882
|
1117 |
+
#: includes/containers.php:900
|
1118 |
#, php-format
|
1119 |
msgid "Container type '%s' not recognized"
|
1120 |
msgstr "Container type '%s' non riconosciuto"
|
1252 |
msgid "No links found for your query"
|
1253 |
msgstr "Nessun link trovato in relazione ai termini di ricerca"
|
1254 |
|
1255 |
+
#: includes/links.php:215
|
1256 |
msgid "The plugin script was terminated while trying to check the link."
|
1257 |
msgstr "Lo script del plugin was é stato fermato durante il tentativo di verifica del link."
|
1258 |
|
1259 |
+
#: includes/links.php:261
|
1260 |
msgid "The plugin doesn't know how to check this type of link."
|
1261 |
msgstr "Questo plugin non é in grado di potere verificare questo tipo di link."
|
1262 |
|
1263 |
+
#: includes/links.php:349
|
1264 |
msgid "Link is valid."
|
1265 |
msgstr "Il link é valido."
|
1266 |
|
1267 |
+
#: includes/links.php:351
|
1268 |
msgid "Link is broken."
|
1269 |
msgstr "Il link é rotto."
|
1270 |
|
1271 |
+
#: includes/links.php:564
|
1272 |
+
#: includes/links.php:666
|
1273 |
+
#: includes/links.php:693
|
1274 |
msgid "Link is not valid"
|
1275 |
msgstr "Link non valido"
|
1276 |
|
1277 |
+
#: includes/links.php:581
|
1278 |
msgid "This link can not be edited because it is not used anywhere on this site."
|
1279 |
msgstr "Questo link non può essere modificato poiché non viene utilizzato in nessuna parte di questo sito."
|
1280 |
|
1281 |
+
#: includes/links.php:607
|
1282 |
msgid "Failed to create a DB entry for the new URL."
|
1283 |
msgstr "Non é stato possibile creare una entry nel DB per il nuovo URL."
|
1284 |
|
1285 |
+
#: includes/links.php:673
|
1286 |
msgid "This link is not a redirect"
|
1287 |
msgstr "Questo link non é redirect"
|
1288 |
|
1289 |
+
#: includes/links.php:720
|
1290 |
+
#: includes/links.php:757
|
1291 |
msgid "Couldn't delete the link's database record"
|
1292 |
msgstr "Non é possibile cancellare dal database il record per il link"
|
1293 |
|
1294 |
+
#: includes/links.php:831
|
1295 |
msgctxt "link status"
|
1296 |
msgid "Unknown"
|
1297 |
msgstr "Sconosciuto"
|
1298 |
|
1299 |
+
#: includes/links.php:845
|
1300 |
+
#: modules/checkers/http.php:263
|
1301 |
msgid "Unknown Error"
|
1302 |
msgstr "Errore sconosciuto"
|
1303 |
|
1304 |
+
#: includes/links.php:869
|
1305 |
msgid "Not checked"
|
1306 |
msgstr "Non verificato"
|
1307 |
|
1308 |
+
#: includes/links.php:872
|
1309 |
msgid "False positive"
|
1310 |
msgstr "Falso positivo"
|
1311 |
|
1312 |
+
#: includes/links.php:875
|
1313 |
msgctxt "link status"
|
1314 |
msgid "OK"
|
1315 |
msgstr "OK"
|
1316 |
|
1317 |
+
#: includes/module-manager.php:122
|
1318 |
+
#: includes/module-manager.php:139
|
1319 |
+
msgctxt "module name"
|
1320 |
+
msgid "Name"
|
1321 |
+
msgstr "Nome"
|
1322 |
+
|
1323 |
+
#: includes/parsers.php:109
|
1324 |
#, php-format
|
1325 |
msgid "Editing is not implemented in the '%s' parser"
|
1326 |
msgstr "La modifica non é implementata nel '%s' parser"
|
1327 |
|
1328 |
+
#: includes/parsers.php:124
|
1329 |
#, php-format
|
1330 |
msgid "Unlinking is not implemented in the '%s' parser"
|
1331 |
msgstr "Il de-link non é implementatato nel '%s' parser"
|
1332 |
|
1333 |
+
#: includes/utility-class.php:287
|
1334 |
#, php-format
|
1335 |
msgid "%d second"
|
1336 |
msgid_plural "%d seconds"
|
1337 |
msgstr[0] "%d secondo"
|
1338 |
msgstr[1] "%d secondi"
|
1339 |
|
1340 |
+
#: includes/utility-class.php:288
|
1341 |
#, php-format
|
1342 |
msgid "%d second ago"
|
1343 |
msgid_plural "%d seconds ago"
|
1344 |
msgstr[0] "%d secondo fa"
|
1345 |
msgstr[1] "%d secondi fa"
|
1346 |
|
1347 |
+
#: includes/utility-class.php:291
|
1348 |
#, php-format
|
1349 |
msgid "%d minute"
|
1350 |
msgid_plural "%d minutes"
|
1351 |
msgstr[0] "%d minuto"
|
1352 |
msgstr[1] "%d minuti"
|
1353 |
|
1354 |
+
#: includes/utility-class.php:292
|
1355 |
#, php-format
|
1356 |
msgid "%d minute ago"
|
1357 |
msgid_plural "%d minutes ago"
|
1358 |
msgstr[0] "%d minuto fa"
|
1359 |
msgstr[1] "%d minuti fa"
|
1360 |
|
1361 |
+
#: includes/utility-class.php:295
|
1362 |
#, php-format
|
1363 |
msgid "%d hour"
|
1364 |
msgid_plural "%d hours"
|
1365 |
msgstr[0] "%d ora"
|
1366 |
msgstr[1] "%d ore"
|
1367 |
|
1368 |
+
#: includes/utility-class.php:296
|
1369 |
#, php-format
|
1370 |
msgid "%d hour ago"
|
1371 |
msgid_plural "%d hours ago"
|
1372 |
msgstr[0] "%d ora fa"
|
1373 |
msgstr[1] "%d ore fa"
|
1374 |
|
1375 |
+
#: includes/utility-class.php:299
|
1376 |
#, php-format
|
1377 |
msgid "%d day"
|
1378 |
msgid_plural "%d days"
|
1379 |
msgstr[0] "%d giorno"
|
1380 |
msgstr[1] "%d giorni"
|
1381 |
|
1382 |
+
#: includes/utility-class.php:300
|
1383 |
#, php-format
|
1384 |
msgid "%d day ago"
|
1385 |
msgid_plural "%d days ago"
|
1386 |
msgstr[0] "%d giorno fa"
|
1387 |
msgstr[1] "%d giorni fa"
|
1388 |
|
1389 |
+
#: includes/utility-class.php:303
|
1390 |
#, php-format
|
1391 |
msgid "%d month"
|
1392 |
msgid_plural "%d months"
|
1393 |
msgstr[0] "%d mese"
|
1394 |
msgstr[1] "%d mesi"
|
1395 |
|
1396 |
+
#: includes/utility-class.php:304
|
1397 |
#, php-format
|
1398 |
msgid "%d month ago"
|
1399 |
msgid_plural "%d months ago"
|
1400 |
msgstr[0] "%d mese fa"
|
1401 |
msgstr[1] "%d mesi fa"
|
1402 |
|
1403 |
+
#: modules/checkers/http.php:242
|
1404 |
msgid "Server Not Found"
|
1405 |
msgstr "Server non trovato"
|
1406 |
|
1407 |
+
#: modules/checkers/http.php:257
|
1408 |
msgid "Connection Failed"
|
1409 |
msgstr "Tentativo di connessione non riuscito"
|
1410 |
|
1411 |
+
#: modules/checkers/http.php:292
|
1412 |
+
#: modules/checkers/http.php:362
|
1413 |
#, php-format
|
1414 |
msgid "HTTP code : %d"
|
1415 |
msgstr "Codice HTTP : %d"
|
1416 |
|
1417 |
+
#: modules/checkers/http.php:294
|
1418 |
+
#: modules/checkers/http.php:364
|
1419 |
msgid "(No response)"
|
1420 |
msgstr "(nessuna risposta)"
|
1421 |
|
1422 |
+
#: modules/checkers/http.php:300
|
1423 |
msgid "Most likely the connection timed out or the domain doesn't exist."
|
1424 |
msgstr "Connessione scaduta oppure il dominio non esiste."
|
1425 |
|
1426 |
+
#: modules/checkers/http.php:371
|
1427 |
msgid "Request timed out."
|
1428 |
msgstr "Richiesta scaduta."
|
1429 |
|
1430 |
+
#: modules/checkers/http.php:389
|
1431 |
msgid "Using Snoopy"
|
1432 |
msgstr "Snoopy in uso"
|
1433 |
|
1507 |
msgid "Comment"
|
1508 |
msgstr "Commento"
|
1509 |
|
1510 |
+
#: modules/containers/comment.php:372
|
1511 |
#, php-format
|
1512 |
msgid "%d comment has been deleted."
|
1513 |
msgid_plural "%d comments have been deleted."
|
1514 |
msgstr[0] "%d commento é stato cancellato"
|
1515 |
msgstr[1] "%d commenti sono stati cancellati"
|
1516 |
|
1517 |
+
#: modules/containers/comment.php:391
|
1518 |
#, php-format
|
1519 |
msgid "%d comment moved to the Trash."
|
1520 |
msgid_plural "%d comments moved to the Trash."
|
1570 |
msgid "http://w-shadow.com/blog/"
|
1571 |
msgstr "http://w-shadow.com/blog/"
|
1572 |
|
1573 |
+
#~ msgid "Used in"
|
1574 |
+
#~ msgstr "Utilizzato in"
|
1575 |
+
|
1576 |
#~ msgid ""
|
1577 |
#~ "Unexpected error: The plugin doesn't know how to upgrade its database to "
|
1578 |
#~ "version '%d'."
|
languages/broken-link-checker-pl_PL.mo
ADDED
Binary file
|
languages/broken-link-checker-pl_PL.po
ADDED
@@ -0,0 +1,1570 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of the WordPress plugin Broken Link Checker 0.9.6 by Janis Elsts.
|
2 |
+
# Copyright (C) 2010 Janis Elsts
|
3 |
+
# This file is distributed under the same license as the Broken Link Checker package.
|
4 |
+
# Positionmaker <info@positionmaker.pl>, 2010.
|
5 |
+
msgid ""
|
6 |
+
msgstr ""
|
7 |
+
"Project-Id-Version: Broken Link Checker 0.9.5\n"
|
8 |
+
"POT-Creation-Date: \n"
|
9 |
+
"PO-Revision-Date: \n"
|
10 |
+
"Last-Translator: PositionMaker <info@positionmaker.pl>\n"
|
11 |
+
"Language-Team: PositionMaker <info@positionmaker.pl>\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
+
"X-Poedit-Language: Polish\n"
|
17 |
+
"X-Poedit-Country: POLAND\n"
|
18 |
+
|
19 |
+
#: core/core.php:152
|
20 |
+
#: includes/admin/links-page-js.php:37
|
21 |
+
msgid "Loading..."
|
22 |
+
msgstr "Wczytywanie..."
|
23 |
+
|
24 |
+
#: core/core.php:176
|
25 |
+
#: includes/admin/options-page-js.php:18
|
26 |
+
msgid "[ Network error ]"
|
27 |
+
msgstr "[ Błąd sieci ]"
|
28 |
+
|
29 |
+
#: core/core.php:201
|
30 |
+
msgid "Automatically expand the widget if broken links have been detected"
|
31 |
+
msgstr "Automatycznie rozwiń widget, jeśli wykryto niedziałające linki."
|
32 |
+
|
33 |
+
#: core/core.php:342
|
34 |
+
msgid "Link Checker Settings"
|
35 |
+
msgstr "Ustawienia Link Checker"
|
36 |
+
|
37 |
+
#: core/core.php:343
|
38 |
+
msgid "Link Checker"
|
39 |
+
msgstr "Lick Checker"
|
40 |
+
|
41 |
+
#: core/core.php:348
|
42 |
+
#: includes/link-query.php:26
|
43 |
+
msgid "Broken Links"
|
44 |
+
msgstr "Niedziałające linki"
|
45 |
+
|
46 |
+
#: core/core.php:364
|
47 |
+
msgid "View Broken Links"
|
48 |
+
msgstr "Pokaż niedziałające linki"
|
49 |
+
|
50 |
+
#: core/core.php:392
|
51 |
+
msgid "Settings"
|
52 |
+
msgstr "Ustawienia"
|
53 |
+
|
54 |
+
#: core/core.php:404
|
55 |
+
#: core/core.php:1186
|
56 |
+
#, php-format
|
57 |
+
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
58 |
+
msgstr "Błąd: tabele w bazie danych pluginu są nieaktualne! (Bieżąca wersja: %d, spodziewana: %d)"
|
59 |
+
|
60 |
+
#: core/core.php:543
|
61 |
+
msgid "Settings saved."
|
62 |
+
msgstr "Ustawienia zapisane."
|
63 |
+
|
64 |
+
#: core/core.php:550
|
65 |
+
msgid "Complete site recheck started."
|
66 |
+
msgstr "Rozpoczęto sprawdzanie całej strony."
|
67 |
+
|
68 |
+
#: core/core.php:564
|
69 |
+
#: core/core.php:2744
|
70 |
+
msgid "Details"
|
71 |
+
msgstr "Szczegóły"
|
72 |
+
|
73 |
+
#: core/core.php:578
|
74 |
+
msgid "General"
|
75 |
+
msgstr "Ogólne"
|
76 |
+
|
77 |
+
#: core/core.php:579
|
78 |
+
msgid "Look For Links In"
|
79 |
+
msgstr "Szukasz linków w"
|
80 |
+
|
81 |
+
#: core/core.php:580
|
82 |
+
msgid "Which Links To Check"
|
83 |
+
msgstr "Które linki sprawdzać"
|
84 |
+
|
85 |
+
#: core/core.php:581
|
86 |
+
msgid "Protocols & APIs"
|
87 |
+
msgstr "Protokoły i API"
|
88 |
+
|
89 |
+
#: core/core.php:582
|
90 |
+
msgid "Advanced"
|
91 |
+
msgstr "Zaawansowane"
|
92 |
+
|
93 |
+
#: core/core.php:586
|
94 |
+
msgid "Broken Link Checker Options"
|
95 |
+
msgstr "Opcje pluginu Link Checker"
|
96 |
+
|
97 |
+
#: core/core.php:612
|
98 |
+
#: includes/admin/table-printer.php:168
|
99 |
+
msgid "Status"
|
100 |
+
msgstr "Status"
|
101 |
+
|
102 |
+
#: core/core.php:614
|
103 |
+
#: includes/admin/options-page-js.php:56
|
104 |
+
msgid "Show debug info"
|
105 |
+
msgstr "Pokaż informacje typu debug"
|
106 |
+
|
107 |
+
#: core/core.php:642
|
108 |
+
msgid "Check each link"
|
109 |
+
msgstr "Sprawdź każdy link"
|
110 |
+
|
111 |
+
#: core/core.php:647
|
112 |
+
#, php-format
|
113 |
+
msgid "Every %s hours"
|
114 |
+
msgstr "Co %s godzin"
|
115 |
+
|
116 |
+
#: core/core.php:656
|
117 |
+
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
118 |
+
msgstr "Częstość sprawdzania istniejących linków. Nowe linki będą sprawdzane tak szybko, jak to możliwe."
|
119 |
+
|
120 |
+
#: core/core.php:663
|
121 |
+
msgid "E-mail notifications"
|
122 |
+
msgstr "Powiadomienia na E-mail"
|
123 |
+
|
124 |
+
#: core/core.php:669
|
125 |
+
msgid "Send me e-mail notifications about newly detected broken links"
|
126 |
+
msgstr "Wysyłaj do mnie E-mail z wiadomością o nowowykrytych niedziałających linkach."
|
127 |
+
|
128 |
+
#: core/core.php:676
|
129 |
+
msgid "Link tweaks"
|
130 |
+
msgstr "Linki-dodatki"
|
131 |
+
|
132 |
+
#: core/core.php:682
|
133 |
+
msgid "Apply custom formatting to broken links"
|
134 |
+
msgstr "Ustaw odmienne formatowanie niedziałających linków"
|
135 |
+
|
136 |
+
#: core/core.php:686
|
137 |
+
#: core/core.php:714
|
138 |
+
msgid "Edit CSS"
|
139 |
+
msgstr "Edytuj CSS"
|
140 |
+
|
141 |
+
#: core/core.php:710
|
142 |
+
msgid "Apply custom formatting to removed links"
|
143 |
+
msgstr "Zastosuje własne formatowanie do niedziałających linków"
|
144 |
+
|
145 |
+
#: core/core.php:738
|
146 |
+
msgid "Stop search engines from following broken links"
|
147 |
+
msgstr "Nie pozwól wyszukiwarkom podążać po niedziałających linkach"
|
148 |
+
|
149 |
+
#: core/core.php:755
|
150 |
+
msgid "Look for links in"
|
151 |
+
msgstr "Szukaj linków w"
|
152 |
+
|
153 |
+
#: core/core.php:766
|
154 |
+
msgid "Post statuses"
|
155 |
+
msgstr "Statury wpisów"
|
156 |
+
|
157 |
+
#: core/core.php:799
|
158 |
+
msgid "Link types"
|
159 |
+
msgstr "Typy linków"
|
160 |
+
|
161 |
+
#: core/core.php:805
|
162 |
+
msgid "Error : All link parsers missing!"
|
163 |
+
msgstr "Błąd: usunięto wszystkie parsery linków!"
|
164 |
+
|
165 |
+
#: core/core.php:812
|
166 |
+
msgid "Exclusion list"
|
167 |
+
msgstr "Lista wykluczeń"
|
168 |
+
|
169 |
+
#: core/core.php:813
|
170 |
+
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
171 |
+
msgstr "Nie sprawdzaj linków, które zawierają w URLu następujące słowa (jedno słowo na linię):"
|
172 |
+
|
173 |
+
#: core/core.php:831
|
174 |
+
msgid "Check links using"
|
175 |
+
msgstr "Sprawdź linki używając"
|
176 |
+
|
177 |
+
#: core/core.php:850
|
178 |
+
#: includes/links.php:849
|
179 |
+
msgid "Timeout"
|
180 |
+
msgstr "Timeout"
|
181 |
+
|
182 |
+
#: core/core.php:856
|
183 |
+
#: core/core.php:902
|
184 |
+
#: core/core.php:2871
|
185 |
+
#, php-format
|
186 |
+
msgid "%s seconds"
|
187 |
+
msgstr "% sekundy"
|
188 |
+
|
189 |
+
#: core/core.php:865
|
190 |
+
msgid "Links that take longer than this to load will be marked as broken."
|
191 |
+
msgstr "Linki, których sprawdzenie zajmie więcej niż ten czas, będą oznaczone jako niedziałające."
|
192 |
+
|
193 |
+
#: core/core.php:872
|
194 |
+
msgid "Link monitor"
|
195 |
+
msgstr "Monitor linków"
|
196 |
+
|
197 |
+
#: core/core.php:880
|
198 |
+
msgid "Run continuously while the Dashboard is open"
|
199 |
+
msgstr "Pracuj nieprzerwanie, kiedy Kokpit jest otwarty"
|
200 |
+
|
201 |
+
#: core/core.php:888
|
202 |
+
msgid "Run hourly in the background"
|
203 |
+
msgstr "Uruchom co godzinę w tle"
|
204 |
+
|
205 |
+
#: core/core.php:896
|
206 |
+
msgid "Max. execution time"
|
207 |
+
msgstr "Maksymalny czas wykonywania"
|
208 |
+
|
209 |
+
#: core/core.php:913
|
210 |
+
msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
|
211 |
+
msgstr "Ten plugin działa poprzez cykliczne odpalanie zadania w tle, które pobiera linków z wpisów, sprawdza ich URLe i wykonuje inne wymagające czasowo zadania. Tutaj możesz ustawić na jak długi maksymalnie czas monitor linków może działać, zanim się zatrzyma."
|
212 |
+
|
213 |
+
#: core/core.php:923
|
214 |
+
msgid "Custom temporary directory"
|
215 |
+
msgstr "Własny katalog tymczasowy"
|
216 |
+
|
217 |
+
#: core/core.php:932
|
218 |
+
msgid "OK"
|
219 |
+
msgstr "OK"
|
220 |
+
|
221 |
+
#: core/core.php:935
|
222 |
+
msgid "Error : This directory isn't writable by PHP."
|
223 |
+
msgstr "Błąd: ten katalog nie ma praw zapisu dla PHP."
|
224 |
+
|
225 |
+
#: core/core.php:940
|
226 |
+
msgid "Error : This directory doesn't exist."
|
227 |
+
msgstr "Błąd: ten katalog nie istnieje."
|
228 |
+
|
229 |
+
#: core/core.php:948
|
230 |
+
msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
|
231 |
+
msgstr "Ustaw to pole, jesli chcesz by plugin korzystał z własnego katalogu dla plików tymczasowych. Lub zostaw puste dla domyślnego katalogu."
|
232 |
+
|
233 |
+
#: core/core.php:955
|
234 |
+
msgid "Server load limit"
|
235 |
+
msgstr "Limit obciążenia serwera"
|
236 |
+
|
237 |
+
#: core/core.php:970
|
238 |
+
#, php-format
|
239 |
+
msgid "Current load : %s"
|
240 |
+
msgstr "Bieżące obciążenie: %s"
|
241 |
+
|
242 |
+
#: core/core.php:976
|
243 |
+
#, php-format
|
244 |
+
msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
|
245 |
+
msgstr "Sprawdzanie linków będzie zawieszone, jeśli średnie <a href=\"%s\">obciążenie procesora</a> wzrośnie powyżej tej wartości. Zostaw puste, aby usunąć limit."
|
246 |
+
|
247 |
+
#: core/core.php:984
|
248 |
+
msgid "Not available"
|
249 |
+
msgstr "Niedostępne"
|
250 |
+
|
251 |
+
#: core/core.php:986
|
252 |
+
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
253 |
+
msgstr "Limit obciążenia działa tylko na serwerach Linux, w których jest dostępny <code>/proc/loadavg</code>."
|
254 |
+
|
255 |
+
#: core/core.php:994
|
256 |
+
msgid "Forced recheck"
|
257 |
+
msgstr "Wymuszone sprawdzenie"
|
258 |
+
|
259 |
+
#: core/core.php:997
|
260 |
+
msgid "Re-check all pages"
|
261 |
+
msgstr "Sprawdź wszystkie strony"
|
262 |
+
|
263 |
+
#: core/core.php:1001
|
264 |
+
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
265 |
+
msgstr "\"Opcja Atomowa\". Kliknij ten przycisk, jeśli chcesz wyczyścić bazę danych pluginu i sprawdzić całą stronę od początku."
|
266 |
+
|
267 |
+
#: core/core.php:1012
|
268 |
+
msgid "Save Changes"
|
269 |
+
msgstr "Zapisz zmiany"
|
270 |
+
|
271 |
+
#: core/core.php:1057
|
272 |
+
msgid "Configure"
|
273 |
+
msgstr "Konfiguruj"
|
274 |
+
|
275 |
+
#: core/core.php:1117
|
276 |
+
msgid "Upgrade to Pro to enable this feature"
|
277 |
+
msgstr "Ta opcja jest dostępna tylko w wersji Pro"
|
278 |
+
|
279 |
+
#: core/core.php:1152
|
280 |
+
msgid "Check URLs entered in these custom fields (one per line) :"
|
281 |
+
msgstr "Sprawdź poniższe URLe (jedno słowo na linię):"
|
282 |
+
|
283 |
+
#: core/core.php:1286
|
284 |
+
#: core/core.php:1370
|
285 |
+
#: core/core.php:1402
|
286 |
+
#, php-format
|
287 |
+
msgid "Database error : %s"
|
288 |
+
msgstr "Błąd bazy danych: %s"
|
289 |
+
|
290 |
+
#: core/core.php:1352
|
291 |
+
msgid "You must enter a filter name!"
|
292 |
+
msgstr "Musisz podać nazwę filtra!"
|
293 |
+
|
294 |
+
#: core/core.php:1356
|
295 |
+
msgid "Invalid search query."
|
296 |
+
msgstr "Nieprawidłowee wyszukiwanie."
|
297 |
+
|
298 |
+
#: core/core.php:1365
|
299 |
+
#, php-format
|
300 |
+
msgid "Filter \"%s\" created"
|
301 |
+
msgstr "Filtr \"%s\" stworzony"
|
302 |
+
|
303 |
+
#: core/core.php:1392
|
304 |
+
msgid "Filter ID not specified."
|
305 |
+
msgstr "Nie podano ID filtra."
|
306 |
+
|
307 |
+
#: core/core.php:1399
|
308 |
+
msgid "Filter deleted"
|
309 |
+
msgstr "Filtr usunięty"
|
310 |
+
|
311 |
+
#: core/core.php:1447
|
312 |
+
#, php-format
|
313 |
+
msgid "Replaced %d redirect with a direct link"
|
314 |
+
msgid_plural "Replaced %d redirects with direct links"
|
315 |
+
msgstr[0] "Zamieniono %d przekierowanie na docelowy link"
|
316 |
+
msgstr[1] "Zamieniono %d przekierować na docelowe linki"
|
317 |
+
|
318 |
+
#: core/core.php:1458
|
319 |
+
#, php-format
|
320 |
+
msgid "Failed to fix %d redirect"
|
321 |
+
msgid_plural "Failed to fix %d redirects"
|
322 |
+
msgstr[0] "Nie udało się naprawić %d przekierowania"
|
323 |
+
msgstr[1] "Nie udało się naprawić %d przekierowań"
|
324 |
+
|
325 |
+
#: core/core.php:1468
|
326 |
+
msgid "None of the selected links are redirects!"
|
327 |
+
msgstr "Żaden z zaznaczonych linków nie jest przekierowaniem!"
|
328 |
+
|
329 |
+
#: core/core.php:1547
|
330 |
+
#, php-format
|
331 |
+
msgid "%d link updated."
|
332 |
+
msgid_plural "%d links updated."
|
333 |
+
msgstr[0] "%d link uaktualniony."
|
334 |
+
msgstr[1] "Linki uaktualnione: %d"
|
335 |
+
|
336 |
+
#: core/core.php:1558
|
337 |
+
#, php-format
|
338 |
+
msgid "Failed to update %d link."
|
339 |
+
msgid_plural "Failed to update %d links."
|
340 |
+
msgstr[0] "Nie udało się uaktualnić %d linka"
|
341 |
+
msgstr[1] "Nie udało się uaktualnić linków: %d"
|
342 |
+
|
343 |
+
#: core/core.php:1612
|
344 |
+
#, php-format
|
345 |
+
msgid "%d link removed"
|
346 |
+
msgid_plural "%d links removed"
|
347 |
+
msgstr[0] "%d link usunięty"
|
348 |
+
msgstr[1] "Usunięte linki: %d"
|
349 |
+
|
350 |
+
#: core/core.php:1623
|
351 |
+
#, php-format
|
352 |
+
msgid "Failed to remove %d link"
|
353 |
+
msgid_plural "Failed to remove %d links"
|
354 |
+
msgstr[0] "Nie udało się usunąć %d linka"
|
355 |
+
msgstr[1] "Nie udało się usunąć linków: %d"
|
356 |
+
|
357 |
+
#: core/core.php:1732
|
358 |
+
#, php-format
|
359 |
+
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
360 |
+
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
361 |
+
msgstr[0] "%d pozycja została pominięta, ponieważ nie może zostać przeniesiona do Kosza. Musisz ją usunąć ręcznie."
|
362 |
+
msgstr[1] "%d pozycje zostały pominięte, ponieważ nie mogą zostać przeniesione do Kosza. Musisz je usunąć ręcznie."
|
363 |
+
|
364 |
+
#: core/core.php:1753
|
365 |
+
msgid "Didn't find anything to delete!"
|
366 |
+
msgstr "Nie znaleziono nic do usunięcia!"
|
367 |
+
|
368 |
+
#: core/core.php:1781
|
369 |
+
#, php-format
|
370 |
+
msgid "%d link scheduled for rechecking"
|
371 |
+
msgid_plural "%d links scheduled for rechecking"
|
372 |
+
msgstr[0] "%d link ustawiony do ponownego sprawdzenia"
|
373 |
+
msgstr[1] "Linków ustawionych do ponownego sprawdzenia: %d"
|
374 |
+
|
375 |
+
#: core/core.php:1826
|
376 |
+
#: core/core.php:2431
|
377 |
+
msgid "This link was manually marked as working by the user."
|
378 |
+
msgstr "Ten link został przez użytkownika oznaczony jako działający."
|
379 |
+
|
380 |
+
#: core/core.php:1833
|
381 |
+
#, php-format
|
382 |
+
msgid "Couldn't modify link %d"
|
383 |
+
msgstr "Nie mogę zmodyfikować linku %d"
|
384 |
+
|
385 |
+
#: core/core.php:1844
|
386 |
+
#, php-format
|
387 |
+
msgid "%d link marked as not broken"
|
388 |
+
msgid_plural "%d links marked as not broken"
|
389 |
+
msgstr[0] "%d link oznaczony jako prawidłowy"
|
390 |
+
msgstr[1] "Linków oznaczonych jako prawidłowe: %d"
|
391 |
+
|
392 |
+
#: core/core.php:1884
|
393 |
+
msgid "Table columns"
|
394 |
+
msgstr "Kolumny tabeli"
|
395 |
+
|
396 |
+
#: core/core.php:1903
|
397 |
+
msgid "Show on screen"
|
398 |
+
msgstr "Pokaż na ekranie"
|
399 |
+
|
400 |
+
#: core/core.php:1910
|
401 |
+
msgid "links"
|
402 |
+
msgstr "linki"
|
403 |
+
|
404 |
+
#: core/core.php:1911
|
405 |
+
#: includes/admin/table-printer.php:136
|
406 |
+
msgid "Apply"
|
407 |
+
msgstr "Zastosuj"
|
408 |
+
|
409 |
+
#: core/core.php:1915
|
410 |
+
msgid "Misc"
|
411 |
+
msgstr "Inne"
|
412 |
+
|
413 |
+
#: core/core.php:1930
|
414 |
+
#, php-format
|
415 |
+
msgid "Highlight links broken for at least %s days"
|
416 |
+
msgstr "Zaznacz linki niedziałające linki przez co najmniej %s dni"
|
417 |
+
|
418 |
+
#: core/core.php:1939
|
419 |
+
msgid "Color-code status codes"
|
420 |
+
msgstr "Kolorowe kody statusów"
|
421 |
+
|
422 |
+
#: core/core.php:1956
|
423 |
+
#: core/core.php:2416
|
424 |
+
#: core/core.php:2452
|
425 |
+
#: core/core.php:2515
|
426 |
+
msgid "You're not allowed to do that!"
|
427 |
+
msgstr "Nie wolno Ci tego zrobić!"
|
428 |
+
|
429 |
+
#: core/core.php:2297
|
430 |
+
msgid "View broken links"
|
431 |
+
msgstr "Pokaż niedziałające linki"
|
432 |
+
|
433 |
+
#: core/core.php:2298
|
434 |
+
#, php-format
|
435 |
+
msgid "Found %d broken link"
|
436 |
+
msgid_plural "Found %d broken links"
|
437 |
+
msgstr[0] "Znaleziono %d niedziałający link"
|
438 |
+
msgstr[1] "Znaleziono niedziałających linków: %d"
|
439 |
+
|
440 |
+
#: core/core.php:2304
|
441 |
+
msgid "No broken links found."
|
442 |
+
msgstr "Nie znaleziono niedziałających linków"
|
443 |
+
|
444 |
+
#: core/core.php:2311
|
445 |
+
#, php-format
|
446 |
+
msgid "%d URL in the work queue"
|
447 |
+
msgid_plural "%d URLs in the work queue"
|
448 |
+
msgstr[0] "%d URL w kolejce do sprawdzenia"
|
449 |
+
msgstr[1] "URLi w kolejce do sprawdzenia: %d"
|
450 |
+
|
451 |
+
#: core/core.php:2314
|
452 |
+
msgid "No URLs in the work queue."
|
453 |
+
msgstr "Brak URLi w kolejce do sprawdzenia."
|
454 |
+
|
455 |
+
#: core/core.php:2320
|
456 |
+
#, php-format
|
457 |
+
msgid "Detected %d unique URL"
|
458 |
+
msgid_plural "Detected %d unique URLs"
|
459 |
+
msgstr[0] "Znaleziono %d unikalny URL"
|
460 |
+
msgstr[1] "Znaleziono %d unikalnych URLi"
|
461 |
+
|
462 |
+
#: core/core.php:2321
|
463 |
+
#, php-format
|
464 |
+
msgid "in %d link"
|
465 |
+
msgid_plural "in %d links"
|
466 |
+
msgstr[0] "w bazie %d linka"
|
467 |
+
msgstr[1] "w bazie linków: %d"
|
468 |
+
|
469 |
+
#: core/core.php:2326
|
470 |
+
msgid "and still searching..."
|
471 |
+
msgstr "i nadal szukam"
|
472 |
+
|
473 |
+
#: core/core.php:2332
|
474 |
+
msgid "Searching your blog for links..."
|
475 |
+
msgstr "Przeszukiwanie bloga pod kątem linków"
|
476 |
+
|
477 |
+
#: core/core.php:2334
|
478 |
+
msgid "No links detected."
|
479 |
+
msgstr "Nie znaleziono linków."
|
480 |
+
|
481 |
+
#: core/core.php:2360
|
482 |
+
msgctxt "current load"
|
483 |
+
msgid "Unknown"
|
484 |
+
msgstr "Nieznany"
|
485 |
+
|
486 |
+
#: core/core.php:2424
|
487 |
+
#: core/core.php:2462
|
488 |
+
#: core/core.php:2525
|
489 |
+
#, php-format
|
490 |
+
msgid "Oops, I can't find the link %d"
|
491 |
+
msgstr "Ojj, nie mogę znaleść linkac %d"
|
492 |
+
|
493 |
+
#: core/core.php:2437
|
494 |
+
msgid "Oops, couldn't modify the link!"
|
495 |
+
msgstr "Ojj, nie mogę zmodyfikować linka!"
|
496 |
+
|
497 |
+
#: core/core.php:2440
|
498 |
+
#: core/core.php:2551
|
499 |
+
msgid "Error : link_id not specified"
|
500 |
+
msgstr "Błąd: nie ustalono link_id"
|
501 |
+
|
502 |
+
#: core/core.php:2472
|
503 |
+
msgid "Oops, the new URL is invalid!"
|
504 |
+
msgstr "Ojj, nowy URL nie niepoprawny!"
|
505 |
+
|
506 |
+
#: core/core.php:2483
|
507 |
+
#: core/core.php:2534
|
508 |
+
msgid "An unexpected error occured!"
|
509 |
+
msgstr "Wystąpił nieoczekiwany błąd!"
|
510 |
+
|
511 |
+
#: core/core.php:2501
|
512 |
+
msgid "Error : link_id or new_url not specified"
|
513 |
+
msgstr "Błąd: nie ustalono link_id lub new_url"
|
514 |
+
|
515 |
+
#: core/core.php:2560
|
516 |
+
msgid "You don't have sufficient privileges to access this information!"
|
517 |
+
msgstr "Nie masz wystarczających uprawnień aby uzyskać tę informację!"
|
518 |
+
|
519 |
+
#: core/core.php:2573
|
520 |
+
msgid "Error : link ID not specified"
|
521 |
+
msgstr "Błąd: nie ustalono ID linka"
|
522 |
+
|
523 |
+
#: core/core.php:2587
|
524 |
+
#, php-format
|
525 |
+
msgid "Failed to load link details (%s)"
|
526 |
+
msgstr "Nie udało się wczytać szczegółów linka (%s)"
|
527 |
+
|
528 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 0.9.6) #-#-#-#-#
|
529 |
+
#. Plugin Name of the plugin/theme
|
530 |
+
#: core/core.php:2716
|
531 |
+
msgid "Broken Link Checker"
|
532 |
+
msgstr "Broken Link Checker"
|
533 |
+
|
534 |
+
#: core/core.php:2730
|
535 |
+
#, php-format
|
536 |
+
msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
|
537 |
+
msgstr "Bieżący tymczasowy katalog nie jest dostępny; proszę go <a href=\"%s\">zmienić</a>."
|
538 |
+
|
539 |
+
#: core/core.php:2735
|
540 |
+
#, php-format
|
541 |
+
msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
|
542 |
+
msgstr "Proszę ustawić uprawnienie do zapisu dla katalogu <code>%1$s</code> bądź <a href=\"%2$s\">ustawić własny katalog tymczasowy</a>."
|
543 |
+
|
544 |
+
#: core/core.php:2742
|
545 |
+
msgid "Broken Link Checker can't create a lockfile."
|
546 |
+
msgstr "Broken Link Checker nie może stworzyć pliku zapisu"
|
547 |
+
|
548 |
+
#: core/core.php:2747
|
549 |
+
msgid "The plugin uses a file-based locking mechanism to ensure that only one instance of the resource-heavy link checking algorithm is running at any given time. Unfortunately, BLC can't find a writable directory where it could store the lockfile - it failed to detect the location of your server's temporary directory, and the plugin's own directory isn't writable by PHP. To fix this problem, please make the plugin's directory writable or enter a specify a custom temporary directory in the plugin's settings."
|
550 |
+
msgstr "Ten plugin używa opartego o pliki mechanizmu zabezpieczeń przed jednoczesnym uruchomieniem w tym samym momencie kilku wysoce obciążających instancji algorytmu sprawdzania linków. Niestety BLC nie znalazł katalogu, do którego mógłby zapisywać plik tzw. \"lockfile\" - nie znalazł katalogu tymczasowe na Twoim serwerze, a katalog pluginu nie ma uprawnień do zapisu dla PHP. Aby naprawić ten problem, nadaj uprawnienia zapisu katalogowi pluginu bądź ustaw inny katalog tymczasowy w ustawieniach pluginu."
|
551 |
+
|
552 |
+
#: core/core.php:2766
|
553 |
+
msgid "PHP version"
|
554 |
+
msgstr "Wersja PHP"
|
555 |
+
|
556 |
+
#: core/core.php:2772
|
557 |
+
msgid "MySQL version"
|
558 |
+
msgstr "Wersja MySQL"
|
559 |
+
|
560 |
+
#: core/core.php:2785
|
561 |
+
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
562 |
+
msgstr "Posiadasz starą wersję biblioteki cURL. Wykrywanie przekierowań może nie działać prawidłowo."
|
563 |
+
|
564 |
+
#: core/core.php:2797
|
565 |
+
#: core/core.php:2813
|
566 |
+
#: core/core.php:2818
|
567 |
+
msgid "Not installed"
|
568 |
+
msgstr "Nie zinstalowane"
|
569 |
+
|
570 |
+
#: core/core.php:2800
|
571 |
+
msgid "CURL version"
|
572 |
+
msgstr "Wersja cURL"
|
573 |
+
|
574 |
+
#: core/core.php:2806
|
575 |
+
msgid "Installed"
|
576 |
+
msgstr "Zainstalowane"
|
577 |
+
|
578 |
+
#: core/core.php:2819
|
579 |
+
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
580 |
+
msgstr "Aby plugin działał, musisz mieć zainstalowany cURL lub Snoopy"
|
581 |
+
|
582 |
+
#: core/core.php:2830
|
583 |
+
msgid "On"
|
584 |
+
msgstr "Włączony"
|
585 |
+
|
586 |
+
#: core/core.php:2831
|
587 |
+
msgid "Redirects may be detected as broken links when safe_mode is on."
|
588 |
+
msgstr "Przekierowania mogą nie zostać wykryte, ponieważ włączony jest safe_mode."
|
589 |
+
|
590 |
+
#: core/core.php:2836
|
591 |
+
#: core/core.php:2850
|
592 |
+
msgid "Off"
|
593 |
+
msgstr "Wyłączony"
|
594 |
+
|
595 |
+
#: core/core.php:2844
|
596 |
+
#, php-format
|
597 |
+
msgid "On ( %s )"
|
598 |
+
msgstr "Włączony ( %s )"
|
599 |
+
|
600 |
+
#: core/core.php:2845
|
601 |
+
msgid "Redirects may be detected as broken links when open_basedir is on."
|
602 |
+
msgstr "Przekierowania mogą nie zostać wykryte, ponieważ włączony jest open_basedir."
|
603 |
+
|
604 |
+
#: core/core.php:2864
|
605 |
+
msgid "Can't create a lockfile. Please specify a custom temporary directory."
|
606 |
+
msgstr "Nie można utworzyć pliku \"lockfile\". Ustaw własny katalog tymczasowy."
|
607 |
+
|
608 |
+
#: core/core.php:2888
|
609 |
+
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
610 |
+
msgstr "Jeśli ta wartość wynosi zero nawet po kilku odświeżeniach strony, prawdopodobnie mamy do czynienia z błędem."
|
611 |
+
|
612 |
+
#: core/core.php:2959
|
613 |
+
#, php-format
|
614 |
+
msgid "[%s] Broken links detected"
|
615 |
+
msgstr "[%s] Wykryto niedziałające linki"
|
616 |
+
|
617 |
+
#: core/core.php:2965
|
618 |
+
#, php-format
|
619 |
+
msgid "Broken Link Checker has detected %d new broken link on your site."
|
620 |
+
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
621 |
+
msgstr[0] "Broken Link Checker wykrył %d nowy niedziałający link na Twojej stronie."
|
622 |
+
msgstr[1] "Broken Link Checker wykrył nowe niedziałające linki na Twojej stronie: %d"
|
623 |
+
|
624 |
+
#: core/core.php:2980
|
625 |
+
#, php-format
|
626 |
+
msgid "Here's a list of the first %d broken links:"
|
627 |
+
msgid_plural "Here's a list of the first %d broken links:"
|
628 |
+
msgstr[0] "Lista z %d nowym niedziałającym linkiem:"
|
629 |
+
msgstr[1] "Lista z %d nowymi niedziałającymi linkami:"
|
630 |
+
|
631 |
+
#: core/core.php:2988
|
632 |
+
msgid "Here's a list of the new broken links: "
|
633 |
+
msgstr "Lista nowych niedziałających linków: "
|
634 |
+
|
635 |
+
#: core/core.php:3000
|
636 |
+
#, php-format
|
637 |
+
msgid "Link text : %s"
|
638 |
+
msgstr "Tekst linka: %s"
|
639 |
+
|
640 |
+
#: core/core.php:3001
|
641 |
+
#, php-format
|
642 |
+
msgid "Link URL : <a href=\"%s\">%s</a>"
|
643 |
+
msgstr "URL linka: <a href=\"%s\">%s</a>"
|
644 |
+
|
645 |
+
#: core/core.php:3002
|
646 |
+
#, php-format
|
647 |
+
msgid "Source : %s"
|
648 |
+
msgstr "Źródło: %s"
|
649 |
+
|
650 |
+
#: core/core.php:3016
|
651 |
+
msgid "You can see all broken links here:"
|
652 |
+
msgstr "Lista wszystkich niedziałających linków:"
|
653 |
+
|
654 |
+
#: core/init.php:236
|
655 |
+
msgid "Once Weekly"
|
656 |
+
msgstr "Raz na tydzień"
|
657 |
+
|
658 |
+
#: core/init.php:242
|
659 |
+
msgid "Twice a Month"
|
660 |
+
msgstr "Dwa razy na miesiąc"
|
661 |
+
|
662 |
+
#: core/init.php:309
|
663 |
+
msgid "Broken Link Checker installation failed"
|
664 |
+
msgstr "Instalacja Broken Link Checkera nie powiodła się"
|
665 |
+
|
666 |
+
#: includes/admin/db-upgrade.php:95
|
667 |
+
#, php-format
|
668 |
+
msgid "Failed to delete old DB tables. Database error : %s"
|
669 |
+
msgstr "Nie udało się usunąć starych tabel bazy danych. Błąd: %s"
|
670 |
+
|
671 |
+
#: includes/admin/links-page-js.php:58
|
672 |
+
#: includes/admin/links-page-js.php:301
|
673 |
+
msgid "Wait..."
|
674 |
+
msgstr "Czekaj..."
|
675 |
+
|
676 |
+
#: includes/admin/links-page-js.php:99
|
677 |
+
#: includes/admin/table-printer.php:592
|
678 |
+
msgid "Not broken"
|
679 |
+
msgstr "Działający"
|
680 |
+
|
681 |
+
#: includes/admin/links-page-js.php:213
|
682 |
+
#, php-format
|
683 |
+
msgid "%d instances of the link were successfully modified."
|
684 |
+
msgstr "%d wystąpień linka zosta pomyślnie zmodyfikowanych"
|
685 |
+
|
686 |
+
#: includes/admin/links-page-js.php:219
|
687 |
+
#, php-format
|
688 |
+
msgid "However, %d instances couldn't be edited and still point to the old URL."
|
689 |
+
msgstr "Jednakże, %d wystąpień nie mogło został edytowanych i nadal prowadzą do starego URLa."
|
690 |
+
|
691 |
+
#: includes/admin/links-page-js.php:225
|
692 |
+
msgid "The link could not be modified."
|
693 |
+
msgstr "Link nie mógł zostać zmodyfikowany."
|
694 |
+
|
695 |
+
#: includes/admin/links-page-js.php:228
|
696 |
+
#: includes/admin/links-page-js.php:353
|
697 |
+
msgid "The following error(s) occured :"
|
698 |
+
msgstr "Wystąpiły następujące błedy:"
|
699 |
+
|
700 |
+
#: includes/admin/links-page-js.php:339
|
701 |
+
#, php-format
|
702 |
+
msgid "%d instances of the link were successfully unlinked."
|
703 |
+
msgstr "%d wystąpień linka zostało pomyślnie odlinkowanych"
|
704 |
+
|
705 |
+
#: includes/admin/links-page-js.php:345
|
706 |
+
#, php-format
|
707 |
+
msgid "However, %d instances couldn't be removed."
|
708 |
+
msgstr "Jednakże, %d wystąpień nie można było usunąć"
|
709 |
+
|
710 |
+
#: includes/admin/links-page-js.php:350
|
711 |
+
msgid "The plugin failed to remove the link."
|
712 |
+
msgstr "Nie udało się usunąć linku"
|
713 |
+
|
714 |
+
#: includes/admin/links-page-js.php:361
|
715 |
+
#: includes/admin/table-printer.php:237
|
716 |
+
#: includes/admin/table-printer.php:586
|
717 |
+
msgid "Unlink"
|
718 |
+
msgstr "Odlinkuj"
|
719 |
+
|
720 |
+
#: includes/admin/links-page-js.php:405
|
721 |
+
msgid "Enter a name for the new custom filter"
|
722 |
+
msgstr "Podaj nazwę dla nowego filtra"
|
723 |
+
|
724 |
+
#: includes/admin/links-page-js.php:416
|
725 |
+
msgid ""
|
726 |
+
"You are about to delete the current filter.\n"
|
727 |
+
"'Cancel' to stop, 'OK' to delete"
|
728 |
+
msgstr ""
|
729 |
+
"Masz zamiar usunąć bieżący filtr.\n"
|
730 |
+
"'Anuluj' aby przerwać, 'OK' aby usunąć"
|
731 |
+
|
732 |
+
#: includes/admin/links-page-js.php:439
|
733 |
+
msgid ""
|
734 |
+
"Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
|
735 |
+
"'Cancel' to stop, 'OK' to delete"
|
736 |
+
msgstr ""
|
737 |
+
"Czy na pewno usunąć wszystkie wpisy, zakładki i inne rzeczy, zawierające wybrane linki? Nie da się ich później przywrócić.\n"
|
738 |
+
"'Anuluj' aby przerwać, 'OK' aby usunąć"
|
739 |
+
|
740 |
+
#: includes/admin/links-page-js.php:449
|
741 |
+
msgid ""
|
742 |
+
"Are you sure you want to remove the selected links? This action can't be undone.\n"
|
743 |
+
"'Cancel' to stop, 'OK' to remove"
|
744 |
+
msgstr ""
|
745 |
+
"Czy na pewno usunąć zaznaczone linki? Nie da się je później przywrócić.\n"
|
746 |
+
"'Anuluj' aby przerwać, 'OK' aby usunąć"
|
747 |
+
|
748 |
+
#: includes/admin/links-page-js.php:558
|
749 |
+
msgid "Enter a search string first."
|
750 |
+
msgstr "Najpiew podaj szukany ciąg znaków"
|
751 |
+
|
752 |
+
#: includes/admin/links-page-js.php:565
|
753 |
+
msgid "Select one or more links to edit."
|
754 |
+
msgstr "Wybierz jeden lub więcej linków o edycji"
|
755 |
+
|
756 |
+
#: includes/admin/options-page-js.php:54
|
757 |
+
msgid "Hide debug info"
|
758 |
+
msgstr "Ukryj informacje debug"
|
759 |
+
|
760 |
+
#: includes/admin/search-form.php:16
|
761 |
+
msgid "Save This Search As a Filter"
|
762 |
+
msgstr "Zapisz to wyszukania jako Filtr"
|
763 |
+
|
764 |
+
#: includes/admin/search-form.php:26
|
765 |
+
msgid "Delete This Filter"
|
766 |
+
msgstr "Usuń ten filtr"
|
767 |
+
|
768 |
+
#: includes/admin/search-form.php:32
|
769 |
+
#: includes/link-query.php:53
|
770 |
+
msgid "Search"
|
771 |
+
msgstr "Szukaj"
|
772 |
+
|
773 |
+
#: includes/admin/search-form.php:42
|
774 |
+
msgid "Link text"
|
775 |
+
msgstr "Tekst linku"
|
776 |
+
|
777 |
+
#: includes/admin/search-form.php:45
|
778 |
+
#: includes/admin/table-printer.php:173
|
779 |
+
msgid "URL"
|
780 |
+
msgstr "URL"
|
781 |
+
|
782 |
+
#: includes/admin/search-form.php:48
|
783 |
+
#: includes/admin/table-printer.php:460
|
784 |
+
msgid "HTTP code"
|
785 |
+
msgstr "Kod HTTP"
|
786 |
+
|
787 |
+
#: includes/admin/search-form.php:51
|
788 |
+
msgid "Link status"
|
789 |
+
msgstr "Status linku"
|
790 |
+
|
791 |
+
#: includes/admin/search-form.php:68
|
792 |
+
#: includes/admin/search-form.php:85
|
793 |
+
msgid "Link type"
|
794 |
+
msgstr "Typ linku"
|
795 |
+
|
796 |
+
#: includes/admin/search-form.php:70
|
797 |
+
msgid "Any"
|
798 |
+
msgstr "Dowolny"
|
799 |
+
|
800 |
+
#: includes/admin/search-form.php:74
|
801 |
+
msgid "Links used in"
|
802 |
+
msgstr "Linki użyte w"
|
803 |
+
|
804 |
+
#: includes/admin/search-form.php:112
|
805 |
+
msgid "Search Links"
|
806 |
+
msgstr "Przeszukaj linki"
|
807 |
+
|
808 |
+
#: includes/admin/search-form.php:113
|
809 |
+
#: includes/admin/table-printer.php:318
|
810 |
+
#: includes/admin/table-printer.php:600
|
811 |
+
#: includes/admin/table-printer.php:606
|
812 |
+
msgid "Cancel"
|
813 |
+
msgstr "Anuluj"
|
814 |
+
|
815 |
+
#: includes/admin/table-printer.php:150
|
816 |
+
msgid "Compact View"
|
817 |
+
msgstr "Zwięźle"
|
818 |
+
|
819 |
+
#: includes/admin/table-printer.php:151
|
820 |
+
msgid "Detailed View"
|
821 |
+
msgstr "Szczegółowo"
|
822 |
+
|
823 |
+
#: includes/admin/table-printer.php:178
|
824 |
+
msgid "Source"
|
825 |
+
msgstr "Źródło"
|
826 |
+
|
827 |
+
#: includes/admin/table-printer.php:184
|
828 |
+
msgid "Link Text"
|
829 |
+
msgstr "Tekst linka"
|
830 |
+
|
831 |
+
#: includes/admin/table-printer.php:232
|
832 |
+
msgid "Bulk Actions"
|
833 |
+
msgstr "Masowe działania"
|
834 |
+
|
835 |
+
#: includes/admin/table-printer.php:233
|
836 |
+
#: includes/admin/table-printer.php:583
|
837 |
+
msgid "Edit URL"
|
838 |
+
msgstr "Edytuj URL"
|
839 |
+
|
840 |
+
#: includes/admin/table-printer.php:234
|
841 |
+
msgid "Recheck"
|
842 |
+
msgstr "Sprawdź ponownie"
|
843 |
+
|
844 |
+
#: includes/admin/table-printer.php:235
|
845 |
+
msgid "Fix redirects"
|
846 |
+
msgstr "Napraw przekierowania"
|
847 |
+
|
848 |
+
#: includes/admin/table-printer.php:236
|
849 |
+
msgid "Mark as not broken"
|
850 |
+
msgstr "Oznacz jako działający"
|
851 |
+
|
852 |
+
#: includes/admin/table-printer.php:240
|
853 |
+
msgid "Move sources to Trash"
|
854 |
+
msgstr "Przenieś źródła do Kosza"
|
855 |
+
|
856 |
+
#: includes/admin/table-printer.php:242
|
857 |
+
msgid "Delete sources"
|
858 |
+
msgstr "Usuń źródła"
|
859 |
+
|
860 |
+
#: includes/admin/table-printer.php:262
|
861 |
+
msgid "«"
|
862 |
+
msgstr "«"
|
863 |
+
|
864 |
+
#: includes/admin/table-printer.php:263
|
865 |
+
msgid "»"
|
866 |
+
msgstr "»"
|
867 |
+
|
868 |
+
#: includes/admin/table-printer.php:271
|
869 |
+
#, php-format
|
870 |
+
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
871 |
+
msgstr "Wyświetlanie %s–%s z <span class=\"current-link-count\">%s</span>"
|
872 |
+
|
873 |
+
#: includes/admin/table-printer.php:294
|
874 |
+
msgid "Bulk Edit URLs"
|
875 |
+
msgstr "Masowa edycja URLi"
|
876 |
+
|
877 |
+
#: includes/admin/table-printer.php:296
|
878 |
+
msgid "Find"
|
879 |
+
msgstr "Znajdź"
|
880 |
+
|
881 |
+
#: includes/admin/table-printer.php:300
|
882 |
+
msgid "Replace with"
|
883 |
+
msgstr "Zamień na"
|
884 |
+
|
885 |
+
#: includes/admin/table-printer.php:308
|
886 |
+
msgid "Case sensitive"
|
887 |
+
msgstr "Uwzgl. wielkość liter"
|
888 |
+
|
889 |
+
#: includes/admin/table-printer.php:312
|
890 |
+
msgid "Regular expression"
|
891 |
+
msgstr "Wyrażenie regularne"
|
892 |
+
|
893 |
+
#: includes/admin/table-printer.php:320
|
894 |
+
msgid "Update"
|
895 |
+
msgstr "Zaktualizuj"
|
896 |
+
|
897 |
+
#: includes/admin/table-printer.php:445
|
898 |
+
msgid "Post published on"
|
899 |
+
msgstr "Data publikacji wpisu"
|
900 |
+
|
901 |
+
#: includes/admin/table-printer.php:450
|
902 |
+
msgid "Link last checked"
|
903 |
+
msgstr "Link ostatnio sprawdzony"
|
904 |
+
|
905 |
+
#: includes/admin/table-printer.php:454
|
906 |
+
msgid "Never"
|
907 |
+
msgstr "Nigdy"
|
908 |
+
|
909 |
+
#: includes/admin/table-printer.php:465
|
910 |
+
msgid "Response time"
|
911 |
+
msgstr "Czas odpowiedzi"
|
912 |
+
|
913 |
+
#: includes/admin/table-printer.php:467
|
914 |
+
#, php-format
|
915 |
+
msgid "%2.3f seconds"
|
916 |
+
msgstr "%2.3f sekund"
|
917 |
+
|
918 |
+
#: includes/admin/table-printer.php:470
|
919 |
+
msgid "Final URL"
|
920 |
+
msgstr "Docelowy URL"
|
921 |
+
|
922 |
+
#: includes/admin/table-printer.php:475
|
923 |
+
msgid "Redirect count"
|
924 |
+
msgstr "Ilość przekierować"
|
925 |
+
|
926 |
+
#: includes/admin/table-printer.php:480
|
927 |
+
msgid "Instance count"
|
928 |
+
msgstr "Licznik"
|
929 |
+
|
930 |
+
#: includes/admin/table-printer.php:489
|
931 |
+
#, php-format
|
932 |
+
msgid "This link has failed %d time."
|
933 |
+
msgid_plural "This link has failed %d times."
|
934 |
+
msgstr[0] "Ten link nie działał %d raz."
|
935 |
+
msgstr[1] "Ten link nie działał %d razy."
|
936 |
+
|
937 |
+
#: includes/admin/table-printer.php:497
|
938 |
+
#, php-format
|
939 |
+
msgid "This link has been broken for %s."
|
940 |
+
msgstr "Ten link nie działa przez %s"
|
941 |
+
|
942 |
+
#: includes/admin/table-printer.php:508
|
943 |
+
msgid "Log"
|
944 |
+
msgstr "Log"
|
945 |
+
|
946 |
+
#: includes/admin/table-printer.php:529
|
947 |
+
msgid "Show more info about this link"
|
948 |
+
msgstr "Pokaż więcej informacji o tym linku"
|
949 |
+
|
950 |
+
#: includes/admin/table-printer.php:547
|
951 |
+
msgctxt "checked how long ago"
|
952 |
+
msgid "Checked"
|
953 |
+
msgstr "Sprawdzony"
|
954 |
+
|
955 |
+
#: includes/admin/table-printer.php:563
|
956 |
+
msgid "Broken for"
|
957 |
+
msgstr "Niedziałający przez"
|
958 |
+
|
959 |
+
#: includes/admin/table-printer.php:583
|
960 |
+
msgid "Edit link URL"
|
961 |
+
msgstr "Edytuj URL linka"
|
962 |
+
|
963 |
+
#: includes/admin/table-printer.php:585
|
964 |
+
msgid "Remove this link from all posts"
|
965 |
+
msgstr "Usuń ten link ze wszyskich wpisów"
|
966 |
+
|
967 |
+
#: includes/admin/table-printer.php:591
|
968 |
+
msgid "Remove this link from the list of broken links and mark it as valid"
|
969 |
+
msgstr "Usuń ten link z listy niedziałających linków i oznacz jako poprawny"
|
970 |
+
|
971 |
+
#: includes/admin/table-printer.php:600
|
972 |
+
msgid "Cancel URL editing"
|
973 |
+
msgstr "Anuluj edycję URLa"
|
974 |
+
|
975 |
+
#: includes/admin/table-printer.php:607
|
976 |
+
msgid "Update URL"
|
977 |
+
msgstr "Zaktualizuj URL"
|
978 |
+
|
979 |
+
#: includes/admin/table-printer.php:629
|
980 |
+
msgid "[An orphaned link! This is a bug.]"
|
981 |
+
msgstr "[Porzucony link! To jest bug.]"
|
982 |
+
|
983 |
+
#: includes/any-post.php:398
|
984 |
+
#: modules/containers/blogroll.php:46
|
985 |
+
#: modules/containers/comment.php:153
|
986 |
+
#: modules/containers/custom_field.php:197
|
987 |
+
msgid "Edit"
|
988 |
+
msgstr "Edytuj"
|
989 |
+
|
990 |
+
#: includes/any-post.php:406
|
991 |
+
#: modules/containers/custom_field.php:203
|
992 |
+
msgid "Move this item to the Trash"
|
993 |
+
msgstr "Przenieś to do Kosza"
|
994 |
+
|
995 |
+
#: includes/any-post.php:408
|
996 |
+
#: modules/containers/custom_field.php:205
|
997 |
+
msgid "Trash"
|
998 |
+
msgstr "Kosz"
|
999 |
+
|
1000 |
+
#: includes/any-post.php:413
|
1001 |
+
#: modules/containers/custom_field.php:210
|
1002 |
+
msgid "Delete this item permanently"
|
1003 |
+
msgstr "Usuń to nieodwracalnie"
|
1004 |
+
|
1005 |
+
#: includes/any-post.php:415
|
1006 |
+
#: modules/containers/blogroll.php:47
|
1007 |
+
#: modules/containers/custom_field.php:212
|
1008 |
+
msgid "Delete"
|
1009 |
+
msgstr "Usuń"
|
1010 |
+
|
1011 |
+
#: includes/any-post.php:428
|
1012 |
+
#, php-format
|
1013 |
+
msgid "Preview “%s”"
|
1014 |
+
msgstr "Podgląd “%s”"
|
1015 |
+
|
1016 |
+
#: includes/any-post.php:429
|
1017 |
+
msgid "Preview"
|
1018 |
+
msgstr "Podgląd"
|
1019 |
+
|
1020 |
+
#: includes/any-post.php:436
|
1021 |
+
#, php-format
|
1022 |
+
msgid "View “%s”"
|
1023 |
+
msgstr "Pokaż “%s”"
|
1024 |
+
|
1025 |
+
#: includes/any-post.php:437
|
1026 |
+
#: modules/containers/comment.php:166
|
1027 |
+
#: modules/containers/custom_field.php:217
|
1028 |
+
msgid "View"
|
1029 |
+
msgstr "Pokaż"
|
1030 |
+
|
1031 |
+
#: includes/any-post.php:456
|
1032 |
+
#: modules/containers/custom_field.php:197
|
1033 |
+
msgid "Edit this item"
|
1034 |
+
msgstr "Edytuj to"
|
1035 |
+
|
1036 |
+
#: includes/any-post.php:520
|
1037 |
+
#: modules/containers/blogroll.php:83
|
1038 |
+
#: modules/containers/comment.php:43
|
1039 |
+
msgid "Nothing to update"
|
1040 |
+
msgstr "Brak rzeczy do aktualizacji"
|
1041 |
+
|
1042 |
+
#: includes/any-post.php:530
|
1043 |
+
#, php-format
|
1044 |
+
msgid "Updating post %d failed"
|
1045 |
+
msgstr "Nie udało się zaktualizować wpisu %d"
|
1046 |
+
|
1047 |
+
#: includes/any-post.php:565
|
1048 |
+
#: modules/containers/custom_field.php:284
|
1049 |
+
#, php-format
|
1050 |
+
msgid "Failed to delete post \"%s\" (%d)"
|
1051 |
+
msgstr "Nie udało się usunąć wpisu \"%s\" (%d)"
|
1052 |
+
|
1053 |
+
#: includes/any-post.php:584
|
1054 |
+
#: modules/containers/custom_field.php:303
|
1055 |
+
#, php-format
|
1056 |
+
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
1057 |
+
msgstr "Nie udało się przenieść wpisu \"%s\" (%d) do Kosza, ponieważ ta funkcja została wyłączona"
|
1058 |
+
|
1059 |
+
#: includes/any-post.php:604
|
1060 |
+
#: modules/containers/custom_field.php:322
|
1061 |
+
#, php-format
|
1062 |
+
msgid "Failed to move post \"%s\" (%d) to the trash"
|
1063 |
+
msgstr "Nie udało się przenieść wpisu \"%s\" (%d) do Kosza"
|
1064 |
+
|
1065 |
+
#: includes/any-post.php:712
|
1066 |
+
#, php-format
|
1067 |
+
msgid "%d post deleted."
|
1068 |
+
msgid_plural "%d posts deleted."
|
1069 |
+
msgstr[0] "%d wpis usunięty."
|
1070 |
+
msgstr[1] "Wpisów usuniętych: %d"
|
1071 |
+
|
1072 |
+
#: includes/any-post.php:714
|
1073 |
+
#, php-format
|
1074 |
+
msgid "%d page deleted."
|
1075 |
+
msgid_plural "%d pages deleted."
|
1076 |
+
msgstr[0] "%d strona usunięta."
|
1077 |
+
msgstr[1] "Usuniętych stron: %d"
|
1078 |
+
|
1079 |
+
#: includes/any-post.php:716
|
1080 |
+
#, php-format
|
1081 |
+
msgid "%d \"%s\" deleted."
|
1082 |
+
msgid_plural "%d \"%s\" deleted."
|
1083 |
+
msgstr[0] "Usunięto %d \"%s\""
|
1084 |
+
msgstr[1] "Usunięto %d \"%s\""
|
1085 |
+
|
1086 |
+
#: includes/any-post.php:735
|
1087 |
+
#, php-format
|
1088 |
+
msgid "%d post moved to the Trash."
|
1089 |
+
msgid_plural "%d posts moved to the Trash."
|
1090 |
+
msgstr[0] "%d wpis przeniesiono do Kosza."
|
1091 |
+
msgstr[1] "Wpisów przeniesionych do Kosza: %d"
|
1092 |
+
|
1093 |
+
#: includes/any-post.php:737
|
1094 |
+
#, php-format
|
1095 |
+
msgid "%d page moved to the Trash."
|
1096 |
+
msgid_plural "%d pages moved to the Trash."
|
1097 |
+
msgstr[0] "%d strona przeniesiona do Kosza."
|
1098 |
+
msgstr[1] "Stron przeniesionych do Kosza: %d"
|
1099 |
+
|
1100 |
+
#: includes/any-post.php:739
|
1101 |
+
#, php-format
|
1102 |
+
msgid "%d \"%s\" moved to the Trash."
|
1103 |
+
msgid_plural "%d \"%s\" moved to the Trash."
|
1104 |
+
msgstr[0] "%d \"%s\" przeniesiono do Kosza."
|
1105 |
+
msgstr[1] "Przeniesiono do Kosza: %d \"%s\""
|
1106 |
+
|
1107 |
+
#: includes/containers.php:122
|
1108 |
+
#, php-format
|
1109 |
+
msgid "%d '%s' has been deleted"
|
1110 |
+
msgid_plural "%d '%s' have been deleted"
|
1111 |
+
msgstr[0] "%d '%s' został usunięty"
|
1112 |
+
msgstr[1] "Usuniętych: %d '%s'"
|
1113 |
+
|
1114 |
+
#: includes/containers.php:882
|
1115 |
+
#: includes/containers.php:900
|
1116 |
+
#, php-format
|
1117 |
+
msgid "Container type '%s' not recognized"
|
1118 |
+
msgstr "Nie rozpoznano typu kontenera '%s'"
|
1119 |
+
|
1120 |
+
#: includes/extra-strings.php:2
|
1121 |
+
msgctxt "module name"
|
1122 |
+
msgid "Basic HTTP"
|
1123 |
+
msgstr "Podstawowy HTTP"
|
1124 |
+
|
1125 |
+
#: includes/extra-strings.php:3
|
1126 |
+
msgctxt "module name"
|
1127 |
+
msgid "Blogroll items"
|
1128 |
+
msgstr "Pozycje z Blogrolla"
|
1129 |
+
|
1130 |
+
#: includes/extra-strings.php:4
|
1131 |
+
msgctxt "module name"
|
1132 |
+
msgid "Comments"
|
1133 |
+
msgstr "Komentarze"
|
1134 |
+
|
1135 |
+
#: includes/extra-strings.php:5
|
1136 |
+
msgctxt "module name"
|
1137 |
+
msgid "Custom fields"
|
1138 |
+
msgstr "Własne pola"
|
1139 |
+
|
1140 |
+
#: includes/extra-strings.php:6
|
1141 |
+
msgctxt "module name"
|
1142 |
+
msgid "Embedded DailyMotion videos"
|
1143 |
+
msgstr "Załączone filmiki DailyMotion"
|
1144 |
+
|
1145 |
+
#: includes/extra-strings.php:7
|
1146 |
+
msgctxt "module name"
|
1147 |
+
msgid "Embedded Vimeo videos"
|
1148 |
+
msgstr "Załączone filmiki Vimeo"
|
1149 |
+
|
1150 |
+
#: includes/extra-strings.php:8
|
1151 |
+
msgctxt "module name"
|
1152 |
+
msgid "Embedded YouTube videos"
|
1153 |
+
msgstr "Załączone filmiki YouTube"
|
1154 |
+
|
1155 |
+
#: includes/extra-strings.php:9
|
1156 |
+
msgctxt "module name"
|
1157 |
+
msgid "HTML images"
|
1158 |
+
msgstr "Obrazki HTML"
|
1159 |
+
|
1160 |
+
#: includes/extra-strings.php:10
|
1161 |
+
msgctxt "module name"
|
1162 |
+
msgid "HTML links"
|
1163 |
+
msgstr "Linki HTML"
|
1164 |
+
|
1165 |
+
#: includes/extra-strings.php:11
|
1166 |
+
msgctxt "module name"
|
1167 |
+
msgid "MediaFire API"
|
1168 |
+
msgstr "API MediaFire"
|
1169 |
+
|
1170 |
+
#: includes/extra-strings.php:12
|
1171 |
+
msgctxt "module name"
|
1172 |
+
msgid "MegaUpload API"
|
1173 |
+
msgstr "API MegaUpload"
|
1174 |
+
|
1175 |
+
#: includes/extra-strings.php:13
|
1176 |
+
msgctxt "module name"
|
1177 |
+
msgid "Plaintext URLs"
|
1178 |
+
msgstr "URLe w czystym tekście"
|
1179 |
+
|
1180 |
+
#: includes/extra-strings.php:14
|
1181 |
+
msgctxt "module name"
|
1182 |
+
msgid "RapidShare API"
|
1183 |
+
msgstr "API Rapidshare"
|
1184 |
+
|
1185 |
+
#: includes/extra-strings.php:15
|
1186 |
+
msgctxt "module name"
|
1187 |
+
msgid "YouTube API"
|
1188 |
+
msgstr "API Youtube"
|
1189 |
+
|
1190 |
+
#: includes/extra-strings.php:16
|
1191 |
+
msgctxt "module name"
|
1192 |
+
msgid "Posts"
|
1193 |
+
msgstr "Wspiy"
|
1194 |
+
|
1195 |
+
#: includes/extra-strings.php:17
|
1196 |
+
msgctxt "module name"
|
1197 |
+
msgid "Pages"
|
1198 |
+
msgstr "Strony"
|
1199 |
+
|
1200 |
+
#: includes/instances.php:102
|
1201 |
+
#: includes/instances.php:158
|
1202 |
+
#, php-format
|
1203 |
+
msgid "Container %s[%d] not found"
|
1204 |
+
msgstr "Nie znaleziono kontenera %s[%d]"
|
1205 |
+
|
1206 |
+
#: includes/instances.php:111
|
1207 |
+
#: includes/instances.php:167
|
1208 |
+
#, php-format
|
1209 |
+
msgid "Parser '%s' not found."
|
1210 |
+
msgstr "Nie znaleziono parsera '%s'"
|
1211 |
+
|
1212 |
+
#: includes/link-query.php:25
|
1213 |
+
msgid "Broken"
|
1214 |
+
msgstr "Niedziałające"
|
1215 |
+
|
1216 |
+
#: includes/link-query.php:27
|
1217 |
+
msgid "No broken links found"
|
1218 |
+
msgstr "Nie znaleziono niedziałających linków"
|
1219 |
+
|
1220 |
+
#: includes/link-query.php:34
|
1221 |
+
msgid "Redirects"
|
1222 |
+
msgstr "Przekierowanie"
|
1223 |
+
|
1224 |
+
#: includes/link-query.php:35
|
1225 |
+
msgid "Redirected Links"
|
1226 |
+
msgstr "Przekierowane linki"
|
1227 |
+
|
1228 |
+
#: includes/link-query.php:36
|
1229 |
+
msgid "No redirects found"
|
1230 |
+
msgstr "Nie znaleziono przekierowań"
|
1231 |
+
|
1232 |
+
#: includes/link-query.php:44
|
1233 |
+
msgid "All"
|
1234 |
+
msgstr "Wszystkie"
|
1235 |
+
|
1236 |
+
#: includes/link-query.php:45
|
1237 |
+
msgid "Detected Links"
|
1238 |
+
msgstr "Wykryte linki"
|
1239 |
+
|
1240 |
+
#: includes/link-query.php:46
|
1241 |
+
msgid "No links found (yet)"
|
1242 |
+
msgstr "Nie znaleziono linków (na razie)"
|
1243 |
+
|
1244 |
+
#: includes/link-query.php:54
|
1245 |
+
msgid "Search Results"
|
1246 |
+
msgstr "Wyniki wyszykiwania"
|
1247 |
+
|
1248 |
+
#: includes/link-query.php:55
|
1249 |
+
#: includes/link-query.php:106
|
1250 |
+
msgid "No links found for your query"
|
1251 |
+
msgstr "Nie znaleziono linków dla tego zapytania"
|
1252 |
+
|
1253 |
+
#: includes/links.php:215
|
1254 |
+
msgid "The plugin script was terminated while trying to check the link."
|
1255 |
+
msgstr "Działanie pluginu zostało przerwane w czasie sprawdzania linku."
|
1256 |
+
|
1257 |
+
#: includes/links.php:261
|
1258 |
+
msgid "The plugin doesn't know how to check this type of link."
|
1259 |
+
msgstr "Plugin nie umie sprawdzać tego typu linków"
|
1260 |
+
|
1261 |
+
#: includes/links.php:349
|
1262 |
+
msgid "Link is valid."
|
1263 |
+
msgstr "Link jest poprawny"
|
1264 |
+
|
1265 |
+
#: includes/links.php:351
|
1266 |
+
msgid "Link is broken."
|
1267 |
+
msgstr "Link niedziałający."
|
1268 |
+
|
1269 |
+
#: includes/links.php:564
|
1270 |
+
#: includes/links.php:666
|
1271 |
+
#: includes/links.php:693
|
1272 |
+
msgid "Link is not valid"
|
1273 |
+
msgstr "Link nie jest poprawny"
|
1274 |
+
|
1275 |
+
#: includes/links.php:581
|
1276 |
+
msgid "This link can not be edited because it is not used anywhere on this site."
|
1277 |
+
msgstr "Ten link nie może być edytowany, ponieważ nie jest użyty nigdzie na stronie."
|
1278 |
+
|
1279 |
+
#: includes/links.php:607
|
1280 |
+
msgid "Failed to create a DB entry for the new URL."
|
1281 |
+
msgstr "Nie udało się utworzyć wpisu w bazie danych dla nowego URLa."
|
1282 |
+
|
1283 |
+
#: includes/links.php:673
|
1284 |
+
msgid "This link is not a redirect"
|
1285 |
+
msgstr "Ten link nie jest przekierowaniem"
|
1286 |
+
|
1287 |
+
#: includes/links.php:720
|
1288 |
+
#: includes/links.php:757
|
1289 |
+
msgid "Couldn't delete the link's database record"
|
1290 |
+
msgstr "Nie udało się usunąć linka z bazy danych"
|
1291 |
+
|
1292 |
+
#: includes/links.php:831
|
1293 |
+
msgctxt "link status"
|
1294 |
+
msgid "Unknown"
|
1295 |
+
msgstr "Nieznany"
|
1296 |
+
|
1297 |
+
#: includes/links.php:845
|
1298 |
+
#: modules/checkers/http.php:263
|
1299 |
+
msgid "Unknown Error"
|
1300 |
+
msgstr "Nieznany błąd"
|
1301 |
+
|
1302 |
+
#: includes/links.php:869
|
1303 |
+
msgid "Not checked"
|
1304 |
+
msgstr "Nie sprawdzono"
|
1305 |
+
|
1306 |
+
#: includes/links.php:872
|
1307 |
+
msgid "False positive"
|
1308 |
+
msgstr "Fałszywe alarmy"
|
1309 |
+
|
1310 |
+
#: includes/links.php:875
|
1311 |
+
msgctxt "link status"
|
1312 |
+
msgid "OK"
|
1313 |
+
msgstr "OK"
|
1314 |
+
|
1315 |
+
#: includes/module-manager.php:122
|
1316 |
+
#: includes/module-manager.php:139
|
1317 |
+
msgctxt "module name"
|
1318 |
+
msgid "Name"
|
1319 |
+
msgstr "Nazwa"
|
1320 |
+
|
1321 |
+
#: includes/parsers.php:109
|
1322 |
+
#, php-format
|
1323 |
+
msgid "Editing is not implemented in the '%s' parser"
|
1324 |
+
msgstr "Edytowanie nie jest zaimplementowane w parserze '%s'"
|
1325 |
+
|
1326 |
+
#: includes/parsers.php:124
|
1327 |
+
#, php-format
|
1328 |
+
msgid "Unlinking is not implemented in the '%s' parser"
|
1329 |
+
msgstr "Usuwanie linków nie jest zaimplementowane w parserze '%s'"
|
1330 |
+
|
1331 |
+
#: includes/utility-class.php:287
|
1332 |
+
#, php-format
|
1333 |
+
msgid "%d second"
|
1334 |
+
msgid_plural "%d seconds"
|
1335 |
+
msgstr[0] "%d sekunda"
|
1336 |
+
msgstr[1] "sekundy: %d"
|
1337 |
+
|
1338 |
+
#: includes/utility-class.php:288
|
1339 |
+
#, php-format
|
1340 |
+
msgid "%d second ago"
|
1341 |
+
msgid_plural "%d seconds ago"
|
1342 |
+
msgstr[0] "%d sekunda temu"
|
1343 |
+
msgstr[1] "Sekund temu: %d"
|
1344 |
+
|
1345 |
+
#: includes/utility-class.php:291
|
1346 |
+
#, php-format
|
1347 |
+
msgid "%d minute"
|
1348 |
+
msgid_plural "%d minutes"
|
1349 |
+
msgstr[0] "%d minuta"
|
1350 |
+
msgstr[1] "minuty: %d"
|
1351 |
+
|
1352 |
+
#: includes/utility-class.php:292
|
1353 |
+
#, php-format
|
1354 |
+
msgid "%d minute ago"
|
1355 |
+
msgid_plural "%d minutes ago"
|
1356 |
+
msgstr[0] "%d minutę temu"
|
1357 |
+
msgstr[1] "Minuty temu: %d"
|
1358 |
+
|
1359 |
+
#: includes/utility-class.php:295
|
1360 |
+
#, php-format
|
1361 |
+
msgid "%d hour"
|
1362 |
+
msgid_plural "%d hours"
|
1363 |
+
msgstr[0] "$ godzina"
|
1364 |
+
msgstr[1] "godziny: %d"
|
1365 |
+
|
1366 |
+
#: includes/utility-class.php:296
|
1367 |
+
#, php-format
|
1368 |
+
msgid "%d hour ago"
|
1369 |
+
msgid_plural "%d hours ago"
|
1370 |
+
msgstr[0] "%d godzinę temu"
|
1371 |
+
msgstr[1] "Godzin temu: %d"
|
1372 |
+
|
1373 |
+
#: includes/utility-class.php:299
|
1374 |
+
#, php-format
|
1375 |
+
msgid "%d day"
|
1376 |
+
msgid_plural "%d days"
|
1377 |
+
msgstr[0] "%d dzień"
|
1378 |
+
msgstr[1] "dni: %d"
|
1379 |
+
|
1380 |
+
#: includes/utility-class.php:300
|
1381 |
+
#, php-format
|
1382 |
+
msgid "%d day ago"
|
1383 |
+
msgid_plural "%d days ago"
|
1384 |
+
msgstr[0] "%d dzień temu"
|
1385 |
+
msgstr[1] "Dni temu: %d"
|
1386 |
+
|
1387 |
+
#: includes/utility-class.php:303
|
1388 |
+
#, php-format
|
1389 |
+
msgid "%d month"
|
1390 |
+
msgid_plural "%d months"
|
1391 |
+
msgstr[0] "%d miesiąc"
|
1392 |
+
msgstr[1] "miesięcy: %d"
|
1393 |
+
|
1394 |
+
#: includes/utility-class.php:304
|
1395 |
+
#, php-format
|
1396 |
+
msgid "%d month ago"
|
1397 |
+
msgid_plural "%d months ago"
|
1398 |
+
msgstr[0] "%d miesiąc tem"
|
1399 |
+
msgstr[1] "Miesięcy temu: %d"
|
1400 |
+
|
1401 |
+
#: modules/checkers/http.php:242
|
1402 |
+
msgid "Server Not Found"
|
1403 |
+
msgstr "Nie znaleziono serwera"
|
1404 |
+
|
1405 |
+
#: modules/checkers/http.php:257
|
1406 |
+
msgid "Connection Failed"
|
1407 |
+
msgstr "Błąd połączenia"
|
1408 |
+
|
1409 |
+
#: modules/checkers/http.php:292
|
1410 |
+
#: modules/checkers/http.php:362
|
1411 |
+
#, php-format
|
1412 |
+
msgid "HTTP code : %d"
|
1413 |
+
msgstr "Kod HTTP: %d"
|
1414 |
+
|
1415 |
+
#: modules/checkers/http.php:294
|
1416 |
+
#: modules/checkers/http.php:364
|
1417 |
+
msgid "(No response)"
|
1418 |
+
msgstr "(Brak odpowiedzi)"
|
1419 |
+
|
1420 |
+
#: modules/checkers/http.php:300
|
1421 |
+
msgid "Most likely the connection timed out or the domain doesn't exist."
|
1422 |
+
msgstr "Domena nie istnieje, albo serwer odpowiada za długo."
|
1423 |
+
|
1424 |
+
#: modules/checkers/http.php:371
|
1425 |
+
msgid "Request timed out."
|
1426 |
+
msgstr "Przekroczono czas połączenia."
|
1427 |
+
|
1428 |
+
#: modules/checkers/http.php:389
|
1429 |
+
msgid "Using Snoopy"
|
1430 |
+
msgstr "Używam Snoopy"
|
1431 |
+
|
1432 |
+
#: modules/containers/blogroll.php:21
|
1433 |
+
msgid "Bookmark"
|
1434 |
+
msgstr "Zakładka"
|
1435 |
+
|
1436 |
+
#: modules/containers/blogroll.php:27
|
1437 |
+
#: modules/containers/blogroll.php:46
|
1438 |
+
msgid "Edit this bookmark"
|
1439 |
+
msgstr "Edytuj zakładkę"
|
1440 |
+
|
1441 |
+
#: modules/containers/blogroll.php:47
|
1442 |
+
#, php-format
|
1443 |
+
msgid ""
|
1444 |
+
"You are about to delete this link '%s'\n"
|
1445 |
+
" 'Cancel' to stop, 'OK' to delete."
|
1446 |
+
msgstr ""
|
1447 |
+
"Masz zamiar usunąć linka '%s'\n"
|
1448 |
+
" 'Anuluj' aby przerwać, 'OK' aby usunąć."
|
1449 |
+
|
1450 |
+
#: modules/containers/blogroll.php:97
|
1451 |
+
#, php-format
|
1452 |
+
msgid "Updating bookmark %d failed"
|
1453 |
+
msgstr "Nie udało się zaktualizować zakładki %d"
|
1454 |
+
|
1455 |
+
#: modules/containers/blogroll.php:128
|
1456 |
+
#, php-format
|
1457 |
+
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
1458 |
+
msgstr "Nie udało się usunąć linka z blogorolla \"%s\" (%d)"
|
1459 |
+
|
1460 |
+
#: modules/containers/blogroll.php:299
|
1461 |
+
#, php-format
|
1462 |
+
msgid "%d blogroll link deleted."
|
1463 |
+
msgid_plural "%d blogroll links deleted."
|
1464 |
+
msgstr[0] "%d link usunięty z blogrolla"
|
1465 |
+
msgstr[1] "Usuniętych linków z blogrolla: %d"
|
1466 |
+
|
1467 |
+
#: modules/containers/comment.php:53
|
1468 |
+
#, php-format
|
1469 |
+
msgid "Updating comment %d failed"
|
1470 |
+
msgstr "Nie udało się zaktualizować komentarza %d"
|
1471 |
+
|
1472 |
+
#: modules/containers/comment.php:74
|
1473 |
+
#, php-format
|
1474 |
+
msgid "Failed to delete comment %d"
|
1475 |
+
msgstr "Nie udało się usunąć komentarza %d"
|
1476 |
+
|
1477 |
+
#: modules/containers/comment.php:95
|
1478 |
+
#, php-format
|
1479 |
+
msgid "Can't move comment %d to the trash"
|
1480 |
+
msgstr "Nie udało się przenieść komentarza %d do Kosza"
|
1481 |
+
|
1482 |
+
#: modules/containers/comment.php:153
|
1483 |
+
#: modules/containers/comment.php:195
|
1484 |
+
msgid "Edit comment"
|
1485 |
+
msgstr "Edytuj komentarz"
|
1486 |
+
|
1487 |
+
#: modules/containers/comment.php:160
|
1488 |
+
msgid "Delete Permanently"
|
1489 |
+
msgstr "Usuń nieodwracalnie"
|
1490 |
+
|
1491 |
+
#: modules/containers/comment.php:162
|
1492 |
+
msgid "Move this comment to the trash"
|
1493 |
+
msgstr "Przenieś ten komentarz do Kosza"
|
1494 |
+
|
1495 |
+
#: modules/containers/comment.php:162
|
1496 |
+
msgctxt "verb"
|
1497 |
+
msgid "Trash"
|
1498 |
+
msgstr "Kosz"
|
1499 |
+
|
1500 |
+
#: modules/containers/comment.php:166
|
1501 |
+
msgid "View comment"
|
1502 |
+
msgstr "Pokaż komentarz"
|
1503 |
+
|
1504 |
+
#: modules/containers/comment.php:183
|
1505 |
+
msgid "Comment"
|
1506 |
+
msgstr "Komentarz"
|
1507 |
+
|
1508 |
+
#: modules/containers/comment.php:372
|
1509 |
+
#, php-format
|
1510 |
+
msgid "%d comment has been deleted."
|
1511 |
+
msgid_plural "%d comments have been deleted."
|
1512 |
+
msgstr[0] "%d komentarz został usunięty."
|
1513 |
+
msgstr[1] "Usuniętych komentarzy: %d"
|
1514 |
+
|
1515 |
+
#: modules/containers/comment.php:391
|
1516 |
+
#, php-format
|
1517 |
+
msgid "%d comment moved to the Trash."
|
1518 |
+
msgid_plural "%d comments moved to the Trash."
|
1519 |
+
msgstr[0] "%d komentarz przeniesiony do Kosza"
|
1520 |
+
msgstr[1] "Komentarzy przeniesionych do Kosza: %d"
|
1521 |
+
|
1522 |
+
#: modules/containers/custom_field.php:84
|
1523 |
+
#, php-format
|
1524 |
+
msgid "Failed to update the meta field '%s' on %s [%d]"
|
1525 |
+
msgstr "Nie udało się zaktualizować pola meta '%s' dla %s [%d]"
|
1526 |
+
|
1527 |
+
#: modules/containers/custom_field.php:110
|
1528 |
+
#, php-format
|
1529 |
+
msgid "Failed to delete the meta field '%s' on %s [%d]"
|
1530 |
+
msgstr "Nie udało się usunąc pola meta '%s' dla %s [%d]"
|
1531 |
+
|
1532 |
+
#: modules/containers/custom_field.php:187
|
1533 |
+
msgid "Edit this post"
|
1534 |
+
msgstr "Edytuj wpis"
|
1535 |
+
|
1536 |
+
#: modules/containers/custom_field.php:217
|
1537 |
+
#, php-format
|
1538 |
+
msgid "View \"%s\""
|
1539 |
+
msgstr "Pokaż \"%s\""
|
1540 |
+
|
1541 |
+
#: modules/containers/dummy.php:34
|
1542 |
+
#: modules/containers/dummy.php:45
|
1543 |
+
#, php-format
|
1544 |
+
msgid "I don't know how to edit a '%s' [%d]."
|
1545 |
+
msgstr "Nie wiem jak edytować '%s' [%d]."
|
1546 |
+
|
1547 |
+
#: modules/parsers/image.php:156
|
1548 |
+
msgid "Image"
|
1549 |
+
msgstr "Obrazek"
|
1550 |
+
|
1551 |
+
#: modules/parsers/metadata.php:117
|
1552 |
+
msgid "Custom field"
|
1553 |
+
msgstr "Własne pola"
|
1554 |
+
|
1555 |
+
#. Plugin URI of the plugin/theme
|
1556 |
+
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1557 |
+
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1558 |
+
|
1559 |
+
#. Description of the plugin/theme
|
1560 |
+
msgid "Checks your blog for broken links and missing images and notifies you on the dashboard if any are found."
|
1561 |
+
msgstr "Sprawdza Twój blog pod kątem niedziałających linków, brakujących obrazków i informuje o tym na Kokpicie."
|
1562 |
+
|
1563 |
+
#. Author of the plugin/theme
|
1564 |
+
msgid "Janis Elsts"
|
1565 |
+
msgstr "Janis Elsts"
|
1566 |
+
|
1567 |
+
#. Author URI of the plugin/theme
|
1568 |
+
msgid "http://w-shadow.com/blog/"
|
1569 |
+
msgstr "http://w-shadow.com/blog/"
|
1570 |
+
|
modules/parsers/html_link.php
CHANGED
@@ -83,7 +83,7 @@ class blcHTMLLink extends blcParser {
|
|
83 |
|
84 |
//Skip invalid links (again)
|
85 |
if ( !$url || (strlen($url)<6) ) {
|
86 |
-
|
87 |
}
|
88 |
|
89 |
$text = strip_tags( $link['#link_text'] );
|
83 |
|
84 |
//Skip invalid links (again)
|
85 |
if ( !$url || (strlen($url)<6) ) {
|
86 |
+
return null;
|
87 |
}
|
88 |
|
89 |
$text = strip_tags( $link['#link_text'] );
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.1-alpha
|
7 |
-
Stable tag: 0.9.7.
|
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 |
|
@@ -52,6 +52,7 @@ You can also click on the contents of the "Status" or "Link Text" columns to get
|
|
52 |
* Hindi - [Outshine Solutions](http://outshinesolutions.com/)
|
53 |
* Italian - [Gianni Diurno](http://gidibao.net/index.php/portfolio/) and [Giacomo Ross](http://www.luxemozione.com/) (alternative)
|
54 |
* Japanese - [ningendesu](http://ningendesu.com/)
|
|
|
55 |
* Portuguese - [PedroDM](http://development.mowster.net/)
|
56 |
* Russian - [Anna Ozeritskaya](http://hweia.ru/)
|
57 |
* Spanish - [Neoshinji](http://blog.tuayudainformatica.com/traducciones-de-plugins-wordpress/)
|
@@ -82,6 +83,13 @@ To upgrade your installation
|
|
82 |
|
83 |
== Changelog ==
|
84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
= 0.9.7.1 =
|
86 |
* Updated German translation and fixed the corresponding credits link.
|
87 |
|
4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.1-alpha
|
7 |
+
Stable tag: 0.9.7.2
|
8 |
|
9 |
This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
|
10 |
|
52 |
* Hindi - [Outshine Solutions](http://outshinesolutions.com/)
|
53 |
* Italian - [Gianni Diurno](http://gidibao.net/index.php/portfolio/) and [Giacomo Ross](http://www.luxemozione.com/) (alternative)
|
54 |
* Japanese - [ningendesu](http://ningendesu.com/)
|
55 |
+
* Polish - [http://positionmaker.pl](http://positionmaker.pl/)
|
56 |
* Portuguese - [PedroDM](http://development.mowster.net/)
|
57 |
* Russian - [Anna Ozeritskaya](http://hweia.ru/)
|
58 |
* Spanish - [Neoshinji](http://blog.tuayudainformatica.com/traducciones-de-plugins-wordpress/)
|
83 |
|
84 |
== Changelog ==
|
85 |
|
86 |
+
= 0.9.7.2 =
|
87 |
+
* Added Polish translation.
|
88 |
+
* Updated Danish translation.
|
89 |
+
* Updated Italian translation.
|
90 |
+
* Fixed an uncommon "Cannot break/continue 1 level" error.
|
91 |
+
* Added a new user feedback survey (the link only shows up after you've used this version for at least two weeks).
|
92 |
+
|
93 |
= 0.9.7.1 =
|
94 |
* Updated German translation and fixed the corresponding credits link.
|
95 |
|