Version Description
- Added a Swedish translation.
- Fixed an encoding-related bug that caused some translated text on the "Broken Links" to show up as gibberish.
- Fixed a potential security vulnerability where the "Final URL" field was not sanitized.
- Fixed link text being truncated to 250 characters.
- Fixed the "Edit URL" function updating the link text even when the user left that field unchanged.
- Tested up to 4.2.1.
Download this release
Release Info
| Developer | whiteshadow |
| Plugin | |
| Version | 1.10.8 |
| Comparing to | |
| See all releases | |
Code changes from version 1.10.7 to 1.10.8
- broken-link-checker.php +1 -1
- core/init.php +1 -1
- includes/admin/db-schema.php +1 -1
- includes/admin/links-page-js.php +4 -3
- includes/admin/table-printer.php +1 -1
- includes/link-query.php +1 -1
- languages/broken-link-checker-sv_SE.mo +0 -0
- languages/broken-link-checker-sv_SE.po +1955 -0
- readme.txt +11 -2
broken-link-checker.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: Broken Link Checker
|
| 4 |
Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
|
| 5 |
Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
|
| 6 |
-
Version: 1.10.
|
| 7 |
Author: Janis Elsts
|
| 8 |
Author URI: http://w-shadow.com/
|
| 9 |
Text Domain: broken-link-checker
|
| 3 |
Plugin Name: Broken Link Checker
|
| 4 |
Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
|
| 5 |
Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
|
| 6 |
+
Version: 1.10.8
|
| 7 |
Author: Janis Elsts
|
| 8 |
Author URI: http://w-shadow.com/
|
| 9 |
Text Domain: broken-link-checker
|
core/init.php
CHANGED
|
@@ -46,7 +46,7 @@ define('BLC_FOR_EDITING', 'edit');
|
|
| 46 |
define('BLC_FOR_PARSING', 'parse');
|
| 47 |
define('BLC_FOR_DISPLAY', 'display');
|
| 48 |
|
| 49 |
-
define('BLC_DATABASE_VERSION',
|
| 50 |
|
| 51 |
/***********************************************
|
| 52 |
Configuration
|
| 46 |
define('BLC_FOR_PARSING', 'parse');
|
| 47 |
define('BLC_FOR_DISPLAY', 'display');
|
| 48 |
|
| 49 |
+
define('BLC_DATABASE_VERSION', 9);
|
| 50 |
|
| 51 |
/***********************************************
|
| 52 |
Configuration
|
includes/admin/db-schema.php
CHANGED
|
@@ -34,7 +34,7 @@ function blc_get_db_schema(){
|
|
| 34 |
`link_id` int(10) unsigned NOT NULL,
|
| 35 |
`container_id` int(10) unsigned NOT NULL,
|
| 36 |
`container_type` varchar(40) NOT NULL DEFAULT 'post',
|
| 37 |
-
`link_text`
|
| 38 |
`parser_type` varchar(40) NOT NULL DEFAULT 'link',
|
| 39 |
`container_field` varchar(250) NOT NULL DEFAULT '',
|
| 40 |
`link_context` varchar(250) NOT NULL DEFAULT '',
|
| 34 |
`link_id` int(10) unsigned NOT NULL,
|
| 35 |
`container_id` int(10) unsigned NOT NULL,
|
| 36 |
`container_type` varchar(40) NOT NULL DEFAULT 'post',
|
| 37 |
+
`link_text` text NOT NULL DEFAULT '',
|
| 38 |
`parser_type` varchar(40) NOT NULL DEFAULT 'link',
|
| 39 |
`container_field` varchar(250) NOT NULL DEFAULT '',
|
| 40 |
`link_context` varchar(250) NOT NULL DEFAULT '',
|
includes/admin/links-page-js.php
CHANGED
|
@@ -615,11 +615,12 @@ jQuery(function($){
|
|
| 615 |
}
|
| 616 |
|
| 617 |
var newLinkText = null,
|
| 618 |
-
linkTextField = editRow.find('.blc-link-text-field')
|
|
|
|
| 619 |
if (!linkTextField.prop('readonly')) {
|
| 620 |
newLinkText = linkTextField.val();
|
| 621 |
-
//Empty
|
| 622 |
-
if (newLinkText
|
| 623 |
newLinkText = null;
|
| 624 |
}
|
| 625 |
}
|
| 615 |
}
|
| 616 |
|
| 617 |
var newLinkText = null,
|
| 618 |
+
linkTextField = editRow.find('.blc-link-text-field'),
|
| 619 |
+
oldLinkText = master.data('link-text');
|
| 620 |
if (!linkTextField.prop('readonly')) {
|
| 621 |
newLinkText = linkTextField.val();
|
| 622 |
+
//Empty or identical to the original = leave the text unchanged.
|
| 623 |
+
if ((newLinkText === '') || (newLinkText === oldLinkText)) {
|
| 624 |
newLinkText = null;
|
| 625 |
}
|
| 626 |
}
|
includes/admin/table-printer.php
CHANGED
|
@@ -551,7 +551,7 @@ class blcTablePrinter {
|
|
| 551 |
|
| 552 |
<li><strong><?php _e('Final URL', 'broken-link-checker'); ?>:</strong>
|
| 553 |
<span class='final_url'><?php
|
| 554 |
-
print $link->final_url;
|
| 555 |
?></span></li>
|
| 556 |
|
| 557 |
<li><strong><?php _e('Redirect count', 'broken-link-checker'); ?>:</strong>
|
| 551 |
|
| 552 |
<li><strong><?php _e('Final URL', 'broken-link-checker'); ?>:</strong>
|
| 553 |
<span class='final_url'><?php
|
| 554 |
+
print esc_html($link->final_url);
|
| 555 |
?></span></li>
|
| 556 |
|
| 557 |
<li><strong><?php _e('Redirect count', 'broken-link-checker'); ?>:</strong>
|
includes/link-query.php
CHANGED
|
@@ -708,7 +708,7 @@ class blcLinkQuery {
|
|
| 708 |
"<li><a href='tools.php?page=view-broken-links&filter_id=%s' %s>%s</a> <span class='count'>(<span class='%s'>%d</span>)</span>",
|
| 709 |
esc_attr($filter),
|
| 710 |
$class,
|
| 711 |
-
|
| 712 |
$number_class,
|
| 713 |
$data['count']
|
| 714 |
);
|
| 708 |
"<li><a href='tools.php?page=view-broken-links&filter_id=%s' %s>%s</a> <span class='count'>(<span class='%s'>%d</span>)</span>",
|
| 709 |
esc_attr($filter),
|
| 710 |
$class,
|
| 711 |
+
esc_html($data['name']),
|
| 712 |
$number_class,
|
| 713 |
$data['count']
|
| 714 |
);
|
languages/broken-link-checker-sv_SE.mo
ADDED
|
Binary file
|
languages/broken-link-checker-sv_SE.po
ADDED
|
@@ -0,0 +1,1955 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
msgid ""
|
| 2 |
+
msgstr ""
|
| 3 |
+
"Project-Id-Version: Broken Link Checker v1.10.7\n"
|
| 4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
| 5 |
+
"POT-Creation-Date: 2014-11-25 11:57:14+00:00\n"
|
| 6 |
+
"PO-Revision-Date: 2015-04-26 18:38+0100\n"
|
| 7 |
+
"Last-Translator: P. E.\n"
|
| 8 |
+
"Language-Team: P. E.\n"
|
| 9 |
+
"Language: sv_SE\n"
|
| 10 |
+
"MIME-Version: 1.0\n"
|
| 11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 13 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
| 14 |
+
"X-Generator: Poedit 1.7.6\n"
|
| 15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
| 16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
| 17 |
+
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
| 18 |
+
"X-Poedit-Basepath: ../\n"
|
| 19 |
+
"X-Textdomain-Support: yes\n"
|
| 20 |
+
"X-Poedit-SearchPath-0: .\n"
|
| 21 |
+
|
| 22 |
+
#: core/core.php:156 includes/admin/links-page-js.php:44
|
| 23 |
+
msgid "Loading..."
|
| 24 |
+
msgstr "Laddar..."
|
| 25 |
+
|
| 26 |
+
#: core/core.php:180 includes/admin/options-page-js.php:18
|
| 27 |
+
msgid "[ Network error ]"
|
| 28 |
+
msgstr "[ Nätverksfel ]"
|
| 29 |
+
|
| 30 |
+
#: core/core.php:207
|
| 31 |
+
msgid "Automatically expand the widget if broken links have been detected"
|
| 32 |
+
msgstr "Expandera widgeten automatiskt om brutna länkar har hittats"
|
| 33 |
+
|
| 34 |
+
#: core/core.php:298
|
| 35 |
+
msgid "Link Checker Settings"
|
| 36 |
+
msgstr "Inställningar för länkkontroll"
|
| 37 |
+
|
| 38 |
+
#: core/core.php:299
|
| 39 |
+
msgid "Link Checker"
|
| 40 |
+
msgstr "Link Checker"
|
| 41 |
+
|
| 42 |
+
#: core/core.php:304 includes/link-query.php:37
|
| 43 |
+
msgid "Broken Links"
|
| 44 |
+
msgstr "Brutna länkar"
|
| 45 |
+
|
| 46 |
+
#: core/core.php:320
|
| 47 |
+
msgid "View Broken Links"
|
| 48 |
+
msgstr "Visa brutna länkar"
|
| 49 |
+
|
| 50 |
+
#: core/core.php:335
|
| 51 |
+
msgid "Feedback"
|
| 52 |
+
msgstr "Feedback"
|
| 53 |
+
|
| 54 |
+
#: core/core.php:343
|
| 55 |
+
msgid "Go to Broken Links"
|
| 56 |
+
msgstr "Gå till brutna länkar"
|
| 57 |
+
|
| 58 |
+
#: core/core.php:372
|
| 59 |
+
msgid "Settings"
|
| 60 |
+
msgstr "Inställningar"
|
| 61 |
+
|
| 62 |
+
#: core/core.php:401 includes/admin/table-printer.php:287
|
| 63 |
+
#: includes/admin/table-printer.php:678
|
| 64 |
+
msgid "Edit URL"
|
| 65 |
+
msgstr "Redigera URL"
|
| 66 |
+
|
| 67 |
+
#: core/core.php:402 includes/admin/links-page-js.php:699
|
| 68 |
+
#: includes/admin/table-printer.php:292 includes/admin/table-printer.php:681
|
| 69 |
+
msgid "Unlink"
|
| 70 |
+
msgstr "Avlänka"
|
| 71 |
+
|
| 72 |
+
#: core/core.php:403 includes/admin/links-page-js.php:110
|
| 73 |
+
#: includes/admin/table-printer.php:687
|
| 74 |
+
msgid "Not broken"
|
| 75 |
+
msgstr "Ej bruten"
|
| 76 |
+
|
| 77 |
+
#: core/core.php:404 includes/admin/table-printer.php:291
|
| 78 |
+
#: includes/admin/table-printer.php:695
|
| 79 |
+
msgid "Dismiss"
|
| 80 |
+
msgstr "Avvisa"
|
| 81 |
+
|
| 82 |
+
#: core/core.php:405 includes/admin/table-printer.php:288
|
| 83 |
+
#: includes/admin/table-printer.php:707
|
| 84 |
+
msgid "Recheck"
|
| 85 |
+
msgstr "Återkontrollera"
|
| 86 |
+
|
| 87 |
+
#: core/core.php:406 includes/admin/table-printer.php:715
|
| 88 |
+
msgctxt "link action; replace one redirect with a direct link"
|
| 89 |
+
msgid "Fix redirect"
|
| 90 |
+
msgstr "Fixa omdirigering"
|
| 91 |
+
|
| 92 |
+
#: core/core.php:626
|
| 93 |
+
msgid "Settings saved."
|
| 94 |
+
msgstr "Inställningar sparade."
|
| 95 |
+
|
| 96 |
+
#: core/core.php:632
|
| 97 |
+
msgid "Thank you for your donation!"
|
| 98 |
+
msgstr "Tack för din donation!"
|
| 99 |
+
|
| 100 |
+
#: core/core.php:640
|
| 101 |
+
msgid "Complete site recheck started."
|
| 102 |
+
msgstr "Fullständig återkontroll av webbplatsen startad."
|
| 103 |
+
|
| 104 |
+
#: core/core.php:662
|
| 105 |
+
msgid "General"
|
| 106 |
+
msgstr "Allmänt"
|
| 107 |
+
|
| 108 |
+
#: core/core.php:663
|
| 109 |
+
msgid "Look For Links In"
|
| 110 |
+
msgstr "Sök efter länkar i"
|
| 111 |
+
|
| 112 |
+
#: core/core.php:664
|
| 113 |
+
msgid "Which Links To Check"
|
| 114 |
+
msgstr "Vilka Länkar Skall Kontrolleras"
|
| 115 |
+
|
| 116 |
+
#: core/core.php:665
|
| 117 |
+
msgid "Protocols & APIs"
|
| 118 |
+
msgstr "Protokoll & API:er"
|
| 119 |
+
|
| 120 |
+
#: core/core.php:666
|
| 121 |
+
msgid "Advanced"
|
| 122 |
+
msgstr "Avancerat"
|
| 123 |
+
|
| 124 |
+
#: core/core.php:681
|
| 125 |
+
msgid "Broken Link Checker Options"
|
| 126 |
+
msgstr "Broken Link Checker Alternativ"
|
| 127 |
+
|
| 128 |
+
#: core/core.php:723 includes/admin/table-printer.php:211
|
| 129 |
+
msgid "Status"
|
| 130 |
+
msgstr "Status"
|
| 131 |
+
|
| 132 |
+
#: core/core.php:725 includes/admin/options-page-js.php:56
|
| 133 |
+
msgid "Show debug info"
|
| 134 |
+
msgstr "Visa buggkontrollsinfo"
|
| 135 |
+
|
| 136 |
+
#: core/core.php:753
|
| 137 |
+
msgid "Check each link"
|
| 138 |
+
msgstr "Kontrollera varje länk"
|
| 139 |
+
|
| 140 |
+
#: core/core.php:758
|
| 141 |
+
msgid "Every %s hours"
|
| 142 |
+
msgstr "Var %s timme"
|
| 143 |
+
|
| 144 |
+
#: core/core.php:767
|
| 145 |
+
msgid ""
|
| 146 |
+
"Existing links will be checked this often. New links will usually be checked "
|
| 147 |
+
"ASAP."
|
| 148 |
+
msgstr ""
|
| 149 |
+
"Existerande länkar kommer att kontrolleras så ofta. Nya länkar kontrolleras "
|
| 150 |
+
"vanligen direkt."
|
| 151 |
+
|
| 152 |
+
#: core/core.php:774
|
| 153 |
+
msgid "E-mail notifications"
|
| 154 |
+
msgstr "E-postnotifieringar"
|
| 155 |
+
|
| 156 |
+
#: core/core.php:780
|
| 157 |
+
msgid "Send me e-mail notifications about newly detected broken links"
|
| 158 |
+
msgstr "Skicka mig e-postnotifieringar om nyligen upptäckta brutna länkar"
|
| 159 |
+
|
| 160 |
+
#: core/core.php:788
|
| 161 |
+
msgid "Send authors e-mail notifications about broken links in their posts"
|
| 162 |
+
msgstr "Skicka författare e-postnotifieringar om brutna länkar i deras inlägg"
|
| 163 |
+
|
| 164 |
+
#: core/core.php:795
|
| 165 |
+
msgid "Notification e-mail address"
|
| 166 |
+
msgstr "E-postadress för notifiering"
|
| 167 |
+
|
| 168 |
+
#: core/core.php:807
|
| 169 |
+
msgid ""
|
| 170 |
+
"Leave empty to use the e-mail address specified in Settings → General."
|
| 171 |
+
msgstr ""
|
| 172 |
+
"Lämna tomt för att använde e-postadressen som angetts i Inställningar → "
|
| 173 |
+
"Allmänt."
|
| 174 |
+
|
| 175 |
+
#: core/core.php:814
|
| 176 |
+
msgid "Link tweaks"
|
| 177 |
+
msgstr "Länkmodifieringar"
|
| 178 |
+
|
| 179 |
+
#: core/core.php:820
|
| 180 |
+
msgid "Apply custom formatting to broken links"
|
| 181 |
+
msgstr "Tillämpa anpassad formattering av brutna länkar"
|
| 182 |
+
|
| 183 |
+
#: core/core.php:824 core/core.php:855
|
| 184 |
+
msgid "Edit CSS"
|
| 185 |
+
msgstr "Redigera CSS"
|
| 186 |
+
|
| 187 |
+
#: core/core.php:840
|
| 188 |
+
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
|
| 189 |
+
msgstr "Exempel : Lorem ipsum <a %s>bruten länk</a>, dolor sit amet."
|
| 190 |
+
|
| 191 |
+
#: core/core.php:843 core/core.php:874
|
| 192 |
+
msgid "Click \"Save Changes\" to update example output."
|
| 193 |
+
msgstr "Klicka \"Spara ändringar\" för att uppdatera exempelresultat."
|
| 194 |
+
|
| 195 |
+
#: core/core.php:851
|
| 196 |
+
msgid "Apply custom formatting to removed links"
|
| 197 |
+
msgstr "Tillämpa anpassad formattering av borttagna länkar"
|
| 198 |
+
|
| 199 |
+
#: core/core.php:871
|
| 200 |
+
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
|
| 201 |
+
msgstr "Exempel: Lorem ipsum <span %s>borttagen länk</span>, dolor sit amet."
|
| 202 |
+
|
| 203 |
+
#: core/core.php:884
|
| 204 |
+
msgid "Stop search engines from following broken links"
|
| 205 |
+
msgstr "Hindra sökmotorer från att följa brutna länkar"
|
| 206 |
+
|
| 207 |
+
#: core/core.php:890
|
| 208 |
+
msgctxt "\"Link tweaks\" settings"
|
| 209 |
+
msgid ""
|
| 210 |
+
"These settings only apply to the content of posts, not comments or custom "
|
| 211 |
+
"fields."
|
| 212 |
+
msgstr ""
|
| 213 |
+
"Dessa inställningar gäller endast för innehåll i inlägg, ej för kommentarer "
|
| 214 |
+
"eller anpassade fält."
|
| 215 |
+
|
| 216 |
+
#: core/core.php:901
|
| 217 |
+
msgctxt "settings page"
|
| 218 |
+
msgid "Suggestions"
|
| 219 |
+
msgstr "Förslag"
|
| 220 |
+
|
| 221 |
+
#: core/core.php:906
|
| 222 |
+
msgid "Suggest alternatives to broken links"
|
| 223 |
+
msgstr "Föreslå alternativ till brutna länkar"
|
| 224 |
+
|
| 225 |
+
#: core/core.php:912
|
| 226 |
+
msgctxt "settings page"
|
| 227 |
+
msgid "Warnings"
|
| 228 |
+
msgstr "Varningar"
|
| 229 |
+
|
| 230 |
+
#: core/core.php:917
|
| 231 |
+
msgid "Show uncertain or minor problems as \"warnings\" instead of \"broken\""
|
| 232 |
+
msgstr ""
|
| 233 |
+
"Visa osäkra eller mindre problem som \"varningar\" istället för som \"brutna"
|
| 234 |
+
"\""
|
| 235 |
+
|
| 236 |
+
#: core/core.php:920
|
| 237 |
+
msgid ""
|
| 238 |
+
"Turning off this option will make the plugin report all problems as broken "
|
| 239 |
+
"links."
|
| 240 |
+
msgstr ""
|
| 241 |
+
"Deaktivering av detta alternativ kommer göra så att tillägget rapporterar "
|
| 242 |
+
"alla problem som brutna länkar."
|
| 243 |
+
|
| 244 |
+
#: core/core.php:935
|
| 245 |
+
msgid "Look for links in"
|
| 246 |
+
msgstr "Sök efter länkar i"
|
| 247 |
+
|
| 248 |
+
#: core/core.php:946
|
| 249 |
+
msgid "Post statuses"
|
| 250 |
+
msgstr "Status för inlägg"
|
| 251 |
+
|
| 252 |
+
#: core/core.php:979
|
| 253 |
+
msgid "Link types"
|
| 254 |
+
msgstr "Länktyper"
|
| 255 |
+
|
| 256 |
+
#: core/core.php:985
|
| 257 |
+
msgid "Error : All link parsers missing!"
|
| 258 |
+
msgstr "Fel: Alla länktolkar saknas!"
|
| 259 |
+
|
| 260 |
+
#: core/core.php:992
|
| 261 |
+
msgid "Exclusion list"
|
| 262 |
+
msgstr "Undantagslista"
|
| 263 |
+
|
| 264 |
+
#: core/core.php:993
|
| 265 |
+
msgid ""
|
| 266 |
+
"Don't check links where the URL contains any of these words (one per line) :"
|
| 267 |
+
msgstr ""
|
| 268 |
+
"Kontrollera inte länkar där URL:en innehåller något av dessa ord (ett per "
|
| 269 |
+
"rad):"
|
| 270 |
+
|
| 271 |
+
#: core/core.php:1011
|
| 272 |
+
msgid "Check links using"
|
| 273 |
+
msgstr "Kontrollera länkar med"
|
| 274 |
+
|
| 275 |
+
#: core/core.php:1030 includes/links.php:1012
|
| 276 |
+
msgid "Timeout"
|
| 277 |
+
msgstr "Tidsgräns"
|
| 278 |
+
|
| 279 |
+
#: core/core.php:1036 core/core.php:1123 core/core.php:3409
|
| 280 |
+
msgid "%s seconds"
|
| 281 |
+
msgstr "%s sekunder"
|
| 282 |
+
|
| 283 |
+
#: core/core.php:1045
|
| 284 |
+
msgid "Links that take longer than this to load will be marked as broken."
|
| 285 |
+
msgstr "Länkar som tar längre tid än detta kommer att flaggas som brutna."
|
| 286 |
+
|
| 287 |
+
#: core/core.php:1052
|
| 288 |
+
msgid "Link monitor"
|
| 289 |
+
msgstr "Länkövervakare"
|
| 290 |
+
|
| 291 |
+
#: core/core.php:1060
|
| 292 |
+
msgid "Run continuously while the Dashboard is open"
|
| 293 |
+
msgstr "Kör oavbrutet när Panelen är öppen"
|
| 294 |
+
|
| 295 |
+
#: core/core.php:1068
|
| 296 |
+
msgid "Run hourly in the background"
|
| 297 |
+
msgstr "Kör timsvis i bakgrunden"
|
| 298 |
+
|
| 299 |
+
#: core/core.php:1076
|
| 300 |
+
msgid "Show the dashboard widget for"
|
| 301 |
+
msgstr "Visa panelwidgeten för"
|
| 302 |
+
|
| 303 |
+
#: core/core.php:1081
|
| 304 |
+
msgctxt "dashboard widget visibility"
|
| 305 |
+
msgid "Administrator"
|
| 306 |
+
msgstr "Administratör"
|
| 307 |
+
|
| 308 |
+
#: core/core.php:1082
|
| 309 |
+
msgctxt "dashboard widget visibility"
|
| 310 |
+
msgid "Editor and above"
|
| 311 |
+
msgstr "Redigerare och högre"
|
| 312 |
+
|
| 313 |
+
#: core/core.php:1083
|
| 314 |
+
msgctxt "dashboard widget visibility"
|
| 315 |
+
msgid "Nobody (disables the widget)"
|
| 316 |
+
msgstr "Ingen (avaktiverar widgeten)"
|
| 317 |
+
|
| 318 |
+
#: core/core.php:1099
|
| 319 |
+
msgctxt "settings page"
|
| 320 |
+
msgid "Show link actions"
|
| 321 |
+
msgstr "Visa länkåtgärder"
|
| 322 |
+
|
| 323 |
+
#: core/core.php:1117
|
| 324 |
+
msgid "Max. execution time"
|
| 325 |
+
msgstr "Max. körtid"
|
| 326 |
+
|
| 327 |
+
#: core/core.php:1134
|
| 328 |
+
msgid ""
|
| 329 |
+
"The plugin works by periodically launching a background job that parses your "
|
| 330 |
+
"posts for links, checks the discovered URLs, and performs other time-"
|
| 331 |
+
"consuming tasks. Here you can set for how long, at most, the link monitor "
|
| 332 |
+
"may run each time before stopping."
|
| 333 |
+
msgstr ""
|
| 334 |
+
"Insticksprogrammet arbetar genom att periodvis starta ett bakgrundsjobb som "
|
| 335 |
+
"söker igenom dina inlägg efter länkar, kontrollerar upptäckta URL:er, och "
|
| 336 |
+
"genomför andra tidskrävande aktiviteter. Här kan du ställa in hur lång tid, "
|
| 337 |
+
"som mest, länkövervakaren får köra varje gång innan den stoppas. "
|
| 338 |
+
|
| 339 |
+
#: core/core.php:1143
|
| 340 |
+
msgid "Server load limit"
|
| 341 |
+
msgstr "Serverns lastgräns"
|
| 342 |
+
|
| 343 |
+
#: core/core.php:1158
|
| 344 |
+
msgid "Current load : %s"
|
| 345 |
+
msgstr "Nuvarande belastning: %s"
|
| 346 |
+
|
| 347 |
+
#: core/core.php:1163
|
| 348 |
+
msgid ""
|
| 349 |
+
"Link checking will be suspended if the average <a href=\"%s\">server load</"
|
| 350 |
+
"a> rises above this number. Leave this field blank to disable load limiting."
|
| 351 |
+
msgstr ""
|
| 352 |
+
"Länkkontrollen kommer att stoppas om den genomsnittliga <a href=\"%s"
|
| 353 |
+
"\">serverbelastningen</a> överstiger detta värde. Lämna fältet tomt för att "
|
| 354 |
+
"avaktivera lastbegränsning."
|
| 355 |
+
|
| 356 |
+
#: core/core.php:1172
|
| 357 |
+
msgid "Not available"
|
| 358 |
+
msgstr "Ej tillgänglig"
|
| 359 |
+
|
| 360 |
+
#: core/core.php:1174
|
| 361 |
+
msgid ""
|
| 362 |
+
"Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
|
| 363 |
+
"code> is present and accessible."
|
| 364 |
+
msgstr ""
|
| 365 |
+
"Lastbegränsning fungerar bara på Linuxliknande system där <code>/proc/"
|
| 366 |
+
"loadavg</code> finns och är tillgänglig."
|
| 367 |
+
|
| 368 |
+
#: core/core.php:1182
|
| 369 |
+
msgid "Target resource usage"
|
| 370 |
+
msgstr "Målets resursanvändning"
|
| 371 |
+
|
| 372 |
+
#: core/core.php:1200
|
| 373 |
+
msgid "Logging"
|
| 374 |
+
msgstr "Loggning"
|
| 375 |
+
|
| 376 |
+
#: core/core.php:1206
|
| 377 |
+
msgid "Enable logging"
|
| 378 |
+
msgstr "Aktivera loggning"
|
| 379 |
+
|
| 380 |
+
#: core/core.php:1213
|
| 381 |
+
msgid "Log file location"
|
| 382 |
+
msgstr "Loggfilens plats"
|
| 383 |
+
|
| 384 |
+
#: core/core.php:1222
|
| 385 |
+
msgctxt "log file location"
|
| 386 |
+
msgid "Default"
|
| 387 |
+
msgstr "Standard"
|
| 388 |
+
|
| 389 |
+
#: core/core.php:1236
|
| 390 |
+
msgctxt "log file location"
|
| 391 |
+
msgid "Custom"
|
| 392 |
+
msgstr "Anpassad"
|
| 393 |
+
|
| 394 |
+
#: core/core.php:1248
|
| 395 |
+
msgid "Forced recheck"
|
| 396 |
+
msgstr "Tvingad återkontroll"
|
| 397 |
+
|
| 398 |
+
#: core/core.php:1251
|
| 399 |
+
msgid "Re-check all pages"
|
| 400 |
+
msgstr "Återkontrollera alla sidor"
|
| 401 |
+
|
| 402 |
+
#: core/core.php:1255
|
| 403 |
+
msgid ""
|
| 404 |
+
"The \"Nuclear Option\". Click this button to make the plugin empty its link "
|
| 405 |
+
"database and recheck the entire site from scratch."
|
| 406 |
+
msgstr ""
|
| 407 |
+
"\"Atombombsalternativet\": Klicka denna knapp för att tvinga "
|
| 408 |
+
"insticksprogrammet att tömma sin databas och återkontrollera hela "
|
| 409 |
+
"webbplatsen från början."
|
| 410 |
+
|
| 411 |
+
#: core/core.php:1266
|
| 412 |
+
msgid "Save Changes"
|
| 413 |
+
msgstr "Spara ändringar"
|
| 414 |
+
|
| 415 |
+
#: core/core.php:1317
|
| 416 |
+
msgid "Configure"
|
| 417 |
+
msgstr "Konfigurera"
|
| 418 |
+
|
| 419 |
+
#: core/core.php:1399
|
| 420 |
+
msgid ""
|
| 421 |
+
"Enter the names of custom fields you want to check (one per line). If a "
|
| 422 |
+
"field contains HTML code, prefix its name with <code>html:</code>. For "
|
| 423 |
+
"example, <code>html:field_name</code>."
|
| 424 |
+
msgstr ""
|
| 425 |
+
"Ange namnen på de anpassade fält som du vill kontrollera (ett per rad). Om "
|
| 426 |
+
"ett fält innehåller HTML-kod så ange <code>html:</code> som prefix. Till "
|
| 427 |
+
"exempel, <code>html:fält_namn</code>."
|
| 428 |
+
|
| 429 |
+
#: core/core.php:1534 core/core.php:1617 core/core.php:1649
|
| 430 |
+
msgid "Database error : %s"
|
| 431 |
+
msgstr "Databasfel: %s"
|
| 432 |
+
|
| 433 |
+
#: core/core.php:1599
|
| 434 |
+
msgid "You must enter a filter name!"
|
| 435 |
+
msgstr "Du måste ange ett filternamn!"
|
| 436 |
+
|
| 437 |
+
#: core/core.php:1603
|
| 438 |
+
msgid "Invalid search query."
|
| 439 |
+
msgstr "Ogiltig sökterm."
|
| 440 |
+
|
| 441 |
+
#: core/core.php:1612
|
| 442 |
+
msgid "Filter \"%s\" created"
|
| 443 |
+
msgstr "Filtret \"%s\" skapat"
|
| 444 |
+
|
| 445 |
+
#: core/core.php:1639
|
| 446 |
+
msgid "Filter ID not specified."
|
| 447 |
+
msgstr "Filter-ID har ej angetts."
|
| 448 |
+
|
| 449 |
+
#: core/core.php:1646
|
| 450 |
+
msgid "Filter deleted"
|
| 451 |
+
msgstr "Filter raderat"
|
| 452 |
+
|
| 453 |
+
#: core/core.php:1693
|
| 454 |
+
msgid "Replaced %d redirect with a direct link"
|
| 455 |
+
msgid_plural "Replaced %d redirects with direct links"
|
| 456 |
+
msgstr[0] "Ersatte %d omdirigering med en direktlänk"
|
| 457 |
+
msgstr[1] "Ersatte %d omdirigeringar med direktlänkar"
|
| 458 |
+
|
| 459 |
+
#: core/core.php:1704
|
| 460 |
+
msgid "Failed to fix %d redirect"
|
| 461 |
+
msgid_plural "Failed to fix %d redirects"
|
| 462 |
+
msgstr[0] "Misslyckades med att fixa %d omdirigering"
|
| 463 |
+
msgstr[1] "Misslyckades med att fixa %d omdirigeringar"
|
| 464 |
+
|
| 465 |
+
#: core/core.php:1715
|
| 466 |
+
msgid "None of the selected links are redirects!"
|
| 467 |
+
msgstr "Ingen av de valda länkarna är omdirigeringar!"
|
| 468 |
+
|
| 469 |
+
#: core/core.php:1793
|
| 470 |
+
msgid "%d link updated."
|
| 471 |
+
msgid_plural "%d links updated."
|
| 472 |
+
msgstr[0] "%d länk uppdaterad."
|
| 473 |
+
msgstr[1] "%d länkar uppdaterade."
|
| 474 |
+
|
| 475 |
+
#: core/core.php:1804
|
| 476 |
+
msgid "Failed to update %d link."
|
| 477 |
+
msgid_plural "Failed to update %d links."
|
| 478 |
+
msgstr[0] "Misslyckades med att uppdatera %d länk."
|
| 479 |
+
msgstr[1] "Misslyckades med att uppdatera %d länkar."
|
| 480 |
+
|
| 481 |
+
#: core/core.php:1893
|
| 482 |
+
msgid "%d link removed"
|
| 483 |
+
msgid_plural "%d links removed"
|
| 484 |
+
msgstr[0] "%d länk borttagen"
|
| 485 |
+
msgstr[1] "%d länkar borttagna"
|
| 486 |
+
|
| 487 |
+
#: core/core.php:1904
|
| 488 |
+
msgid "Failed to remove %d link"
|
| 489 |
+
msgid_plural "Failed to remove %d links"
|
| 490 |
+
msgstr[0] "Misslyckades med att ta bort %d länk"
|
| 491 |
+
msgstr[1] "Misslyckades med att ta bort %d länkar"
|
| 492 |
+
|
| 493 |
+
#: core/core.php:2013
|
| 494 |
+
msgid ""
|
| 495 |
+
"%d item was skipped because it can't be moved to the Trash. You need to "
|
| 496 |
+
"delete it manually."
|
| 497 |
+
msgid_plural ""
|
| 498 |
+
"%d items were skipped because they can't be moved to the Trash. You need to "
|
| 499 |
+
"delete them manually."
|
| 500 |
+
msgstr[0] ""
|
| 501 |
+
"%d objekt hoppades över eftersom det inte kan flyttas till Papperskorgen. Du "
|
| 502 |
+
"får ta bort det manuellt."
|
| 503 |
+
msgstr[1] ""
|
| 504 |
+
"%d objekt hoppades över eftersom de inte kan flyttas till Papperskorgen. Du "
|
| 505 |
+
"får ta bort dem manuellt."
|
| 506 |
+
|
| 507 |
+
#: core/core.php:2035
|
| 508 |
+
msgid "Didn't find anything to delete!"
|
| 509 |
+
msgstr "Hittade ingenting att ta bort!"
|
| 510 |
+
|
| 511 |
+
#: core/core.php:2063
|
| 512 |
+
msgid "%d link scheduled for rechecking"
|
| 513 |
+
msgid_plural "%d links scheduled for rechecking"
|
| 514 |
+
msgstr[0] "%d länk schemalagd för återkontrollering"
|
| 515 |
+
msgstr[1] "%d länkar schemalagda för återkontrollering"
|
| 516 |
+
|
| 517 |
+
#: core/core.php:2110 core/core.php:2923
|
| 518 |
+
msgid "This link was manually marked as working by the user."
|
| 519 |
+
msgstr "Denna länk har manuellt markerats som fungerande av användaren."
|
| 520 |
+
|
| 521 |
+
#: core/core.php:2117 core/core.php:2175
|
| 522 |
+
msgid "Couldn't modify link %d"
|
| 523 |
+
msgstr "Kunde inte modifiera länk %d"
|
| 524 |
+
|
| 525 |
+
#: core/core.php:2127
|
| 526 |
+
msgid "%d link marked as not broken"
|
| 527 |
+
msgid_plural "%d links marked as not broken"
|
| 528 |
+
msgstr[0] "%d länk markerad som ej bruten"
|
| 529 |
+
msgstr[1] "%d länkar markerade som ej brutna"
|
| 530 |
+
|
| 531 |
+
#: core/core.php:2185
|
| 532 |
+
msgid "%d link dismissed"
|
| 533 |
+
msgid_plural "%d links dismissed"
|
| 534 |
+
msgstr[0] "%d länk avvisad"
|
| 535 |
+
msgstr[1] "%d länkar avvisade"
|
| 536 |
+
|
| 537 |
+
#: core/core.php:2242
|
| 538 |
+
msgid ""
|
| 539 |
+
"The \"Warnings\" page lists problems that are probably temporary or "
|
| 540 |
+
"suspected to be false positives.<br> Warnings that persist for a long time "
|
| 541 |
+
"will usually be reclassified as broken links."
|
| 542 |
+
msgstr ""
|
| 543 |
+
"Sidan för \"Varningar\" listar problem som förmodas vara temporära eller som "
|
| 544 |
+
"misstänks vara falskt positiva.<br> Varningar som kvarstår under lång tid "
|
| 545 |
+
"kommer vanligtvis att omklassificeras som brutna länkar."
|
| 546 |
+
|
| 547 |
+
#: core/core.php:2247
|
| 548 |
+
msgctxt "admin notice under Tools - Broken links - Warnings"
|
| 549 |
+
msgid "Hide notice"
|
| 550 |
+
msgstr "Dölj notering"
|
| 551 |
+
|
| 552 |
+
#: core/core.php:2253
|
| 553 |
+
msgctxt "a link from the admin notice under Tools - Broken links - Warnings"
|
| 554 |
+
msgid "Change warning settings"
|
| 555 |
+
msgstr "Ändra varningsinställningar"
|
| 556 |
+
|
| 557 |
+
#: core/core.php:2278
|
| 558 |
+
msgid "Table columns"
|
| 559 |
+
msgstr "Tabellkolumner"
|
| 560 |
+
|
| 561 |
+
#: core/core.php:2297
|
| 562 |
+
msgid "Show on screen"
|
| 563 |
+
msgstr "Visa på skärmen"
|
| 564 |
+
|
| 565 |
+
#: core/core.php:2304
|
| 566 |
+
msgid "links"
|
| 567 |
+
msgstr "länkar"
|
| 568 |
+
|
| 569 |
+
#: core/core.php:2305 includes/admin/table-printer.php:171
|
| 570 |
+
msgid "Apply"
|
| 571 |
+
msgstr "Tillämpa"
|
| 572 |
+
|
| 573 |
+
#: core/core.php:2309
|
| 574 |
+
msgid "Misc"
|
| 575 |
+
msgstr "Blandat"
|
| 576 |
+
|
| 577 |
+
#: core/core.php:2324
|
| 578 |
+
msgid "Highlight links broken for at least %s days"
|
| 579 |
+
msgstr "Markera länkar som varit brutna i minst %s dagar"
|
| 580 |
+
|
| 581 |
+
#: core/core.php:2333
|
| 582 |
+
msgid "Color-code status codes"
|
| 583 |
+
msgstr "Statuskoder för färgkod"
|
| 584 |
+
|
| 585 |
+
#: core/core.php:2350 core/core.php:2907 core/core.php:2948 core/core.php:2981
|
| 586 |
+
#: core/core.php:3070 core/core.php:3114 core/core.php:3175
|
| 587 |
+
msgid "You're not allowed to do that!"
|
| 588 |
+
msgstr "Du har inte tillstånd att göra det där!"
|
| 589 |
+
|
| 590 |
+
#: core/core.php:2778
|
| 591 |
+
msgid "View broken links"
|
| 592 |
+
msgstr "Visa brutna länkar"
|
| 593 |
+
|
| 594 |
+
#: core/core.php:2779
|
| 595 |
+
msgid "Found %d broken link"
|
| 596 |
+
msgid_plural "Found %d broken links"
|
| 597 |
+
msgstr[0] "Hittade %d bruten länk"
|
| 598 |
+
msgstr[1] "Hittade %d brutna länkar"
|
| 599 |
+
|
| 600 |
+
#: core/core.php:2785
|
| 601 |
+
msgid "No broken links found."
|
| 602 |
+
msgstr "Inga brutna länkar funna."
|
| 603 |
+
|
| 604 |
+
#: core/core.php:2792
|
| 605 |
+
msgid "%d URL in the work queue"
|
| 606 |
+
msgid_plural "%d URLs in the work queue"
|
| 607 |
+
msgstr[0] "%d URL i arbetskön"
|
| 608 |
+
msgstr[1] "%d URL:er i arbetskön"
|
| 609 |
+
|
| 610 |
+
#: core/core.php:2795
|
| 611 |
+
msgid "No URLs in the work queue."
|
| 612 |
+
msgstr "Inga URL:er i arbetskön."
|
| 613 |
+
|
| 614 |
+
#: core/core.php:2801
|
| 615 |
+
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 616 |
+
msgid "%d unique URL"
|
| 617 |
+
msgid_plural "%d unique URLs"
|
| 618 |
+
msgstr[0] "%d unik URL"
|
| 619 |
+
msgstr[1] "%d unika URL:er"
|
| 620 |
+
|
| 621 |
+
#: core/core.php:2805
|
| 622 |
+
msgctxt "for the \"Detected X unique URLs in Y links\" message"
|
| 623 |
+
msgid "%d link"
|
| 624 |
+
msgid_plural "%d links"
|
| 625 |
+
msgstr[0] "%d länk"
|
| 626 |
+
msgstr[1] "%d länkar"
|
| 627 |
+
|
| 628 |
+
#: core/core.php:2811
|
| 629 |
+
msgid "Detected %1$s in %2$s and still searching..."
|
| 630 |
+
msgstr "Hittade %1$s i %2$s och söker fortfarande..."
|
| 631 |
+
|
| 632 |
+
#: core/core.php:2817
|
| 633 |
+
msgid "Detected %1$s in %2$s."
|
| 634 |
+
msgstr "Hittade %1$s i %2$s."
|
| 635 |
+
|
| 636 |
+
#: core/core.php:2824
|
| 637 |
+
msgid "Searching your blog for links..."
|
| 638 |
+
msgstr "Genomsöker din blogg efter länkar..."
|
| 639 |
+
|
| 640 |
+
#: core/core.php:2826
|
| 641 |
+
msgid "No links detected."
|
| 642 |
+
msgstr "Inga länkar funna."
|
| 643 |
+
|
| 644 |
+
#: core/core.php:2852
|
| 645 |
+
msgctxt "current load"
|
| 646 |
+
msgid "Unknown"
|
| 647 |
+
msgstr "Okänt"
|
| 648 |
+
|
| 649 |
+
#: core/core.php:2915 core/core.php:2956 core/core.php:2996 core/core.php:3080
|
| 650 |
+
#: core/core.php:3129 core/core.php:3190
|
| 651 |
+
msgid "Oops, I can't find the link %d"
|
| 652 |
+
msgstr "Hoppsan, Jag kan inte hitta länken %d"
|
| 653 |
+
|
| 654 |
+
#: core/core.php:2929 core/core.php:2966
|
| 655 |
+
msgid "Oops, couldn't modify the link!"
|
| 656 |
+
msgstr "Hoppsan, kunde inte modifiera länken!"
|
| 657 |
+
|
| 658 |
+
#: core/core.php:2932 core/core.php:2969 core/core.php:3106 core/core.php:3120
|
| 659 |
+
#: core/core.php:3181
|
| 660 |
+
msgid "Error : link_id not specified"
|
| 661 |
+
msgstr "Fel: link_id har ej angetts"
|
| 662 |
+
|
| 663 |
+
#: core/core.php:2987
|
| 664 |
+
msgid "Error : link_id or new_url not specified"
|
| 665 |
+
msgstr "Fel: link_id eller new_url har ej angetts"
|
| 666 |
+
|
| 667 |
+
#: core/core.php:3005
|
| 668 |
+
msgid "Oops, the new URL is invalid!"
|
| 669 |
+
msgstr "Hoppsan, den nya URL:en är ogiltig!"
|
| 670 |
+
|
| 671 |
+
#: core/core.php:3020
|
| 672 |
+
msgid "An unexpected error occurred!"
|
| 673 |
+
msgstr "Ett okänt fel uppstod!"
|
| 674 |
+
|
| 675 |
+
#: core/core.php:3089
|
| 676 |
+
msgid "An unexpected error occured!"
|
| 677 |
+
msgstr "Ett okänt fel uppstod!"
|
| 678 |
+
|
| 679 |
+
#: core/core.php:3217
|
| 680 |
+
msgid "You don't have sufficient privileges to access this information!"
|
| 681 |
+
msgstr "Du har inte tillräckliga tillstånd för åtkomst till denna information!"
|
| 682 |
+
|
| 683 |
+
#: core/core.php:3230
|
| 684 |
+
msgid "Error : link ID not specified"
|
| 685 |
+
msgstr "Fel: länk-ID har ej angivits"
|
| 686 |
+
|
| 687 |
+
#: core/core.php:3244
|
| 688 |
+
msgid "Failed to load link details (%s)"
|
| 689 |
+
msgstr "Misslyckades med att ladda länkdetaljer (%s)"
|
| 690 |
+
|
| 691 |
+
#. Plugin Name of the plugin/theme
|
| 692 |
+
#: core/core.php:3298
|
| 693 |
+
msgid "Broken Link Checker"
|
| 694 |
+
msgstr "Broken Link Checker"
|
| 695 |
+
|
| 696 |
+
#: core/core.php:3318
|
| 697 |
+
msgid "PHP version"
|
| 698 |
+
msgstr "PHP-version"
|
| 699 |
+
|
| 700 |
+
#: core/core.php:3324
|
| 701 |
+
msgid "MySQL version"
|
| 702 |
+
msgstr "MySQL-version"
|
| 703 |
+
|
| 704 |
+
#: core/core.php:3337
|
| 705 |
+
msgid ""
|
| 706 |
+
"You have an old version of CURL. Redirect detection may not work properly."
|
| 707 |
+
msgstr ""
|
| 708 |
+
"Du har en gammal version av CURL. Spårning av omdirigeringar kanske inte "
|
| 709 |
+
"fungerar ordentligt."
|
| 710 |
+
|
| 711 |
+
#: core/core.php:3349 core/core.php:3365 core/core.php:3370
|
| 712 |
+
msgid "Not installed"
|
| 713 |
+
msgstr "Ej installerat"
|
| 714 |
+
|
| 715 |
+
#: core/core.php:3352
|
| 716 |
+
msgid "CURL version"
|
| 717 |
+
msgstr "CURL-version"
|
| 718 |
+
|
| 719 |
+
#: core/core.php:3358
|
| 720 |
+
msgid "Installed"
|
| 721 |
+
msgstr "Installerat"
|
| 722 |
+
|
| 723 |
+
#: core/core.php:3371
|
| 724 |
+
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
| 725 |
+
msgstr ""
|
| 726 |
+
"Du måste ha antingen CURL eller Snoppy installerat för att tillägget skall "
|
| 727 |
+
"fungera!"
|
| 728 |
+
|
| 729 |
+
#: core/core.php:3382
|
| 730 |
+
msgid "On"
|
| 731 |
+
msgstr "På"
|
| 732 |
+
|
| 733 |
+
#: core/core.php:3383
|
| 734 |
+
msgid "Redirects may be detected as broken links when safe_mode is on."
|
| 735 |
+
msgstr ""
|
| 736 |
+
"Omdirigeringar kan hittas och uppfattas som bruna länkar när safe_mode är "
|
| 737 |
+
"aktiverat."
|
| 738 |
+
|
| 739 |
+
#: core/core.php:3388 core/core.php:3402
|
| 740 |
+
msgid "Off"
|
| 741 |
+
msgstr "Av"
|
| 742 |
+
|
| 743 |
+
#: core/core.php:3396
|
| 744 |
+
msgid "On ( %s )"
|
| 745 |
+
msgstr "På ( %s )"
|
| 746 |
+
|
| 747 |
+
#: core/core.php:3397
|
| 748 |
+
msgid "Redirects may be detected as broken links when open_basedir is on."
|
| 749 |
+
msgstr ""
|
| 750 |
+
"Omdirigeringar kan hittas och uppfattas som brutna länkar när open_basedir "
|
| 751 |
+
"är aktiverat."
|
| 752 |
+
|
| 753 |
+
#: core/core.php:3426
|
| 754 |
+
msgid ""
|
| 755 |
+
"If this value is zero even after several page reloads you have probably "
|
| 756 |
+
"encountered a bug."
|
| 757 |
+
msgstr ""
|
| 758 |
+
"Om detta värde är noll även efter flera omladdningar av sidan så har du "
|
| 759 |
+
"troligen stött på en bugg."
|
| 760 |
+
|
| 761 |
+
#: core/core.php:3549 core/core.php:3668
|
| 762 |
+
msgid "[%s] Broken links detected"
|
| 763 |
+
msgstr "[%s] Brutna länkar funna"
|
| 764 |
+
|
| 765 |
+
#: core/core.php:3554
|
| 766 |
+
msgid "Broken Link Checker has detected %d new broken link on your site."
|
| 767 |
+
msgid_plural ""
|
| 768 |
+
"Broken Link Checker has detected %d new broken links on your site."
|
| 769 |
+
msgstr[0] "Broken Link Checker has hittat %d ny bruten länk på din webbplats."
|
| 770 |
+
msgstr[1] ""
|
| 771 |
+
"Broken Link Checker has hittat %d ny brutna länkar på din webbplats."
|
| 772 |
+
|
| 773 |
+
#: core/core.php:3585
|
| 774 |
+
msgid "Here's a list of the first %d broken links:"
|
| 775 |
+
msgid_plural "Here's a list of the first %d broken links:"
|
| 776 |
+
msgstr[0] "Här är en lista över de första %d brutna länkarna:"
|
| 777 |
+
msgstr[1] "Här är en lista över de första %d brutna länkarna:"
|
| 778 |
+
|
| 779 |
+
#: core/core.php:3594
|
| 780 |
+
msgid "Here's a list of the new broken links: "
|
| 781 |
+
msgstr "Här är en lista över de nya brutna länkarna:"
|
| 782 |
+
|
| 783 |
+
#: core/core.php:3603
|
| 784 |
+
msgid "Link text : %s"
|
| 785 |
+
msgstr "Länktext: %s"
|
| 786 |
+
|
| 787 |
+
#: core/core.php:3604
|
| 788 |
+
msgid "Link URL : <a href=\"%s\">%s</a>"
|
| 789 |
+
msgstr "Länk-URL : <a href=\"%s\">%s</a>"
|
| 790 |
+
|
| 791 |
+
#: core/core.php:3605
|
| 792 |
+
msgid "Source : %s"
|
| 793 |
+
msgstr "Källa: %s"
|
| 794 |
+
|
| 795 |
+
#: core/core.php:3619
|
| 796 |
+
msgid "You can see all broken links here:"
|
| 797 |
+
msgstr "Du kan se alla brutna länkar här:"
|
| 798 |
+
|
| 799 |
+
#: core/core.php:3673
|
| 800 |
+
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
| 801 |
+
msgid_plural ""
|
| 802 |
+
"Broken Link Checker has detected %d new broken links in your posts."
|
| 803 |
+
msgstr[0] "Broken Link Checker har hittat %d ny bruten länk i dina inlägg."
|
| 804 |
+
msgstr[1] "Broken Link Checker har hittat %d nya brutna länkar i dina inlägg."
|
| 805 |
+
|
| 806 |
+
#: core/init.php:255
|
| 807 |
+
msgid "Once Weekly"
|
| 808 |
+
msgstr "En Gång i Veckan"
|
| 809 |
+
|
| 810 |
+
#: core/init.php:261
|
| 811 |
+
msgid "Twice a Month"
|
| 812 |
+
msgstr "Två Gånger i Månaden"
|
| 813 |
+
|
| 814 |
+
#: core/init.php:337
|
| 815 |
+
msgid ""
|
| 816 |
+
"Broken Link Checker installation failed. Try deactivating and then "
|
| 817 |
+
"reactivating the plugin."
|
| 818 |
+
msgstr ""
|
| 819 |
+
"Installationen av Broken Link Checker misslyckades. Försök att först "
|
| 820 |
+
"deaktivera tillägget och sedan aktivera det igen."
|
| 821 |
+
|
| 822 |
+
#: core/init.php:341
|
| 823 |
+
msgid ""
|
| 824 |
+
"Please activate the plugin separately on each site. Network activation is "
|
| 825 |
+
"not supported."
|
| 826 |
+
msgstr ""
|
| 827 |
+
"Var god att aktivera tillägget separat på varje webbplats. "
|
| 828 |
+
"Nätverksaktivering stöds ej."
|
| 829 |
+
|
| 830 |
+
#: includes/admin/db-upgrade.php:97
|
| 831 |
+
msgid "Failed to delete old DB tables. Database error : %s"
|
| 832 |
+
msgstr "Misslyckades med borttagning av gamla DB-tabeller. Databasfel: %s"
|
| 833 |
+
|
| 834 |
+
#: includes/admin/links-page-js.php:63 includes/admin/links-page-js.php:639
|
| 835 |
+
msgid "Wait..."
|
| 836 |
+
msgstr "Vänta..."
|
| 837 |
+
|
| 838 |
+
#: includes/admin/links-page-js.php:368
|
| 839 |
+
msgctxt "link text"
|
| 840 |
+
msgid "(None)"
|
| 841 |
+
msgstr "(Ingen)"
|
| 842 |
+
|
| 843 |
+
#: includes/admin/links-page-js.php:369
|
| 844 |
+
msgctxt "link text"
|
| 845 |
+
msgid "(Multiple links)"
|
| 846 |
+
msgstr "(Multipla länkar)"
|
| 847 |
+
|
| 848 |
+
#: includes/admin/links-page-js.php:427
|
| 849 |
+
msgctxt "link suggestions"
|
| 850 |
+
msgid "Searching..."
|
| 851 |
+
msgstr "Söker..."
|
| 852 |
+
|
| 853 |
+
#: includes/admin/links-page-js.php:428
|
| 854 |
+
msgctxt "link suggestions"
|
| 855 |
+
msgid "No suggestions available."
|
| 856 |
+
msgstr "Inga förslag finns."
|
| 857 |
+
|
| 858 |
+
#: includes/admin/links-page-js.php:429
|
| 859 |
+
msgctxt "link suggestions"
|
| 860 |
+
msgid "Archived page from %s (via the Wayback Machine)"
|
| 861 |
+
msgstr "Arkiverad sida från %s (via Wayback Machine)"
|
| 862 |
+
|
| 863 |
+
#: includes/admin/links-page-js.php:523
|
| 864 |
+
msgid "%d instances of the link were successfully modified."
|
| 865 |
+
msgstr "%d förekomster av länken modifierades."
|
| 866 |
+
|
| 867 |
+
#: includes/admin/links-page-js.php:529
|
| 868 |
+
msgid ""
|
| 869 |
+
"However, %d instances couldn't be edited and still point to the old URL."
|
| 870 |
+
msgstr ""
|
| 871 |
+
"Men, %d förekomster kunde inte redigeras och hänvisar fortfarande till den "
|
| 872 |
+
"gamla URL:en."
|
| 873 |
+
|
| 874 |
+
#: includes/admin/links-page-js.php:535
|
| 875 |
+
msgid "The link could not be modified."
|
| 876 |
+
msgstr "Länken kunde inte modifieras."
|
| 877 |
+
|
| 878 |
+
#: includes/admin/links-page-js.php:538
|
| 879 |
+
msgid "The following error(s) occurred :"
|
| 880 |
+
msgstr "Följande fel uppstod:"
|
| 881 |
+
|
| 882 |
+
#: includes/admin/links-page-js.php:602
|
| 883 |
+
msgid "Error: Link URL must not be empty."
|
| 884 |
+
msgstr "Fel: Länkens URL får inte vara tom."
|
| 885 |
+
|
| 886 |
+
#: includes/admin/links-page-js.php:677
|
| 887 |
+
msgid "%d instances of the link were successfully unlinked."
|
| 888 |
+
msgstr "%d förekomster av länken avlänkades."
|
| 889 |
+
|
| 890 |
+
#: includes/admin/links-page-js.php:683
|
| 891 |
+
msgid "However, %d instances couldn't be removed."
|
| 892 |
+
msgstr "Men, %d förekomster kunde inte tas bort."
|
| 893 |
+
|
| 894 |
+
#: includes/admin/links-page-js.php:688
|
| 895 |
+
msgid "The plugin failed to remove the link."
|
| 896 |
+
msgstr "Tillägget misslyckades med att ta bort länken."
|
| 897 |
+
|
| 898 |
+
#: includes/admin/links-page-js.php:691
|
| 899 |
+
msgid "The following error(s) occured :"
|
| 900 |
+
msgstr "Följande fel uppstod:"
|
| 901 |
+
|
| 902 |
+
#: includes/admin/links-page-js.php:737
|
| 903 |
+
msgid "Enter a name for the new custom filter"
|
| 904 |
+
msgstr "Ange ett namn för det nya anpassade filtret"
|
| 905 |
+
|
| 906 |
+
#: includes/admin/links-page-js.php:749
|
| 907 |
+
msgid ""
|
| 908 |
+
"You are about to delete the current filter.\n"
|
| 909 |
+
"'Cancel' to stop, 'OK' to delete"
|
| 910 |
+
msgstr ""
|
| 911 |
+
"Du håller på att ta bort det nuvarande filtret.\n"
|
| 912 |
+
"'Avbryt' för att avbryta, 'OK' för att ta bort"
|
| 913 |
+
|
| 914 |
+
#: includes/admin/links-page-js.php:773
|
| 915 |
+
msgid ""
|
| 916 |
+
"Are you sure you want to delete all posts, bookmarks or other items that "
|
| 917 |
+
"contain any of the selected links? This action can't be undone.\n"
|
| 918 |
+
"'Cancel' to stop, 'OK' to delete"
|
| 919 |
+
msgstr ""
|
| 920 |
+
"Är du säker på att du vill ta bort alla inlägg, bokmärken eller andra objekt "
|
| 921 |
+
"som innehåller någon av de valda länkarna? Detta kan inte ångras.\n"
|
| 922 |
+
"'Avbryt' för att avbryta, 'OK' för att ta bort"
|
| 923 |
+
|
| 924 |
+
#: includes/admin/links-page-js.php:787
|
| 925 |
+
msgid ""
|
| 926 |
+
"Are you sure you want to remove the selected links? This action can't be "
|
| 927 |
+
"undone.\n"
|
| 928 |
+
"'Cancel' to stop, 'OK' to remove"
|
| 929 |
+
msgstr ""
|
| 930 |
+
"Är du säker på att du vill ta bort de valda länkarna? Detta kan inte "
|
| 931 |
+
"ångras.\n"
|
| 932 |
+
"'Avbryt' för att avbryta, 'OK' för att ta bort"
|
| 933 |
+
|
| 934 |
+
#: includes/admin/links-page-js.php:899
|
| 935 |
+
msgid "Enter a search string first."
|
| 936 |
+
msgstr "Skriv en söksträng först."
|
| 937 |
+
|
| 938 |
+
#: includes/admin/links-page-js.php:906
|
| 939 |
+
msgid "Select one or more links to edit."
|
| 940 |
+
msgstr "Välj en eller flera länkar att redigera."
|
| 941 |
+
|
| 942 |
+
#: includes/admin/options-page-js.php:54
|
| 943 |
+
msgid "Hide debug info"
|
| 944 |
+
msgstr "Dölj debug-info"
|
| 945 |
+
|
| 946 |
+
#: includes/admin/search-form.php:16
|
| 947 |
+
msgid "Save This Search As a Filter"
|
| 948 |
+
msgstr "Spara Denna Sökning Som ett Filter"
|
| 949 |
+
|
| 950 |
+
#: includes/admin/search-form.php:26
|
| 951 |
+
msgid "Delete This Filter"
|
| 952 |
+
msgstr "Ta Bort Detta Filter"
|
| 953 |
+
|
| 954 |
+
#: includes/admin/search-form.php:32 includes/link-query.php:81
|
| 955 |
+
msgid "Search"
|
| 956 |
+
msgstr "Sök"
|
| 957 |
+
|
| 958 |
+
#: includes/admin/search-form.php:42
|
| 959 |
+
msgid "Link text"
|
| 960 |
+
msgstr "Länktext"
|
| 961 |
+
|
| 962 |
+
#: includes/admin/search-form.php:45 includes/admin/table-printer.php:216
|
| 963 |
+
msgid "URL"
|
| 964 |
+
msgstr "URL"
|
| 965 |
+
|
| 966 |
+
#: includes/admin/search-form.php:48 includes/admin/table-printer.php:542
|
| 967 |
+
msgid "HTTP code"
|
| 968 |
+
msgstr "HTTP-kod"
|
| 969 |
+
|
| 970 |
+
#: includes/admin/search-form.php:51
|
| 971 |
+
msgid "Link status"
|
| 972 |
+
msgstr "Länkstatus"
|
| 973 |
+
|
| 974 |
+
#: includes/admin/search-form.php:68 includes/admin/search-form.php:85
|
| 975 |
+
msgid "Link type"
|
| 976 |
+
msgstr "Länktyp"
|
| 977 |
+
|
| 978 |
+
#: includes/admin/search-form.php:70
|
| 979 |
+
msgid "Any"
|
| 980 |
+
msgstr "Godtycklig"
|
| 981 |
+
|
| 982 |
+
#: includes/admin/search-form.php:74
|
| 983 |
+
msgid "Links used in"
|
| 984 |
+
msgstr "Länkar använda i"
|
| 985 |
+
|
| 986 |
+
#: includes/admin/search-form.php:112
|
| 987 |
+
msgid "Search Links"
|
| 988 |
+
msgstr "Söklänkar"
|
| 989 |
+
|
| 990 |
+
#: includes/admin/search-form.php:113 includes/admin/table-printer.php:368
|
| 991 |
+
#: includes/admin/table-printer.php:747 includes/admin/table-printer.php:872
|
| 992 |
+
msgid "Cancel"
|
| 993 |
+
msgstr "Avbryt"
|
| 994 |
+
|
| 995 |
+
#: includes/admin/sidebar.php:25
|
| 996 |
+
msgid "More plugins by Janis Elsts"
|
| 997 |
+
msgstr "Fler tillägg av Janis Elsts"
|
| 998 |
+
|
| 999 |
+
#: includes/admin/sidebar.php:48
|
| 1000 |
+
msgid "Donate $10, $20 or $50!"
|
| 1001 |
+
msgstr "Donera $10, $20 eller $50!"
|
| 1002 |
+
|
| 1003 |
+
#: includes/admin/sidebar.php:51
|
| 1004 |
+
msgid ""
|
| 1005 |
+
"If you like this plugin, please donate to support development and "
|
| 1006 |
+
"maintenance!"
|
| 1007 |
+
msgstr ""
|
| 1008 |
+
"Om du gillar detta tillägg, var snäll att donera för att stödja "
|
| 1009 |
+
"vidareutveckling och underhåll!"
|
| 1010 |
+
|
| 1011 |
+
#: includes/admin/sidebar.php:69
|
| 1012 |
+
msgid "Return to WordPress Dashboard"
|
| 1013 |
+
msgstr "Återvänd till WordPress-Panelen"
|
| 1014 |
+
|
| 1015 |
+
#: includes/admin/table-printer.php:188
|
| 1016 |
+
msgid "Compact View"
|
| 1017 |
+
msgstr "Kompakt Vy"
|
| 1018 |
+
|
| 1019 |
+
#: includes/admin/table-printer.php:193
|
| 1020 |
+
msgid "Detailed View"
|
| 1021 |
+
msgstr "Detaljerad Vy"
|
| 1022 |
+
|
| 1023 |
+
#: includes/admin/table-printer.php:223
|
| 1024 |
+
msgid "Source"
|
| 1025 |
+
msgstr "Källa"
|
| 1026 |
+
|
| 1027 |
+
#: includes/admin/table-printer.php:229
|
| 1028 |
+
msgid "Link Text"
|
| 1029 |
+
msgstr "Länk Text"
|
| 1030 |
+
|
| 1031 |
+
#: includes/admin/table-printer.php:236
|
| 1032 |
+
msgid "Redirect URL"
|
| 1033 |
+
msgstr "Omdirigera URL"
|
| 1034 |
+
|
| 1035 |
+
#: includes/admin/table-printer.php:286
|
| 1036 |
+
msgid "Bulk Actions"
|
| 1037 |
+
msgstr "Bulkprocesser"
|
| 1038 |
+
|
| 1039 |
+
#: includes/admin/table-printer.php:289
|
| 1040 |
+
msgid "Fix redirects"
|
| 1041 |
+
msgstr "Fixa omdirigeringar"
|
| 1042 |
+
|
| 1043 |
+
#: includes/admin/table-printer.php:290
|
| 1044 |
+
msgid "Mark as not broken"
|
| 1045 |
+
msgstr "Markera som ej bruten"
|
| 1046 |
+
|
| 1047 |
+
#: includes/admin/table-printer.php:295
|
| 1048 |
+
msgid "Move sources to Trash"
|
| 1049 |
+
msgstr "Flytta källor till Papperskorgen"
|
| 1050 |
+
|
| 1051 |
+
#: includes/admin/table-printer.php:297
|
| 1052 |
+
msgid "Delete sources"
|
| 1053 |
+
msgstr "Radera källor"
|
| 1054 |
+
|
| 1055 |
+
#: includes/admin/table-printer.php:312
|
| 1056 |
+
msgid "«"
|
| 1057 |
+
msgstr "«"
|
| 1058 |
+
|
| 1059 |
+
#: includes/admin/table-printer.php:313
|
| 1060 |
+
msgid "»"
|
| 1061 |
+
msgstr "»"
|
| 1062 |
+
|
| 1063 |
+
#: includes/admin/table-printer.php:321
|
| 1064 |
+
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
| 1065 |
+
msgstr "Visar %s–%s av <span class=\"current-link-count\">%s</span>"
|
| 1066 |
+
|
| 1067 |
+
#: includes/admin/table-printer.php:344
|
| 1068 |
+
msgid "Bulk Edit URLs"
|
| 1069 |
+
msgstr "Bulkredigera URL:er"
|
| 1070 |
+
|
| 1071 |
+
#: includes/admin/table-printer.php:346
|
| 1072 |
+
msgid "Find"
|
| 1073 |
+
msgstr "Hitta"
|
| 1074 |
+
|
| 1075 |
+
#: includes/admin/table-printer.php:350
|
| 1076 |
+
msgid "Replace with"
|
| 1077 |
+
msgstr "Ersätt med"
|
| 1078 |
+
|
| 1079 |
+
#: includes/admin/table-printer.php:358
|
| 1080 |
+
msgid "Case sensitive"
|
| 1081 |
+
msgstr "Skiftlägeskänslig"
|
| 1082 |
+
|
| 1083 |
+
#: includes/admin/table-printer.php:362
|
| 1084 |
+
msgid "Regular expression"
|
| 1085 |
+
msgstr "Regelbundet uttryck (RegEx)"
|
| 1086 |
+
|
| 1087 |
+
#: includes/admin/table-printer.php:370 includes/admin/table-printer.php:873
|
| 1088 |
+
msgid "Update"
|
| 1089 |
+
msgstr "Uppdatera"
|
| 1090 |
+
|
| 1091 |
+
#: includes/admin/table-printer.php:523
|
| 1092 |
+
msgid "Post published on"
|
| 1093 |
+
msgstr "Inlägg publicerat den"
|
| 1094 |
+
|
| 1095 |
+
#: includes/admin/table-printer.php:528
|
| 1096 |
+
msgid "Link last checked"
|
| 1097 |
+
msgstr "Länken senast kontrollerad"
|
| 1098 |
+
|
| 1099 |
+
#: includes/admin/table-printer.php:532
|
| 1100 |
+
msgid "Never"
|
| 1101 |
+
msgstr "Aldrig"
|
| 1102 |
+
|
| 1103 |
+
#: includes/admin/table-printer.php:547
|
| 1104 |
+
msgid "Response time"
|
| 1105 |
+
msgstr "Svarstid"
|
| 1106 |
+
|
| 1107 |
+
#: includes/admin/table-printer.php:549
|
| 1108 |
+
msgid "%2.3f seconds"
|
| 1109 |
+
msgstr "%2.3f sekunder"
|
| 1110 |
+
|
| 1111 |
+
#: includes/admin/table-printer.php:552
|
| 1112 |
+
msgid "Final URL"
|
| 1113 |
+
msgstr "Slutgiltig URL"
|
| 1114 |
+
|
| 1115 |
+
#: includes/admin/table-printer.php:557
|
| 1116 |
+
msgid "Redirect count"
|
| 1117 |
+
msgstr "Antal omdirigeringar"
|
| 1118 |
+
|
| 1119 |
+
#: includes/admin/table-printer.php:562
|
| 1120 |
+
msgid "Instance count"
|
| 1121 |
+
msgstr "Antal förekomster"
|
| 1122 |
+
|
| 1123 |
+
#: includes/admin/table-printer.php:571
|
| 1124 |
+
msgid "This link has failed %d time."
|
| 1125 |
+
msgid_plural "This link has failed %d times."
|
| 1126 |
+
msgstr[0] "Denna länk har misslyckats %d gång."
|
| 1127 |
+
msgstr[1] "Denna länk har misslyckats %d gånger."
|
| 1128 |
+
|
| 1129 |
+
#: includes/admin/table-printer.php:579
|
| 1130 |
+
msgid "This link has been broken for %s."
|
| 1131 |
+
msgstr "Denna länk har varit bruten i %s."
|
| 1132 |
+
|
| 1133 |
+
#: includes/admin/table-printer.php:590
|
| 1134 |
+
msgid "Log"
|
| 1135 |
+
msgstr "Logg"
|
| 1136 |
+
|
| 1137 |
+
#: includes/admin/table-printer.php:615 includes/admin/table-printer.php:660
|
| 1138 |
+
msgid "Show more info about this link"
|
| 1139 |
+
msgstr "Visa mer info om denna länk"
|
| 1140 |
+
|
| 1141 |
+
#: includes/admin/table-printer.php:633
|
| 1142 |
+
msgctxt "checked how long ago"
|
| 1143 |
+
msgid "Checked"
|
| 1144 |
+
msgstr "Kontrollerad"
|
| 1145 |
+
|
| 1146 |
+
#: includes/admin/table-printer.php:649
|
| 1147 |
+
msgid "Broken for"
|
| 1148 |
+
msgstr "Bruten i"
|
| 1149 |
+
|
| 1150 |
+
#: includes/admin/table-printer.php:661
|
| 1151 |
+
msgctxt "link in the \"Status\" column"
|
| 1152 |
+
msgid "Details"
|
| 1153 |
+
msgstr "Detaljer"
|
| 1154 |
+
|
| 1155 |
+
#: includes/admin/table-printer.php:678
|
| 1156 |
+
msgid "Edit this link"
|
| 1157 |
+
msgstr "Redigera denna länk"
|
| 1158 |
+
|
| 1159 |
+
#: includes/admin/table-printer.php:680
|
| 1160 |
+
msgid "Remove this link from all posts"
|
| 1161 |
+
msgstr "Ta bort denna länk från alla inlägg"
|
| 1162 |
+
|
| 1163 |
+
#: includes/admin/table-printer.php:686
|
| 1164 |
+
msgid "Remove this link from the list of broken links and mark it as valid"
|
| 1165 |
+
msgstr ""
|
| 1166 |
+
"Ta bort denna länk från listan över brutna länkar och markera den som giltig."
|
| 1167 |
+
|
| 1168 |
+
#: includes/admin/table-printer.php:694
|
| 1169 |
+
msgid "Hide this link and do not report it again unless its status changes"
|
| 1170 |
+
msgstr "Göm denna länk och rapportera den inte igen om inte dess status ändras"
|
| 1171 |
+
|
| 1172 |
+
#: includes/admin/table-printer.php:700
|
| 1173 |
+
msgid "Undismiss this link"
|
| 1174 |
+
msgstr "Ta bort avvisning för denna länk"
|
| 1175 |
+
|
| 1176 |
+
#: includes/admin/table-printer.php:701
|
| 1177 |
+
msgid "Undismiss"
|
| 1178 |
+
msgstr "Ta bort avvisning"
|
| 1179 |
+
|
| 1180 |
+
#: includes/admin/table-printer.php:714
|
| 1181 |
+
msgid "Replace this redirect with a direct link"
|
| 1182 |
+
msgstr "Ersätt denna omdirigering med en direkt länk"
|
| 1183 |
+
|
| 1184 |
+
#: includes/admin/table-printer.php:748
|
| 1185 |
+
msgid "Update URL"
|
| 1186 |
+
msgstr "Uppdatera URL"
|
| 1187 |
+
|
| 1188 |
+
#: includes/admin/table-printer.php:775
|
| 1189 |
+
msgid "[An orphaned link! This is a bug.]"
|
| 1190 |
+
msgstr "[En föräldralös länk! Detta är en bugg.]"
|
| 1191 |
+
|
| 1192 |
+
#: includes/admin/table-printer.php:852
|
| 1193 |
+
msgctxt "inline editor title"
|
| 1194 |
+
msgid "Edit Link"
|
| 1195 |
+
msgstr "Redigera Länk"
|
| 1196 |
+
|
| 1197 |
+
#: includes/admin/table-printer.php:855
|
| 1198 |
+
msgctxt "inline link editor"
|
| 1199 |
+
msgid "Text"
|
| 1200 |
+
msgstr "Text"
|
| 1201 |
+
|
| 1202 |
+
#: includes/admin/table-printer.php:860
|
| 1203 |
+
msgctxt "inline link editor"
|
| 1204 |
+
msgid "URL"
|
| 1205 |
+
msgstr "URL"
|
| 1206 |
+
|
| 1207 |
+
#: includes/admin/table-printer.php:865
|
| 1208 |
+
msgctxt "inline link editor"
|
| 1209 |
+
msgid "Suggestions"
|
| 1210 |
+
msgstr "Förslag"
|
| 1211 |
+
|
| 1212 |
+
#: includes/admin/table-printer.php:885
|
| 1213 |
+
msgid "Use this URL"
|
| 1214 |
+
msgstr "Använd denna URL"
|
| 1215 |
+
|
| 1216 |
+
#: includes/any-post.php:426 modules/containers/blogroll.php:46
|
| 1217 |
+
#: modules/containers/comment.php:159 modules/containers/custom_field.php:230
|
| 1218 |
+
msgid "Edit"
|
| 1219 |
+
msgstr "Redigera"
|
| 1220 |
+
|
| 1221 |
+
#: includes/any-post.php:434 modules/containers/custom_field.php:236
|
| 1222 |
+
msgid "Move this item to the Trash"
|
| 1223 |
+
msgstr "Flytta detta objekt till Papperskorgen"
|
| 1224 |
+
|
| 1225 |
+
#: includes/any-post.php:436 modules/containers/custom_field.php:238
|
| 1226 |
+
msgid "Trash"
|
| 1227 |
+
msgstr "Papperskorgen"
|
| 1228 |
+
|
| 1229 |
+
#: includes/any-post.php:441 modules/containers/custom_field.php:243
|
| 1230 |
+
msgid "Delete this item permanently"
|
| 1231 |
+
msgstr "Ta bort detta objekt permanent"
|
| 1232 |
+
|
| 1233 |
+
#: includes/any-post.php:443 modules/containers/blogroll.php:47
|
| 1234 |
+
#: modules/containers/custom_field.php:245
|
| 1235 |
+
msgid "Delete"
|
| 1236 |
+
msgstr "Ta bort"
|
| 1237 |
+
|
| 1238 |
+
#: includes/any-post.php:456
|
| 1239 |
+
msgid "Preview “%s”"
|
| 1240 |
+
msgstr "Förhandsgranska “%s”"
|
| 1241 |
+
|
| 1242 |
+
#: includes/any-post.php:457
|
| 1243 |
+
msgid "Preview"
|
| 1244 |
+
msgstr "Förhandsgranska"
|
| 1245 |
+
|
| 1246 |
+
#: includes/any-post.php:464
|
| 1247 |
+
msgid "View “%s”"
|
| 1248 |
+
msgstr "Visa “%s”"
|
| 1249 |
+
|
| 1250 |
+
#: includes/any-post.php:465 modules/containers/comment.php:172
|
| 1251 |
+
#: modules/containers/custom_field.php:250
|
| 1252 |
+
msgid "View"
|
| 1253 |
+
msgstr "Visa"
|
| 1254 |
+
|
| 1255 |
+
#: includes/any-post.php:484 modules/containers/custom_field.php:230
|
| 1256 |
+
msgid "Edit this item"
|
| 1257 |
+
msgstr "Redigera detta objekt"
|
| 1258 |
+
|
| 1259 |
+
#: includes/any-post.php:548 modules/containers/blogroll.php:83
|
| 1260 |
+
#: modules/containers/comment.php:43
|
| 1261 |
+
msgid "Nothing to update"
|
| 1262 |
+
msgstr "Ingenting att uppdatera"
|
| 1263 |
+
|
| 1264 |
+
#: includes/any-post.php:558
|
| 1265 |
+
msgid "Updating post %d failed"
|
| 1266 |
+
msgstr "Uppdatering av inlägget %d misslyckades"
|
| 1267 |
+
|
| 1268 |
+
#: includes/any-post.php:595 modules/containers/custom_field.php:317
|
| 1269 |
+
msgid "Failed to delete post \"%s\" (%d)"
|
| 1270 |
+
msgstr "Borttagning misslyckades av inlägget \"%s\" (%d)"
|
| 1271 |
+
|
| 1272 |
+
#: includes/any-post.php:614 modules/containers/custom_field.php:336
|
| 1273 |
+
msgid ""
|
| 1274 |
+
"Can't move post \"%s\" (%d) to the trash because the trash feature is "
|
| 1275 |
+
"disabled"
|
| 1276 |
+
msgstr ""
|
| 1277 |
+
"Kan inte flytta inlägget \"%s\" (%d) till papperskorgen eftersom kasta-"
|
| 1278 |
+
"funktionen är avstängd"
|
| 1279 |
+
|
| 1280 |
+
#: includes/any-post.php:634 modules/containers/custom_field.php:355
|
| 1281 |
+
msgid "Failed to move post \"%s\" (%d) to the trash"
|
| 1282 |
+
msgstr "Misslyckades med att flytta inlägget \"%s\" (%d) till papperskorgen"
|
| 1283 |
+
|
| 1284 |
+
#: includes/any-post.php:742
|
| 1285 |
+
msgid "%d post deleted."
|
| 1286 |
+
msgid_plural "%d posts deleted."
|
| 1287 |
+
msgstr[0] "%d inlägg borttaget."
|
| 1288 |
+
msgstr[1] "%d inlägg borttagna."
|
| 1289 |
+
|
| 1290 |
+
#: includes/any-post.php:744
|
| 1291 |
+
msgid "%d page deleted."
|
| 1292 |
+
msgid_plural "%d pages deleted."
|
| 1293 |
+
msgstr[0] "%d sida borttagen."
|
| 1294 |
+
msgstr[1] "%d sidor borttagna."
|
| 1295 |
+
|
| 1296 |
+
#: includes/any-post.php:746
|
| 1297 |
+
msgid "%d \"%s\" deleted."
|
| 1298 |
+
msgid_plural "%d \"%s\" deleted."
|
| 1299 |
+
msgstr[0] "%d \"%s\" borttagen."
|
| 1300 |
+
msgstr[1] "%d \"%s\" borttagna."
|
| 1301 |
+
|
| 1302 |
+
#: includes/any-post.php:765
|
| 1303 |
+
msgid "%d post moved to the Trash."
|
| 1304 |
+
msgid_plural "%d posts moved to the Trash."
|
| 1305 |
+
msgstr[0] "%d inlägg flyttades till Papperskorgen."
|
| 1306 |
+
msgstr[1] "%d inlägg flyttades till Papperskorgen."
|
| 1307 |
+
|
| 1308 |
+
#: includes/any-post.php:767
|
| 1309 |
+
msgid "%d page moved to the Trash."
|
| 1310 |
+
msgid_plural "%d pages moved to the Trash."
|
| 1311 |
+
msgstr[0] "%d sida flyttades till Papperskorgen."
|
| 1312 |
+
msgstr[1] "%d sidor flyttades till Papperskorgen."
|
| 1313 |
+
|
| 1314 |
+
#: includes/any-post.php:769
|
| 1315 |
+
msgid "%d \"%s\" moved to the Trash."
|
| 1316 |
+
msgid_plural "%d \"%s\" moved to the Trash."
|
| 1317 |
+
msgstr[0] "%d \"%s\" flyttades till Papperskorgen."
|
| 1318 |
+
msgstr[1] "%d \"%s\" flyttades till Papperskorgen."
|
| 1319 |
+
|
| 1320 |
+
#: includes/containers.php:122
|
| 1321 |
+
msgid "%d '%s' has been deleted"
|
| 1322 |
+
msgid_plural "%d '%s' have been deleted"
|
| 1323 |
+
msgstr[0] "%d '%s' har tagits bort"
|
| 1324 |
+
msgstr[1] "%d '%s' har tagits bort"
|
| 1325 |
+
|
| 1326 |
+
#: includes/containers.php:882 includes/containers.php:900
|
| 1327 |
+
msgid "Container type '%s' not recognized"
|
| 1328 |
+
msgstr "Behållartypen '%s' är okänd"
|
| 1329 |
+
|
| 1330 |
+
#: includes/extra-strings.php:2
|
| 1331 |
+
msgctxt "module name"
|
| 1332 |
+
msgid "Basic HTTP"
|
| 1333 |
+
msgstr "Standard HTTP"
|
| 1334 |
+
|
| 1335 |
+
#: includes/extra-strings.php:3
|
| 1336 |
+
msgctxt "module name"
|
| 1337 |
+
msgid "Blogroll items"
|
| 1338 |
+
msgstr "Länkmenyposter (Blogroll items)"
|
| 1339 |
+
|
| 1340 |
+
#: includes/extra-strings.php:4
|
| 1341 |
+
msgctxt "module name"
|
| 1342 |
+
msgid "Comments"
|
| 1343 |
+
msgstr "Kommentarer"
|
| 1344 |
+
|
| 1345 |
+
#: includes/extra-strings.php:5
|
| 1346 |
+
msgctxt "module name"
|
| 1347 |
+
msgid "Custom fields"
|
| 1348 |
+
msgstr "Anpassade fält"
|
| 1349 |
+
|
| 1350 |
+
#: includes/extra-strings.php:6
|
| 1351 |
+
msgctxt "module name"
|
| 1352 |
+
msgid "Embedded DailyMotion videos"
|
| 1353 |
+
msgstr "Inbäddade DailyMotion-videor"
|
| 1354 |
+
|
| 1355 |
+
#: includes/extra-strings.php:7
|
| 1356 |
+
msgctxt "module name"
|
| 1357 |
+
msgid "Embedded GoogleVideo videos"
|
| 1358 |
+
msgstr "Inbäddade GoogleVideo-videor"
|
| 1359 |
+
|
| 1360 |
+
#: includes/extra-strings.php:8
|
| 1361 |
+
msgctxt "module name"
|
| 1362 |
+
msgid "Embedded Vimeo videos"
|
| 1363 |
+
msgstr "Inbäddade Vimeo-videor"
|
| 1364 |
+
|
| 1365 |
+
#: includes/extra-strings.php:9
|
| 1366 |
+
msgctxt "module name"
|
| 1367 |
+
msgid "Embedded YouTube playlists (old embed code)"
|
| 1368 |
+
msgstr "Inbäddade YouTube-spellistor (gammal inbäddningskod)"
|
| 1369 |
+
|
| 1370 |
+
#: includes/extra-strings.php:10
|
| 1371 |
+
msgctxt "module name"
|
| 1372 |
+
msgid "Embedded YouTube videos"
|
| 1373 |
+
msgstr "Inbäddade YouTube-videor"
|
| 1374 |
+
|
| 1375 |
+
#: includes/extra-strings.php:11
|
| 1376 |
+
msgctxt "module name"
|
| 1377 |
+
msgid "Embedded YouTube videos (old embed code)"
|
| 1378 |
+
msgstr "Inbäddade YouTube-videor (gammal inbäddningskod)"
|
| 1379 |
+
|
| 1380 |
+
#: includes/extra-strings.php:12
|
| 1381 |
+
msgctxt "module name"
|
| 1382 |
+
msgid "HTML images"
|
| 1383 |
+
msgstr "HTML-bilder"
|
| 1384 |
+
|
| 1385 |
+
#: includes/extra-strings.php:13
|
| 1386 |
+
msgctxt "module name"
|
| 1387 |
+
msgid "HTML links"
|
| 1388 |
+
msgstr "HTML-länkar"
|
| 1389 |
+
|
| 1390 |
+
#: includes/extra-strings.php:14
|
| 1391 |
+
msgctxt "module name"
|
| 1392 |
+
msgid "MediaFire API"
|
| 1393 |
+
msgstr "MediaFire API"
|
| 1394 |
+
|
| 1395 |
+
#: includes/extra-strings.php:15
|
| 1396 |
+
msgctxt "module name"
|
| 1397 |
+
msgid "Plaintext URLs"
|
| 1398 |
+
msgstr "Råtext-URL:er"
|
| 1399 |
+
|
| 1400 |
+
#: includes/extra-strings.php:16
|
| 1401 |
+
msgctxt "module name"
|
| 1402 |
+
msgid "RapidShare API"
|
| 1403 |
+
msgstr "RapidShare API"
|
| 1404 |
+
|
| 1405 |
+
#: includes/extra-strings.php:17
|
| 1406 |
+
msgctxt "module name"
|
| 1407 |
+
msgid "Smart YouTube httpv:// URLs"
|
| 1408 |
+
msgstr "Smart YouTube httpv:// URL:er"
|
| 1409 |
+
|
| 1410 |
+
#: includes/extra-strings.php:18
|
| 1411 |
+
msgctxt "module name"
|
| 1412 |
+
msgid "YouTube API"
|
| 1413 |
+
msgstr "YouTube API"
|
| 1414 |
+
|
| 1415 |
+
#: includes/extra-strings.php:19
|
| 1416 |
+
msgctxt "module name"
|
| 1417 |
+
msgid "Posts"
|
| 1418 |
+
msgstr "Inlägg"
|
| 1419 |
+
|
| 1420 |
+
#: includes/extra-strings.php:20
|
| 1421 |
+
msgctxt "module name"
|
| 1422 |
+
msgid "Pages"
|
| 1423 |
+
msgstr "Sidor"
|
| 1424 |
+
|
| 1425 |
+
#: includes/instances.php:105 includes/instances.php:161
|
| 1426 |
+
msgid "Container %s[%d] not found"
|
| 1427 |
+
msgstr "Behållaren %s[%d] hittades ej"
|
| 1428 |
+
|
| 1429 |
+
#: includes/instances.php:114 includes/instances.php:170
|
| 1430 |
+
msgid "Parser '%s' not found."
|
| 1431 |
+
msgstr "Texttolken '%s' hittades ej."
|
| 1432 |
+
|
| 1433 |
+
#: includes/link-query.php:25
|
| 1434 |
+
msgid "All"
|
| 1435 |
+
msgstr "Alla"
|
| 1436 |
+
|
| 1437 |
+
#: includes/link-query.php:26
|
| 1438 |
+
msgid "Detected Links"
|
| 1439 |
+
msgstr "Funna Länkar"
|
| 1440 |
+
|
| 1441 |
+
#: includes/link-query.php:27
|
| 1442 |
+
msgid "No links found (yet)"
|
| 1443 |
+
msgstr "Inga länkar funna (ännu)"
|
| 1444 |
+
|
| 1445 |
+
#: includes/link-query.php:36
|
| 1446 |
+
msgid "Broken"
|
| 1447 |
+
msgstr "Brutna"
|
| 1448 |
+
|
| 1449 |
+
#: includes/link-query.php:38
|
| 1450 |
+
msgid "No broken links found"
|
| 1451 |
+
msgstr "Inga brutna länkar funna"
|
| 1452 |
+
|
| 1453 |
+
#: includes/link-query.php:46
|
| 1454 |
+
msgctxt "filter name"
|
| 1455 |
+
msgid "Warnings"
|
| 1456 |
+
msgstr "Varningar"
|
| 1457 |
+
|
| 1458 |
+
#: includes/link-query.php:47
|
| 1459 |
+
msgid "Warnings"
|
| 1460 |
+
msgstr "Varningar"
|
| 1461 |
+
|
| 1462 |
+
#: includes/link-query.php:48
|
| 1463 |
+
msgid "No warnings found"
|
| 1464 |
+
msgstr "Inga varningar funna"
|
| 1465 |
+
|
| 1466 |
+
#: includes/link-query.php:56
|
| 1467 |
+
msgid "Redirects"
|
| 1468 |
+
msgstr "Omdirigeringar"
|
| 1469 |
+
|
| 1470 |
+
#: includes/link-query.php:57
|
| 1471 |
+
msgid "Redirected Links"
|
| 1472 |
+
msgstr "Omdirigerade Länkar"
|
| 1473 |
+
|
| 1474 |
+
#: includes/link-query.php:58
|
| 1475 |
+
msgid "No redirects found"
|
| 1476 |
+
msgstr "Inga omdirigeringar funna"
|
| 1477 |
+
|
| 1478 |
+
#: includes/link-query.php:66
|
| 1479 |
+
msgid "Dismissed"
|
| 1480 |
+
msgstr "Avvisade"
|
| 1481 |
+
|
| 1482 |
+
#: includes/link-query.php:67
|
| 1483 |
+
msgid "Dismissed Links"
|
| 1484 |
+
msgstr "Avvisade Länkar"
|
| 1485 |
+
|
| 1486 |
+
#: includes/link-query.php:68
|
| 1487 |
+
msgid "No dismissed links found"
|
| 1488 |
+
msgstr "Inga avvisade länkar funna"
|
| 1489 |
+
|
| 1490 |
+
#: includes/link-query.php:82
|
| 1491 |
+
msgid "Search Results"
|
| 1492 |
+
msgstr "Sökresultat"
|
| 1493 |
+
|
| 1494 |
+
#: includes/link-query.php:83 includes/link-query.php:130
|
| 1495 |
+
msgid "No links found for your query"
|
| 1496 |
+
msgstr "Inga länkar funna för din förfrågan"
|
| 1497 |
+
|
| 1498 |
+
#: includes/links.php:224
|
| 1499 |
+
msgid "The plugin script was terminated while trying to check the link."
|
| 1500 |
+
msgstr "Tilläggets skriptkodskörning avbröts när länken skulle kontrolleras."
|
| 1501 |
+
|
| 1502 |
+
#: includes/links.php:271
|
| 1503 |
+
msgid "The plugin doesn't know how to check this type of link."
|
| 1504 |
+
msgstr "Tillägget vet inte hur man kontrollerar denna typ av länk."
|
| 1505 |
+
|
| 1506 |
+
#: includes/links.php:502
|
| 1507 |
+
msgid "Link is broken."
|
| 1508 |
+
msgstr "Länker är bruten."
|
| 1509 |
+
|
| 1510 |
+
#: includes/links.php:504
|
| 1511 |
+
msgid "Link is valid."
|
| 1512 |
+
msgstr "Länken är giltig."
|
| 1513 |
+
|
| 1514 |
+
#: includes/links.php:728 includes/links.php:830 includes/links.php:857
|
| 1515 |
+
msgid "Link is not valid"
|
| 1516 |
+
msgstr "Länken är ogiltig"
|
| 1517 |
+
|
| 1518 |
+
#: includes/links.php:745
|
| 1519 |
+
msgid ""
|
| 1520 |
+
"This link can not be edited because it is not used anywhere on this site."
|
| 1521 |
+
msgstr ""
|
| 1522 |
+
"Denna länk kan inte redigeras eftersom den inte används någonstans på "
|
| 1523 |
+
"webbplatsen."
|
| 1524 |
+
|
| 1525 |
+
#: includes/links.php:771
|
| 1526 |
+
msgid "Failed to create a DB entry for the new URL."
|
| 1527 |
+
msgstr "Misslyckades med att skapa DB-post för den nya URL:en."
|
| 1528 |
+
|
| 1529 |
+
#: includes/links.php:837
|
| 1530 |
+
msgid "This link is not a redirect"
|
| 1531 |
+
msgstr "Denna länk är inte en omdirigering"
|
| 1532 |
+
|
| 1533 |
+
#: includes/links.php:884 includes/links.php:921
|
| 1534 |
+
msgid "Couldn't delete the link's database record"
|
| 1535 |
+
msgstr "Kunde inte ta bort länkens databaspost"
|
| 1536 |
+
|
| 1537 |
+
#: includes/links.php:995
|
| 1538 |
+
msgctxt "link status"
|
| 1539 |
+
msgid "Unknown"
|
| 1540 |
+
msgstr "Okänd"
|
| 1541 |
+
|
| 1542 |
+
#: includes/links.php:1008 modules/checkers/http.php:308
|
| 1543 |
+
#: modules/extras/mediafire.php:115
|
| 1544 |
+
msgid "Unknown Error"
|
| 1545 |
+
msgstr "Okänt Fel"
|
| 1546 |
+
|
| 1547 |
+
#: includes/links.php:1032
|
| 1548 |
+
msgid "Not checked"
|
| 1549 |
+
msgstr "Ej kontrollerad"
|
| 1550 |
+
|
| 1551 |
+
#: includes/links.php:1035
|
| 1552 |
+
msgid "False positive"
|
| 1553 |
+
msgstr "Falskt positiv"
|
| 1554 |
+
|
| 1555 |
+
#: includes/links.php:1038 modules/extras/rapidshare.php:145
|
| 1556 |
+
#: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
|
| 1557 |
+
msgctxt "link status"
|
| 1558 |
+
msgid "OK"
|
| 1559 |
+
msgstr "OK"
|
| 1560 |
+
|
| 1561 |
+
#: includes/parsers.php:117
|
| 1562 |
+
msgid "Editing is not implemented in the '%s' parser"
|
| 1563 |
+
msgstr "Redigering är ej implementerat i texttolken '%s'"
|
| 1564 |
+
|
| 1565 |
+
#: includes/parsers.php:132
|
| 1566 |
+
msgid "Unlinking is not implemented in the '%s' parser"
|
| 1567 |
+
msgstr "Avlänkning är ej implementerat i texttolken '%s'"
|
| 1568 |
+
|
| 1569 |
+
#: includes/utility-class.php:245
|
| 1570 |
+
msgid "%d second"
|
| 1571 |
+
msgid_plural "%d seconds"
|
| 1572 |
+
msgstr[0] "%d sekund"
|
| 1573 |
+
msgstr[1] "%d sekunder"
|
| 1574 |
+
|
| 1575 |
+
#: includes/utility-class.php:246
|
| 1576 |
+
msgid "%d second ago"
|
| 1577 |
+
msgid_plural "%d seconds ago"
|
| 1578 |
+
msgstr[0] "%d sekund sedan"
|
| 1579 |
+
msgstr[1] "%d sekunder sedan"
|
| 1580 |
+
|
| 1581 |
+
#: includes/utility-class.php:249
|
| 1582 |
+
msgid "%d minute"
|
| 1583 |
+
msgid_plural "%d minutes"
|
| 1584 |
+
msgstr[0] "%d minut"
|
| 1585 |
+
msgstr[1] "%d minuter"
|
| 1586 |
+
|
| 1587 |
+
#: includes/utility-class.php:250
|
| 1588 |
+
msgid "%d minute ago"
|
| 1589 |
+
msgid_plural "%d minutes ago"
|
| 1590 |
+
msgstr[0] "%d minut sedan"
|
| 1591 |
+
msgstr[1] "%d minuter sedan"
|
| 1592 |
+
|
| 1593 |
+
#: includes/utility-class.php:253
|
| 1594 |
+
msgid "%d hour"
|
| 1595 |
+
msgid_plural "%d hours"
|
| 1596 |
+
msgstr[0] "%d timme"
|
| 1597 |
+
msgstr[1] "%d timmar"
|
| 1598 |
+
|
| 1599 |
+
#: includes/utility-class.php:254
|
| 1600 |
+
msgid "%d hour ago"
|
| 1601 |
+
msgid_plural "%d hours ago"
|
| 1602 |
+
msgstr[0] "%d timme sedan"
|
| 1603 |
+
msgstr[1] "%d timmar sedan"
|
| 1604 |
+
|
| 1605 |
+
#: includes/utility-class.php:257
|
| 1606 |
+
msgid "%d day"
|
| 1607 |
+
msgid_plural "%d days"
|
| 1608 |
+
msgstr[0] "%d dag"
|
| 1609 |
+
msgstr[1] "%d dagar"
|
| 1610 |
+
|
| 1611 |
+
#: includes/utility-class.php:258
|
| 1612 |
+
msgid "%d day ago"
|
| 1613 |
+
msgid_plural "%d days ago"
|
| 1614 |
+
msgstr[0] "%d dag sedan"
|
| 1615 |
+
msgstr[1] "%d dagar sedan"
|
| 1616 |
+
|
| 1617 |
+
#: includes/utility-class.php:261
|
| 1618 |
+
msgid "%d month"
|
| 1619 |
+
msgid_plural "%d months"
|
| 1620 |
+
msgstr[0] "%d månad"
|
| 1621 |
+
msgstr[1] "%d månader"
|
| 1622 |
+
|
| 1623 |
+
#: includes/utility-class.php:262
|
| 1624 |
+
msgid "%d month ago"
|
| 1625 |
+
msgid_plural "%d months ago"
|
| 1626 |
+
msgstr[0] "%d månad sedan"
|
| 1627 |
+
msgstr[1] "%d månader sedan"
|
| 1628 |
+
|
| 1629 |
+
#: modules/checkers/http.php:285
|
| 1630 |
+
msgid "Server Not Found"
|
| 1631 |
+
msgstr "Servern Hittades Ej"
|
| 1632 |
+
|
| 1633 |
+
#: modules/checkers/http.php:301
|
| 1634 |
+
msgid "Connection Failed"
|
| 1635 |
+
msgstr "Anslutning Misslyckades"
|
| 1636 |
+
|
| 1637 |
+
#: modules/checkers/http.php:344 modules/checkers/http.php:414
|
| 1638 |
+
msgid "HTTP code : %d"
|
| 1639 |
+
msgstr "HTTP-kod: %d"
|
| 1640 |
+
|
| 1641 |
+
#: modules/checkers/http.php:346 modules/checkers/http.php:416
|
| 1642 |
+
msgid "(No response)"
|
| 1643 |
+
msgstr "(Inget svar)"
|
| 1644 |
+
|
| 1645 |
+
#: modules/checkers/http.php:352
|
| 1646 |
+
msgid "Most likely the connection timed out or the domain doesn't exist."
|
| 1647 |
+
msgstr ""
|
| 1648 |
+
"Troligast är att tidsgränsen för anslutning löpte ut eller att domänen inte "
|
| 1649 |
+
"finns."
|
| 1650 |
+
|
| 1651 |
+
#: modules/checkers/http.php:423
|
| 1652 |
+
msgid "Request timed out."
|
| 1653 |
+
msgstr "Tidsgräns för förfrågan överskriden."
|
| 1654 |
+
|
| 1655 |
+
#: modules/checkers/http.php:441
|
| 1656 |
+
msgid "Using Snoopy"
|
| 1657 |
+
msgstr "Använder Snoopy"
|
| 1658 |
+
|
| 1659 |
+
#: modules/containers/blogroll.php:21
|
| 1660 |
+
msgid "Bookmark"
|
| 1661 |
+
msgstr "Sätt som bokmärke"
|
| 1662 |
+
|
| 1663 |
+
#: modules/containers/blogroll.php:27 modules/containers/blogroll.php:46
|
| 1664 |
+
msgid "Edit this bookmark"
|
| 1665 |
+
msgstr "Redigera detta bokmärke"
|
| 1666 |
+
|
| 1667 |
+
#: modules/containers/blogroll.php:47
|
| 1668 |
+
msgid ""
|
| 1669 |
+
"You are about to delete this link '%s'\n"
|
| 1670 |
+
" 'Cancel' to stop, 'OK' to delete."
|
| 1671 |
+
msgstr ""
|
| 1672 |
+
"Du håller på att ta bort denna länk '%s'\n"
|
| 1673 |
+
" 'Avbryt' för att avbryta, 'OK' för att ta bort."
|
| 1674 |
+
|
| 1675 |
+
#: modules/containers/blogroll.php:97
|
| 1676 |
+
msgid "Updating bookmark %d failed"
|
| 1677 |
+
msgstr "Uppdatering av bokmärket %d misslyckades"
|
| 1678 |
+
|
| 1679 |
+
#: modules/containers/blogroll.php:128
|
| 1680 |
+
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
| 1681 |
+
msgstr "Misslyckades med att ta bort länkmenylänk (blogroll link) \"%s\" (%d)"
|
| 1682 |
+
|
| 1683 |
+
#: modules/containers/blogroll.php:298
|
| 1684 |
+
msgid "%d blogroll link deleted."
|
| 1685 |
+
msgid_plural "%d blogroll links deleted."
|
| 1686 |
+
msgstr[0] "%d länkmenylänk (blogroll link) borttagen."
|
| 1687 |
+
msgstr[1] "%d länkmenylänkar (blogroll links) borttagna."
|
| 1688 |
+
|
| 1689 |
+
#: modules/containers/comment.php:53
|
| 1690 |
+
msgid "Updating comment %d failed"
|
| 1691 |
+
msgstr "Uppdatering av kommentar %d misslyckades"
|
| 1692 |
+
|
| 1693 |
+
#: modules/containers/comment.php:74
|
| 1694 |
+
msgid "Failed to delete comment %d"
|
| 1695 |
+
msgstr "Misslyckades med att ta bort kommentar %d"
|
| 1696 |
+
|
| 1697 |
+
#: modules/containers/comment.php:95
|
| 1698 |
+
msgid "Can't move comment %d to the trash"
|
| 1699 |
+
msgstr "Kan inte flytta kommentar %d till papperskorgen"
|
| 1700 |
+
|
| 1701 |
+
#: modules/containers/comment.php:159 modules/containers/comment.php:201
|
| 1702 |
+
msgid "Edit comment"
|
| 1703 |
+
msgstr "Redigera kommentar"
|
| 1704 |
+
|
| 1705 |
+
#: modules/containers/comment.php:166
|
| 1706 |
+
msgid "Delete Permanently"
|
| 1707 |
+
msgstr "Ta Bort Permanent"
|
| 1708 |
+
|
| 1709 |
+
#: modules/containers/comment.php:168
|
| 1710 |
+
msgid "Move this comment to the trash"
|
| 1711 |
+
msgstr "Flytta denna kommentar till papperskorgen"
|
| 1712 |
+
|
| 1713 |
+
#: modules/containers/comment.php:168
|
| 1714 |
+
msgctxt "verb"
|
| 1715 |
+
msgid "Trash"
|
| 1716 |
+
msgstr "Släng"
|
| 1717 |
+
|
| 1718 |
+
#: modules/containers/comment.php:172
|
| 1719 |
+
msgid "View comment"
|
| 1720 |
+
msgstr "Visa kommentar"
|
| 1721 |
+
|
| 1722 |
+
#: modules/containers/comment.php:189
|
| 1723 |
+
msgid "Comment"
|
| 1724 |
+
msgstr "Kommentar"
|
| 1725 |
+
|
| 1726 |
+
#: modules/containers/comment.php:364
|
| 1727 |
+
msgid "%d comment has been deleted."
|
| 1728 |
+
msgid_plural "%d comments have been deleted."
|
| 1729 |
+
msgstr[0] "%d kommentar har tagits bort."
|
| 1730 |
+
msgstr[1] "%d kommentarer har tagits bort."
|
| 1731 |
+
|
| 1732 |
+
#: modules/containers/comment.php:383
|
| 1733 |
+
msgid "%d comment moved to the Trash."
|
| 1734 |
+
msgid_plural "%d comments moved to the Trash."
|
| 1735 |
+
msgstr[0] "%d kommentar flyttad till Papperskorgen."
|
| 1736 |
+
msgstr[1] "%d kommentarer flyttade till Papperskorgen."
|
| 1737 |
+
|
| 1738 |
+
#: modules/containers/custom_field.php:85
|
| 1739 |
+
msgid "Failed to update the meta field '%s' on %s [%d]"
|
| 1740 |
+
msgstr "Misslyckades med att uppdatera metafältet '%s' on %s [%d]"
|
| 1741 |
+
|
| 1742 |
+
#: modules/containers/custom_field.php:115
|
| 1743 |
+
msgid "Failed to delete the meta field '%s' on %s [%d]"
|
| 1744 |
+
msgstr "Misslyckades med att ta bort metafältet '%s' on %s [%d]"
|
| 1745 |
+
|
| 1746 |
+
#: modules/containers/custom_field.php:216
|
| 1747 |
+
msgid "Edit this post"
|
| 1748 |
+
msgstr "Redigera detta inlägg"
|
| 1749 |
+
|
| 1750 |
+
#: modules/containers/custom_field.php:250
|
| 1751 |
+
msgid "View \"%s\""
|
| 1752 |
+
msgstr "Visa \"%s\""
|
| 1753 |
+
|
| 1754 |
+
#: modules/containers/dummy.php:34 modules/containers/dummy.php:45
|
| 1755 |
+
msgid "I don't know how to edit a '%s' [%d]."
|
| 1756 |
+
msgstr "Jag vet inte hur man redigerar en '%s' [%d]."
|
| 1757 |
+
|
| 1758 |
+
#: modules/extras/dailymotion-embed.php:23
|
| 1759 |
+
msgid "DailyMotion Video"
|
| 1760 |
+
msgstr "DailyMotion-video"
|
| 1761 |
+
|
| 1762 |
+
#: modules/extras/dailymotion-embed.php:24
|
| 1763 |
+
msgid "Embedded DailyMotion video"
|
| 1764 |
+
msgstr "Inbäddad DailyMotion-video"
|
| 1765 |
+
|
| 1766 |
+
#: modules/extras/embed-parser-base.php:197
|
| 1767 |
+
msgid ""
|
| 1768 |
+
"Embedded videos can't be edited using Broken Link Checker. Please edit or "
|
| 1769 |
+
"replace the video in question manually."
|
| 1770 |
+
msgstr ""
|
| 1771 |
+
"Inbäddade videofiler kan inte redigeras med Broken Link Checker. Var god at "
|
| 1772 |
+
"redigera eller ersätt videofilen ifråga manuellt."
|
| 1773 |
+
|
| 1774 |
+
#: modules/extras/googlevideo-embed.php:24
|
| 1775 |
+
msgid "GoogleVideo Video"
|
| 1776 |
+
msgstr "GoogleVideo-video"
|
| 1777 |
+
|
| 1778 |
+
#: modules/extras/googlevideo-embed.php:25
|
| 1779 |
+
msgid "Embedded GoogleVideo video"
|
| 1780 |
+
msgstr "Inbäddad GoogleVideo-video"
|
| 1781 |
+
|
| 1782 |
+
#: modules/extras/mediafire.php:97 modules/extras/mediafire.php:103
|
| 1783 |
+
#: modules/extras/rapidshare.php:139
|
| 1784 |
+
msgid "Not Found"
|
| 1785 |
+
msgstr "Ej Funnet"
|
| 1786 |
+
|
| 1787 |
+
#: modules/extras/mediafire.php:109
|
| 1788 |
+
msgid "Permission Denied"
|
| 1789 |
+
msgstr "Tillstånd Nekas"
|
| 1790 |
+
|
| 1791 |
+
#: modules/extras/rapidshare.php:51
|
| 1792 |
+
msgid "Using RapidShare API"
|
| 1793 |
+
msgstr "Använder RapidShare API"
|
| 1794 |
+
|
| 1795 |
+
#: modules/extras/rapidshare.php:158
|
| 1796 |
+
msgid "RS Server Down"
|
| 1797 |
+
msgstr "RS-servern Nere"
|
| 1798 |
+
|
| 1799 |
+
#: modules/extras/rapidshare.php:165
|
| 1800 |
+
msgid "File Blocked"
|
| 1801 |
+
msgstr "Fil Blockerad"
|
| 1802 |
+
|
| 1803 |
+
#: modules/extras/rapidshare.php:172
|
| 1804 |
+
msgid "File Locked"
|
| 1805 |
+
msgstr "Fil Låst"
|
| 1806 |
+
|
| 1807 |
+
#: modules/extras/rapidshare.php:183
|
| 1808 |
+
msgid "RapidShare : %s"
|
| 1809 |
+
msgstr "RapidShare: %s"
|
| 1810 |
+
|
| 1811 |
+
#: modules/extras/rapidshare.php:189
|
| 1812 |
+
msgid "RapidShare API error: %s"
|
| 1813 |
+
msgstr "RapidShare API-fel: %s"
|
| 1814 |
+
|
| 1815 |
+
#: modules/extras/vimeo-embed.php:24
|
| 1816 |
+
msgid "Vimeo Video"
|
| 1817 |
+
msgstr "Vimeo Video"
|
| 1818 |
+
|
| 1819 |
+
#: modules/extras/vimeo-embed.php:25
|
| 1820 |
+
msgid "Embedded Vimeo video"
|
| 1821 |
+
msgstr "Inbäddad Vimeo-video"
|
| 1822 |
+
|
| 1823 |
+
#: modules/extras/youtube-embed.php:24 modules/extras/youtube-iframe.php:25
|
| 1824 |
+
msgid "YouTube Video"
|
| 1825 |
+
msgstr "YouTube-video"
|
| 1826 |
+
|
| 1827 |
+
#: modules/extras/youtube-embed.php:25 modules/extras/youtube-iframe.php:26
|
| 1828 |
+
msgid "Embedded YouTube video"
|
| 1829 |
+
msgstr "Inbäddad YouTube-video"
|
| 1830 |
+
|
| 1831 |
+
#: modules/extras/youtube-playlist-embed.php:24
|
| 1832 |
+
msgid "YouTube Playlist"
|
| 1833 |
+
msgstr "YouTube-spellista"
|
| 1834 |
+
|
| 1835 |
+
#: modules/extras/youtube-playlist-embed.php:25
|
| 1836 |
+
msgid "Embedded YouTube playlist"
|
| 1837 |
+
msgstr "Inbäddad YouTube-spellista"
|
| 1838 |
+
|
| 1839 |
+
#: modules/extras/youtube.php:124 modules/extras/youtube.php:127
|
| 1840 |
+
msgid "Video Not Found"
|
| 1841 |
+
msgstr "Video Ej Funnen"
|
| 1842 |
+
|
| 1843 |
+
#: modules/extras/youtube.php:135
|
| 1844 |
+
msgid "Video Removed"
|
| 1845 |
+
msgstr "Video Borttagen"
|
| 1846 |
+
|
| 1847 |
+
#: modules/extras/youtube.php:143
|
| 1848 |
+
msgid "Invalid Video ID"
|
| 1849 |
+
msgstr "Ogiltigt Video-ID"
|
| 1850 |
+
|
| 1851 |
+
#: modules/extras/youtube.php:155
|
| 1852 |
+
msgid "Video OK"
|
| 1853 |
+
msgstr "Video OK"
|
| 1854 |
+
|
| 1855 |
+
#: modules/extras/youtube.php:156 modules/extras/youtube.php:177
|
| 1856 |
+
#: modules/extras/youtube.php:249 modules/extras/youtube.php:289
|
| 1857 |
+
msgid "OK"
|
| 1858 |
+
msgstr "OK"
|
| 1859 |
+
|
| 1860 |
+
#: modules/extras/youtube.php:170 modules/extras/youtube.php:271
|
| 1861 |
+
msgid "Video status : %s%s"
|
| 1862 |
+
msgstr "Videostatus : %s%s"
|
| 1863 |
+
|
| 1864 |
+
#: modules/extras/youtube.php:182 modules/extras/youtube.php:280
|
| 1865 |
+
msgid "Video Restricted"
|
| 1866 |
+
msgstr "Video Begränsad"
|
| 1867 |
+
|
| 1868 |
+
#: modules/extras/youtube.php:199 modules/extras/youtube.php:305
|
| 1869 |
+
msgid "Unknown YouTube API response received."
|
| 1870 |
+
msgstr "Okänt svar från YouTube API mottaget."
|
| 1871 |
+
|
| 1872 |
+
#: modules/extras/youtube.php:217 modules/extras/youtube.php:220
|
| 1873 |
+
msgid "Playlist Not Found"
|
| 1874 |
+
msgstr "Spellista Ej Funnen"
|
| 1875 |
+
|
| 1876 |
+
#: modules/extras/youtube.php:227
|
| 1877 |
+
msgid "Playlist Restricted"
|
| 1878 |
+
msgstr "Spellista Begränsad"
|
| 1879 |
+
|
| 1880 |
+
#: modules/extras/youtube.php:234
|
| 1881 |
+
msgid "Invalid Playlist"
|
| 1882 |
+
msgstr "Ogiltig Spellista"
|
| 1883 |
+
|
| 1884 |
+
#: modules/extras/youtube.php:248
|
| 1885 |
+
msgid "Playlist OK"
|
| 1886 |
+
msgstr "Spellista OK"
|
| 1887 |
+
|
| 1888 |
+
#: modules/extras/youtube.php:255
|
| 1889 |
+
msgid "This playlist has no entries or all entries have been deleted."
|
| 1890 |
+
msgstr "Spellistan har inga poster eller så har alla poster tagits bort."
|
| 1891 |
+
|
| 1892 |
+
#: modules/extras/youtube.php:256
|
| 1893 |
+
msgid "Empty Playlist"
|
| 1894 |
+
msgstr "Töm Spellista"
|
| 1895 |
+
|
| 1896 |
+
#: modules/parsers/image.php:164
|
| 1897 |
+
msgid "Image"
|
| 1898 |
+
msgstr "Bild"
|
| 1899 |
+
|
| 1900 |
+
#: modules/parsers/metadata.php:119
|
| 1901 |
+
msgid "Custom field"
|
| 1902 |
+
msgstr "Anpassat fält"
|
| 1903 |
+
|
| 1904 |
+
#. Plugin URI of the plugin/theme
|
| 1905 |
+
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 1906 |
+
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
| 1907 |
+
|
| 1908 |
+
#. Description of the plugin/theme
|
| 1909 |
+
msgid ""
|
| 1910 |
+
"Checks your blog for broken links and missing images and notifies you on the "
|
| 1911 |
+
"dashboard if any are found."
|
| 1912 |
+
msgstr ""
|
| 1913 |
+
"Söker igenom din blogg efter brutna länkar och saknade bilder och meddelar "
|
| 1914 |
+
"dig på Panelen om några hittats."
|
| 1915 |
+
|
| 1916 |
+
#. Author of the plugin/theme
|
| 1917 |
+
msgid "Janis Elsts"
|
| 1918 |
+
msgstr "Janis Elsts"
|
| 1919 |
+
|
| 1920 |
+
#. Author URI of the plugin/theme
|
| 1921 |
+
msgid "http://w-shadow.com/"
|
| 1922 |
+
msgstr "http://w-shadow.com/"
|
| 1923 |
+
|
| 1924 |
+
#~ msgid "Details"
|
| 1925 |
+
#~ msgstr "Detaljer"
|
| 1926 |
+
|
| 1927 |
+
#~ msgctxt "module name"
|
| 1928 |
+
#~ msgid "Embedded Megavideo videos"
|
| 1929 |
+
#~ msgstr "Inbäddade Megavideo-videor"
|
| 1930 |
+
|
| 1931 |
+
#~ msgctxt "module name"
|
| 1932 |
+
#~ msgid "FileServe API"
|
| 1933 |
+
#~ msgstr "FileServe API"
|
| 1934 |
+
|
| 1935 |
+
#~ msgctxt "module name"
|
| 1936 |
+
#~ msgid "MegaUpload API"
|
| 1937 |
+
#~ msgstr "MegaUpload API"
|
| 1938 |
+
|
| 1939 |
+
#~ msgid "Using FileServe API"
|
| 1940 |
+
#~ msgstr "Använder FileServe API"
|
| 1941 |
+
|
| 1942 |
+
#~ msgid "FileServe : %d %s"
|
| 1943 |
+
#~ msgstr "FileServe: %d %s"
|
| 1944 |
+
|
| 1945 |
+
#~ msgid "File Temporarily Unavailable"
|
| 1946 |
+
#~ msgstr "Filen är Temporärt Otillgänglig"
|
| 1947 |
+
|
| 1948 |
+
#~ msgid "API Error"
|
| 1949 |
+
#~ msgstr "API-fel"
|
| 1950 |
+
|
| 1951 |
+
#~ msgid "Megavideo Video"
|
| 1952 |
+
#~ msgstr "Megavideo-video"
|
| 1953 |
+
|
| 1954 |
+
#~ msgid "Embedded Megavideo video"
|
| 1955 |
+
#~ msgstr "Inbäddad Megavideo-video"
|
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: whiteshadow
|
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
| 4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
| 5 |
Requires at least: 3.2
|
| 6 |
-
Tested up to: 4.2
|
| 7 |
-
Stable tag: 1.10.
|
| 8 |
|
| 9 |
This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
|
| 10 |
|
|
@@ -69,6 +69,7 @@ You can also click on the contents of the "Status" or "Link Text" columns to get
|
|
| 69 |
* Serbo-Croatian - [Borisa Djuraskovic](http://www.webhostinghub.com)
|
| 70 |
* Slovakian - [Patrik Žec](http://patwist.com/)
|
| 71 |
* Spanish - [Neoshinji](http://blog.tuayudainformatica.com/traducciones-de-plugins-wordpress/)
|
|
|
|
| 72 |
* Turkish - [Murat Durgun](http://www.lanwifi.net/)
|
| 73 |
* Ukrainian - [Stas Mykhajlyuk](http://www.kosivart.com/)
|
| 74 |
* Vietnamese - [Biz.O](http://bizover.net/)
|
|
@@ -98,6 +99,14 @@ To upgrade your installation
|
|
| 98 |
|
| 99 |
== Changelog ==
|
| 100 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
= 1.10.7 =
|
| 102 |
* Tested up to WordPress 4.2.
|
| 103 |
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
| 4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
| 5 |
Requires at least: 3.2
|
| 6 |
+
Tested up to: 4.2.1
|
| 7 |
+
Stable tag: 1.10.8
|
| 8 |
|
| 9 |
This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
|
| 10 |
|
| 69 |
* Serbo-Croatian - [Borisa Djuraskovic](http://www.webhostinghub.com)
|
| 70 |
* Slovakian - [Patrik Žec](http://patwist.com/)
|
| 71 |
* Spanish - [Neoshinji](http://blog.tuayudainformatica.com/traducciones-de-plugins-wordpress/)
|
| 72 |
+
* Swedish - mepmepmep
|
| 73 |
* Turkish - [Murat Durgun](http://www.lanwifi.net/)
|
| 74 |
* Ukrainian - [Stas Mykhajlyuk](http://www.kosivart.com/)
|
| 75 |
* Vietnamese - [Biz.O](http://bizover.net/)
|
| 99 |
|
| 100 |
== Changelog ==
|
| 101 |
|
| 102 |
+
= 1.10.8 =
|
| 103 |
+
* Added a Swedish translation.
|
| 104 |
+
* Fixed an encoding-related bug that caused some translated text on the "Broken Links" to show up as gibberish.
|
| 105 |
+
* Fixed a potential security vulnerability where the "Final URL" field was not sanitized.
|
| 106 |
+
* Fixed link text being truncated to 250 characters.
|
| 107 |
+
* Fixed the "Edit URL" function updating the link text even when the user left that field unchanged.
|
| 108 |
+
* Tested up to 4.2.1.
|
| 109 |
+
|
| 110 |
= 1.10.7 =
|
| 111 |
* Tested up to WordPress 4.2.
|
| 112 |
|
