Version Description
- Added an option to send post authors notifications about broken links in their posts.
- Added the ability to sort links by URL (click the column header).
- Added YouTube API throttling to avoid going over the request quota, which could result in false positives on blogs with lots of YouTube videos.
- Added a Bulgarian translation.
- Updated Italian, German and Persian translations.
- Fixed a bug where the "Feedback" and other screen meta links wouldn't show up in WP 3.3.
- Fixed the tab CSS for the plugin settings page. Now they should be the right size and look the same in all modern browsers (tested in IE, Firefox, Chrome and Opera).
- Fixed drop-down arrows showing up on meta links that don't actually have dropdowns.
- Tested on WP 3.3 (RC2).
Download this release
Release Info
Developer | whiteshadow |
Plugin | Broken Link Checker |
Version | 1.4 |
Comparing to | |
See all releases |
Code changes from version 1.3.1 to 1.4
- broken-link-checker.php +1 -1
- core/core.php +155 -115
- core/init.php +5 -3
- css/options-page.css +3 -12
- includes/admin/table-printer.php +32 -3
- includes/containers.php +16 -16
- includes/extra-strings.php +1 -0
- includes/instances.php +1 -2
- includes/link-query.php +42 -6
- includes/links.php +3 -3
- includes/module-manager.php +5 -3
- includes/parsers.php +1 -1
- includes/screen-meta-links.php +8 -4
- includes/wp-mutex.php +5 -5
- languages/broken-link-checker-bg_BG.mo +0 -0
- languages/broken-link-checker-bg_BG.po +1674 -0
- languages/broken-link-checker-de_DE.mo +0 -0
- languages/broken-link-checker-de_DE.po +516 -508
- languages/broken-link-checker-fa_IR.mo +0 -0
- languages/broken-link-checker-fa_IR.po +2 -2
- languages/broken-link-checker-it_IT.mo +0 -0
- languages/broken-link-checker-it_IT.po +262 -226
- languages/broken-link-checker.pot +553 -541
- modules/containers/comment.php +31 -47
- modules/extras/youtube.php +12 -2
- readme.txt +17 -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.
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/blog/
|
9 |
Text Domain: broken-link-checker
|
3 |
Plugin Name: Broken Link Checker
|
4 |
Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
|
5 |
Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
|
6 |
+
Version: 1.4
|
7 |
Author: Janis Elsts
|
8 |
Author URI: http://w-shadow.com/blog/
|
9 |
Text Domain: broken-link-checker
|
core/core.php
CHANGED
@@ -71,7 +71,7 @@ class wsBrokenLinkChecker {
|
|
71 |
$this->setup_cron_events();
|
72 |
|
73 |
//Set hooks that listen for our Cron actions
|
74 |
-
add_action('blc_cron_email_notifications', array( &$this, '
|
75 |
add_action('blc_cron_check_links', array(&$this, 'cron_check_links'));
|
76 |
add_action('blc_cron_database_maintenance', array(&$this, 'database_maintenance'));
|
77 |
add_action('blc_cron_check_news', array(&$this, 'check_news'));
|
@@ -216,38 +216,6 @@ class wsBrokenLinkChecker {
|
|
216 |
wp_enqueue_script('sprintf', plugins_url('js/sprintf.js', BLC_PLUGIN_FILE)); //Used in error messages
|
217 |
}
|
218 |
|
219 |
-
/**
|
220 |
-
* Load the UserVoice script for use with the "Feedback" widget
|
221 |
-
*
|
222 |
-
* @return void
|
223 |
-
*/
|
224 |
-
function uservoice_widget(){
|
225 |
-
?>
|
226 |
-
<script type="text/javascript">
|
227 |
-
jQuery('#blc-feedback-widget').click(function(){
|
228 |
-
//Launch UserVoice
|
229 |
-
UserVoice.Popin.show(uservoiceOptions);
|
230 |
-
return false;
|
231 |
-
});
|
232 |
-
|
233 |
-
var uservoiceOptions = {
|
234 |
-
key: 'whiteshadow',
|
235 |
-
host: 'feedback.w-shadow.com',
|
236 |
-
forum: '58400',
|
237 |
-
lang: 'en',
|
238 |
-
showTab: false
|
239 |
-
};
|
240 |
-
function _loadUserVoice() {
|
241 |
-
var s = document.createElement('script');
|
242 |
-
s.src = ("https:" == document.location.protocol ? "https://" : "http://") + "cdn.uservoice.com/javascripts/widgets/tab.js";
|
243 |
-
document.getElementsByTagName('head')[0].appendChild(s);
|
244 |
-
}
|
245 |
-
_loadSuper = window.onload;
|
246 |
-
window.onload = (typeof window.onload != 'function') ? _loadUserVoice : function() { _loadSuper(); _loadUserVoice(); };
|
247 |
-
</script>
|
248 |
-
<?php
|
249 |
-
}
|
250 |
-
|
251 |
/**
|
252 |
* Initiate a full recheck - reparse everything and check all links anew.
|
253 |
*
|
@@ -352,19 +320,15 @@ class wsBrokenLinkChecker {
|
|
352 |
add_screen_meta_link(
|
353 |
'blc-feedback-widget',
|
354 |
__('Feedback', 'broken-link-checker'),
|
355 |
-
'
|
356 |
array($options_page_hook, $links_page_hook)
|
357 |
);
|
358 |
|
359 |
-
//Add the supporting UserVoice-invocation code
|
360 |
-
add_action( 'admin_footer-' . $options_page_hook, array(&$this, 'uservoice_widget') );
|
361 |
-
add_action( 'admin_footer-' . $links_page_hook, array(&$this, 'uservoice_widget') );
|
362 |
-
|
363 |
//Make the Settings page link to the link list, and vice versa
|
364 |
add_screen_meta_link(
|
365 |
'blc-settings-link',
|
366 |
-
__('
|
367 |
-
|
368 |
$links_page_hook,
|
369 |
array('style' => 'font-weight: bold;')
|
370 |
);
|
@@ -405,7 +369,7 @@ class wsBrokenLinkChecker {
|
|
405 |
|
406 |
function options_page(){
|
407 |
global $blclog;
|
408 |
-
|
409 |
$moduleManager = blcModuleManager::getInstance();
|
410 |
|
411 |
//Sanity check : make sure the DB is all set up
|
@@ -512,17 +476,23 @@ class wsBrokenLinkChecker {
|
|
512 |
|
513 |
//Email notifications on/off
|
514 |
$email_notifications = !empty($_POST['send_email_notifications']);
|
515 |
-
|
|
|
|
|
|
|
|
|
|
|
516 |
/*
|
517 |
The plugin should only send notifications about links that have become broken
|
518 |
since the time when email notifications were turned on. If we don't do this,
|
519 |
the first email notification will be sent nigh-immediately and list *all* broken
|
520 |
links that the plugin currently knows about.
|
521 |
*/
|
522 |
-
$this->options['last_notification_sent'] = time();
|
523 |
}
|
524 |
$this->conf->options['send_email_notifications'] = $email_notifications;
|
525 |
-
|
|
|
526 |
//Make settings that affect our Cron events take effect immediately
|
527 |
$this->setup_cron_events();
|
528 |
|
@@ -705,6 +675,14 @@ class wsBrokenLinkChecker {
|
|
705 |
<?php _e('Send me e-mail notifications about newly detected broken links', 'broken-link-checker'); ?>
|
706 |
</label><br />
|
707 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
708 |
</td>
|
709 |
</tr>
|
710 |
|
@@ -1161,7 +1139,7 @@ class wsBrokenLinkChecker {
|
|
1161 |
* @return void
|
1162 |
*/
|
1163 |
function options_page_css(){
|
1164 |
-
wp_enqueue_style('blc-options-page', plugins_url('css/options-page.css', BLC_PLUGIN_FILE), array(), '0.9.
|
1165 |
wp_enqueue_style('dashboard');
|
1166 |
}
|
1167 |
|
@@ -1172,7 +1150,7 @@ class wsBrokenLinkChecker {
|
|
1172 |
* @return void
|
1173 |
*/
|
1174 |
function links_page(){
|
1175 |
-
global $wpdb, $blclog;
|
1176 |
|
1177 |
$blc_link_query = blcLinkQuery::getInstance();
|
1178 |
|
@@ -1272,12 +1250,14 @@ class wsBrokenLinkChecker {
|
|
1272 |
$selected_filter_id,
|
1273 |
isset($_GET['paged']) ? intval($_GET['paged']) : 1,
|
1274 |
$this->conf->options['table_links_per_page'],
|
1275 |
-
'broken'
|
|
|
|
|
1276 |
);
|
1277 |
|
1278 |
//exec_filter() returns an array with filter data, including the actual filter ID that was used.
|
1279 |
$filter_id = $current_filter['filter_id'];
|
1280 |
-
|
1281 |
//Error?
|
1282 |
if ( empty($current_filter['links']) && !empty($wpdb->last_error) ){
|
1283 |
printf( __('Database error : %s', 'broken-link-checker'), $wpdb->last_error);
|
@@ -1664,9 +1644,9 @@ class wsBrokenLinkChecker {
|
|
1664 |
//Make a list of all containers associated with these links, with each container
|
1665 |
//listed only once.
|
1666 |
$containers = array();
|
1667 |
-
foreach($links as $link){
|
1668 |
$instances = $link->get_instances();
|
1669 |
-
foreach($instances as $instance){
|
1670 |
$key = $instance->container_type . '|' . $instance->container_id;
|
1671 |
$containers[$key] = array($instance->container_type, $instance->container_id);
|
1672 |
}
|
@@ -1678,7 +1658,7 @@ class wsBrokenLinkChecker {
|
|
1678 |
//Delete/trash their associated entities
|
1679 |
$deleted = array();
|
1680 |
$skipped = array();
|
1681 |
-
foreach($containers as $container){
|
1682 |
if ( !$container->current_user_can_delete() ){
|
1683 |
continue;
|
1684 |
}
|
@@ -1694,7 +1674,7 @@ class wsBrokenLinkChecker {
|
|
1694 |
}
|
1695 |
}
|
1696 |
|
1697 |
-
if ( is_wp_error($rez) ){
|
1698 |
//Record error messages for later display
|
1699 |
$messages[] = $rez->get_error_message();
|
1700 |
$msg_class = 'error';
|
@@ -1733,7 +1713,7 @@ class wsBrokenLinkChecker {
|
|
1733 |
foreach($skipped as $container){
|
1734 |
$message .= sprintf(
|
1735 |
'<li>%s</li>',
|
1736 |
-
$container->ui_get_source()
|
1737 |
);
|
1738 |
}
|
1739 |
$message .= '</ul>';
|
@@ -1759,6 +1739,7 @@ class wsBrokenLinkChecker {
|
|
1759 |
* @return array Confirmation nessage and the CSS class to use with that message.
|
1760 |
*/
|
1761 |
function do_bulk_recheck($selected_links){
|
|
|
1762 |
global $wpdb;
|
1763 |
|
1764 |
$message = '';
|
@@ -2176,7 +2157,7 @@ class wsBrokenLinkChecker {
|
|
2176 |
* @return int|array
|
2177 |
*/
|
2178 |
function get_links_to_check($max_results = 0, $count_only = false){
|
2179 |
-
global $wpdb;
|
2180 |
|
2181 |
$check_threshold = date('Y-m-d H:i:s', strtotime('-'.$this->conf->options['check_threshold'].' hours'));
|
2182 |
$recheck_threshold = date('Y-m-d H:i:s', time() - $this->conf->options['recheck_threshold']);
|
@@ -2532,7 +2513,7 @@ class wsBrokenLinkChecker {
|
|
2532 |
'cnt_error' => $rez['cnt_error'],
|
2533 |
'errors' => array(),
|
2534 |
);
|
2535 |
-
foreach($rez['errors'] as $error){
|
2536 |
array_push( $response['errors'], implode(', ', $error->get_error_messages()) );
|
2537 |
}
|
2538 |
|
@@ -2547,7 +2528,7 @@ class wsBrokenLinkChecker {
|
|
2547 |
}
|
2548 |
|
2549 |
function ajax_link_details(){
|
2550 |
-
global $wpdb;
|
2551 |
|
2552 |
if (!current_user_can('edit_others_posts')){
|
2553 |
die( __("You don't have sufficient privileges to access this information!", 'broken-link-checker') );
|
@@ -2643,8 +2624,9 @@ class wsBrokenLinkChecker {
|
|
2643 |
* @return array
|
2644 |
*/
|
2645 |
function get_debug_info(){
|
|
|
2646 |
global $wpdb;
|
2647 |
-
|
2648 |
//Collect some information that's useful for debugging
|
2649 |
$debug = array();
|
2650 |
|
@@ -2657,7 +2639,7 @@ class wsBrokenLinkChecker {
|
|
2657 |
//MySQL version
|
2658 |
$debug[ __('MySQL version', 'broken-link-checker') ] = array(
|
2659 |
'state' => 'ok',
|
2660 |
-
'value' =>
|
2661 |
);
|
2662 |
|
2663 |
//CURL presence and version
|
@@ -2805,48 +2787,76 @@ class wsBrokenLinkChecker {
|
|
2805 |
|
2806 |
return $debug;
|
2807 |
}
|
2808 |
-
|
2809 |
-
function
|
2810 |
-
global $wpdb;
|
2811 |
-
|
|
|
|
|
|
|
|
|
2812 |
//Find links that have been detected as broken since the last sent notification.
|
2813 |
$last_notification = date('Y-m-d H:i:s', $this->conf->options['last_notification_sent']);
|
2814 |
$where = $wpdb->prepare('( first_failure >= %s )', $last_notification);
|
2815 |
-
|
2816 |
$links = blc_get_links(array(
|
2817 |
's_filter' => 'broken',
|
2818 |
'where_expr' => $where,
|
2819 |
'load_instances' => true,
|
|
|
|
|
2820 |
'max_results' => 0,
|
2821 |
));
|
2822 |
-
|
2823 |
if ( empty($links) ){
|
2824 |
return;
|
2825 |
}
|
2826 |
-
|
2827 |
-
|
2828 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2829 |
//Prepare email message
|
2830 |
$subject = sprintf(
|
2831 |
__("[%s] Broken links detected", 'broken-link-checker'),
|
2832 |
html_entity_decode(get_option('blogname'), ENT_QUOTES)
|
2833 |
);
|
2834 |
-
|
2835 |
$body = sprintf(
|
2836 |
_n(
|
2837 |
"Broken Link Checker has detected %d new broken link on your site.",
|
2838 |
"Broken Link Checker has detected %d new broken links on your site.",
|
2839 |
-
$
|
2840 |
'broken-link-checker'
|
2841 |
),
|
2842 |
-
$
|
2843 |
);
|
2844 |
-
|
2845 |
$body .= "<br>";
|
2846 |
-
|
2847 |
-
$
|
2848 |
-
|
2849 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2850 |
$line = sprintf(
|
2851 |
_n(
|
2852 |
"Here's a list of the first %d broken links:",
|
@@ -2859,54 +2869,85 @@ class wsBrokenLinkChecker {
|
|
2859 |
} else {
|
2860 |
$line = __("Here's a list of the new broken links: ", 'broken-link-checker');
|
2861 |
}
|
2862 |
-
|
2863 |
-
$
|
2864 |
-
|
2865 |
//Show up to $max_displayed_links broken link instances right in the email.
|
2866 |
$displayed = 0;
|
2867 |
-
foreach($
|
2868 |
-
|
2869 |
-
|
2870 |
-
|
2871 |
-
|
2872 |
-
|
2873 |
-
|
2874 |
-
|
2875 |
-
|
2876 |
-
|
2877 |
-
|
2878 |
-
|
2879 |
-
|
2880 |
-
$displayed++;
|
2881 |
-
if ( $displayed >= $max_displayed_links ){
|
2882 |
-
break 2; //Exit both foreach loops
|
2883 |
-
}
|
2884 |
}
|
2885 |
}
|
2886 |
-
|
2887 |
//Add a link to the "Broken Links" tab.
|
2888 |
-
$
|
2889 |
-
$
|
2890 |
-
|
2891 |
-
|
|
|
|
|
|
|
2892 |
//Need to override the default 'text/plain' content type to send a HTML email.
|
2893 |
add_filter('wp_mail_content_type', array(&$this, 'override_mail_content_type'));
|
2894 |
-
|
2895 |
-
|
2896 |
-
|
2897 |
-
get_option('admin_email'),
|
2898 |
-
$subject,
|
2899 |
-
$body
|
2900 |
-
);
|
2901 |
-
if ( $rez ){
|
2902 |
-
$this->conf->options['last_notification_sent'] = time();
|
2903 |
-
$this->conf->save_options();
|
2904 |
-
}
|
2905 |
-
|
2906 |
//Remove the override so that it doesn't interfere with other plugins that might
|
2907 |
-
//want to send normal plaintext emails.
|
2908 |
remove_filter('wp_mail_content_type', array(&$this, 'override_mail_content_type'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2909 |
|
|
|
|
|
|
|
2910 |
}
|
2911 |
|
2912 |
function override_mail_content_type($content_type){
|
@@ -2931,8 +2972,7 @@ class wsBrokenLinkChecker {
|
|
2931 |
}
|
2932 |
|
2933 |
//Email notifications about broken links
|
2934 |
-
$
|
2935 |
-
if ( $this->conf->options['send_email_notifications'] && !empty($notification_email) ){
|
2936 |
if ( !wp_next_scheduled('blc_cron_email_notifications') ){
|
2937 |
wp_schedule_event(time(), $this->conf->options['notification_schedule'], 'blc_cron_email_notifications');
|
2938 |
}
|
71 |
$this->setup_cron_events();
|
72 |
|
73 |
//Set hooks that listen for our Cron actions
|
74 |
+
add_action('blc_cron_email_notifications', array( &$this, 'maybe_send_email_notifications' ));
|
75 |
add_action('blc_cron_check_links', array(&$this, 'cron_check_links'));
|
76 |
add_action('blc_cron_database_maintenance', array(&$this, 'database_maintenance'));
|
77 |
add_action('blc_cron_check_news', array(&$this, 'check_news'));
|
216 |
wp_enqueue_script('sprintf', plugins_url('js/sprintf.js', BLC_PLUGIN_FILE)); //Used in error messages
|
217 |
}
|
218 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
/**
|
220 |
* Initiate a full recheck - reparse everything and check all links anew.
|
221 |
*
|
320 |
add_screen_meta_link(
|
321 |
'blc-feedback-widget',
|
322 |
__('Feedback', 'broken-link-checker'),
|
323 |
+
'http://whiteshadow.uservoice.com/forums/58400-broken-link-checker',
|
324 |
array($options_page_hook, $links_page_hook)
|
325 |
);
|
326 |
|
|
|
|
|
|
|
|
|
327 |
//Make the Settings page link to the link list, and vice versa
|
328 |
add_screen_meta_link(
|
329 |
'blc-settings-link',
|
330 |
+
__('More plugins by Janis Elsts', 'broken-link-checker'),
|
331 |
+
'http://w-shadow.com/MoreWpPlugins/',
|
332 |
$links_page_hook,
|
333 |
array('style' => 'font-weight: bold;')
|
334 |
);
|
369 |
|
370 |
function options_page(){
|
371 |
global $blclog;
|
372 |
+
|
373 |
$moduleManager = blcModuleManager::getInstance();
|
374 |
|
375 |
//Sanity check : make sure the DB is all set up
|
476 |
|
477 |
//Email notifications on/off
|
478 |
$email_notifications = !empty($_POST['send_email_notifications']);
|
479 |
+
$send_authors_email_notifications = !empty($_POST['send_authors_email_notifications']);
|
480 |
+
|
481 |
+
if (
|
482 |
+
($email_notifications && !$this->conf->options['send_email_notifications'])
|
483 |
+
|| ($send_authors_email_notifications && !$this->conf->options['send_authors_email_notifications'])
|
484 |
+
){
|
485 |
/*
|
486 |
The plugin should only send notifications about links that have become broken
|
487 |
since the time when email notifications were turned on. If we don't do this,
|
488 |
the first email notification will be sent nigh-immediately and list *all* broken
|
489 |
links that the plugin currently knows about.
|
490 |
*/
|
491 |
+
$this->conf->options['last_notification_sent'] = time();
|
492 |
}
|
493 |
$this->conf->options['send_email_notifications'] = $email_notifications;
|
494 |
+
$this->conf->options['send_authors_email_notifications'] = $send_authors_email_notifications;
|
495 |
+
|
496 |
//Make settings that affect our Cron events take effect immediately
|
497 |
$this->setup_cron_events();
|
498 |
|
675 |
<?php _e('Send me e-mail notifications about newly detected broken links', 'broken-link-checker'); ?>
|
676 |
</label><br />
|
677 |
</p>
|
678 |
+
|
679 |
+
<p>
|
680 |
+
<label for='send_authors_email_notifications'>
|
681 |
+
<input type="checkbox" name="send_authors_email_notifications" id="send_authors_email_notifications"
|
682 |
+
<?php if ($this->conf->options['send_authors_email_notifications']) echo ' checked="checked"'; ?>/>
|
683 |
+
<?php _e('Send authors e-mail notifications about broken links in their posts', 'broken-link-checker'); ?>
|
684 |
+
</label><br />
|
685 |
+
</p>
|
686 |
</td>
|
687 |
</tr>
|
688 |
|
1139 |
* @return void
|
1140 |
*/
|
1141 |
function options_page_css(){
|
1142 |
+
wp_enqueue_style('blc-options-page', plugins_url('css/options-page.css', BLC_PLUGIN_FILE), array(), '0.9.7' );
|
1143 |
wp_enqueue_style('dashboard');
|
1144 |
}
|
1145 |
|
1150 |
* @return void
|
1151 |
*/
|
1152 |
function links_page(){
|
1153 |
+
global $wpdb, $blclog; /* @var wpdb $wpdb */
|
1154 |
|
1155 |
$blc_link_query = blcLinkQuery::getInstance();
|
1156 |
|
1250 |
$selected_filter_id,
|
1251 |
isset($_GET['paged']) ? intval($_GET['paged']) : 1,
|
1252 |
$this->conf->options['table_links_per_page'],
|
1253 |
+
'broken',
|
1254 |
+
isset($_GET['orderby']) ? $_GET['orderby'] : '',
|
1255 |
+
isset($_GET['order']) ? $_GET['order'] : ''
|
1256 |
);
|
1257 |
|
1258 |
//exec_filter() returns an array with filter data, including the actual filter ID that was used.
|
1259 |
$filter_id = $current_filter['filter_id'];
|
1260 |
+
|
1261 |
//Error?
|
1262 |
if ( empty($current_filter['links']) && !empty($wpdb->last_error) ){
|
1263 |
printf( __('Database error : %s', 'broken-link-checker'), $wpdb->last_error);
|
1644 |
//Make a list of all containers associated with these links, with each container
|
1645 |
//listed only once.
|
1646 |
$containers = array();
|
1647 |
+
foreach($links as $link){ /* @var blcLink $link */
|
1648 |
$instances = $link->get_instances();
|
1649 |
+
foreach($instances as $instance){ /* @var blcLinkInstance $instance */
|
1650 |
$key = $instance->container_type . '|' . $instance->container_id;
|
1651 |
$containers[$key] = array($instance->container_type, $instance->container_id);
|
1652 |
}
|
1658 |
//Delete/trash their associated entities
|
1659 |
$deleted = array();
|
1660 |
$skipped = array();
|
1661 |
+
foreach($containers as $container){ /* @var blcContainer $container */
|
1662 |
if ( !$container->current_user_can_delete() ){
|
1663 |
continue;
|
1664 |
}
|
1674 |
}
|
1675 |
}
|
1676 |
|
1677 |
+
if ( is_wp_error($rez) ){ /* @var WP_Error $rez */
|
1678 |
//Record error messages for later display
|
1679 |
$messages[] = $rez->get_error_message();
|
1680 |
$msg_class = 'error';
|
1713 |
foreach($skipped as $container){
|
1714 |
$message .= sprintf(
|
1715 |
'<li>%s</li>',
|
1716 |
+
$container->ui_get_source('')
|
1717 |
);
|
1718 |
}
|
1719 |
$message .= '</ul>';
|
1739 |
* @return array Confirmation nessage and the CSS class to use with that message.
|
1740 |
*/
|
1741 |
function do_bulk_recheck($selected_links){
|
1742 |
+
/** @var wpdb $wpdb */
|
1743 |
global $wpdb;
|
1744 |
|
1745 |
$message = '';
|
2157 |
* @return int|array
|
2158 |
*/
|
2159 |
function get_links_to_check($max_results = 0, $count_only = false){
|
2160 |
+
global $wpdb; /* @var wpdb $wpdb */
|
2161 |
|
2162 |
$check_threshold = date('Y-m-d H:i:s', strtotime('-'.$this->conf->options['check_threshold'].' hours'));
|
2163 |
$recheck_threshold = date('Y-m-d H:i:s', time() - $this->conf->options['recheck_threshold']);
|
2513 |
'cnt_error' => $rez['cnt_error'],
|
2514 |
'errors' => array(),
|
2515 |
);
|
2516 |
+
foreach($rez['errors'] as $error){ /** @var WP_Error $error */
|
2517 |
array_push( $response['errors'], implode(', ', $error->get_error_messages()) );
|
2518 |
}
|
2519 |
|
2528 |
}
|
2529 |
|
2530 |
function ajax_link_details(){
|
2531 |
+
global $wpdb; /* @var wpdb $wpdb */
|
2532 |
|
2533 |
if (!current_user_can('edit_others_posts')){
|
2534 |
die( __("You don't have sufficient privileges to access this information!", 'broken-link-checker') );
|
2624 |
* @return array
|
2625 |
*/
|
2626 |
function get_debug_info(){
|
2627 |
+
/** @var wpdb $wpdb */
|
2628 |
global $wpdb;
|
2629 |
+
|
2630 |
//Collect some information that's useful for debugging
|
2631 |
$debug = array();
|
2632 |
|
2639 |
//MySQL version
|
2640 |
$debug[ __('MySQL version', 'broken-link-checker') ] = array(
|
2641 |
'state' => 'ok',
|
2642 |
+
'value' => $wpdb->db_version(),
|
2643 |
);
|
2644 |
|
2645 |
//CURL presence and version
|
2787 |
|
2788 |
return $debug;
|
2789 |
}
|
2790 |
+
|
2791 |
+
function maybe_send_email_notifications() {
|
2792 |
+
global $wpdb; /** @var wpdb $wpdb */
|
2793 |
+
|
2794 |
+
if ( !($this->conf->options['send_email_notifications'] || $this->conf->options['send_authors_email_notifications']) ){
|
2795 |
+
return;
|
2796 |
+
}
|
2797 |
+
|
2798 |
//Find links that have been detected as broken since the last sent notification.
|
2799 |
$last_notification = date('Y-m-d H:i:s', $this->conf->options['last_notification_sent']);
|
2800 |
$where = $wpdb->prepare('( first_failure >= %s )', $last_notification);
|
2801 |
+
|
2802 |
$links = blc_get_links(array(
|
2803 |
's_filter' => 'broken',
|
2804 |
'where_expr' => $where,
|
2805 |
'load_instances' => true,
|
2806 |
+
'load_containers' => true,
|
2807 |
+
'load_wrapped_objects' => $this->conf->options['send_authors_email_notifications'],
|
2808 |
'max_results' => 0,
|
2809 |
));
|
2810 |
+
|
2811 |
if ( empty($links) ){
|
2812 |
return;
|
2813 |
}
|
2814 |
+
|
2815 |
+
//Send the admin notification
|
2816 |
+
$admin_email = get_option('admin_email');
|
2817 |
+
if ( $this->conf->options['send_email_notifications'] && !empty($admin_email) ) {
|
2818 |
+
$this->send_admin_notification($links, $admin_email);
|
2819 |
+
}
|
2820 |
+
|
2821 |
+
//Send notifications to post authors
|
2822 |
+
if ( $this->conf->options['send_authors_email_notifications'] ) {
|
2823 |
+
$this->send_authors_notifications($links);
|
2824 |
+
}
|
2825 |
+
|
2826 |
+
$this->conf->options['last_notification_sent'] = time();
|
2827 |
+
$this->conf->save_options();
|
2828 |
+
}
|
2829 |
+
|
2830 |
+
function send_admin_notification($links, $email) {
|
2831 |
//Prepare email message
|
2832 |
$subject = sprintf(
|
2833 |
__("[%s] Broken links detected", 'broken-link-checker'),
|
2834 |
html_entity_decode(get_option('blogname'), ENT_QUOTES)
|
2835 |
);
|
2836 |
+
|
2837 |
$body = sprintf(
|
2838 |
_n(
|
2839 |
"Broken Link Checker has detected %d new broken link on your site.",
|
2840 |
"Broken Link Checker has detected %d new broken links on your site.",
|
2841 |
+
count($links),
|
2842 |
'broken-link-checker'
|
2843 |
),
|
2844 |
+
count($links)
|
2845 |
);
|
|
|
2846 |
$body .= "<br>";
|
2847 |
+
|
2848 |
+
$instances = array();
|
2849 |
+
foreach($links as $link) { /* @var blcLink $link */
|
2850 |
+
$instances = array_merge($instances, $link->get_instances());
|
2851 |
+
}
|
2852 |
+
$body .= $this->build_instance_list_for_email($instances);
|
2853 |
+
|
2854 |
+
$this->send_html_email($email, $subject, $body);
|
2855 |
+
}
|
2856 |
+
|
2857 |
+
function build_instance_list_for_email($instances, $max_displayed_links = 5){
|
2858 |
+
$result = '';
|
2859 |
+
if ( count($instances) > $max_displayed_links ){
|
2860 |
$line = sprintf(
|
2861 |
_n(
|
2862 |
"Here's a list of the first %d broken links:",
|
2869 |
} else {
|
2870 |
$line = __("Here's a list of the new broken links: ", 'broken-link-checker');
|
2871 |
}
|
2872 |
+
|
2873 |
+
$result .= "<p>$line</p>";
|
2874 |
+
|
2875 |
//Show up to $max_displayed_links broken link instances right in the email.
|
2876 |
$displayed = 0;
|
2877 |
+
foreach($instances as $instance){ /* @var blcLinkInstance $instance */
|
2878 |
+
$pieces = array(
|
2879 |
+
sprintf( __('Link text : %s', 'broken-link-checker'), $instance->ui_get_link_text('email') ),
|
2880 |
+
sprintf( __('Link URL : <a href="%s">%s</a>', 'broken-link-checker'), htmlentities($instance->get_url()), blcUtility::truncate($instance->get_url(), 70, '') ),
|
2881 |
+
sprintf( __('Source : %s', 'broken-link-checker'), $instance->ui_get_source('email') ),
|
2882 |
+
);
|
2883 |
+
|
2884 |
+
$link_entry = implode("<br>", $pieces);
|
2885 |
+
$result .= "$link_entry<br><br>";
|
2886 |
+
|
2887 |
+
$displayed++;
|
2888 |
+
if ( $displayed >= $max_displayed_links ){
|
2889 |
+
break;
|
|
|
|
|
|
|
|
|
2890 |
}
|
2891 |
}
|
2892 |
+
|
2893 |
//Add a link to the "Broken Links" tab.
|
2894 |
+
$result .= __("You can see all broken links here:", 'broken-link-checker') . "<br>";
|
2895 |
+
$result .= sprintf('<a href="%1$s">%1$s</a>', admin_url('tools.php?page=view-broken-links'));
|
2896 |
+
|
2897 |
+
return $result;
|
2898 |
+
}
|
2899 |
+
|
2900 |
+
function send_html_email($email_address, $subject, $body) {
|
2901 |
//Need to override the default 'text/plain' content type to send a HTML email.
|
2902 |
add_filter('wp_mail_content_type', array(&$this, 'override_mail_content_type'));
|
2903 |
+
|
2904 |
+
$success = wp_mail($email_address, $subject, $body);
|
2905 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2906 |
//Remove the override so that it doesn't interfere with other plugins that might
|
2907 |
+
//want to send normal plaintext emails.
|
2908 |
remove_filter('wp_mail_content_type', array(&$this, 'override_mail_content_type'));
|
2909 |
+
|
2910 |
+
return $success;
|
2911 |
+
}
|
2912 |
+
|
2913 |
+
function send_authors_notifications($links) {
|
2914 |
+
$authorInstances = array();
|
2915 |
+
foreach($links as $link){ /* @var blcLink $link */
|
2916 |
+
foreach($link->get_instances() as $instance){ /* @var blcLinkInstance $instance */
|
2917 |
+
$container = $instance->get_container(); /** @var blcContainer $container */
|
2918 |
+
if ( empty($container) || !($container instanceof blcAnyPostContainer) ) {
|
2919 |
+
continue;
|
2920 |
+
}
|
2921 |
+
$post = $container->get_wrapped_object(); /** @var StdClass $post */
|
2922 |
+
if ( !array_key_exists($post->post_author, $authorInstances) ) {
|
2923 |
+
$authorInstances[$post->post_author] = array();
|
2924 |
+
}
|
2925 |
+
$authorInstances[$post->post_author][] = $instance;
|
2926 |
+
}
|
2927 |
+
}
|
2928 |
+
|
2929 |
+
foreach($authorInstances as $author_id => $instances) {
|
2930 |
+
$subject = sprintf(
|
2931 |
+
__("[%s] Broken links detected", 'broken-link-checker'),
|
2932 |
+
html_entity_decode(get_option('blogname'), ENT_QUOTES)
|
2933 |
+
);
|
2934 |
+
|
2935 |
+
$body = sprintf(
|
2936 |
+
_n(
|
2937 |
+
"Broken Link Checker has detected %d new broken link in your posts.",
|
2938 |
+
"Broken Link Checker has detected %d new broken links in your posts.",
|
2939 |
+
count($instances),
|
2940 |
+
'broken-link-checker'
|
2941 |
+
),
|
2942 |
+
count($instances)
|
2943 |
+
);
|
2944 |
+
$body .= "<br>";
|
2945 |
+
|
2946 |
+
$body .= $this->build_instance_list_for_email($instances);
|
2947 |
|
2948 |
+
$author = get_user_by('id', $author_id); /** @var WP_User $author */
|
2949 |
+
$this->send_html_email($author->user_email, $subject, $body);
|
2950 |
+
}
|
2951 |
}
|
2952 |
|
2953 |
function override_mail_content_type($content_type){
|
2972 |
}
|
2973 |
|
2974 |
//Email notifications about broken links
|
2975 |
+
if ( $this->conf->options['send_email_notifications'] || $this->conf->options['send_authors_email_notifications'] ){
|
|
|
2976 |
if ( !wp_next_scheduled('blc_cron_email_notifications') ){
|
2977 |
wp_schedule_event(time(), $this->conf->options['notification_schedule'], 'blc_cron_email_notifications');
|
2978 |
}
|
core/init.php
CHANGED
@@ -77,9 +77,10 @@ $blc_config_manager = new blcConfigurationManager(
|
|
77 |
|
78 |
'exclusion_list' => array(), //Links that contain a substring listed in this array won't be checked.
|
79 |
|
80 |
-
'send_email_notifications' => true, //Whether to send email notifications about broken links
|
|
|
81 |
'notification_schedule' => 'daily', //How often (at most) notifications will be sent. Possible values : 'daily', 'weekly'
|
82 |
-
'last_notification_sent' => 0, //When the last email notification was
|
83 |
|
84 |
'server_load_limit' => 4, //Stop parsing stuff & checking links if the 1-minute load average
|
85 |
//goes over this value. Only works on Linux servers. 0 = no limit.
|
@@ -166,7 +167,7 @@ function blc_got_unsynched_items(){
|
|
166 |
* @return void
|
167 |
*/
|
168 |
function blc_resynch( $forced = false ){
|
169 |
-
global $wpdb, $blclog;
|
170 |
|
171 |
if ( $forced ){
|
172 |
$blclog->info('... Forced resynchronization initiated');
|
@@ -297,6 +298,7 @@ if ( $blc_config_manager->options['installation_complete'] ){
|
|
297 |
} else {
|
298 |
//Display installation errors (if any) on the Dashboard.
|
299 |
function blc_print_installation_errors(){
|
|
|
300 |
if ( $blc_config_manager->options['installation_complete'] ) {
|
301 |
return;
|
302 |
}
|
77 |
|
78 |
'exclusion_list' => array(), //Links that contain a substring listed in this array won't be checked.
|
79 |
|
80 |
+
'send_email_notifications' => true, //Whether to send the admin email notifications about broken links
|
81 |
+
'send_authors_email_notifications' => false, //Whether to send post authors notifications about broken links in their posts.
|
82 |
'notification_schedule' => 'daily', //How often (at most) notifications will be sent. Possible values : 'daily', 'weekly'
|
83 |
+
'last_notification_sent' => 0, //When the last email notification was sent (Unix timestamp)
|
84 |
|
85 |
'server_load_limit' => 4, //Stop parsing stuff & checking links if the 1-minute load average
|
86 |
//goes over this value. Only works on Linux servers. 0 = no limit.
|
167 |
* @return void
|
168 |
*/
|
169 |
function blc_resynch( $forced = false ){
|
170 |
+
global $wpdb, $blclog; /* @var wpdb $wpdb */
|
171 |
|
172 |
if ( $forced ){
|
173 |
$blclog->info('... Forced resynchronization initiated');
|
298 |
} else {
|
299 |
//Display installation errors (if any) on the Dashboard.
|
300 |
function blc_print_installation_errors(){
|
301 |
+
global $blc_config_manager;
|
302 |
if ( $blc_config_manager->options['installation_complete'] ) {
|
303 |
return;
|
304 |
}
|
css/options-page.css
CHANGED
@@ -100,17 +100,17 @@
|
|
100 |
/* Tab navigation */
|
101 |
ul.ui-tabs-nav {
|
102 |
margin-bottom: -1px;
|
|
|
103 |
padding-left: 1.5em;
|
104 |
|
105 |
overflow: hidden;
|
106 |
white-space: nowrap;
|
107 |
padding-right: 3.5em;
|
108 |
-
|
109 |
-
line-height: 5px;
|
110 |
}
|
111 |
|
112 |
ul.ui-tabs-nav li {
|
113 |
display: inline-block;
|
|
|
114 |
margin: 0 0.5em 0 0;
|
115 |
|
116 |
border: 1px solid #DFDFDF;
|
@@ -146,6 +146,7 @@ ul.ui-tabs-nav li.ui-tabs-selected {
|
|
146 |
|
147 |
ul.ui-tabs-nav li a {
|
148 |
display: inline-block;
|
|
|
149 |
text-decoration: none;
|
150 |
color: #C1C1C1;
|
151 |
padding: 0.5em 1em 0.6em 1em;
|
@@ -182,16 +183,6 @@ ul.ui-tabs-nav li.ui-tabs-selected a {
|
|
182 |
-webkit-border-bottom-left-radius: 6px;
|
183 |
}
|
184 |
|
185 |
-
/* "Upgrade to Pro" stuff */
|
186 |
-
|
187 |
-
.pro-notice {
|
188 |
-
|
189 |
-
}
|
190 |
-
|
191 |
-
.pro-notice a {
|
192 |
-
font-style: italic;
|
193 |
-
}
|
194 |
-
|
195 |
/* Right sidebar */
|
196 |
|
197 |
#blc-settings-wrap .hndle {
|
100 |
/* Tab navigation */
|
101 |
ul.ui-tabs-nav {
|
102 |
margin-bottom: -1px;
|
103 |
+
height: 31px;
|
104 |
padding-left: 1.5em;
|
105 |
|
106 |
overflow: hidden;
|
107 |
white-space: nowrap;
|
108 |
padding-right: 3.5em;
|
|
|
|
|
109 |
}
|
110 |
|
111 |
ul.ui-tabs-nav li {
|
112 |
display: inline-block;
|
113 |
+
height: 29px;
|
114 |
margin: 0 0.5em 0 0;
|
115 |
|
116 |
border: 1px solid #DFDFDF;
|
146 |
|
147 |
ul.ui-tabs-nav li a {
|
148 |
display: inline-block;
|
149 |
+
height: 17px;
|
150 |
text-decoration: none;
|
151 |
color: #C1C1C1;
|
152 |
padding: 0.5em 1em 0.6em 1em;
|
183 |
-webkit-border-bottom-left-radius: 6px;
|
184 |
}
|
185 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
/* Right sidebar */
|
187 |
|
188 |
#blc-settings-wrap .hndle {
|
includes/admin/table-printer.php
CHANGED
@@ -93,12 +93,38 @@ class blcTablePrinter {
|
|
93 |
if ( !in_array($column_id, $visible_columns) ) {
|
94 |
$column_classes[] = 'hidden';
|
95 |
}
|
96 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
printf(
|
98 |
'<th scope="col" class="%s"%s>%s</th>',
|
99 |
implode(' ', $column_classes),
|
100 |
isset($column['id']) ? ' id="' . $column['id'] . '"' : '',
|
101 |
-
$
|
102 |
);
|
103 |
}
|
104 |
echo '</tr></thead>';
|
@@ -121,7 +147,8 @@ class blcTablePrinter {
|
|
121 |
|
122 |
/**
|
123 |
* Print the "Bulk Actions" dropdown and navigation links
|
124 |
-
*
|
|
|
125 |
* @param string $suffix Optional. Appended to ID and name attributes of the bulk action dropdown.
|
126 |
* @return void
|
127 |
*/
|
@@ -172,6 +199,8 @@ class blcTablePrinter {
|
|
172 |
'new-url' => array(
|
173 |
'heading' => __('URL', 'broken-link-checker'),
|
174 |
'content' => array(&$this, 'column_new_url'),
|
|
|
|
|
175 |
),
|
176 |
|
177 |
'used-in' => array(
|
93 |
if ( !in_array($column_id, $visible_columns) ) {
|
94 |
$column_classes[] = 'hidden';
|
95 |
}
|
96 |
+
|
97 |
+
$heading = $column['heading'];
|
98 |
+
if ( isset($column['sortable']) && $column['sortable'] ) {
|
99 |
+
$orderby = $column['orderby'];
|
100 |
+
$current_orderby = isset($_GET['orderby']) ? $_GET['orderby'] : '';
|
101 |
+
$current_order = isset($_GET['order']) ? $_GET['order'] : 'asc';
|
102 |
+
|
103 |
+
if ( $orderby == $current_orderby ) {
|
104 |
+
$column_classes[] = 'sorted';
|
105 |
+
$column_classes[] = $current_order;
|
106 |
+
$order = ($current_order == 'asc') ? 'desc' : 'asc'; //Reverse the sort direction
|
107 |
+
} else {
|
108 |
+
$order = 'asc';
|
109 |
+
$column_classes[] = 'desc';
|
110 |
+
$column_classes[] = 'sortable';
|
111 |
+
}
|
112 |
+
|
113 |
+
$heading = sprintf(
|
114 |
+
'<a href="%s"><span>%s</span><span class="sorting-indicator"></span></a>',
|
115 |
+
add_query_arg(array(
|
116 |
+
'orderby' => $orderby,
|
117 |
+
'order' => $order,
|
118 |
+
)),
|
119 |
+
$heading
|
120 |
+
);
|
121 |
+
}
|
122 |
+
|
123 |
printf(
|
124 |
'<th scope="col" class="%s"%s>%s</th>',
|
125 |
implode(' ', $column_classes),
|
126 |
isset($column['id']) ? ' id="' . $column['id'] . '"' : '',
|
127 |
+
$heading
|
128 |
);
|
129 |
}
|
130 |
echo '</tr></thead>';
|
147 |
|
148 |
/**
|
149 |
* Print the "Bulk Actions" dropdown and navigation links
|
150 |
+
*
|
151 |
+
* @param bool $table_compact Whether to use the full or compact view.
|
152 |
* @param string $suffix Optional. Appended to ID and name attributes of the bulk action dropdown.
|
153 |
* @return void
|
154 |
*/
|
199 |
'new-url' => array(
|
200 |
'heading' => __('URL', 'broken-link-checker'),
|
201 |
'content' => array(&$this, 'column_new_url'),
|
202 |
+
'sortable' => true,
|
203 |
+
'orderby' => 'url',
|
204 |
),
|
205 |
|
206 |
'used-in' => array(
|
includes/containers.php
CHANGED
@@ -292,7 +292,7 @@ class blcContainer {
|
|
292 |
* @return bool
|
293 |
*/
|
294 |
function mark_as_synched(){
|
295 |
-
global $wpdb;
|
296 |
|
297 |
$this->last_synch = time();
|
298 |
|
@@ -312,7 +312,7 @@ class blcContainer {
|
|
312 |
* @return bool
|
313 |
*/
|
314 |
function mark_as_unsynched(){
|
315 |
-
global $wpdb;
|
316 |
|
317 |
$q = "INSERT INTO {$wpdb->prefix}blc_synch( container_id, container_type, synched, last_synch)
|
318 |
VALUES( %d, %s, %d, '0000-00-00 00:00:00' )
|
@@ -358,7 +358,7 @@ class blcContainer {
|
|
358 |
* @return bool
|
359 |
*/
|
360 |
function delete(){
|
361 |
-
global $wpdb;
|
362 |
|
363 |
//Delete instances first.
|
364 |
$rez = $this->delete_instances();
|
@@ -380,12 +380,12 @@ class blcContainer {
|
|
380 |
|
381 |
/**
|
382 |
* Delete all link instance records associated with this container.
|
383 |
-
* NB: Calling this
|
384 |
*
|
385 |
* @return bool
|
386 |
*/
|
387 |
function delete_instances(){
|
388 |
-
global $wpdb;
|
389 |
|
390 |
//Remove instances associated with this container
|
391 |
$q = "DELETE FROM {$wpdb->prefix}blc_instances
|
@@ -613,8 +613,8 @@ class blcContainerHelper {
|
|
613 |
* @param array $container Either [container_type, container_id], or an assoc. array of container data.
|
614 |
* @return blcContainer|null
|
615 |
*/
|
616 |
-
function get_container( $container ){
|
617 |
-
global $wpdb;
|
618 |
|
619 |
if ( !is_array($container) || ( count($container) < 2 ) ){
|
620 |
return null;
|
@@ -661,7 +661,7 @@ class blcContainerHelper {
|
|
661 |
* @return array of blcContainer indexed by "container_type|container_id"
|
662 |
*/
|
663 |
static function get_containers( $containers, $purpose = '', $fallback = '', $load_wrapped_objects = false ){
|
664 |
-
global $wpdb;
|
665 |
|
666 |
//If the input is invalid or empty, return an empty array.
|
667 |
if ( !is_array($containers) || (count($containers) < 1) ) {
|
@@ -735,8 +735,8 @@ class blcContainerHelper {
|
|
735 |
* @param integer $max_results The maximum number of containers to return. Defaults to returning all unsynched containers.
|
736 |
* @return array of blcContainer
|
737 |
*/
|
738 |
-
function get_unsynched_containers($max_results = 0){
|
739 |
-
global $wpdb;
|
740 |
|
741 |
$q = "SELECT * FROM {$wpdb->prefix}blc_synch WHERE synched = 0";
|
742 |
if ( $max_results > 0 ){
|
@@ -760,7 +760,7 @@ class blcContainerHelper {
|
|
760 |
* @param bool $forced If true, assume that no synch. records exist and build all of them from scratch.
|
761 |
* @return void
|
762 |
*/
|
763 |
-
function resynch($forced = false){
|
764 |
global $wpdb;
|
765 |
|
766 |
$module_manager = blcModuleManager::getInstance();
|
@@ -785,7 +785,7 @@ class blcContainerHelper {
|
|
785 |
* @return bool
|
786 |
*/
|
787 |
function mark_as_unsynched_where($formats, $container_types){
|
788 |
-
global $wpdb;
|
789 |
global $blclog;
|
790 |
|
791 |
//Find containers that match any of the specified formats and add them to
|
@@ -843,8 +843,8 @@ class blcContainerHelper {
|
|
843 |
*
|
844 |
* @return bool
|
845 |
*/
|
846 |
-
function cleanup_containers(){
|
847 |
-
global $wpdb;
|
848 |
global $blclog;
|
849 |
|
850 |
$module_manager = blcModuleManager::getInstance();
|
@@ -867,7 +867,7 @@ class blcContainerHelper {
|
|
867 |
* @param int $n Number of deleted containers.
|
868 |
* @return string A delete confirmation message, e.g. "5 posts were moved to trash"
|
869 |
*/
|
870 |
-
function ui_bulk_delete_message($container_type, $n){
|
871 |
$manager = blcContainerHelper::get_manager($container_type);
|
872 |
if ( is_null($manager) ){
|
873 |
return sprintf(__("Container type '%s' not recognized", 'broken-link-checker'), $container_type);
|
@@ -885,7 +885,7 @@ class blcContainerHelper {
|
|
885 |
* @param int $n
|
886 |
* @return string
|
887 |
*/
|
888 |
-
function ui_bulk_trash_message($container_type, $n){
|
889 |
$manager = blcContainerHelper::get_manager($container_type);
|
890 |
if ( is_null($manager) ){
|
891 |
return sprintf(__("Container type '%s' not recognized", 'broken-link-checker'), $container_type);
|
292 |
* @return bool
|
293 |
*/
|
294 |
function mark_as_synched(){
|
295 |
+
global $wpdb; /* @var wpdb $wpdb */
|
296 |
|
297 |
$this->last_synch = time();
|
298 |
|
312 |
* @return bool
|
313 |
*/
|
314 |
function mark_as_unsynched(){
|
315 |
+
global $wpdb; /* @var wpdb $wpdb */
|
316 |
|
317 |
$q = "INSERT INTO {$wpdb->prefix}blc_synch( container_id, container_type, synched, last_synch)
|
318 |
VALUES( %d, %s, %d, '0000-00-00 00:00:00' )
|
358 |
* @return bool
|
359 |
*/
|
360 |
function delete(){
|
361 |
+
global $wpdb; /* @var wpdb $wpdb */
|
362 |
|
363 |
//Delete instances first.
|
364 |
$rez = $this->delete_instances();
|
380 |
|
381 |
/**
|
382 |
* Delete all link instance records associated with this container.
|
383 |
+
* NB: Calling this method will not affect the WP entity (e.g. a post) corresponding to this container.
|
384 |
*
|
385 |
* @return bool
|
386 |
*/
|
387 |
function delete_instances(){
|
388 |
+
global $wpdb; /* @var wpdb $wpdb */
|
389 |
|
390 |
//Remove instances associated with this container
|
391 |
$q = "DELETE FROM {$wpdb->prefix}blc_instances
|
613 |
* @param array $container Either [container_type, container_id], or an assoc. array of container data.
|
614 |
* @return blcContainer|null
|
615 |
*/
|
616 |
+
static function get_container( $container ){
|
617 |
+
global $wpdb; /* @var wpdb $wpdb */
|
618 |
|
619 |
if ( !is_array($container) || ( count($container) < 2 ) ){
|
620 |
return null;
|
661 |
* @return array of blcContainer indexed by "container_type|container_id"
|
662 |
*/
|
663 |
static function get_containers( $containers, $purpose = '', $fallback = '', $load_wrapped_objects = false ){
|
664 |
+
global $wpdb; /* @var wpdb $wpdb */
|
665 |
|
666 |
//If the input is invalid or empty, return an empty array.
|
667 |
if ( !is_array($containers) || (count($containers) < 1) ) {
|
735 |
* @param integer $max_results The maximum number of containers to return. Defaults to returning all unsynched containers.
|
736 |
* @return array of blcContainer
|
737 |
*/
|
738 |
+
static function get_unsynched_containers($max_results = 0){
|
739 |
+
global $wpdb; /* @var wpdb $wpdb */
|
740 |
|
741 |
$q = "SELECT * FROM {$wpdb->prefix}blc_synch WHERE synched = 0";
|
742 |
if ( $max_results > 0 ){
|
760 |
* @param bool $forced If true, assume that no synch. records exist and build all of them from scratch.
|
761 |
* @return void
|
762 |
*/
|
763 |
+
static function resynch($forced = false){
|
764 |
global $wpdb;
|
765 |
|
766 |
$module_manager = blcModuleManager::getInstance();
|
785 |
* @return bool
|
786 |
*/
|
787 |
function mark_as_unsynched_where($formats, $container_types){
|
788 |
+
global $wpdb; /* @var wpdb $wpdb */
|
789 |
global $blclog;
|
790 |
|
791 |
//Find containers that match any of the specified formats and add them to
|
843 |
*
|
844 |
* @return bool
|
845 |
*/
|
846 |
+
static function cleanup_containers(){
|
847 |
+
global $wpdb; /* @var wpdb $wpdb */
|
848 |
global $blclog;
|
849 |
|
850 |
$module_manager = blcModuleManager::getInstance();
|
867 |
* @param int $n Number of deleted containers.
|
868 |
* @return string A delete confirmation message, e.g. "5 posts were moved to trash"
|
869 |
*/
|
870 |
+
static function ui_bulk_delete_message($container_type, $n){
|
871 |
$manager = blcContainerHelper::get_manager($container_type);
|
872 |
if ( is_null($manager) ){
|
873 |
return sprintf(__("Container type '%s' not recognized", 'broken-link-checker'), $container_type);
|
885 |
* @param int $n
|
886 |
* @return string
|
887 |
*/
|
888 |
+
static function ui_bulk_trash_message($container_type, $n){
|
889 |
$manager = blcContainerHelper::get_manager($container_type);
|
890 |
if ( is_null($manager) ){
|
891 |
return sprintf(__("Container type '%s' not recognized", 'broken-link-checker'), $container_type);
|
includes/extra-strings.php
CHANGED
@@ -6,6 +6,7 @@ _x("Custom fields", "module name", "broken-link-checker");
|
|
6 |
_x("Embedded DailyMotion videos", "module name", "broken-link-checker");
|
7 |
_x("Embedded Vimeo videos", "module name", "broken-link-checker");
|
8 |
_x("Embedded YouTube videos", "module name", "broken-link-checker");
|
|
|
9 |
_x("HTML images", "module name", "broken-link-checker");
|
10 |
_x("HTML links", "module name", "broken-link-checker");
|
11 |
_x("MediaFire API", "module name", "broken-link-checker");
|
6 |
_x("Embedded DailyMotion videos", "module name", "broken-link-checker");
|
7 |
_x("Embedded Vimeo videos", "module name", "broken-link-checker");
|
8 |
_x("Embedded YouTube videos", "module name", "broken-link-checker");
|
9 |
+
_x("Embedded YouTube videos (old embed code)", "module name", "broken-link-checker");
|
10 |
_x("HTML images", "module name", "broken-link-checker");
|
11 |
_x("HTML links", "module name", "broken-link-checker");
|
12 |
_x("MediaFire API", "module name", "broken-link-checker");
|
includes/instances.php
CHANGED
@@ -518,8 +518,7 @@ function blc_get_instances( $link_ids, $purpose = '', $load_containers = false,
|
|
518 |
array( $result['container_type'], intval($result['container_id']) )
|
519 |
);
|
520 |
}
|
521 |
-
|
522 |
-
$containers = blcContainerHelper::get_containers($container_ids, $purpose, $load_wrapped_objects);
|
523 |
}
|
524 |
|
525 |
//Create an object for each instance and group them by link ID
|
518 |
array( $result['container_type'], intval($result['container_id']) )
|
519 |
);
|
520 |
}
|
521 |
+
$containers = blcContainerHelper::get_containers($container_ids, $purpose, '', $load_wrapped_objects);
|
|
|
522 |
}
|
523 |
|
524 |
//Create an object for each instance and group them by link ID
|
includes/link-query.php
CHANGED
@@ -416,7 +416,25 @@ class blcLinkQuery {
|
|
416 |
$pieces[] = implode(' OR ', $piece);
|
417 |
}
|
418 |
|
419 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
|
421 |
//Custom filters can optionally call one of the native filters
|
422 |
//to narrow down the result set.
|
@@ -431,6 +449,7 @@ class blcLinkQuery {
|
|
431 |
return array(
|
432 |
'where_exprs' => $pieces,
|
433 |
'join_instances' => $join_instances,
|
|
|
434 |
);
|
435 |
}
|
436 |
|
@@ -440,7 +459,6 @@ class blcLinkQuery {
|
|
440 |
* @see blc_get_links()
|
441 |
*
|
442 |
* @param array $params
|
443 |
-
* @param string $purpose
|
444 |
* @return array|int
|
445 |
*/
|
446 |
function get_links($params = null){
|
@@ -459,6 +477,8 @@ class blcLinkQuery {
|
|
459 |
'count_only' => false,
|
460 |
'purpose' => '',
|
461 |
'include_invalid' => false,
|
|
|
|
|
462 |
);
|
463 |
|
464 |
$params = array_merge($defaults, $params);
|
@@ -478,6 +498,13 @@ class blcLinkQuery {
|
|
478 |
if ( $criteria['join_instances'] ){
|
479 |
$joins = "JOIN {$wpdb->prefix}blc_instances AS instances ON links.link_id = instances.link_id";
|
480 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
481 |
|
482 |
if ( $params['count_only'] ){
|
483 |
//Only get the number of matching links.
|
@@ -506,10 +533,12 @@ class blcLinkQuery {
|
|
506 |
{$wpdb->prefix}blc_links AS links
|
507 |
$joins
|
508 |
|
509 |
-
|
510 |
$where_expr
|
511 |
-
|
512 |
-
GROUP BY links.link_id
|
|
|
|
|
513 |
|
514 |
//Add the LIMIT clause
|
515 |
if ( $params['max_results'] || $params['offset'] ){
|
@@ -542,6 +571,9 @@ class blcLinkQuery {
|
|
542 |
$all_instances = blc_get_instances($link_ids, $purpose, $params['load_containers'], $params['load_wrapped_objects']);
|
543 |
//Assign each batch of instances to the right link
|
544 |
foreach($all_instances as $link_id => $instances){
|
|
|
|
|
|
|
545 |
$links[$link_id]->_instances = $instances;
|
546 |
}
|
547 |
}
|
@@ -659,9 +691,11 @@ class blcLinkQuery {
|
|
659 |
* @param int $page Optional. Which page of results to retrieve. Defaults to returning the first page of results.
|
660 |
* @param int $per_page Optional. The number of results per page. Defaults to 30.
|
661 |
* @param string $fallback Optional. Which filter to use if none match the specified $filter_id. Defaults to the native broken link filter.
|
|
|
|
|
662 |
* @return array Associative array of filter data and the results of its execution.
|
663 |
*/
|
664 |
-
function exec_filter($filter_id, $page = 1, $per_page = 30, $fallback = 'broken'){
|
665 |
|
666 |
//Get the selected filter (defaults to displaying broken links)
|
667 |
$current_filter = $this->get_filter($filter_id);
|
@@ -688,6 +722,8 @@ class blcLinkQuery {
|
|
688 |
'offset' => ( ($page-1) * $per_page ),
|
689 |
'max_results' => $per_page,
|
690 |
'purpose' => BLC_FOR_DISPLAY,
|
|
|
|
|
691 |
);
|
692 |
$links = $this->get_filter_links($current_filter, $extra_params);
|
693 |
|
416 |
$pieces[] = implode(' OR ', $piece);
|
417 |
}
|
418 |
|
419 |
+
}
|
420 |
+
|
421 |
+
//Optionally sorting is also possible
|
422 |
+
$order_exprs = array();
|
423 |
+
if ( !empty($params['orderby']) ) {
|
424 |
+
$allowed_columns = array(
|
425 |
+
'url' => 'links.url',
|
426 |
+
);
|
427 |
+
$column = $params['orderby'];
|
428 |
+
|
429 |
+
$direction = !empty($params['order']) ? strtolower($params['order']) : 'asc';
|
430 |
+
if ( !in_array($direction, array('asc', 'desc')) ) {
|
431 |
+
$direction = 'asc';
|
432 |
+
}
|
433 |
+
|
434 |
+
if ( array_key_exists($column, $allowed_columns) ) {
|
435 |
+
$order_exprs[] = $allowed_columns[$column] . ' ' . $direction;
|
436 |
+
}
|
437 |
+
}
|
438 |
|
439 |
//Custom filters can optionally call one of the native filters
|
440 |
//to narrow down the result set.
|
449 |
return array(
|
450 |
'where_exprs' => $pieces,
|
451 |
'join_instances' => $join_instances,
|
452 |
+
'order_exprs' => $order_exprs,
|
453 |
);
|
454 |
}
|
455 |
|
459 |
* @see blc_get_links()
|
460 |
*
|
461 |
* @param array $params
|
|
|
462 |
* @return array|int
|
463 |
*/
|
464 |
function get_links($params = null){
|
477 |
'count_only' => false,
|
478 |
'purpose' => '',
|
479 |
'include_invalid' => false,
|
480 |
+
'orderby' => '',
|
481 |
+
'order' => '',
|
482 |
);
|
483 |
|
484 |
$params = array_merge($defaults, $params);
|
498 |
if ( $criteria['join_instances'] ){
|
499 |
$joins = "JOIN {$wpdb->prefix}blc_instances AS instances ON links.link_id = instances.link_id";
|
500 |
}
|
501 |
+
|
502 |
+
//Optional sorting
|
503 |
+
if ( !empty($criteria['order_exprs']) ) {
|
504 |
+
$order_clause = 'ORDER BY ' . implode(', ', $criteria['order_exprs']);
|
505 |
+
} else {
|
506 |
+
$order_clause = '';
|
507 |
+
}
|
508 |
|
509 |
if ( $params['count_only'] ){
|
510 |
//Only get the number of matching links.
|
533 |
{$wpdb->prefix}blc_links AS links
|
534 |
$joins
|
535 |
|
536 |
+
WHERE
|
537 |
$where_expr
|
538 |
+
|
539 |
+
GROUP BY links.link_id
|
540 |
+
|
541 |
+
{$order_clause}"; //Note: would be a lot faster without GROUP BY
|
542 |
|
543 |
//Add the LIMIT clause
|
544 |
if ( $params['max_results'] || $params['offset'] ){
|
571 |
$all_instances = blc_get_instances($link_ids, $purpose, $params['load_containers'], $params['load_wrapped_objects']);
|
572 |
//Assign each batch of instances to the right link
|
573 |
foreach($all_instances as $link_id => $instances){
|
574 |
+
foreach($instances as $instance) { /** @var blcLinkInstance $instance */
|
575 |
+
$instance->_link = $links[$link_id];
|
576 |
+
}
|
577 |
$links[$link_id]->_instances = $instances;
|
578 |
}
|
579 |
}
|
691 |
* @param int $page Optional. Which page of results to retrieve. Defaults to returning the first page of results.
|
692 |
* @param int $per_page Optional. The number of results per page. Defaults to 30.
|
693 |
* @param string $fallback Optional. Which filter to use if none match the specified $filter_id. Defaults to the native broken link filter.
|
694 |
+
* @param string $orderby Optional. Sort results by this column.
|
695 |
+
* @param string $order Optional. Sort direction ('asc' or 'desc').
|
696 |
* @return array Associative array of filter data and the results of its execution.
|
697 |
*/
|
698 |
+
function exec_filter($filter_id, $page = 1, $per_page = 30, $fallback = 'broken', $orderby = '', $order = 'asc'){
|
699 |
|
700 |
//Get the selected filter (defaults to displaying broken links)
|
701 |
$current_filter = $this->get_filter($filter_id);
|
722 |
'offset' => ( ($page-1) * $per_page ),
|
723 |
'max_results' => $per_page,
|
724 |
'purpose' => BLC_FOR_DISPLAY,
|
725 |
+
'orderby' => $orderby,
|
726 |
+
'order' => $order,
|
727 |
);
|
728 |
$links = $this->get_filter_links($current_filter, $extra_params);
|
729 |
|
includes/links.php
CHANGED
@@ -117,7 +117,7 @@ class blcLink {
|
|
117 |
'redirect_count' => '%d',
|
118 |
'log' => '%s',
|
119 |
'http_code' => '%d',
|
120 |
-
'request_duration' => '%
|
121 |
'timeout' => 'bool',
|
122 |
'result_hash' => '%s',
|
123 |
'broken' => 'bool',
|
@@ -128,7 +128,7 @@ class blcLink {
|
|
128 |
'status_code' => '%s',
|
129 |
);
|
130 |
|
131 |
-
if (
|
132 |
//Load a link with ID = $arg from the DB.
|
133 |
$q = $wpdb->prepare("SELECT * FROM {$wpdb->prefix}blc_links WHERE link_id=%d LIMIT 1", $arg);
|
134 |
$arr = $wpdb->get_row( $q, ARRAY_A );
|
@@ -901,7 +901,7 @@ class blcLink {
|
|
901 |
* @return bool
|
902 |
*/
|
903 |
function blc_cleanup_links( $link_id = null ){
|
904 |
-
global $wpdb;
|
905 |
global $blclog;
|
906 |
|
907 |
$q = "DELETE FROM {$wpdb->prefix}blc_links
|
117 |
'redirect_count' => '%d',
|
118 |
'log' => '%s',
|
119 |
'http_code' => '%d',
|
120 |
+
'request_duration' => '%F',
|
121 |
'timeout' => 'bool',
|
122 |
'result_hash' => '%s',
|
123 |
'broken' => 'bool',
|
128 |
'status_code' => '%s',
|
129 |
);
|
130 |
|
131 |
+
if (is_numeric($arg)){
|
132 |
//Load a link with ID = $arg from the DB.
|
133 |
$q = $wpdb->prepare("SELECT * FROM {$wpdb->prefix}blc_links WHERE link_id=%d LIMIT 1", $arg);
|
134 |
$arr = $wpdb->get_row( $q, ARRAY_A );
|
901 |
* @return bool
|
902 |
*/
|
903 |
function blc_cleanup_links( $link_id = null ){
|
904 |
+
global $wpdb; /* @var wpdb $wpdb */
|
905 |
global $blclog;
|
906 |
|
907 |
$q = "DELETE FROM {$wpdb->prefix}blc_links
|
includes/module-manager.php
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
class blcModuleManager {
|
4 |
-
|
|
|
5 |
var $plugin_conf;
|
6 |
var $module_dir = '';
|
7 |
|
@@ -37,7 +38,7 @@ class blcModuleManager {
|
|
37 |
* Get an instance of the module manager.
|
38 |
*
|
39 |
* @param array|null $default_active_modules
|
40 |
-
* @return
|
41 |
*/
|
42 |
static function getInstance($default_active_modules = null){
|
43 |
static $instance = null;
|
@@ -355,7 +356,7 @@ class blcModuleManager {
|
|
355 |
* Does nothing if the module is already active.
|
356 |
*
|
357 |
* @param string $module_id
|
358 |
-
* @return bool True if module was activated
|
359 |
*/
|
360 |
function activate($module_id){
|
361 |
if ( $this->is_active($module_id) ){
|
@@ -381,6 +382,7 @@ class blcModuleManager {
|
|
381 |
if ( $module ){
|
382 |
$module->activated();
|
383 |
}
|
|
|
384 |
} else {
|
385 |
return false;
|
386 |
}
|
1 |
<?php
|
2 |
|
3 |
class blcModuleManager {
|
4 |
+
|
5 |
+
/* @var blcConfigurationManager */
|
6 |
var $plugin_conf;
|
7 |
var $module_dir = '';
|
8 |
|
38 |
* Get an instance of the module manager.
|
39 |
*
|
40 |
* @param array|null $default_active_modules
|
41 |
+
* @return blcModuleManager
|
42 |
*/
|
43 |
static function getInstance($default_active_modules = null){
|
44 |
static $instance = null;
|
356 |
* Does nothing if the module is already active.
|
357 |
*
|
358 |
* @param string $module_id
|
359 |
+
* @return bool True if module was activated successfully, false otherwise.
|
360 |
*/
|
361 |
function activate($module_id){
|
362 |
if ( $this->is_active($module_id) ){
|
382 |
if ( $module ){
|
383 |
$module->activated();
|
384 |
}
|
385 |
+
return true;
|
386 |
} else {
|
387 |
return false;
|
388 |
}
|
includes/parsers.php
CHANGED
@@ -303,7 +303,7 @@ class blcParserHelper {
|
|
303 |
* @param string $container_type
|
304 |
* @return array of blcParser
|
305 |
*/
|
306 |
-
function get_parsers( $format, $container_type ){
|
307 |
$found = array();
|
308 |
|
309 |
//Retrieve a list of active parsers
|
303 |
* @param string $container_type
|
304 |
* @return array of blcParser
|
305 |
*/
|
306 |
+
static function get_parsers( $format, $container_type ){
|
307 |
$found = array();
|
308 |
|
309 |
//Retrieve a list of active parsers
|
includes/screen-meta-links.php
CHANGED
@@ -58,7 +58,7 @@ class wsScreenMetaLinks11 {
|
|
58 |
//Basically a list of props for a jQuery() call
|
59 |
$link = compact('id', 'text', 'href');
|
60 |
$link = array_merge($link, $attributes);
|
61 |
-
|
62 |
//Add the CSS classes that will make the look like a proper meta link
|
63 |
if ( empty($link['class']) ){
|
64 |
$link['class'] = '';
|
@@ -86,7 +86,6 @@ class wsScreenMetaLinks11 {
|
|
86 |
|
87 |
//Find links registered for this page
|
88 |
$links = $this->get_links_for_page($hook_suffix);
|
89 |
-
|
90 |
if ( empty($links) ){
|
91 |
return;
|
92 |
}
|
@@ -95,6 +94,9 @@ class wsScreenMetaLinks11 {
|
|
95 |
<script type="text/javascript">
|
96 |
(function($, links){
|
97 |
var container = $('#screen-meta-links');
|
|
|
|
|
|
|
98 |
for(var i = 0; i < links.length; i++){
|
99 |
container.append(
|
100 |
$('<div/>')
|
@@ -175,7 +177,9 @@ class wsScreenMetaLinks11 {
|
|
175 |
background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
|
176 |
}
|
177 |
|
178 |
-
#screen-meta .custom-screen-meta-link-wrap a.custom-screen-meta-link
|
|
|
|
|
179 |
background-image: none;
|
180 |
padding-right: 6px;
|
181 |
color: #777;
|
@@ -260,7 +264,7 @@ function add_screen_meta_link($id, $text, $href, $page, $attributes = null){
|
|
260 |
$instance = new $className;
|
261 |
}
|
262 |
|
263 |
-
|
264 |
}
|
265 |
|
266 |
?>
|
58 |
//Basically a list of props for a jQuery() call
|
59 |
$link = compact('id', 'text', 'href');
|
60 |
$link = array_merge($link, $attributes);
|
61 |
+
|
62 |
//Add the CSS classes that will make the look like a proper meta link
|
63 |
if ( empty($link['class']) ){
|
64 |
$link['class'] = '';
|
86 |
|
87 |
//Find links registered for this page
|
88 |
$links = $this->get_links_for_page($hook_suffix);
|
|
|
89 |
if ( empty($links) ){
|
90 |
return;
|
91 |
}
|
94 |
<script type="text/javascript">
|
95 |
(function($, links){
|
96 |
var container = $('#screen-meta-links');
|
97 |
+
if ( container.length == 0 ) {
|
98 |
+
container = $('<div />').attr('id', 'screen-meta-links').insertAfter('#screen-meta');
|
99 |
+
}
|
100 |
for(var i = 0; i < links.length; i++){
|
101 |
container.append(
|
102 |
$('<div/>')
|
177 |
background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
|
178 |
}
|
179 |
|
180 |
+
#screen-meta .custom-screen-meta-link-wrap a.custom-screen-meta-link,
|
181 |
+
#screen-meta-links .custom-screen-meta-link-wrap a.custom-screen-meta-link
|
182 |
+
{
|
183 |
background-image: none;
|
184 |
padding-right: 6px;
|
185 |
color: #777;
|
264 |
$instance = new $className;
|
265 |
}
|
266 |
|
267 |
+
$instance->add_screen_meta_link($id, $text, $href, $page, $attributes);
|
268 |
}
|
269 |
|
270 |
?>
|
includes/wp-mutex.php
CHANGED
@@ -11,8 +11,8 @@ class WPMutex {
|
|
11 |
* @param bool $network_wide
|
12 |
* @return bool
|
13 |
*/
|
14 |
-
function acquire($name, $timeout = 0, $network_wide = false){
|
15 |
-
global $wpdb;
|
16 |
if ( !$network_wide ){
|
17 |
$name = WPMutex::_get_private_name($name);
|
18 |
}
|
@@ -27,8 +27,8 @@ class WPMutex {
|
|
27 |
* @param bool $network_wide
|
28 |
* @return bool
|
29 |
*/
|
30 |
-
function release($name, $network_wide = false){
|
31 |
-
global $wpdb;
|
32 |
if ( !$network_wide ){
|
33 |
$name = WPMutex::_get_private_name($name);
|
34 |
}
|
@@ -44,7 +44,7 @@ class WPMutex {
|
|
44 |
* @param string $name
|
45 |
* @return string
|
46 |
*/
|
47 |
-
function _get_private_name($name){
|
48 |
global $current_blog;
|
49 |
if ( function_exists('is_multisite') && is_multisite() && isset($current_blog->blog_id) ){
|
50 |
$name .= '-blog-' . $current_blog->blog_id;
|
11 |
* @param bool $network_wide
|
12 |
* @return bool
|
13 |
*/
|
14 |
+
static function acquire($name, $timeout = 0, $network_wide = false){
|
15 |
+
global $wpdb; /* @var wpdb $wpdb */
|
16 |
if ( !$network_wide ){
|
17 |
$name = WPMutex::_get_private_name($name);
|
18 |
}
|
27 |
* @param bool $network_wide
|
28 |
* @return bool
|
29 |
*/
|
30 |
+
static function release($name, $network_wide = false){
|
31 |
+
global $wpdb; /* @var wpdb $wpdb */
|
32 |
if ( !$network_wide ){
|
33 |
$name = WPMutex::_get_private_name($name);
|
34 |
}
|
44 |
* @param string $name
|
45 |
* @return string
|
46 |
*/
|
47 |
+
static function _get_private_name($name){
|
48 |
global $current_blog;
|
49 |
if ( function_exists('is_multisite') && is_multisite() && isset($current_blog->blog_id) ){
|
50 |
$name .= '-blog-' . $current_blog->blog_id;
|
languages/broken-link-checker-bg_BG.mo
ADDED
Binary file
|
languages/broken-link-checker-bg_BG.po
ADDED
@@ -0,0 +1,1674 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: broken-link-checker\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
5 |
+
"POT-Creation-Date: 2010-12-25 11:10:52+00:00\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: shivangi <shivangi@outshinesolutions.com>\n"
|
8 |
+
"Language-Team: Team Ajoft < info@ajoft.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: Bulgarian\n"
|
14 |
+
"X-Poedit-Country: BULGARIA\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
|
17 |
+
#: modules/containers/dummy.php:34
|
18 |
+
#: modules/containers/dummy.php:45
|
19 |
+
msgid "I don't know how to edit a '%s' [%d]."
|
20 |
+
msgstr "Аз не знам как да редактирате '%s ' [%d]."
|
21 |
+
|
22 |
+
#: modules/containers/custom_field.php:84
|
23 |
+
msgid "Failed to update the meta field '%s' on %s [%d]"
|
24 |
+
msgstr "Неуспешно обновяване '%s' мета областта на% s [% d]"
|
25 |
+
|
26 |
+
#: modules/containers/custom_field.php:110
|
27 |
+
msgid "Failed to delete the meta field '%s' on %s [%d]"
|
28 |
+
msgstr "Неуспешно да изтриете '%s' мета областта на% s [% d]"
|
29 |
+
|
30 |
+
#: modules/containers/custom_field.php:187
|
31 |
+
msgid "Edit this post"
|
32 |
+
msgstr "Редактиране на този пост"
|
33 |
+
|
34 |
+
#: modules/containers/custom_field.php:197
|
35 |
+
#: includes/any-post.php:455
|
36 |
+
msgid "Edit this item"
|
37 |
+
msgstr "Редактиране на тази позиция,"
|
38 |
+
|
39 |
+
#: modules/containers/custom_field.php:197
|
40 |
+
#: modules/containers/blogroll.php:46
|
41 |
+
#: modules/containers/comment.php:153
|
42 |
+
#: includes/any-post.php:397
|
43 |
+
msgid "Edit"
|
44 |
+
msgstr "редактирам"
|
45 |
+
|
46 |
+
#: modules/containers/custom_field.php:203
|
47 |
+
#: includes/any-post.php:405
|
48 |
+
msgid "Move this item to the Trash"
|
49 |
+
msgstr "Преместване този елемент на Trash"
|
50 |
+
|
51 |
+
#: modules/containers/custom_field.php:205
|
52 |
+
#: includes/any-post.php:407
|
53 |
+
msgid "Trash"
|
54 |
+
msgstr "боклук"
|
55 |
+
|
56 |
+
#: modules/containers/custom_field.php:210
|
57 |
+
#: includes/any-post.php:412
|
58 |
+
msgid "Delete this item permanently"
|
59 |
+
msgstr "Изтриване на този елемент постоянно"
|
60 |
+
|
61 |
+
#: modules/containers/custom_field.php:212
|
62 |
+
#: modules/containers/blogroll.php:47
|
63 |
+
#: includes/any-post.php:414
|
64 |
+
msgid "Delete"
|
65 |
+
msgstr "Изтриване"
|
66 |
+
|
67 |
+
#: modules/containers/custom_field.php:217
|
68 |
+
msgid "View \"%s\""
|
69 |
+
msgstr "оглед \"% s \""
|
70 |
+
|
71 |
+
#: modules/containers/custom_field.php:217
|
72 |
+
#: modules/containers/comment.php:166
|
73 |
+
#: includes/any-post.php:436
|
74 |
+
msgid "View"
|
75 |
+
msgstr "оглед"
|
76 |
+
|
77 |
+
#: modules/containers/custom_field.php:284
|
78 |
+
#: includes/any-post.php:564
|
79 |
+
msgid "Failed to delete post \"%s\" (%d)"
|
80 |
+
msgstr "Неуспешно изтриване на мнение \"% s \" (% d)"
|
81 |
+
|
82 |
+
#: modules/containers/custom_field.php:303
|
83 |
+
#: includes/any-post.php:583
|
84 |
+
msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
|
85 |
+
msgstr "Не може да се движат след \"%s \" (%d) в кошчето, защото функцията на боклука е забранено"
|
86 |
+
|
87 |
+
#: modules/containers/custom_field.php:322
|
88 |
+
#: includes/any-post.php:603
|
89 |
+
msgid "Failed to move post \"%s\" (%d) to the trash"
|
90 |
+
msgstr "Неуспешен опит да се движат след \"%s\" (%d) в кошчето"
|
91 |
+
|
92 |
+
#: modules/containers/blogroll.php:21
|
93 |
+
msgid "Bookmark"
|
94 |
+
msgstr "Bookmark"
|
95 |
+
|
96 |
+
#: modules/containers/blogroll.php:27
|
97 |
+
#: modules/containers/blogroll.php:46
|
98 |
+
msgid "Edit this bookmark"
|
99 |
+
msgstr "Редактиране на тази маркировка"
|
100 |
+
|
101 |
+
#: modules/containers/blogroll.php:47
|
102 |
+
msgid ""
|
103 |
+
"You are about to delete this link '%s'\n"
|
104 |
+
" 'Cancel' to stop, 'OK' to delete."
|
105 |
+
msgstr ""
|
106 |
+
"Вие сте за да изтриете тази връзка \"%s '\n"
|
107 |
+
" \"Отказ\", за да се спре, 'ОК', за да изтриете."
|
108 |
+
|
109 |
+
#: modules/containers/blogroll.php:83
|
110 |
+
#: modules/containers/comment.php:43
|
111 |
+
#: includes/any-post.php:519
|
112 |
+
msgid "Nothing to update"
|
113 |
+
msgstr "Няма нищо да се актуализира"
|
114 |
+
|
115 |
+
#: modules/containers/blogroll.php:97
|
116 |
+
msgid "Updating bookmark %d failed"
|
117 |
+
msgstr "Актуализиране маркер%dне успя"
|
118 |
+
|
119 |
+
#: modules/containers/blogroll.php:128
|
120 |
+
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
121 |
+
msgstr "Неуспешно изтриване на блогрол връзка \"% s \" (% d)"
|
122 |
+
|
123 |
+
#: modules/containers/blogroll.php:298
|
124 |
+
msgid "%d blogroll link deleted."
|
125 |
+
msgid_plural "%d blogroll links deleted."
|
126 |
+
msgstr[0] "%d блогрол връзка заличава."
|
127 |
+
msgstr[1] "%d блогрол връзка заличава."
|
128 |
+
|
129 |
+
#: modules/containers/comment.php:53
|
130 |
+
msgid "Updating comment %d failed"
|
131 |
+
msgstr "Актуализиране на коментар%d не успя"
|
132 |
+
|
133 |
+
#: modules/containers/comment.php:74
|
134 |
+
msgid "Failed to delete comment %d"
|
135 |
+
msgstr "Неуспешно изтриване на коментар %d"
|
136 |
+
|
137 |
+
#: modules/containers/comment.php:95
|
138 |
+
msgid "Can't move comment %d to the trash"
|
139 |
+
msgstr "Не мога да се движат коментар %d в кошчето"
|
140 |
+
|
141 |
+
#: modules/containers/comment.php:153
|
142 |
+
#: modules/containers/comment.php:195
|
143 |
+
msgid "Edit comment"
|
144 |
+
msgstr "Редактиране на коментар"
|
145 |
+
|
146 |
+
#: modules/containers/comment.php:160
|
147 |
+
msgid "Delete Permanently"
|
148 |
+
msgstr "изтриете за постоянно"
|
149 |
+
|
150 |
+
#: modules/containers/comment.php:162
|
151 |
+
msgid "Move this comment to the trash"
|
152 |
+
msgstr "Преместете този коментар в кошчето"
|
153 |
+
|
154 |
+
#: modules/containers/comment.php:162
|
155 |
+
msgctxt "verb"
|
156 |
+
msgid "Trash"
|
157 |
+
msgstr "боклук"
|
158 |
+
|
159 |
+
#: modules/containers/comment.php:166
|
160 |
+
msgid "View comment"
|
161 |
+
msgstr "Преглед на коментар"
|
162 |
+
|
163 |
+
#: modules/containers/comment.php:183
|
164 |
+
msgid "Comment"
|
165 |
+
msgstr "коментар"
|
166 |
+
|
167 |
+
#: modules/containers/comment.php:371
|
168 |
+
msgid "%d comment has been deleted."
|
169 |
+
msgid_plural "%d comments have been deleted."
|
170 |
+
msgstr[0] " %d коментар е бил изтрит."
|
171 |
+
msgstr[1] " %d коментар е бил изтрит."
|
172 |
+
|
173 |
+
#: modules/containers/comment.php:390
|
174 |
+
msgid "%d comment moved to the Trash."
|
175 |
+
msgid_plural "%d comments moved to the Trash."
|
176 |
+
msgstr[0] "%d коментар преместен в кошчето."
|
177 |
+
msgstr[1] "%d коментар преместен в кошчето."
|
178 |
+
|
179 |
+
#: modules/checkers/http.php:242
|
180 |
+
msgid "Server Not Found"
|
181 |
+
msgstr "Проблем със сървъра е намерена"
|
182 |
+
|
183 |
+
#: modules/checkers/http.php:257
|
184 |
+
msgid "Connection Failed"
|
185 |
+
msgstr "връзката не се"
|
186 |
+
|
187 |
+
#: modules/checkers/http.php:263
|
188 |
+
#: modules/extras/mediafire.php:96
|
189 |
+
#: includes/links.php:845
|
190 |
+
msgid "Unknown Error"
|
191 |
+
msgstr "Неизвестна грешка"
|
192 |
+
|
193 |
+
#: modules/checkers/http.php:292
|
194 |
+
#: modules/checkers/http.php:362
|
195 |
+
msgid "HTTP code : %d"
|
196 |
+
msgstr "HTTP код: %d"
|
197 |
+
|
198 |
+
#: modules/checkers/http.php:294
|
199 |
+
#: modules/checkers/http.php:364
|
200 |
+
msgid "(No response)"
|
201 |
+
msgstr "(№ отговор)"
|
202 |
+
|
203 |
+
#: modules/checkers/http.php:300
|
204 |
+
msgid "Most likely the connection timed out or the domain doesn't exist."
|
205 |
+
msgstr "Най-вероятно връзката приключи или домейнът не съществува."
|
206 |
+
|
207 |
+
#: modules/checkers/http.php:371
|
208 |
+
msgid "Request timed out."
|
209 |
+
msgstr "Заявка за времето."
|
210 |
+
|
211 |
+
#: modules/checkers/http.php:389
|
212 |
+
msgid "Using Snoopy"
|
213 |
+
msgstr "Използването на Снупи"
|
214 |
+
|
215 |
+
#: modules/parsers/image.php:156
|
216 |
+
msgid "Image"
|
217 |
+
msgstr "изображение"
|
218 |
+
|
219 |
+
#: modules/parsers/metadata.php:117
|
220 |
+
msgid "Custom field"
|
221 |
+
msgstr "персонализирано поле"
|
222 |
+
|
223 |
+
#: modules/extras/dailymotion-embed.php:23
|
224 |
+
msgid "DailyMotion Video"
|
225 |
+
msgstr "DailyMotion Видео"
|
226 |
+
|
227 |
+
#: modules/extras/dailymotion-embed.php:24
|
228 |
+
msgid "Embedded DailyMotion video"
|
229 |
+
msgstr "Вграден DailyMotion видео"
|
230 |
+
|
231 |
+
#: modules/extras/rapidshare.php:142
|
232 |
+
#: modules/extras/mediafire.php:91
|
233 |
+
#: modules/extras/megaupload.php:109
|
234 |
+
msgid "Not Found"
|
235 |
+
msgstr "Не е намерена"
|
236 |
+
|
237 |
+
#: modules/extras/rapidshare.php:148
|
238 |
+
#: modules/extras/rapidshare.php:154
|
239 |
+
#: modules/extras/rapidshare.php:181
|
240 |
+
#: modules/extras/megaupload.php:101
|
241 |
+
#: includes/links.php:875
|
242 |
+
msgctxt "link status"
|
243 |
+
msgid "OK"
|
244 |
+
msgstr "OK"
|
245 |
+
|
246 |
+
#: modules/extras/rapidshare.php:161
|
247 |
+
msgid "RS Server Down"
|
248 |
+
msgstr "RS сървъри"
|
249 |
+
|
250 |
+
#: modules/extras/rapidshare.php:168
|
251 |
+
msgid "File Blocked"
|
252 |
+
msgstr "File Блокирани"
|
253 |
+
|
254 |
+
#: modules/extras/rapidshare.php:175
|
255 |
+
msgid "File Locked"
|
256 |
+
msgstr "File Заключени"
|
257 |
+
|
258 |
+
#: modules/extras/rapidshare.php:186
|
259 |
+
msgid "RapidShare : %s"
|
260 |
+
msgstr "%s: RapidShare"
|
261 |
+
|
262 |
+
#: modules/extras/rapidshare.php:192
|
263 |
+
msgid "RapidShare API error: %s"
|
264 |
+
msgstr "RapidShare API за грешка:%s"
|
265 |
+
|
266 |
+
#: modules/extras/embed-parser-base.php:140
|
267 |
+
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
268 |
+
msgstr "Вградените видеоклипове не могат да бъдат редактирани чрез Broken Link Checker. Моля, редактирате или замени въпросното видео в ръчно."
|
269 |
+
|
270 |
+
#: modules/extras/vimeo-embed.php:24
|
271 |
+
msgid "Vimeo Video"
|
272 |
+
msgstr "Vimeo Video"
|
273 |
+
|
274 |
+
#: modules/extras/vimeo-embed.php:25
|
275 |
+
msgid "Embedded Vimeo video"
|
276 |
+
msgstr "Embedded video Vimeo"
|
277 |
+
|
278 |
+
#: modules/extras/youtube.php:63
|
279 |
+
#: modules/extras/youtube.php:66
|
280 |
+
msgid "Video Not Found"
|
281 |
+
msgstr "Видеоклипът не беше намерен"
|
282 |
+
|
283 |
+
#: modules/extras/youtube.php:74
|
284 |
+
msgid "Video Removed"
|
285 |
+
msgstr "Видеоклипът е премахнат"
|
286 |
+
|
287 |
+
#: modules/extras/youtube.php:82
|
288 |
+
msgid "Invalid Video ID"
|
289 |
+
msgstr "Невалиден Video ID"
|
290 |
+
|
291 |
+
#: modules/extras/youtube.php:94
|
292 |
+
msgid "Video OK"
|
293 |
+
msgstr "Видео OK"
|
294 |
+
|
295 |
+
#: modules/extras/youtube.php:95
|
296 |
+
#: modules/extras/youtube.php:122
|
297 |
+
#: core/core.php:966
|
298 |
+
msgid "OK"
|
299 |
+
msgstr "OK"
|
300 |
+
|
301 |
+
#: modules/extras/youtube.php:108
|
302 |
+
msgid "Video status : %s%s"
|
303 |
+
msgstr "Видео положение: % s% s"
|
304 |
+
|
305 |
+
#: modules/extras/youtube.php:127
|
306 |
+
msgid "Video Restricted"
|
307 |
+
msgstr "Видео Ограничен"
|
308 |
+
|
309 |
+
#: modules/extras/youtube.php:144
|
310 |
+
msgid "Unknown YouTube API response received."
|
311 |
+
msgstr "Неизвестна YouTube API отговор получи."
|
312 |
+
|
313 |
+
#: modules/extras/youtube-embed.php:22
|
314 |
+
msgid "YouTube Video"
|
315 |
+
msgstr "YouTube видео"
|
316 |
+
|
317 |
+
#: modules/extras/youtube-embed.php:23
|
318 |
+
msgid "Embedded YouTube video"
|
319 |
+
msgstr "Embedded YouTube video"
|
320 |
+
|
321 |
+
#: modules/extras/megaupload.php:116
|
322 |
+
msgid "File Temporarily Unavailable"
|
323 |
+
msgstr "File временно недостъпен"
|
324 |
+
|
325 |
+
#: modules/extras/megaupload.php:122
|
326 |
+
msgid "API Error"
|
327 |
+
msgstr "API Грешка"
|
328 |
+
|
329 |
+
#: core/init.php:234
|
330 |
+
msgid "Once Weekly"
|
331 |
+
msgstr "веднъж седмично"
|
332 |
+
|
333 |
+
#: core/init.php:240
|
334 |
+
msgid "Twice a Month"
|
335 |
+
msgstr "Два пъти месечно"
|
336 |
+
|
337 |
+
#: core/init.php:309
|
338 |
+
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
339 |
+
msgstr "Broken Link Checker инсталация провали. Опитайте се да деактивирате и след това реактивиращи плъгина."
|
340 |
+
|
341 |
+
#: core/core.php:153
|
342 |
+
#: includes/admin/links-page-js.php:37
|
343 |
+
msgid "Loading..."
|
344 |
+
msgstr "Зареждане ..."
|
345 |
+
|
346 |
+
#: core/core.php:177
|
347 |
+
#: includes/admin/options-page-js.php:18
|
348 |
+
msgid "[ Network error ]"
|
349 |
+
msgstr "[Network грешка]"
|
350 |
+
|
351 |
+
#: core/core.php:202
|
352 |
+
msgid "Automatically expand the widget if broken links have been detected"
|
353 |
+
msgstr "Автоматично разширяване на джаджа, ако прекъснатите връзки са открити"
|
354 |
+
|
355 |
+
#: core/core.php:324
|
356 |
+
msgid "Link Checker Settings"
|
357 |
+
msgstr "Настройки на Link Checker"
|
358 |
+
|
359 |
+
#: core/core.php:325
|
360 |
+
msgid "Link Checker"
|
361 |
+
msgstr "Link Checker"
|
362 |
+
|
363 |
+
#: core/core.php:330
|
364 |
+
#: includes/link-query.php:26
|
365 |
+
msgid "Broken Links"
|
366 |
+
msgstr "Неактивни връзки"
|
367 |
+
|
368 |
+
#: core/core.php:346
|
369 |
+
msgid "View Broken Links"
|
370 |
+
msgstr "Неактивни връзки"
|
371 |
+
|
372 |
+
#: core/core.php:361
|
373 |
+
msgid "Feedback"
|
374 |
+
msgstr "обратна връзка"
|
375 |
+
|
376 |
+
#: core/core.php:373
|
377 |
+
msgid "Go to Settings"
|
378 |
+
msgstr "Отидете в Настройки"
|
379 |
+
|
380 |
+
#: core/core.php:380
|
381 |
+
msgid "Go to Broken Links"
|
382 |
+
msgstr "Неактивни връзки"
|
383 |
+
|
384 |
+
#: core/core.php:398
|
385 |
+
msgid "Settings"
|
386 |
+
msgstr "Настройки"
|
387 |
+
|
388 |
+
#: core/core.php:410
|
389 |
+
#: core/core.php:1213
|
390 |
+
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
391 |
+
msgstr "Грешка: таблиците в базата данни на плъгин не са актуални! (Текуща версия:%d, който се очаква:%d)"
|
392 |
+
|
393 |
+
#: core/core.php:549
|
394 |
+
msgid "Settings saved."
|
395 |
+
msgstr "Настройките са запазени."
|
396 |
+
|
397 |
+
#: core/core.php:555
|
398 |
+
msgid "Thank you for your donation!"
|
399 |
+
msgstr "Благодаря ви за вашето дарение!"
|
400 |
+
|
401 |
+
#: core/core.php:562
|
402 |
+
msgid "Complete site recheck started."
|
403 |
+
msgstr "Пълния сайт проверете отново започна."
|
404 |
+
|
405 |
+
#: core/core.php:571
|
406 |
+
#: core/core.php:2768
|
407 |
+
msgid "Details"
|
408 |
+
msgstr "детайли"
|
409 |
+
|
410 |
+
#: core/core.php:585
|
411 |
+
msgid "General"
|
412 |
+
msgstr "общ"
|
413 |
+
|
414 |
+
#: core/core.php:586
|
415 |
+
msgid "Look For Links In"
|
416 |
+
msgstr "Потърсете връзки в"
|
417 |
+
|
418 |
+
#: core/core.php:587
|
419 |
+
msgid "Which Links To Check"
|
420 |
+
msgstr "Кои връзки да се провери"
|
421 |
+
|
422 |
+
#: core/core.php:588
|
423 |
+
msgid "Protocols & APIs"
|
424 |
+
msgstr "Протоколи и APIs"
|
425 |
+
|
426 |
+
#: core/core.php:589
|
427 |
+
msgid "Advanced"
|
428 |
+
msgstr "напреднал"
|
429 |
+
|
430 |
+
#: core/core.php:604
|
431 |
+
msgid "Broken Link Checker Options"
|
432 |
+
msgstr "Broken Link Checker Опции"
|
433 |
+
|
434 |
+
#: core/core.php:646
|
435 |
+
#: includes/admin/table-printer.php:168
|
436 |
+
msgid "Status"
|
437 |
+
msgstr "Статус"
|
438 |
+
|
439 |
+
#: core/core.php:648
|
440 |
+
#: includes/admin/options-page-js.php:56
|
441 |
+
msgid "Show debug info"
|
442 |
+
msgstr "Покажи дебъгване информация"
|
443 |
+
|
444 |
+
#: core/core.php:676
|
445 |
+
msgid "Check each link"
|
446 |
+
msgstr "Проверете всяка връзка"
|
447 |
+
|
448 |
+
#: core/core.php:681
|
449 |
+
msgid "Every %s hours"
|
450 |
+
msgstr "Всеки %s часа"
|
451 |
+
|
452 |
+
#: core/core.php:690
|
453 |
+
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
454 |
+
msgstr "Съществуващите връзки ще бъдат проверени това често. Новите връзки ще обикновено се проверяват най-скоро."
|
455 |
+
|
456 |
+
#: core/core.php:697
|
457 |
+
msgid "E-mail notifications"
|
458 |
+
msgstr "Е-поща"
|
459 |
+
|
460 |
+
#: core/core.php:703
|
461 |
+
msgid "Send me e-mail notifications about newly detected broken links"
|
462 |
+
msgstr "Изпратете ми имейл уведомления за нови открити счупени връзки"
|
463 |
+
|
464 |
+
#: core/core.php:710
|
465 |
+
msgid "Link tweaks"
|
466 |
+
msgstr "Линк ощипвам"
|
467 |
+
|
468 |
+
#: core/core.php:716
|
469 |
+
msgid "Apply custom formatting to broken links"
|
470 |
+
msgstr "Нанесете обичай форматиране на прекъснати връзки"
|
471 |
+
|
472 |
+
#: core/core.php:720
|
473 |
+
#: core/core.php:748
|
474 |
+
msgid "Edit CSS"
|
475 |
+
msgstr "Редактиране на CSS"
|
476 |
+
|
477 |
+
#: core/core.php:744
|
478 |
+
msgid "Apply custom formatting to removed links"
|
479 |
+
msgstr "Нанесете обичай форматиране на премахнатите връзки"
|
480 |
+
|
481 |
+
#: core/core.php:772
|
482 |
+
msgid "Stop search engines from following broken links"
|
483 |
+
msgstr "Спри търсене двигатели от следните счупени хипервръзки"
|
484 |
+
|
485 |
+
#: core/core.php:789
|
486 |
+
msgid "Look for links in"
|
487 |
+
msgstr "Потърсете връзки в"
|
488 |
+
|
489 |
+
#: core/core.php:800
|
490 |
+
msgid "Post statuses"
|
491 |
+
msgstr "Мнение статуси"
|
492 |
+
|
493 |
+
#: core/core.php:833
|
494 |
+
msgid "Link types"
|
495 |
+
msgstr "Линк видове"
|
496 |
+
|
497 |
+
#: core/core.php:839
|
498 |
+
msgid "Error : All link parsers missing!"
|
499 |
+
msgstr "Грешка: Всички връзка парсери, липсва!"
|
500 |
+
|
501 |
+
#: core/core.php:846
|
502 |
+
msgid "Exclusion list"
|
503 |
+
msgstr "изключване списък"
|
504 |
+
|
505 |
+
#: core/core.php:847
|
506 |
+
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
507 |
+
msgstr "Не проверите връзки в случаите, когато URL адрес съдържа някоя от тези думи (по една на ред):"
|
508 |
+
|
509 |
+
#: core/core.php:865
|
510 |
+
msgid "Check links using"
|
511 |
+
msgstr "Проверете връзки използване"
|
512 |
+
|
513 |
+
#: core/core.php:884
|
514 |
+
#: includes/links.php:849
|
515 |
+
msgid "Timeout"
|
516 |
+
msgstr "Timeout"
|
517 |
+
|
518 |
+
#: core/core.php:890
|
519 |
+
#: core/core.php:936
|
520 |
+
#: core/core.php:2895
|
521 |
+
msgid "%s seconds"
|
522 |
+
msgstr "%s секунди"
|
523 |
+
|
524 |
+
#: core/core.php:899
|
525 |
+
msgid "Links that take longer than this to load will be marked as broken."
|
526 |
+
msgstr "Връзки, че да отнеме повече време от това да се зареди, ще бъдат маркирани като счупени."
|
527 |
+
|
528 |
+
#: core/core.php:906
|
529 |
+
msgid "Link monitor"
|
530 |
+
msgstr "Линк монитор"
|
531 |
+
|
532 |
+
#: core/core.php:914
|
533 |
+
msgid "Run continuously while the Dashboard is open"
|
534 |
+
msgstr "Работят непрекъснато, докато Dashboard е отворен"
|
535 |
+
|
536 |
+
#: core/core.php:922
|
537 |
+
msgid "Run hourly in the background"
|
538 |
+
msgstr "Run час във фонов режим"
|
539 |
+
|
540 |
+
#: core/core.php:930
|
541 |
+
msgid "Max. execution time"
|
542 |
+
msgstr "Макс. време за изпълнение"
|
543 |
+
|
544 |
+
#: core/core.php:947
|
545 |
+
msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
|
546 |
+
msgstr "В плъгин работи, като периодично стартиране на фона работа, прави разбор вашите мнения за връзки проверява откритите URL адреси, и изпълнява други задачи, отнемащи време. Тук можете да настроите колко дълго, най-много, връзката на монитора да изпълнявате всеки път, преди да спрете."
|
547 |
+
|
548 |
+
#: core/core.php:957
|
549 |
+
msgid "Custom temporary directory"
|
550 |
+
msgstr "Потребителски временна директория"
|
551 |
+
|
552 |
+
#: core/core.php:969
|
553 |
+
msgid "Error : This directory isn't writable by PHP."
|
554 |
+
msgstr "Грешка: Тази директория не се записва от PHP."
|
555 |
+
|
556 |
+
#: core/core.php:974
|
557 |
+
msgid "Error : This directory doesn't exist."
|
558 |
+
msgstr "Грешка: Тази директория не съществува."
|
559 |
+
|
560 |
+
#: core/core.php:982
|
561 |
+
msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
|
562 |
+
msgstr "Задайте тази област, ако искате плъгин за използване потребителски директория за lockfiles си. В противен случай, оставете полето празно."
|
563 |
+
|
564 |
+
#: core/core.php:989
|
565 |
+
msgid "Server load limit"
|
566 |
+
msgstr "Лимит на натоварване на сървъра"
|
567 |
+
|
568 |
+
#: core/core.php:1004
|
569 |
+
msgid "Current load : %s"
|
570 |
+
msgstr "Текуща натоварване:%s"
|
571 |
+
|
572 |
+
#: core/core.php:1009
|
573 |
+
msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
|
574 |
+
msgstr "Линк проверка ще бъде спряно, ако средната<a meán href=\"%s\"> натоварване на сървъра </a> се издига над този номер. Оставете това поле празно, за да деактивирате натоварване ограничаване."
|
575 |
+
|
576 |
+
#: core/core.php:1018
|
577 |
+
msgid "Not available"
|
578 |
+
msgstr "Не се предлага"
|
579 |
+
|
580 |
+
#: core/core.php:1020
|
581 |
+
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
582 |
+
msgstr "Заредете ограничаване работи само върху Linux-системи, където <code> / ргос / loadavg </ код е налице и достъпни."
|
583 |
+
|
584 |
+
#: core/core.php:1028
|
585 |
+
msgid "Forced recheck"
|
586 |
+
msgstr "Принудителна повторна проверка"
|
587 |
+
|
588 |
+
#: core/core.php:1031
|
589 |
+
msgid "Re-check all pages"
|
590 |
+
msgstr "Re проверка на всички страници"
|
591 |
+
|
592 |
+
#: core/core.php:1035
|
593 |
+
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
594 |
+
msgstr " \"Ядрен вариант \". Щракнете върху този бутон, за да се направи плъгин празен връзка база данни и проверете пак целия сайт от нулата."
|
595 |
+
|
596 |
+
#: core/core.php:1046
|
597 |
+
msgid "Save Changes"
|
598 |
+
msgstr "Запазване на промените"
|
599 |
+
|
600 |
+
#: core/core.php:1097
|
601 |
+
msgid "Configure"
|
602 |
+
msgstr "Конфигуриране"
|
603 |
+
|
604 |
+
#: core/core.php:1179
|
605 |
+
msgid "Check URLs entered in these custom fields (one per line) :"
|
606 |
+
msgstr "Проверете URL адреси, вписани в тези персонализирани полета (по една на ред):"
|
607 |
+
|
608 |
+
#: core/core.php:1313
|
609 |
+
#: core/core.php:1395
|
610 |
+
#: core/core.php:1427
|
611 |
+
msgid "Database error : %s"
|
612 |
+
msgstr "Грешка в база данни: %s"
|
613 |
+
|
614 |
+
#: core/core.php:1377
|
615 |
+
msgid "You must enter a filter name!"
|
616 |
+
msgstr "Трябва да въведете филтър име!"
|
617 |
+
|
618 |
+
#: core/core.php:1381
|
619 |
+
msgid "Invalid search query."
|
620 |
+
msgstr "Invalid search query."
|
621 |
+
|
622 |
+
#: core/core.php:1390
|
623 |
+
msgid "Filter \"%s\" created"
|
624 |
+
msgstr "Filter \"%s \", създаден"
|
625 |
+
|
626 |
+
#: core/core.php:1417
|
627 |
+
msgid "Filter ID not specified."
|
628 |
+
msgstr "Филтър ID не са посочени."
|
629 |
+
|
630 |
+
#: core/core.php:1424
|
631 |
+
msgid "Filter deleted"
|
632 |
+
msgstr "Филтър изтрити"
|
633 |
+
|
634 |
+
#: core/core.php:1471
|
635 |
+
msgid "Replaced %d redirect with a direct link"
|
636 |
+
msgid_plural "Replaced %d redirects with direct links"
|
637 |
+
msgstr[0] "%d Заменените пренасочи с директна връзка"
|
638 |
+
msgstr[1] "%d Заменените пренасочи с директна връзка"
|
639 |
+
|
640 |
+
#: core/core.php:1482
|
641 |
+
msgid "Failed to fix %d redirect"
|
642 |
+
msgid_plural "Failed to fix %d redirects"
|
643 |
+
msgstr[0] "Неуспешен опит да се определи%d пренасочи"
|
644 |
+
msgstr[1] "Неуспешен опит да се определи%d пренасочи"
|
645 |
+
|
646 |
+
#: core/core.php:1493
|
647 |
+
msgid "None of the selected links are redirects!"
|
648 |
+
msgstr "Нито една от избраните линкове пренасочващи страници!"
|
649 |
+
|
650 |
+
#: core/core.php:1571
|
651 |
+
msgid "%d link updated."
|
652 |
+
msgid_plural "%d links updated."
|
653 |
+
msgstr[0] "%d връзка актуализира."
|
654 |
+
msgstr[1] "%d връзка актуализира."
|
655 |
+
|
656 |
+
#: core/core.php:1582
|
657 |
+
msgid "Failed to update %d link."
|
658 |
+
msgid_plural "Failed to update %d links."
|
659 |
+
msgstr[0] "Theip AR%d nasc thabhairt suas Чун данни."
|
660 |
+
msgstr[1] "Theip AR%d nasc thabhairt suas Чун данни."
|
661 |
+
|
662 |
+
#: core/core.php:1636
|
663 |
+
msgid "%d link removed"
|
664 |
+
msgid_plural "%d links removed"
|
665 |
+
msgstr[0] "%d връзка премахнати"
|
666 |
+
msgstr[1] "%d връзка премахнати"
|
667 |
+
|
668 |
+
#: core/core.php:1647
|
669 |
+
msgid "Failed to remove %d link"
|
670 |
+
msgid_plural "Failed to remove %d links"
|
671 |
+
msgstr[0] "Неуспех да премахнете%d връзка"
|
672 |
+
msgstr[1] "Неуспех да премахнете%d връзка"
|
673 |
+
|
674 |
+
#: core/core.php:1756
|
675 |
+
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
676 |
+
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
677 |
+
msgstr[0] "%d статията е пропуснат, защото не може да да бъде преместен в кошчето. Трябва да го изтриете ръчно."
|
678 |
+
msgstr[1] "%d статията е пропуснат, защото не може да да бъде преместен в кошчето. Трябва да го изтриете ръчно."
|
679 |
+
|
680 |
+
#: core/core.php:1778
|
681 |
+
msgid "Didn't find anything to delete!"
|
682 |
+
msgstr "Не намери нищо, за да изтриете!"
|
683 |
+
|
684 |
+
#: core/core.php:1805
|
685 |
+
msgid "%d link scheduled for rechecking"
|
686 |
+
msgid_plural "%d links scheduled for rechecking"
|
687 |
+
msgstr[0] "%d връзка насрочено за повторно проверяване"
|
688 |
+
msgstr[1] "%d връзка насрочено за повторно проверяване"
|
689 |
+
|
690 |
+
#: core/core.php:1851
|
691 |
+
#: core/core.php:2455
|
692 |
+
msgid "This link was manually marked as working by the user."
|
693 |
+
msgstr "Тази връзка е ръчно маркирани като работа от страна на потребителя."
|
694 |
+
|
695 |
+
#: core/core.php:1858
|
696 |
+
msgid "Couldn't modify link %d"
|
697 |
+
msgstr "Не може да се променя връзка %d"
|
698 |
+
|
699 |
+
#: core/core.php:1868
|
700 |
+
msgid "%d link marked as not broken"
|
701 |
+
msgid_plural "%d links marked as not broken"
|
702 |
+
msgstr[0] "%d връзка маркирани като не са счупени"
|
703 |
+
msgstr[1] "%d връзка маркирани като не са счупени"
|
704 |
+
|
705 |
+
#: core/core.php:1908
|
706 |
+
msgid "Table columns"
|
707 |
+
msgstr "колони в таблицата"
|
708 |
+
|
709 |
+
#: core/core.php:1927
|
710 |
+
msgid "Show on screen"
|
711 |
+
msgstr "Покажи на екрана."
|
712 |
+
|
713 |
+
#: core/core.php:1934
|
714 |
+
msgid "links"
|
715 |
+
msgstr "връзки"
|
716 |
+
|
717 |
+
#: core/core.php:1935
|
718 |
+
#: includes/admin/table-printer.php:136
|
719 |
+
msgid "Apply"
|
720 |
+
msgstr "Нанесете"
|
721 |
+
|
722 |
+
#: core/core.php:1939
|
723 |
+
msgid "Misc"
|
724 |
+
msgstr "Разни"
|
725 |
+
|
726 |
+
#: core/core.php:1954
|
727 |
+
msgid "Highlight links broken for at least %s days"
|
728 |
+
msgstr "Подчертали връзките с разбивка за дни най-малко%s"
|
729 |
+
|
730 |
+
#: core/core.php:1963
|
731 |
+
msgid "Color-code status codes"
|
732 |
+
msgstr "Color-код на състоянието кодове"
|
733 |
+
|
734 |
+
#: core/core.php:1980
|
735 |
+
#: core/core.php:2440
|
736 |
+
#: core/core.php:2476
|
737 |
+
#: core/core.php:2539
|
738 |
+
msgid "You're not allowed to do that!"
|
739 |
+
msgstr "Вие не ти е позволено да направи това!"
|
740 |
+
|
741 |
+
#: core/core.php:2321
|
742 |
+
msgid "View broken links"
|
743 |
+
msgstr "Преглед на прекъснати връзки"
|
744 |
+
|
745 |
+
#: core/core.php:2322
|
746 |
+
msgid "Found %d broken link"
|
747 |
+
msgid_plural "Found %d broken links"
|
748 |
+
msgstr[0] "Намерени%d невалидна връзка"
|
749 |
+
msgstr[1] "Намерени%d невалидна връзка"
|
750 |
+
|
751 |
+
#: core/core.php:2328
|
752 |
+
msgid "No broken links found."
|
753 |
+
msgstr "Не са намерени счупени хипервръзки."
|
754 |
+
|
755 |
+
#: core/core.php:2335
|
756 |
+
msgid "%d URL in the work queue"
|
757 |
+
msgid_plural "%d URLs in the work queue"
|
758 |
+
msgstr[0] "%d URL в опашката за работа"
|
759 |
+
msgstr[1] "%d URL в опашката за работа"
|
760 |
+
|
761 |
+
#: core/core.php:2338
|
762 |
+
msgid "No URLs in the work queue."
|
763 |
+
msgstr "Липса на URL адреси в работата опашка."
|
764 |
+
|
765 |
+
#: core/core.php:2344
|
766 |
+
msgid "Detected %d unique URL"
|
767 |
+
msgid_plural "Detected %d unique URLs"
|
768 |
+
msgstr[0] "Открит %d уникален URL"
|
769 |
+
msgstr[1] "Открит %d уникален URL"
|
770 |
+
|
771 |
+
#: core/core.php:2345
|
772 |
+
msgid "in %d link"
|
773 |
+
msgid_plural "in %d links"
|
774 |
+
msgstr[0] "i% d nasc"
|
775 |
+
msgstr[1] "в%d връзка "
|
776 |
+
|
777 |
+
#: core/core.php:2350
|
778 |
+
msgid "and still searching..."
|
779 |
+
msgstr "и все още търсят ..."
|
780 |
+
|
781 |
+
#: core/core.php:2356
|
782 |
+
msgid "Searching your blog for links..."
|
783 |
+
msgstr "Търсене на вашия блог за връзки ..."
|
784 |
+
|
785 |
+
#: core/core.php:2358
|
786 |
+
msgid "No links detected."
|
787 |
+
msgstr "Не връзки открити."
|
788 |
+
|
789 |
+
#: core/core.php:2384
|
790 |
+
msgctxt "current load"
|
791 |
+
msgid "Unknown"
|
792 |
+
msgstr "неизвестен"
|
793 |
+
|
794 |
+
#: core/core.php:2448
|
795 |
+
#: core/core.php:2486
|
796 |
+
#: core/core.php:2549
|
797 |
+
msgid "Oops, I can't find the link %d"
|
798 |
+
msgstr "Опа, не мога да намеря връзката. %d"
|
799 |
+
|
800 |
+
#: core/core.php:2461
|
801 |
+
msgid "Oops, couldn't modify the link!"
|
802 |
+
msgstr "Опа, не може да променя връзка!"
|
803 |
+
|
804 |
+
#: core/core.php:2464
|
805 |
+
#: core/core.php:2575
|
806 |
+
msgid "Error : link_id not specified"
|
807 |
+
msgstr "Опа, НЕ може да променя връзка!"
|
808 |
+
|
809 |
+
#: core/core.php:2496
|
810 |
+
msgid "Oops, the new URL is invalid!"
|
811 |
+
msgstr "Опа, нов URL адрес е невалиден!"
|
812 |
+
|
813 |
+
#: core/core.php:2507
|
814 |
+
#: core/core.php:2558
|
815 |
+
msgid "An unexpected error occured!"
|
816 |
+
msgstr "Възникна неочаквана грешка!"
|
817 |
+
|
818 |
+
#: core/core.php:2525
|
819 |
+
msgid "Error : link_id or new_url not specified"
|
820 |
+
msgstr "Грешка: link_id, или new_url които не са посочени"
|
821 |
+
|
822 |
+
#: core/core.php:2584
|
823 |
+
msgid "You don't have sufficient privileges to access this information!"
|
824 |
+
msgstr "Вие нямате достатъчно привилегии за достъп до тази информация!"
|
825 |
+
|
826 |
+
#: core/core.php:2597
|
827 |
+
msgid "Error : link ID not specified"
|
828 |
+
msgstr "Грешка: връзката ID, които не са посочени"
|
829 |
+
|
830 |
+
#: core/core.php:2611
|
831 |
+
msgid "Failed to load link details (%s)"
|
832 |
+
msgstr "Неуспешно зареждане на детайли за връзка (%s)"
|
833 |
+
|
834 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.2.2) #-#-#-#-#
|
835 |
+
#. Plugin Name of the plugin/theme
|
836 |
+
#: core/core.php:2740
|
837 |
+
msgid "Broken Link Checker"
|
838 |
+
msgstr "Broken Link Checker"
|
839 |
+
|
840 |
+
#: core/core.php:2754
|
841 |
+
msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
|
842 |
+
msgstr "Настоящата временна директория не е достъпна, моля, <a href=\"%s\"> различен </a>."
|
843 |
+
|
844 |
+
#: core/core.php:2759
|
845 |
+
msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
|
846 |
+
msgstr "Моля, направете директория<code>%1$s</code> писане от плъгини или <a href=\"%2$s\"> зададете персонализиран временна директория </ A>."
|
847 |
+
|
848 |
+
#: core/core.php:2766
|
849 |
+
msgid "Broken Link Checker can't create a lockfile."
|
850 |
+
msgstr "Broken Link Checker не може да създаде lockfile."
|
851 |
+
|
852 |
+
#: core/core.php:2771
|
853 |
+
msgid "The plugin uses a file-based locking mechanism to ensure that only one instance of the resource-heavy link checking algorithm is running at any given time. Unfortunately, BLC can't find a writable directory where it could store the lockfile - it failed to detect the location of your server's temporary directory, and the plugin's own directory isn't writable by PHP. To fix this problem, please make the plugin's directory writable or enter a specify a custom temporary directory in the plugin's settings."
|
854 |
+
msgstr "В плъгин използва файлове, заключващ механизъм, за да се гарантира, че само едно копие на ресурса тежки алгоритъм за проверка на връзка във всеки даден момент. За съжаление, BLC не могат да намерят записваем директорията, където може да съхранявате на lockfile - тя не успя да открие местоположението на временна директория на вашия сървър и собствена директория плъгин не се записва от PHP. За да решите този проблем, моля да направи директорията плъгин за писане или въведете укажете потребителски временна директория в настройките на плъгин."
|
855 |
+
|
856 |
+
#: core/core.php:2790
|
857 |
+
msgid "PHP version"
|
858 |
+
msgstr "PHP версия"
|
859 |
+
|
860 |
+
#: core/core.php:2796
|
861 |
+
msgid "MySQL version"
|
862 |
+
msgstr "MySQL версия"
|
863 |
+
|
864 |
+
#: core/core.php:2809
|
865 |
+
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
866 |
+
msgstr "Вие сте със стара версия на CURL. Пренасочване откриване може да не работи правилно."
|
867 |
+
|
868 |
+
#: core/core.php:2821
|
869 |
+
#: core/core.php:2837
|
870 |
+
#: core/core.php:2842
|
871 |
+
msgid "Not installed"
|
872 |
+
msgstr "Не е инсталиран"
|
873 |
+
|
874 |
+
#: core/core.php:2824
|
875 |
+
msgid "CURL version"
|
876 |
+
msgstr "CURL версия"
|
877 |
+
|
878 |
+
#: core/core.php:2830
|
879 |
+
msgid "Installed"
|
880 |
+
msgstr "Инсталирани"
|
881 |
+
|
882 |
+
#: core/core.php:2843
|
883 |
+
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
884 |
+
msgstr "Вие трябва да имате инсталиран или CURL или Снупи за плъгина да работи!"
|
885 |
+
|
886 |
+
#: core/core.php:2854
|
887 |
+
msgid "On"
|
888 |
+
msgstr "на"
|
889 |
+
|
890 |
+
#: core/core.php:2855
|
891 |
+
msgid "Redirects may be detected as broken links when safe_mode is on."
|
892 |
+
msgstr "Пренасочвания могат да бъдат открити като счупени връзки, когато защитният режим е включен."
|
893 |
+
|
894 |
+
#: core/core.php:2860
|
895 |
+
#: core/core.php:2874
|
896 |
+
msgid "Off"
|
897 |
+
msgstr "от"
|
898 |
+
|
899 |
+
#: core/core.php:2868
|
900 |
+
msgid "On ( %s )"
|
901 |
+
msgstr "на ( %s )"
|
902 |
+
|
903 |
+
#: core/core.php:2869
|
904 |
+
msgid "Redirects may be detected as broken links when open_basedir is on."
|
905 |
+
msgstr "Пренасочвания могат да бъдат открити както за счупени хипервръзки, когато open_basedir е на."
|
906 |
+
|
907 |
+
#: core/core.php:2888
|
908 |
+
msgid "Can't create a lockfile. Please specify a custom temporary directory."
|
909 |
+
msgstr "Не можете да създадете lockfile. Моля, посочете по избор временна директория."
|
910 |
+
|
911 |
+
#: core/core.php:2912
|
912 |
+
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
913 |
+
msgstr "Ако тази стойност е равна на нула, дори и след няколко презарежда страницата вероятно сте срещнали бъг."
|
914 |
+
|
915 |
+
#: core/core.php:2983
|
916 |
+
msgid "[%s] Broken links detected"
|
917 |
+
msgstr "[%s] Broken открити връзки"
|
918 |
+
|
919 |
+
#: core/core.php:2988
|
920 |
+
msgid "Broken Link Checker has detected %d new broken link on your site."
|
921 |
+
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
922 |
+
msgstr[0] "Broken Link Checker откри%d невалидна връзка на вашия сайт."
|
923 |
+
msgstr[1] "Broken Link Checker откри%d невалидна връзка на вашия сайт."
|
924 |
+
|
925 |
+
#: core/core.php:3003
|
926 |
+
msgid "Here's a list of the first %d broken links:"
|
927 |
+
msgid_plural "Here's a list of the first %d broken links:"
|
928 |
+
msgstr[0] "Broken Link Checker откри%d невалидна връзка на вашия сайт"
|
929 |
+
msgstr[1] "Broken Link Checker откри%d невалидна връзка на вашия сайт"
|
930 |
+
|
931 |
+
#: core/core.php:3012
|
932 |
+
msgid "Here's a list of the new broken links: "
|
933 |
+
msgstr "Ето списък на нови доклади за счупени хипервръзки:"
|
934 |
+
|
935 |
+
#: core/core.php:3024
|
936 |
+
msgid "Link text : %s"
|
937 |
+
msgstr "Nasc téacs:%s"
|
938 |
+
|
939 |
+
#: core/core.php:3025
|
940 |
+
msgid "Link URL : <a href=\"%s\">%s</a>"
|
941 |
+
msgstr "Връзка към URL:% s href=\"%s\"> <a </ a>"
|
942 |
+
|
943 |
+
#: core/core.php:3026
|
944 |
+
msgid "Source : %s"
|
945 |
+
msgstr "Източник: %s "
|
946 |
+
|
947 |
+
#: core/core.php:3040
|
948 |
+
msgid "You can see all broken links here:"
|
949 |
+
msgstr "Можете да видите всички счупени хипервръзки тук:"
|
950 |
+
|
951 |
+
#: includes/admin/links-page-js.php:58
|
952 |
+
#: includes/admin/links-page-js.php:301
|
953 |
+
msgid "Wait..."
|
954 |
+
msgstr "Изчакайте ..."
|
955 |
+
|
956 |
+
#: includes/admin/links-page-js.php:99
|
957 |
+
#: includes/admin/table-printer.php:587
|
958 |
+
msgid "Not broken"
|
959 |
+
msgstr "не са счупени"
|
960 |
+
|
961 |
+
#: includes/admin/links-page-js.php:213
|
962 |
+
msgid "%d instances of the link were successfully modified."
|
963 |
+
msgstr "%d случаи на връзката бяха променени успешно."
|
964 |
+
|
965 |
+
#: includes/admin/links-page-js.php:219
|
966 |
+
msgid "However, %d instances couldn't be edited and still point to the old URL."
|
967 |
+
msgstr "Въпреки това,%dслучаи, не могат да бъдат редактирани и все още точка на старите URL."
|
968 |
+
|
969 |
+
#: includes/admin/links-page-js.php:225
|
970 |
+
msgid "The link could not be modified."
|
971 |
+
msgstr "Връзката не може да бъде модифициран."
|
972 |
+
|
973 |
+
#: includes/admin/links-page-js.php:228
|
974 |
+
#: includes/admin/links-page-js.php:353
|
975 |
+
msgid "The following error(s) occured :"
|
976 |
+
msgstr "Възникна следната грешка (и):"
|
977 |
+
|
978 |
+
#: includes/admin/links-page-js.php:339
|
979 |
+
msgid "%d instances of the link were successfully unlinked."
|
980 |
+
msgstr "%d случаи на връзката бяха успешно в несвързано."
|
981 |
+
|
982 |
+
#: includes/admin/links-page-js.php:345
|
983 |
+
msgid "However, %d instances couldn't be removed."
|
984 |
+
msgstr "Въпреки това,%d случаи, не могат да бъдат отстранени."
|
985 |
+
|
986 |
+
#: includes/admin/links-page-js.php:350
|
987 |
+
msgid "The plugin failed to remove the link."
|
988 |
+
msgstr "В плъгин не успя да премахнете връзката."
|
989 |
+
|
990 |
+
#: includes/admin/links-page-js.php:361
|
991 |
+
#: includes/admin/table-printer.php:237
|
992 |
+
#: includes/admin/table-printer.php:581
|
993 |
+
msgid "Unlink"
|
994 |
+
msgstr "разединявам"
|
995 |
+
|
996 |
+
#: includes/admin/links-page-js.php:405
|
997 |
+
msgid "Enter a name for the new custom filter"
|
998 |
+
msgstr "Въведете име за новия потребителски филтър"
|
999 |
+
|
1000 |
+
#: includes/admin/links-page-js.php:416
|
1001 |
+
msgid ""
|
1002 |
+
"You are about to delete the current filter.\n"
|
1003 |
+
"'Cancel' to stop, 'OK' to delete"
|
1004 |
+
msgstr ""
|
1005 |
+
"Вие сте да изтриете текущия филтър \n"
|
1006 |
+
"\"Отказ\", за да се спре, 'ОК', за да изтриете"
|
1007 |
+
|
1008 |
+
#: includes/admin/links-page-js.php:439
|
1009 |
+
msgid ""
|
1010 |
+
"Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
|
1011 |
+
"'Cancel' to stop, 'OK' to delete"
|
1012 |
+
msgstr ""
|
1013 |
+
"Сигурни ли сте, че искате да изтриете всички съобщения, маркери или други елементи, които съдържат някоя от избраните линкове? Това действие не може да бъде отменено. \n"
|
1014 |
+
"\"Отказ\", за да се спре, 'ОК', за да изтриете"
|
1015 |
+
|
1016 |
+
#: includes/admin/links-page-js.php:449
|
1017 |
+
msgid ""
|
1018 |
+
"Are you sure you want to remove the selected links? This action can't be undone.\n"
|
1019 |
+
"'Cancel' to stop, 'OK' to remove"
|
1020 |
+
msgstr ""
|
1021 |
+
"AСигурни ли сте, че искате да премахнете избрания връзки? Това действие не може да бъде отменено. \n"
|
1022 |
+
"\"Отказ\", за да се спре, 'ОК', за да премахнете"
|
1023 |
+
|
1024 |
+
#: includes/admin/links-page-js.php:558
|
1025 |
+
msgid "Enter a search string first."
|
1026 |
+
msgstr "Въведете низ за търсене на първо място."
|
1027 |
+
|
1028 |
+
#: includes/admin/links-page-js.php:565
|
1029 |
+
msgid "Select one or more links to edit."
|
1030 |
+
msgstr "Изберете един или повече връзки, за да редактирате."
|
1031 |
+
|
1032 |
+
#: includes/admin/search-form.php:16
|
1033 |
+
msgid "Save This Search As a Filter"
|
1034 |
+
msgstr "Запази това търсене като филтър"
|
1035 |
+
|
1036 |
+
#: includes/admin/search-form.php:26
|
1037 |
+
msgid "Delete This Filter"
|
1038 |
+
msgstr "Изтриване на този филтър"
|
1039 |
+
|
1040 |
+
#: includes/admin/search-form.php:32
|
1041 |
+
#: includes/link-query.php:53
|
1042 |
+
msgid "Search"
|
1043 |
+
msgstr "търсене"
|
1044 |
+
|
1045 |
+
#: includes/admin/search-form.php:42
|
1046 |
+
msgid "Link text"
|
1047 |
+
msgstr "Link текст"
|
1048 |
+
|
1049 |
+
#: includes/admin/search-form.php:45
|
1050 |
+
#: includes/admin/table-printer.php:173
|
1051 |
+
msgid "URL"
|
1052 |
+
msgstr "URL"
|
1053 |
+
|
1054 |
+
#: includes/admin/search-form.php:48
|
1055 |
+
#: includes/admin/table-printer.php:455
|
1056 |
+
msgid "HTTP code"
|
1057 |
+
msgstr "HTTP код"
|
1058 |
+
|
1059 |
+
#: includes/admin/search-form.php:51
|
1060 |
+
msgid "Link status"
|
1061 |
+
msgstr "Линк статус"
|
1062 |
+
|
1063 |
+
#: includes/admin/search-form.php:68
|
1064 |
+
#: includes/admin/search-form.php:85
|
1065 |
+
msgid "Link type"
|
1066 |
+
msgstr "Линк тип"
|
1067 |
+
|
1068 |
+
#: includes/admin/search-form.php:70
|
1069 |
+
msgid "Any"
|
1070 |
+
msgstr "Всеки"
|
1071 |
+
|
1072 |
+
#: includes/admin/search-form.php:74
|
1073 |
+
msgid "Links used in"
|
1074 |
+
msgstr "Връзките, използвани в"
|
1075 |
+
|
1076 |
+
#: includes/admin/search-form.php:112
|
1077 |
+
msgid "Search Links"
|
1078 |
+
msgstr "Търсене Връзки"
|
1079 |
+
|
1080 |
+
#: includes/admin/search-form.php:113
|
1081 |
+
#: includes/admin/table-printer.php:313
|
1082 |
+
#: includes/admin/table-printer.php:595
|
1083 |
+
#: includes/admin/table-printer.php:601
|
1084 |
+
msgid "Cancel"
|
1085 |
+
msgstr "Отказ"
|
1086 |
+
|
1087 |
+
#: includes/admin/sidebar.php:2
|
1088 |
+
msgid "Donate $10, $20 or $50!"
|
1089 |
+
msgstr "Дарете $10, $20 или $50!"
|
1090 |
+
|
1091 |
+
#: includes/admin/sidebar.php:5
|
1092 |
+
msgid "If you like this plugin, please donate to support development and maintenance!"
|
1093 |
+
msgstr "Ако ви харесва този плъгин, моля, дари в подкрепа на развитието и поддръжката!"
|
1094 |
+
|
1095 |
+
#: includes/admin/sidebar.php:22
|
1096 |
+
msgid "Return to WordPress Dashboard"
|
1097 |
+
msgstr "Назад към WordPress Dashboard"
|
1098 |
+
|
1099 |
+
#: includes/admin/sidebar.php:34
|
1100 |
+
msgid "Recommended"
|
1101 |
+
msgstr "Препоръчителна"
|
1102 |
+
|
1103 |
+
#: includes/admin/options-page-js.php:54
|
1104 |
+
msgid "Hide debug info"
|
1105 |
+
msgstr "Скрий дебъгване информация"
|
1106 |
+
|
1107 |
+
#: includes/admin/table-printer.php:150
|
1108 |
+
msgid "Compact View"
|
1109 |
+
msgstr "Compact View"
|
1110 |
+
|
1111 |
+
#: includes/admin/table-printer.php:151
|
1112 |
+
msgid "Detailed View"
|
1113 |
+
msgstr "Детайлен преглед"
|
1114 |
+
|
1115 |
+
#: includes/admin/table-printer.php:178
|
1116 |
+
msgid "Source"
|
1117 |
+
msgstr "източник"
|
1118 |
+
|
1119 |
+
#: includes/admin/table-printer.php:184
|
1120 |
+
msgid "Link Text"
|
1121 |
+
msgstr "текст за връзка"
|
1122 |
+
|
1123 |
+
#: includes/admin/table-printer.php:232
|
1124 |
+
msgid "Bulk Actions"
|
1125 |
+
msgstr "Bulk Действия"
|
1126 |
+
|
1127 |
+
#: includes/admin/table-printer.php:233
|
1128 |
+
#: includes/admin/table-printer.php:578
|
1129 |
+
msgid "Edit URL"
|
1130 |
+
msgstr "Редактиране на URL адреса"
|
1131 |
+
|
1132 |
+
#: includes/admin/table-printer.php:234
|
1133 |
+
msgid "Recheck"
|
1134 |
+
msgstr "Повторна проверка"
|
1135 |
+
|
1136 |
+
#: includes/admin/table-printer.php:235
|
1137 |
+
msgid "Fix redirects"
|
1138 |
+
msgstr "Fix на пренасочващи страници"
|
1139 |
+
|
1140 |
+
#: includes/admin/table-printer.php:236
|
1141 |
+
msgid "Mark as not broken"
|
1142 |
+
msgstr "Маркирай като не са счупени"
|
1143 |
+
|
1144 |
+
#: includes/admin/table-printer.php:240
|
1145 |
+
msgid "Move sources to Trash"
|
1146 |
+
msgstr "Преместване на източници в кошчето"
|
1147 |
+
|
1148 |
+
#: includes/admin/table-printer.php:242
|
1149 |
+
msgid "Delete sources"
|
1150 |
+
msgstr "Изтриване на източници"
|
1151 |
+
|
1152 |
+
#: includes/admin/table-printer.php:257
|
1153 |
+
msgid "«"
|
1154 |
+
msgstr "«"
|
1155 |
+
|
1156 |
+
#: includes/admin/table-printer.php:258
|
1157 |
+
msgid "»"
|
1158 |
+
msgstr "»"
|
1159 |
+
|
1160 |
+
#: includes/admin/table-printer.php:266
|
1161 |
+
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1162 |
+
msgstr "Показани%s–%s of <span class=\"current-link-count\">%s</span>"
|
1163 |
+
|
1164 |
+
#: includes/admin/table-printer.php:289
|
1165 |
+
msgid "Bulk Edit URLs"
|
1166 |
+
msgstr "Групово редактиране URL адреси"
|
1167 |
+
|
1168 |
+
#: includes/admin/table-printer.php:291
|
1169 |
+
msgid "Find"
|
1170 |
+
msgstr "Вижте"
|
1171 |
+
|
1172 |
+
#: includes/admin/table-printer.php:295
|
1173 |
+
msgid "Replace with"
|
1174 |
+
msgstr "Замяна с"
|
1175 |
+
|
1176 |
+
#: includes/admin/table-printer.php:303
|
1177 |
+
msgid "Case sensitive"
|
1178 |
+
msgstr "буквите"
|
1179 |
+
|
1180 |
+
#: includes/admin/table-printer.php:307
|
1181 |
+
msgid "Regular expression"
|
1182 |
+
msgstr "Регулярен израз"
|
1183 |
+
|
1184 |
+
#: includes/admin/table-printer.php:315
|
1185 |
+
msgid "Update"
|
1186 |
+
msgstr "Актуализация"
|
1187 |
+
|
1188 |
+
#: includes/admin/table-printer.php:440
|
1189 |
+
msgid "Post published on"
|
1190 |
+
msgstr "Мнение публикувани на"
|
1191 |
+
|
1192 |
+
#: includes/admin/table-printer.php:445
|
1193 |
+
msgid "Link last checked"
|
1194 |
+
msgstr "Линк последно проверява"
|
1195 |
+
|
1196 |
+
#: includes/admin/table-printer.php:449
|
1197 |
+
msgid "Never"
|
1198 |
+
msgstr "никога"
|
1199 |
+
|
1200 |
+
#: includes/admin/table-printer.php:460
|
1201 |
+
msgid "Response time"
|
1202 |
+
msgstr "време за реакция"
|
1203 |
+
|
1204 |
+
#: includes/admin/table-printer.php:462
|
1205 |
+
msgid "%2.3f seconds"
|
1206 |
+
msgstr "% 2.3f секунди"
|
1207 |
+
|
1208 |
+
#: includes/admin/table-printer.php:465
|
1209 |
+
msgid "Final URL"
|
1210 |
+
msgstr "Final URL"
|
1211 |
+
|
1212 |
+
#: includes/admin/table-printer.php:470
|
1213 |
+
msgid "Redirect count"
|
1214 |
+
msgstr "Пренасочване на броя"
|
1215 |
+
|
1216 |
+
#: includes/admin/table-printer.php:475
|
1217 |
+
msgid "Instance count"
|
1218 |
+
msgstr "съд брой"
|
1219 |
+
|
1220 |
+
#: includes/admin/table-printer.php:484
|
1221 |
+
msgid "This link has failed %d time."
|
1222 |
+
msgid_plural "This link has failed %d times."
|
1223 |
+
msgstr[0] "Тази връзка не е успял%d време."
|
1224 |
+
msgstr[1] "Тази връзка не е успял%d време."
|
1225 |
+
|
1226 |
+
#: includes/admin/table-printer.php:492
|
1227 |
+
msgid "This link has been broken for %s."
|
1228 |
+
msgstr "Тази връзка е счупена за %s."
|
1229 |
+
|
1230 |
+
#: includes/admin/table-printer.php:503
|
1231 |
+
msgid "Log"
|
1232 |
+
msgstr "Вход"
|
1233 |
+
|
1234 |
+
#: includes/admin/table-printer.php:524
|
1235 |
+
msgid "Show more info about this link"
|
1236 |
+
msgstr "Покажи повече информация за тази връзка"
|
1237 |
+
|
1238 |
+
#: includes/admin/table-printer.php:542
|
1239 |
+
msgctxt "checked how long ago"
|
1240 |
+
msgid "Checked"
|
1241 |
+
msgstr "Проверени"
|
1242 |
+
|
1243 |
+
#: includes/admin/table-printer.php:558
|
1244 |
+
msgid "Broken for"
|
1245 |
+
msgstr "Broken за"
|
1246 |
+
|
1247 |
+
#: includes/admin/table-printer.php:578
|
1248 |
+
msgid "Edit link URL"
|
1249 |
+
msgstr "Редактиране на URL връзка"
|
1250 |
+
|
1251 |
+
#: includes/admin/table-printer.php:580
|
1252 |
+
msgid "Remove this link from all posts"
|
1253 |
+
msgstr "Премахване на този линк от всички мнения"
|
1254 |
+
|
1255 |
+
#: includes/admin/table-printer.php:586
|
1256 |
+
msgid "Remove this link from the list of broken links and mark it as valid"
|
1257 |
+
msgstr "Премахване на този линк от списъка на счупени връзки и го маркирате като валидни"
|
1258 |
+
|
1259 |
+
#: includes/admin/table-printer.php:595
|
1260 |
+
msgid "Cancel URL editing"
|
1261 |
+
msgstr "Отказ за редактиране на URL"
|
1262 |
+
|
1263 |
+
#: includes/admin/table-printer.php:602
|
1264 |
+
msgid "Update URL"
|
1265 |
+
msgstr "Актуализация на URL"
|
1266 |
+
|
1267 |
+
#: includes/admin/table-printer.php:624
|
1268 |
+
msgid "[An orphaned link! This is a bug.]"
|
1269 |
+
msgstr "[Сираци връзка! Това е грешка.]"
|
1270 |
+
|
1271 |
+
#: includes/admin/db-upgrade.php:95
|
1272 |
+
msgid "Failed to delete old DB tables. Database error : %s"
|
1273 |
+
msgstr "Неуспешно да изтрива старите таблици DB.Грешка в база данни: %s"
|
1274 |
+
|
1275 |
+
#: includes/parsers.php:109
|
1276 |
+
msgid "Editing is not implemented in the '%s' parser"
|
1277 |
+
msgstr "Редактиране не се изпълнява в парсер '%s\""
|
1278 |
+
|
1279 |
+
#: includes/parsers.php:124
|
1280 |
+
msgid "Unlinking is not implemented in the '%s' parser"
|
1281 |
+
msgstr "Прекратяване на връзката не се осъществява в парсер '%s \""
|
1282 |
+
|
1283 |
+
#: includes/link-query.php:25
|
1284 |
+
msgid "Broken"
|
1285 |
+
msgstr "Broken"
|
1286 |
+
|
1287 |
+
#: includes/link-query.php:27
|
1288 |
+
msgid "No broken links found"
|
1289 |
+
msgstr "Не са намерени счупени хипервръзки"
|
1290 |
+
|
1291 |
+
#: includes/link-query.php:34
|
1292 |
+
msgid "Redirects"
|
1293 |
+
msgstr "Пренасочвания"
|
1294 |
+
|
1295 |
+
#: includes/link-query.php:35
|
1296 |
+
msgid "Redirected Links"
|
1297 |
+
msgstr "пренасочване Връзки"
|
1298 |
+
|
1299 |
+
#: includes/link-query.php:36
|
1300 |
+
msgid "No redirects found"
|
1301 |
+
msgstr "Не на пренасочващи страници намерени"
|
1302 |
+
|
1303 |
+
#: includes/link-query.php:44
|
1304 |
+
msgid "All"
|
1305 |
+
msgstr "всички"
|
1306 |
+
|
1307 |
+
#: includes/link-query.php:45
|
1308 |
+
msgid "Detected Links"
|
1309 |
+
msgstr "Открит Връзки"
|
1310 |
+
|
1311 |
+
#: includes/link-query.php:46
|
1312 |
+
msgid "No links found (yet)"
|
1313 |
+
msgstr "Няма намерени връзки (все още)"
|
1314 |
+
|
1315 |
+
#: includes/link-query.php:54
|
1316 |
+
msgid "Search Results"
|
1317 |
+
msgstr "Search Results"
|
1318 |
+
|
1319 |
+
#: includes/link-query.php:55
|
1320 |
+
#: includes/link-query.php:106
|
1321 |
+
msgid "No links found for your query"
|
1322 |
+
msgstr "№ връзки, за вашата заявка"
|
1323 |
+
|
1324 |
+
#: includes/any-post.php:427
|
1325 |
+
msgid "Preview “%s”"
|
1326 |
+
msgstr "предварителен преглед “%s”"
|
1327 |
+
|
1328 |
+
#: includes/any-post.php:428
|
1329 |
+
msgid "Preview"
|
1330 |
+
msgstr "предварителен преглед"
|
1331 |
+
|
1332 |
+
#: includes/any-post.php:435
|
1333 |
+
msgid "View “%s”"
|
1334 |
+
msgstr "Преглед на “%s”"
|
1335 |
+
|
1336 |
+
#: includes/any-post.php:529
|
1337 |
+
msgid "Updating post %d failed"
|
1338 |
+
msgstr "Актуализиране пост%d не успя"
|
1339 |
+
|
1340 |
+
#: includes/any-post.php:711
|
1341 |
+
msgid "%d post deleted."
|
1342 |
+
msgid_plural "%d posts deleted."
|
1343 |
+
msgstr[0] "%d пост заличава."
|
1344 |
+
msgstr[1] "%d пост заличава."
|
1345 |
+
|
1346 |
+
#: includes/any-post.php:713
|
1347 |
+
msgid "%d page deleted."
|
1348 |
+
msgid_plural "%d pages deleted."
|
1349 |
+
msgstr[0] "%d страница заличава."
|
1350 |
+
msgstr[1] "%d страница заличава."
|
1351 |
+
|
1352 |
+
#: includes/any-post.php:715
|
1353 |
+
msgid "%d \"%s\" deleted."
|
1354 |
+
msgid_plural "%d \"%s\" deleted."
|
1355 |
+
msgstr[0] "% d \"% s \"a заличава."
|
1356 |
+
msgstr[1] "% d \"% s \"aзаличава. "
|
1357 |
+
|
1358 |
+
#: includes/any-post.php:734
|
1359 |
+
msgid "%d post moved to the Trash."
|
1360 |
+
msgid_plural "%d posts moved to the Trash."
|
1361 |
+
msgstr[0] "%d пост преместен в кошчето."
|
1362 |
+
msgstr[1] "%d пост преместен в кошчето."
|
1363 |
+
|
1364 |
+
#: includes/any-post.php:736
|
1365 |
+
msgid "%d page moved to the Trash."
|
1366 |
+
msgid_plural "%d pages moved to the Trash."
|
1367 |
+
msgstr[0] "%d пост преместен в кошчето."
|
1368 |
+
msgstr[1] "%d пост преместен в кошчето."
|
1369 |
+
|
1370 |
+
#: includes/any-post.php:738
|
1371 |
+
msgid "%d \"%s\" moved to the Trash."
|
1372 |
+
msgid_plural "%d \"%s\" moved to the Trash."
|
1373 |
+
msgstr[0] "% d \"% s \" преместена в кошчето."
|
1374 |
+
msgstr[1] "% d \"% s \" преместена в кошчето."
|
1375 |
+
|
1376 |
+
#: includes/containers.php:122
|
1377 |
+
msgid "%d '%s' has been deleted"
|
1378 |
+
msgid_plural "%d '%s' have been deleted"
|
1379 |
+
msgstr[0] "'% s'% d е била изтрита"
|
1380 |
+
msgstr[1] "'% s'% d е била изтрита"
|
1381 |
+
|
1382 |
+
#: includes/containers.php:883
|
1383 |
+
#: includes/containers.php:901
|
1384 |
+
msgid "Container type '%s' not recognized"
|
1385 |
+
msgstr "Контейнер тип \"%s\" не са признати"
|
1386 |
+
|
1387 |
+
#: includes/links.php:215
|
1388 |
+
msgid "The plugin script was terminated while trying to check the link."
|
1389 |
+
msgstr "В плъгин скрипт е било прекратено, докато се опитва да проверите връзката."
|
1390 |
+
|
1391 |
+
#: includes/links.php:261
|
1392 |
+
msgid "The plugin doesn't know how to check this type of link."
|
1393 |
+
msgstr "В добавка не знаят как да проверите този тип връзка."
|
1394 |
+
|
1395 |
+
#: includes/links.php:349
|
1396 |
+
msgid "Link is valid."
|
1397 |
+
msgstr "Link е валидна."
|
1398 |
+
|
1399 |
+
#: includes/links.php:351
|
1400 |
+
msgid "Link is broken."
|
1401 |
+
msgstr "Връзката е прекъсната."
|
1402 |
+
|
1403 |
+
#: includes/links.php:564
|
1404 |
+
#: includes/links.php:666
|
1405 |
+
#: includes/links.php:693
|
1406 |
+
msgid "Link is not valid"
|
1407 |
+
msgstr "Връзката не е валидна"
|
1408 |
+
|
1409 |
+
#: includes/links.php:581
|
1410 |
+
msgid "This link can not be edited because it is not used anywhere on this site."
|
1411 |
+
msgstr "Тази връзка не може да бъде редактиран, защото тя не се използва никъде на този сайт."
|
1412 |
+
|
1413 |
+
#: includes/links.php:607
|
1414 |
+
msgid "Failed to create a DB entry for the new URL."
|
1415 |
+
msgstr "Неуспешно създаване на DB влизане за новия URL."
|
1416 |
+
|
1417 |
+
#: includes/links.php:673
|
1418 |
+
msgid "This link is not a redirect"
|
1419 |
+
msgstr "Тази връзка не е пренасочване"
|
1420 |
+
|
1421 |
+
#: includes/links.php:720
|
1422 |
+
#: includes/links.php:757
|
1423 |
+
msgid "Couldn't delete the link's database record"
|
1424 |
+
msgstr "Не може да изтриете връзката на бази данни"
|
1425 |
+
|
1426 |
+
#: includes/links.php:831
|
1427 |
+
msgctxt "link status"
|
1428 |
+
msgid "Unknown"
|
1429 |
+
msgstr "неизвестен"
|
1430 |
+
|
1431 |
+
#: includes/links.php:869
|
1432 |
+
msgid "Not checked"
|
1433 |
+
msgstr "Не се проверява"
|
1434 |
+
|
1435 |
+
#: includes/links.php:872
|
1436 |
+
msgid "False positive"
|
1437 |
+
msgstr "Фалшиво положителни"
|
1438 |
+
|
1439 |
+
#: includes/extra-strings.php:2
|
1440 |
+
msgctxt "module name"
|
1441 |
+
msgid "Basic HTTP"
|
1442 |
+
msgstr "Basic HTTP"
|
1443 |
+
|
1444 |
+
#: includes/extra-strings.php:3
|
1445 |
+
msgctxt "module name"
|
1446 |
+
msgid "Blogroll items"
|
1447 |
+
msgstr "Blogroll позиции"
|
1448 |
+
|
1449 |
+
#: includes/extra-strings.php:4
|
1450 |
+
msgctxt "module name"
|
1451 |
+
msgid "Comments"
|
1452 |
+
msgstr "Коментари"
|
1453 |
+
|
1454 |
+
#: includes/extra-strings.php:5
|
1455 |
+
msgctxt "module name"
|
1456 |
+
msgid "Custom fields"
|
1457 |
+
msgstr "потребителски полета"
|
1458 |
+
|
1459 |
+
#: includes/extra-strings.php:6
|
1460 |
+
msgctxt "module name"
|
1461 |
+
msgid "Embedded DailyMotion videos"
|
1462 |
+
msgstr "Вградени видео DailyMotion"
|
1463 |
+
|
1464 |
+
#: includes/extra-strings.php:7
|
1465 |
+
msgctxt "module name"
|
1466 |
+
msgid "Embedded Vimeo videos"
|
1467 |
+
msgstr "Embedded Vimeo клипове"
|
1468 |
+
|
1469 |
+
#: includes/extra-strings.php:8
|
1470 |
+
msgctxt "module name"
|
1471 |
+
msgid "Embedded YouTube videos"
|
1472 |
+
msgstr "Embedded YouTube клипове"
|
1473 |
+
|
1474 |
+
#: includes/extra-strings.php:9
|
1475 |
+
msgctxt "module name"
|
1476 |
+
msgid "HTML images"
|
1477 |
+
msgstr "HTML изображения"
|
1478 |
+
|
1479 |
+
#: includes/extra-strings.php:10
|
1480 |
+
msgctxt "module name"
|
1481 |
+
msgid "HTML links"
|
1482 |
+
msgstr "HTML връзки"
|
1483 |
+
|
1484 |
+
#: includes/extra-strings.php:11
|
1485 |
+
msgctxt "module name"
|
1486 |
+
msgid "MediaFire API"
|
1487 |
+
msgstr "MediaFire API"
|
1488 |
+
|
1489 |
+
#: includes/extra-strings.php:12
|
1490 |
+
msgctxt "module name"
|
1491 |
+
msgid "MegaUpload API"
|
1492 |
+
msgstr "файлове API"
|
1493 |
+
|
1494 |
+
#: includes/extra-strings.php:13
|
1495 |
+
msgctxt "module name"
|
1496 |
+
msgid "Plaintext URLs"
|
1497 |
+
msgstr "прав текст URL адреси"
|
1498 |
+
|
1499 |
+
#: includes/extra-strings.php:14
|
1500 |
+
msgctxt "module name"
|
1501 |
+
msgid "RapidShare API"
|
1502 |
+
msgstr "RapidShare API"
|
1503 |
+
|
1504 |
+
#: includes/extra-strings.php:15
|
1505 |
+
msgctxt "module name"
|
1506 |
+
msgid "YouTube API"
|
1507 |
+
msgstr "YouTube API"
|
1508 |
+
|
1509 |
+
#: includes/extra-strings.php:16
|
1510 |
+
msgctxt "module name"
|
1511 |
+
msgid "Posts"
|
1512 |
+
msgstr "Мнения"
|
1513 |
+
|
1514 |
+
#: includes/extra-strings.php:17
|
1515 |
+
msgctxt "module name"
|
1516 |
+
msgid "Pages"
|
1517 |
+
msgstr "Страници"
|
1518 |
+
|
1519 |
+
#: includes/utility-class.php:286
|
1520 |
+
msgid "%d second"
|
1521 |
+
msgid_plural "%d seconds"
|
1522 |
+
msgstr[0] "%d втори"
|
1523 |
+
msgstr[1] "%d втори"
|
1524 |
+
|
1525 |
+
#: includes/utility-class.php:287
|
1526 |
+
msgid "%d second ago"
|
1527 |
+
msgid_plural "%d seconds ago"
|
1528 |
+
msgstr[0] "%d преди секунда"
|
1529 |
+
msgstr[1] "%d преди секунда"
|
1530 |
+
|
1531 |
+
#: includes/utility-class.php:290
|
1532 |
+
msgid "%d minute"
|
1533 |
+
msgid_plural "%d minutes"
|
1534 |
+
msgstr[0] "%d минута"
|
1535 |
+
msgstr[1] "%d минута"
|
1536 |
+
|
1537 |
+
#: includes/utility-class.php:291
|
1538 |
+
msgid "%d minute ago"
|
1539 |
+
msgid_plural "%d minutes ago"
|
1540 |
+
msgstr[0] "%d преди минута"
|
1541 |
+
msgstr[1] "%d преди минута"
|
1542 |
+
|
1543 |
+
#: includes/utility-class.php:294
|
1544 |
+
msgid "%d hour"
|
1545 |
+
msgid_plural "%d hours"
|
1546 |
+
msgstr[0] "%d часа"
|
1547 |
+
msgstr[1] "%d часа"
|
1548 |
+
|
1549 |
+
#: includes/utility-class.php:295
|
1550 |
+
msgid "%d hour ago"
|
1551 |
+
msgid_plural "%d hours ago"
|
1552 |
+
msgstr[0] "%d преди час"
|
1553 |
+
msgstr[1] "%d преди час"
|
1554 |
+
|
1555 |
+
#: includes/utility-class.php:298
|
1556 |
+
msgid "%d day"
|
1557 |
+
msgid_plural "%d days"
|
1558 |
+
msgstr[0] "%d дни"
|
1559 |
+
msgstr[1] "%d дни"
|
1560 |
+
|
1561 |
+
#: includes/utility-class.php:299
|
1562 |
+
msgid "%d day ago"
|
1563 |
+
msgid_plural "%d days ago"
|
1564 |
+
msgstr[0] "%d Преди ден"
|
1565 |
+
msgstr[1] "%d Преди ден"
|
1566 |
+
|
1567 |
+
#: includes/utility-class.php:302
|
1568 |
+
msgid "%d month"
|
1569 |
+
msgid_plural "%d months"
|
1570 |
+
msgstr[0] "%d месец"
|
1571 |
+
msgstr[1] "%d месец"
|
1572 |
+
|
1573 |
+
#: includes/utility-class.php:303
|
1574 |
+
msgid "%d month ago"
|
1575 |
+
msgid_plural "%d months ago"
|
1576 |
+
msgstr[0] "%d преди месец"
|
1577 |
+
msgstr[1] "%d преди месец"
|
1578 |
+
|
1579 |
+
#: includes/instances.php:102
|
1580 |
+
#: includes/instances.php:158
|
1581 |
+
msgid "Container %s[%d] not found"
|
1582 |
+
msgstr "контейнер %s [%d] Ní bhfuarthas an"
|
1583 |
+
|
1584 |
+
#: includes/instances.php:111
|
1585 |
+
#: includes/instances.php:167
|
1586 |
+
msgid "Parser '%s' not found."
|
1587 |
+
msgstr "Parser '%s' не е намерен."
|
1588 |
+
|
1589 |
+
#. Plugin URI of the plugin/theme
|
1590 |
+
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1591 |
+
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1592 |
+
|
1593 |
+
#. Description of the plugin/theme
|
1594 |
+
msgid "Checks your blog for broken links and missing images and notifies you on the dashboard if any are found."
|
1595 |
+
msgstr "Проверява вашия блог за счупени хипервръзки и липсващи изображения и ще ви уведоми, на арматурното табло, ако такива бъдат намерени."
|
1596 |
+
|
1597 |
+
#. Author of the plugin/theme
|
1598 |
+
msgid "Janis Elsts"
|
1599 |
+
msgstr "Janis Elsts"
|
1600 |
+
|
1601 |
+
#. Author URI of the plugin/theme
|
1602 |
+
msgid "http://w-shadow.com/blog/"
|
1603 |
+
msgstr "http://w-shadow.com/blog/"
|
1604 |
+
|
1605 |
+
#~ msgid "Broken link CSS"
|
1606 |
+
#~ msgstr "टूटी हुई कड़ी सीएसएस"
|
1607 |
+
|
1608 |
+
#~ msgid "Removed link CSS"
|
1609 |
+
#~ msgstr "हटाया लिंक सीएसएस"
|
1610 |
+
|
1611 |
+
#~ msgid "Apply <em>class=\"removed_link\"</em> to unlinked links"
|
1612 |
+
#~ msgstr "लागू करना <em>class=\"removed_link\"</em> लिंक को हटाया"
|
1613 |
+
|
1614 |
+
#~ msgid "Normal link"
|
1615 |
+
#~ msgstr "सामान्य लिंक"
|
1616 |
+
|
1617 |
+
#~ msgid ""
|
1618 |
+
#~ "You are about to delete this post '%s'\n"
|
1619 |
+
#~ " 'Cancel' to stop, 'OK' to delete."
|
1620 |
+
#~ msgstr ""
|
1621 |
+
#~ "तुम्हारे बारे में इस पद को नष्ट कर रहे हैं '%s'\n"
|
1622 |
+
#~ " 'Cancel' बंद के लिए 'OK' नष्ट करने के लिए'."
|
1623 |
+
|
1624 |
+
#~ msgid "Excluded"
|
1625 |
+
#~ msgstr "अपवर्जित"
|
1626 |
+
|
1627 |
+
#~ msgid "Add this URL to the exclusion list"
|
1628 |
+
#~ msgstr "अपवर्जन सूची में इस URL जोड़ें"
|
1629 |
+
|
1630 |
+
#~ msgid "Exclude"
|
1631 |
+
#~ msgstr "बाहर निकालें"
|
1632 |
+
|
1633 |
+
#~ msgid "Discard"
|
1634 |
+
#~ msgstr "रद्द करें"
|
1635 |
+
|
1636 |
+
#~ msgid "Save URL"
|
1637 |
+
#~ msgstr "सहेजें यूआरएल"
|
1638 |
+
|
1639 |
+
#~ msgid "Saving changes..."
|
1640 |
+
#~ msgstr "बचत परिवर्तन ..."
|
1641 |
+
|
1642 |
+
#~ msgid ""
|
1643 |
+
#~ "This link wasn't checked because a matching keyword was found on your "
|
1644 |
+
#~ "exclusion list."
|
1645 |
+
#~ msgstr ""
|
1646 |
+
#~ "इस लिंक की जाँच नहीं हुयी थी क्योंकि एक खोजशब्द मिलान आपके अपवर्जन सूची पर पाया गया "
|
1647 |
+
#~ "था."
|
1648 |
+
|
1649 |
+
#~ msgid "URL %s was removed."
|
1650 |
+
#~ msgstr "यूआरएल% s हटा दिया गया."
|
1651 |
+
|
1652 |
+
#~ msgid "URL %s added to the exclusion list"
|
1653 |
+
#~ msgstr "यूआरएल %s अपवर्जन सूची में शामिल "
|
1654 |
+
|
1655 |
+
#~ msgid "Link ID not specified"
|
1656 |
+
#~ msgstr "लिंक आईडी निर्दिष्ट नहीं"
|
1657 |
+
|
1658 |
+
#~ msgid "First try : %d"
|
1659 |
+
#~ msgstr "पहला प्रयास करें: %d"
|
1660 |
+
|
1661 |
+
#~ msgid "Trying a second time with different settings..."
|
1662 |
+
#~ msgstr "विभिन्न सेटिंग्स के साथ एक दूसरी बार कोशिश करे ..."
|
1663 |
+
|
1664 |
+
#~ msgid "Second try : %d"
|
1665 |
+
#~ msgstr "दूसरा प्रयास करें: %d"
|
1666 |
+
|
1667 |
+
#~ msgid "Second try : 0 (No response)"
|
1668 |
+
#~ msgstr "दूसरा प्रयास करें:0 (कोई जवाब नहीं)"
|
1669 |
+
|
1670 |
+
#~ msgid "Error adding link %s : %s"
|
1671 |
+
#~ msgstr "त्रुटि जोड़ने लिंक %s : %s"
|
1672 |
+
|
1673 |
+
#~ msgid "Error updating link %d : %s"
|
1674 |
+
#~ msgstr "त्रुटि अद्यतन कड़ी %d : %s"
|
languages/broken-link-checker-de_DE.mo
CHANGED
Binary file
|
languages/broken-link-checker-de_DE.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Broken Link Checker | V1.3\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -19,59 +19,10 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ broken-link-checker
|
22 |
-
#: modules/
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
# @ broken-link-checker
|
27 |
-
#: modules/checkers/http.php:257
|
28 |
-
msgid "Connection Failed"
|
29 |
-
msgstr "Verbindung fehlgeschlagen"
|
30 |
-
|
31 |
-
# @ link status
|
32 |
-
# @ broken-link-checker
|
33 |
-
#: modules/checkers/http.php:263
|
34 |
-
#: modules/extras/mediafire.php:96
|
35 |
-
#: includes/links.php:845
|
36 |
-
msgid "Unknown Error"
|
37 |
-
msgstr "Unbekannter Fehler"
|
38 |
-
|
39 |
-
# @ broken-link-checker
|
40 |
-
#: modules/checkers/http.php:292
|
41 |
-
#: modules/checkers/http.php:362
|
42 |
-
msgid "HTTP code : %d"
|
43 |
-
msgstr "HTTP Code: %d"
|
44 |
-
|
45 |
-
# @ broken-link-checker
|
46 |
-
#: modules/checkers/http.php:294
|
47 |
-
#: modules/checkers/http.php:364
|
48 |
-
msgid "(No response)"
|
49 |
-
msgstr "(Keine Antwort)"
|
50 |
-
|
51 |
-
# @ broken-link-checker
|
52 |
-
#: modules/checkers/http.php:300
|
53 |
-
msgid "Most likely the connection timed out or the domain doesn't exist."
|
54 |
-
msgstr "Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
|
55 |
-
|
56 |
-
# @ broken-link-checker
|
57 |
-
#: modules/checkers/http.php:371
|
58 |
-
msgid "Request timed out."
|
59 |
-
msgstr "Erfordert Zeitlimit."
|
60 |
-
|
61 |
-
# @ broken-link-checker
|
62 |
-
#: modules/checkers/http.php:389
|
63 |
-
msgid "Using Snoopy"
|
64 |
-
msgstr "Benutzt Snoopy"
|
65 |
-
|
66 |
-
# @ broken-link-checker
|
67 |
-
#: modules/parsers/image.php:159
|
68 |
-
msgid "Image"
|
69 |
-
msgstr "Bild"
|
70 |
-
|
71 |
-
# @ broken-link-checker
|
72 |
-
#: modules/parsers/metadata.php:117
|
73 |
-
msgid "Custom field"
|
74 |
-
msgstr "Benutzerdefiniertes Feld"
|
75 |
|
76 |
# @ broken-link-checker
|
77 |
#: modules/containers/custom_field.php:84
|
@@ -96,8 +47,8 @@ msgstr "Bearbeiten Sie dieses Element"
|
|
96 |
|
97 |
# @ default
|
98 |
#: modules/containers/custom_field.php:197
|
99 |
-
#: modules/containers/comment.php:153
|
100 |
#: modules/containers/blogroll.php:46
|
|
|
101 |
#: includes/any-post.php:397
|
102 |
msgid "Edit"
|
103 |
msgstr "Bearbeiten"
|
@@ -158,12 +109,49 @@ msgid "Failed to move post \"%s\" (%d) to the trash"
|
|
158 |
msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
|
159 |
|
160 |
# @ broken-link-checker
|
161 |
-
#: modules/containers/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
#: modules/containers/blogroll.php:83
|
|
|
163 |
#: includes/any-post.php:519
|
164 |
msgid "Nothing to update"
|
165 |
msgstr "Nichts zu aktualisieren"
|
166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
# @ broken-link-checker
|
168 |
#: modules/containers/comment.php:53
|
169 |
msgid "Updating comment %d failed"
|
@@ -226,69 +214,72 @@ msgstr[0] "%d Kommentar in den Papierkorb verschoben."
|
|
226 |
msgstr[1] "%d Kommentare in den Papierkorb verschoben."
|
227 |
|
228 |
# @ broken-link-checker
|
229 |
-
#: modules/
|
230 |
-
msgid "
|
231 |
-
msgstr "
|
232 |
|
233 |
# @ broken-link-checker
|
234 |
-
#: modules/
|
235 |
-
|
236 |
-
|
237 |
-
msgstr "Lesezeichen bearbeiten"
|
238 |
|
239 |
-
# @
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
"
|
246 |
-
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
247 |
|
248 |
# @ broken-link-checker
|
249 |
-
#: modules/
|
250 |
-
|
251 |
-
|
|
|
252 |
|
253 |
# @ broken-link-checker
|
254 |
-
#: modules/
|
255 |
-
|
256 |
-
|
|
|
257 |
|
258 |
# @ broken-link-checker
|
259 |
-
#: modules/
|
260 |
-
msgid "
|
261 |
-
|
262 |
-
msgstr[0] "%d Blogroll Link gelöscht."
|
263 |
-
msgstr[1] "%d Blogroll Links gelöscht."
|
264 |
|
265 |
# @ broken-link-checker
|
266 |
-
#: modules/
|
267 |
-
|
268 |
-
|
269 |
-
msgstr "Das Bearbeiten von '%s' [%d] ist fehlgeschlagen."
|
270 |
|
271 |
# @ broken-link-checker
|
272 |
-
#: modules/
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
|
|
|
|
|
|
277 |
|
278 |
# @ broken-link-checker
|
279 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
msgid "YouTube Video"
|
281 |
msgstr "YouTube Video"
|
282 |
|
283 |
# @ broken-link-checker
|
284 |
-
#: modules/extras/youtube-
|
|
|
285 |
msgid "Embedded YouTube video"
|
286 |
msgstr "Eingebettete YouTube Videos"
|
287 |
|
288 |
-
#: modules/extras/embed-parser-base.php:140
|
289 |
-
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
290 |
-
msgstr "Eingebettete Videos können mit Broken Link Checker nicht editiert werden. Bitte ändern oder ersetzen Sie das betreffende Video manuell."
|
291 |
-
|
292 |
# @ broken-link-checker
|
293 |
#: modules/extras/dailymotion-embed.php:23
|
294 |
msgid "DailyMotion Video"
|
@@ -300,33 +291,22 @@ msgid "Embedded DailyMotion video"
|
|
300 |
msgstr "Eingebettete DailyMotion Videos"
|
301 |
|
302 |
# @ broken-link-checker
|
303 |
-
#: modules/extras/
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
#: modules/extras/vimeo-embed.php:25
|
309 |
-
msgid "Embedded Vimeo video"
|
310 |
-
msgstr "Eingebettete Vimeo Videos"
|
311 |
|
312 |
# @ broken-link-checker
|
313 |
-
#: modules/extras/megaupload.php:101
|
314 |
#: modules/extras/rapidshare.php:148
|
315 |
#: modules/extras/rapidshare.php:154
|
316 |
#: modules/extras/rapidshare.php:181
|
|
|
317 |
#: includes/links.php:875
|
318 |
msgctxt "link status"
|
319 |
msgid "OK"
|
320 |
msgstr "OK"
|
321 |
|
322 |
-
#: modules/extras/megaupload.php:116
|
323 |
-
msgid "File Temporarily Unavailable"
|
324 |
-
msgstr "Datei vorübergehend nicht erreichbar"
|
325 |
-
|
326 |
-
#: modules/extras/megaupload.php:122
|
327 |
-
msgid "API Error"
|
328 |
-
msgstr "API Fehler"
|
329 |
-
|
330 |
# @ broken-link-checker
|
331 |
#: modules/extras/rapidshare.php:161
|
332 |
msgid "RS Server Down"
|
@@ -351,6 +331,20 @@ msgstr "RapidShare: %s"
|
|
351 |
msgid "RapidShare API error: %s"
|
352 |
msgstr "RapidShare API Fehler: %s"
|
353 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
# @ broken-link-checker
|
355 |
#: modules/extras/youtube.php:63
|
356 |
#: modules/extras/youtube.php:66
|
@@ -387,6 +381,14 @@ msgstr "Video mit Einschränkungen"
|
|
387 |
msgid "Unknown YouTube API response received."
|
388 |
msgstr "Unbekannte Antwort der YouTube API erhalten."
|
389 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
# @ default
|
391 |
#: core/init.php:230
|
392 |
msgid "Once Weekly"
|
@@ -991,7 +993,7 @@ msgid "Failed to load link details (%s)"
|
|
991 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
992 |
|
993 |
# @ broken-link-checker
|
994 |
-
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.3) #-#-#-#-#
|
995 |
#. Plugin Name of the plugin/theme
|
996 |
#: core/core.php:2633
|
997 |
msgid "Broken Link Checker"
|
@@ -1110,177 +1112,99 @@ msgid "You can see all broken links here:"
|
|
1110 |
msgstr "Hier sehen Sie alle fehlerhaften Links:"
|
1111 |
|
1112 |
# @ broken-link-checker
|
1113 |
-
#: includes/
|
1114 |
-
|
1115 |
-
|
1116 |
-
msgstr
|
1117 |
-
msgstr[1] "%d '%s' wurden gelöscht"
|
1118 |
|
1119 |
# @ broken-link-checker
|
1120 |
-
#: includes/
|
1121 |
-
#: includes/
|
1122 |
-
msgid "
|
1123 |
-
msgstr "
|
1124 |
|
1125 |
-
# @
|
1126 |
-
#: includes/
|
1127 |
-
msgid "%d
|
1128 |
-
|
1129 |
-
msgstr[0] "%s Sekunde"
|
1130 |
-
msgstr[1] "%s Sekunden"
|
1131 |
|
1132 |
-
# @
|
1133 |
-
#: includes/
|
1134 |
-
msgid "%d
|
1135 |
-
|
1136 |
-
msgstr[0] "%s Sekunde vergangen"
|
1137 |
-
msgstr[1] "%s Sekunden vergangen"
|
1138 |
-
|
1139 |
-
# @ default
|
1140 |
-
#: includes/utility-class.php:290
|
1141 |
-
msgid "%d minute"
|
1142 |
-
msgid_plural "%d minutes"
|
1143 |
-
msgstr[0] "%d Minute"
|
1144 |
-
msgstr[1] "%d Minuten"
|
1145 |
-
|
1146 |
-
# @ default
|
1147 |
-
#: includes/utility-class.php:291
|
1148 |
-
msgid "%d minute ago"
|
1149 |
-
msgid_plural "%d minutes ago"
|
1150 |
-
msgstr[0] "%d Minute vergangen"
|
1151 |
-
msgstr[1] "%d Minuten vergangen"
|
1152 |
-
|
1153 |
-
# @ default
|
1154 |
-
#: includes/utility-class.php:294
|
1155 |
-
msgid "%d hour"
|
1156 |
-
msgid_plural "%d hours"
|
1157 |
-
msgstr[0] "%d Stunde"
|
1158 |
-
msgstr[1] "%d Stunden"
|
1159 |
-
|
1160 |
-
# @ default
|
1161 |
-
#: includes/utility-class.php:295
|
1162 |
-
msgid "%d hour ago"
|
1163 |
-
msgid_plural "%d hours ago"
|
1164 |
-
msgstr[0] "%d Stunde vergangen"
|
1165 |
-
msgstr[1] "%d Stunden vergangen"
|
1166 |
-
|
1167 |
-
# @ default
|
1168 |
-
#: includes/utility-class.php:298
|
1169 |
-
msgid "%d day"
|
1170 |
-
msgid_plural "%d days"
|
1171 |
-
msgstr[0] "%d Tag"
|
1172 |
-
msgstr[1] "%d Tage"
|
1173 |
-
|
1174 |
-
# @ default
|
1175 |
-
#: includes/utility-class.php:299
|
1176 |
-
msgid "%d day ago"
|
1177 |
-
msgid_plural "%d days ago"
|
1178 |
-
msgstr[0] "%d Tag vergangen"
|
1179 |
-
msgstr[1] "%d Tage vergangen"
|
1180 |
-
|
1181 |
-
# @ default
|
1182 |
-
#: includes/utility-class.php:302
|
1183 |
-
msgid "%d month"
|
1184 |
-
msgid_plural "%d months"
|
1185 |
-
msgstr[0] "%d Monat"
|
1186 |
-
msgstr[1] "%d Monate"
|
1187 |
-
|
1188 |
-
# @ default
|
1189 |
-
#: includes/utility-class.php:303
|
1190 |
-
msgid "%d month ago"
|
1191 |
-
msgid_plural "%d months ago"
|
1192 |
-
msgstr[0] "%d Monat vergangen"
|
1193 |
-
msgstr[1] "%d Monate vergangen"
|
1194 |
-
|
1195 |
-
# @ broken-link-checker
|
1196 |
-
#: includes/parsers.php:109
|
1197 |
-
msgid "Editing is not implemented in the '%s' parser"
|
1198 |
-
msgstr "Editieren ist nicht im '%s' Parser implementiert"
|
1199 |
|
1200 |
# @ broken-link-checker
|
1201 |
-
#: includes/
|
1202 |
-
msgid "
|
1203 |
-
msgstr "
|
1204 |
-
|
1205 |
-
# @ broken-link-checker
|
1206 |
-
#: includes/links.php:215
|
1207 |
-
msgid "The plugin script was terminated while trying to check the link."
|
1208 |
-
msgstr "Das Plugin-Skript wurde beim Versuch den Link zu überprüfen beendet."
|
1209 |
-
|
1210 |
-
# @ broken-link-checker
|
1211 |
-
#: includes/links.php:261
|
1212 |
-
msgid "The plugin doesn't know how to check this type of link."
|
1213 |
-
msgstr "Das Plugin weiss nicht genau, wie er diesen Link Typ überprüfen soll."
|
1214 |
-
|
1215 |
-
# @ broken-link-checker
|
1216 |
-
#: includes/links.php:349
|
1217 |
-
msgid "Link is valid."
|
1218 |
-
msgstr "Link ist valide."
|
1219 |
|
1220 |
# @ broken-link-checker
|
1221 |
-
#: includes/links.php:
|
1222 |
-
|
1223 |
-
|
|
|
1224 |
|
1225 |
# @ broken-link-checker
|
1226 |
-
#: includes/links.php:
|
1227 |
-
|
1228 |
-
|
1229 |
-
msgid "Link is not valid"
|
1230 |
-
msgstr "Link ist nicht gültig"
|
1231 |
|
1232 |
# @ broken-link-checker
|
1233 |
-
#: includes/links.php:
|
1234 |
-
msgid "
|
1235 |
-
msgstr "
|
1236 |
|
1237 |
# @ broken-link-checker
|
1238 |
-
#: includes/links.php:
|
1239 |
-
msgid "
|
1240 |
-
msgstr "Das
|
1241 |
|
1242 |
# @ broken-link-checker
|
1243 |
-
#: includes/links.php:
|
1244 |
-
|
1245 |
-
|
|
|
|
|
1246 |
|
1247 |
# @ broken-link-checker
|
1248 |
-
#: includes/links.php:
|
1249 |
-
|
1250 |
-
|
1251 |
-
msgstr "Links können nicht aus der Datenbank gelöscht werden"
|
1252 |
|
1253 |
# @ broken-link-checker
|
1254 |
-
#: includes/links.php:
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
|
|
|
|
|
|
1258 |
|
1259 |
# @ broken-link-checker
|
1260 |
-
#: includes/links.php:
|
1261 |
-
msgid "
|
1262 |
-
|
|
|
|
|
|
|
|
|
1263 |
|
1264 |
# @ broken-link-checker
|
1265 |
-
#: includes/links.php:
|
1266 |
-
msgid "
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
#: includes/admin/sidebar.php:5
|
1274 |
-
msgid "If you like this plugin, please donate to support development and maintenance!"
|
1275 |
-
msgstr "Mögen Sie dieses Plugin, dann helfen Sie uns mit einer Spende für die Entwicklung und Wartung."
|
1276 |
|
1277 |
-
#: includes/admin/
|
1278 |
-
msgid "
|
1279 |
-
msgstr "
|
1280 |
|
1281 |
-
#: includes/admin/
|
1282 |
-
msgid "
|
1283 |
-
msgstr "
|
1284 |
|
1285 |
# @ broken-link-checker
|
1286 |
#: includes/admin/search-form.php:16
|
@@ -1349,105 +1273,21 @@ msgstr "Suche Links"
|
|
1349 |
msgid "Cancel"
|
1350 |
msgstr "Abbrechen"
|
1351 |
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
msgid "Wait..."
|
1356 |
-
msgstr "Warte ..."
|
1357 |
-
|
1358 |
-
# @ broken-link-checker
|
1359 |
-
#: includes/admin/links-page-js.php:99
|
1360 |
-
#: includes/admin/table-printer.php:587
|
1361 |
-
msgid "Not broken"
|
1362 |
-
msgstr "Nicht fehlerhaft"
|
1363 |
-
|
1364 |
-
# @ broken-link-checker
|
1365 |
-
#: includes/admin/links-page-js.php:213
|
1366 |
-
msgid "%d instances of the link were successfully modified."
|
1367 |
-
msgstr "%d Instanzen von diesem Link wurden erfolgreich geändert."
|
1368 |
-
|
1369 |
-
# @ broken-link-checker
|
1370 |
-
#: includes/admin/links-page-js.php:219
|
1371 |
-
msgid "However, %d instances couldn't be edited and still point to the old URL."
|
1372 |
-
msgstr "Allerdings, %d Instanzen konnten nicht bearbeitet werden und verweisen zudem noch auf die alte URL."
|
1373 |
-
|
1374 |
-
# @ broken-link-checker
|
1375 |
-
#: includes/admin/links-page-js.php:225
|
1376 |
-
msgid "The link could not be modified."
|
1377 |
-
msgstr "Der Link konnte nicht geändert werden."
|
1378 |
-
|
1379 |
-
# @ broken-link-checker
|
1380 |
-
#: includes/admin/links-page-js.php:228
|
1381 |
-
#: includes/admin/links-page-js.php:353
|
1382 |
-
msgid "The following error(s) occured :"
|
1383 |
-
msgstr "Folgende Fehler sind aufgetreten:"
|
1384 |
-
|
1385 |
-
# @ broken-link-checker
|
1386 |
-
#: includes/admin/links-page-js.php:339
|
1387 |
-
msgid "%d instances of the link were successfully unlinked."
|
1388 |
-
msgstr "%d Instanzen von diesem Link wurden erfolgreich gelöscht."
|
1389 |
-
|
1390 |
-
# @ broken-link-checker
|
1391 |
-
#: includes/admin/links-page-js.php:345
|
1392 |
-
msgid "However, %d instances couldn't be removed."
|
1393 |
-
msgstr "Allerdings, %d Instanzen konnten nicht entfernt werden."
|
1394 |
-
|
1395 |
-
# @ broken-link-checker
|
1396 |
-
#: includes/admin/links-page-js.php:350
|
1397 |
-
msgid "The plugin failed to remove the link."
|
1398 |
-
msgstr "Das Plugin konnte den Link nicht entfernen."
|
1399 |
-
|
1400 |
-
# @ broken-link-checker
|
1401 |
-
#: includes/admin/links-page-js.php:361
|
1402 |
-
#: includes/admin/table-printer.php:237
|
1403 |
-
#: includes/admin/table-printer.php:581
|
1404 |
-
msgid "Unlink"
|
1405 |
-
msgstr "Link aufheben"
|
1406 |
-
|
1407 |
-
# @ broken-link-checker
|
1408 |
-
#: includes/admin/links-page-js.php:405
|
1409 |
-
msgid "Enter a name for the new custom filter"
|
1410 |
-
msgstr "Gib einen Namen für den neuen benutzerdefinierten Filter ein"
|
1411 |
-
|
1412 |
-
# @ broken-link-checker
|
1413 |
-
#: includes/admin/links-page-js.php:416
|
1414 |
-
msgid ""
|
1415 |
-
"You are about to delete the current filter.\n"
|
1416 |
-
"'Cancel' to stop, 'OK' to delete"
|
1417 |
-
msgstr ""
|
1418 |
-
"Möchten Sie den aktuellen Filter löschen '%s'\n"
|
1419 |
-
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
1420 |
-
|
1421 |
-
# @ broken-link-checker
|
1422 |
-
#: includes/admin/links-page-js.php:439
|
1423 |
-
msgid ""
|
1424 |
-
"Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
|
1425 |
-
"'Cancel' to stop, 'OK' to delete"
|
1426 |
-
msgstr ""
|
1427 |
-
"Sind Sie sicher, dass Sie alle Beiträge, Lesezeichen oder andere Elemente die in den ausgewählten Links enthalten sind, löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n"
|
1428 |
-
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
1429 |
-
|
1430 |
-
# @ broken-link-checker
|
1431 |
-
#: includes/admin/links-page-js.php:449
|
1432 |
-
msgid ""
|
1433 |
-
"Are you sure you want to remove the selected links? This action can't be undone.\n"
|
1434 |
-
"'Cancel' to stop, 'OK' to remove"
|
1435 |
-
msgstr ""
|
1436 |
-
"Sind Sie sicher, dass Sie die ausgewählten Links entfernen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n"
|
1437 |
-
" 'Abbrechen' um abzubrechen, 'OK' um zu entfernen."
|
1438 |
|
1439 |
-
#: includes/admin/
|
1440 |
-
msgid "
|
1441 |
-
msgstr "
|
1442 |
|
1443 |
-
#: includes/admin/
|
1444 |
-
msgid "
|
1445 |
-
msgstr "
|
1446 |
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
|
1451 |
|
1452 |
# @ broken-link-checker
|
1453 |
#: includes/admin/options-page-js.php:54
|
@@ -1593,67 +1433,272 @@ msgid "Instance count"
|
|
1593 |
msgstr "Instanz Anzahl"
|
1594 |
|
1595 |
# @ broken-link-checker
|
1596 |
-
#: includes/admin/table-printer.php:484
|
1597 |
-
msgid "This link has failed %d time."
|
1598 |
-
msgid_plural "This link has failed %d times."
|
1599 |
-
msgstr[0] "Dieser Link schlug %d mal fehl."
|
1600 |
-
msgstr[1] "Dieser Link schlug %d mal fehl."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1601 |
|
1602 |
# @ broken-link-checker
|
1603 |
-
#: includes/
|
1604 |
-
msgid "
|
1605 |
-
msgstr "
|
1606 |
|
1607 |
# @ broken-link-checker
|
1608 |
-
#: includes/
|
1609 |
-
msgid "
|
1610 |
-
msgstr "
|
1611 |
|
1612 |
# @ broken-link-checker
|
1613 |
-
#: includes/
|
1614 |
-
msgid "
|
1615 |
-
msgstr "
|
1616 |
|
1617 |
# @ broken-link-checker
|
1618 |
-
#: includes/
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
|
|
1622 |
|
1623 |
# @ broken-link-checker
|
1624 |
-
#: includes/
|
1625 |
-
msgid "
|
1626 |
-
msgstr "
|
1627 |
|
1628 |
# @ broken-link-checker
|
1629 |
-
#: includes/
|
1630 |
-
msgid "
|
1631 |
-
msgstr "
|
1632 |
|
1633 |
# @ broken-link-checker
|
1634 |
-
#: includes/
|
1635 |
-
msgid "
|
1636 |
-
msgstr "
|
1637 |
|
1638 |
# @ broken-link-checker
|
1639 |
-
#: includes/
|
1640 |
-
|
1641 |
-
|
|
|
1642 |
|
1643 |
# @ broken-link-checker
|
1644 |
-
#: includes/
|
1645 |
-
|
1646 |
-
|
|
|
1647 |
|
1648 |
# @ broken-link-checker
|
1649 |
-
#: includes/
|
1650 |
-
msgid "
|
1651 |
-
msgstr "
|
1652 |
|
1653 |
# @ broken-link-checker
|
1654 |
-
#: includes/
|
1655 |
-
msgid "
|
1656 |
-
msgstr "
|
1657 |
|
1658 |
# @ broken-link-checker
|
1659 |
#: includes/extra-strings.php:2
|
@@ -1700,107 +1745,132 @@ msgstr "Eingebettete YouTube Videos"
|
|
1700 |
# @ broken-link-checker
|
1701 |
#: includes/extra-strings.php:9
|
1702 |
msgctxt "module name"
|
|
|
|
|
|
|
|
|
|
|
|
|
1703 |
msgid "HTML images"
|
1704 |
msgstr "HTML Bilder"
|
1705 |
|
1706 |
# @ broken-link-checker
|
1707 |
-
#: includes/extra-strings.php:
|
1708 |
msgctxt "module name"
|
1709 |
msgid "HTML links"
|
1710 |
msgstr "HTML Links"
|
1711 |
|
1712 |
# @ broken-link-checker
|
1713 |
-
#: includes/extra-strings.php:
|
1714 |
msgctxt "module name"
|
1715 |
msgid "MediaFire API"
|
1716 |
msgstr "MediaFire API"
|
1717 |
|
1718 |
# @ broken-link-checker
|
1719 |
-
#: includes/extra-strings.php:
|
1720 |
msgctxt "module name"
|
1721 |
msgid "MegaUpload API"
|
1722 |
msgstr "MegaUpload API"
|
1723 |
|
1724 |
# @ broken-link-checker
|
1725 |
-
#: includes/extra-strings.php:
|
1726 |
msgctxt "module name"
|
1727 |
msgid "Plaintext URLs"
|
1728 |
msgstr "Klartext URLs"
|
1729 |
|
1730 |
# @ broken-link-checker
|
1731 |
-
#: includes/extra-strings.php:
|
1732 |
msgctxt "module name"
|
1733 |
msgid "RapidShare API"
|
1734 |
msgstr "RapidShare API"
|
1735 |
|
1736 |
# @ broken-link-checker
|
1737 |
-
#: includes/extra-strings.php:
|
1738 |
msgctxt "module name"
|
1739 |
msgid "YouTube API"
|
1740 |
msgstr "YouTube API"
|
1741 |
|
1742 |
# @ broken-link-checker
|
1743 |
-
#: includes/extra-strings.php:
|
1744 |
msgctxt "module name"
|
1745 |
msgid "Posts"
|
1746 |
msgstr "Beiträge"
|
1747 |
|
1748 |
# @ broken-link-checker
|
1749 |
-
#: includes/extra-strings.php:
|
1750 |
msgctxt "module name"
|
1751 |
msgid "Pages"
|
1752 |
msgstr "Seiten"
|
1753 |
|
1754 |
-
# @
|
1755 |
-
#: includes/
|
1756 |
-
msgid "
|
1757 |
-
|
|
|
|
|
1758 |
|
1759 |
-
# @
|
1760 |
-
#: includes/
|
1761 |
-
msgid "
|
1762 |
-
|
|
|
|
|
1763 |
|
1764 |
-
# @
|
1765 |
-
#: includes/
|
1766 |
-
msgid "
|
1767 |
-
|
|
|
|
|
1768 |
|
1769 |
-
# @
|
1770 |
-
#: includes/
|
1771 |
-
msgid "
|
1772 |
-
|
|
|
|
|
1773 |
|
1774 |
-
# @
|
1775 |
-
#: includes/
|
1776 |
-
msgid "
|
1777 |
-
|
|
|
|
|
1778 |
|
1779 |
-
# @
|
1780 |
-
#: includes/
|
1781 |
-
msgid "
|
1782 |
-
|
|
|
|
|
1783 |
|
1784 |
-
# @
|
1785 |
-
#: includes/
|
1786 |
-
msgid "
|
1787 |
-
|
|
|
|
|
1788 |
|
1789 |
-
# @
|
1790 |
-
#: includes/
|
1791 |
-
msgid "
|
1792 |
-
|
|
|
|
|
1793 |
|
1794 |
-
# @
|
1795 |
-
#: includes/
|
1796 |
-
msgid "
|
1797 |
-
|
|
|
|
|
1798 |
|
1799 |
-
# @
|
1800 |
-
#: includes/
|
1801 |
-
|
1802 |
-
|
1803 |
-
msgstr "
|
|
|
1804 |
|
1805 |
# @ broken-link-checker
|
1806 |
#: includes/instances.php:102
|
@@ -1814,68 +1884,6 @@ msgstr "Container %s[%d] nicht gefunden"
|
|
1814 |
msgid "Parser '%s' not found."
|
1815 |
msgstr "Parser '%s' nicht gefunden."
|
1816 |
|
1817 |
-
# @ default
|
1818 |
-
#: includes/any-post.php:427
|
1819 |
-
msgid "Preview “%s”"
|
1820 |
-
msgstr "Vorschau “%s”"
|
1821 |
-
|
1822 |
-
# @ default
|
1823 |
-
#: includes/any-post.php:428
|
1824 |
-
msgid "Preview"
|
1825 |
-
msgstr "Vorschau"
|
1826 |
-
|
1827 |
-
# @ default
|
1828 |
-
#: includes/any-post.php:435
|
1829 |
-
msgid "View “%s”"
|
1830 |
-
msgstr "Ansehen “%s”"
|
1831 |
-
|
1832 |
-
# @ broken-link-checker
|
1833 |
-
#: includes/any-post.php:529
|
1834 |
-
msgid "Updating post %d failed"
|
1835 |
-
msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
|
1836 |
-
|
1837 |
-
# @ broken-link-checker
|
1838 |
-
#: includes/any-post.php:711
|
1839 |
-
msgid "%d post deleted."
|
1840 |
-
msgid_plural "%d posts deleted."
|
1841 |
-
msgstr[0] "%d Artikel gelöscht."
|
1842 |
-
msgstr[1] "%d Artikel gelöscht."
|
1843 |
-
|
1844 |
-
# @ broken-link-checker
|
1845 |
-
#: includes/any-post.php:713
|
1846 |
-
msgid "%d page deleted."
|
1847 |
-
msgid_plural "%d pages deleted."
|
1848 |
-
msgstr[0] "%d Seite gelöscht."
|
1849 |
-
msgstr[1] "%d Seiten gelöscht."
|
1850 |
-
|
1851 |
-
# @ broken-link-checker
|
1852 |
-
#: includes/any-post.php:715
|
1853 |
-
msgid "%d \"%s\" deleted."
|
1854 |
-
msgid_plural "%d \"%s\" deleted."
|
1855 |
-
msgstr[0] "%d \"%s\" gelöscht."
|
1856 |
-
msgstr[1] "%d \"%s\" gelöscht."
|
1857 |
-
|
1858 |
-
# @ broken-link-checker
|
1859 |
-
#: includes/any-post.php:734
|
1860 |
-
msgid "%d post moved to the Trash."
|
1861 |
-
msgid_plural "%d posts moved to the Trash."
|
1862 |
-
msgstr[0] "%d Artikel in den Papierkorb verschoben."
|
1863 |
-
msgstr[1] "%d Artikel in den Papierkorb verschoben."
|
1864 |
-
|
1865 |
-
# @ broken-link-checker
|
1866 |
-
#: includes/any-post.php:736
|
1867 |
-
msgid "%d page moved to the Trash."
|
1868 |
-
msgid_plural "%d pages moved to the Trash."
|
1869 |
-
msgstr[0] "%d Seite in den Papierkorb verschoben."
|
1870 |
-
msgstr[1] "%d Seiten in den Papierkorb verschoben."
|
1871 |
-
|
1872 |
-
# @ broken-link-checker
|
1873 |
-
#: includes/any-post.php:738
|
1874 |
-
msgid "%d \"%s\" moved to the Trash."
|
1875 |
-
msgid_plural "%d \"%s\" moved to the Trash."
|
1876 |
-
msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
|
1877 |
-
msgstr[1] "%d \"%s\" in den Papierkorb verschoben."
|
1878 |
-
|
1879 |
#. Plugin URI of the plugin/theme
|
1880 |
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1881 |
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Broken Link Checker | V1.3.1\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
5 |
+
"POT-Creation-Date: 2011-08-25 16:05:37+00:00\n"
|
6 |
+
"PO-Revision-Date: 2011-08-26 09:57+0100\n"
|
7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ broken-link-checker
|
22 |
+
#: modules/containers/dummy.php:34
|
23 |
+
#: modules/containers/dummy.php:45
|
24 |
+
msgid "I don't know how to edit a '%s' [%d]."
|
25 |
+
msgstr "Das Bearbeiten von '%s' [%d] ist fehlgeschlagen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
# @ broken-link-checker
|
28 |
#: modules/containers/custom_field.php:84
|
47 |
|
48 |
# @ default
|
49 |
#: modules/containers/custom_field.php:197
|
|
|
50 |
#: modules/containers/blogroll.php:46
|
51 |
+
#: modules/containers/comment.php:153
|
52 |
#: includes/any-post.php:397
|
53 |
msgid "Edit"
|
54 |
msgstr "Bearbeiten"
|
109 |
msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
|
110 |
|
111 |
# @ broken-link-checker
|
112 |
+
#: modules/containers/blogroll.php:21
|
113 |
+
msgid "Bookmark"
|
114 |
+
msgstr "Lesezeichen"
|
115 |
+
|
116 |
+
# @ broken-link-checker
|
117 |
+
#: modules/containers/blogroll.php:27
|
118 |
+
#: modules/containers/blogroll.php:46
|
119 |
+
msgid "Edit this bookmark"
|
120 |
+
msgstr "Lesezeichen bearbeiten"
|
121 |
+
|
122 |
+
# @ default
|
123 |
+
#: modules/containers/blogroll.php:47
|
124 |
+
msgid ""
|
125 |
+
"You are about to delete this link '%s'\n"
|
126 |
+
" 'Cancel' to stop, 'OK' to delete."
|
127 |
+
msgstr ""
|
128 |
+
"Möchten Sie diesen Link löschen '%s'\n"
|
129 |
+
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
130 |
+
|
131 |
+
# @ broken-link-checker
|
132 |
#: modules/containers/blogroll.php:83
|
133 |
+
#: modules/containers/comment.php:43
|
134 |
#: includes/any-post.php:519
|
135 |
msgid "Nothing to update"
|
136 |
msgstr "Nichts zu aktualisieren"
|
137 |
|
138 |
+
# @ broken-link-checker
|
139 |
+
#: modules/containers/blogroll.php:97
|
140 |
+
msgid "Updating bookmark %d failed"
|
141 |
+
msgstr "Lesezeichen Aktualisierung %d fehlgeschlagen"
|
142 |
+
|
143 |
+
# @ broken-link-checker
|
144 |
+
#: modules/containers/blogroll.php:128
|
145 |
+
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
146 |
+
msgstr "Löschen des Blogroll Link \"%s\" (%d) schlug fehl"
|
147 |
+
|
148 |
+
# @ broken-link-checker
|
149 |
+
#: modules/containers/blogroll.php:298
|
150 |
+
msgid "%d blogroll link deleted."
|
151 |
+
msgid_plural "%d blogroll links deleted."
|
152 |
+
msgstr[0] "%d Blogroll Link gelöscht."
|
153 |
+
msgstr[1] "%d Blogroll Links gelöscht."
|
154 |
+
|
155 |
# @ broken-link-checker
|
156 |
#: modules/containers/comment.php:53
|
157 |
msgid "Updating comment %d failed"
|
214 |
msgstr[1] "%d Kommentare in den Papierkorb verschoben."
|
215 |
|
216 |
# @ broken-link-checker
|
217 |
+
#: modules/checkers/http.php:242
|
218 |
+
msgid "Server Not Found"
|
219 |
+
msgstr "Server nicht gefunden"
|
220 |
|
221 |
# @ broken-link-checker
|
222 |
+
#: modules/checkers/http.php:257
|
223 |
+
msgid "Connection Failed"
|
224 |
+
msgstr "Verbindung fehlgeschlagen"
|
|
|
225 |
|
226 |
+
# @ link status
|
227 |
+
# @ broken-link-checker
|
228 |
+
#: modules/checkers/http.php:263
|
229 |
+
#: modules/extras/mediafire.php:96
|
230 |
+
#: includes/links.php:845
|
231 |
+
msgid "Unknown Error"
|
232 |
+
msgstr "Unbekannter Fehler"
|
|
|
233 |
|
234 |
# @ broken-link-checker
|
235 |
+
#: modules/checkers/http.php:292
|
236 |
+
#: modules/checkers/http.php:362
|
237 |
+
msgid "HTTP code : %d"
|
238 |
+
msgstr "HTTP Code: %d"
|
239 |
|
240 |
# @ broken-link-checker
|
241 |
+
#: modules/checkers/http.php:294
|
242 |
+
#: modules/checkers/http.php:364
|
243 |
+
msgid "(No response)"
|
244 |
+
msgstr "(Keine Antwort)"
|
245 |
|
246 |
# @ broken-link-checker
|
247 |
+
#: modules/checkers/http.php:300
|
248 |
+
msgid "Most likely the connection timed out or the domain doesn't exist."
|
249 |
+
msgstr "Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
|
|
|
|
|
250 |
|
251 |
# @ broken-link-checker
|
252 |
+
#: modules/checkers/http.php:371
|
253 |
+
msgid "Request timed out."
|
254 |
+
msgstr "Erfordert Zeitlimit."
|
|
|
255 |
|
256 |
# @ broken-link-checker
|
257 |
+
#: modules/checkers/http.php:389
|
258 |
+
msgid "Using Snoopy"
|
259 |
+
msgstr "Benutzt Snoopy"
|
260 |
+
|
261 |
+
# @ broken-link-checker
|
262 |
+
#: modules/parsers/image.php:159
|
263 |
+
msgid "Image"
|
264 |
+
msgstr "Bild"
|
265 |
|
266 |
# @ broken-link-checker
|
267 |
+
#: modules/parsers/metadata.php:117
|
268 |
+
msgid "Custom field"
|
269 |
+
msgstr "Benutzerdefiniertes Feld"
|
270 |
+
|
271 |
+
# @ broken-link-checker
|
272 |
+
#: modules/extras/youtube-iframe.php:25
|
273 |
+
#: modules/extras/youtube-embed.php:24
|
274 |
msgid "YouTube Video"
|
275 |
msgstr "YouTube Video"
|
276 |
|
277 |
# @ broken-link-checker
|
278 |
+
#: modules/extras/youtube-iframe.php:26
|
279 |
+
#: modules/extras/youtube-embed.php:25
|
280 |
msgid "Embedded YouTube video"
|
281 |
msgstr "Eingebettete YouTube Videos"
|
282 |
|
|
|
|
|
|
|
|
|
283 |
# @ broken-link-checker
|
284 |
#: modules/extras/dailymotion-embed.php:23
|
285 |
msgid "DailyMotion Video"
|
291 |
msgstr "Eingebettete DailyMotion Videos"
|
292 |
|
293 |
# @ broken-link-checker
|
294 |
+
#: modules/extras/rapidshare.php:142
|
295 |
+
#: modules/extras/mediafire.php:91
|
296 |
+
#: modules/extras/megaupload.php:109
|
297 |
+
msgid "Not Found"
|
298 |
+
msgstr "Nicht gefunden"
|
|
|
|
|
|
|
299 |
|
300 |
# @ broken-link-checker
|
|
|
301 |
#: modules/extras/rapidshare.php:148
|
302 |
#: modules/extras/rapidshare.php:154
|
303 |
#: modules/extras/rapidshare.php:181
|
304 |
+
#: modules/extras/megaupload.php:101
|
305 |
#: includes/links.php:875
|
306 |
msgctxt "link status"
|
307 |
msgid "OK"
|
308 |
msgstr "OK"
|
309 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
# @ broken-link-checker
|
311 |
#: modules/extras/rapidshare.php:161
|
312 |
msgid "RS Server Down"
|
331 |
msgid "RapidShare API error: %s"
|
332 |
msgstr "RapidShare API Fehler: %s"
|
333 |
|
334 |
+
#: modules/extras/embed-parser-base.php:182
|
335 |
+
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
336 |
+
msgstr "Eingebettete Videos können mit Broken Link Checker nicht editiert werden. Bitte ändern oder ersetzen Sie das betreffende Video manuell."
|
337 |
+
|
338 |
+
# @ broken-link-checker
|
339 |
+
#: modules/extras/vimeo-embed.php:24
|
340 |
+
msgid "Vimeo Video"
|
341 |
+
msgstr "Vimeo Video"
|
342 |
+
|
343 |
+
# @ broken-link-checker
|
344 |
+
#: modules/extras/vimeo-embed.php:25
|
345 |
+
msgid "Embedded Vimeo video"
|
346 |
+
msgstr "Eingebettete Vimeo Videos"
|
347 |
+
|
348 |
# @ broken-link-checker
|
349 |
#: modules/extras/youtube.php:63
|
350 |
#: modules/extras/youtube.php:66
|
381 |
msgid "Unknown YouTube API response received."
|
382 |
msgstr "Unbekannte Antwort der YouTube API erhalten."
|
383 |
|
384 |
+
#: modules/extras/megaupload.php:116
|
385 |
+
msgid "File Temporarily Unavailable"
|
386 |
+
msgstr "Datei vorübergehend nicht erreichbar"
|
387 |
+
|
388 |
+
#: modules/extras/megaupload.php:122
|
389 |
+
msgid "API Error"
|
390 |
+
msgstr "API Fehler"
|
391 |
+
|
392 |
# @ default
|
393 |
#: core/init.php:230
|
394 |
msgid "Once Weekly"
|
993 |
msgstr "Laden der Link Details (%s) schlug fehl"
|
994 |
|
995 |
# @ broken-link-checker
|
996 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.3.1) #-#-#-#-#
|
997 |
#. Plugin Name of the plugin/theme
|
998 |
#: core/core.php:2633
|
999 |
msgid "Broken Link Checker"
|
1112 |
msgstr "Hier sehen Sie alle fehlerhaften Links:"
|
1113 |
|
1114 |
# @ broken-link-checker
|
1115 |
+
#: includes/admin/links-page-js.php:58
|
1116 |
+
#: includes/admin/links-page-js.php:301
|
1117 |
+
msgid "Wait..."
|
1118 |
+
msgstr "Warte ..."
|
|
|
1119 |
|
1120 |
# @ broken-link-checker
|
1121 |
+
#: includes/admin/links-page-js.php:99
|
1122 |
+
#: includes/admin/table-printer.php:587
|
1123 |
+
msgid "Not broken"
|
1124 |
+
msgstr "Nicht fehlerhaft"
|
1125 |
|
1126 |
+
# @ broken-link-checker
|
1127 |
+
#: includes/admin/links-page-js.php:213
|
1128 |
+
msgid "%d instances of the link were successfully modified."
|
1129 |
+
msgstr "%d Instanzen von diesem Link wurden erfolgreich geändert."
|
|
|
|
|
1130 |
|
1131 |
+
# @ broken-link-checker
|
1132 |
+
#: includes/admin/links-page-js.php:219
|
1133 |
+
msgid "However, %d instances couldn't be edited and still point to the old URL."
|
1134 |
+
msgstr "Allerdings, %d Instanzen konnten nicht bearbeitet werden und verweisen zudem noch auf die alte URL."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1135 |
|
1136 |
# @ broken-link-checker
|
1137 |
+
#: includes/admin/links-page-js.php:225
|
1138 |
+
msgid "The link could not be modified."
|
1139 |
+
msgstr "Der Link konnte nicht geändert werden."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1140 |
|
1141 |
# @ broken-link-checker
|
1142 |
+
#: includes/admin/links-page-js.php:228
|
1143 |
+
#: includes/admin/links-page-js.php:353
|
1144 |
+
msgid "The following error(s) occured :"
|
1145 |
+
msgstr "Folgende Fehler sind aufgetreten:"
|
1146 |
|
1147 |
# @ broken-link-checker
|
1148 |
+
#: includes/admin/links-page-js.php:339
|
1149 |
+
msgid "%d instances of the link were successfully unlinked."
|
1150 |
+
msgstr "%d Instanzen von diesem Link wurden erfolgreich gelöscht."
|
|
|
|
|
1151 |
|
1152 |
# @ broken-link-checker
|
1153 |
+
#: includes/admin/links-page-js.php:345
|
1154 |
+
msgid "However, %d instances couldn't be removed."
|
1155 |
+
msgstr "Allerdings, %d Instanzen konnten nicht entfernt werden."
|
1156 |
|
1157 |
# @ broken-link-checker
|
1158 |
+
#: includes/admin/links-page-js.php:350
|
1159 |
+
msgid "The plugin failed to remove the link."
|
1160 |
+
msgstr "Das Plugin konnte den Link nicht entfernen."
|
1161 |
|
1162 |
# @ broken-link-checker
|
1163 |
+
#: includes/admin/links-page-js.php:361
|
1164 |
+
#: includes/admin/table-printer.php:237
|
1165 |
+
#: includes/admin/table-printer.php:581
|
1166 |
+
msgid "Unlink"
|
1167 |
+
msgstr "Link aufheben"
|
1168 |
|
1169 |
# @ broken-link-checker
|
1170 |
+
#: includes/admin/links-page-js.php:405
|
1171 |
+
msgid "Enter a name for the new custom filter"
|
1172 |
+
msgstr "Gib einen Namen für den neuen benutzerdefinierten Filter ein"
|
|
|
1173 |
|
1174 |
# @ broken-link-checker
|
1175 |
+
#: includes/admin/links-page-js.php:416
|
1176 |
+
msgid ""
|
1177 |
+
"You are about to delete the current filter.\n"
|
1178 |
+
"'Cancel' to stop, 'OK' to delete"
|
1179 |
+
msgstr ""
|
1180 |
+
"Möchten Sie den aktuellen Filter löschen '%s'\n"
|
1181 |
+
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
1182 |
|
1183 |
# @ broken-link-checker
|
1184 |
+
#: includes/admin/links-page-js.php:439
|
1185 |
+
msgid ""
|
1186 |
+
"Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
|
1187 |
+
"'Cancel' to stop, 'OK' to delete"
|
1188 |
+
msgstr ""
|
1189 |
+
"Sind Sie sicher, dass Sie alle Beiträge, Lesezeichen oder andere Elemente die in den ausgewählten Links enthalten sind, löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n"
|
1190 |
+
" 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
|
1191 |
|
1192 |
# @ broken-link-checker
|
1193 |
+
#: includes/admin/links-page-js.php:449
|
1194 |
+
msgid ""
|
1195 |
+
"Are you sure you want to remove the selected links? This action can't be undone.\n"
|
1196 |
+
"'Cancel' to stop, 'OK' to remove"
|
1197 |
+
msgstr ""
|
1198 |
+
"Sind Sie sicher, dass Sie die ausgewählten Links entfernen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n"
|
1199 |
+
" 'Abbrechen' um abzubrechen, 'OK' um zu entfernen."
|
|
|
|
|
|
|
|
|
1200 |
|
1201 |
+
#: includes/admin/links-page-js.php:558
|
1202 |
+
msgid "Enter a search string first."
|
1203 |
+
msgstr "Geben Sie zuerst einen Suchbegriff ein."
|
1204 |
|
1205 |
+
#: includes/admin/links-page-js.php:565
|
1206 |
+
msgid "Select one or more links to edit."
|
1207 |
+
msgstr "Wählen Sie einen oder mehrere Links zum bearbeiten."
|
1208 |
|
1209 |
# @ broken-link-checker
|
1210 |
#: includes/admin/search-form.php:16
|
1273 |
msgid "Cancel"
|
1274 |
msgstr "Abbrechen"
|
1275 |
|
1276 |
+
#: includes/admin/sidebar.php:2
|
1277 |
+
msgid "Donate $10, $20 or $50!"
|
1278 |
+
msgstr "Spenden Sie $10, $20 oder $50!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1279 |
|
1280 |
+
#: includes/admin/sidebar.php:5
|
1281 |
+
msgid "If you like this plugin, please donate to support development and maintenance!"
|
1282 |
+
msgstr "Mögen Sie dieses Plugin, dann helfen Sie uns mit einer Spende für die Entwicklung und Wartung."
|
1283 |
|
1284 |
+
#: includes/admin/sidebar.php:22
|
1285 |
+
msgid "Return to WordPress Dashboard"
|
1286 |
+
msgstr "Zurück zum Wordpress Dashboard"
|
1287 |
|
1288 |
+
#: includes/admin/sidebar.php:50
|
1289 |
+
msgid "More plugins by Janis Elsts"
|
1290 |
+
msgstr "Weitere Plugins von Janis Elsts"
|
|
|
1291 |
|
1292 |
# @ broken-link-checker
|
1293 |
#: includes/admin/options-page-js.php:54
|
1433 |
msgstr "Instanz Anzahl"
|
1434 |
|
1435 |
# @ broken-link-checker
|
1436 |
+
#: includes/admin/table-printer.php:484
|
1437 |
+
msgid "This link has failed %d time."
|
1438 |
+
msgid_plural "This link has failed %d times."
|
1439 |
+
msgstr[0] "Dieser Link schlug %d mal fehl."
|
1440 |
+
msgstr[1] "Dieser Link schlug %d mal fehl."
|
1441 |
+
|
1442 |
+
# @ broken-link-checker
|
1443 |
+
#: includes/admin/table-printer.php:492
|
1444 |
+
msgid "This link has been broken for %s."
|
1445 |
+
msgstr "Dieser Links ist fehlerhaft seit %s."
|
1446 |
+
|
1447 |
+
# @ broken-link-checker
|
1448 |
+
#: includes/admin/table-printer.php:503
|
1449 |
+
msgid "Log"
|
1450 |
+
msgstr "Log"
|
1451 |
+
|
1452 |
+
# @ broken-link-checker
|
1453 |
+
#: includes/admin/table-printer.php:524
|
1454 |
+
msgid "Show more info about this link"
|
1455 |
+
msgstr "Mehr Informationen über diesen Link anzeigen"
|
1456 |
+
|
1457 |
+
# @ broken-link-checker
|
1458 |
+
#: includes/admin/table-printer.php:542
|
1459 |
+
msgctxt "checked how long ago"
|
1460 |
+
msgid "Checked"
|
1461 |
+
msgstr "Geprüft"
|
1462 |
+
|
1463 |
+
# @ broken-link-checker
|
1464 |
+
#: includes/admin/table-printer.php:558
|
1465 |
+
msgid "Broken for"
|
1466 |
+
msgstr "Fehlerhaft für"
|
1467 |
+
|
1468 |
+
# @ broken-link-checker
|
1469 |
+
#: includes/admin/table-printer.php:578
|
1470 |
+
msgid "Edit link URL"
|
1471 |
+
msgstr "Bearbeite URL Link"
|
1472 |
+
|
1473 |
+
# @ broken-link-checker
|
1474 |
+
#: includes/admin/table-printer.php:580
|
1475 |
+
msgid "Remove this link from all posts"
|
1476 |
+
msgstr "Löschen Sie diesen Link von allen Beiträgen"
|
1477 |
+
|
1478 |
+
# @ broken-link-checker
|
1479 |
+
#: includes/admin/table-printer.php:586
|
1480 |
+
msgid "Remove this link from the list of broken links and mark it as valid"
|
1481 |
+
msgstr "Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als gültig"
|
1482 |
+
|
1483 |
+
# @ broken-link-checker
|
1484 |
+
#: includes/admin/table-printer.php:595
|
1485 |
+
msgid "Cancel URL editing"
|
1486 |
+
msgstr "URL Bearbeitung abbrechen"
|
1487 |
+
|
1488 |
+
# @ broken-link-checker
|
1489 |
+
#: includes/admin/table-printer.php:602
|
1490 |
+
msgid "Update URL"
|
1491 |
+
msgstr "Update URL"
|
1492 |
+
|
1493 |
+
# @ broken-link-checker
|
1494 |
+
#: includes/admin/table-printer.php:624
|
1495 |
+
msgid "[An orphaned link! This is a bug.]"
|
1496 |
+
msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
|
1497 |
+
|
1498 |
+
# @ broken-link-checker
|
1499 |
+
#: includes/admin/db-upgrade.php:95
|
1500 |
+
msgid "Failed to delete old DB tables. Database error : %s"
|
1501 |
+
msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
|
1502 |
+
|
1503 |
+
# @ broken-link-checker
|
1504 |
+
#: includes/parsers.php:109
|
1505 |
+
msgid "Editing is not implemented in the '%s' parser"
|
1506 |
+
msgstr "Editieren ist nicht im '%s' Parser implementiert"
|
1507 |
+
|
1508 |
+
# @ broken-link-checker
|
1509 |
+
#: includes/parsers.php:124
|
1510 |
+
msgid "Unlinking is not implemented in the '%s' parser"
|
1511 |
+
msgstr "Aufheben der Verknüpfung ist nicht im '%s' Parser implementiert"
|
1512 |
+
|
1513 |
+
# @ broken-link-checker
|
1514 |
+
#: includes/link-query.php:25
|
1515 |
+
msgid "Broken"
|
1516 |
+
msgstr "Fehlerhaft"
|
1517 |
+
|
1518 |
+
# @ broken-link-checker
|
1519 |
+
#: includes/link-query.php:27
|
1520 |
+
msgid "No broken links found"
|
1521 |
+
msgstr "Keine fehlerhaften Links gefunden"
|
1522 |
+
|
1523 |
+
# @ broken-link-checker
|
1524 |
+
#: includes/link-query.php:34
|
1525 |
+
msgid "Redirects"
|
1526 |
+
msgstr "Umleitungen"
|
1527 |
+
|
1528 |
+
# @ broken-link-checker
|
1529 |
+
#: includes/link-query.php:35
|
1530 |
+
msgid "Redirected Links"
|
1531 |
+
msgstr "Umgeleitete Links"
|
1532 |
+
|
1533 |
+
# @ broken-link-checker
|
1534 |
+
#: includes/link-query.php:36
|
1535 |
+
msgid "No redirects found"
|
1536 |
+
msgstr "Keine umgeleiteten Links gefunden"
|
1537 |
+
|
1538 |
+
# @ broken-link-checker
|
1539 |
+
#: includes/link-query.php:44
|
1540 |
+
msgid "All"
|
1541 |
+
msgstr "Alle"
|
1542 |
+
|
1543 |
+
# @ broken-link-checker
|
1544 |
+
#: includes/link-query.php:45
|
1545 |
+
msgid "Detected Links"
|
1546 |
+
msgstr "Gefundene Links"
|
1547 |
+
|
1548 |
+
# @ broken-link-checker
|
1549 |
+
#: includes/link-query.php:46
|
1550 |
+
msgid "No links found (yet)"
|
1551 |
+
msgstr "(Noch) keine Links gefunden"
|
1552 |
+
|
1553 |
+
# @ broken-link-checker
|
1554 |
+
#: includes/link-query.php:54
|
1555 |
+
msgid "Search Results"
|
1556 |
+
msgstr "Such Resultat"
|
1557 |
+
|
1558 |
+
# @ broken-link-checker
|
1559 |
+
#: includes/link-query.php:55
|
1560 |
+
#: includes/link-query.php:102
|
1561 |
+
msgid "No links found for your query"
|
1562 |
+
msgstr "Keine Links für Deine Anfrage gefunden"
|
1563 |
+
|
1564 |
+
# @ default
|
1565 |
+
#: includes/any-post.php:427
|
1566 |
+
msgid "Preview “%s”"
|
1567 |
+
msgstr "Vorschau “%s”"
|
1568 |
+
|
1569 |
+
# @ default
|
1570 |
+
#: includes/any-post.php:428
|
1571 |
+
msgid "Preview"
|
1572 |
+
msgstr "Vorschau"
|
1573 |
+
|
1574 |
+
# @ default
|
1575 |
+
#: includes/any-post.php:435
|
1576 |
+
msgid "View “%s”"
|
1577 |
+
msgstr "Ansehen “%s”"
|
1578 |
+
|
1579 |
+
# @ broken-link-checker
|
1580 |
+
#: includes/any-post.php:529
|
1581 |
+
msgid "Updating post %d failed"
|
1582 |
+
msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
|
1583 |
+
|
1584 |
+
# @ broken-link-checker
|
1585 |
+
#: includes/any-post.php:711
|
1586 |
+
msgid "%d post deleted."
|
1587 |
+
msgid_plural "%d posts deleted."
|
1588 |
+
msgstr[0] "%d Artikel gelöscht."
|
1589 |
+
msgstr[1] "%d Artikel gelöscht."
|
1590 |
+
|
1591 |
+
# @ broken-link-checker
|
1592 |
+
#: includes/any-post.php:713
|
1593 |
+
msgid "%d page deleted."
|
1594 |
+
msgid_plural "%d pages deleted."
|
1595 |
+
msgstr[0] "%d Seite gelöscht."
|
1596 |
+
msgstr[1] "%d Seiten gelöscht."
|
1597 |
+
|
1598 |
+
# @ broken-link-checker
|
1599 |
+
#: includes/any-post.php:715
|
1600 |
+
msgid "%d \"%s\" deleted."
|
1601 |
+
msgid_plural "%d \"%s\" deleted."
|
1602 |
+
msgstr[0] "%d \"%s\" gelöscht."
|
1603 |
+
msgstr[1] "%d \"%s\" gelöscht."
|
1604 |
+
|
1605 |
+
# @ broken-link-checker
|
1606 |
+
#: includes/any-post.php:734
|
1607 |
+
msgid "%d post moved to the Trash."
|
1608 |
+
msgid_plural "%d posts moved to the Trash."
|
1609 |
+
msgstr[0] "%d Artikel in den Papierkorb verschoben."
|
1610 |
+
msgstr[1] "%d Artikel in den Papierkorb verschoben."
|
1611 |
+
|
1612 |
+
# @ broken-link-checker
|
1613 |
+
#: includes/any-post.php:736
|
1614 |
+
msgid "%d page moved to the Trash."
|
1615 |
+
msgid_plural "%d pages moved to the Trash."
|
1616 |
+
msgstr[0] "%d Seite in den Papierkorb verschoben."
|
1617 |
+
msgstr[1] "%d Seiten in den Papierkorb verschoben."
|
1618 |
+
|
1619 |
+
# @ broken-link-checker
|
1620 |
+
#: includes/any-post.php:738
|
1621 |
+
msgid "%d \"%s\" moved to the Trash."
|
1622 |
+
msgid_plural "%d \"%s\" moved to the Trash."
|
1623 |
+
msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
|
1624 |
+
msgstr[1] "%d \"%s\" in den Papierkorb verschoben."
|
1625 |
+
|
1626 |
+
# @ broken-link-checker
|
1627 |
+
#: includes/containers.php:122
|
1628 |
+
msgid "%d '%s' has been deleted"
|
1629 |
+
msgid_plural "%d '%s' have been deleted"
|
1630 |
+
msgstr[0] "%d '%s' wurde gelöscht"
|
1631 |
+
msgstr[1] "%d '%s' wurden gelöscht"
|
1632 |
+
|
1633 |
+
# @ broken-link-checker
|
1634 |
+
#: includes/containers.php:873
|
1635 |
+
#: includes/containers.php:891
|
1636 |
+
msgid "Container type '%s' not recognized"
|
1637 |
+
msgstr "Container Typ '%s' nicht erkannt"
|
1638 |
+
|
1639 |
+
# @ broken-link-checker
|
1640 |
+
#: includes/links.php:215
|
1641 |
+
msgid "The plugin script was terminated while trying to check the link."
|
1642 |
+
msgstr "Das Plugin-Skript wurde beim Versuch den Link zu überprüfen beendet."
|
1643 |
|
1644 |
# @ broken-link-checker
|
1645 |
+
#: includes/links.php:261
|
1646 |
+
msgid "The plugin doesn't know how to check this type of link."
|
1647 |
+
msgstr "Das Plugin weiss nicht genau, wie er diesen Link Typ überprüfen soll."
|
1648 |
|
1649 |
# @ broken-link-checker
|
1650 |
+
#: includes/links.php:349
|
1651 |
+
msgid "Link is valid."
|
1652 |
+
msgstr "Link ist valide."
|
1653 |
|
1654 |
# @ broken-link-checker
|
1655 |
+
#: includes/links.php:351
|
1656 |
+
msgid "Link is broken."
|
1657 |
+
msgstr "Link ist fehlerhaft."
|
1658 |
|
1659 |
# @ broken-link-checker
|
1660 |
+
#: includes/links.php:564
|
1661 |
+
#: includes/links.php:666
|
1662 |
+
#: includes/links.php:693
|
1663 |
+
msgid "Link is not valid"
|
1664 |
+
msgstr "Link ist nicht gültig"
|
1665 |
|
1666 |
# @ broken-link-checker
|
1667 |
+
#: includes/links.php:581
|
1668 |
+
msgid "This link can not be edited because it is not used anywhere on this site."
|
1669 |
+
msgstr "Dieser Link kann nicht bearbeitet werden, weil er nicht überall auf dieser Website verwendet wird."
|
1670 |
|
1671 |
# @ broken-link-checker
|
1672 |
+
#: includes/links.php:607
|
1673 |
+
msgid "Failed to create a DB entry for the new URL."
|
1674 |
+
msgstr "Das Erstellen eines Datenbankeintrages für die neue URL ist fehlgeschlagen."
|
1675 |
|
1676 |
# @ broken-link-checker
|
1677 |
+
#: includes/links.php:673
|
1678 |
+
msgid "This link is not a redirect"
|
1679 |
+
msgstr "Dieser Link ist keine Umleitung"
|
1680 |
|
1681 |
# @ broken-link-checker
|
1682 |
+
#: includes/links.php:720
|
1683 |
+
#: includes/links.php:757
|
1684 |
+
msgid "Couldn't delete the link's database record"
|
1685 |
+
msgstr "Links können nicht aus der Datenbank gelöscht werden"
|
1686 |
|
1687 |
# @ broken-link-checker
|
1688 |
+
#: includes/links.php:831
|
1689 |
+
msgctxt "link status"
|
1690 |
+
msgid "Unknown"
|
1691 |
+
msgstr "Unbekannt"
|
1692 |
|
1693 |
# @ broken-link-checker
|
1694 |
+
#: includes/links.php:869
|
1695 |
+
msgid "Not checked"
|
1696 |
+
msgstr "Nicht überprüft"
|
1697 |
|
1698 |
# @ broken-link-checker
|
1699 |
+
#: includes/links.php:872
|
1700 |
+
msgid "False positive"
|
1701 |
+
msgstr "Falsch positiv"
|
1702 |
|
1703 |
# @ broken-link-checker
|
1704 |
#: includes/extra-strings.php:2
|
1745 |
# @ broken-link-checker
|
1746 |
#: includes/extra-strings.php:9
|
1747 |
msgctxt "module name"
|
1748 |
+
msgid "Embedded YouTube videos (old embed code)"
|
1749 |
+
msgstr "Eingebettete YouTube Videos (Alter Code)"
|
1750 |
+
|
1751 |
+
# @ broken-link-checker
|
1752 |
+
#: includes/extra-strings.php:10
|
1753 |
+
msgctxt "module name"
|
1754 |
msgid "HTML images"
|
1755 |
msgstr "HTML Bilder"
|
1756 |
|
1757 |
# @ broken-link-checker
|
1758 |
+
#: includes/extra-strings.php:11
|
1759 |
msgctxt "module name"
|
1760 |
msgid "HTML links"
|
1761 |
msgstr "HTML Links"
|
1762 |
|
1763 |
# @ broken-link-checker
|
1764 |
+
#: includes/extra-strings.php:12
|
1765 |
msgctxt "module name"
|
1766 |
msgid "MediaFire API"
|
1767 |
msgstr "MediaFire API"
|
1768 |
|
1769 |
# @ broken-link-checker
|
1770 |
+
#: includes/extra-strings.php:13
|
1771 |
msgctxt "module name"
|
1772 |
msgid "MegaUpload API"
|
1773 |
msgstr "MegaUpload API"
|
1774 |
|
1775 |
# @ broken-link-checker
|
1776 |
+
#: includes/extra-strings.php:14
|
1777 |
msgctxt "module name"
|
1778 |
msgid "Plaintext URLs"
|
1779 |
msgstr "Klartext URLs"
|
1780 |
|
1781 |
# @ broken-link-checker
|
1782 |
+
#: includes/extra-strings.php:15
|
1783 |
msgctxt "module name"
|
1784 |
msgid "RapidShare API"
|
1785 |
msgstr "RapidShare API"
|
1786 |
|
1787 |
# @ broken-link-checker
|
1788 |
+
#: includes/extra-strings.php:16
|
1789 |
msgctxt "module name"
|
1790 |
msgid "YouTube API"
|
1791 |
msgstr "YouTube API"
|
1792 |
|
1793 |
# @ broken-link-checker
|
1794 |
+
#: includes/extra-strings.php:17
|
1795 |
msgctxt "module name"
|
1796 |
msgid "Posts"
|
1797 |
msgstr "Beiträge"
|
1798 |
|
1799 |
# @ broken-link-checker
|
1800 |
+
#: includes/extra-strings.php:18
|
1801 |
msgctxt "module name"
|
1802 |
msgid "Pages"
|
1803 |
msgstr "Seiten"
|
1804 |
|
1805 |
+
# @ default
|
1806 |
+
#: includes/utility-class.php:244
|
1807 |
+
msgid "%d second"
|
1808 |
+
msgid_plural "%d seconds"
|
1809 |
+
msgstr[0] "%s Sekunde"
|
1810 |
+
msgstr[1] "%s Sekunden"
|
1811 |
|
1812 |
+
# @ default
|
1813 |
+
#: includes/utility-class.php:245
|
1814 |
+
msgid "%d second ago"
|
1815 |
+
msgid_plural "%d seconds ago"
|
1816 |
+
msgstr[0] "%s Sekunde vergangen"
|
1817 |
+
msgstr[1] "%s Sekunden vergangen"
|
1818 |
|
1819 |
+
# @ default
|
1820 |
+
#: includes/utility-class.php:248
|
1821 |
+
msgid "%d minute"
|
1822 |
+
msgid_plural "%d minutes"
|
1823 |
+
msgstr[0] "%d Minute"
|
1824 |
+
msgstr[1] "%d Minuten"
|
1825 |
|
1826 |
+
# @ default
|
1827 |
+
#: includes/utility-class.php:249
|
1828 |
+
msgid "%d minute ago"
|
1829 |
+
msgid_plural "%d minutes ago"
|
1830 |
+
msgstr[0] "%d Minute vergangen"
|
1831 |
+
msgstr[1] "%d Minuten vergangen"
|
1832 |
|
1833 |
+
# @ default
|
1834 |
+
#: includes/utility-class.php:252
|
1835 |
+
msgid "%d hour"
|
1836 |
+
msgid_plural "%d hours"
|
1837 |
+
msgstr[0] "%d Stunde"
|
1838 |
+
msgstr[1] "%d Stunden"
|
1839 |
|
1840 |
+
# @ default
|
1841 |
+
#: includes/utility-class.php:253
|
1842 |
+
msgid "%d hour ago"
|
1843 |
+
msgid_plural "%d hours ago"
|
1844 |
+
msgstr[0] "%d Stunde vergangen"
|
1845 |
+
msgstr[1] "%d Stunden vergangen"
|
1846 |
|
1847 |
+
# @ default
|
1848 |
+
#: includes/utility-class.php:256
|
1849 |
+
msgid "%d day"
|
1850 |
+
msgid_plural "%d days"
|
1851 |
+
msgstr[0] "%d Tag"
|
1852 |
+
msgstr[1] "%d Tage"
|
1853 |
|
1854 |
+
# @ default
|
1855 |
+
#: includes/utility-class.php:257
|
1856 |
+
msgid "%d day ago"
|
1857 |
+
msgid_plural "%d days ago"
|
1858 |
+
msgstr[0] "%d Tag vergangen"
|
1859 |
+
msgstr[1] "%d Tage vergangen"
|
1860 |
|
1861 |
+
# @ default
|
1862 |
+
#: includes/utility-class.php:260
|
1863 |
+
msgid "%d month"
|
1864 |
+
msgid_plural "%d months"
|
1865 |
+
msgstr[0] "%d Monat"
|
1866 |
+
msgstr[1] "%d Monate"
|
1867 |
|
1868 |
+
# @ default
|
1869 |
+
#: includes/utility-class.php:261
|
1870 |
+
msgid "%d month ago"
|
1871 |
+
msgid_plural "%d months ago"
|
1872 |
+
msgstr[0] "%d Monat vergangen"
|
1873 |
+
msgstr[1] "%d Monate vergangen"
|
1874 |
|
1875 |
# @ broken-link-checker
|
1876 |
#: includes/instances.php:102
|
1884 |
msgid "Parser '%s' not found."
|
1885 |
msgstr "Parser '%s' nicht gefunden."
|
1886 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1887 |
#. Plugin URI of the plugin/theme
|
1888 |
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1889 |
msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
languages/broken-link-checker-fa_IR.mo
CHANGED
Binary file
|
languages/broken-link-checker-fa_IR.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2011-03-19 17:41+0330\n"
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Omid Sheerkavand <o.sheerkavand@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -210,7 +210,7 @@ msgstr "به طور مداوم اجرا کن وقتی پیشخوان باز
|
|
210 |
|
211 |
#: C:/Users/$oSIs/DEsktop/broken-link-checker/core/core.php:923
|
212 |
msgid "Run hourly in the background"
|
213 |
-
msgstr "به طور ساعتی در
|
214 |
|
215 |
#: C:/Users/$oSIs/DEsktop/broken-link-checker/core/core.php:931
|
216 |
msgid "Max. execution time"
|
3 |
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2011-03-19 17:41+0330\n"
|
6 |
+
"PO-Revision-Date: 2011-08-26 14:12+0330\n"
|
7 |
"Last-Translator: Omid Sheerkavand <o.sheerkavand@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
210 |
|
211 |
#: C:/Users/$oSIs/DEsktop/broken-link-checker/core/core.php:923
|
212 |
msgid "Run hourly in the background"
|
213 |
+
msgstr "به طور ساعتی در پسزمینه اجرا کن"
|
214 |
|
215 |
#: C:/Users/$oSIs/DEsktop/broken-link-checker/core/core.php:931
|
216 |
msgid "Max. execution time"
|
languages/broken-link-checker-it_IT.mo
CHANGED
Binary file
|
languages/broken-link-checker-it_IT.po
CHANGED
@@ -7,10 +7,10 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Broken Link Checker in italiano\n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
10 |
-
"POT-Creation-Date:
|
11 |
-
"PO-Revision-Date: 2011-
|
12 |
-
"Last-Translator:
|
13 |
-
"Language-Team: Gianni Diurno | gidibao.net\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -216,7 +216,7 @@ msgstr "Richiesta scaduta."
|
|
216 |
msgid "Using Snoopy"
|
217 |
msgstr "Snoopy in uso"
|
218 |
|
219 |
-
#: modules/parsers/image.php:
|
220 |
msgid "Image"
|
221 |
msgstr "Immagine"
|
222 |
|
@@ -224,6 +224,16 @@ msgstr "Immagine"
|
|
224 |
msgid "Custom field"
|
225 |
msgstr "Campo personalizzato"
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
#: modules/extras/dailymotion-embed.php:23
|
228 |
msgid "DailyMotion Video"
|
229 |
msgstr "DailyMotion Video"
|
@@ -267,7 +277,7 @@ msgstr "RapidShare : %s"
|
|
267 |
msgid "RapidShare API error: %s"
|
268 |
msgstr "Errore API RapidShare: %s"
|
269 |
|
270 |
-
#: modules/extras/embed-parser-base.php:
|
271 |
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
272 |
msgstr "I video incorporati non possono essere modificati da Broken Link Checker. Sostituisci o modifica i video manualmente."
|
273 |
|
@@ -298,7 +308,6 @@ msgstr "Video OK"
|
|
298 |
|
299 |
#: modules/extras/youtube.php:95
|
300 |
#: modules/extras/youtube.php:122
|
301 |
-
#: core/core.php:966
|
302 |
msgid "OK"
|
303 |
msgstr "OK"
|
304 |
|
@@ -314,14 +323,6 @@ msgstr "Video riservato"
|
|
314 |
msgid "Unknown YouTube API response received."
|
315 |
msgstr "Risposta sconosciuta ricevuta da API YouTube."
|
316 |
|
317 |
-
#: modules/extras/youtube-embed.php:22
|
318 |
-
msgid "YouTube Video"
|
319 |
-
msgstr "YouTube Video"
|
320 |
-
|
321 |
-
#: modules/extras/youtube-embed.php:23
|
322 |
-
msgid "Embedded YouTube video"
|
323 |
-
msgstr "Video incorporato YouTube"
|
324 |
-
|
325 |
#: modules/extras/megaupload.php:116
|
326 |
msgid "File Temporarily Unavailable"
|
327 |
msgstr "File temporameamente non disponibile"
|
@@ -330,625 +331,593 @@ msgstr "File temporameamente non disponibile"
|
|
330 |
msgid "API Error"
|
331 |
msgstr "Errore API"
|
332 |
|
333 |
-
#: core/init.php:
|
334 |
msgid "Once Weekly"
|
335 |
msgstr "Una volta alla settimana"
|
336 |
|
337 |
-
#: core/init.php:
|
338 |
msgid "Twice a Month"
|
339 |
msgstr "Due volte al mese"
|
340 |
|
341 |
-
#: core/init.php:
|
342 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
343 |
msgstr "L'installazione di Broken Link Checker é fallita. Prova a disattivare quindi, riattivare il plugin."
|
344 |
|
345 |
-
#: core/core.php:
|
346 |
#: includes/admin/links-page-js.php:37
|
347 |
msgid "Loading..."
|
348 |
msgstr "In carica..."
|
349 |
|
350 |
-
#: core/core.php:
|
351 |
#: includes/admin/options-page-js.php:18
|
352 |
msgid "[ Network error ]"
|
353 |
msgstr "[ Network error ]"
|
354 |
|
355 |
-
#: core/core.php:
|
356 |
msgid "Automatically expand the widget if broken links have been detected"
|
357 |
msgstr "Espandi in automatico il widget qualora un link rotto fosse stato rilevato"
|
358 |
|
359 |
-
#: core/core.php:
|
360 |
msgid "Link Checker Settings"
|
361 |
msgstr "Impostazioni Link Checker"
|
362 |
|
363 |
-
#: core/core.php:
|
364 |
msgid "Link Checker"
|
365 |
msgstr "Link Checker"
|
366 |
|
367 |
-
#: core/core.php:
|
368 |
#: includes/link-query.php:26
|
369 |
msgid "Broken Links"
|
370 |
msgstr "Link rotti"
|
371 |
|
372 |
-
#: core/core.php:
|
373 |
msgid "View Broken Links"
|
374 |
msgstr "Visualizza i link rotti"
|
375 |
|
376 |
-
#: core/core.php:
|
377 |
msgid "Feedback"
|
378 |
msgstr "Feedback"
|
379 |
|
380 |
-
#: core/core.php:
|
381 |
msgid "Go to Settings"
|
382 |
msgstr "Vai alle impostazioni"
|
383 |
|
384 |
-
#: core/core.php:
|
385 |
msgid "Go to Broken Links"
|
386 |
msgstr "Vai ai link rotti"
|
387 |
|
388 |
-
#: core/core.php:
|
389 |
msgid "Settings"
|
390 |
msgstr "Impostazioni"
|
391 |
|
392 |
-
#: core/core.php:
|
393 |
-
#: core/core.php:
|
394 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
395 |
msgstr "Errore: le tabelle del database di questo plugin non sono aggiornate! (versione in uso : %d, attesa : %d)"
|
396 |
|
397 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
|
|
398 |
msgid "Settings saved."
|
399 |
msgstr "Le impostazioni sono state salvate."
|
400 |
|
401 |
-
#: core/core.php:
|
402 |
msgid "Thank you for your donation!"
|
403 |
msgstr "Grazie per la tua donazione!"
|
404 |
|
405 |
-
#: core/core.php:
|
406 |
msgid "Complete site recheck started."
|
407 |
msgstr "E' in atto la nuova verifica completa per il sito."
|
408 |
|
409 |
-
#: core/core.php:
|
410 |
-
#: core/core.php:2768
|
411 |
msgid "Details"
|
412 |
msgstr "Dettagli"
|
413 |
|
414 |
-
#: core/core.php:
|
415 |
msgid "General"
|
416 |
msgstr "Generale"
|
417 |
|
418 |
-
#: core/core.php:
|
419 |
msgid "Look For Links In"
|
420 |
msgstr "Cerca i link in"
|
421 |
|
422 |
-
#: core/core.php:
|
423 |
msgid "Which Links To Check"
|
424 |
msgstr "Quali link controllare"
|
425 |
|
426 |
-
#: core/core.php:
|
427 |
msgid "Protocols & APIs"
|
428 |
msgstr "Protocolli & API"
|
429 |
|
430 |
-
#: core/core.php:
|
431 |
msgid "Advanced"
|
432 |
msgstr "Avanzate"
|
433 |
|
434 |
-
#: core/core.php:
|
435 |
msgid "Broken Link Checker Options"
|
436 |
msgstr "Opzioni Broken Link Checker"
|
437 |
|
438 |
-
#: core/core.php:
|
439 |
#: includes/admin/table-printer.php:168
|
440 |
msgid "Status"
|
441 |
msgstr "Stato"
|
442 |
|
443 |
-
#: core/core.php:
|
444 |
#: includes/admin/options-page-js.php:56
|
445 |
msgid "Show debug info"
|
446 |
msgstr "Mostra info debug"
|
447 |
|
448 |
-
#: core/core.php:
|
449 |
msgid "Check each link"
|
450 |
msgstr "Controlla i link"
|
451 |
|
452 |
-
#: core/core.php:
|
453 |
msgid "Every %s hours"
|
454 |
msgstr "Ogni %s ore"
|
455 |
|
456 |
-
#: core/core.php:
|
457 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
458 |
msgstr "I link già esistenti verranno controllati con questa frequenza i nuovi, lo saranno a breve."
|
459 |
|
460 |
-
#: core/core.php:
|
461 |
msgid "E-mail notifications"
|
462 |
msgstr "Notifiche email"
|
463 |
|
464 |
-
#: core/core.php:
|
465 |
msgid "Send me e-mail notifications about newly detected broken links"
|
466 |
msgstr "Inviami una email di notifica al rilevamento di un nuovo link rotto"
|
467 |
|
468 |
-
#: core/core.php:
|
469 |
msgid "Link tweaks"
|
470 |
msgstr "Link tweaks"
|
471 |
|
472 |
-
#: core/core.php:
|
473 |
msgid "Apply custom formatting to broken links"
|
474 |
msgstr "Applica formattazione personalizzata ai link rotti"
|
475 |
|
476 |
-
#: core/core.php:
|
477 |
-
#: core/core.php:
|
478 |
msgid "Edit CSS"
|
479 |
msgstr "Modifica CSS"
|
480 |
|
481 |
-
#: core/core.php:
|
482 |
msgid "Apply custom formatting to removed links"
|
483 |
msgstr "Applica la formattazione personalizzata ai link rimossi"
|
484 |
|
485 |
-
#: core/core.php:
|
486 |
msgid "Stop search engines from following broken links"
|
487 |
msgstr "Blocca i motori di ricerca per i seguenti link"
|
488 |
|
489 |
-
#: core/core.php:
|
490 |
msgid "Look for links in"
|
491 |
msgstr "Cerca i links in"
|
492 |
|
493 |
-
#: core/core.php:
|
494 |
msgid "Post statuses"
|
495 |
msgstr "Stati articolo"
|
496 |
|
497 |
-
#: core/core.php:
|
498 |
msgid "Link types"
|
499 |
msgstr "Tipo di link"
|
500 |
|
501 |
-
#: core/core.php:
|
502 |
msgid "Error : All link parsers missing!"
|
503 |
msgstr "Errore : manca l'analisi di tutti i link!"
|
504 |
|
505 |
-
#: core/core.php:
|
506 |
msgid "Exclusion list"
|
507 |
msgstr "Lista estromessi"
|
508 |
|
509 |
-
#: core/core.php:
|
510 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
511 |
msgstr "Non controllare gli URL che contengono queste parole (una per riga):"
|
512 |
|
513 |
-
#: core/core.php:
|
514 |
msgid "Check links using"
|
515 |
msgstr "Controlla utilizzo link"
|
516 |
|
517 |
-
#: core/core.php:
|
518 |
#: includes/links.php:849
|
519 |
msgid "Timeout"
|
520 |
msgstr "Timeout"
|
521 |
|
522 |
-
#: core/core.php:
|
523 |
-
#: core/core.php:
|
524 |
-
#: core/core.php:
|
525 |
msgid "%s seconds"
|
526 |
msgstr "%s secondi"
|
527 |
|
528 |
-
#: core/core.php:
|
529 |
msgid "Links that take longer than this to load will be marked as broken."
|
530 |
msgstr "I link che impiegheranno un maggior tempo per essere caricati verranno considerati come rotti."
|
531 |
|
532 |
-
#: core/core.php:
|
533 |
msgid "Link monitor"
|
534 |
msgstr "Monitoraggio link"
|
535 |
|
536 |
-
#: core/core.php:
|
537 |
msgid "Run continuously while the Dashboard is open"
|
538 |
msgstr "Funzionamento continuo durante il periodo di login"
|
539 |
|
540 |
-
#: core/core.php:
|
541 |
msgid "Run hourly in the background"
|
542 |
msgstr "Funzionamento in background ogni ora"
|
543 |
|
544 |
-
#: core/core.php:
|
545 |
msgid "Max. execution time"
|
546 |
msgstr "Tempo max. operazione"
|
547 |
|
548 |
-
#: core/core.php:
|
549 |
msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
|
550 |
msgstr "Questo plugin opera grazie ad una richiesta periodica che lavora in background atta al rilevamento dei link contenuti nei post alla ricerca degli URL nonché compie delle operazioni che richiedono del tempo. Qui puoi impostare il tempo massimo di durata per la richiesta in background prima che essa termini."
|
551 |
|
552 |
-
#: core/core.php:
|
553 |
-
msgid "Custom temporary directory"
|
554 |
-
msgstr "Cartella temporanea personalizzata:"
|
555 |
-
|
556 |
-
#: core/core.php:969
|
557 |
-
msgid "Error : This directory isn't writable by PHP."
|
558 |
-
msgstr "Errore : questa cartella non é scrivibile via PHP."
|
559 |
-
|
560 |
-
#: core/core.php:974
|
561 |
-
msgid "Error : This directory doesn't exist."
|
562 |
-
msgstr "Errore : questa cartella non esiste."
|
563 |
-
|
564 |
-
#: core/core.php:982
|
565 |
-
msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
|
566 |
-
msgstr "Compila questo campo qualora gradissi che il plugin faccia uso di una cartella personalizzata per i lockfile diversamente, lascia in bianco."
|
567 |
-
|
568 |
-
#: core/core.php:989
|
569 |
msgid "Server load limit"
|
570 |
msgstr "Limite server load"
|
571 |
|
572 |
-
#: core/core.php:
|
573 |
msgid "Current load : %s"
|
574 |
msgstr "In caricamento : %s"
|
575 |
|
576 |
-
#: core/core.php:
|
577 |
msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
|
578 |
msgstr "La verifica dei link sarà sospesa nel caso in cui il valore di media del <a href=\"%s\">server load</a> superasse questo numero. Lascia in bianco per disattivare il limite di caricamento."
|
579 |
|
580 |
-
#: core/core.php:
|
581 |
msgid "Not available"
|
582 |
msgstr "Non disponibile"
|
583 |
|
584 |
-
#: core/core.php:
|
585 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
586 |
msgstr "Il limite di caricamento funziona solamente per i sistemi Linux-like laddove la funzione <code>/proc/loadavg</code> sia presente ed accessibile."
|
587 |
|
588 |
-
#: core/core.php:
|
589 |
msgid "Forced recheck"
|
590 |
msgstr "Imponi nuova verifica"
|
591 |
|
592 |
-
#: core/core.php:
|
593 |
msgid "Re-check all pages"
|
594 |
msgstr "Ricontrolla tutte le pagine"
|
595 |
|
596 |
-
#: core/core.php:
|
597 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
598 |
msgstr "La \"Opzione atomica\". Clicca questo pulsante per fare sì che il plugin svuoti i link nel database ed effettui da zero un controllo del sito."
|
599 |
|
600 |
-
#: core/core.php:
|
601 |
msgid "Save Changes"
|
602 |
msgstr "Salva le modifiche"
|
603 |
|
604 |
-
#: core/core.php:
|
605 |
msgid "Configure"
|
606 |
msgstr "Configura"
|
607 |
|
608 |
-
#: core/core.php:
|
609 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
610 |
msgstr "Controlla gli URL inseriti in questi campi personalizzati (uno per riga):"
|
611 |
|
612 |
-
#: core/core.php:
|
613 |
-
#: core/core.php:
|
614 |
-
#: core/core.php:
|
615 |
msgid "Database error : %s"
|
616 |
msgstr "Errore database : %s"
|
617 |
|
618 |
-
#: core/core.php:
|
619 |
msgid "You must enter a filter name!"
|
620 |
msgstr "Deve essere inserito un nome del filtro!"
|
621 |
|
622 |
-
#: core/core.php:
|
623 |
msgid "Invalid search query."
|
624 |
msgstr "Termine di ricerca non valido."
|
625 |
|
626 |
-
#: core/core.php:
|
627 |
msgid "Filter \"%s\" created"
|
628 |
msgstr "E' stato creato il filtro \"%s\""
|
629 |
|
630 |
-
#: core/core.php:
|
631 |
msgid "Filter ID not specified."
|
632 |
msgstr "ID filtro non specificato."
|
633 |
|
634 |
-
#: core/core.php:
|
635 |
msgid "Filter deleted"
|
636 |
msgstr "Il filtro é stato cancellato"
|
637 |
|
638 |
-
#: core/core.php:
|
639 |
msgid "Replaced %d redirect with a direct link"
|
640 |
msgid_plural "Replaced %d redirects with direct links"
|
641 |
msgstr[0] "Sostituito %d reindirizzamento con un link diretto"
|
642 |
msgstr[1] "Sostituiti %d reindirizzamenti con dei link diretti"
|
643 |
|
644 |
-
#: core/core.php:
|
645 |
msgid "Failed to fix %d redirect"
|
646 |
msgid_plural "Failed to fix %d redirects"
|
647 |
msgstr[0] "Impossibile correggere il reindirizzamento per %d"
|
648 |
msgstr[1] "Impossibile correggere i reindirizzamenti per %d"
|
649 |
|
650 |
-
#: core/core.php:
|
651 |
msgid "None of the selected links are redirects!"
|
652 |
msgstr "Nessuno dei link selezionati é reindirizzato!"
|
653 |
|
654 |
-
#: core/core.php:
|
655 |
msgid "%d link updated."
|
656 |
msgid_plural "%d links updated."
|
657 |
msgstr[0] "%d link aggiornato."
|
658 |
msgstr[1] "%d link aggiornati."
|
659 |
|
660 |
-
#: core/core.php:
|
661 |
msgid "Failed to update %d link."
|
662 |
msgid_plural "Failed to update %d links."
|
663 |
msgstr[0] "Impossibile aggiornare il link %d"
|
664 |
msgstr[1] "Impossibile aggiornare i link %d"
|
665 |
|
666 |
-
#: core/core.php:
|
667 |
msgid "%d link removed"
|
668 |
msgid_plural "%d links removed"
|
669 |
msgstr[0] "%d il link é stato rimosso"
|
670 |
msgstr[1] "%d i link sono stati rimossi"
|
671 |
|
672 |
-
#: core/core.php:
|
673 |
msgid "Failed to remove %d link"
|
674 |
msgid_plural "Failed to remove %d links"
|
675 |
msgstr[0] "Impossibile rimuovere il link %d"
|
676 |
msgstr[1] "Impossibile rimuovere i link %d"
|
677 |
|
678 |
-
#: core/core.php:
|
679 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
680 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
681 |
msgstr[0] "%d l'elemento é stato saltato poiché non potrà essere spostato nel cestino. Dovrai cancellarlo manualmente."
|
682 |
msgstr[1] "%d gli elementi sono stati saltati poiché non potranno essere spostati nel cestino. Dovrai cancellarli manualmente."
|
683 |
|
684 |
-
#: core/core.php:
|
685 |
msgid "Didn't find anything to delete!"
|
686 |
msgstr "Nulla da cancellare!"
|
687 |
|
688 |
-
#: core/core.php:
|
689 |
msgid "%d link scheduled for rechecking"
|
690 |
msgid_plural "%d links scheduled for rechecking"
|
691 |
msgstr[0] "%d link in verifica programmata"
|
692 |
msgstr[1] "%d link in verifica programmata"
|
693 |
|
694 |
-
#: core/core.php:
|
695 |
-
#: core/core.php:
|
696 |
msgid "This link was manually marked as working by the user."
|
697 |
msgstr "L'utente ha segnalato manualmente che questo link é funzionante."
|
698 |
|
699 |
-
#: core/core.php:
|
700 |
msgid "Couldn't modify link %d"
|
701 |
msgstr "Non é possibile modificare il link %d"
|
702 |
|
703 |
-
#: core/core.php:
|
704 |
msgid "%d link marked as not broken"
|
705 |
msgid_plural "%d links marked as not broken"
|
706 |
msgstr[0] "%d link segnato come funzionante"
|
707 |
msgstr[1] "%d link segnati come funzionanti"
|
708 |
|
709 |
-
#: core/core.php:
|
710 |
msgid "Table columns"
|
711 |
msgstr "Colonne tabella"
|
712 |
|
713 |
-
#: core/core.php:
|
714 |
msgid "Show on screen"
|
715 |
msgstr "Mostra sullo schermo"
|
716 |
|
717 |
-
#: core/core.php:
|
718 |
msgid "links"
|
719 |
msgstr "link"
|
720 |
|
721 |
-
#: core/core.php:
|
722 |
#: includes/admin/table-printer.php:136
|
723 |
msgid "Apply"
|
724 |
msgstr "Applica"
|
725 |
|
726 |
-
#: core/core.php:
|
727 |
msgid "Misc"
|
728 |
msgstr "Varie"
|
729 |
|
730 |
-
#: core/core.php:
|
731 |
msgid "Highlight links broken for at least %s days"
|
732 |
msgstr "Evidenzia i link rotti per gli ultimi %s giorni"
|
733 |
|
734 |
-
#: core/core.php:
|
735 |
msgid "Color-code status codes"
|
736 |
msgstr "Codici stato codice-colore"
|
737 |
|
738 |
-
#: core/core.php:
|
739 |
-
#: core/core.php:
|
740 |
-
#: core/core.php:
|
741 |
-
#: core/core.php:
|
742 |
msgid "You're not allowed to do that!"
|
743 |
msgstr "Non hai il permesso per farlo!"
|
744 |
|
745 |
-
#: core/core.php:
|
746 |
msgid "View broken links"
|
747 |
msgstr "Visualizza i link rotti"
|
748 |
|
749 |
-
#: core/core.php:
|
750 |
msgid "Found %d broken link"
|
751 |
msgid_plural "Found %d broken links"
|
752 |
msgstr[0] "E' stato trovato %d link rotto"
|
753 |
msgstr[1] "Sono stati trovati %d link rotti"
|
754 |
|
755 |
-
#: core/core.php:
|
756 |
msgid "No broken links found."
|
757 |
msgstr "Non é stato trovato alcun link rotto."
|
758 |
|
759 |
-
#: core/core.php:
|
760 |
msgid "%d URL in the work queue"
|
761 |
msgid_plural "%d URLs in the work queue"
|
762 |
msgstr[0] "%d URL in coda di elaborazione"
|
763 |
msgstr[1] "%d URL in coda di elaborazione"
|
764 |
|
765 |
-
#: core/core.php:
|
766 |
msgid "No URLs in the work queue."
|
767 |
msgstr "Nessun URL in coda di elaborazione."
|
768 |
|
769 |
-
#: core/core.php:
|
770 |
msgid "Detected %d unique URL"
|
771 |
msgid_plural "Detected %d unique URLs"
|
772 |
msgstr[0] "E' stato rilevato %d URL unico"
|
773 |
msgstr[1] "Sono stati rilevati %d URL unici"
|
774 |
|
775 |
-
#: core/core.php:
|
776 |
msgid "in %d link"
|
777 |
msgid_plural "in %d links"
|
778 |
msgstr[0] "in %d link"
|
779 |
msgstr[1] "in %d link"
|
780 |
|
781 |
-
#: core/core.php:
|
782 |
msgid "and still searching..."
|
783 |
msgstr "ricerca in corso..."
|
784 |
|
785 |
-
#: core/core.php:
|
786 |
msgid "Searching your blog for links..."
|
787 |
msgstr "Ricerca dei link in corso..."
|
788 |
|
789 |
-
#: core/core.php:
|
790 |
msgid "No links detected."
|
791 |
msgstr "Nessun link é stato rilevato."
|
792 |
|
793 |
-
#: core/core.php:
|
794 |
msgctxt "current load"
|
795 |
msgid "Unknown"
|
796 |
msgstr "Sconosciuto"
|
797 |
|
798 |
-
#: core/core.php:
|
799 |
-
#: core/core.php:
|
800 |
-
#: core/core.php:
|
801 |
msgid "Oops, I can't find the link %d"
|
802 |
msgstr "Oops, non é possibile trovare il link %d"
|
803 |
|
804 |
-
#: core/core.php:
|
805 |
msgid "Oops, couldn't modify the link!"
|
806 |
msgstr "Oops, non é possibile modificare il link!"
|
807 |
|
808 |
-
#: core/core.php:
|
809 |
-
#: core/core.php:
|
810 |
msgid "Error : link_id not specified"
|
811 |
msgstr "Errore : non é stata specificata la link_id"
|
812 |
|
813 |
-
#: core/core.php:
|
814 |
msgid "Oops, the new URL is invalid!"
|
815 |
msgstr "Oops, il nuovo URL non é valido!"
|
816 |
|
817 |
-
#: core/core.php:
|
818 |
-
#: core/core.php:
|
819 |
msgid "An unexpected error occured!"
|
820 |
msgstr "Si é verificato un errore inatteso!"
|
821 |
|
822 |
-
#: core/core.php:
|
823 |
msgid "Error : link_id or new_url not specified"
|
824 |
msgstr "Errore : non é stata specificata la link_id oppure il new_url"
|
825 |
|
826 |
-
#: core/core.php:
|
827 |
msgid "You don't have sufficient privileges to access this information!"
|
828 |
msgstr "Non hai i permessi necessari per poter accedere a questa informazione!"
|
829 |
|
830 |
-
#: core/core.php:
|
831 |
msgid "Error : link ID not specified"
|
832 |
msgstr "Errore : La ID del link non é stata specificata"
|
833 |
|
834 |
-
#: core/core.php:
|
835 |
msgid "Failed to load link details (%s)"
|
836 |
msgstr "Non é stato possibile caricare i dettagli sul link (%s)"
|
837 |
|
838 |
-
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.
|
839 |
#. Plugin Name of the plugin/theme
|
840 |
-
#: core/core.php:
|
841 |
msgid "Broken Link Checker"
|
842 |
msgstr "Broken Link Checker"
|
843 |
|
844 |
-
#: core/core.php:
|
845 |
-
msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
|
846 |
-
msgstr "La cartella temporanea non é accessibile; impostane una <a href=\"%s\">differente</a>."
|
847 |
-
|
848 |
-
#: core/core.php:2759
|
849 |
-
msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
|
850 |
-
msgstr "Rendi scrivibile la cartella <code>%1$s</code> oppure imposta una <a href=\"%2$s\">cartella temporanea</a>."
|
851 |
-
|
852 |
-
#: core/core.php:2766
|
853 |
-
msgid "Broken Link Checker can't create a lockfile."
|
854 |
-
msgstr "Broken Link Checker non può creare un lockfile."
|
855 |
-
|
856 |
-
#: core/core.php:2771
|
857 |
-
msgid "The plugin uses a file-based locking mechanism to ensure that only one instance of the resource-heavy link checking algorithm is running at any given time. Unfortunately, BLC can't find a writable directory where it could store the lockfile - it failed to detect the location of your server's temporary directory, and the plugin's own directory isn't writable by PHP. To fix this problem, please make the plugin's directory writable or enter a specify a custom temporary directory in the plugin's settings."
|
858 |
-
msgstr "Questo plugin utilizza un meccanismo di locking su base-file in modo tale che una sola richiesta per volta venga inoltrata all'algoritmo per la ricerca dei link. Sfortunatamente, BLC non ha trovato una cartella scrivibile laddove poter allocare il lockfile - non é stato possibile rilevare la posizione della cartella temporanea nel server e la cartella stessa del plugin non é scrivibile via PHP. Per risolvere il problema, rendi scrivibile la cartella del plugin oppure inserisci nelle impostazioni del plugin il percorso ad una cartella temporanea personalizzata."
|
859 |
-
|
860 |
-
#: core/core.php:2790
|
861 |
msgid "PHP version"
|
862 |
msgstr "Versione PHP"
|
863 |
|
864 |
-
#: core/core.php:
|
865 |
msgid "MySQL version"
|
866 |
msgstr "Versione MySQL"
|
867 |
|
868 |
-
#: core/core.php:
|
869 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
870 |
msgstr "Hai una versione datata del CURL. Il rilevamento del reindirizzamento potrebbe non funzionare."
|
871 |
|
872 |
-
#: core/core.php:
|
873 |
-
#: core/core.php:
|
874 |
-
#: core/core.php:
|
875 |
msgid "Not installed"
|
876 |
msgstr "Non installato"
|
877 |
|
878 |
-
#: core/core.php:
|
879 |
msgid "CURL version"
|
880 |
msgstr "Versione CURL"
|
881 |
|
882 |
-
#: core/core.php:
|
883 |
msgid "Installed"
|
884 |
msgstr "Installato"
|
885 |
|
886 |
-
#: core/core.php:
|
887 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
888 |
msgstr "E' necessario che tu abbia installato il CURL oppure Snoopy affinché il plugin possa funzionare!"
|
889 |
|
890 |
-
#: core/core.php:
|
891 |
msgid "On"
|
892 |
msgstr "On"
|
893 |
|
894 |
-
#: core/core.php:
|
895 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
896 |
msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la modalità safe_mode fosse attiva."
|
897 |
|
898 |
-
#: core/core.php:
|
899 |
-
#: core/core.php:
|
900 |
msgid "Off"
|
901 |
msgstr "Off"
|
902 |
|
903 |
-
#: core/core.php:
|
904 |
msgid "On ( %s )"
|
905 |
msgstr "On ( %s )"
|
906 |
|
907 |
-
#: core/core.php:
|
908 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
909 |
msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la funzione open_basedir fosse attiva."
|
910 |
|
911 |
-
#: core/core.php:
|
912 |
-
msgid "Can't create a lockfile. Please specify a custom temporary directory."
|
913 |
-
msgstr "Non é stato possibile creare un lockfile. Specificare una cartella temporanea personalizzata."
|
914 |
-
|
915 |
-
#: core/core.php:2912
|
916 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
917 |
msgstr "Nel caso in cui questo valore fosse a zero nonostante tu abbia caricato più volte la pagina, é probabile che tu abbia rilevato un bug."
|
918 |
|
919 |
-
#: core/core.php:
|
920 |
msgid "[%s] Broken links detected"
|
921 |
msgstr "[%s] Link rotti rilevati"
|
922 |
|
923 |
-
#: core/core.php:
|
924 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
925 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
926 |
msgstr[0] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotto."
|
927 |
msgstr[1] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotti."
|
928 |
|
929 |
-
#: core/core.php:
|
930 |
msgid "Here's a list of the first %d broken links:"
|
931 |
msgid_plural "Here's a list of the first %d broken links:"
|
932 |
msgstr[0] "Ecco una lista del primo %d link rotto:"
|
933 |
msgstr[1] "Ecco una lista dei primi %d link rotti:"
|
934 |
|
935 |
-
#: core/core.php:
|
936 |
msgid "Here's a list of the new broken links: "
|
937 |
msgstr "Ecco una lista con i nuovi link rotti:"
|
938 |
|
939 |
-
#: core/core.php:
|
940 |
msgid "Link text : %s"
|
941 |
msgstr "Testo del link : %s"
|
942 |
|
943 |
-
#: core/core.php:
|
944 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
945 |
msgstr "URL del link : <a href=\"%s\">%s</a>"
|
946 |
|
947 |
-
#: core/core.php:
|
948 |
msgid "Source : %s"
|
949 |
msgstr "Sorgente : %s"
|
950 |
|
951 |
-
#: core/core.php:
|
952 |
msgid "You can see all broken links here:"
|
953 |
msgstr "Qui puoi vedere tutti i link rotti:"
|
954 |
|
@@ -1100,9 +1069,9 @@ msgstr "Avessi gradito BLC, sostieni con una donazione il suo sviluppo ed il man
|
|
1100 |
msgid "Return to WordPress Dashboard"
|
1101 |
msgstr "Ritorna alla Bacheca WordPress"
|
1102 |
|
1103 |
-
#: includes/admin/sidebar.php:
|
1104 |
-
msgid "
|
1105 |
-
msgstr "
|
1106 |
|
1107 |
#: includes/admin/options-page-js.php:54
|
1108 |
msgid "Hide debug info"
|
@@ -1321,7 +1290,7 @@ msgid "Search Results"
|
|
1321 |
msgstr "Risultati della ricerca"
|
1322 |
|
1323 |
#: includes/link-query.php:55
|
1324 |
-
#: includes/link-query.php:
|
1325 |
msgid "No links found for your query"
|
1326 |
msgstr "Nessun link trovato in relazione ai termini di ricerca"
|
1327 |
|
@@ -1383,8 +1352,8 @@ msgid_plural "%d '%s' have been deleted"
|
|
1383 |
msgstr[0] "%d '%s' é stato cancellato"
|
1384 |
msgstr[1] "%d '%s' sono stati cancellati"
|
1385 |
|
1386 |
-
#: includes/containers.php:
|
1387 |
-
#: includes/containers.php:
|
1388 |
msgid "Container type '%s' not recognized"
|
1389 |
msgstr "Container type '%s' non riconosciuto"
|
1390 |
|
@@ -1477,104 +1446,109 @@ msgstr "Video incorporati YouTube"
|
|
1477 |
|
1478 |
#: includes/extra-strings.php:9
|
1479 |
msgctxt "module name"
|
|
|
|
|
|
|
|
|
|
|
1480 |
msgid "HTML images"
|
1481 |
msgstr "HTML immagini"
|
1482 |
|
1483 |
-
#: includes/extra-strings.php:
|
1484 |
msgctxt "module name"
|
1485 |
msgid "HTML links"
|
1486 |
msgstr "HTML link"
|
1487 |
|
1488 |
-
#: includes/extra-strings.php:
|
1489 |
msgctxt "module name"
|
1490 |
msgid "MediaFire API"
|
1491 |
msgstr "API MediaFire"
|
1492 |
|
1493 |
-
#: includes/extra-strings.php:
|
1494 |
msgctxt "module name"
|
1495 |
msgid "MegaUpload API"
|
1496 |
msgstr "API MegaUpload"
|
1497 |
|
1498 |
-
#: includes/extra-strings.php:
|
1499 |
msgctxt "module name"
|
1500 |
msgid "Plaintext URLs"
|
1501 |
msgstr "URL senza formattazione "
|
1502 |
|
1503 |
-
#: includes/extra-strings.php:
|
1504 |
msgctxt "module name"
|
1505 |
msgid "RapidShare API"
|
1506 |
msgstr "API di RapidShare"
|
1507 |
|
1508 |
-
#: includes/extra-strings.php:
|
1509 |
msgctxt "module name"
|
1510 |
msgid "YouTube API"
|
1511 |
msgstr "API di YouTube"
|
1512 |
|
1513 |
-
#: includes/extra-strings.php:
|
1514 |
msgctxt "module name"
|
1515 |
msgid "Posts"
|
1516 |
msgstr "Articoli"
|
1517 |
|
1518 |
-
#: includes/extra-strings.php:
|
1519 |
msgctxt "module name"
|
1520 |
msgid "Pages"
|
1521 |
msgstr "Pagine"
|
1522 |
|
1523 |
-
#: includes/utility-class.php:
|
1524 |
msgid "%d second"
|
1525 |
msgid_plural "%d seconds"
|
1526 |
msgstr[0] "%d secondo"
|
1527 |
msgstr[1] "%d secondi"
|
1528 |
|
1529 |
-
#: includes/utility-class.php:
|
1530 |
msgid "%d second ago"
|
1531 |
msgid_plural "%d seconds ago"
|
1532 |
msgstr[0] "%d secondo fa"
|
1533 |
msgstr[1] "%d secondi fa"
|
1534 |
|
1535 |
-
#: includes/utility-class.php:
|
1536 |
msgid "%d minute"
|
1537 |
msgid_plural "%d minutes"
|
1538 |
msgstr[0] "%d minuto"
|
1539 |
msgstr[1] "%d minuti"
|
1540 |
|
1541 |
-
#: includes/utility-class.php:
|
1542 |
msgid "%d minute ago"
|
1543 |
msgid_plural "%d minutes ago"
|
1544 |
msgstr[0] "%d minuto fa"
|
1545 |
msgstr[1] "%d minuti fa"
|
1546 |
|
1547 |
-
#: includes/utility-class.php:
|
1548 |
msgid "%d hour"
|
1549 |
msgid_plural "%d hours"
|
1550 |
msgstr[0] "%d ora"
|
1551 |
msgstr[1] "%d ore"
|
1552 |
|
1553 |
-
#: includes/utility-class.php:
|
1554 |
msgid "%d hour ago"
|
1555 |
msgid_plural "%d hours ago"
|
1556 |
msgstr[0] "%d ora fa"
|
1557 |
msgstr[1] "%d ore fa"
|
1558 |
|
1559 |
-
#: includes/utility-class.php:
|
1560 |
msgid "%d day"
|
1561 |
msgid_plural "%d days"
|
1562 |
msgstr[0] "%d giorno"
|
1563 |
msgstr[1] "%d giorni"
|
1564 |
|
1565 |
-
#: includes/utility-class.php:
|
1566 |
msgid "%d day ago"
|
1567 |
msgid_plural "%d days ago"
|
1568 |
msgstr[0] "%d giorno fa"
|
1569 |
msgstr[1] "%d giorni fa"
|
1570 |
|
1571 |
-
#: includes/utility-class.php:
|
1572 |
msgid "%d month"
|
1573 |
msgid_plural "%d months"
|
1574 |
msgstr[0] "%d mese"
|
1575 |
msgstr[1] "%d mesi"
|
1576 |
|
1577 |
-
#: includes/utility-class.php:
|
1578 |
msgid "%d month ago"
|
1579 |
msgid_plural "%d months ago"
|
1580 |
msgstr[0] "%d mese fa"
|
@@ -1606,6 +1580,68 @@ msgstr "Janis Elsts"
|
|
1606 |
msgid "http://w-shadow.com/blog/"
|
1607 |
msgstr "http://w-shadow.com/blog/"
|
1608 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1609 |
#~ msgid "Upgrade to Pro to enable this feature"
|
1610 |
#~ msgstr "Aggiorna alla versione pro per attivare questa opzione"
|
1611 |
#~ msgctxt "module name"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Broken Link Checker in italiano\n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
10 |
+
"POT-Creation-Date: 2011-08-25 16:05:37+00:00\n"
|
11 |
+
"PO-Revision-Date: 2011-09-05 13:48+0100\n"
|
12 |
+
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
13 |
+
"Language-Team: Gianni Diurno | gidibao.net & charmingpress.com\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
216 |
msgid "Using Snoopy"
|
217 |
msgstr "Snoopy in uso"
|
218 |
|
219 |
+
#: modules/parsers/image.php:159
|
220 |
msgid "Image"
|
221 |
msgstr "Immagine"
|
222 |
|
224 |
msgid "Custom field"
|
225 |
msgstr "Campo personalizzato"
|
226 |
|
227 |
+
#: modules/extras/youtube-iframe.php:25
|
228 |
+
#: modules/extras/youtube-embed.php:24
|
229 |
+
msgid "YouTube Video"
|
230 |
+
msgstr "YouTube Video"
|
231 |
+
|
232 |
+
#: modules/extras/youtube-iframe.php:26
|
233 |
+
#: modules/extras/youtube-embed.php:25
|
234 |
+
msgid "Embedded YouTube video"
|
235 |
+
msgstr "Video incorporato YouTube"
|
236 |
+
|
237 |
#: modules/extras/dailymotion-embed.php:23
|
238 |
msgid "DailyMotion Video"
|
239 |
msgstr "DailyMotion Video"
|
277 |
msgid "RapidShare API error: %s"
|
278 |
msgstr "Errore API RapidShare: %s"
|
279 |
|
280 |
+
#: modules/extras/embed-parser-base.php:182
|
281 |
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
|
282 |
msgstr "I video incorporati non possono essere modificati da Broken Link Checker. Sostituisci o modifica i video manualmente."
|
283 |
|
308 |
|
309 |
#: modules/extras/youtube.php:95
|
310 |
#: modules/extras/youtube.php:122
|
|
|
311 |
msgid "OK"
|
312 |
msgstr "OK"
|
313 |
|
323 |
msgid "Unknown YouTube API response received."
|
324 |
msgstr "Risposta sconosciuta ricevuta da API YouTube."
|
325 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
#: modules/extras/megaupload.php:116
|
327 |
msgid "File Temporarily Unavailable"
|
328 |
msgstr "File temporameamente non disponibile"
|
331 |
msgid "API Error"
|
332 |
msgstr "Errore API"
|
333 |
|
334 |
+
#: core/init.php:230
|
335 |
msgid "Once Weekly"
|
336 |
msgstr "Una volta alla settimana"
|
337 |
|
338 |
+
#: core/init.php:236
|
339 |
msgid "Twice a Month"
|
340 |
msgstr "Due volte al mese"
|
341 |
|
342 |
+
#: core/init.php:305
|
343 |
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
|
344 |
msgstr "L'installazione di Broken Link Checker é fallita. Prova a disattivare quindi, riattivare il plugin."
|
345 |
|
346 |
+
#: core/core.php:146
|
347 |
#: includes/admin/links-page-js.php:37
|
348 |
msgid "Loading..."
|
349 |
msgstr "In carica..."
|
350 |
|
351 |
+
#: core/core.php:170
|
352 |
#: includes/admin/options-page-js.php:18
|
353 |
msgid "[ Network error ]"
|
354 |
msgstr "[ Network error ]"
|
355 |
|
356 |
+
#: core/core.php:195
|
357 |
msgid "Automatically expand the widget if broken links have been detected"
|
358 |
msgstr "Espandi in automatico il widget qualora un link rotto fosse stato rilevato"
|
359 |
|
360 |
+
#: core/core.php:317
|
361 |
msgid "Link Checker Settings"
|
362 |
msgstr "Impostazioni Link Checker"
|
363 |
|
364 |
+
#: core/core.php:318
|
365 |
msgid "Link Checker"
|
366 |
msgstr "Link Checker"
|
367 |
|
368 |
+
#: core/core.php:323
|
369 |
#: includes/link-query.php:26
|
370 |
msgid "Broken Links"
|
371 |
msgstr "Link rotti"
|
372 |
|
373 |
+
#: core/core.php:339
|
374 |
msgid "View Broken Links"
|
375 |
msgstr "Visualizza i link rotti"
|
376 |
|
377 |
+
#: core/core.php:354
|
378 |
msgid "Feedback"
|
379 |
msgstr "Feedback"
|
380 |
|
381 |
+
#: core/core.php:366
|
382 |
msgid "Go to Settings"
|
383 |
msgstr "Vai alle impostazioni"
|
384 |
|
385 |
+
#: core/core.php:373
|
386 |
msgid "Go to Broken Links"
|
387 |
msgstr "Vai ai link rotti"
|
388 |
|
389 |
+
#: core/core.php:402
|
390 |
msgid "Settings"
|
391 |
msgstr "Impostazioni"
|
392 |
|
393 |
+
#: core/core.php:414
|
394 |
+
#: core/core.php:1182
|
395 |
msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
|
396 |
msgstr "Errore: le tabelle del database di questo plugin non sono aggiornate! (versione in uso : %d, attesa : %d)"
|
397 |
|
398 |
+
#: core/core.php:418
|
399 |
+
#: core/core.php:1186
|
400 |
+
msgid "Try deactivating and then reactivating the plugin."
|
401 |
+
msgstr "Prova a disattivare quindi, riattivare il plugin."
|
402 |
+
|
403 |
+
#: core/core.php:551
|
404 |
msgid "Settings saved."
|
405 |
msgstr "Le impostazioni sono state salvate."
|
406 |
|
407 |
+
#: core/core.php:557
|
408 |
msgid "Thank you for your donation!"
|
409 |
msgstr "Grazie per la tua donazione!"
|
410 |
|
411 |
+
#: core/core.php:564
|
412 |
msgid "Complete site recheck started."
|
413 |
msgstr "E' in atto la nuova verifica completa per il sito."
|
414 |
|
415 |
+
#: core/core.php:573
|
|
|
416 |
msgid "Details"
|
417 |
msgstr "Dettagli"
|
418 |
|
419 |
+
#: core/core.php:587
|
420 |
msgid "General"
|
421 |
msgstr "Generale"
|
422 |
|
423 |
+
#: core/core.php:588
|
424 |
msgid "Look For Links In"
|
425 |
msgstr "Cerca i link in"
|
426 |
|
427 |
+
#: core/core.php:589
|
428 |
msgid "Which Links To Check"
|
429 |
msgstr "Quali link controllare"
|
430 |
|
431 |
+
#: core/core.php:590
|
432 |
msgid "Protocols & APIs"
|
433 |
msgstr "Protocolli & API"
|
434 |
|
435 |
+
#: core/core.php:591
|
436 |
msgid "Advanced"
|
437 |
msgstr "Avanzate"
|
438 |
|
439 |
+
#: core/core.php:606
|
440 |
msgid "Broken Link Checker Options"
|
441 |
msgstr "Opzioni Broken Link Checker"
|
442 |
|
443 |
+
#: core/core.php:648
|
444 |
#: includes/admin/table-printer.php:168
|
445 |
msgid "Status"
|
446 |
msgstr "Stato"
|
447 |
|
448 |
+
#: core/core.php:650
|
449 |
#: includes/admin/options-page-js.php:56
|
450 |
msgid "Show debug info"
|
451 |
msgstr "Mostra info debug"
|
452 |
|
453 |
+
#: core/core.php:678
|
454 |
msgid "Check each link"
|
455 |
msgstr "Controlla i link"
|
456 |
|
457 |
+
#: core/core.php:683
|
458 |
msgid "Every %s hours"
|
459 |
msgstr "Ogni %s ore"
|
460 |
|
461 |
+
#: core/core.php:692
|
462 |
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
|
463 |
msgstr "I link già esistenti verranno controllati con questa frequenza i nuovi, lo saranno a breve."
|
464 |
|
465 |
+
#: core/core.php:699
|
466 |
msgid "E-mail notifications"
|
467 |
msgstr "Notifiche email"
|
468 |
|
469 |
+
#: core/core.php:705
|
470 |
msgid "Send me e-mail notifications about newly detected broken links"
|
471 |
msgstr "Inviami una email di notifica al rilevamento di un nuovo link rotto"
|
472 |
|
473 |
+
#: core/core.php:712
|
474 |
msgid "Link tweaks"
|
475 |
msgstr "Link tweaks"
|
476 |
|
477 |
+
#: core/core.php:718
|
478 |
msgid "Apply custom formatting to broken links"
|
479 |
msgstr "Applica formattazione personalizzata ai link rotti"
|
480 |
|
481 |
+
#: core/core.php:722
|
482 |
+
#: core/core.php:750
|
483 |
msgid "Edit CSS"
|
484 |
msgstr "Modifica CSS"
|
485 |
|
486 |
+
#: core/core.php:746
|
487 |
msgid "Apply custom formatting to removed links"
|
488 |
msgstr "Applica la formattazione personalizzata ai link rimossi"
|
489 |
|
490 |
+
#: core/core.php:774
|
491 |
msgid "Stop search engines from following broken links"
|
492 |
msgstr "Blocca i motori di ricerca per i seguenti link"
|
493 |
|
494 |
+
#: core/core.php:791
|
495 |
msgid "Look for links in"
|
496 |
msgstr "Cerca i links in"
|
497 |
|
498 |
+
#: core/core.php:802
|
499 |
msgid "Post statuses"
|
500 |
msgstr "Stati articolo"
|
501 |
|
502 |
+
#: core/core.php:835
|
503 |
msgid "Link types"
|
504 |
msgstr "Tipo di link"
|
505 |
|
506 |
+
#: core/core.php:841
|
507 |
msgid "Error : All link parsers missing!"
|
508 |
msgstr "Errore : manca l'analisi di tutti i link!"
|
509 |
|
510 |
+
#: core/core.php:848
|
511 |
msgid "Exclusion list"
|
512 |
msgstr "Lista estromessi"
|
513 |
|
514 |
+
#: core/core.php:849
|
515 |
msgid "Don't check links where the URL contains any of these words (one per line) :"
|
516 |
msgstr "Non controllare gli URL che contengono queste parole (una per riga):"
|
517 |
|
518 |
+
#: core/core.php:867
|
519 |
msgid "Check links using"
|
520 |
msgstr "Controlla utilizzo link"
|
521 |
|
522 |
+
#: core/core.php:886
|
523 |
#: includes/links.php:849
|
524 |
msgid "Timeout"
|
525 |
msgstr "Timeout"
|
526 |
|
527 |
+
#: core/core.php:892
|
528 |
+
#: core/core.php:938
|
529 |
+
#: core/core.php:2743
|
530 |
msgid "%s seconds"
|
531 |
msgstr "%s secondi"
|
532 |
|
533 |
+
#: core/core.php:901
|
534 |
msgid "Links that take longer than this to load will be marked as broken."
|
535 |
msgstr "I link che impiegheranno un maggior tempo per essere caricati verranno considerati come rotti."
|
536 |
|
537 |
+
#: core/core.php:908
|
538 |
msgid "Link monitor"
|
539 |
msgstr "Monitoraggio link"
|
540 |
|
541 |
+
#: core/core.php:916
|
542 |
msgid "Run continuously while the Dashboard is open"
|
543 |
msgstr "Funzionamento continuo durante il periodo di login"
|
544 |
|
545 |
+
#: core/core.php:924
|
546 |
msgid "Run hourly in the background"
|
547 |
msgstr "Funzionamento in background ogni ora"
|
548 |
|
549 |
+
#: core/core.php:932
|
550 |
msgid "Max. execution time"
|
551 |
msgstr "Tempo max. operazione"
|
552 |
|
553 |
+
#: core/core.php:949
|
554 |
msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
|
555 |
msgstr "Questo plugin opera grazie ad una richiesta periodica che lavora in background atta al rilevamento dei link contenuti nei post alla ricerca degli URL nonché compie delle operazioni che richiedono del tempo. Qui puoi impostare il tempo massimo di durata per la richiesta in background prima che essa termini."
|
556 |
|
557 |
+
#: core/core.php:958
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
558 |
msgid "Server load limit"
|
559 |
msgstr "Limite server load"
|
560 |
|
561 |
+
#: core/core.php:973
|
562 |
msgid "Current load : %s"
|
563 |
msgstr "In caricamento : %s"
|
564 |
|
565 |
+
#: core/core.php:978
|
566 |
msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
|
567 |
msgstr "La verifica dei link sarà sospesa nel caso in cui il valore di media del <a href=\"%s\">server load</a> superasse questo numero. Lascia in bianco per disattivare il limite di caricamento."
|
568 |
|
569 |
+
#: core/core.php:987
|
570 |
msgid "Not available"
|
571 |
msgstr "Non disponibile"
|
572 |
|
573 |
+
#: core/core.php:989
|
574 |
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
|
575 |
msgstr "Il limite di caricamento funziona solamente per i sistemi Linux-like laddove la funzione <code>/proc/loadavg</code> sia presente ed accessibile."
|
576 |
|
577 |
+
#: core/core.php:997
|
578 |
msgid "Forced recheck"
|
579 |
msgstr "Imponi nuova verifica"
|
580 |
|
581 |
+
#: core/core.php:1000
|
582 |
msgid "Re-check all pages"
|
583 |
msgstr "Ricontrolla tutte le pagine"
|
584 |
|
585 |
+
#: core/core.php:1004
|
586 |
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
|
587 |
msgstr "La \"Opzione atomica\". Clicca questo pulsante per fare sì che il plugin svuoti i link nel database ed effettui da zero un controllo del sito."
|
588 |
|
589 |
+
#: core/core.php:1015
|
590 |
msgid "Save Changes"
|
591 |
msgstr "Salva le modifiche"
|
592 |
|
593 |
+
#: core/core.php:1066
|
594 |
msgid "Configure"
|
595 |
msgstr "Configura"
|
596 |
|
597 |
+
#: core/core.php:1148
|
598 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
599 |
msgstr "Controlla gli URL inseriti in questi campi personalizzati (uno per riga):"
|
600 |
|
601 |
+
#: core/core.php:1283
|
602 |
+
#: core/core.php:1364
|
603 |
+
#: core/core.php:1396
|
604 |
msgid "Database error : %s"
|
605 |
msgstr "Errore database : %s"
|
606 |
|
607 |
+
#: core/core.php:1346
|
608 |
msgid "You must enter a filter name!"
|
609 |
msgstr "Deve essere inserito un nome del filtro!"
|
610 |
|
611 |
+
#: core/core.php:1350
|
612 |
msgid "Invalid search query."
|
613 |
msgstr "Termine di ricerca non valido."
|
614 |
|
615 |
+
#: core/core.php:1359
|
616 |
msgid "Filter \"%s\" created"
|
617 |
msgstr "E' stato creato il filtro \"%s\""
|
618 |
|
619 |
+
#: core/core.php:1386
|
620 |
msgid "Filter ID not specified."
|
621 |
msgstr "ID filtro non specificato."
|
622 |
|
623 |
+
#: core/core.php:1393
|
624 |
msgid "Filter deleted"
|
625 |
msgstr "Il filtro é stato cancellato"
|
626 |
|
627 |
+
#: core/core.php:1440
|
628 |
msgid "Replaced %d redirect with a direct link"
|
629 |
msgid_plural "Replaced %d redirects with direct links"
|
630 |
msgstr[0] "Sostituito %d reindirizzamento con un link diretto"
|
631 |
msgstr[1] "Sostituiti %d reindirizzamenti con dei link diretti"
|
632 |
|
633 |
+
#: core/core.php:1451
|
634 |
msgid "Failed to fix %d redirect"
|
635 |
msgid_plural "Failed to fix %d redirects"
|
636 |
msgstr[0] "Impossibile correggere il reindirizzamento per %d"
|
637 |
msgstr[1] "Impossibile correggere i reindirizzamenti per %d"
|
638 |
|
639 |
+
#: core/core.php:1462
|
640 |
msgid "None of the selected links are redirects!"
|
641 |
msgstr "Nessuno dei link selezionati é reindirizzato!"
|
642 |
|
643 |
+
#: core/core.php:1540
|
644 |
msgid "%d link updated."
|
645 |
msgid_plural "%d links updated."
|
646 |
msgstr[0] "%d link aggiornato."
|
647 |
msgstr[1] "%d link aggiornati."
|
648 |
|
649 |
+
#: core/core.php:1551
|
650 |
msgid "Failed to update %d link."
|
651 |
msgid_plural "Failed to update %d links."
|
652 |
msgstr[0] "Impossibile aggiornare il link %d"
|
653 |
msgstr[1] "Impossibile aggiornare i link %d"
|
654 |
|
655 |
+
#: core/core.php:1605
|
656 |
msgid "%d link removed"
|
657 |
msgid_plural "%d links removed"
|
658 |
msgstr[0] "%d il link é stato rimosso"
|
659 |
msgstr[1] "%d i link sono stati rimossi"
|
660 |
|
661 |
+
#: core/core.php:1616
|
662 |
msgid "Failed to remove %d link"
|
663 |
msgid_plural "Failed to remove %d links"
|
664 |
msgstr[0] "Impossibile rimuovere il link %d"
|
665 |
msgstr[1] "Impossibile rimuovere i link %d"
|
666 |
|
667 |
+
#: core/core.php:1725
|
668 |
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
|
669 |
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
|
670 |
msgstr[0] "%d l'elemento é stato saltato poiché non potrà essere spostato nel cestino. Dovrai cancellarlo manualmente."
|
671 |
msgstr[1] "%d gli elementi sono stati saltati poiché non potranno essere spostati nel cestino. Dovrai cancellarli manualmente."
|
672 |
|
673 |
+
#: core/core.php:1747
|
674 |
msgid "Didn't find anything to delete!"
|
675 |
msgstr "Nulla da cancellare!"
|
676 |
|
677 |
+
#: core/core.php:1774
|
678 |
msgid "%d link scheduled for rechecking"
|
679 |
msgid_plural "%d links scheduled for rechecking"
|
680 |
msgstr[0] "%d link in verifica programmata"
|
681 |
msgstr[1] "%d link in verifica programmata"
|
682 |
|
683 |
+
#: core/core.php:1820
|
684 |
+
#: core/core.php:2424
|
685 |
msgid "This link was manually marked as working by the user."
|
686 |
msgstr "L'utente ha segnalato manualmente che questo link é funzionante."
|
687 |
|
688 |
+
#: core/core.php:1827
|
689 |
msgid "Couldn't modify link %d"
|
690 |
msgstr "Non é possibile modificare il link %d"
|
691 |
|
692 |
+
#: core/core.php:1837
|
693 |
msgid "%d link marked as not broken"
|
694 |
msgid_plural "%d links marked as not broken"
|
695 |
msgstr[0] "%d link segnato come funzionante"
|
696 |
msgstr[1] "%d link segnati come funzionanti"
|
697 |
|
698 |
+
#: core/core.php:1877
|
699 |
msgid "Table columns"
|
700 |
msgstr "Colonne tabella"
|
701 |
|
702 |
+
#: core/core.php:1896
|
703 |
msgid "Show on screen"
|
704 |
msgstr "Mostra sullo schermo"
|
705 |
|
706 |
+
#: core/core.php:1903
|
707 |
msgid "links"
|
708 |
msgstr "link"
|
709 |
|
710 |
+
#: core/core.php:1904
|
711 |
#: includes/admin/table-printer.php:136
|
712 |
msgid "Apply"
|
713 |
msgstr "Applica"
|
714 |
|
715 |
+
#: core/core.php:1908
|
716 |
msgid "Misc"
|
717 |
msgstr "Varie"
|
718 |
|
719 |
+
#: core/core.php:1923
|
720 |
msgid "Highlight links broken for at least %s days"
|
721 |
msgstr "Evidenzia i link rotti per gli ultimi %s giorni"
|
722 |
|
723 |
+
#: core/core.php:1932
|
724 |
msgid "Color-code status codes"
|
725 |
msgstr "Codici stato codice-colore"
|
726 |
|
727 |
+
#: core/core.php:1949
|
728 |
+
#: core/core.php:2409
|
729 |
+
#: core/core.php:2445
|
730 |
+
#: core/core.php:2508
|
731 |
msgid "You're not allowed to do that!"
|
732 |
msgstr "Non hai il permesso per farlo!"
|
733 |
|
734 |
+
#: core/core.php:2290
|
735 |
msgid "View broken links"
|
736 |
msgstr "Visualizza i link rotti"
|
737 |
|
738 |
+
#: core/core.php:2291
|
739 |
msgid "Found %d broken link"
|
740 |
msgid_plural "Found %d broken links"
|
741 |
msgstr[0] "E' stato trovato %d link rotto"
|
742 |
msgstr[1] "Sono stati trovati %d link rotti"
|
743 |
|
744 |
+
#: core/core.php:2297
|
745 |
msgid "No broken links found."
|
746 |
msgstr "Non é stato trovato alcun link rotto."
|
747 |
|
748 |
+
#: core/core.php:2304
|
749 |
msgid "%d URL in the work queue"
|
750 |
msgid_plural "%d URLs in the work queue"
|
751 |
msgstr[0] "%d URL in coda di elaborazione"
|
752 |
msgstr[1] "%d URL in coda di elaborazione"
|
753 |
|
754 |
+
#: core/core.php:2307
|
755 |
msgid "No URLs in the work queue."
|
756 |
msgstr "Nessun URL in coda di elaborazione."
|
757 |
|
758 |
+
#: core/core.php:2313
|
759 |
msgid "Detected %d unique URL"
|
760 |
msgid_plural "Detected %d unique URLs"
|
761 |
msgstr[0] "E' stato rilevato %d URL unico"
|
762 |
msgstr[1] "Sono stati rilevati %d URL unici"
|
763 |
|
764 |
+
#: core/core.php:2314
|
765 |
msgid "in %d link"
|
766 |
msgid_plural "in %d links"
|
767 |
msgstr[0] "in %d link"
|
768 |
msgstr[1] "in %d link"
|
769 |
|
770 |
+
#: core/core.php:2319
|
771 |
msgid "and still searching..."
|
772 |
msgstr "ricerca in corso..."
|
773 |
|
774 |
+
#: core/core.php:2325
|
775 |
msgid "Searching your blog for links..."
|
776 |
msgstr "Ricerca dei link in corso..."
|
777 |
|
778 |
+
#: core/core.php:2327
|
779 |
msgid "No links detected."
|
780 |
msgstr "Nessun link é stato rilevato."
|
781 |
|
782 |
+
#: core/core.php:2353
|
783 |
msgctxt "current load"
|
784 |
msgid "Unknown"
|
785 |
msgstr "Sconosciuto"
|
786 |
|
787 |
+
#: core/core.php:2417
|
788 |
+
#: core/core.php:2455
|
789 |
+
#: core/core.php:2518
|
790 |
msgid "Oops, I can't find the link %d"
|
791 |
msgstr "Oops, non é possibile trovare il link %d"
|
792 |
|
793 |
+
#: core/core.php:2430
|
794 |
msgid "Oops, couldn't modify the link!"
|
795 |
msgstr "Oops, non é possibile modificare il link!"
|
796 |
|
797 |
+
#: core/core.php:2433
|
798 |
+
#: core/core.php:2544
|
799 |
msgid "Error : link_id not specified"
|
800 |
msgstr "Errore : non é stata specificata la link_id"
|
801 |
|
802 |
+
#: core/core.php:2465
|
803 |
msgid "Oops, the new URL is invalid!"
|
804 |
msgstr "Oops, il nuovo URL non é valido!"
|
805 |
|
806 |
+
#: core/core.php:2476
|
807 |
+
#: core/core.php:2527
|
808 |
msgid "An unexpected error occured!"
|
809 |
msgstr "Si é verificato un errore inatteso!"
|
810 |
|
811 |
+
#: core/core.php:2494
|
812 |
msgid "Error : link_id or new_url not specified"
|
813 |
msgstr "Errore : non é stata specificata la link_id oppure il new_url"
|
814 |
|
815 |
+
#: core/core.php:2553
|
816 |
msgid "You don't have sufficient privileges to access this information!"
|
817 |
msgstr "Non hai i permessi necessari per poter accedere a questa informazione!"
|
818 |
|
819 |
+
#: core/core.php:2566
|
820 |
msgid "Error : link ID not specified"
|
821 |
msgstr "Errore : La ID del link non é stata specificata"
|
822 |
|
823 |
+
#: core/core.php:2580
|
824 |
msgid "Failed to load link details (%s)"
|
825 |
msgstr "Non é stato possibile caricare i dettagli sul link (%s)"
|
826 |
|
827 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.3.1) #-#-#-#-#
|
828 |
#. Plugin Name of the plugin/theme
|
829 |
+
#: core/core.php:2633
|
830 |
msgid "Broken Link Checker"
|
831 |
msgstr "Broken Link Checker"
|
832 |
|
833 |
+
#: core/core.php:2652
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
834 |
msgid "PHP version"
|
835 |
msgstr "Versione PHP"
|
836 |
|
837 |
+
#: core/core.php:2658
|
838 |
msgid "MySQL version"
|
839 |
msgstr "Versione MySQL"
|
840 |
|
841 |
+
#: core/core.php:2671
|
842 |
msgid "You have an old version of CURL. Redirect detection may not work properly."
|
843 |
msgstr "Hai una versione datata del CURL. Il rilevamento del reindirizzamento potrebbe non funzionare."
|
844 |
|
845 |
+
#: core/core.php:2683
|
846 |
+
#: core/core.php:2699
|
847 |
+
#: core/core.php:2704
|
848 |
msgid "Not installed"
|
849 |
msgstr "Non installato"
|
850 |
|
851 |
+
#: core/core.php:2686
|
852 |
msgid "CURL version"
|
853 |
msgstr "Versione CURL"
|
854 |
|
855 |
+
#: core/core.php:2692
|
856 |
msgid "Installed"
|
857 |
msgstr "Installato"
|
858 |
|
859 |
+
#: core/core.php:2705
|
860 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
861 |
msgstr "E' necessario che tu abbia installato il CURL oppure Snoopy affinché il plugin possa funzionare!"
|
862 |
|
863 |
+
#: core/core.php:2716
|
864 |
msgid "On"
|
865 |
msgstr "On"
|
866 |
|
867 |
+
#: core/core.php:2717
|
868 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
869 |
msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la modalità safe_mode fosse attiva."
|
870 |
|
871 |
+
#: core/core.php:2722
|
872 |
+
#: core/core.php:2736
|
873 |
msgid "Off"
|
874 |
msgstr "Off"
|
875 |
|
876 |
+
#: core/core.php:2730
|
877 |
msgid "On ( %s )"
|
878 |
msgstr "On ( %s )"
|
879 |
|
880 |
+
#: core/core.php:2731
|
881 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
882 |
msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la funzione open_basedir fosse attiva."
|
883 |
|
884 |
+
#: core/core.php:2760
|
|
|
|
|
|
|
|
|
885 |
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
|
886 |
msgstr "Nel caso in cui questo valore fosse a zero nonostante tu abbia caricato più volte la pagina, é probabile che tu abbia rilevato un bug."
|
887 |
|
888 |
+
#: core/core.php:2831
|
889 |
msgid "[%s] Broken links detected"
|
890 |
msgstr "[%s] Link rotti rilevati"
|
891 |
|
892 |
+
#: core/core.php:2836
|
893 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
894 |
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
|
895 |
msgstr[0] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotto."
|
896 |
msgstr[1] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotti."
|
897 |
|
898 |
+
#: core/core.php:2851
|
899 |
msgid "Here's a list of the first %d broken links:"
|
900 |
msgid_plural "Here's a list of the first %d broken links:"
|
901 |
msgstr[0] "Ecco una lista del primo %d link rotto:"
|
902 |
msgstr[1] "Ecco una lista dei primi %d link rotti:"
|
903 |
|
904 |
+
#: core/core.php:2860
|
905 |
msgid "Here's a list of the new broken links: "
|
906 |
msgstr "Ecco una lista con i nuovi link rotti:"
|
907 |
|
908 |
+
#: core/core.php:2872
|
909 |
msgid "Link text : %s"
|
910 |
msgstr "Testo del link : %s"
|
911 |
|
912 |
+
#: core/core.php:2873
|
913 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
914 |
msgstr "URL del link : <a href=\"%s\">%s</a>"
|
915 |
|
916 |
+
#: core/core.php:2874
|
917 |
msgid "Source : %s"
|
918 |
msgstr "Sorgente : %s"
|
919 |
|
920 |
+
#: core/core.php:2888
|
921 |
msgid "You can see all broken links here:"
|
922 |
msgstr "Qui puoi vedere tutti i link rotti:"
|
923 |
|
1069 |
msgid "Return to WordPress Dashboard"
|
1070 |
msgstr "Ritorna alla Bacheca WordPress"
|
1071 |
|
1072 |
+
#: includes/admin/sidebar.php:50
|
1073 |
+
msgid "More plugins by Janis Elsts"
|
1074 |
+
msgstr "Altri plugin da Janis Elsts"
|
1075 |
|
1076 |
#: includes/admin/options-page-js.php:54
|
1077 |
msgid "Hide debug info"
|
1290 |
msgstr "Risultati della ricerca"
|
1291 |
|
1292 |
#: includes/link-query.php:55
|
1293 |
+
#: includes/link-query.php:102
|
1294 |
msgid "No links found for your query"
|
1295 |
msgstr "Nessun link trovato in relazione ai termini di ricerca"
|
1296 |
|
1352 |
msgstr[0] "%d '%s' é stato cancellato"
|
1353 |
msgstr[1] "%d '%s' sono stati cancellati"
|
1354 |
|
1355 |
+
#: includes/containers.php:873
|
1356 |
+
#: includes/containers.php:891
|
1357 |
msgid "Container type '%s' not recognized"
|
1358 |
msgstr "Container type '%s' non riconosciuto"
|
1359 |
|
1446 |
|
1447 |
#: includes/extra-strings.php:9
|
1448 |
msgctxt "module name"
|
1449 |
+
msgid "Embedded YouTube videos (old embed code)"
|
1450 |
+
msgstr "Video incorporati YouTube (vecchio codice embed)"
|
1451 |
+
|
1452 |
+
#: includes/extra-strings.php:10
|
1453 |
+
msgctxt "module name"
|
1454 |
msgid "HTML images"
|
1455 |
msgstr "HTML immagini"
|
1456 |
|
1457 |
+
#: includes/extra-strings.php:11
|
1458 |
msgctxt "module name"
|
1459 |
msgid "HTML links"
|
1460 |
msgstr "HTML link"
|
1461 |
|
1462 |
+
#: includes/extra-strings.php:12
|
1463 |
msgctxt "module name"
|
1464 |
msgid "MediaFire API"
|
1465 |
msgstr "API MediaFire"
|
1466 |
|
1467 |
+
#: includes/extra-strings.php:13
|
1468 |
msgctxt "module name"
|
1469 |
msgid "MegaUpload API"
|
1470 |
msgstr "API MegaUpload"
|
1471 |
|
1472 |
+
#: includes/extra-strings.php:14
|
1473 |
msgctxt "module name"
|
1474 |
msgid "Plaintext URLs"
|
1475 |
msgstr "URL senza formattazione "
|
1476 |
|
1477 |
+
#: includes/extra-strings.php:15
|
1478 |
msgctxt "module name"
|
1479 |
msgid "RapidShare API"
|
1480 |
msgstr "API di RapidShare"
|
1481 |
|
1482 |
+
#: includes/extra-strings.php:16
|
1483 |
msgctxt "module name"
|
1484 |
msgid "YouTube API"
|
1485 |
msgstr "API di YouTube"
|
1486 |
|
1487 |
+
#: includes/extra-strings.php:17
|
1488 |
msgctxt "module name"
|
1489 |
msgid "Posts"
|
1490 |
msgstr "Articoli"
|
1491 |
|
1492 |
+
#: includes/extra-strings.php:18
|
1493 |
msgctxt "module name"
|
1494 |
msgid "Pages"
|
1495 |
msgstr "Pagine"
|
1496 |
|
1497 |
+
#: includes/utility-class.php:244
|
1498 |
msgid "%d second"
|
1499 |
msgid_plural "%d seconds"
|
1500 |
msgstr[0] "%d secondo"
|
1501 |
msgstr[1] "%d secondi"
|
1502 |
|
1503 |
+
#: includes/utility-class.php:245
|
1504 |
msgid "%d second ago"
|
1505 |
msgid_plural "%d seconds ago"
|
1506 |
msgstr[0] "%d secondo fa"
|
1507 |
msgstr[1] "%d secondi fa"
|
1508 |
|
1509 |
+
#: includes/utility-class.php:248
|
1510 |
msgid "%d minute"
|
1511 |
msgid_plural "%d minutes"
|
1512 |
msgstr[0] "%d minuto"
|
1513 |
msgstr[1] "%d minuti"
|
1514 |
|
1515 |
+
#: includes/utility-class.php:249
|
1516 |
msgid "%d minute ago"
|
1517 |
msgid_plural "%d minutes ago"
|
1518 |
msgstr[0] "%d minuto fa"
|
1519 |
msgstr[1] "%d minuti fa"
|
1520 |
|
1521 |
+
#: includes/utility-class.php:252
|
1522 |
msgid "%d hour"
|
1523 |
msgid_plural "%d hours"
|
1524 |
msgstr[0] "%d ora"
|
1525 |
msgstr[1] "%d ore"
|
1526 |
|
1527 |
+
#: includes/utility-class.php:253
|
1528 |
msgid "%d hour ago"
|
1529 |
msgid_plural "%d hours ago"
|
1530 |
msgstr[0] "%d ora fa"
|
1531 |
msgstr[1] "%d ore fa"
|
1532 |
|
1533 |
+
#: includes/utility-class.php:256
|
1534 |
msgid "%d day"
|
1535 |
msgid_plural "%d days"
|
1536 |
msgstr[0] "%d giorno"
|
1537 |
msgstr[1] "%d giorni"
|
1538 |
|
1539 |
+
#: includes/utility-class.php:257
|
1540 |
msgid "%d day ago"
|
1541 |
msgid_plural "%d days ago"
|
1542 |
msgstr[0] "%d giorno fa"
|
1543 |
msgstr[1] "%d giorni fa"
|
1544 |
|
1545 |
+
#: includes/utility-class.php:260
|
1546 |
msgid "%d month"
|
1547 |
msgid_plural "%d months"
|
1548 |
msgstr[0] "%d mese"
|
1549 |
msgstr[1] "%d mesi"
|
1550 |
|
1551 |
+
#: includes/utility-class.php:261
|
1552 |
msgid "%d month ago"
|
1553 |
msgid_plural "%d months ago"
|
1554 |
msgstr[0] "%d mese fa"
|
1580 |
msgid "http://w-shadow.com/blog/"
|
1581 |
msgstr "http://w-shadow.com/blog/"
|
1582 |
|
1583 |
+
#~ msgid "Custom temporary directory"
|
1584 |
+
#~ msgstr "Cartella temporanea personalizzata:"
|
1585 |
+
|
1586 |
+
#~ msgid "Error : This directory isn't writable by PHP."
|
1587 |
+
#~ msgstr "Errore : questa cartella non é scrivibile via PHP."
|
1588 |
+
|
1589 |
+
#~ msgid "Error : This directory doesn't exist."
|
1590 |
+
#~ msgstr "Errore : questa cartella non esiste."
|
1591 |
+
|
1592 |
+
#~ msgid ""
|
1593 |
+
#~ "Set this field if you want the plugin to use a custom directory for its "
|
1594 |
+
#~ "lockfiles. Otherwise, leave it blank."
|
1595 |
+
#~ msgstr ""
|
1596 |
+
#~ "Compila questo campo qualora gradissi che il plugin faccia uso di una "
|
1597 |
+
#~ "cartella personalizzata per i lockfile diversamente, lascia in bianco."
|
1598 |
+
|
1599 |
+
#~ msgid ""
|
1600 |
+
#~ "The current temporary directory is not accessible; please <a href=\"%s"
|
1601 |
+
#~ "\">set a different one</a>."
|
1602 |
+
#~ msgstr ""
|
1603 |
+
#~ "La cartella temporanea non é accessibile; impostane una <a href=\"%s"
|
1604 |
+
#~ "\">differente</a>."
|
1605 |
+
|
1606 |
+
#~ msgid ""
|
1607 |
+
#~ "Please make the directory <code>%1$s</code> writable by plugins or <a "
|
1608 |
+
#~ "href=\"%2$s\">set a custom temporary directory</a>."
|
1609 |
+
#~ msgstr ""
|
1610 |
+
#~ "Rendi scrivibile la cartella <code>%1$s</code> oppure imposta una <a href="
|
1611 |
+
#~ "\"%2$s\">cartella temporanea</a>."
|
1612 |
+
|
1613 |
+
#~ msgid "Broken Link Checker can't create a lockfile."
|
1614 |
+
#~ msgstr "Broken Link Checker non può creare un lockfile."
|
1615 |
+
|
1616 |
+
#~ msgid ""
|
1617 |
+
#~ "The plugin uses a file-based locking mechanism to ensure that only one "
|
1618 |
+
#~ "instance of the resource-heavy link checking algorithm is running at any "
|
1619 |
+
#~ "given time. Unfortunately, BLC can't find a writable directory where it "
|
1620 |
+
#~ "could store the lockfile - it failed to detect the location of your "
|
1621 |
+
#~ "server's temporary directory, and the plugin's own directory isn't "
|
1622 |
+
#~ "writable by PHP. To fix this problem, please make the plugin's directory "
|
1623 |
+
#~ "writable or enter a specify a custom temporary directory in the plugin's "
|
1624 |
+
#~ "settings."
|
1625 |
+
#~ msgstr ""
|
1626 |
+
#~ "Questo plugin utilizza un meccanismo di locking su base-file in modo tale "
|
1627 |
+
#~ "che una sola richiesta per volta venga inoltrata all'algoritmo per la "
|
1628 |
+
#~ "ricerca dei link. Sfortunatamente, BLC non ha trovato una cartella "
|
1629 |
+
#~ "scrivibile laddove poter allocare il lockfile - non é stato possibile "
|
1630 |
+
#~ "rilevare la posizione della cartella temporanea nel server e la cartella "
|
1631 |
+
#~ "stessa del plugin non é scrivibile via PHP. Per risolvere il problema, "
|
1632 |
+
#~ "rendi scrivibile la cartella del plugin oppure inserisci nelle "
|
1633 |
+
#~ "impostazioni del plugin il percorso ad una cartella temporanea "
|
1634 |
+
#~ "personalizzata."
|
1635 |
+
|
1636 |
+
#~ msgid ""
|
1637 |
+
#~ "Can't create a lockfile. Please specify a custom temporary directory."
|
1638 |
+
#~ msgstr ""
|
1639 |
+
#~ "Non é stato possibile creare un lockfile. Specificare una cartella "
|
1640 |
+
#~ "temporanea personalizzata."
|
1641 |
+
|
1642 |
+
#~ msgid "Recommended"
|
1643 |
+
#~ msgstr "Raccomandato"
|
1644 |
+
|
1645 |
#~ msgid "Upgrade to Pro to enable this feature"
|
1646 |
#~ msgstr "Aggiorna alla versione pro per attivare questa opzione"
|
1647 |
#~ msgctxt "module name"
|
languages/broken-link-checker.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Broken Link Checker package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Broken Link Checker 1.3\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
7 |
-
"POT-Creation-Date: 2011-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,45 +12,8 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: modules/
|
16 |
-
msgid "
|
17 |
-
msgstr ""
|
18 |
-
|
19 |
-
#: modules/checkers/http.php:257
|
20 |
-
msgid "Connection Failed"
|
21 |
-
msgstr ""
|
22 |
-
|
23 |
-
#: modules/checkers/http.php:263 modules/extras/mediafire.php:96
|
24 |
-
#: includes/links.php:845
|
25 |
-
msgid "Unknown Error"
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: modules/checkers/http.php:292 modules/checkers/http.php:362
|
29 |
-
msgid "HTTP code : %d"
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: modules/checkers/http.php:294 modules/checkers/http.php:364
|
33 |
-
msgid "(No response)"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: modules/checkers/http.php:300
|
37 |
-
msgid "Most likely the connection timed out or the domain doesn't exist."
|
38 |
-
msgstr ""
|
39 |
-
|
40 |
-
#: modules/checkers/http.php:371
|
41 |
-
msgid "Request timed out."
|
42 |
-
msgstr ""
|
43 |
-
|
44 |
-
#: modules/checkers/http.php:389
|
45 |
-
msgid "Using Snoopy"
|
46 |
-
msgstr ""
|
47 |
-
|
48 |
-
#: modules/parsers/image.php:159
|
49 |
-
msgid "Image"
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: modules/parsers/metadata.php:117
|
53 |
-
msgid "Custom field"
|
54 |
msgstr ""
|
55 |
|
56 |
#: modules/containers/custom_field.php:84
|
@@ -69,8 +32,8 @@ msgstr ""
|
|
69 |
msgid "Edit this item"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: modules/containers/custom_field.php:197 modules/containers/
|
73 |
-
#: modules/containers/
|
74 |
msgid "Edit"
|
75 |
msgstr ""
|
76 |
|
@@ -114,11 +77,39 @@ msgstr ""
|
|
114 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: modules/containers/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
#: includes/any-post.php:519
|
119 |
msgid "Nothing to update"
|
120 |
msgstr ""
|
121 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
#: modules/containers/comment.php:53
|
123 |
msgid "Updating comment %d failed"
|
124 |
msgstr ""
|
@@ -156,67 +147,65 @@ msgstr ""
|
|
156 |
msgid "Comment"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: modules/containers/comment.php:
|
160 |
msgid "%d comment has been deleted."
|
161 |
msgid_plural "%d comments have been deleted."
|
162 |
msgstr[0] ""
|
163 |
msgstr[1] ""
|
164 |
|
165 |
-
#: modules/containers/comment.php:
|
166 |
msgid "%d comment moved to the Trash."
|
167 |
msgid_plural "%d comments moved to the Trash."
|
168 |
msgstr[0] ""
|
169 |
msgstr[1] ""
|
170 |
|
171 |
-
#: modules/
|
172 |
-
msgid "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: modules/
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: modules/
|
180 |
-
|
181 |
-
"
|
182 |
-
" 'Cancel' to stop, 'OK' to delete."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: modules/
|
186 |
-
msgid "
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: modules/
|
190 |
-
msgid "
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: modules/
|
194 |
-
msgid "
|
195 |
-
|
196 |
-
msgstr[0] ""
|
197 |
-
msgstr[1] ""
|
198 |
|
199 |
-
#: modules/
|
200 |
-
msgid "
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: modules/
|
204 |
-
|
205 |
-
msgid "Not Found"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: modules/
|
209 |
-
msgid "
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: modules/
|
213 |
-
msgid "
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: modules/extras/
|
217 |
-
msgid ""
|
218 |
-
|
219 |
-
|
|
|
|
|
220 |
msgstr ""
|
221 |
|
222 |
#: modules/extras/dailymotion-embed.php:23
|
@@ -227,29 +216,18 @@ msgstr ""
|
|
227 |
msgid "Embedded DailyMotion video"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: modules/extras/
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
#: modules/extras/vimeo-embed.php:25
|
235 |
-
msgid "Embedded Vimeo video"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: modules/extras/
|
239 |
-
#: modules/extras/rapidshare.php:
|
240 |
#: includes/links.php:875
|
241 |
msgctxt "link status"
|
242 |
msgid "OK"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: modules/extras/megaupload.php:116
|
246 |
-
msgid "File Temporarily Unavailable"
|
247 |
-
msgstr ""
|
248 |
-
|
249 |
-
#: modules/extras/megaupload.php:122
|
250 |
-
msgid "API Error"
|
251 |
-
msgstr ""
|
252 |
-
|
253 |
#: modules/extras/rapidshare.php:161
|
254 |
msgid "RS Server Down"
|
255 |
msgstr ""
|
@@ -270,47 +248,69 @@ msgstr ""
|
|
270 |
msgid "RapidShare API error: %s"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: modules/extras/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
msgid "Video Not Found"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: modules/extras/youtube.php:
|
278 |
msgid "Video Removed"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: modules/extras/youtube.php:
|
282 |
msgid "Invalid Video ID"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: modules/extras/youtube.php:
|
286 |
msgid "Video OK"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: modules/extras/youtube.php:
|
290 |
msgid "OK"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: modules/extras/youtube.php:
|
294 |
msgid "Video status : %s%s"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: modules/extras/youtube.php:
|
298 |
msgid "Video Restricted"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: modules/extras/youtube.php:
|
302 |
msgid "Unknown YouTube API response received."
|
303 |
msgstr ""
|
304 |
|
305 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
msgid "Once Weekly"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: core/init.php:
|
310 |
msgid "Twice a Month"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: core/init.php:
|
314 |
msgid ""
|
315 |
"Broken Link Checker installation failed. Try deactivating and then "
|
316 |
"reactivating the plugin."
|
@@ -328,196 +328,200 @@ msgstr ""
|
|
328 |
msgid "Automatically expand the widget if broken links have been detected"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: core/core.php:
|
332 |
msgid "Link Checker Settings"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: core/core.php:
|
336 |
msgid "Link Checker"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: core/core.php:
|
340 |
msgid "Broken Links"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: core/core.php:
|
344 |
msgid "View Broken Links"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: core/core.php:
|
348 |
msgid "Feedback"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: core/core.php:
|
352 |
-
msgid "
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: core/core.php:
|
356 |
msgid "Go to Broken Links"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: core/core.php:
|
360 |
msgid "Settings"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: core/core.php:
|
364 |
msgid ""
|
365 |
"Error: The plugin's database tables are not up to date! (Current version : %"
|
366 |
"d, expected : %d)"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: core/core.php:
|
370 |
msgid "Try deactivating and then reactivating the plugin."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: core/core.php:
|
374 |
msgid "Settings saved."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: core/core.php:
|
378 |
msgid "Thank you for your donation!"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: core/core.php:
|
382 |
msgid "Complete site recheck started."
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: core/core.php:
|
386 |
msgid "Details"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: core/core.php:
|
390 |
msgid "General"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: core/core.php:
|
394 |
msgid "Look For Links In"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: core/core.php:
|
398 |
msgid "Which Links To Check"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: core/core.php:
|
402 |
msgid "Protocols & APIs"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: core/core.php:
|
406 |
msgid "Advanced"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: core/core.php:
|
410 |
msgid "Broken Link Checker Options"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: core/core.php:
|
414 |
msgid "Status"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: core/core.php:
|
418 |
msgid "Show debug info"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: core/core.php:
|
422 |
msgid "Check each link"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: core/core.php:
|
426 |
msgid "Every %s hours"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: core/core.php:
|
430 |
msgid ""
|
431 |
"Existing links will be checked this often. New links will usually be checked "
|
432 |
"ASAP."
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: core/core.php:
|
436 |
msgid "E-mail notifications"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: core/core.php:
|
440 |
msgid "Send me e-mail notifications about newly detected broken links"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: core/core.php:
|
|
|
|
|
|
|
|
|
444 |
msgid "Link tweaks"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: core/core.php:
|
448 |
msgid "Apply custom formatting to broken links"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: core/core.php:
|
452 |
msgid "Edit CSS"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: core/core.php:
|
456 |
msgid "Apply custom formatting to removed links"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: core/core.php:
|
460 |
msgid "Stop search engines from following broken links"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: core/core.php:
|
464 |
msgid "Look for links in"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: core/core.php:
|
468 |
msgid "Post statuses"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: core/core.php:
|
472 |
msgid "Link types"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: core/core.php:
|
476 |
msgid "Error : All link parsers missing!"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: core/core.php:
|
480 |
msgid "Exclusion list"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: core/core.php:
|
484 |
msgid ""
|
485 |
"Don't check links where the URL contains any of these words (one per line) :"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: core/core.php:
|
489 |
msgid "Check links using"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: core/core.php:
|
493 |
msgid "Timeout"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: core/core.php:
|
497 |
msgid "%s seconds"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: core/core.php:
|
501 |
msgid "Links that take longer than this to load will be marked as broken."
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: core/core.php:
|
505 |
msgid "Link monitor"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: core/core.php:
|
509 |
msgid "Run continuously while the Dashboard is open"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: core/core.php:
|
513 |
msgid "Run hourly in the background"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: core/core.php:
|
517 |
msgid "Max. execution time"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: core/core.php:
|
521 |
msgid ""
|
522 |
"The plugin works by periodically launching a background job that parses your "
|
523 |
"posts for links, checks the discovered URLs, and performs other time-"
|
@@ -525,121 +529,121 @@ msgid ""
|
|
525 |
"may run each time before stopping."
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: core/core.php:
|
529 |
msgid "Server load limit"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: core/core.php:
|
533 |
msgid "Current load : %s"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: core/core.php:
|
537 |
msgid ""
|
538 |
"Link checking will be suspended if the average <a href=\"%s\">server load</"
|
539 |
"a> rises above this number. Leave this field blank to disable load limiting."
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: core/core.php:
|
543 |
msgid "Not available"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: core/core.php:
|
547 |
msgid ""
|
548 |
"Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
|
549 |
"code> is present and accessible."
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: core/core.php:
|
553 |
msgid "Forced recheck"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: core/core.php:
|
557 |
msgid "Re-check all pages"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: core/core.php:
|
561 |
msgid ""
|
562 |
"The \"Nuclear Option\". Click this button to make the plugin empty its link "
|
563 |
"database and recheck the entire site from scratch."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: core/core.php:
|
567 |
msgid "Save Changes"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: core/core.php:
|
571 |
msgid "Configure"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: core/core.php:
|
575 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: core/core.php:
|
579 |
msgid "Database error : %s"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: core/core.php:
|
583 |
msgid "You must enter a filter name!"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: core/core.php:
|
587 |
msgid "Invalid search query."
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: core/core.php:
|
591 |
msgid "Filter \"%s\" created"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: core/core.php:
|
595 |
msgid "Filter ID not specified."
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: core/core.php:
|
599 |
msgid "Filter deleted"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: core/core.php:
|
603 |
msgid "Replaced %d redirect with a direct link"
|
604 |
msgid_plural "Replaced %d redirects with direct links"
|
605 |
msgstr[0] ""
|
606 |
msgstr[1] ""
|
607 |
|
608 |
-
#: core/core.php:
|
609 |
msgid "Failed to fix %d redirect"
|
610 |
msgid_plural "Failed to fix %d redirects"
|
611 |
msgstr[0] ""
|
612 |
msgstr[1] ""
|
613 |
|
614 |
-
#: core/core.php:
|
615 |
msgid "None of the selected links are redirects!"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: core/core.php:
|
619 |
msgid "%d link updated."
|
620 |
msgid_plural "%d links updated."
|
621 |
msgstr[0] ""
|
622 |
msgstr[1] ""
|
623 |
|
624 |
-
#: core/core.php:
|
625 |
msgid "Failed to update %d link."
|
626 |
msgid_plural "Failed to update %d links."
|
627 |
msgstr[0] ""
|
628 |
msgstr[1] ""
|
629 |
|
630 |
-
#: core/core.php:
|
631 |
msgid "%d link removed"
|
632 |
msgid_plural "%d links removed"
|
633 |
msgstr[0] ""
|
634 |
msgstr[1] ""
|
635 |
|
636 |
-
#: core/core.php:
|
637 |
msgid "Failed to remove %d link"
|
638 |
msgid_plural "Failed to remove %d links"
|
639 |
msgstr[0] ""
|
640 |
msgstr[1] ""
|
641 |
|
642 |
-
#: core/core.php:
|
643 |
msgid ""
|
644 |
"%d item was skipped because it can't be moved to the Trash. You need to "
|
645 |
"delete it manually."
|
@@ -649,393 +653,328 @@ msgid_plural ""
|
|
649 |
msgstr[0] ""
|
650 |
msgstr[1] ""
|
651 |
|
652 |
-
#: core/core.php:
|
653 |
msgid "Didn't find anything to delete!"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: core/core.php:
|
657 |
msgid "%d link scheduled for rechecking"
|
658 |
msgid_plural "%d links scheduled for rechecking"
|
659 |
msgstr[0] ""
|
660 |
msgstr[1] ""
|
661 |
|
662 |
-
#: core/core.php:
|
663 |
msgid "This link was manually marked as working by the user."
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: core/core.php:
|
667 |
msgid "Couldn't modify link %d"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: core/core.php:
|
671 |
msgid "%d link marked as not broken"
|
672 |
msgid_plural "%d links marked as not broken"
|
673 |
msgstr[0] ""
|
674 |
msgstr[1] ""
|
675 |
|
676 |
-
#: core/core.php:
|
677 |
msgid "Table columns"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: core/core.php:
|
681 |
msgid "Show on screen"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: core/core.php:
|
685 |
msgid "links"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: core/core.php:
|
689 |
msgid "Apply"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: core/core.php:
|
693 |
msgid "Misc"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: core/core.php:
|
697 |
msgid "Highlight links broken for at least %s days"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: core/core.php:
|
701 |
msgid "Color-code status codes"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: core/core.php:
|
705 |
msgid "You're not allowed to do that!"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: core/core.php:
|
709 |
msgid "View broken links"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: core/core.php:
|
713 |
msgid "Found %d broken link"
|
714 |
msgid_plural "Found %d broken links"
|
715 |
msgstr[0] ""
|
716 |
msgstr[1] ""
|
717 |
|
718 |
-
#: core/core.php:
|
719 |
msgid "No broken links found."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: core/core.php:
|
723 |
msgid "%d URL in the work queue"
|
724 |
msgid_plural "%d URLs in the work queue"
|
725 |
msgstr[0] ""
|
726 |
msgstr[1] ""
|
727 |
|
728 |
-
#: core/core.php:
|
729 |
msgid "No URLs in the work queue."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: core/core.php:
|
733 |
msgid "Detected %d unique URL"
|
734 |
msgid_plural "Detected %d unique URLs"
|
735 |
msgstr[0] ""
|
736 |
msgstr[1] ""
|
737 |
|
738 |
-
#: core/core.php:
|
739 |
msgid "in %d link"
|
740 |
msgid_plural "in %d links"
|
741 |
msgstr[0] ""
|
742 |
msgstr[1] ""
|
743 |
|
744 |
-
#: core/core.php:
|
745 |
msgid "and still searching..."
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: core/core.php:
|
749 |
msgid "Searching your blog for links..."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: core/core.php:
|
753 |
msgid "No links detected."
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: core/core.php:
|
757 |
msgctxt "current load"
|
758 |
msgid "Unknown"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: core/core.php:
|
762 |
msgid "Oops, I can't find the link %d"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: core/core.php:
|
766 |
msgid "Oops, couldn't modify the link!"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: core/core.php:
|
770 |
msgid "Error : link_id not specified"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: core/core.php:
|
774 |
msgid "Oops, the new URL is invalid!"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: core/core.php:
|
778 |
msgid "An unexpected error occured!"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: core/core.php:
|
782 |
msgid "Error : link_id or new_url not specified"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: core/core.php:
|
786 |
msgid "You don't have sufficient privileges to access this information!"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: core/core.php:
|
790 |
msgid "Error : link ID not specified"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: core/core.php:
|
794 |
msgid "Failed to load link details (%s)"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.3) #-#-#-#-#
|
798 |
#. Plugin Name of the plugin/theme
|
799 |
-
#: core/core.php:
|
800 |
msgid "Broken Link Checker"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: core/core.php:
|
804 |
msgid "PHP version"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: core/core.php:
|
808 |
msgid "MySQL version"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: core/core.php:
|
812 |
msgid ""
|
813 |
"You have an old version of CURL. Redirect detection may not work properly."
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: core/core.php:
|
817 |
msgid "Not installed"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: core/core.php:
|
821 |
msgid "CURL version"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: core/core.php:
|
825 |
msgid "Installed"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: core/core.php:
|
829 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: core/core.php:
|
833 |
msgid "On"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: core/core.php:
|
837 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: core/core.php:
|
841 |
msgid "Off"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: core/core.php:
|
845 |
msgid "On ( %s )"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: core/core.php:
|
849 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: core/core.php:
|
853 |
msgid ""
|
854 |
"If this value is zero even after several page reloads you have probably "
|
855 |
"encountered a bug."
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: core/core.php:
|
859 |
msgid "[%s] Broken links detected"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: core/core.php:
|
863 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
864 |
msgid_plural ""
|
865 |
"Broken Link Checker has detected %d new broken links on your site."
|
866 |
msgstr[0] ""
|
867 |
msgstr[1] ""
|
868 |
|
869 |
-
#: core/core.php:
|
870 |
msgid "Here's a list of the first %d broken links:"
|
871 |
msgid_plural "Here's a list of the first %d broken links:"
|
872 |
msgstr[0] ""
|
873 |
msgstr[1] ""
|
874 |
|
875 |
-
#: core/core.php:
|
876 |
msgid "Here's a list of the new broken links: "
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: core/core.php:
|
880 |
msgid "Link text : %s"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: core/core.php:
|
884 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: core/core.php:
|
888 |
msgid "Source : %s"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: core/core.php:
|
892 |
msgid "You can see all broken links here:"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#:
|
896 |
-
msgid "%d
|
897 |
-
msgid_plural "
|
|
|
898 |
msgstr[0] ""
|
899 |
msgstr[1] ""
|
900 |
|
901 |
-
#: includes/
|
902 |
-
msgid "
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: includes/
|
906 |
-
msgid "
|
907 |
-
|
908 |
-
msgstr[0] ""
|
909 |
-
msgstr[1] ""
|
910 |
-
|
911 |
-
#: includes/utility-class.php:287
|
912 |
-
msgid "%d second ago"
|
913 |
-
msgid_plural "%d seconds ago"
|
914 |
-
msgstr[0] ""
|
915 |
-
msgstr[1] ""
|
916 |
-
|
917 |
-
#: includes/utility-class.php:290
|
918 |
-
msgid "%d minute"
|
919 |
-
msgid_plural "%d minutes"
|
920 |
-
msgstr[0] ""
|
921 |
-
msgstr[1] ""
|
922 |
-
|
923 |
-
#: includes/utility-class.php:291
|
924 |
-
msgid "%d minute ago"
|
925 |
-
msgid_plural "%d minutes ago"
|
926 |
-
msgstr[0] ""
|
927 |
-
msgstr[1] ""
|
928 |
-
|
929 |
-
#: includes/utility-class.php:294
|
930 |
-
msgid "%d hour"
|
931 |
-
msgid_plural "%d hours"
|
932 |
-
msgstr[0] ""
|
933 |
-
msgstr[1] ""
|
934 |
-
|
935 |
-
#: includes/utility-class.php:295
|
936 |
-
msgid "%d hour ago"
|
937 |
-
msgid_plural "%d hours ago"
|
938 |
-
msgstr[0] ""
|
939 |
-
msgstr[1] ""
|
940 |
-
|
941 |
-
#: includes/utility-class.php:298
|
942 |
-
msgid "%d day"
|
943 |
-
msgid_plural "%d days"
|
944 |
-
msgstr[0] ""
|
945 |
-
msgstr[1] ""
|
946 |
-
|
947 |
-
#: includes/utility-class.php:299
|
948 |
-
msgid "%d day ago"
|
949 |
-
msgid_plural "%d days ago"
|
950 |
-
msgstr[0] ""
|
951 |
-
msgstr[1] ""
|
952 |
|
953 |
-
#: includes/
|
954 |
-
msgid "%d
|
955 |
-
|
956 |
-
msgstr[0] ""
|
957 |
-
msgstr[1] ""
|
958 |
|
959 |
-
#: includes/
|
960 |
-
msgid "
|
961 |
-
|
962 |
-
msgstr
|
963 |
-
msgstr[1] ""
|
964 |
|
965 |
-
#: includes/
|
966 |
-
msgid "
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: includes/
|
970 |
-
msgid "
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: includes/links.php:
|
974 |
-
msgid "
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: includes/links.php:
|
978 |
-
msgid "
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: includes/links.php:
|
982 |
-
msgid "
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: includes/links.php:
|
986 |
-
|
|
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: includes/
|
990 |
-
msgid "
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: includes/links.php:
|
994 |
msgid ""
|
995 |
-
"
|
996 |
-
|
997 |
-
|
998 |
-
#: includes/links.php:607
|
999 |
-
msgid "Failed to create a DB entry for the new URL."
|
1000 |
-
msgstr ""
|
1001 |
-
|
1002 |
-
#: includes/links.php:673
|
1003 |
-
msgid "This link is not a redirect"
|
1004 |
-
msgstr ""
|
1005 |
-
|
1006 |
-
#: includes/links.php:720 includes/links.php:757
|
1007 |
-
msgid "Couldn't delete the link's database record"
|
1008 |
-
msgstr ""
|
1009 |
-
|
1010 |
-
#: includes/links.php:831
|
1011 |
-
msgctxt "link status"
|
1012 |
-
msgid "Unknown"
|
1013 |
-
msgstr ""
|
1014 |
-
|
1015 |
-
#: includes/links.php:869
|
1016 |
-
msgid "Not checked"
|
1017 |
-
msgstr ""
|
1018 |
-
|
1019 |
-
#: includes/links.php:872
|
1020 |
-
msgid "False positive"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: includes/admin/
|
1024 |
-
msgid "
|
|
|
|
|
|
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: includes/admin/
|
1028 |
msgid ""
|
1029 |
-
"
|
1030 |
-
"
|
|
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: includes/admin/
|
1034 |
-
msgid "
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: includes/admin/
|
1038 |
-
msgid "
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: includes/admin/search-form.php:16
|
@@ -1054,11 +993,11 @@ msgstr ""
|
|
1054 |
msgid "Link text"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: includes/admin/search-form.php:45 includes/admin/table-printer.php:
|
1058 |
msgid "URL"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: includes/admin/search-form.php:48 includes/admin/table-printer.php:
|
1062 |
msgid "HTTP code"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1082,334 +1021,202 @@ msgstr ""
|
|
1082 |
msgid "Search Links"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: includes/admin/search-form.php:113 includes/admin/table-printer.php:
|
1086 |
-
#: includes/admin/table-printer.php:
|
1087 |
msgid "Cancel"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: includes/admin/
|
1091 |
-
msgid "
|
1092 |
-
msgstr ""
|
1093 |
-
|
1094 |
-
#: includes/admin/links-page-js.php:99 includes/admin/table-printer.php:587
|
1095 |
-
msgid "Not broken"
|
1096 |
-
msgstr ""
|
1097 |
-
|
1098 |
-
#: includes/admin/links-page-js.php:213
|
1099 |
-
msgid "%d instances of the link were successfully modified."
|
1100 |
-
msgstr ""
|
1101 |
-
|
1102 |
-
#: includes/admin/links-page-js.php:219
|
1103 |
-
msgid ""
|
1104 |
-
"However, %d instances couldn't be edited and still point to the old URL."
|
1105 |
-
msgstr ""
|
1106 |
-
|
1107 |
-
#: includes/admin/links-page-js.php:225
|
1108 |
-
msgid "The link could not be modified."
|
1109 |
-
msgstr ""
|
1110 |
-
|
1111 |
-
#: includes/admin/links-page-js.php:228 includes/admin/links-page-js.php:353
|
1112 |
-
msgid "The following error(s) occured :"
|
1113 |
-
msgstr ""
|
1114 |
-
|
1115 |
-
#: includes/admin/links-page-js.php:339
|
1116 |
-
msgid "%d instances of the link were successfully unlinked."
|
1117 |
-
msgstr ""
|
1118 |
-
|
1119 |
-
#: includes/admin/links-page-js.php:345
|
1120 |
-
msgid "However, %d instances couldn't be removed."
|
1121 |
-
msgstr ""
|
1122 |
-
|
1123 |
-
#: includes/admin/links-page-js.php:350
|
1124 |
-
msgid "The plugin failed to remove the link."
|
1125 |
-
msgstr ""
|
1126 |
-
|
1127 |
-
#: includes/admin/links-page-js.php:361 includes/admin/table-printer.php:237
|
1128 |
-
#: includes/admin/table-printer.php:581
|
1129 |
-
msgid "Unlink"
|
1130 |
-
msgstr ""
|
1131 |
-
|
1132 |
-
#: includes/admin/links-page-js.php:405
|
1133 |
-
msgid "Enter a name for the new custom filter"
|
1134 |
-
msgstr ""
|
1135 |
-
|
1136 |
-
#: includes/admin/links-page-js.php:416
|
1137 |
-
msgid ""
|
1138 |
-
"You are about to delete the current filter.\n"
|
1139 |
-
"'Cancel' to stop, 'OK' to delete"
|
1140 |
-
msgstr ""
|
1141 |
-
|
1142 |
-
#: includes/admin/links-page-js.php:439
|
1143 |
-
msgid ""
|
1144 |
-
"Are you sure you want to delete all posts, bookmarks or other items that "
|
1145 |
-
"contain any of the selected links? This action can't be undone.\n"
|
1146 |
-
"'Cancel' to stop, 'OK' to delete"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/admin/
|
1150 |
msgid ""
|
1151 |
-
"
|
1152 |
-
"
|
1153 |
-
"'Cancel' to stop, 'OK' to remove"
|
1154 |
-
msgstr ""
|
1155 |
-
|
1156 |
-
#: includes/admin/links-page-js.php:558
|
1157 |
-
msgid "Enter a search string first."
|
1158 |
-
msgstr ""
|
1159 |
-
|
1160 |
-
#: includes/admin/links-page-js.php:565
|
1161 |
-
msgid "Select one or more links to edit."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: includes/admin/
|
1165 |
-
msgid "
|
1166 |
msgstr ""
|
1167 |
|
1168 |
#: includes/admin/options-page-js.php:54
|
1169 |
msgid "Hide debug info"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: includes/admin/table-printer.php:
|
1173 |
msgid "Compact View"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: includes/admin/table-printer.php:
|
1177 |
msgid "Detailed View"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/admin/table-printer.php:
|
1181 |
msgid "Source"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: includes/admin/table-printer.php:
|
1185 |
msgid "Link Text"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: includes/admin/table-printer.php:
|
1189 |
msgid "Bulk Actions"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: includes/admin/table-printer.php:
|
1193 |
msgid "Edit URL"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/admin/table-printer.php:
|
1197 |
msgid "Recheck"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/admin/table-printer.php:
|
1201 |
msgid "Fix redirects"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: includes/admin/table-printer.php:
|
1205 |
msgid "Mark as not broken"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: includes/admin/table-printer.php:
|
1209 |
msgid "Move sources to Trash"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: includes/admin/table-printer.php:
|
1213 |
msgid "Delete sources"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: includes/admin/table-printer.php:
|
1217 |
msgid "«"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: includes/admin/table-printer.php:
|
1221 |
msgid "»"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: includes/admin/table-printer.php:
|
1225 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: includes/admin/table-printer.php:
|
1229 |
msgid "Bulk Edit URLs"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: includes/admin/table-printer.php:
|
1233 |
msgid "Find"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: includes/admin/table-printer.php:
|
1237 |
msgid "Replace with"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: includes/admin/table-printer.php:
|
1241 |
msgid "Case sensitive"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: includes/admin/table-printer.php:
|
1245 |
msgid "Regular expression"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: includes/admin/table-printer.php:
|
1249 |
msgid "Update"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/admin/table-printer.php:
|
1253 |
msgid "Post published on"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: includes/admin/table-printer.php:
|
1257 |
msgid "Link last checked"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: includes/admin/table-printer.php:
|
1261 |
msgid "Never"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: includes/admin/table-printer.php:
|
1265 |
msgid "Response time"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: includes/admin/table-printer.php:
|
1269 |
msgid "%2.3f seconds"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: includes/admin/table-printer.php:
|
1273 |
msgid "Final URL"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/admin/table-printer.php:
|
1277 |
msgid "Redirect count"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/admin/table-printer.php:
|
1281 |
msgid "Instance count"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/admin/table-printer.php:
|
1285 |
msgid "This link has failed %d time."
|
1286 |
msgid_plural "This link has failed %d times."
|
1287 |
msgstr[0] ""
|
1288 |
msgstr[1] ""
|
1289 |
|
1290 |
-
#: includes/admin/table-printer.php:
|
1291 |
msgid "This link has been broken for %s."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: includes/admin/table-printer.php:
|
1295 |
msgid "Log"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: includes/admin/table-printer.php:
|
1299 |
msgid "Show more info about this link"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: includes/admin/table-printer.php:
|
1303 |
msgctxt "checked how long ago"
|
1304 |
msgid "Checked"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/admin/table-printer.php:
|
1308 |
msgid "Broken for"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/admin/table-printer.php:
|
1312 |
msgid "Edit link URL"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/admin/table-printer.php:
|
1316 |
msgid "Remove this link from all posts"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/admin/table-printer.php:
|
1320 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/admin/table-printer.php:
|
1324 |
msgid "Cancel URL editing"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: includes/admin/table-printer.php:
|
1328 |
msgid "Update URL"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: includes/admin/table-printer.php:
|
1332 |
msgid "[An orphaned link! This is a bug.]"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: includes/
|
1336 |
-
|
1337 |
-
msgid "Basic HTTP"
|
1338 |
-
msgstr ""
|
1339 |
-
|
1340 |
-
#: includes/extra-strings.php:3
|
1341 |
-
msgctxt "module name"
|
1342 |
-
msgid "Blogroll items"
|
1343 |
-
msgstr ""
|
1344 |
-
|
1345 |
-
#: includes/extra-strings.php:4
|
1346 |
-
msgctxt "module name"
|
1347 |
-
msgid "Comments"
|
1348 |
-
msgstr ""
|
1349 |
-
|
1350 |
-
#: includes/extra-strings.php:5
|
1351 |
-
msgctxt "module name"
|
1352 |
-
msgid "Custom fields"
|
1353 |
-
msgstr ""
|
1354 |
-
|
1355 |
-
#: includes/extra-strings.php:6
|
1356 |
-
msgctxt "module name"
|
1357 |
-
msgid "Embedded DailyMotion videos"
|
1358 |
-
msgstr ""
|
1359 |
-
|
1360 |
-
#: includes/extra-strings.php:7
|
1361 |
-
msgctxt "module name"
|
1362 |
-
msgid "Embedded Vimeo videos"
|
1363 |
-
msgstr ""
|
1364 |
-
|
1365 |
-
#: includes/extra-strings.php:8
|
1366 |
-
msgctxt "module name"
|
1367 |
-
msgid "Embedded YouTube videos"
|
1368 |
-
msgstr ""
|
1369 |
-
|
1370 |
-
#: includes/extra-strings.php:9
|
1371 |
-
msgctxt "module name"
|
1372 |
-
msgid "HTML images"
|
1373 |
-
msgstr ""
|
1374 |
-
|
1375 |
-
#: includes/extra-strings.php:10
|
1376 |
-
msgctxt "module name"
|
1377 |
-
msgid "HTML links"
|
1378 |
-
msgstr ""
|
1379 |
-
|
1380 |
-
#: includes/extra-strings.php:11
|
1381 |
-
msgctxt "module name"
|
1382 |
-
msgid "MediaFire API"
|
1383 |
-
msgstr ""
|
1384 |
-
|
1385 |
-
#: includes/extra-strings.php:12
|
1386 |
-
msgctxt "module name"
|
1387 |
-
msgid "MegaUpload API"
|
1388 |
-
msgstr ""
|
1389 |
-
|
1390 |
-
#: includes/extra-strings.php:13
|
1391 |
-
msgctxt "module name"
|
1392 |
-
msgid "Plaintext URLs"
|
1393 |
-
msgstr ""
|
1394 |
-
|
1395 |
-
#: includes/extra-strings.php:14
|
1396 |
-
msgctxt "module name"
|
1397 |
-
msgid "RapidShare API"
|
1398 |
-
msgstr ""
|
1399 |
-
|
1400 |
-
#: includes/extra-strings.php:15
|
1401 |
-
msgctxt "module name"
|
1402 |
-
msgid "YouTube API"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: includes/
|
1406 |
-
|
1407 |
-
msgid "Posts"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: includes/
|
1411 |
-
|
1412 |
-
msgid "Pages"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
#: includes/link-query.php:25
|
@@ -1452,14 +1259,6 @@ msgstr ""
|
|
1452 |
msgid "No links found for your query"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: includes/instances.php:102 includes/instances.php:158
|
1456 |
-
msgid "Container %s[%d] not found"
|
1457 |
-
msgstr ""
|
1458 |
-
|
1459 |
-
#: includes/instances.php:111 includes/instances.php:167
|
1460 |
-
msgid "Parser '%s' not found."
|
1461 |
-
msgstr ""
|
1462 |
-
|
1463 |
#: includes/any-post.php:427
|
1464 |
msgid "Preview “%s”"
|
1465 |
msgstr ""
|
@@ -1512,6 +1311,219 @@ msgid_plural "%d \"%s\" moved to the Trash."
|
|
1512 |
msgstr[0] ""
|
1513 |
msgstr[1] ""
|
1514 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1515 |
#. Plugin URI of the plugin/theme
|
1516 |
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1517 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Broken Link Checker package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Broken Link Checker 1.3.1\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
|
7 |
+
"POT-Creation-Date: 2011-12-10 11:41:41+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: modules/containers/dummy.php:34 modules/containers/dummy.php:45
|
16 |
+
msgid "I don't know how to edit a '%s' [%d]."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
msgstr ""
|
18 |
|
19 |
#: modules/containers/custom_field.php:84
|
32 |
msgid "Edit this item"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: modules/containers/custom_field.php:197 modules/containers/blogroll.php:46
|
36 |
+
#: modules/containers/comment.php:153 includes/any-post.php:397
|
37 |
msgid "Edit"
|
38 |
msgstr ""
|
39 |
|
77 |
msgid "Failed to move post \"%s\" (%d) to the trash"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: modules/containers/blogroll.php:21
|
81 |
+
msgid "Bookmark"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: modules/containers/blogroll.php:27 modules/containers/blogroll.php:46
|
85 |
+
msgid "Edit this bookmark"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: modules/containers/blogroll.php:47
|
89 |
+
msgid ""
|
90 |
+
"You are about to delete this link '%s'\n"
|
91 |
+
" 'Cancel' to stop, 'OK' to delete."
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: modules/containers/blogroll.php:83 modules/containers/comment.php:43
|
95 |
#: includes/any-post.php:519
|
96 |
msgid "Nothing to update"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: modules/containers/blogroll.php:97
|
100 |
+
msgid "Updating bookmark %d failed"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: modules/containers/blogroll.php:128
|
104 |
+
msgid "Failed to delete blogroll link \"%s\" (%d)"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: modules/containers/blogroll.php:298
|
108 |
+
msgid "%d blogroll link deleted."
|
109 |
+
msgid_plural "%d blogroll links deleted."
|
110 |
+
msgstr[0] ""
|
111 |
+
msgstr[1] ""
|
112 |
+
|
113 |
#: modules/containers/comment.php:53
|
114 |
msgid "Updating comment %d failed"
|
115 |
msgstr ""
|
147 |
msgid "Comment"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: modules/containers/comment.php:355
|
151 |
msgid "%d comment has been deleted."
|
152 |
msgid_plural "%d comments have been deleted."
|
153 |
msgstr[0] ""
|
154 |
msgstr[1] ""
|
155 |
|
156 |
+
#: modules/containers/comment.php:374
|
157 |
msgid "%d comment moved to the Trash."
|
158 |
msgid_plural "%d comments moved to the Trash."
|
159 |
msgstr[0] ""
|
160 |
msgstr[1] ""
|
161 |
|
162 |
+
#: modules/checkers/http.php:242
|
163 |
+
msgid "Server Not Found"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: modules/checkers/http.php:257
|
167 |
+
msgid "Connection Failed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: modules/checkers/http.php:263 modules/extras/mediafire.php:96
|
171 |
+
#: includes/links.php:845
|
172 |
+
msgid "Unknown Error"
|
|
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: modules/checkers/http.php:292 modules/checkers/http.php:362
|
176 |
+
msgid "HTTP code : %d"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: modules/checkers/http.php:294 modules/checkers/http.php:364
|
180 |
+
msgid "(No response)"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: modules/checkers/http.php:300
|
184 |
+
msgid "Most likely the connection timed out or the domain doesn't exist."
|
185 |
+
msgstr ""
|
|
|
|
|
186 |
|
187 |
+
#: modules/checkers/http.php:371
|
188 |
+
msgid "Request timed out."
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: modules/checkers/http.php:389
|
192 |
+
msgid "Using Snoopy"
|
|
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: modules/parsers/image.php:159
|
196 |
+
msgid "Image"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: modules/parsers/metadata.php:117
|
200 |
+
msgid "Custom field"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: modules/extras/youtube-iframe.php:25 modules/extras/youtube-embed.php:24
|
204 |
+
msgid "YouTube Video"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: modules/extras/youtube-iframe.php:26 modules/extras/youtube-embed.php:25
|
208 |
+
msgid "Embedded YouTube video"
|
209 |
msgstr ""
|
210 |
|
211 |
#: modules/extras/dailymotion-embed.php:23
|
216 |
msgid "Embedded DailyMotion video"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: modules/extras/rapidshare.php:142 modules/extras/mediafire.php:91
|
220 |
+
#: modules/extras/megaupload.php:109
|
221 |
+
msgid "Not Found"
|
|
|
|
|
|
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: modules/extras/rapidshare.php:148 modules/extras/rapidshare.php:154
|
225 |
+
#: modules/extras/rapidshare.php:181 modules/extras/megaupload.php:101
|
226 |
#: includes/links.php:875
|
227 |
msgctxt "link status"
|
228 |
msgid "OK"
|
229 |
msgstr ""
|
230 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
#: modules/extras/rapidshare.php:161
|
232 |
msgid "RS Server Down"
|
233 |
msgstr ""
|
248 |
msgid "RapidShare API error: %s"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: modules/extras/embed-parser-base.php:182
|
252 |
+
msgid ""
|
253 |
+
"Embedded videos can't be edited using Broken Link Checker. Please edit or "
|
254 |
+
"replace the video in question manually."
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: modules/extras/vimeo-embed.php:24
|
258 |
+
msgid "Vimeo Video"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: modules/extras/vimeo-embed.php:25
|
262 |
+
msgid "Embedded Vimeo video"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: modules/extras/youtube.php:73 modules/extras/youtube.php:76
|
266 |
msgid "Video Not Found"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: modules/extras/youtube.php:84
|
270 |
msgid "Video Removed"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: modules/extras/youtube.php:92
|
274 |
msgid "Invalid Video ID"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: modules/extras/youtube.php:104
|
278 |
msgid "Video OK"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: modules/extras/youtube.php:105 modules/extras/youtube.php:132
|
282 |
msgid "OK"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: modules/extras/youtube.php:118
|
286 |
msgid "Video status : %s%s"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: modules/extras/youtube.php:137
|
290 |
msgid "Video Restricted"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: modules/extras/youtube.php:154
|
294 |
msgid "Unknown YouTube API response received."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: modules/extras/megaupload.php:116
|
298 |
+
msgid "File Temporarily Unavailable"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: modules/extras/megaupload.php:122
|
302 |
+
msgid "API Error"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: core/init.php:231
|
306 |
msgid "Once Weekly"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: core/init.php:237
|
310 |
msgid "Twice a Month"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: core/init.php:307
|
314 |
msgid ""
|
315 |
"Broken Link Checker installation failed. Try deactivating and then "
|
316 |
"reactivating the plugin."
|
328 |
msgid "Automatically expand the widget if broken links have been detected"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: core/core.php:285
|
332 |
msgid "Link Checker Settings"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: core/core.php:286
|
336 |
msgid "Link Checker"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: core/core.php:291 includes/link-query.php:26
|
340 |
msgid "Broken Links"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: core/core.php:307
|
344 |
msgid "View Broken Links"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: core/core.php:322
|
348 |
msgid "Feedback"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: core/core.php:330 includes/admin/sidebar.php:50
|
352 |
+
msgid "More plugins by Janis Elsts"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: core/core.php:337
|
356 |
msgid "Go to Broken Links"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: core/core.php:366
|
360 |
msgid "Settings"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: core/core.php:378 core/core.php:1160
|
364 |
msgid ""
|
365 |
"Error: The plugin's database tables are not up to date! (Current version : %"
|
366 |
"d, expected : %d)"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: core/core.php:382 core/core.php:1164
|
370 |
msgid "Try deactivating and then reactivating the plugin."
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: core/core.php:521
|
374 |
msgid "Settings saved."
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: core/core.php:527
|
378 |
msgid "Thank you for your donation!"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: core/core.php:534
|
382 |
msgid "Complete site recheck started."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: core/core.php:543
|
386 |
msgid "Details"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: core/core.php:557
|
390 |
msgid "General"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: core/core.php:558
|
394 |
msgid "Look For Links In"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: core/core.php:559
|
398 |
msgid "Which Links To Check"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: core/core.php:560
|
402 |
msgid "Protocols & APIs"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: core/core.php:561
|
406 |
msgid "Advanced"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: core/core.php:576
|
410 |
msgid "Broken Link Checker Options"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: core/core.php:618 includes/admin/table-printer.php:195
|
414 |
msgid "Status"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: core/core.php:620 includes/admin/options-page-js.php:56
|
418 |
msgid "Show debug info"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: core/core.php:648
|
422 |
msgid "Check each link"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: core/core.php:653
|
426 |
msgid "Every %s hours"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: core/core.php:662
|
430 |
msgid ""
|
431 |
"Existing links will be checked this often. New links will usually be checked "
|
432 |
"ASAP."
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: core/core.php:669
|
436 |
msgid "E-mail notifications"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: core/core.php:675
|
440 |
msgid "Send me e-mail notifications about newly detected broken links"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: core/core.php:683
|
444 |
+
msgid "Send authors e-mail notifications about broken links in their posts"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: core/core.php:690
|
448 |
msgid "Link tweaks"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: core/core.php:696
|
452 |
msgid "Apply custom formatting to broken links"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: core/core.php:700 core/core.php:728
|
456 |
msgid "Edit CSS"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: core/core.php:724
|
460 |
msgid "Apply custom formatting to removed links"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: core/core.php:752
|
464 |
msgid "Stop search engines from following broken links"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: core/core.php:769
|
468 |
msgid "Look for links in"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: core/core.php:780
|
472 |
msgid "Post statuses"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: core/core.php:813
|
476 |
msgid "Link types"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: core/core.php:819
|
480 |
msgid "Error : All link parsers missing!"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: core/core.php:826
|
484 |
msgid "Exclusion list"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: core/core.php:827
|
488 |
msgid ""
|
489 |
"Don't check links where the URL contains any of these words (one per line) :"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: core/core.php:845
|
493 |
msgid "Check links using"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: core/core.php:864 includes/links.php:849
|
497 |
msgid "Timeout"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: core/core.php:870 core/core.php:916 core/core.php:2725
|
501 |
msgid "%s seconds"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: core/core.php:879
|
505 |
msgid "Links that take longer than this to load will be marked as broken."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: core/core.php:886
|
509 |
msgid "Link monitor"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: core/core.php:894
|
513 |
msgid "Run continuously while the Dashboard is open"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: core/core.php:902
|
517 |
msgid "Run hourly in the background"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: core/core.php:910
|
521 |
msgid "Max. execution time"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: core/core.php:927
|
525 |
msgid ""
|
526 |
"The plugin works by periodically launching a background job that parses your "
|
527 |
"posts for links, checks the discovered URLs, and performs other time-"
|
529 |
"may run each time before stopping."
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: core/core.php:936
|
533 |
msgid "Server load limit"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: core/core.php:951
|
537 |
msgid "Current load : %s"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: core/core.php:956
|
541 |
msgid ""
|
542 |
"Link checking will be suspended if the average <a href=\"%s\">server load</"
|
543 |
"a> rises above this number. Leave this field blank to disable load limiting."
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: core/core.php:965
|
547 |
msgid "Not available"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: core/core.php:967
|
551 |
msgid ""
|
552 |
"Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
|
553 |
"code> is present and accessible."
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: core/core.php:975
|
557 |
msgid "Forced recheck"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: core/core.php:978
|
561 |
msgid "Re-check all pages"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: core/core.php:982
|
565 |
msgid ""
|
566 |
"The \"Nuclear Option\". Click this button to make the plugin empty its link "
|
567 |
"database and recheck the entire site from scratch."
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: core/core.php:993
|
571 |
msgid "Save Changes"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: core/core.php:1044
|
575 |
msgid "Configure"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: core/core.php:1126
|
579 |
msgid "Check URLs entered in these custom fields (one per line) :"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: core/core.php:1263 core/core.php:1344 core/core.php:1376
|
583 |
msgid "Database error : %s"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: core/core.php:1326
|
587 |
msgid "You must enter a filter name!"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: core/core.php:1330
|
591 |
msgid "Invalid search query."
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: core/core.php:1339
|
595 |
msgid "Filter \"%s\" created"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: core/core.php:1366
|
599 |
msgid "Filter ID not specified."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: core/core.php:1373
|
603 |
msgid "Filter deleted"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: core/core.php:1420
|
607 |
msgid "Replaced %d redirect with a direct link"
|
608 |
msgid_plural "Replaced %d redirects with direct links"
|
609 |
msgstr[0] ""
|
610 |
msgstr[1] ""
|
611 |
|
612 |
+
#: core/core.php:1431
|
613 |
msgid "Failed to fix %d redirect"
|
614 |
msgid_plural "Failed to fix %d redirects"
|
615 |
msgstr[0] ""
|
616 |
msgstr[1] ""
|
617 |
|
618 |
+
#: core/core.php:1442
|
619 |
msgid "None of the selected links are redirects!"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: core/core.php:1520
|
623 |
msgid "%d link updated."
|
624 |
msgid_plural "%d links updated."
|
625 |
msgstr[0] ""
|
626 |
msgstr[1] ""
|
627 |
|
628 |
+
#: core/core.php:1531
|
629 |
msgid "Failed to update %d link."
|
630 |
msgid_plural "Failed to update %d links."
|
631 |
msgstr[0] ""
|
632 |
msgstr[1] ""
|
633 |
|
634 |
+
#: core/core.php:1585
|
635 |
msgid "%d link removed"
|
636 |
msgid_plural "%d links removed"
|
637 |
msgstr[0] ""
|
638 |
msgstr[1] ""
|
639 |
|
640 |
+
#: core/core.php:1596
|
641 |
msgid "Failed to remove %d link"
|
642 |
msgid_plural "Failed to remove %d links"
|
643 |
msgstr[0] ""
|
644 |
msgstr[1] ""
|
645 |
|
646 |
+
#: core/core.php:1705
|
647 |
msgid ""
|
648 |
"%d item was skipped because it can't be moved to the Trash. You need to "
|
649 |
"delete it manually."
|
653 |
msgstr[0] ""
|
654 |
msgstr[1] ""
|
655 |
|
656 |
+
#: core/core.php:1727
|
657 |
msgid "Didn't find anything to delete!"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: core/core.php:1755
|
661 |
msgid "%d link scheduled for rechecking"
|
662 |
msgid_plural "%d links scheduled for rechecking"
|
663 |
msgstr[0] ""
|
664 |
msgstr[1] ""
|
665 |
|
666 |
+
#: core/core.php:1801 core/core.php:2405
|
667 |
msgid "This link was manually marked as working by the user."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: core/core.php:1808
|
671 |
msgid "Couldn't modify link %d"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: core/core.php:1818
|
675 |
msgid "%d link marked as not broken"
|
676 |
msgid_plural "%d links marked as not broken"
|
677 |
msgstr[0] ""
|
678 |
msgstr[1] ""
|
679 |
|
680 |
+
#: core/core.php:1858
|
681 |
msgid "Table columns"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: core/core.php:1877
|
685 |
msgid "Show on screen"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: core/core.php:1884
|
689 |
msgid "links"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: core/core.php:1885 includes/admin/table-printer.php:163
|
693 |
msgid "Apply"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: core/core.php:1889
|
697 |
msgid "Misc"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: core/core.php:1904
|
701 |
msgid "Highlight links broken for at least %s days"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: core/core.php:1913
|
705 |
msgid "Color-code status codes"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: core/core.php:1930 core/core.php:2390 core/core.php:2426 core/core.php:2489
|
709 |
msgid "You're not allowed to do that!"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: core/core.php:2271
|
713 |
msgid "View broken links"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: core/core.php:2272
|
717 |
msgid "Found %d broken link"
|
718 |
msgid_plural "Found %d broken links"
|
719 |
msgstr[0] ""
|
720 |
msgstr[1] ""
|
721 |
|
722 |
+
#: core/core.php:2278
|
723 |
msgid "No broken links found."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: core/core.php:2285
|
727 |
msgid "%d URL in the work queue"
|
728 |
msgid_plural "%d URLs in the work queue"
|
729 |
msgstr[0] ""
|
730 |
msgstr[1] ""
|
731 |
|
732 |
+
#: core/core.php:2288
|
733 |
msgid "No URLs in the work queue."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: core/core.php:2294
|
737 |
msgid "Detected %d unique URL"
|
738 |
msgid_plural "Detected %d unique URLs"
|
739 |
msgstr[0] ""
|
740 |
msgstr[1] ""
|
741 |
|
742 |
+
#: core/core.php:2295
|
743 |
msgid "in %d link"
|
744 |
msgid_plural "in %d links"
|
745 |
msgstr[0] ""
|
746 |
msgstr[1] ""
|
747 |
|
748 |
+
#: core/core.php:2300
|
749 |
msgid "and still searching..."
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: core/core.php:2306
|
753 |
msgid "Searching your blog for links..."
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: core/core.php:2308
|
757 |
msgid "No links detected."
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: core/core.php:2334
|
761 |
msgctxt "current load"
|
762 |
msgid "Unknown"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: core/core.php:2398 core/core.php:2436 core/core.php:2499
|
766 |
msgid "Oops, I can't find the link %d"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: core/core.php:2411
|
770 |
msgid "Oops, couldn't modify the link!"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: core/core.php:2414 core/core.php:2525
|
774 |
msgid "Error : link_id not specified"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: core/core.php:2446
|
778 |
msgid "Oops, the new URL is invalid!"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: core/core.php:2457 core/core.php:2508
|
782 |
msgid "An unexpected error occured!"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: core/core.php:2475
|
786 |
msgid "Error : link_id or new_url not specified"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: core/core.php:2534
|
790 |
msgid "You don't have sufficient privileges to access this information!"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: core/core.php:2547
|
794 |
msgid "Error : link ID not specified"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: core/core.php:2561
|
798 |
msgid "Failed to load link details (%s)"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#. #-#-#-#-# plugin.pot (Broken Link Checker 1.3.1) #-#-#-#-#
|
802 |
#. Plugin Name of the plugin/theme
|
803 |
+
#: core/core.php:2614
|
804 |
msgid "Broken Link Checker"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: core/core.php:2634
|
808 |
msgid "PHP version"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: core/core.php:2640
|
812 |
msgid "MySQL version"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: core/core.php:2653
|
816 |
msgid ""
|
817 |
"You have an old version of CURL. Redirect detection may not work properly."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: core/core.php:2665 core/core.php:2681 core/core.php:2686
|
821 |
msgid "Not installed"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: core/core.php:2668
|
825 |
msgid "CURL version"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: core/core.php:2674
|
829 |
msgid "Installed"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: core/core.php:2687
|
833 |
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: core/core.php:2698
|
837 |
msgid "On"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: core/core.php:2699
|
841 |
msgid "Redirects may be detected as broken links when safe_mode is on."
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: core/core.php:2704 core/core.php:2718
|
845 |
msgid "Off"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: core/core.php:2712
|
849 |
msgid "On ( %s )"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: core/core.php:2713
|
853 |
msgid "Redirects may be detected as broken links when open_basedir is on."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: core/core.php:2742
|
857 |
msgid ""
|
858 |
"If this value is zero even after several page reloads you have probably "
|
859 |
"encountered a bug."
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: core/core.php:2833 core/core.php:2931
|
863 |
msgid "[%s] Broken links detected"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: core/core.php:2838
|
867 |
msgid "Broken Link Checker has detected %d new broken link on your site."
|
868 |
msgid_plural ""
|
869 |
"Broken Link Checker has detected %d new broken links on your site."
|
870 |
msgstr[0] ""
|
871 |
msgstr[1] ""
|
872 |
|
873 |
+
#: core/core.php:2861
|
874 |
msgid "Here's a list of the first %d broken links:"
|
875 |
msgid_plural "Here's a list of the first %d broken links:"
|
876 |
msgstr[0] ""
|
877 |
msgstr[1] ""
|
878 |
|
879 |
+
#: core/core.php:2870
|
880 |
msgid "Here's a list of the new broken links: "
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: core/core.php:2879
|
884 |
msgid "Link text : %s"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: core/core.php:2880
|
888 |
msgid "Link URL : <a href=\"%s\">%s</a>"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: core/core.php:2881
|
892 |
msgid "Source : %s"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: core/core.php:2894
|
896 |
msgid "You can see all broken links here:"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: core/core.php:2936
|
900 |
+
msgid "Broken Link Checker has detected %d new broken link in your posts."
|
901 |
+
msgid_plural ""
|
902 |
+
"Broken Link Checker has detected %d new broken links in your posts."
|
903 |
msgstr[0] ""
|
904 |
msgstr[1] ""
|
905 |
|
906 |
+
#: includes/admin/links-page-js.php:58 includes/admin/links-page-js.php:301
|
907 |
+
msgid "Wait..."
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/admin/links-page-js.php:99 includes/admin/table-printer.php:616
|
911 |
+
msgid "Not broken"
|
912 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
913 |
|
914 |
+
#: includes/admin/links-page-js.php:213
|
915 |
+
msgid "%d instances of the link were successfully modified."
|
916 |
+
msgstr ""
|
|
|
|
|
917 |
|
918 |
+
#: includes/admin/links-page-js.php:219
|
919 |
+
msgid ""
|
920 |
+
"However, %d instances couldn't be edited and still point to the old URL."
|
921 |
+
msgstr ""
|
|
|
922 |
|
923 |
+
#: includes/admin/links-page-js.php:225
|
924 |
+
msgid "The link could not be modified."
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: includes/admin/links-page-js.php:228 includes/admin/links-page-js.php:353
|
928 |
+
msgid "The following error(s) occured :"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: includes/admin/links-page-js.php:339
|
932 |
+
msgid "%d instances of the link were successfully unlinked."
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: includes/admin/links-page-js.php:345
|
936 |
+
msgid "However, %d instances couldn't be removed."
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: includes/admin/links-page-js.php:350
|
940 |
+
msgid "The plugin failed to remove the link."
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: includes/admin/links-page-js.php:361 includes/admin/table-printer.php:266
|
944 |
+
#: includes/admin/table-printer.php:610
|
945 |
+
msgid "Unlink"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: includes/admin/links-page-js.php:405
|
949 |
+
msgid "Enter a name for the new custom filter"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: includes/admin/links-page-js.php:416
|
953 |
msgid ""
|
954 |
+
"You are about to delete the current filter.\n"
|
955 |
+
"'Cancel' to stop, 'OK' to delete"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: includes/admin/links-page-js.php:439
|
959 |
+
msgid ""
|
960 |
+
"Are you sure you want to delete all posts, bookmarks or other items that "
|
961 |
+
"contain any of the selected links? This action can't be undone.\n"
|
962 |
+
"'Cancel' to stop, 'OK' to delete"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: includes/admin/links-page-js.php:449
|
966 |
msgid ""
|
967 |
+
"Are you sure you want to remove the selected links? This action can't be "
|
968 |
+
"undone.\n"
|
969 |
+
"'Cancel' to stop, 'OK' to remove"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: includes/admin/links-page-js.php:558
|
973 |
+
msgid "Enter a search string first."
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: includes/admin/links-page-js.php:565
|
977 |
+
msgid "Select one or more links to edit."
|
978 |
msgstr ""
|
979 |
|
980 |
#: includes/admin/search-form.php:16
|
993 |
msgid "Link text"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: includes/admin/search-form.php:45 includes/admin/table-printer.php:200
|
997 |
msgid "URL"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: includes/admin/search-form.php:48 includes/admin/table-printer.php:484
|
1001 |
msgid "HTTP code"
|
1002 |
msgstr ""
|
1003 |
|
1021 |
msgid "Search Links"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: includes/admin/search-form.php:113 includes/admin/table-printer.php:342
|
1025 |
+
#: includes/admin/table-printer.php:624 includes/admin/table-printer.php:630
|
1026 |
msgid "Cancel"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: includes/admin/sidebar.php:2
|
1030 |
+
msgid "Donate $10, $20 or $50!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: includes/admin/sidebar.php:5
|
1034 |
msgid ""
|
1035 |
+
"If you like this plugin, please donate to support development and "
|
1036 |
+
"maintenance!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: includes/admin/sidebar.php:22
|
1040 |
+
msgid "Return to WordPress Dashboard"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
#: includes/admin/options-page-js.php:54
|
1044 |
msgid "Hide debug info"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: includes/admin/table-printer.php:177
|
1048 |
msgid "Compact View"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: includes/admin/table-printer.php:178
|
1052 |
msgid "Detailed View"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: includes/admin/table-printer.php:207
|
1056 |
msgid "Source"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: includes/admin/table-printer.php:213
|
1060 |
msgid "Link Text"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: includes/admin/table-printer.php:261
|
1064 |
msgid "Bulk Actions"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: includes/admin/table-printer.php:262 includes/admin/table-printer.php:607
|
1068 |
msgid "Edit URL"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: includes/admin/table-printer.php:263
|
1072 |
msgid "Recheck"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: includes/admin/table-printer.php:264
|
1076 |
msgid "Fix redirects"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: includes/admin/table-printer.php:265
|
1080 |
msgid "Mark as not broken"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: includes/admin/table-printer.php:269
|
1084 |
msgid "Move sources to Trash"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: includes/admin/table-printer.php:271
|
1088 |
msgid "Delete sources"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: includes/admin/table-printer.php:286
|
1092 |
msgid "«"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: includes/admin/table-printer.php:287
|
1096 |
msgid "»"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: includes/admin/table-printer.php:295
|
1100 |
msgid "Displaying %s–%s of <span class=\"current-link-count\">%s</span>"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: includes/admin/table-printer.php:318
|
1104 |
msgid "Bulk Edit URLs"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: includes/admin/table-printer.php:320
|
1108 |
msgid "Find"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/admin/table-printer.php:324
|
1112 |
msgid "Replace with"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/admin/table-printer.php:332
|
1116 |
msgid "Case sensitive"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: includes/admin/table-printer.php:336
|
1120 |
msgid "Regular expression"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: includes/admin/table-printer.php:344
|
1124 |
msgid "Update"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: includes/admin/table-printer.php:469
|
1128 |
msgid "Post published on"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: includes/admin/table-printer.php:474
|
1132 |
msgid "Link last checked"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: includes/admin/table-printer.php:478
|
1136 |
msgid "Never"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: includes/admin/table-printer.php:489
|
1140 |
msgid "Response time"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: includes/admin/table-printer.php:491
|
1144 |
msgid "%2.3f seconds"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: includes/admin/table-printer.php:494
|
1148 |
msgid "Final URL"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: includes/admin/table-printer.php:499
|
1152 |
msgid "Redirect count"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/admin/table-printer.php:504
|
1156 |
msgid "Instance count"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/admin/table-printer.php:513
|
1160 |
msgid "This link has failed %d time."
|
1161 |
msgid_plural "This link has failed %d times."
|
1162 |
msgstr[0] ""
|
1163 |
msgstr[1] ""
|
1164 |
|
1165 |
+
#: includes/admin/table-printer.php:521
|
1166 |
msgid "This link has been broken for %s."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: includes/admin/table-printer.php:532
|
1170 |
msgid "Log"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: includes/admin/table-printer.php:553
|
1174 |
msgid "Show more info about this link"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/admin/table-printer.php:571
|
1178 |
msgctxt "checked how long ago"
|
1179 |
msgid "Checked"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/admin/table-printer.php:587
|
1183 |
msgid "Broken for"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/admin/table-printer.php:607
|
1187 |
msgid "Edit link URL"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: includes/admin/table-printer.php:609
|
1191 |
msgid "Remove this link from all posts"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: includes/admin/table-printer.php:615
|
1195 |
msgid "Remove this link from the list of broken links and mark it as valid"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: includes/admin/table-printer.php:624
|
1199 |
msgid "Cancel URL editing"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: includes/admin/table-printer.php:631
|
1203 |
msgid "Update URL"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: includes/admin/table-printer.php:653
|
1207 |
msgid "[An orphaned link! This is a bug.]"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: includes/admin/db-upgrade.php:95
|
1211 |
+
msgid "Failed to delete old DB tables. Database error : %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: includes/parsers.php:109
|
1215 |
+
msgid "Editing is not implemented in the '%s' parser"
|
|
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: includes/parsers.php:124
|
1219 |
+
msgid "Unlinking is not implemented in the '%s' parser"
|
|
|
1220 |
msgstr ""
|
1221 |
|
1222 |
#: includes/link-query.php:25
|
1259 |
msgid "No links found for your query"
|
1260 |
msgstr ""
|
1261 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1262 |
#: includes/any-post.php:427
|
1263 |
msgid "Preview “%s”"
|
1264 |
msgstr ""
|
1311 |
msgstr[0] ""
|
1312 |
msgstr[1] ""
|
1313 |
|
1314 |
+
#: includes/containers.php:122
|
1315 |
+
msgid "%d '%s' has been deleted"
|
1316 |
+
msgid_plural "%d '%s' have been deleted"
|
1317 |
+
msgstr[0] ""
|
1318 |
+
msgstr[1] ""
|
1319 |
+
|
1320 |
+
#: includes/containers.php:873 includes/containers.php:891
|
1321 |
+
msgid "Container type '%s' not recognized"
|
1322 |
+
msgstr ""
|
1323 |
+
|
1324 |
+
#: includes/links.php:215
|
1325 |
+
msgid "The plugin script was terminated while trying to check the link."
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: includes/links.php:261
|
1329 |
+
msgid "The plugin doesn't know how to check this type of link."
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: includes/links.php:349
|
1333 |
+
msgid "Link is valid."
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: includes/links.php:351
|
1337 |
+
msgid "Link is broken."
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
+
#: includes/links.php:564 includes/links.php:666 includes/links.php:693
|
1341 |
+
msgid "Link is not valid"
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: includes/links.php:581
|
1345 |
+
msgid ""
|
1346 |
+
"This link can not be edited because it is not used anywhere on this site."
|
1347 |
+
msgstr ""
|
1348 |
+
|
1349 |
+
#: includes/links.php:607
|
1350 |
+
msgid "Failed to create a DB entry for the new URL."
|
1351 |
+
msgstr ""
|
1352 |
+
|
1353 |
+
#: includes/links.php:673
|
1354 |
+
msgid "This link is not a redirect"
|
1355 |
+
msgstr ""
|
1356 |
+
|
1357 |
+
#: includes/links.php:720 includes/links.php:757
|
1358 |
+
msgid "Couldn't delete the link's database record"
|
1359 |
+
msgstr ""
|
1360 |
+
|
1361 |
+
#: includes/links.php:831
|
1362 |
+
msgctxt "link status"
|
1363 |
+
msgid "Unknown"
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: includes/links.php:869
|
1367 |
+
msgid "Not checked"
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: includes/links.php:872
|
1371 |
+
msgid "False positive"
|
1372 |
+
msgstr ""
|
1373 |
+
|
1374 |
+
#: includes/extra-strings.php:2
|
1375 |
+
msgctxt "module name"
|
1376 |
+
msgid "Basic HTTP"
|
1377 |
+
msgstr ""
|
1378 |
+
|
1379 |
+
#: includes/extra-strings.php:3
|
1380 |
+
msgctxt "module name"
|
1381 |
+
msgid "Blogroll items"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: includes/extra-strings.php:4
|
1385 |
+
msgctxt "module name"
|
1386 |
+
msgid "Comments"
|
1387 |
+
msgstr ""
|
1388 |
+
|
1389 |
+
#: includes/extra-strings.php:5
|
1390 |
+
msgctxt "module name"
|
1391 |
+
msgid "Custom fields"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: includes/extra-strings.php:6
|
1395 |
+
msgctxt "module name"
|
1396 |
+
msgid "Embedded DailyMotion videos"
|
1397 |
+
msgstr ""
|
1398 |
+
|
1399 |
+
#: includes/extra-strings.php:7
|
1400 |
+
msgctxt "module name"
|
1401 |
+
msgid "Embedded Vimeo videos"
|
1402 |
+
msgstr ""
|
1403 |
+
|
1404 |
+
#: includes/extra-strings.php:8
|
1405 |
+
msgctxt "module name"
|
1406 |
+
msgid "Embedded YouTube videos"
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: includes/extra-strings.php:9
|
1410 |
+
msgctxt "module name"
|
1411 |
+
msgid "Embedded YouTube videos (old embed code)"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: includes/extra-strings.php:10
|
1415 |
+
msgctxt "module name"
|
1416 |
+
msgid "HTML images"
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: includes/extra-strings.php:11
|
1420 |
+
msgctxt "module name"
|
1421 |
+
msgid "HTML links"
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: includes/extra-strings.php:12
|
1425 |
+
msgctxt "module name"
|
1426 |
+
msgid "MediaFire API"
|
1427 |
+
msgstr ""
|
1428 |
+
|
1429 |
+
#: includes/extra-strings.php:13
|
1430 |
+
msgctxt "module name"
|
1431 |
+
msgid "MegaUpload API"
|
1432 |
+
msgstr ""
|
1433 |
+
|
1434 |
+
#: includes/extra-strings.php:14
|
1435 |
+
msgctxt "module name"
|
1436 |
+
msgid "Plaintext URLs"
|
1437 |
+
msgstr ""
|
1438 |
+
|
1439 |
+
#: includes/extra-strings.php:15
|
1440 |
+
msgctxt "module name"
|
1441 |
+
msgid "RapidShare API"
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: includes/extra-strings.php:16
|
1445 |
+
msgctxt "module name"
|
1446 |
+
msgid "YouTube API"
|
1447 |
+
msgstr ""
|
1448 |
+
|
1449 |
+
#: includes/extra-strings.php:17
|
1450 |
+
msgctxt "module name"
|
1451 |
+
msgid "Posts"
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: includes/extra-strings.php:18
|
1455 |
+
msgctxt "module name"
|
1456 |
+
msgid "Pages"
|
1457 |
+
msgstr ""
|
1458 |
+
|
1459 |
+
#: includes/utility-class.php:244
|
1460 |
+
msgid "%d second"
|
1461 |
+
msgid_plural "%d seconds"
|
1462 |
+
msgstr[0] ""
|
1463 |
+
msgstr[1] ""
|
1464 |
+
|
1465 |
+
#: includes/utility-class.php:245
|
1466 |
+
msgid "%d second ago"
|
1467 |
+
msgid_plural "%d seconds ago"
|
1468 |
+
msgstr[0] ""
|
1469 |
+
msgstr[1] ""
|
1470 |
+
|
1471 |
+
#: includes/utility-class.php:248
|
1472 |
+
msgid "%d minute"
|
1473 |
+
msgid_plural "%d minutes"
|
1474 |
+
msgstr[0] ""
|
1475 |
+
msgstr[1] ""
|
1476 |
+
|
1477 |
+
#: includes/utility-class.php:249
|
1478 |
+
msgid "%d minute ago"
|
1479 |
+
msgid_plural "%d minutes ago"
|
1480 |
+
msgstr[0] ""
|
1481 |
+
msgstr[1] ""
|
1482 |
+
|
1483 |
+
#: includes/utility-class.php:252
|
1484 |
+
msgid "%d hour"
|
1485 |
+
msgid_plural "%d hours"
|
1486 |
+
msgstr[0] ""
|
1487 |
+
msgstr[1] ""
|
1488 |
+
|
1489 |
+
#: includes/utility-class.php:253
|
1490 |
+
msgid "%d hour ago"
|
1491 |
+
msgid_plural "%d hours ago"
|
1492 |
+
msgstr[0] ""
|
1493 |
+
msgstr[1] ""
|
1494 |
+
|
1495 |
+
#: includes/utility-class.php:256
|
1496 |
+
msgid "%d day"
|
1497 |
+
msgid_plural "%d days"
|
1498 |
+
msgstr[0] ""
|
1499 |
+
msgstr[1] ""
|
1500 |
+
|
1501 |
+
#: includes/utility-class.php:257
|
1502 |
+
msgid "%d day ago"
|
1503 |
+
msgid_plural "%d days ago"
|
1504 |
+
msgstr[0] ""
|
1505 |
+
msgstr[1] ""
|
1506 |
+
|
1507 |
+
#: includes/utility-class.php:260
|
1508 |
+
msgid "%d month"
|
1509 |
+
msgid_plural "%d months"
|
1510 |
+
msgstr[0] ""
|
1511 |
+
msgstr[1] ""
|
1512 |
+
|
1513 |
+
#: includes/utility-class.php:261
|
1514 |
+
msgid "%d month ago"
|
1515 |
+
msgid_plural "%d months ago"
|
1516 |
+
msgstr[0] ""
|
1517 |
+
msgstr[1] ""
|
1518 |
+
|
1519 |
+
#: includes/instances.php:102 includes/instances.php:158
|
1520 |
+
msgid "Container %s[%d] not found"
|
1521 |
+
msgstr ""
|
1522 |
+
|
1523 |
+
#: includes/instances.php:111 includes/instances.php:167
|
1524 |
+
msgid "Parser '%s' not found."
|
1525 |
+
msgstr ""
|
1526 |
+
|
1527 |
#. Plugin URI of the plugin/theme
|
1528 |
msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
|
1529 |
msgstr ""
|
modules/containers/comment.php
CHANGED
@@ -75,7 +75,7 @@ class blcComment extends blcContainer{
|
|
75 |
$this->container_id
|
76 |
)
|
77 |
);
|
78 |
-
}
|
79 |
}
|
80 |
}
|
81 |
|
@@ -96,7 +96,7 @@ class blcComment extends blcContainer{
|
|
96 |
$this->container_id
|
97 |
)
|
98 |
);
|
99 |
-
}
|
100 |
}
|
101 |
|
102 |
/**
|
@@ -145,7 +145,7 @@ class blcComment extends blcContainer{
|
|
145 |
$actions = array();
|
146 |
|
147 |
$comment = $this->get_wrapped_object();
|
148 |
-
$post = get_post($comment->comment_post_ID);
|
149 |
|
150 |
//Display Edit & Delete/Trash links only if the user has the right caps.
|
151 |
$user_can = current_user_can('edit_post', $comment->comment_post_ID);
|
@@ -226,64 +226,49 @@ class blcCommentManager extends blcContainerManager {
|
|
226 |
function init(){
|
227 |
parent::init();
|
228 |
|
229 |
-
add_action('
|
230 |
-
add_action('
|
231 |
-
add_action('untrashed_comment', array(&$this, 'hook_modified_comment'));
|
232 |
-
|
233 |
-
add_action('wp_insert_comment', array(&$this, 'hook_wp_insert_comment'), 10, 2);
|
234 |
-
|
235 |
-
add_action('deleted_comment', array(&$this, 'hook_deleted_comment'));
|
236 |
-
add_action('spammed_comment', array(&$this, 'hook_deleted_comment'));
|
237 |
-
add_action('trashed_comment', array(&$this, 'hook_deleted_comment'));
|
238 |
-
|
239 |
add_action('transition_comment_status', array(&$this, 'hook_comment_status'), 10, 3);
|
240 |
|
241 |
add_action('trashed_post_comments', array(&$this, 'hook_trashed_post_comments'), 10, 2);
|
242 |
add_action('untrash_post_comments', array(&$this, 'hook_untrash_post_comments'));
|
243 |
}
|
244 |
-
|
245 |
-
function
|
246 |
-
$
|
247 |
-
|
248 |
-
if ( $comment->comment_approved == '1'){
|
249 |
$container = blcContainerHelper::get_container(array($this->container_type, $comment_id));
|
250 |
$container->mark_as_unsynched();
|
251 |
}
|
252 |
}
|
253 |
-
|
254 |
-
function
|
255 |
-
if ( $
|
256 |
$container = blcContainerHelper::get_container(array($this->container_type, $comment_id));
|
257 |
$container->mark_as_unsynched();
|
258 |
}
|
259 |
}
|
260 |
|
261 |
-
function hook_deleted_comment($comment_ids){
|
262 |
-
if ( !is_array($comment_ids) ){
|
263 |
-
$comment_ids = array($comment_ids);
|
264 |
-
}
|
265 |
-
|
266 |
-
foreach($comment_ids as $comment_id){
|
267 |
-
$container = blcContainerHelper::get_container(array($this->container_type, $comment_id));
|
268 |
-
$container->delete();
|
269 |
-
}
|
270 |
-
//Clean up any dangling links
|
271 |
-
blc_cleanup_links();
|
272 |
-
}
|
273 |
-
|
274 |
function hook_comment_status($new_status, $old_status, $comment){
|
275 |
-
|
276 |
-
if ( $new_status == 'approved' ){
|
277 |
-
$container->
|
278 |
-
|
279 |
-
|
280 |
-
|
|
|
|
|
|
|
281 |
}
|
282 |
}
|
283 |
|
284 |
function hook_trashed_post_comments($post_id, $statuses){
|
285 |
-
$
|
286 |
-
|
|
|
|
|
|
|
|
|
|
|
287 |
}
|
288 |
|
289 |
function hook_untrash_post_comments($post_id){
|
@@ -293,7 +278,6 @@ class blcCommentManager extends blcContainerManager {
|
|
293 |
$statuses = get_post_meta($post_id, '_wp_trash_meta_comments_status', true);
|
294 |
if ( empty($statuses) || !is_array($statuses) ) return;
|
295 |
|
296 |
-
$comment_ids = array();
|
297 |
foreach ( $statuses as $comment_id => $comment_status ){
|
298 |
if ( $comment_status == '1' ){ //if approved
|
299 |
$container = blcContainerHelper::get_container(array($this->container_type, $comment_id));
|
@@ -309,7 +293,7 @@ class blcCommentManager extends blcContainerManager {
|
|
309 |
* @return void
|
310 |
*/
|
311 |
function resynch($forced = false){
|
312 |
-
global $wpdb;
|
313 |
global $blclog;
|
314 |
|
315 |
if ( $forced ){
|
@@ -407,7 +391,7 @@ class blcCommentManager extends blcContainerManager {
|
|
407 |
* @return array of blcPostContainer indexed by "container_type|container_id"
|
408 |
*/
|
409 |
function get_containers($containers, $purpose = '', $load_wrapped_objects = false){
|
410 |
-
global $wpdb;
|
411 |
|
412 |
$containers = $this->make_containers($containers);
|
413 |
|
@@ -415,7 +399,7 @@ class blcCommentManager extends blcContainerManager {
|
|
415 |
$preload = $load_wrapped_objects || in_array($purpose, array(BLC_FOR_DISPLAY, BLC_FOR_PARSING));
|
416 |
if ( $preload ){
|
417 |
$comment_ids = array();
|
418 |
-
foreach($containers as $container){
|
419 |
$comment_ids[] = $container->container_id;
|
420 |
}
|
421 |
|
@@ -426,7 +410,7 @@ class blcCommentManager extends blcContainerManager {
|
|
426 |
|
427 |
foreach($comments as $comment){
|
428 |
//Cache the comment in the internal WP object cache
|
429 |
-
$comment = get_comment($comment);
|
430 |
|
431 |
//Attach it to the container
|
432 |
$key = $this->container_type . '|' . $comment->comment_ID;
|
75 |
$this->container_id
|
76 |
)
|
77 |
);
|
78 |
+
}
|
79 |
}
|
80 |
}
|
81 |
|
96 |
$this->container_id
|
97 |
)
|
98 |
);
|
99 |
+
}
|
100 |
}
|
101 |
|
102 |
/**
|
145 |
$actions = array();
|
146 |
|
147 |
$comment = $this->get_wrapped_object();
|
148 |
+
$post = get_post($comment->comment_post_ID); /* @var StdClass $post */
|
149 |
|
150 |
//Display Edit & Delete/Trash links only if the user has the right caps.
|
151 |
$user_can = current_user_can('edit_post', $comment->comment_post_ID);
|
226 |
function init(){
|
227 |
parent::init();
|
228 |
|
229 |
+
add_action('post_comment', array(&$this, 'hook_post_comment'), 10, 2);
|
230 |
+
add_action('edit_comment', array(&$this, 'hook_edit_comment'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
add_action('transition_comment_status', array(&$this, 'hook_comment_status'), 10, 3);
|
232 |
|
233 |
add_action('trashed_post_comments', array(&$this, 'hook_trashed_post_comments'), 10, 2);
|
234 |
add_action('untrash_post_comments', array(&$this, 'hook_untrash_post_comments'));
|
235 |
}
|
236 |
+
|
237 |
+
function hook_post_comment($comment_id, $comment_status){
|
238 |
+
if ( $comment_status == '1' ) {
|
|
|
|
|
239 |
$container = blcContainerHelper::get_container(array($this->container_type, $comment_id));
|
240 |
$container->mark_as_unsynched();
|
241 |
}
|
242 |
}
|
243 |
+
|
244 |
+
function hook_edit_comment($comment_id){
|
245 |
+
if ( wp_get_comment_status($comment_id) == 'approved' ){
|
246 |
$container = blcContainerHelper::get_container(array($this->container_type, $comment_id));
|
247 |
$container->mark_as_unsynched();
|
248 |
}
|
249 |
}
|
250 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
function hook_comment_status($new_status, $old_status, $comment){
|
252 |
+
//We only care about approved comments.
|
253 |
+
if ( ($new_status == 'approved') || ($old_status == 'approved') ){
|
254 |
+
$container = blcContainerHelper::get_container(array($this->container_type, $comment->comment_ID));
|
255 |
+
if ($new_status == 'approved') {
|
256 |
+
$container->mark_as_unsynched();
|
257 |
+
} else {
|
258 |
+
$container->delete();
|
259 |
+
blc_cleanup_links();
|
260 |
+
}
|
261 |
}
|
262 |
}
|
263 |
|
264 |
function hook_trashed_post_comments($post_id, $statuses){
|
265 |
+
foreach($statuses as $comment_id => $comment_status){
|
266 |
+
if ( $comment_status == '1' ){
|
267 |
+
$container = blcContainerHelper::get_container(array($this->container_type, $comment_id));
|
268 |
+
$container->delete();
|
269 |
+
}
|
270 |
+
}
|
271 |
+
blc_cleanup_links();
|
272 |
}
|
273 |
|
274 |
function hook_untrash_post_comments($post_id){
|
278 |
$statuses = get_post_meta($post_id, '_wp_trash_meta_comments_status', true);
|
279 |
if ( empty($statuses) || !is_array($statuses) ) return;
|
280 |
|
|
|
281 |
foreach ( $statuses as $comment_id => $comment_status ){
|
282 |
if ( $comment_status == '1' ){ //if approved
|
283 |
$container = blcContainerHelper::get_container(array($this->container_type, $comment_id));
|
293 |
* @return void
|
294 |
*/
|
295 |
function resynch($forced = false){
|
296 |
+
global $wpdb; /* @var wpdb $wpdb */
|
297 |
global $blclog;
|
298 |
|
299 |
if ( $forced ){
|
391 |
* @return array of blcPostContainer indexed by "container_type|container_id"
|
392 |
*/
|
393 |
function get_containers($containers, $purpose = '', $load_wrapped_objects = false){
|
394 |
+
global $wpdb; /* @var wpdb $wpdb */
|
395 |
|
396 |
$containers = $this->make_containers($containers);
|
397 |
|
399 |
$preload = $load_wrapped_objects || in_array($purpose, array(BLC_FOR_DISPLAY, BLC_FOR_PARSING));
|
400 |
if ( $preload ){
|
401 |
$comment_ids = array();
|
402 |
+
foreach($containers as $container){ /* @var blcContainer $container */
|
403 |
$comment_ids[] = $container->container_id;
|
404 |
}
|
405 |
|
410 |
|
411 |
foreach($comments as $comment){
|
412 |
//Cache the comment in the internal WP object cache
|
413 |
+
$comment = get_comment($comment); /* @var StdClass $comment */
|
414 |
|
415 |
//Attach it to the container
|
416 |
$key = $this->container_type . '|' . $comment->comment_ID;
|
modules/extras/youtube.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/*
|
4 |
Plugin Name: YouTube API
|
5 |
Description: Check links to YouTube videos using the YouTube API.
|
6 |
-
Version: 1.
|
7 |
Author: Janis Elsts
|
8 |
|
9 |
ModuleID: youtube-checker
|
@@ -17,12 +17,21 @@ ModuleCheckerUrlPattern: @^http://([\w\d]+\.)*youtube\.[^/]+/watch\?.*v=[^/#]@i
|
|
17 |
*/
|
18 |
|
19 |
class blcYouTubeChecker extends blcChecker {
|
|
|
|
|
|
|
20 |
|
21 |
function can_check($url, $parsed){
|
22 |
return true;
|
23 |
}
|
24 |
|
25 |
function check($url){
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
$result = array(
|
27 |
'final_url' => $url,
|
28 |
'redirect_count' => 0,
|
@@ -38,13 +47,14 @@ class blcYouTubeChecker extends blcChecker {
|
|
38 |
$video_id = $query['v'];
|
39 |
|
40 |
//Fetch video data from the YouTube API
|
41 |
-
$api_url = 'http://gdata.youtube.com/feeds/api/videos/' . $video_id;
|
42 |
$conf = blc_get_configuration();
|
43 |
$args = array( 'timeout' => $conf->options['timeout'], );
|
44 |
|
45 |
$start = microtime_float();
|
46 |
$response = wp_remote_get($api_url, $args);
|
47 |
$result['request_duration'] = microtime_float() - $start;
|
|
|
48 |
|
49 |
//Placeholders for video restriction data
|
50 |
$state_name = $state_reason = '';
|
3 |
/*
|
4 |
Plugin Name: YouTube API
|
5 |
Description: Check links to YouTube videos using the YouTube API.
|
6 |
+
Version: 1.1
|
7 |
Author: Janis Elsts
|
8 |
|
9 |
ModuleID: youtube-checker
|
17 |
*/
|
18 |
|
19 |
class blcYouTubeChecker extends blcChecker {
|
20 |
+
var $youtube_developer_key = 'AI39si4OM05fWUMbt1g8hBdYPRTGpNbOWVD0-7sKwShqZTOpKigo7Moj1YGk7dMk95-VWB1Iue2aiTNJb655L32-QGM2xq_yVQ';
|
21 |
+
var $api_grace_period = 0.3; //How long to wait between YouTube API requests.
|
22 |
+
var $last_api_request = 0; //Timestamp of the last request.
|
23 |
|
24 |
function can_check($url, $parsed){
|
25 |
return true;
|
26 |
}
|
27 |
|
28 |
function check($url){
|
29 |
+
//Throttle API requests to avoid getting blocked due to quota violation.
|
30 |
+
$delta = microtime_float() - $this->last_api_request;
|
31 |
+
if ( $delta < $this->api_grace_period ) {
|
32 |
+
usleep(($this->api_grace_period - $delta) * 1000000);
|
33 |
+
}
|
34 |
+
|
35 |
$result = array(
|
36 |
'final_url' => $url,
|
37 |
'redirect_count' => 0,
|
47 |
$video_id = $query['v'];
|
48 |
|
49 |
//Fetch video data from the YouTube API
|
50 |
+
$api_url = 'http://gdata.youtube.com/feeds/api/videos/' . $video_id . '?key=' . urlencode($this->youtube_developer_key);
|
51 |
$conf = blc_get_configuration();
|
52 |
$args = array( 'timeout' => $conf->options['timeout'], );
|
53 |
|
54 |
$start = microtime_float();
|
55 |
$response = wp_remote_get($api_url, $args);
|
56 |
$result['request_duration'] = microtime_float() - $start;
|
57 |
+
$this->last_api_request = $start;
|
58 |
|
59 |
//Placeholders for video restriction data
|
60 |
$state_name = $state_reason = '';
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: whiteshadow
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
5 |
Requires at least: 3.2
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 1.
|
8 |
|
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 |
|
@@ -43,6 +43,7 @@ You can also click on the contents of the "Status" or "Link Text" columns to get
|
|
43 |
**Translations**
|
44 |
|
45 |
* Belorussian - [M. Comfi](http://www.comfi.com/)
|
|
|
46 |
* Chinese Simplified - [Hank Yang](http://wenzhu.org/)
|
47 |
* Chinese Traditional - [YILIN](http://sh2153.com)
|
48 |
* Czech - [Lelkoun](http://lelkoun.cz/)
|
@@ -88,6 +89,17 @@ To upgrade your installation
|
|
88 |
|
89 |
== Changelog ==
|
90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
= 1.3.1 =
|
92 |
* Added support for the new YouTube embed code style. It needs to be explicitly enabled in options.
|
93 |
* Added credits link for the Persian language translator.
|
@@ -547,5 +559,8 @@ To upgrade your installation
|
|
547 |
|
548 |
== Upgrade Notice ==
|
549 |
|
|
|
|
|
|
|
550 |
= 0.9.4.2 =
|
551 |
Fixes a major PHP4 compatibility problem introduced in version 0.9.4 and adds a notification bubble with the current broken link count to the "Broken Links" menu.
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
|
4 |
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
5 |
Requires at least: 3.2
|
6 |
+
Tested up to: 3.3
|
7 |
+
Stable tag: 1.4
|
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 |
|
43 |
**Translations**
|
44 |
|
45 |
* Belorussian - [M. Comfi](http://www.comfi.com/)
|
46 |
+
* Bulgarian - [Ajoft Technologes](http://www.ajoft.com/)
|
47 |
* Chinese Simplified - [Hank Yang](http://wenzhu.org/)
|
48 |
* Chinese Traditional - [YILIN](http://sh2153.com)
|
49 |
* Czech - [Lelkoun](http://lelkoun.cz/)
|
89 |
|
90 |
== Changelog ==
|
91 |
|
92 |
+
= 1.4 =
|
93 |
+
* Added an option to send post authors notifications about broken links in their posts.
|
94 |
+
* Added the ability to sort links by URL (click the column header).
|
95 |
+
* Added YouTube API throttling to avoid going over the request quota, which could result in false positives on blogs with lots of YouTube videos.
|
96 |
+
* Added a Bulgarian translation.
|
97 |
+
* Updated Italian, German and Persian translations.
|
98 |
+
* Fixed a bug where the "Feedback" and other screen meta links wouldn't show up in WP 3.3.
|
99 |
+
* Fixed the tab CSS for the plugin settings page. Now they should be the right size and look the same in all modern browsers (tested in IE, Firefox, Chrome and Opera).
|
100 |
+
* Fixed drop-down arrows showing up on meta links that don't actually have dropdowns.
|
101 |
+
* Tested on WP 3.3 (RC2).
|
102 |
+
|
103 |
= 1.3.1 =
|
104 |
* Added support for the new YouTube embed code style. It needs to be explicitly enabled in options.
|
105 |
* Added credits link for the Persian language translator.
|
559 |
|
560 |
== Upgrade Notice ==
|
561 |
|
562 |
+
= 1.4 =
|
563 |
+
Adds an option to send post authors notifications about broken links in their posts and the the ability to sort links by URL, as well as a number of other updates and fixes.
|
564 |
+
|
565 |
= 0.9.4.2 =
|
566 |
Fixes a major PHP4 compatibility problem introduced in version 0.9.4 and adds a notification bubble with the current broken link count to the "Broken Links" menu.
|