Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 6.6 |
Comparing to | |
See all releases |
Code changes from version 6.5.2 to 6.6
- modules/widgets/index.php +4 -0
- modules/widgets/widgets.php +223 -0
- plugin/class.seo-ultimate.php +1 -1
- readme.txt +13 -4
- seo-ultimate.php +5 -5
- seo-ultimate.pot +962 -912
modules/widgets/index.php
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
header('Status: 403 Forbidden');
|
3 |
+
header('HTTP/1.1 403 Forbidden');
|
4 |
+
?>
|
modules/widgets/widgets.php
ADDED
@@ -0,0 +1,223 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Widgets Module
|
4 |
+
*
|
5 |
+
* @since 6.6
|
6 |
+
*/
|
7 |
+
|
8 |
+
if (class_exists('SU_Module')) {
|
9 |
+
|
10 |
+
class SU_Widgets extends SU_Module {
|
11 |
+
|
12 |
+
function get_module_title() { return __('SEO Ultimate Widgets', 'seo-ultimate'); }
|
13 |
+
function get_menu_title() { return false; }
|
14 |
+
function get_admin_url() { return 'widgets.php'; }
|
15 |
+
|
16 |
+
function __construct() {
|
17 |
+
add_action('widgets_init', array(&$this, 'register_widgets'));
|
18 |
+
}
|
19 |
+
|
20 |
+
function register_widgets() {
|
21 |
+
register_widget('SU_Widget_SiloedTerms');
|
22 |
+
|
23 |
+
if ($this->plugin->module_exists('footer-autolinks'))
|
24 |
+
register_widget('SU_Widget_FooterLinks');
|
25 |
+
}
|
26 |
+
}
|
27 |
+
|
28 |
+
}
|
29 |
+
|
30 |
+
if (class_exists('WP_Widget')) {
|
31 |
+
|
32 |
+
//Based on WordPress' WP_Widget_Categories & WP_Widget_Tag_Cloud
|
33 |
+
class SU_Widget_SiloedTerms extends WP_Widget {
|
34 |
+
|
35 |
+
function __construct() {
|
36 |
+
$widget_ops = array( 'description' => __( "On category archives, displays a list of child categories and/or posts in the category. Displays a list of top-level categories everywhere else. Powered by the SEO Ultimate plugin.", 'seo-ultimate' ) );
|
37 |
+
parent::__construct('su_siloed_terms', __('Siloed Categories', 'seo-ultimate'), $widget_ops);
|
38 |
+
}
|
39 |
+
|
40 |
+
function widget( $args, $instance ) {
|
41 |
+
global $wp_query;
|
42 |
+
|
43 |
+
extract( $args );
|
44 |
+
|
45 |
+
$current_taxonomy = $this->_get_current_taxonomy($instance);
|
46 |
+
|
47 |
+
if ( !empty($instance['title']) ) {
|
48 |
+
$title = $instance['title'];
|
49 |
+
} else {
|
50 |
+
if ( 'post_tag' == $current_taxonomy ) {
|
51 |
+
$title = __('Tags');
|
52 |
+
} else {
|
53 |
+
$tax = get_taxonomy($current_taxonomy);
|
54 |
+
$title = $tax->labels->name;
|
55 |
+
}
|
56 |
+
}
|
57 |
+
|
58 |
+
$title = apply_filters('widget_title', $title, $instance, $this->id_base);
|
59 |
+
$current_term = false;
|
60 |
+
$current_term_id = $current_post_id = 0;
|
61 |
+
|
62 |
+
if (suwp::is_tax($current_taxonomy)) {
|
63 |
+
$current_term = $wp_query->get_queried_object();
|
64 |
+
$current_term_id = $wp_query->get_queried_object_id();
|
65 |
+
$title = $current_term->name;
|
66 |
+
} elseif (is_singular()) {
|
67 |
+
$current_post_id = $wp_query->get_queried_object_id();
|
68 |
+
$post_terms = get_the_terms($current_post_id, $current_taxonomy);
|
69 |
+
if (is_array($post_terms) && count($post_terms)) {
|
70 |
+
$current_term = reset($post_terms);
|
71 |
+
$current_term_id = $current_term->term_id;
|
72 |
+
$title = $current_term->name;
|
73 |
+
}
|
74 |
+
}
|
75 |
+
|
76 |
+
echo $before_widget;
|
77 |
+
if ( $title )
|
78 |
+
echo $before_title . $title . $after_title;
|
79 |
+
|
80 |
+
$term_args = array('taxonomy' => $current_taxonomy, 'orderby' => 'name', 'show_count' => $instance['count'] ? '1' : '0', 'hierarchical' => '0', 'title_li' => '', 'parent' => $current_term_id, 'show_option_none' => false);
|
81 |
+
|
82 |
+
echo "\n\t\t<ul>\n";
|
83 |
+
|
84 |
+
if (!$current_term || is_taxonomy_hierarchical($current_taxonomy))
|
85 |
+
wp_list_categories($term_args);
|
86 |
+
|
87 |
+
if ($current_term) {
|
88 |
+
$child_posts = get_posts(array('taxonomy' => $current_taxonomy, 'term' => $current_term->slug, 'numberposts' => 5));
|
89 |
+
|
90 |
+
foreach ($child_posts as $child_post) {
|
91 |
+
|
92 |
+
$css_class = '';
|
93 |
+
if ($child_post->ID == $current_post_id)
|
94 |
+
$css_class = 'current_post_item';
|
95 |
+
|
96 |
+
echo "\n\t\t\t<li class=\"" . $css_class . '"><a href="' . get_permalink($child_post->ID) . '" title="' . esc_attr( wp_strip_all_tags( apply_filters( 'the_title', $child_post->post_title, $child_post->ID ) ) ) . '">' . apply_filters( 'the_title', $child_post->post_title, $child_post->ID ) . "</a></li>\n";
|
97 |
+
}
|
98 |
+
}
|
99 |
+
|
100 |
+
echo "\n\t\t</ul>\n";
|
101 |
+
|
102 |
+
echo $after_widget;
|
103 |
+
}
|
104 |
+
|
105 |
+
function update( $new_instance, $old_instance ) {
|
106 |
+
$instance = $old_instance;
|
107 |
+
$instance['title'] = strip_tags(stripslashes($new_instance['title']));
|
108 |
+
$instance['taxonomy'] = stripslashes($new_instance['taxonomy']);
|
109 |
+
$instance['count'] = !empty($new_instance['count']) ? 1 : 0;
|
110 |
+
|
111 |
+
return $instance;
|
112 |
+
}
|
113 |
+
|
114 |
+
function form( $instance ) {
|
115 |
+
$current_taxonomy = $this->_get_current_taxonomy($instance);
|
116 |
+
|
117 |
+
//Defaults
|
118 |
+
$instance = wp_parse_args( (array) $instance, array( 'title' => '') );
|
119 |
+
$title = esc_attr( $instance['title'] );
|
120 |
+
$count = isset($instance['count']) ? (bool) $instance['count'] :false;
|
121 |
+
?>
|
122 |
+
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title:' ); ?></label>
|
123 |
+
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
|
124 |
+
|
125 |
+
<p><input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>"<?php checked( $count ); ?> />
|
126 |
+
<label for="<?php echo $this->get_field_id('count'); ?>"><?php _e( 'Show post counts' ); ?></label></p>
|
127 |
+
|
128 |
+
<p><label for="<?php echo $this->get_field_id('taxonomy'); ?>"><?php _e('Taxonomy:') ?></label>
|
129 |
+
<select class="widefat" id="<?php echo $this->get_field_id('taxonomy'); ?>" name="<?php echo $this->get_field_name('taxonomy'); ?>">
|
130 |
+
<?php foreach ( get_object_taxonomies('post') as $taxonomy ) :
|
131 |
+
$tax = get_taxonomy($taxonomy);
|
132 |
+
if ( !$tax->show_tagcloud || empty($tax->labels->name) )
|
133 |
+
continue;
|
134 |
+
?>
|
135 |
+
<option value="<?php echo esc_attr($taxonomy) ?>" <?php selected($taxonomy, $current_taxonomy) ?>><?php echo $tax->labels->name; ?></option>
|
136 |
+
<?php endforeach; ?>
|
137 |
+
</select></p>
|
138 |
+
<?php
|
139 |
+
}
|
140 |
+
|
141 |
+
function _get_current_taxonomy($instance) {
|
142 |
+
if ( !empty($instance['taxonomy']) && taxonomy_exists($instance['taxonomy']) )
|
143 |
+
return $instance['taxonomy'];
|
144 |
+
|
145 |
+
return 'category';
|
146 |
+
}
|
147 |
+
|
148 |
+
}
|
149 |
+
|
150 |
+
class SU_Widget_FooterLinks extends WP_Widget {
|
151 |
+
|
152 |
+
function __construct() {
|
153 |
+
$widget_ops = array( 'description' => __( "Add this widget to display Deeplink Juggernaut’s Footer Links in a widget area of your choosing rather than the default wp_footer section. Powered by the SEO Ultimate plugin.", 'seo-ultimate' ) );
|
154 |
+
parent::__construct('su_footer_autolinks', __('Footer Links', 'seo-ultimate'), $widget_ops);
|
155 |
+
}
|
156 |
+
|
157 |
+
function widget( $args, $instance ) {
|
158 |
+
|
159 |
+
extract( $args );
|
160 |
+
|
161 |
+
global $seo_ultimate;
|
162 |
+
$display = empty($instance['display']) ? 'list' : $instance['display'];
|
163 |
+
|
164 |
+
$title = empty($instance['title']) ? false : $instance['title'];
|
165 |
+
$title = apply_filters('widget_title', $title, $instance, $this->id_base);
|
166 |
+
|
167 |
+
echo $before_widget;
|
168 |
+
if ( $title )
|
169 |
+
echo $before_title . $title . $after_title;
|
170 |
+
|
171 |
+
switch ($display) {
|
172 |
+
case 'list':
|
173 |
+
$args = array(
|
174 |
+
'footer_link_section_format' => "\n\t\t<ul>{links}\n\t\t</ul>\n"
|
175 |
+
, 'footer_link_format' => "\n\t\t\t<li>{link}</li>"
|
176 |
+
, 'footer_link_sep' => ''
|
177 |
+
);
|
178 |
+
break;
|
179 |
+
|
180 |
+
default:
|
181 |
+
$args = array();
|
182 |
+
break;
|
183 |
+
}
|
184 |
+
|
185 |
+
if ($seo_ultimate->call_module_func('footer-autolinks', 'autolink_footer', $unused, $args))
|
186 |
+
$seo_ultimate->set_module_var('footer-autolinks', 'already_outputted', true);
|
187 |
+
|
188 |
+
echo $after_widget;
|
189 |
+
}
|
190 |
+
|
191 |
+
function update( $new_instance, $old_instance ) {
|
192 |
+
$instance = $old_instance;
|
193 |
+
$instance['title'] = strip_tags(stripslashes($new_instance['title']));
|
194 |
+
$instance['display'] = stripslashes($new_instance['display']);
|
195 |
+
|
196 |
+
return $instance;
|
197 |
+
}
|
198 |
+
|
199 |
+
function form( $instance ) {
|
200 |
+
global $seo_ultimate;
|
201 |
+
|
202 |
+
//Defaults
|
203 |
+
$instance = wp_parse_args( (array) $instance, array( 'title' => '') );
|
204 |
+
$title = esc_attr( $instance['title'] );
|
205 |
+
$display = empty($instance['display']) ? 'list' : $instance['display'];
|
206 |
+
?>
|
207 |
+
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title: <em>(optional)</em>' ); ?></label>
|
208 |
+
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
|
209 |
+
|
210 |
+
<p>
|
211 |
+
<label><input type="radio" name="<?php echo $this->get_field_name('display'); ?>" value="list" <?php checked('list', $display); ?>/> <?php _e('Display as a list', 'seo-ultimate'); ?></label><br />
|
212 |
+
<label><input type="radio" name="<?php echo $this->get_field_name('display'); ?>" value="usersettings" <?php checked('usersettings', $display); ?>/> <?php
|
213 |
+
$seo_ultimate->call_module_func('footer-autolinks-settings', 'get_admin_url', $formats_url);
|
214 |
+
printf(__('Use my <a href="%s" target="_blank">footer link HTML formats</a>', 'seo-ultimate'), $formats_url);
|
215 |
+
?></label>
|
216 |
+
</p>
|
217 |
+
<?php
|
218 |
+
}
|
219 |
+
}
|
220 |
+
|
221 |
+
}
|
222 |
+
|
223 |
+
?>
|
plugin/class.seo-ultimate.php
CHANGED
@@ -1712,7 +1712,7 @@ class SEO_Ultimate {
|
|
1712 |
continue;
|
1713 |
|
1714 |
$terms = get_terms($taxonomyobj->name, array(
|
1715 |
-
'search' =>
|
1716 |
));
|
1717 |
|
1718 |
if (count($terms)) {
|
1712 |
continue;
|
1713 |
|
1714 |
$terms = get_terms($taxonomyobj->name, array(
|
1715 |
+
'search' => $_GET['q'] //NOTE: get_terms does NOT sanitize the "search" variable for SQL queries prior to WordPress 3.1.3, which is why this plugin will refuse to run on versions prior to 3.1.3
|
1716 |
));
|
1717 |
|
1718 |
if (count($terms)) {
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions, JohnLamansky
|
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 3.2
|
6 |
-
Stable tag: 6.
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
@@ -11,11 +11,11 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
|
|
11 |
|
12 |
= Recent Releases =
|
13 |
|
|
|
14 |
* Version 6.5 features Deeplink Juggernaut 3.0
|
15 |
* Version 6.4 adds 3 more features to Deeplink Juggernaut
|
16 |
* Version 6.3 adds support for the new `rel="canonical"` HTTP headers
|
17 |
* Version 6.2 adds Silo Linking to Deeplink Juggernaut
|
18 |
-
* Version 6.1 fixes Link Mask Generator issues
|
19 |
|
20 |
= Features =
|
21 |
|
@@ -129,6 +129,10 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
129 |
* **Permalink Tweaker**
|
130 |
* Lets you remove the permalink base for categories, tags, and/or custom taxonomies. For example, enable category base removal to convert `http://example.com/category/example` into `http://example.com/example`, and then pair that with a `/%category%/%postname%/` permalink to enable some serious SEO siloing action.
|
131 |
|
|
|
|
|
|
|
|
|
132 |
* **Settings Manager**
|
133 |
* Export your SEO Ultimate settings to a file and re-import later if desired.
|
134 |
* Move SEO Ultimate settings between blogs using the export/import functionality.
|
@@ -247,11 +251,16 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
247 |
|
248 |
== Changelog ==
|
249 |
|
|
|
|
|
|
|
|
|
|
|
250 |
= Version 6.5.2 (July 13, 2011) =
|
251 |
-
* Bugfix: Restored access to the "Global" tab of Meta Robot Tags Editor
|
252 |
|
253 |
= Version 6.5.1 (July 11, 2011) =
|
254 |
-
* Bugfix: Restored Deeplink Juggernaut's ability to link to arbitrary URLs
|
255 |
|
256 |
= Version 6.5 (July 9, 2011) =
|
257 |
* Feature: Added "Footer Links" functionality to Deeplink Juggernaut
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 3.2
|
6 |
+
Stable tag: 6.6
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
11 |
|
12 |
= Recent Releases =
|
13 |
|
14 |
+
* Version 6.6 adds the SEO Ultimate Widgets module
|
15 |
* Version 6.5 features Deeplink Juggernaut 3.0
|
16 |
* Version 6.4 adds 3 more features to Deeplink Juggernaut
|
17 |
* Version 6.3 adds support for the new `rel="canonical"` HTTP headers
|
18 |
* Version 6.2 adds Silo Linking to Deeplink Juggernaut
|
|
|
19 |
|
20 |
= Features =
|
21 |
|
129 |
* **Permalink Tweaker**
|
130 |
* Lets you remove the permalink base for categories, tags, and/or custom taxonomies. For example, enable category base removal to convert `http://example.com/category/example` into `http://example.com/example`, and then pair that with a `/%category%/%postname%/` permalink to enable some serious SEO siloing action.
|
131 |
|
132 |
+
* **SEO Ultimate Widgets** -- NEW in Version 6.6
|
133 |
+
* Lets you output your Deeplink Juggernaut Footer Links in a widget
|
134 |
+
* The Siloed Categories widget makes it drag-and-drop-easy to construct siloed navigation on your site
|
135 |
+
|
136 |
* **Settings Manager**
|
137 |
* Export your SEO Ultimate settings to a file and re-import later if desired.
|
138 |
* Move SEO Ultimate settings between blogs using the export/import functionality.
|
251 |
|
252 |
== Changelog ==
|
253 |
|
254 |
+
= Version 6.6 (July 15, 2011) =
|
255 |
+
* New Module: SEO Ultimate Widgets
|
256 |
+
* Feature: The new "Footer Links" widget lets you display your Deeplink Juggernaut Footer Links in a widgetized footer or sidebar
|
257 |
+
* Feature: The new "Siloed Categories" widget lets you create a navigation section that's siloed around a taxonomy of your choosing
|
258 |
+
|
259 |
= Version 6.5.2 (July 13, 2011) =
|
260 |
+
* Bugfix: Restored access to the "Global" tab of Meta Robot Tags Editor (broke in 6.4)
|
261 |
|
262 |
= Version 6.5.1 (July 11, 2011) =
|
263 |
+
* Bugfix: Restored Deeplink Juggernaut's ability to link to arbitrary URLs (broke in 6.5)
|
264 |
|
265 |
= Version 6.5 (July 9, 2011) =
|
266 |
* Feature: Added "Footer Links" functionality to Deeplink Juggernaut
|
seo-ultimate.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
-
Version: 6.
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
|
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
-
* @version 6.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -42,15 +42,15 @@ if (!defined('ABSPATH')) {
|
|
42 |
/********** CONSTANTS **********/
|
43 |
|
44 |
//The minimum version of WordPress required
|
45 |
-
define('SU_MINIMUM_WP_VER', '3.1');
|
46 |
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
-
define('SU_VERSION', '6.
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/6.
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
+
Version: 6.6
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
+
* @version 6.6
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
42 |
/********** CONSTANTS **********/
|
43 |
|
44 |
//The minimum version of WordPress required
|
45 |
+
define('SU_MINIMUM_WP_VER', '3.1.3');
|
46 |
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
+
define('SU_VERSION', '6.6');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/6.6');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
seo-ultimate.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: SEO Ultimate 6.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
-
"POT-Creation-Date: 2011-07-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -19,431 +19,452 @@ msgid ""
|
|
19 |
"Ultimate to remove this notice."
|
20 |
msgstr ""
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
msgstr ""
|
27 |
|
28 |
-
#:
|
29 |
-
msgid "
|
|
|
|
|
30 |
msgstr ""
|
31 |
|
32 |
-
#:
|
33 |
-
|
34 |
-
"
|
35 |
-
"If you leave before saving, those changes will be lost."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#:
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#:
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#:
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#:
|
51 |
-
msgid ""
|
52 |
-
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
|
53 |
-
"1$s to avoid plugin conflicts."
|
54 |
msgstr ""
|
55 |
|
56 |
-
#:
|
57 |
-
msgid "
|
58 |
msgstr ""
|
59 |
|
60 |
-
#:
|
61 |
-
msgid "
|
62 |
msgstr ""
|
63 |
|
64 |
-
#:
|
65 |
-
msgid "
|
66 |
msgstr ""
|
67 |
|
68 |
-
#:
|
69 |
-
msgid "
|
70 |
msgstr ""
|
71 |
|
72 |
-
#:
|
73 |
-
msgid "
|
74 |
msgstr ""
|
75 |
|
76 |
-
#:
|
77 |
-
msgid "
|
78 |
msgstr ""
|
79 |
|
80 |
-
#:
|
81 |
-
msgid "
|
82 |
msgstr ""
|
83 |
|
84 |
-
#:
|
85 |
-
msgid "
|
|
|
|
|
86 |
msgstr ""
|
87 |
|
88 |
-
#:
|
89 |
-
msgid "
|
90 |
msgstr ""
|
91 |
|
92 |
-
#:
|
93 |
-
|
|
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: plugin/class.seo-ultimate.php:
|
97 |
-
msgid "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#:
|
101 |
-
msgid "
|
102 |
msgstr ""
|
103 |
|
104 |
-
#:
|
105 |
-
msgid "
|
106 |
msgstr ""
|
107 |
|
108 |
-
#:
|
109 |
-
msgid "
|
110 |
msgstr ""
|
111 |
|
112 |
-
#:
|
113 |
-
msgid "
|
114 |
msgstr ""
|
115 |
|
116 |
-
#:
|
117 |
msgid ""
|
118 |
-
"
|
119 |
-
"
|
120 |
-
"
|
121 |
-
"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#:
|
125 |
-
msgid "
|
126 |
msgstr ""
|
127 |
|
128 |
-
#:
|
129 |
-
msgid "
|
|
|
|
|
|
|
130 |
msgstr ""
|
131 |
|
132 |
-
#:
|
133 |
-
|
134 |
-
msgid "Blog Homepage"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#:
|
138 |
-
msgid "
|
139 |
msgstr ""
|
140 |
|
141 |
-
#:
|
142 |
-
msgid "
|
143 |
msgstr ""
|
144 |
|
145 |
-
#:
|
146 |
-
msgid "
|
147 |
msgstr ""
|
148 |
|
149 |
-
#:
|
150 |
-
msgid "
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
-
#:
|
154 |
-
msgid "
|
155 |
msgstr ""
|
156 |
|
157 |
-
#:
|
158 |
-
msgid "
|
159 |
msgstr ""
|
160 |
|
161 |
-
#:
|
162 |
-
msgid "
|
163 |
msgstr ""
|
164 |
|
165 |
-
#:
|
166 |
-
msgid "
|
|
|
|
|
167 |
msgstr ""
|
168 |
|
169 |
-
#:
|
170 |
-
msgid "
|
171 |
msgstr ""
|
172 |
|
173 |
-
#:
|
174 |
-
msgid "
|
175 |
msgstr ""
|
176 |
|
177 |
-
#:
|
178 |
-
msgid "
|
179 |
msgstr ""
|
180 |
|
181 |
-
#:
|
182 |
-
msgid "
|
183 |
msgstr ""
|
184 |
|
185 |
-
#:
|
186 |
-
msgid "
|
187 |
msgstr ""
|
188 |
|
189 |
-
#:
|
190 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
msgstr ""
|
192 |
|
193 |
-
#:
|
194 |
-
msgid "
|
|
|
|
|
195 |
msgstr ""
|
196 |
|
197 |
-
#:
|
198 |
-
msgid "
|
199 |
msgstr ""
|
200 |
|
201 |
-
#:
|
202 |
-
msgid "
|
203 |
msgstr ""
|
204 |
|
205 |
-
#:
|
206 |
-
msgid "
|
207 |
msgstr ""
|
208 |
|
209 |
-
#:
|
210 |
-
msgid "
|
211 |
msgstr ""
|
212 |
|
213 |
-
#:
|
214 |
-
msgid "
|
215 |
msgstr ""
|
216 |
|
217 |
-
#:
|
218 |
-
|
|
|
219 |
msgstr ""
|
220 |
|
221 |
-
#:
|
222 |
-
msgid "
|
223 |
msgstr ""
|
224 |
|
225 |
-
#:
|
226 |
-
msgid "
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: modules/
|
230 |
-
msgid "
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: modules/
|
234 |
-
msgid "
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: modules/
|
238 |
-
|
|
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: modules/
|
242 |
-
msgid "
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: modules/
|
246 |
-
msgid ""
|
247 |
-
"The Miscellaneous page contains modules that don’t have enough "
|
248 |
-
"settings to warrant their own separate admin pages."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: modules/
|
252 |
-
msgid "
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: modules/
|
256 |
-
msgid "
|
257 |
msgstr ""
|
258 |
|
259 |
-
|
260 |
-
|
261 |
-
#: modules/sds-blog/sds-blog.php:49
|
262 |
-
msgid "SEO Design Solutions"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: modules/
|
266 |
-
msgid ""
|
267 |
-
"The search engine optimization articles below are loaded from the website of "
|
268 |
-
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
269 |
-
"an article’s title to read it."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: modules/
|
273 |
-
msgid "
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: modules/
|
277 |
-
msgid "
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: modules/
|
281 |
-
msgid "
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: modules/
|
285 |
-
msgid "
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: modules/
|
289 |
-
msgid "
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: modules/
|
293 |
-
msgid "
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: modules/
|
297 |
-
msgid "
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: modules/
|
301 |
-
msgid "
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: modules/
|
305 |
-
msgid "
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: modules/
|
309 |
-
msgid "
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: modules/
|
313 |
-
msgid "
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: modules/
|
317 |
-
msgid "
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: modules/
|
321 |
-
msgid ""
|
322 |
-
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
323 |
-
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
324 |
-
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
325 |
-
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
326 |
-
"to be currently installed or activated for the import to take place."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: modules/
|
330 |
-
|
331 |
-
"
|
332 |
-
"you use an older version of AIOSP, you should update to the latest version "
|
333 |
-
"first and run AIOSP’s upgrade process."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: modules/
|
337 |
-
|
|
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: modules/
|
341 |
-
|
342 |
-
|
343 |
-
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
344 |
-
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
345 |
-
"Ultimate."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: modules/
|
349 |
-
msgid "
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: modules/
|
353 |
msgid ""
|
354 |
-
"
|
355 |
-
"
|
356 |
-
"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: modules/
|
360 |
-
msgid "
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: modules/
|
364 |
-
msgid "
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: modules/
|
368 |
-
msgid "
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: modules/
|
372 |
-
msgid "
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: modules/
|
|
|
|
|
|
|
|
|
376 |
msgid ""
|
377 |
-
"
|
378 |
-
"
|
|
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: modules/
|
382 |
-
msgid "
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: modules/
|
386 |
-
msgid "
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: modules/
|
390 |
-
msgid "
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: modules/
|
394 |
-
msgid ""
|
395 |
-
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
396 |
-
"target=\"_blank\">backup your database</a> before proceeding!"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: modules/
|
400 |
-
msgid "
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: modules/
|
404 |
-
msgid "
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: modules/
|
408 |
-
msgid "
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: modules/
|
412 |
-
msgid "
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: modules/
|
416 |
-
msgid "
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: modules/
|
420 |
-
msgid "
|
421 |
-
|
422 |
-
msgstr[0] ""
|
423 |
-
msgstr[1] ""
|
424 |
|
425 |
-
#: modules/
|
426 |
-
msgid "
|
427 |
-
|
428 |
-
msgstr[0] ""
|
429 |
-
msgstr[1] ""
|
430 |
|
431 |
-
#: modules/
|
432 |
msgid ""
|
433 |
-
"
|
434 |
-
"
|
435 |
-
|
436 |
-
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
437 |
-
"settings you chose."
|
438 |
-
msgstr[0] ""
|
439 |
-
msgstr[1] ""
|
440 |
|
441 |
-
#: modules/
|
442 |
-
msgid "
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
|
|
447 |
|
448 |
#: modules/titles/titles.php:12
|
449 |
msgid "Title Tag Rewriter"
|
@@ -545,273 +566,221 @@ msgstr ""
|
|
545 |
#: modules/titles/titles.php:76
|
546 |
msgid "Month Archive Title Format"
|
547 |
msgstr ""
|
548 |
-
|
549 |
-
#: modules/titles/titles.php:77
|
550 |
-
msgid "Year Archive Title Format"
|
551 |
-
msgstr ""
|
552 |
-
|
553 |
-
#: modules/titles/titles.php:78
|
554 |
-
msgid "Author Archive Title Format"
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
#: modules/titles/titles.php:79
|
558 |
-
msgid "Search Title Format"
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: modules/titles/titles.php:80
|
562 |
-
msgid "404 Title Format"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: modules/titles/titles.php:81
|
566 |
-
msgid "Pagination Title Format"
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: modules/titles/titles.php:307
|
570 |
-
msgid "Title Tag:"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: modules/titles/titles.php:312
|
574 |
-
msgid ""
|
575 |
-
"<strong>Title Tag</strong> — The exact contents of the <title> "
|
576 |
-
"tag. The title appears in visitors’ title bars and in search engine "
|
577 |
-
"result titles. If this box is left blank, then the <a href=\"admin.php?"
|
578 |
-
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
579 |
-
msgstr ""
|
580 |
-
|
581 |
-
#: modules/class.su-module.php:375
|
582 |
-
msgid ""
|
583 |
-
"(Note: This translated documentation was designed for an older version of "
|
584 |
-
"SEO Ultimate and may be outdated.)"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: modules/class.su-module.php:658
|
588 |
-
msgid ""
|
589 |
-
"All the modules on this page have been disabled. You can re-enable them "
|
590 |
-
"using the <a href=\"%s\">Module Manager</a>."
|
591 |
-
msgstr ""
|
592 |
-
|
593 |
-
#: modules/class.su-module.php:1015
|
594 |
-
msgctxt "Dropdown Title"
|
595 |
-
msgid "%s — %s"
|
596 |
-
msgstr ""
|
597 |
-
|
598 |
-
#: modules/class.su-module.php:1043
|
599 |
-
msgid "%1$s | %2$s %3$s by %4$s"
|
600 |
-
msgstr ""
|
601 |
-
|
602 |
-
#: modules/class.su-module.php:1122
|
603 |
-
msgid "Your site currently doesn’t have any public items of this type."
|
604 |
-
msgstr ""
|
605 |
-
|
606 |
-
#: modules/class.su-module.php:1206
|
607 |
-
msgid "«"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: modules/
|
611 |
-
msgid "
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: modules/
|
615 |
-
msgid "
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: modules/
|
619 |
-
msgid "
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: modules/
|
623 |
-
msgid "
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: modules/
|
627 |
-
msgid "
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: modules/
|
631 |
-
msgid "
|
|
|
|
|
|
|
|
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: modules/
|
635 |
-
msgid "
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: modules/
|
639 |
-
msgid "
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: modules/
|
643 |
msgid ""
|
644 |
-
"
|
645 |
-
"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: modules/
|
649 |
-
msgid "
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: modules/
|
653 |
-
msgid "
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: modules/
|
657 |
-
msgid "
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: modules/
|
661 |
-
msgid "
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: modules/
|
665 |
-
msgid "
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: modules/
|
669 |
-
|
670 |
-
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: modules/
|
674 |
-
msgid "
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: modules/
|
678 |
-
|
679 |
-
#: modules/autolinks/content-autolinks.php:293
|
680 |
-
msgid "Nofollow"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: modules/
|
684 |
-
msgid "
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: modules/
|
688 |
-
msgid "
|
|
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: modules/
|
692 |
-
msgid "
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: modules/
|
696 |
-
msgid "
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: modules/
|
700 |
-
msgid "
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: modules/
|
704 |
msgid ""
|
705 |
-
"
|
706 |
-
"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: modules/
|
710 |
-
msgid "
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: modules/
|
714 |
-
msgid "
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: modules/
|
718 |
-
msgid "
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: modules/
|
722 |
-
|
|
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: modules/
|
726 |
-
msgid "
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: modules/
|
730 |
-
|
|
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: modules/
|
734 |
-
msgid "
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: modules/
|
738 |
-
msgid "
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: modules/
|
742 |
-
msgid "
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: modules/
|
746 |
-
msgid "
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: modules/
|
750 |
-
msgid "
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: modules/
|
754 |
-
msgid "
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: modules/
|
758 |
-
msgid "
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: modules/
|
762 |
-
msgid "
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: modules/
|
766 |
-
msgid "
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: modules/
|
770 |
-
msgid "
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: modules/
|
774 |
-
msgid "
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: modules/
|
778 |
-
msgid "
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: modules/
|
782 |
-
msgid "
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: modules/
|
786 |
-
msgid "
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: modules/
|
790 |
-
msgid "
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: modules/
|
794 |
-
msgid "
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: modules/
|
798 |
-
msgid "
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: modules/
|
802 |
-
msgid "
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: modules/
|
806 |
-
msgid "
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: modules/
|
810 |
-
msgid ""
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
msgstr ""
|
816 |
|
817 |
#: modules/meta/meta-keywords.php:12
|
@@ -822,6 +791,10 @@ msgstr ""
|
|
822 |
msgid "Meta Keywords"
|
823 |
msgstr ""
|
824 |
|
|
|
|
|
|
|
|
|
825 |
#: modules/meta/meta-keywords.php:56
|
826 |
msgid "The %d most commonly-used words"
|
827 |
msgstr ""
|
@@ -878,346 +851,369 @@ msgstr ""
|
|
878 |
msgid "Meta Robot Tags"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: modules/meta/meta-robots.php:
|
882 |
msgid "Global"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: modules/meta/meta-robots.php:
|
886 |
msgid "Spider Instructions"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: modules/meta/meta-robots.php:
|
890 |
msgid ""
|
891 |
"Don’t use this site’s Open Directory description in search results."
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: modules/meta/meta-robots.php:
|
895 |
msgid ""
|
896 |
"Don’t use this site’s Yahoo! Directory description in search "
|
897 |
"results."
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: modules/meta/meta-robots.php:
|
901 |
msgid "Don’t cache or archive this site."
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: modules/
|
905 |
-
msgid "
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: modules/
|
909 |
-
msgid ""
|
910 |
-
"Generate <code><link rel="canonical" /></code> meta tags."
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: modules/
|
914 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: modules/
|
918 |
-
msgid "
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: modules/
|
922 |
-
msgid "
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: modules/
|
926 |
-
msgid "
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: modules/
|
930 |
-
msgid "
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: modules/
|
934 |
-
msgid "
|
|
|
|
|
|
|
|
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: modules/
|
938 |
-
msgid "
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: modules/
|
942 |
-
msgid "
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: modules/
|
946 |
-
msgid "
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: modules/
|
950 |
-
msgid "
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: modules/
|
954 |
-
msgid "
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: modules/
|
958 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: modules/
|
962 |
-
msgid "
|
|
|
|
|
|
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: modules/
|
966 |
-
msgid "
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: modules/
|
970 |
-
msgid "
|
971 |
msgstr ""
|
972 |
|
973 |
-
|
974 |
-
|
|
|
|
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: modules/
|
978 |
-
msgid "
|
|
|
|
|
|
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: modules/
|
982 |
-
msgid "
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: modules/
|
986 |
-
msgid "
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: modules/
|
990 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: modules/
|
994 |
-
msgid "
|
|
|
|
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: modules/
|
998 |
-
msgid ""
|
999 |
-
"The Competition Researcher provides you with easy access to various search "
|
1000 |
-
"engine tools which you can use to research multiple search queries or URLs."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: modules/
|
1004 |
-
msgid "
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: modules/
|
1008 |
-
msgid "
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: modules/
|
1012 |
-
msgid "
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: modules/
|
1016 |
-
msgid "
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: modules/
|
1020 |
-
msgid "
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: modules/
|
1024 |
-
msgid ""
|
1025 |
-
"Find out how many “actual” pages are competing for each query"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: modules/
|
1029 |
-
msgid "
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: modules/
|
1033 |
-
msgid "
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: modules/
|
1037 |
-
msgid "
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: modules/
|
1041 |
-
msgid ""
|
1042 |
-
"Find out which sites have the highest relevance in the title for each query"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: modules/
|
1046 |
-
msgid "
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: modules/
|
1050 |
-
msgid "
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: modules/
|
1054 |
-
msgid "
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: modules/
|
1058 |
-
msgid ""
|
1059 |
-
"Find out which sites have the most relevant naming conventions for each "
|
1060 |
-
"keyword"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: modules/
|
1064 |
-
msgid "URLs"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: modules/
|
1068 |
-
msgid "
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: modules/
|
1072 |
-
msgid "
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: modules/
|
1076 |
-
|
1077 |
-
msgid "Inbound Links"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: modules/
|
1081 |
-
msgid "
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: modules/
|
1085 |
-
|
1086 |
-
msgid "Outbound Links"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: modules/
|
1090 |
-
msgid "
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: modules/
|
1094 |
-
msgid "
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: modules/
|
1098 |
-
msgid "
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: modules/
|
1102 |
-
msgid "
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: modules/
|
1106 |
-
|
1107 |
-
msgid "Show 100 results per page"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: modules/
|
1111 |
-
|
1112 |
-
msgid "Use Google’s minimal mode"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: modules/
|
1116 |
-
|
1117 |
-
|
|
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: modules/
|
1121 |
-
msgid "
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: modules/
|
1125 |
-
msgid "
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: modules/
|
1129 |
-
msgid "
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: modules/
|
1133 |
-
msgid "
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: modules/
|
1137 |
-
msgid "
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: modules/
|
1141 |
-
msgid "
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: modules/
|
1145 |
-
msgid "
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: modules/
|
1149 |
-
msgid "
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: modules/
|
1153 |
-
msgid "
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: modules/
|
1157 |
-
msgid "
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: modules/
|
1161 |
-
msgid "
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: modules/
|
1165 |
-
msgid "
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: modules/
|
1169 |
-
msgid "
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: modules/
|
1173 |
-
msgid "
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: modules/
|
1177 |
-
msgid "
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: modules/
|
1181 |
-
msgid ""
|
1182 |
-
"SEO Ultimate’s features are located in groups called “modules."
|
1183 |
-
"” By default, most of these modules are listed in the “"
|
1184 |
-
"SEO” menu on the left. Whenever you’re working with a module, "
|
1185 |
-
"you can view documentation by clicking the tabs in the upper-right-hand "
|
1186 |
-
"corner of your administration screen."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: modules/
|
1190 |
-
msgid ""
|
1191 |
-
"The Module Manager lets you disable or hide modules you don’t use. "
|
1192 |
-
"You can also silence modules from displaying bubble alerts on the menu."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: modules/
|
1196 |
-
msgid "
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: modules/
|
1200 |
-
msgid "
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: modules/
|
1204 |
-
msgid "
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: modules/
|
1208 |
-
msgid "
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: modules/
|
1212 |
-
msgid "
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: modules/
|
1216 |
-
msgid "
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: modules/
|
1220 |
-
msgid "
|
1221 |
msgstr ""
|
1222 |
|
1223 |
#: modules/permalinks/permalinks.php:15
|
@@ -1238,6 +1234,16 @@ msgstr ""
|
|
1238 |
msgid "Remove the URL bases of..."
|
1239 |
msgstr ""
|
1240 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1241 |
#: modules/files/files.php:14
|
1242 |
msgid "File Editor"
|
1243 |
msgstr ""
|
@@ -1293,12 +1299,49 @@ msgid ""
|
|
1293 |
"robots.txt file, since you’re using <a href=\"%s\">a custom one</a>."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: modules/
|
1297 |
-
msgid "
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: modules/
|
1301 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1302 |
msgstr ""
|
1303 |
|
1304 |
#: modules/settings/settings-data.php:16
|
@@ -1469,10 +1512,48 @@ msgstr ""
|
|
1469 |
msgid "Restore Default Settings"
|
1470 |
msgstr ""
|
1471 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1472 |
#: modules/settings/uninstall.php:17
|
1473 |
msgid "Uninstaller"
|
1474 |
msgstr ""
|
1475 |
|
|
|
|
|
|
|
|
|
1476 |
#: modules/settings/uninstall.php:27
|
1477 |
msgid ""
|
1478 |
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
@@ -1509,26 +1590,6 @@ msgstr ""
|
|
1509 |
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: modules/settings/global-settings.php:18
|
1513 |
-
msgid "Global Settings"
|
1514 |
-
msgstr ""
|
1515 |
-
|
1516 |
-
#: modules/settings/global-settings.php:40
|
1517 |
-
msgid "Enable nofollow’d attribution link"
|
1518 |
-
msgstr ""
|
1519 |
-
|
1520 |
-
#: modules/settings/global-settings.php:41
|
1521 |
-
msgid "Enable attribution link CSS styling"
|
1522 |
-
msgstr ""
|
1523 |
-
|
1524 |
-
#: modules/settings/global-settings.php:42
|
1525 |
-
msgid "Notify me about unnecessary active plugins"
|
1526 |
-
msgstr ""
|
1527 |
-
|
1528 |
-
#: modules/settings/global-settings.php:43
|
1529 |
-
msgid "Insert comments around HTML code insertions"
|
1530 |
-
msgstr ""
|
1531 |
-
|
1532 |
#: modules/settings/install.php:18
|
1533 |
msgid "Upgrade/Downgrade/Reinstall"
|
1534 |
msgstr ""
|
@@ -1589,355 +1650,322 @@ msgstr ""
|
|
1589 |
#: modules/settings/install.php:76
|
1590 |
msgid ""
|
1591 |
"There was an error retrieving the list of available versions. Please try "
|
1592 |
-
"again later."
|
1593 |
-
msgstr ""
|
1594 |
-
|
1595 |
-
#: modules/settings/install.php:81
|
1596 |
-
msgid ""
|
1597 |
-
"To download and install a fresh copy of the SEO Ultimate version you are "
|
1598 |
-
"currently using, click the “Reinstall” button below."
|
1599 |
-
msgstr ""
|
1600 |
-
|
1601 |
-
#: modules/settings/install.php:108
|
1602 |
-
msgid "Your Current Version"
|
1603 |
-
msgstr ""
|
1604 |
-
|
1605 |
-
#: modules/settings/install.php:110
|
1606 |
-
msgid "Latest Version"
|
1607 |
-
msgstr ""
|
1608 |
-
|
1609 |
-
#: modules/settings/install.php:130
|
1610 |
-
msgid ""
|
1611 |
-
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
1612 |
-
"blog."
|
1613 |
-
msgstr ""
|
1614 |
-
|
1615 |
-
#: modules/settings/install.php:140
|
1616 |
-
msgid "Downgrade to SEO Ultimate %s"
|
1617 |
-
msgstr ""
|
1618 |
-
|
1619 |
-
#: modules/settings/install.php:143
|
1620 |
-
msgid "Reinstall SEO Ultimate %s"
|
1621 |
-
msgstr ""
|
1622 |
-
|
1623 |
-
#: modules/settings/install.php:146
|
1624 |
-
msgid "Upgrade to SEO Ultimate %s"
|
1625 |
-
msgstr ""
|
1626 |
-
|
1627 |
-
#: modules/404s/fofs.php:11
|
1628 |
-
msgid "404 Monitor"
|
1629 |
-
msgstr ""
|
1630 |
-
|
1631 |
-
#: modules/404s/fofs-log.php:16
|
1632 |
-
msgid "404 Monitor Log"
|
1633 |
-
msgstr ""
|
1634 |
-
|
1635 |
-
#: modules/404s/fofs-log.php:17
|
1636 |
-
msgid "Log"
|
1637 |
-
msgstr ""
|
1638 |
-
|
1639 |
-
#: modules/404s/fofs-log.php:114
|
1640 |
-
msgid "Hits"
|
1641 |
-
msgstr ""
|
1642 |
-
|
1643 |
-
#: modules/404s/fofs-log.php:115
|
1644 |
-
msgid "URL with 404 Error"
|
1645 |
-
msgstr ""
|
1646 |
-
|
1647 |
-
#: modules/404s/fofs-log.php:116
|
1648 |
-
msgid "Date of Most Recent Hit"
|
1649 |
-
msgstr ""
|
1650 |
-
|
1651 |
-
#: modules/404s/fofs-log.php:117
|
1652 |
-
msgid "Referers"
|
1653 |
-
msgstr ""
|
1654 |
-
|
1655 |
-
#: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
|
1656 |
-
msgid "User Agents"
|
1657 |
-
msgstr ""
|
1658 |
-
|
1659 |
-
#: modules/404s/fofs-log.php:134
|
1660 |
-
msgid ""
|
1661 |
-
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
1662 |
-
"Settings tab."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: modules/
|
1666 |
-
msgid "
|
|
|
|
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: modules/
|
1670 |
-
msgid "
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: modules/
|
1674 |
-
msgid "
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: modules/
|
1678 |
-
msgid "
|
|
|
|
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: modules/
|
1682 |
-
msgid "
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: modules/
|
1686 |
-
msgid "
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: modules/
|
1690 |
-
msgid "
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: modules/
|
1694 |
-
msgid "
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: modules/
|
1698 |
-
msgid "
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: modules/
|
1702 |
-
msgid "
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: modules/
|
1706 |
-
msgid "
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: modules/
|
1710 |
-
msgid "
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: modules/
|
1714 |
-
msgid "
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: modules/
|
1718 |
-
msgid "
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: modules/
|
1722 |
-
|
|
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: modules/
|
1726 |
-
|
|
|
|
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: modules/
|
1730 |
-
msgid "
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: modules/
|
1734 |
-
msgid "
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: modules/
|
1738 |
-
msgid "
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: modules/
|
1742 |
-
msgid "
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: modules/
|
1746 |
-
msgid "
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: modules/
|
1750 |
-
msgid "
|
|
|
|
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: modules/
|
1754 |
-
msgid "
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: modules/
|
1758 |
-
msgid "
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: modules/
|
1762 |
-
msgid "
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
#: modules/
|
1766 |
-
msgid "
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#: modules/
|
1770 |
-
msgid "
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: modules/
|
1774 |
-
msgid "
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: modules/
|
1778 |
-
msgid "
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: modules/
|
1782 |
-
msgid "
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: modules/
|
1786 |
-
msgid "
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#: modules/
|
1790 |
-
msgid "
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#: modules/
|
1794 |
-
msgid "
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: modules/
|
1798 |
-
msgid ""
|
1799 |
-
"You can stop search engines from following a link by typing in a mask for "
|
1800 |
-
"its URL."
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: modules/
|
1804 |
-
msgid "
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: modules/
|
1808 |
-
msgid "
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: modules/
|
1812 |
-
msgid "
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: modules/
|
1816 |
msgid ""
|
1817 |
-
"
|
1818 |
-
"
|
|
|
|
|
|
|
|
|
1819 |
msgstr ""
|
1820 |
|
1821 |
-
#: modules/
|
1822 |
-
msgid "
|
1823 |
msgstr ""
|
1824 |
|
1825 |
-
#: modules/
|
1826 |
-
msgid "
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#: modules/
|
1830 |
-
|
|
|
|
|
|
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#: modules/
|
1834 |
-
|
|
|
1835 |
msgstr ""
|
1836 |
|
1837 |
-
#: modules/
|
1838 |
-
|
|
|
1839 |
msgstr ""
|
1840 |
|
1841 |
-
#: modules/
|
1842 |
-
#: modules/
|
1843 |
-
msgid "
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: modules/
|
1847 |
-
|
|
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: modules/
|
1851 |
-
|
|
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: modules/
|
1855 |
-
|
|
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: modules/
|
1859 |
-
|
|
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: modules/
|
1863 |
-
#: modules/
|
1864 |
-
msgid "
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: modules/
|
1868 |
-
msgid "
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#: modules/
|
1872 |
-
msgid "
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#: modules/
|
1876 |
-
msgid "
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: modules/
|
1880 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: modules/
|
1884 |
-
msgid "
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: modules/
|
1888 |
-
msgid "
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: modules/
|
1892 |
-
msgid "
|
|
|
|
|
|
|
|
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: modules/
|
1896 |
-
msgid "
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: modules/
|
1900 |
-
msgid "
|
|
|
|
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: modules/
|
1904 |
-
msgid "
|
|
|
|
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: modules/
|
1908 |
-
msgid "
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: modules/
|
1912 |
-
msgid "
|
|
|
|
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: modules/
|
1916 |
-
msgid "
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#: modules/
|
1920 |
-
msgid "
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: modules/
|
1924 |
-
msgid "
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: modules/
|
1928 |
-
msgid "
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: modules/
|
1932 |
-
msgid "
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: modules/
|
1936 |
-
msgid "
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: modules/
|
1940 |
-
msgid "
|
1941 |
msgstr ""
|
1942 |
|
1943 |
#: modules/autolinks/footer-autolinks-settings.php:16
|
@@ -1964,170 +1992,192 @@ msgstr ""
|
|
1964 |
msgid "Link Separator"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#:
|
1968 |
-
msgid "
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#:
|
1972 |
-
msgid "
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#:
|
1976 |
-
|
1977 |
-
msgid ""
|
1978 |
-
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
1979 |
-
"a certain word or phrase in your post/page content to a URL you specify."
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#:
|
1983 |
-
|
1984 |
-
msgid "Edit Existing Links"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#:
|
1988 |
-
|
1989 |
-
msgid "Add a New Link"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#:
|
1993 |
-
msgid "
|
1994 |
msgstr ""
|
1995 |
|
1996 |
-
#:
|
1997 |
-
|
1998 |
-
msgid "Anchor Text"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#:
|
2002 |
-
|
2003 |
-
msgid "Destination"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#:
|
2007 |
-
|
2008 |
-
msgid "Title Attribute"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#:
|
2012 |
-
|
2013 |
-
msgid "Options"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#:
|
2017 |
-
|
2018 |
-
msgid "Delete"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
#:
|
2022 |
-
msgid "
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#:
|
2026 |
-
msgid "
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#:
|
2030 |
-
|
2031 |
-
msgid "New window"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#:
|
2035 |
-
msgid "
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#:
|
2039 |
-
msgid ""
|
2040 |
-
"Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
|
2041 |
-
"(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
|
2042 |
-
"WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your "
|
2043 |
-
"webhost. In the meantime, you can return to an older version of Deeplink "
|
2044 |
-
"Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
|
2045 |
-
"a> to SEO Ultimate 5.9."
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#:
|
2049 |
-
msgid "
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#:
|
2053 |
-
msgid "
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#:
|
2057 |
-
msgid "
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#:
|
2061 |
-
msgid "
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#:
|
2065 |
-
msgid "
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#:
|
2069 |
-
msgid ""
|
2070 |
-
"Don’t link the same anchor text any more than %d times per post/page/"
|
2071 |
-
"etc."
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#:
|
2075 |
msgid ""
|
2076 |
-
"
|
2077 |
-
"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#:
|
2081 |
-
msgid "
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2085 |
msgid ""
|
2086 |
-
"
|
2087 |
-
"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
-
#:
|
2091 |
-
msgid "
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#:
|
2095 |
-
msgid "
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#:
|
2099 |
-
msgid "
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#:
|
2103 |
-
msgid "
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#:
|
2107 |
-
msgid "
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#:
|
2111 |
-
msgid "
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#:
|
2115 |
-
msgid "
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#:
|
2119 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2123 |
msgid ""
|
2124 |
-
"<strong>
|
2125 |
-
"
|
2126 |
-
"
|
2127 |
-
"
|
2128 |
-
|
2129 |
-
|
2130 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2131 |
msgstr ""
|
2132 |
|
2133 |
#: includes/jlwp/functions.php:60
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: SEO Ultimate 6.6\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2011-07-15 16:02:03+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
"Ultimate to remove this notice."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: modules/class.su-module.php:375
|
23 |
+
msgid ""
|
24 |
+
"(Note: This translated documentation was designed for an older version of "
|
25 |
+
"SEO Ultimate and may be outdated.)"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: modules/class.su-module.php:658
|
29 |
+
msgid ""
|
30 |
+
"All the modules on this page have been disabled. You can re-enable them "
|
31 |
+
"using the <a href=\"%s\">Module Manager</a>."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: modules/class.su-module.php:1015
|
35 |
+
msgctxt "Dropdown Title"
|
36 |
+
msgid "%s — %s"
|
|
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: modules/class.su-module.php:1043
|
40 |
+
msgid "%1$s | %2$s %3$s by %4$s"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: modules/class.su-module.php:1122
|
44 |
+
msgid "Your site currently doesn’t have any public items of this type."
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: modules/class.su-module.php:1206
|
48 |
+
msgid "«"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: modules/class.su-module.php:1207
|
52 |
+
msgid "»"
|
|
|
|
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: modules/class.su-module.php:1214
|
56 |
+
msgid "Displaying %s–%s of %s"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: modules/class.su-module.php:1227 modules/404s/fofs-log.php:113
|
60 |
+
msgid "Actions"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: modules/class.su-module.php:1228
|
64 |
+
msgid "ID"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: modules/class.su-module.php:1262
|
68 |
+
msgid "View"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: modules/class.su-module.php:1264
|
72 |
+
msgid "Edit"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: modules/class.su-module.php:1427
|
76 |
+
msgid "Settings updated."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: modules/class.su-module.php:1448
|
80 |
+
msgid "Save Changes"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: modules/class.su-module.php:1959
|
84 |
+
msgid ""
|
85 |
+
"Are you sure you want to replace the textbox contents with this default "
|
86 |
+
"value?"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: modules/class.su-module.php:1975 modules/settings/settings-data.php:23
|
90 |
+
msgid "Reset"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: modules/class.su-module.php:2585 modules/meta/meta-keywords.php:34
|
94 |
+
#: modules/meta/meta-descriptions.php:25 plugin/class.seo-ultimate.php:1672
|
95 |
+
msgid "Blog Homepage"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: modules/class.su-module.php:2589 plugin/class.seo-ultimate.php:1746
|
99 |
+
msgid "Author"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: modules/class.su-module.php:2609
|
103 |
+
msgid "Type a URL or start typing the name of the item you want to link to"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: modules/class.su-module.php:2621
|
107 |
+
msgid "Remove this destination"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: modules/class.su-module.php:2621
|
111 |
+
msgid "X"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: modules/class.su-importmodule.php:49
|
115 |
+
msgid "Import Post Fields"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: modules/class.su-importmodule.php:50
|
119 |
msgid ""
|
120 |
+
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
121 |
+
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
122 |
+
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
123 |
+
"Ultimate."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: modules/class.su-importmodule.php:53
|
127 |
+
msgid "Conflict Resolution Mode"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: modules/class.su-importmodule.php:54
|
131 |
+
msgid ""
|
132 |
+
"What should the import tool do if it tries to move over a post’s %s "
|
133 |
+
"data, but different data already exists in the corresponding SEO Ultimate "
|
134 |
+
"fields?"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: modules/class.su-importmodule.php:56
|
138 |
+
msgid "Skip that post and leave all data as-is (default)."
|
|
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: modules/class.su-importmodule.php:57
|
142 |
+
msgid "Delete the SEO Ultimate data and replace it with the %s data."
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: modules/class.su-importmodule.php:58
|
146 |
+
msgid "Keep the SEO Ultimate data and delete the %s data."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: modules/class.su-importmodule.php:61
|
150 |
+
msgid "Deletion Preference"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: modules/class.su-importmodule.php:62
|
154 |
+
msgid ""
|
155 |
+
"When the migration tool successfully copies a post’s %1$s data over to "
|
156 |
+
"SEO Ultimate, what should it do with the old %1$s data?"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: modules/class.su-importmodule.php:64
|
160 |
+
msgid "Delete the %s data."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: modules/class.su-importmodule.php:65
|
164 |
+
msgid "Leave behind the duplicate %s data (default)."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: modules/class.su-importmodule.php:72
|
168 |
+
msgid "Import Now"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: modules/class.su-importmodule.php:75
|
172 |
+
msgid ""
|
173 |
+
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
174 |
+
"target=\"_blank\">backup your database</a> before proceeding!"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: modules/class.su-importmodule.php:84
|
178 |
+
msgid "Import complete."
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: modules/class.su-importmodule.php:90
|
182 |
+
msgid "Return to import page"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: modules/class.su-importmodule.php:93
|
186 |
+
msgid "Return to settings page"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: modules/class.su-importmodule.php:96
|
190 |
+
msgid "Return to SEO page"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: modules/class.su-importmodule.php:116
|
194 |
+
msgid "Deactivated %s."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: modules/class.su-importmodule.php:174
|
198 |
+
msgid "Imported a total of %d fields for one post/page/revision."
|
199 |
+
msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
|
200 |
+
msgstr[0] ""
|
201 |
+
msgstr[1] ""
|
202 |
+
|
203 |
+
#: modules/class.su-importmodule.php:180
|
204 |
+
msgid "Skipped one post with disabled %2$s data."
|
205 |
+
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
206 |
+
msgstr[0] ""
|
207 |
+
msgstr[1] ""
|
208 |
+
|
209 |
+
#: modules/class.su-importmodule.php:186
|
210 |
+
msgid ""
|
211 |
+
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
212 |
+
"settings you chose."
|
213 |
+
msgid_plural ""
|
214 |
+
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
215 |
+
"settings you chose."
|
216 |
+
msgstr[0] ""
|
217 |
+
msgstr[1] ""
|
218 |
+
|
219 |
+
#: modules/class.su-importmodule.php:192
|
220 |
+
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
221 |
+
msgid_plural ""
|
222 |
+
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
223 |
+
msgstr[0] ""
|
224 |
+
msgstr[1] ""
|
225 |
+
|
226 |
+
#: modules/rich-snippets/rich-snippets.php:12
|
227 |
+
msgid "Rich Snippet Creator"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: modules/rich-snippets/rich-snippets.php:17
|
231 |
+
msgid ""
|
232 |
+
"Reviews\n"
|
233 |
+
"Review"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: modules/rich-snippets/rich-snippets.php:28
|
237 |
+
msgid "Data Format"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: modules/rich-snippets/rich-snippets.php:29
|
241 |
+
msgid "Categories/Tags That Indicate Reviews"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: modules/rich-snippets/rich-snippets.php:37
|
245 |
+
msgid "Microformats (recommended)"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: modules/rich-snippets/rich-snippets.php:43
|
249 |
+
msgid "HTML5 Microdata"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: modules/rich-snippets/rich-snippets.php:49
|
253 |
+
msgid "RDFa"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: modules/rich-snippets/rich-snippets.php:62
|
257 |
+
#: modules/rich-snippets/rich-snippets.php:224
|
258 |
+
msgid "Review"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: modules/rich-snippets/rich-snippets.php:70
|
262 |
+
msgid "Item Reviewed"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: modules/rich-snippets/rich-snippets.php:78
|
266 |
+
msgid "Star Rating"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: modules/rich-snippets/rich-snippets.php:83
|
270 |
+
msgid "Review Author"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: modules/rich-snippets/rich-snippets.php:89
|
274 |
+
msgid "Date Reviewed"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: modules/rich-snippets/rich-snippets.php:223
|
278 |
+
#: modules/rich-snippets/rich-snippets.php:232
|
279 |
+
msgid "None"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: modules/rich-snippets/rich-snippets.php:225
|
283 |
+
msgid "Rich Snippet Type:"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: modules/rich-snippets/rich-snippets.php:229
|
287 |
+
msgid "Name of Reviewed Item:"
|
|
|
|
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: modules/rich-snippets/rich-snippets.php:233
|
291 |
+
msgid "0.5 stars"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: modules/rich-snippets/rich-snippets.php:234
|
295 |
+
msgid "1 star"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: modules/rich-snippets/rich-snippets.php:235
|
299 |
+
msgid "1.5 stars"
|
|
|
|
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: modules/rich-snippets/rich-snippets.php:236
|
303 |
+
msgid "2 stars"
|
|
|
|
|
|
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: modules/rich-snippets/rich-snippets.php:237
|
307 |
+
msgid "2.5 stars"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: modules/rich-snippets/rich-snippets.php:238
|
311 |
+
msgid "3 stars"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: modules/rich-snippets/rich-snippets.php:239
|
315 |
+
msgid "3.5 stars"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: modules/rich-snippets/rich-snippets.php:240
|
319 |
+
msgid "4 stars"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: modules/rich-snippets/rich-snippets.php:241
|
323 |
+
msgid "4.5 stars"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: modules/rich-snippets/rich-snippets.php:242
|
327 |
+
msgid "5 stars"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: modules/rich-snippets/rich-snippets.php:243
|
331 |
+
msgid "Star Rating for Reviewed Item:"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:12
|
335 |
+
msgid "Internal Relevance Researcher"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:13
|
339 |
+
msgid "Int. Rel. Researcher"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:21
|
343 |
+
msgid "Step 1: Enter Keywords"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:23
|
347 |
+
msgid "(Type one keyword per line)"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:25
|
351 |
+
msgid "Step 2: Set Options and Submit"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:27
|
355 |
+
msgid "Put keywords in quotes"
|
|
|
|
|
|
|
|
|
|
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:28
|
359 |
+
#: modules/competition-queries/competition-queries.php:63
|
360 |
+
msgid "Show 100 results per page"
|
|
|
|
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:30
|
364 |
+
#: modules/competition-queries/competition-queries.php:65
|
365 |
+
msgid "Use Google’s minimal mode"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:33
|
369 |
+
#: modules/competition-queries/competition-queries.php:71
|
370 |
+
msgid "Submit"
|
|
|
|
|
|
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: modules/widgets/widgets.php:12
|
374 |
+
msgid "SEO Ultimate Widgets"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: modules/widgets/widgets.php:36
|
378 |
msgid ""
|
379 |
+
"On category archives, displays a list of child categories and/or posts in "
|
380 |
+
"the category. Displays a list of top-level categories everywhere else. "
|
381 |
+
"Powered by the SEO Ultimate plugin."
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: modules/widgets/widgets.php:37
|
385 |
+
msgid "Siloed Categories"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: modules/widgets/widgets.php:51
|
389 |
+
msgid "Tags"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: modules/widgets/widgets.php:122
|
393 |
+
msgid "Title:"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: modules/widgets/widgets.php:126
|
397 |
+
msgid "Show post counts"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: modules/widgets/widgets.php:128
|
401 |
+
msgid "Taxonomy:"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: modules/widgets/widgets.php:153
|
405 |
msgid ""
|
406 |
+
"Add this widget to display Deeplink Juggernaut’s Footer Links in a "
|
407 |
+
"widget area of your choosing rather than the default wp_footer section. "
|
408 |
+
"Powered by the SEO Ultimate plugin."
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: modules/widgets/widgets.php:154 modules/autolinks/footer-autolinks.php:17
|
412 |
+
msgid "Footer Links"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: modules/widgets/widgets.php:207
|
416 |
+
msgid "Title: <em>(optional)</em>"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: modules/widgets/widgets.php:211
|
420 |
+
msgid "Display as a list"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: modules/widgets/widgets.php:214
|
424 |
+
msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
|
|
|
|
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:20
|
428 |
+
msgid "Link Mask Generator"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:27
|
432 |
+
msgid "Alias Directory"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:29
|
436 |
+
msgid "Nofollow aliased links"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:29
|
440 |
+
msgid "Link Attributes"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:49
|
444 |
+
msgid "Link Masks:"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:52
|
448 |
+
msgid "URL"
|
449 |
+
msgstr ""
|
|
|
|
|
450 |
|
451 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:52
|
452 |
+
msgid "Mask URL"
|
453 |
+
msgstr ""
|
|
|
|
|
454 |
|
455 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:83
|
456 |
msgid ""
|
457 |
+
"You can stop search engines from following a link by typing in a mask for "
|
458 |
+
"its URL."
|
459 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
460 |
|
461 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:160
|
462 |
+
msgid "Added by Link Alias Generator (LAG) module"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:171
|
466 |
+
msgid "End LAG"
|
467 |
+
msgstr ""
|
468 |
|
469 |
#: modules/titles/titles.php:12
|
470 |
msgid "Title Tag Rewriter"
|
566 |
#: modules/titles/titles.php:76
|
567 |
msgid "Month Archive Title Format"
|
568 |
msgstr ""
|
569 |
+
|
570 |
+
#: modules/titles/titles.php:77
|
571 |
+
msgid "Year Archive Title Format"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: modules/titles/titles.php:78
|
575 |
+
msgid "Author Archive Title Format"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: modules/titles/titles.php:79
|
579 |
+
msgid "Search Title Format"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: modules/titles/titles.php:80
|
583 |
+
msgid "404 Title Format"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: modules/titles/titles.php:81
|
587 |
+
msgid "Pagination Title Format"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: modules/titles/titles.php:307
|
591 |
+
msgid "Title Tag:"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: modules/titles/titles.php:312
|
595 |
+
msgid ""
|
596 |
+
"<strong>Title Tag</strong> — The exact contents of the <title> "
|
597 |
+
"tag. The title appears in visitors’ title bars and in search engine "
|
598 |
+
"result titles. If this box is left blank, then the <a href=\"admin.php?"
|
599 |
+
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: modules/competition-queries/competition-queries.php:12
|
603 |
+
msgid "Competition Researcher"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: modules/competition-queries/competition-queries.php:13
|
607 |
+
msgid "Comp. Researcher"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: modules/competition-queries/competition-queries.php:17
|
611 |
msgid ""
|
612 |
+
"The Competition Researcher provides you with easy access to various search "
|
613 |
+
"engine tools which you can use to research multiple search queries or URLs."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: modules/competition-queries/competition-queries.php:21
|
617 |
+
msgid "Step 1: Choose Your Research Tool"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: modules/competition-queries/competition-queries.php:25
|
621 |
+
msgid "Keywords"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: modules/competition-queries/competition-queries.php:25
|
625 |
+
msgid "Normal Search"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: modules/competition-queries/competition-queries.php:25
|
629 |
+
msgid "Find out how many pages contain the words in each query"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: modules/competition-queries/competition-queries.php:26
|
633 |
+
msgid "Phrase Match"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: modules/competition-queries/competition-queries.php:26
|
637 |
+
msgid ""
|
638 |
+
"Find out how many “actual” pages are competing for each query"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: modules/competition-queries/competition-queries.php:27
|
642 |
+
msgid "Allinanchor"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: modules/competition-queries/competition-queries.php:27
|
646 |
+
msgid "Find out which sites have the most links for each query"
|
|
|
|
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: modules/competition-queries/competition-queries.php:28
|
650 |
+
msgid "Allintitle"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: modules/competition-queries/competition-queries.php:28
|
654 |
+
msgid ""
|
655 |
+
"Find out which sites have the highest relevance in the title for each query"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: modules/competition-queries/competition-queries.php:29
|
659 |
+
msgid "Allintext"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: modules/competition-queries/competition-queries.php:29
|
663 |
+
msgid "Find out which sites have the most relevant content/text on their pages"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: modules/competition-queries/competition-queries.php:30
|
667 |
+
msgid "Allinurl"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: modules/competition-queries/competition-queries.php:30
|
671 |
msgid ""
|
672 |
+
"Find out which sites have the most relevant naming conventions for each "
|
673 |
+
"keyword"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: modules/competition-queries/competition-queries.php:32
|
677 |
+
msgid "URLs"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: modules/competition-queries/competition-queries.php:32
|
681 |
+
msgid "Site"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: modules/competition-queries/competition-queries.php:32
|
685 |
+
msgid "Find out how many pages are indexed for each domain"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: modules/competition-queries/competition-queries.php:33
|
689 |
+
#: modules/competition-queries/competition-queries.php:38
|
690 |
+
msgid "Inbound Links"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: modules/competition-queries/competition-queries.php:33
|
694 |
+
msgid "Find out how many sites link to the domains"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: modules/competition-queries/competition-queries.php:34
|
698 |
+
#: modules/competition-queries/competition-queries.php:38
|
699 |
+
msgid "Outbound Links"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: modules/competition-queries/competition-queries.php:34
|
703 |
+
msgid "Find out how many sites the domains link to"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: modules/competition-queries/competition-queries.php:57
|
707 |
+
msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: modules/competition-queries/competition-queries.php:59
|
711 |
+
msgid "(Type in one per line)"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: modules/competition-queries/competition-queries.php:61
|
715 |
+
msgid "Step 3: Set Options and Submit"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: modules/link-nofollow/link-nofollow.php:12
|
719 |
+
msgid "Nofollow Manager"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: modules/link-nofollow/link-nofollow.php:53
|
723 |
+
msgid "Add the nofollow attribute to..."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: modules/link-nofollow/link-nofollow.php:55
|
727 |
+
msgid "Adjacent post links"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: modules/link-nofollow/link-nofollow.php:56
|
731 |
+
msgid "Category links (after posts)"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: modules/link-nofollow/link-nofollow.php:57
|
735 |
+
msgid "Category links (in lists)"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: modules/link-nofollow/link-nofollow.php:58
|
739 |
+
msgid "Comment anchor links"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: modules/link-nofollow/link-nofollow.php:59
|
743 |
+
msgid "Comment feed links"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: modules/link-nofollow/link-nofollow.php:60
|
747 |
+
msgid "Date-based archive links"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: modules/link-nofollow/link-nofollow.php:61
|
751 |
+
msgid "Pagination navigation links (all)"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: modules/link-nofollow/link-nofollow.php:62
|
755 |
+
msgid "Pagination navigation links (on blog home only)"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: modules/link-nofollow/link-nofollow.php:63
|
759 |
+
msgid "“Read more” links"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: modules/link-nofollow/link-nofollow.php:64
|
763 |
+
msgid "Registration link"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: modules/link-nofollow/link-nofollow.php:65
|
767 |
+
msgid "Login link"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: modules/link-nofollow/link-nofollow.php:66
|
771 |
+
msgid "Tag links (after posts)"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: modules/link-nofollow/link-nofollow.php:67
|
775 |
+
msgid "Tag links (in lists and clouds)"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
779 |
+
msgid "When displaying page lists, nofollow links to this page"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
783 |
+
msgid "Nofollow:"
|
784 |
msgstr ""
|
785 |
|
786 |
#: modules/meta/meta-keywords.php:12
|
791 |
msgid "Meta Keywords"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: modules/meta/meta-keywords.php:33 modules/noindex/noindex.php:43
|
795 |
+
msgid "Default Values"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
#: modules/meta/meta-keywords.php:56
|
799 |
msgid "The %d most commonly-used words"
|
800 |
msgstr ""
|
851 |
msgid "Meta Robot Tags"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: modules/meta/meta-robots.php:22
|
855 |
msgid "Global"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: modules/meta/meta-robots.php:28
|
859 |
msgid "Spider Instructions"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: modules/meta/meta-robots.php:30
|
863 |
msgid ""
|
864 |
"Don’t use this site’s Open Directory description in search results."
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: modules/meta/meta-robots.php:31
|
868 |
msgid ""
|
869 |
"Don’t use this site’s Yahoo! Directory description in search "
|
870 |
"results."
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: modules/meta/meta-robots.php:32
|
874 |
msgid "Don’t cache or archive this site."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: modules/meta/meta-descriptions.php:12
|
878 |
+
msgid "Meta Description Editor"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: modules/meta/meta-descriptions.php:13
|
882 |
+
msgid "Meta Descriptions"
|
|
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: modules/meta/meta-descriptions.php:31
|
886 |
+
msgid "Meta Description"
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: modules/meta/meta-descriptions.php:48
|
890 |
+
msgid "Post Description Format"
|
891 |
+
msgstr ""
|
892 |
+
|
893 |
+
#: modules/meta/meta-descriptions.php:49
|
894 |
+
msgid "Category Description Format"
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: modules/meta/meta-descriptions.php:50
|
898 |
+
msgid "Post Tag Description Format"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
+
#: modules/meta/meta-descriptions.php:57
|
902 |
+
msgid "Blog Homepage Meta Description"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: modules/meta/meta-descriptions.php:59
|
906 |
+
msgid "Use this blog’s tagline as the default homepage description."
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: modules/meta/meta-descriptions.php:60
|
910 |
+
msgid "Default Value"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: modules/meta/meta-descriptions.php:122
|
914 |
+
msgid "Meta Description:"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: modules/meta/meta-descriptions.php:125
|
918 |
+
msgid "You’ve entered %s characters. Most search engines use up to 140."
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: modules/meta/meta-descriptions.php:133
|
922 |
+
msgid ""
|
923 |
+
"<strong>Description</strong> — The value of the meta description tag. "
|
924 |
+
"The description will often appear underneath the title in search engine "
|
925 |
+
"results. Writing an accurate, attention-grabbing description for every post "
|
926 |
+
"is important to ensuring a good search results clickthrough rate."
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: modules/import-aiosp/import-aiosp.php:12
|
930 |
+
msgid "Import from All in One SEO Pack"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: modules/import-aiosp/import-aiosp.php:13
|
934 |
+
msgid "AIOSP Import"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: modules/import-aiosp/import-aiosp.php:15
|
938 |
+
msgid "All in One SEO Pack"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: modules/import-aiosp/import-aiosp.php:16
|
942 |
+
msgid "AIOSP"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: modules/import-aiosp/import-aiosp.php:17
|
946 |
+
msgid "Import post data (custom title tags and meta tags)."
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: modules/import-aiosp/import-aiosp.php:21
|
950 |
+
msgid ""
|
951 |
+
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
952 |
+
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
953 |
+
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
954 |
+
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
955 |
+
"to be currently installed or activated for the import to take place."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: modules/import-aiosp/import-aiosp.php:23
|
959 |
+
msgid ""
|
960 |
+
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
961 |
+
"you use an older version of AIOSP, you should update to the latest version "
|
962 |
+
"first and run AIOSP’s upgrade process."
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: modules/sds-blog/sds-blog.php:12
|
966 |
+
msgid "Whitepapers"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: modules/sds-blog/sds-blog.php:13
|
970 |
+
msgid "SEO Design Solutions Whitepapers"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 6.6) #-#-#-#-#
|
974 |
+
#. Author of the plugin/theme
|
975 |
+
#: modules/sds-blog/sds-blog.php:49
|
976 |
+
msgid "SEO Design Solutions"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: modules/sds-blog/sds-blog.php:50
|
980 |
+
msgid ""
|
981 |
+
"The search engine optimization articles below are loaded from the website of "
|
982 |
+
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
983 |
+
"an article’s title to read it."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: modules/modules/modules.php:12
|
987 |
+
msgid "Module Manager"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: modules/modules/modules.php:13
|
991 |
+
msgid "Modules"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: modules/modules/modules.php:41
|
995 |
+
msgid ""
|
996 |
+
"SEO Ultimate’s features are located in groups called “modules."
|
997 |
+
"” By default, most of these modules are listed in the “"
|
998 |
+
"SEO” menu on the left. Whenever you’re working with a module, "
|
999 |
+
"you can view documentation by clicking the tabs in the upper-right-hand "
|
1000 |
+
"corner of your administration screen."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: modules/modules/modules.php:43
|
1004 |
+
msgid ""
|
1005 |
+
"The Module Manager lets you disable or hide modules you don’t use. "
|
1006 |
+
"You can also silence modules from displaying bubble alerts on the menu."
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: modules/modules/modules.php:47
|
1010 |
+
msgid "Modules updated."
|
|
|
|
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: modules/modules/modules.php:52
|
1014 |
+
msgid "Status"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: modules/modules/modules.php:53
|
1018 |
+
msgid "Module"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: modules/modules/modules.php:66
|
1022 |
+
msgid "Enabled"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: modules/modules/modules.php:67
|
1026 |
+
msgid "Silenced"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: modules/modules/modules.php:68
|
1030 |
+
msgid "Hidden"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: modules/modules/modules.php:69
|
1034 |
+
msgid "Disabled"
|
|
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: modules/slugs/slugs.php:12
|
1038 |
+
msgid "Slug Optimizer"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: modules/slugs/slugs.php:16
|
1042 |
+
msgid "Words to Remove"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: modules/404s/fofs.php:11
|
1046 |
+
msgid "404 Monitor"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: modules/404s/fofs-settings.php:16
|
1050 |
+
msgid "404 Monitor Settings"
|
|
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: modules/404s/fofs-settings.php:37
|
1054 |
+
msgid "Continue monitoring for new 404 errors"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: modules/404s/fofs-settings.php:37
|
1058 |
+
msgid "Monitoring Settings"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: modules/404s/fofs-settings.php:39
|
1062 |
+
msgid "Only log these types of 404 errors:"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: modules/404s/fofs-settings.php:40
|
1066 |
+
msgid "404s generated by search engine spiders"
|
|
|
|
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: modules/404s/fofs-settings.php:41
|
1070 |
+
msgid "404s with referring URLs"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: modules/404s/fofs-settings.php:42
|
1074 |
+
msgid "Log Restrictions"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: modules/404s/fofs-settings.php:43
|
1078 |
+
msgid "Maximum Log Entries"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: modules/404s/fofs-settings.php:44
|
1082 |
+
msgid "URLs to Ignore"
|
|
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: modules/404s/fofs-settings.php:44
|
1086 |
+
msgid "(Use * as wildcard)"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: modules/404s/fofs-log.php:16
|
1090 |
+
msgid "404 Monitor Log"
|
|
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: modules/404s/fofs-log.php:17
|
1094 |
+
msgid "Log"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: modules/404s/fofs-log.php:114
|
1098 |
+
msgid "Hits"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: modules/404s/fofs-log.php:115
|
1102 |
+
msgid "URL with 404 Error"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: modules/404s/fofs-log.php:116
|
1106 |
+
msgid "Date of Most Recent Hit"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: modules/404s/fofs-log.php:117
|
1110 |
+
msgid "Referers"
|
|
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
|
1114 |
+
msgid "User Agents"
|
|
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: modules/404s/fofs-log.php:134
|
1118 |
+
msgid ""
|
1119 |
+
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
1120 |
+
"Settings tab."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: modules/404s/fofs-log.php:141
|
1124 |
+
msgid "The log entry was successfully deleted."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: modules/404s/fofs-log.php:143
|
1128 |
+
msgid "This log entry has already been deleted."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: modules/404s/fofs-log.php:152
|
1132 |
+
msgid "The log was successfully cleared."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: modules/404s/fofs-log.php:156
|
1136 |
+
msgid "No 404 errors in the log."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: modules/404s/fofs-log.php:180
|
1140 |
+
msgid "Open URL in new window (will not be logged)"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: modules/404s/fofs-log.php:181
|
1144 |
+
msgid "Query Google for cached version of URL (opens in new window)"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: modules/404s/fofs-log.php:182
|
1148 |
+
msgid "Remove this URL from the log"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: modules/404s/fofs-log.php:185
|
1152 |
+
msgid "%s at %s"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: modules/404s/fofs-log.php:189
|
1156 |
+
msgid "View list of referring URLs"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: modules/404s/fofs-log.php:190
|
1160 |
+
msgid "View list of user agents"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: modules/404s/fofs-log.php:200
|
1164 |
+
msgid "Referring URLs"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
|
1168 |
+
msgid "Hide list"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: modules/404s/fofs-log.php:252
|
1172 |
+
msgid "Are you sure you want to delete all 404 log entries?"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: modules/404s/fofs-log.php:254
|
1176 |
+
msgid "Clear Log"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: modules/linkbox/linkbox.php:12
|
1180 |
+
msgid "Linkbox Inserter"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: modules/linkbox/linkbox.php:18
|
1184 |
+
msgid "Link to this post!"
|
|
|
|
|
|
|
|
|
|
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: modules/linkbox/linkbox.php:45
|
1188 |
+
msgid "At the end of posts"
|
|
|
|
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: modules/linkbox/linkbox.php:46
|
1192 |
+
msgid "At the end of pages"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: modules/linkbox/linkbox.php:47
|
1196 |
+
msgid "When called by the su_linkbox hook"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: modules/linkbox/linkbox.php:48
|
1200 |
+
msgid "Display linkboxes..."
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: modules/linkbox/linkbox.php:49
|
1204 |
+
msgid "Linkbox HTML"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: modules/more-links/more-links.php:12
|
1208 |
+
msgid "More Link Customizer"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: modules/more-links/more-links.php:30
|
1212 |
+
msgid "Default More Link Text"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: modules/more-links/more-links.php:51
|
1216 |
+
msgid "More Link Text:"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
#: modules/permalinks/permalinks.php:15
|
1234 |
msgid "Remove the URL bases of..."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: modules/misc/misc.php:11
|
1238 |
+
msgid "Miscellaneous"
|
1239 |
+
msgstr ""
|
1240 |
+
|
1241 |
+
#: modules/misc/misc.php:14
|
1242 |
+
msgid ""
|
1243 |
+
"The Miscellaneous page contains modules that don’t have enough "
|
1244 |
+
"settings to warrant their own separate admin pages."
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
#: modules/files/files.php:14
|
1248 |
msgid "File Editor"
|
1249 |
msgstr ""
|
1299 |
"robots.txt file, since you’re using <a href=\"%s\">a custom one</a>."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: modules/canonical/canonical.php:12
|
1303 |
+
msgid "Canonicalizer"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: modules/canonical/canonical.php:39
|
1307 |
+
msgid ""
|
1308 |
+
"Generate <code><link rel="canonical" /></code> meta tags."
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: modules/canonical/canonical.php:40
|
1312 |
+
msgid "Send <code>rel="canonical"</code> HTTP headers."
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: modules/canonical/canonical.php:41
|
1316 |
+
msgid "Redirect requests for nonexistent pagination."
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: modules/user-code/user-code.php:12
|
1320 |
+
msgid "Code Inserter"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: modules/user-code/user-code.php:27
|
1324 |
+
msgid "Everywhere"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: modules/user-code/user-code.php:34
|
1328 |
+
msgid "<head> Tag"
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: modules/user-code/user-code.php:35
|
1332 |
+
msgid "Before Item Content"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: modules/user-code/user-code.php:36
|
1336 |
+
msgid "After Item Content"
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: modules/user-code/user-code.php:37
|
1340 |
+
msgid "Footer"
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: modules/user-code/user-code.php:51
|
1344 |
+
msgid "Code Inserter module"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
#: modules/settings/settings-data.php:16
|
1512 |
msgid "Restore Default Settings"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: modules/settings/global-settings.php:18
|
1516 |
+
msgid "Global Settings"
|
1517 |
+
msgstr ""
|
1518 |
+
|
1519 |
+
#: modules/settings/global-settings.php:40
|
1520 |
+
msgid "Enable nofollow’d attribution link"
|
1521 |
+
msgstr ""
|
1522 |
+
|
1523 |
+
#: modules/settings/global-settings.php:41
|
1524 |
+
msgid "Enable attribution link CSS styling"
|
1525 |
+
msgstr ""
|
1526 |
+
|
1527 |
+
#: modules/settings/global-settings.php:42
|
1528 |
+
msgid "Notify me about unnecessary active plugins"
|
1529 |
+
msgstr ""
|
1530 |
+
|
1531 |
+
#: modules/settings/global-settings.php:43
|
1532 |
+
msgid "Insert comments around HTML code insertions"
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: modules/settings/settings.php:12
|
1536 |
+
msgid "Plugin Settings"
|
1537 |
+
msgstr ""
|
1538 |
+
|
1539 |
+
#: modules/settings/settings.php:13
|
1540 |
+
msgid "SEO Ultimate Plugin Settings"
|
1541 |
+
msgstr ""
|
1542 |
+
|
1543 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 6.6) #-#-#-#-#
|
1544 |
+
#. Plugin Name of the plugin/theme
|
1545 |
+
#: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:767
|
1546 |
+
msgid "SEO Ultimate"
|
1547 |
+
msgstr ""
|
1548 |
+
|
1549 |
#: modules/settings/uninstall.php:17
|
1550 |
msgid "Uninstaller"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1250
|
1554 |
+
msgid "Uninstall"
|
1555 |
+
msgstr ""
|
1556 |
+
|
1557 |
#: modules/settings/uninstall.php:27
|
1558 |
msgid ""
|
1559 |
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
1590 |
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
1591 |
msgstr ""
|
1592 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1593 |
#: modules/settings/install.php:18
|
1594 |
msgid "Upgrade/Downgrade/Reinstall"
|
1595 |
msgstr ""
|
1650 |
#: modules/settings/install.php:76
|
1651 |
msgid ""
|
1652 |
"There was an error retrieving the list of available versions. Please try "
|
1653 |
+
"again later."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: modules/settings/install.php:81
|
1657 |
+
msgid ""
|
1658 |
+
"To download and install a fresh copy of the SEO Ultimate version you are "
|
1659 |
+
"currently using, click the “Reinstall” button below."
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: modules/settings/install.php:108
|
1663 |
+
msgid "Your Current Version"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: modules/settings/install.php:110
|
1667 |
+
msgid "Latest Version"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: modules/settings/install.php:130
|
1671 |
+
msgid ""
|
1672 |
+
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
1673 |
+
"blog."
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: modules/settings/install.php:140
|
1677 |
+
msgid "Downgrade to SEO Ultimate %s"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: modules/settings/install.php:143
|
1681 |
+
msgid "Reinstall SEO Ultimate %s"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: modules/settings/install.php:146
|
1685 |
+
msgid "Upgrade to SEO Ultimate %s"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: modules/sharing-buttons/sharing-buttons.php:12
|
1689 |
+
msgid "Sharing Facilitator"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: modules/sharing-buttons/sharing-buttons.php:25
|
1693 |
+
msgid "Bookmark and Share"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: modules/sharing-buttons/sharing-buttons.php:39
|
1697 |
+
msgid "Which provider would you like to use for your sharing buttons?"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: modules/sharing-buttons/sharing-buttons.php:41
|
1701 |
+
msgid "None; disable sharing buttons"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: modules/sharing-buttons/sharing-buttons.php:42
|
1705 |
+
msgid "Use the ShareThis button"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: modules/sharing-buttons/sharing-buttons.php:43
|
1709 |
+
msgid "Use the AddThis button"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: modules/noindex/noindex.php:12
|
1713 |
+
msgid "Noindex Manager"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
|
1717 |
+
#: modules/noindex/noindex.php:67
|
1718 |
+
msgid "Noindex"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
|
1722 |
+
#: modules/autolinks/content-autolinks.php:295
|
1723 |
+
#: modules/autolinks/footer-autolinks.php:218
|
1724 |
+
msgid "Nofollow"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
|
1728 |
+
msgid "Use default"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: modules/noindex/noindex.php:63
|
1732 |
+
msgid "noindex"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: modules/noindex/noindex.php:64
|
1736 |
+
msgid "index"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: modules/noindex/noindex.php:74
|
1740 |
+
msgid "nofollow"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: modules/noindex/noindex.php:75
|
1744 |
+
msgid "follow"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: modules/noindex/noindex.php:89
|
1748 |
+
msgid ""
|
1749 |
+
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
1750 |
+
"block indexing of the entire site, regardless of which options are set below."
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: modules/noindex/noindex.php:92
|
1754 |
+
msgid "Prevent indexing of..."
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: modules/noindex/noindex.php:93
|
1758 |
+
msgid "Administration back-end pages"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: modules/noindex/noindex.php:94
|
1762 |
+
msgid "Author archives"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: modules/noindex/noindex.php:95
|
1766 |
+
msgid "Blog search pages"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: modules/noindex/noindex.php:96
|
1770 |
+
msgid "Category archives"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: modules/noindex/noindex.php:97
|
1774 |
+
msgid "Comment feeds"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: modules/noindex/noindex.php:98
|
1778 |
+
msgid "Comment subpages"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: modules/noindex/noindex.php:99
|
1782 |
+
msgid "Date-based archives"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: modules/noindex/noindex.php:100
|
1786 |
+
msgid "Subpages of the homepage"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: modules/noindex/noindex.php:101
|
1790 |
+
msgid "Tag archives"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: modules/noindex/noindex.php:102
|
1794 |
+
msgid "User login/registration pages"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: modules/noindex/noindex.php:165
|
1798 |
+
msgid "Noindex: Tell search engines not to index this webpage."
|
|
|
|
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: modules/noindex/noindex.php:166
|
1802 |
+
msgid "Nofollow: Tell search engines not to spider links on this webpage."
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: modules/noindex/noindex.php:167
|
1806 |
+
msgid "Meta Robots Tag:"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: modules/autolinks/autolinks.php:11
|
1810 |
+
msgid "Deeplink Juggernaut"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: modules/autolinks/autolinks.php:18
|
1814 |
msgid ""
|
1815 |
+
"Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
|
1816 |
+
"(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
|
1817 |
+
"WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your "
|
1818 |
+
"webhost. In the meantime, you can return to an older version of Deeplink "
|
1819 |
+
"Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
|
1820 |
+
"a> to SEO Ultimate 5.9."
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: modules/autolinks/content-autolinks.php:16
|
1824 |
+
msgid "Content Deeplink Juggernaut"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: modules/autolinks/content-autolinks.php:17
|
1828 |
+
msgid "Content Links"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: modules/autolinks/content-autolinks.php:203
|
1832 |
+
#: modules/autolinks/footer-autolinks.php:133
|
1833 |
+
msgid ""
|
1834 |
+
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
1835 |
+
"a certain word or phrase in your post/page content to a URL you specify."
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: modules/autolinks/content-autolinks.php:254
|
1839 |
+
#: modules/autolinks/footer-autolinks.php:165
|
1840 |
+
msgid "Edit Existing Links"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: modules/autolinks/content-autolinks.php:258
|
1844 |
+
#: modules/autolinks/footer-autolinks.php:169
|
1845 |
+
msgid "Add a New Link"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: modules/autolinks/content-autolinks.php:266
|
1849 |
+
#: modules/autolinks/footer-autolinks.php:179
|
1850 |
+
msgid "Anchor Text"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: modules/autolinks/content-autolinks.php:267
|
1854 |
+
#: modules/autolinks/footer-autolinks.php:180
|
1855 |
+
msgid "Destination"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: modules/autolinks/content-autolinks.php:268
|
1859 |
+
#: modules/autolinks/footer-autolinks.php:181
|
1860 |
+
msgid "Title Attribute"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: modules/autolinks/content-autolinks.php:269
|
1864 |
+
#: modules/autolinks/footer-autolinks.php:182
|
1865 |
+
msgid "Options"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: modules/autolinks/content-autolinks.php:271
|
1869 |
+
#: modules/autolinks/footer-autolinks.php:184
|
1870 |
+
msgid "Delete"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: modules/autolinks/content-autolinks.php:297
|
1874 |
+
#: modules/autolinks/footer-autolinks.php:220
|
1875 |
+
msgid "New window"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: modules/autolinks/content-autolinks.php:361
|
1879 |
+
msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: modules/autolinks/content-autolinks.php:362
|
1883 |
+
msgid "Don’t add autolinks to anchor texts found in this post."
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: modules/autolinks/content-autolinks.php:362
|
1887 |
+
msgid "Autolink Exclusion:"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: modules/autolinks/content-autolinks.php:367
|
1891 |
+
msgid ""
|
1892 |
+
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
1893 |
+
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
1894 |
+
"other posts and link it to this post. For example, if the post you’re "
|
1895 |
+
"editing is about “blue widgets,” you could type “blue "
|
1896 |
+
"widgets” into the “Incoming Autolink Anchors” box and "
|
1897 |
+
"Deeplink Juggernaut will automatically build internal links to this post "
|
1898 |
+
"with that anchor text (assuming other posts contain that text)."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: modules/autolinks/content-autolinks-settings.php:16
|
1902 |
+
msgid "Content Deeplink Juggernaut Settings"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: modules/autolinks/content-autolinks-settings.php:17
|
1906 |
+
msgid "Content Link Settings"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: modules/autolinks/content-autolinks-settings.php:32
|
1910 |
+
msgid "Allow posts to link to themselves."
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: modules/autolinks/content-autolinks-settings.php:32
|
1914 |
+
msgid "Self-Linking"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: modules/autolinks/content-autolinks-settings.php:35
|
1918 |
+
msgid "Don’t add any more than %d autolinks per post/page/etc."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: modules/autolinks/content-autolinks-settings.php:36
|
1922 |
+
msgid ""
|
1923 |
+
"Don’t link the same anchor text any more than %d times per post/page/"
|
1924 |
+
"etc."
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: modules/autolinks/content-autolinks-settings.php:37
|
1928 |
+
msgid ""
|
1929 |
+
"Don’t link the same anchor text any more than %d times across my "
|
1930 |
+
"entire site."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: modules/autolinks/content-autolinks-settings.php:38
|
1934 |
+
msgid "Quantity Restrictions"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: modules/autolinks/content-autolinks-settings.php:40
|
1938 |
+
msgid ""
|
1939 |
+
"Don’t add autolinks to text within these HTML tags <em>(separate with "
|
1940 |
+
"commas)</em>:"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: modules/autolinks/content-autolinks-settings.php:40
|
1944 |
+
msgid "Tag Restrictions"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: modules/autolinks/content-autolinks-settings.php:48
|
1948 |
+
msgid "%s can only link to internal destinations that share at least one..."
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: modules/autolinks/content-autolinks-settings.php:61
|
1952 |
+
msgid "Siloing"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: modules/autolinks/footer-autolinks.php:16
|
1956 |
+
msgid "Footer Deeplink Juggernaut"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: modules/autolinks/footer-autolinks.php:177
|
1960 |
+
msgid "Link Location (optional)"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: modules/autolinks/footer-autolinks.php:205
|
1964 |
+
msgid "Match child content"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: modules/autolinks/footer-autolinks.php:207
|
1968 |
+
msgid "Negative match"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
#: modules/autolinks/footer-autolinks-settings.php:16
|
1992 |
msgid "Link Separator"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: plugin/class.su-installer.php:9
|
1996 |
+
msgid "Package not available."
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: plugin/class.su-installer.php:12
|
2000 |
+
msgid "Removing the current version of the plugin…"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: plugin/class.su-installer.php:13
|
2004 |
+
msgid "Could not remove the current version of the plugin."
|
|
|
|
|
|
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: plugin/class.su-installer.php:17
|
2008 |
+
msgid "Downloading old version from <span class=\"code\">%s</span>…"
|
|
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: plugin/class.su-installer.php:18
|
2012 |
+
msgid "Unpacking the downgrade…"
|
|
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: plugin/class.su-installer.php:19
|
2016 |
+
msgid "Installing the downgrade…"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: plugin/class.su-installer.php:20
|
2020 |
+
msgid "Plugin downgrade failed."
|
|
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: plugin/class.su-installer.php:21
|
2024 |
+
msgid "Plugin downgraded successfully."
|
|
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: plugin/class.su-installer.php:24
|
2028 |
+
msgid "Downloading from <span class=\"code\">%s</span>…"
|
|
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#: plugin/class.su-installer.php:25
|
2032 |
+
msgid "Unpacking the reinstall…"
|
|
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: plugin/class.su-installer.php:26
|
2036 |
+
msgid "Reinstalling the current version…"
|
|
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: plugin/class.su-installer.php:27
|
2040 |
+
msgid "Plugin reinstallation failed."
|
2041 |
msgstr ""
|
2042 |
|
2043 |
+
#: plugin/class.su-installer.php:28
|
2044 |
+
msgid "Plugin reinstalled successfully."
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: plugin/class.su-installer.php:32
|
2048 |
+
msgid "Downloading upgrade from <span class=\"code\">%s</span>…"
|
|
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: plugin/class.su-installer.php:33
|
2052 |
+
msgid "Unpacking the upgrade…"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: plugin/class.su-installer.php:34
|
2056 |
+
msgid "Installing the upgrade…"
|
|
|
|
|
|
|
|
|
|
|
|
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: plugin/class.su-installer.php:35
|
2060 |
+
msgid "Plugin upgrade failed."
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: plugin/class.su-installer.php:36
|
2064 |
+
msgid "Plugin upgraded successfully."
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
|
2068 |
+
msgid "%s and %s"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
|
2072 |
+
msgid ", "
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
|
2076 |
+
msgid "%s, and %s"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: plugin/class.seo-ultimate.php:767
|
2080 |
+
msgid "SEO"
|
|
|
|
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: plugin/class.seo-ultimate.php:956
|
2084 |
msgid ""
|
2085 |
+
"It looks like you made changes to the settings of this SEO Ultimate module. "
|
2086 |
+
"If you leave before saving, those changes will be lost."
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: plugin/class.seo-ultimate.php:1050
|
2090 |
+
msgid "SEO Settings Help"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: plugin/class.seo-ultimate.php:1052
|
2094 |
+
msgid "The SEO Settings box lets you customize these settings:"
|
2095 |
+
msgstr ""
|
2096 |
+
|
2097 |
+
#: plugin/class.seo-ultimate.php:1054
|
2098 |
+
msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
|
2099 |
+
msgstr ""
|
2100 |
+
|
2101 |
+
#: plugin/class.seo-ultimate.php:1109
|
2102 |
msgid ""
|
2103 |
+
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
|
2104 |
+
"1$s to avoid plugin conflicts."
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: plugin/class.seo-ultimate.php:1151
|
2108 |
+
msgid "new module"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: plugin/class.seo-ultimate.php:1151
|
2112 |
+
msgid "new modules"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: plugin/class.seo-ultimate.php:1152
|
2116 |
+
msgid "new feature"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: plugin/class.seo-ultimate.php:1152
|
2120 |
+
msgid "new features"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: plugin/class.seo-ultimate.php:1153
|
2124 |
+
msgid "bugfix"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: plugin/class.seo-ultimate.php:1153
|
2128 |
+
msgid "bugfixes"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: plugin/class.seo-ultimate.php:1154
|
2132 |
+
msgid "improvement"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
+
#: plugin/class.seo-ultimate.php:1154
|
2136 |
+
msgid "improvements"
|
2137 |
+
msgstr ""
|
2138 |
+
|
2139 |
+
#: plugin/class.seo-ultimate.php:1155
|
2140 |
+
msgid "security fix"
|
2141 |
+
msgstr ""
|
2142 |
+
|
2143 |
+
#: plugin/class.seo-ultimate.php:1155
|
2144 |
+
msgid "security fixes"
|
2145 |
+
msgstr ""
|
2146 |
+
|
2147 |
+
#: plugin/class.seo-ultimate.php:1186
|
2148 |
+
msgid "%d %s"
|
2149 |
+
msgstr ""
|
2150 |
+
|
2151 |
+
#: plugin/class.seo-ultimate.php:1192
|
2152 |
+
msgid "Upgrade now to get %s. %s."
|
2153 |
msgstr ""
|
2154 |
|
2155 |
+
#: plugin/class.seo-ultimate.php:1194
|
2156 |
+
msgid "View changelog"
|
2157 |
+
msgstr ""
|
2158 |
+
|
2159 |
+
#: plugin/class.seo-ultimate.php:1270
|
2160 |
+
msgid "Active Modules: "
|
2161 |
+
msgstr ""
|
2162 |
+
|
2163 |
+
#: plugin/class.seo-ultimate.php:1331
|
2164 |
msgid ""
|
2165 |
+
"<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
|
2166 |
+
"search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
|
2167 |
+
"target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
|
2168 |
+
"to everyone."
|
2169 |
+
msgstr ""
|
2170 |
+
|
2171 |
+
#: plugin/class.seo-ultimate.php:1453
|
2172 |
+
msgid "SEO Settings"
|
2173 |
+
msgstr ""
|
2174 |
+
|
2175 |
+
#: plugin/class.seo-ultimate.php:1671
|
2176 |
+
msgid "Home"
|
2177 |
+
msgstr ""
|
2178 |
+
|
2179 |
+
#: plugin/class.seo-ultimate.php:1740
|
2180 |
+
msgid "Author Archives"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
#: includes/jlwp/functions.php:60
|