Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 6.9.2 |
Comparing to | |
See all releases |
Code changes from version 6.9.1 to 6.9.2
- includes/jlfunctions/arr.php +12 -1
- includes/jlfunctions/url.php +30 -1
- includes/jlwp/functions.php +36 -9
- modules/autolinks/content-autolinks.php +2 -2
- modules/autolinks/footer-autolinks.php +1 -1
- modules/internal-link-aliases/internal-link-aliases.php +1 -1
- modules/meta/meta-descriptions.php +1 -1
- modules/meta/meta-keywords.php +1 -1
- modules/rich-snippets/rich-snippets.php +2 -2
- modules/slugs/slugs.php +2 -2
- modules/widgets/widgets.php +25 -15
- plugin/class.seo-ultimate.php +13 -5
- readme.txt +11 -1
- seo-ultimate.php +4 -4
- seo-ultimate.pot +1273 -1269
includes/jlfunctions/arr.php
CHANGED
@@ -169,7 +169,18 @@ class suarr {
|
|
169 |
}
|
170 |
|
171 |
function has_keys($array, $keys) {
|
172 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
}
|
174 |
|
175 |
//Function based on http://php.net/manual/en/function.array-unique.php#82508
|
169 |
}
|
170 |
|
171 |
function has_keys($array, $keys) {
|
172 |
+
if (is_array($array) && is_array($keys)) {
|
173 |
+
if (count($keys))
|
174 |
+
return count(array_diff($keys, array_keys($array))) == 0;
|
175 |
+
|
176 |
+
return true;
|
177 |
+
}
|
178 |
+
|
179 |
+
return false;
|
180 |
+
}
|
181 |
+
|
182 |
+
function key_check($array, $function) {
|
183 |
+
return (count($array) == count(array_filter(array_keys($array), $function)));
|
184 |
}
|
185 |
|
186 |
//Function based on http://php.net/manual/en/function.array-unique.php#82508
|
includes/jlfunctions/url.php
CHANGED
@@ -25,7 +25,36 @@ class suurl {
|
|
25 |
function build_query($array) {
|
26 |
return html_entity_decode(http_build_query($array));
|
27 |
}
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
}
|
30 |
|
31 |
?>
|
25 |
function build_query($array) {
|
26 |
return html_entity_decode(http_build_query($array));
|
27 |
}
|
28 |
+
|
29 |
+
function equal($url1, $url2) {
|
30 |
+
|
31 |
+
if (($url1parts = parse_url($url1)) && isset($url1parts['host'])) {
|
32 |
+
$url1parts['host'] = strtolower($url1parts['host']);
|
33 |
+
$url1 = self::build($url1parts);
|
34 |
+
}
|
35 |
+
|
36 |
+
if (($url2parts = parse_url($url2)) && isset($url2parts['host'])) {
|
37 |
+
$url2parts['host'] = strtolower($url2parts['host']);
|
38 |
+
$url2 = self::build($url2parts);
|
39 |
+
}
|
40 |
+
|
41 |
+
return $url1 == $url2;
|
42 |
+
}
|
43 |
+
|
44 |
+
function build($parts) {
|
45 |
+
|
46 |
+
$url = '';
|
47 |
+
|
48 |
+
if (!empty($parts['host'])) {
|
49 |
+
$url = empty($parts['scheme']) ? 'http://' : $parts['scheme'] . '://';
|
50 |
+
$url .= $parts['host'];
|
51 |
+
}
|
52 |
+
|
53 |
+
if (!empty($parts['path'])) $url .= $parts['path'];
|
54 |
+
if (!empty($parts['query'])) $url .= '?' . $parts['query'];
|
55 |
+
if (!empty($parts['fragment'])) $url .= '#' . $parts['fragment'];
|
56 |
+
return $url;
|
57 |
+
}
|
58 |
}
|
59 |
|
60 |
?>
|
includes/jlwp/functions.php
CHANGED
@@ -13,11 +13,16 @@ class suwp {
|
|
13 |
* @return int|false The ID of the current post, or false on failure.
|
14 |
*/
|
15 |
function get_post_id() {
|
16 |
-
if (is_admin())
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
19 |
return intval(get_the_ID());
|
20 |
-
elseif (is_singular()) {
|
21 |
global $wp_query;
|
22 |
return $wp_query->get_queried_object_id();
|
23 |
}
|
@@ -74,11 +79,15 @@ class suwp {
|
|
74 |
return $types;
|
75 |
}
|
76 |
|
77 |
-
function is_tax($taxonomy, $term='') {
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
|
|
82 |
}
|
83 |
}
|
84 |
|
@@ -252,6 +261,24 @@ class suwp {
|
|
252 |
|
253 |
return home_url('/');
|
254 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
}
|
256 |
|
257 |
?>
|
13 |
* @return int|false The ID of the current post, or false on failure.
|
14 |
*/
|
15 |
function get_post_id() {
|
16 |
+
if (is_admin()) {
|
17 |
+
if (!empty($_REQUEST['post']))
|
18 |
+
return intval($_REQUEST['post']);
|
19 |
+
elseif (!empty($_REQUEST['post_ID']))
|
20 |
+
return intval($_REQUEST['post_ID']);
|
21 |
+
else
|
22 |
+
return false;
|
23 |
+
} elseif (in_the_loop()) {
|
24 |
return intval(get_the_ID());
|
25 |
+
} elseif (is_singular()) {
|
26 |
global $wp_query;
|
27 |
return $wp_query->get_queried_object_id();
|
28 |
}
|
79 |
return $types;
|
80 |
}
|
81 |
|
82 |
+
function is_tax($taxonomy='', $term='') {
|
83 |
+
if ($taxonomy) {
|
84 |
+
switch ($taxonomy) {
|
85 |
+
case 'category': return is_category($term); break;
|
86 |
+
case 'post_tag': return is_tag($term); break;
|
87 |
+
default: return is_tax($taxonomy, $term); break;
|
88 |
+
}
|
89 |
+
} else {
|
90 |
+
return is_category() || is_tag() || is_tax();
|
91 |
}
|
92 |
}
|
93 |
|
261 |
|
262 |
return home_url('/');
|
263 |
}
|
264 |
+
|
265 |
+
function get_user_edit_url($user_id) {
|
266 |
+
if (is_object($user_id)) $user_id = intval($user_id->ID);
|
267 |
+
|
268 |
+
if ( get_current_user_id() == $user_id )
|
269 |
+
return 'profile.php';
|
270 |
+
else
|
271 |
+
return esc_url( add_query_arg( 'wp_http_referer', urlencode( stripslashes( $_SERVER['REQUEST_URI'] ) ), "user-edit.php?user_id=$user_id" ) );
|
272 |
+
}
|
273 |
+
|
274 |
+
function is_comment_subpage() {
|
275 |
+
if (is_singular()) {
|
276 |
+
global $cpage;
|
277 |
+
return $cpage > 1;
|
278 |
+
}
|
279 |
+
|
280 |
+
return false;
|
281 |
+
}
|
282 |
}
|
283 |
|
284 |
?>
|
modules/autolinks/content-autolinks.php
CHANGED
@@ -136,10 +136,10 @@ class SU_ContentAutolinks extends SU_Module {
|
|
136 |
else
|
137 |
$url = $this->jlsuggest_value_to_url($to_id ? "obj_$type/$to_id" : "obj_$type");
|
138 |
|
139 |
-
if (!$this->get_setting('enable_current_url_links', false) && $url
|
140 |
continue;
|
141 |
|
142 |
-
if (!$this->get_setting('enable_self_links', false) && is_singular() && $url
|
143 |
continue;
|
144 |
|
145 |
if ($lpu_limit_enabled && isset($linked_urls[$url]) && $linked_urls[$url] >= $lpu_limit)
|
136 |
else
|
137 |
$url = $this->jlsuggest_value_to_url($to_id ? "obj_$type/$to_id" : "obj_$type");
|
138 |
|
139 |
+
if (!$this->get_setting('enable_current_url_links', false) && suurl::equal($url, suurl::current()))
|
140 |
continue;
|
141 |
|
142 |
+
if (!$this->get_setting('enable_self_links', false) && is_singular() && suurl::equal($url, get_permalink()))
|
143 |
continue;
|
144 |
|
145 |
if ($lpu_limit_enabled && isset($linked_urls[$url]) && $linked_urls[$url] >= $lpu_limit)
|
modules/autolinks/footer-autolinks.php
CHANGED
@@ -91,7 +91,7 @@ class SU_FooterAutolinks extends SU_Module {
|
|
91 |
case 'url':
|
92 |
|
93 |
if ($from_id) {
|
94 |
-
if ( suurl::current()
|
95 |
|| ($from_match_children && sustr::startswith(suurl::current(), $from_id))
|
96 |
)
|
97 |
$is_from = !$from_match_negative;
|
91 |
case 'url':
|
92 |
|
93 |
if ($from_id) {
|
94 |
+
if ( suurl::equal(suurl::current(), $from_id)
|
95 |
|| ($from_match_children && sustr::startswith(suurl::current(), $from_id))
|
96 |
)
|
97 |
$is_from = !$from_match_negative;
|
modules/internal-link-aliases/internal-link-aliases.php
CHANGED
@@ -151,7 +151,7 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
151 |
|
152 |
foreach ($aliases as $alias)
|
153 |
if ($to = $alias['to'])
|
154 |
-
if (suurl::current()
|
155 |
wp_redirect($alias['from']);
|
156 |
}
|
157 |
|
151 |
|
152 |
foreach ($aliases as $alias)
|
153 |
if ($to = $alias['to'])
|
154 |
+
if (suurl::equal(suurl::current(), get_bloginfo('url') . "/$alias_dir/$to/"))
|
155 |
wp_redirect($alias['from']);
|
156 |
}
|
157 |
|
modules/meta/meta-descriptions.php
CHANGED
@@ -91,7 +91,7 @@ class SU_MetaDescriptions extends SU_Module {
|
|
91 |
}
|
92 |
|
93 |
//If we're viewing a term, look for its meta data.
|
94 |
-
} elseif (
|
95 |
global $wp_query;
|
96 |
$tax_descriptions = $this->get_setting('taxonomy_descriptions');
|
97 |
$term_id = $wp_query->get_queried_object_id();
|
91 |
}
|
92 |
|
93 |
//If we're viewing a term, look for its meta data.
|
94 |
+
} elseif (suwp::is_tax()) {
|
95 |
global $wp_query;
|
96 |
$tax_descriptions = $this->get_setting('taxonomy_descriptions');
|
97 |
$term_id = $wp_query->get_queried_object_id();
|
modules/meta/meta-keywords.php
CHANGED
@@ -120,7 +120,7 @@ class SU_MetaKeywords extends SU_Module {
|
|
120 |
}
|
121 |
|
122 |
//If we're viewing a term, look for its meta data.
|
123 |
-
} elseif (
|
124 |
global $wp_query;
|
125 |
$tax_keywords = $this->get_setting('taxonomy_keywords');
|
126 |
$kw = $tax_keywords[$wp_query->get_queried_object_id()];
|
120 |
}
|
121 |
|
122 |
//If we're viewing a term, look for its meta data.
|
123 |
+
} elseif (suwp::is_tax()) {
|
124 |
global $wp_query;
|
125 |
$tax_keywords = $this->get_setting('taxonomy_keywords');
|
126 |
$kw = $tax_keywords[$wp_query->get_queried_object_id()];
|
modules/rich-snippets/rich-snippets.php
CHANGED
@@ -123,9 +123,9 @@ class SU_RichSnippets extends SU_Module {
|
|
123 |
$tags = array_reverse((array)$tags);
|
124 |
foreach ($tags as $tag) {
|
125 |
if (!sustr::startswith($tag, '<'))
|
126 |
-
$content = sprintf($template, $tag, $content);
|
127 |
else
|
128 |
-
$content = sprintf($tag, $content);
|
129 |
}
|
130 |
return $content;
|
131 |
}
|
123 |
$tags = array_reverse((array)$tags);
|
124 |
foreach ($tags as $tag) {
|
125 |
if (!sustr::startswith($tag, '<'))
|
126 |
+
$content = sprintf($template, su_esc_attr($tag), su_esc_attr($content));
|
127 |
else
|
128 |
+
$content = sprintf($tag, su_esc_attr($content));
|
129 |
}
|
130 |
return $content;
|
131 |
}
|
modules/slugs/slugs.php
CHANGED
@@ -42,8 +42,8 @@ class SU_Slugs extends SU_Module {
|
|
42 |
if (empty($slug)) $slug = $_POST['post_title'];
|
43 |
|
44 |
//Prepare the title and the words for comparison
|
45 |
-
$slug =
|
46 |
-
$words =
|
47 |
|
48 |
//Remove the stopwords from the slug
|
49 |
$newslug = implode("-", array_diff(explode(" ", $slug), suarr::explode_lines($words)));
|
42 |
if (empty($slug)) $slug = $_POST['post_title'];
|
43 |
|
44 |
//Prepare the title and the words for comparison
|
45 |
+
$slug = mb_strtolower(stripslashes($slug));
|
46 |
+
$words = mb_strtolower(stripslashes($this->get_setting('words_to_remove')));
|
47 |
|
48 |
//Remove the stopwords from the slug
|
49 |
$newslug = implode("-", array_diff(explode(" ", $slug), suarr::explode_lines($words)));
|
modules/widgets/widgets.php
CHANGED
@@ -55,6 +55,9 @@ class SU_Widget_SiloedTerms extends WP_Widget {
|
|
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;
|
@@ -73,16 +76,12 @@ class SU_Widget_SiloedTerms extends WP_Widget {
|
|
73 |
}
|
74 |
}
|
75 |
|
76 |
-
echo
|
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 |
-
|
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));
|
@@ -93,20 +92,28 @@ class SU_Widget_SiloedTerms extends WP_Widget {
|
|
93 |
if ($child_post->ID == $current_post_id)
|
94 |
$css_class = 'current_post_item';
|
95 |
|
96 |
-
|
97 |
}
|
98 |
}
|
99 |
|
100 |
-
|
101 |
-
|
102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
}
|
@@ -117,19 +124,22 @@ class SU_Widget_SiloedTerms extends WP_Widget {
|
|
117 |
//Defaults
|
118 |
$instance = wp_parse_args( (array) $instance, array( 'title' => '') );
|
119 |
$title = esc_attr( $instance['title'] );
|
120 |
-
$count = isset($instance['count']) ? (bool)
|
|
|
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
|
|
|
|
|
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 (
|
133 |
continue;
|
134 |
?>
|
135 |
<option value="<?php echo esc_attr($taxonomy) ?>" <?php selected($taxonomy, $current_taxonomy) ?>><?php echo $tax->labels->name; ?></option>
|
55 |
}
|
56 |
}
|
57 |
|
58 |
+
$use_desc_for_title = isset($instance['use_desc_for_title']) ? $instance['use_desc_for_title'] : true;
|
59 |
+
$count = isset($instance['count']) ? $instance['count'] : false;
|
60 |
+
|
61 |
$title = apply_filters('widget_title', $title, $instance, $this->id_base);
|
62 |
$current_term = false;
|
63 |
$current_term_id = $current_post_id = 0;
|
76 |
}
|
77 |
}
|
78 |
|
79 |
+
$term_args = array('taxonomy' => $current_taxonomy, 'orderby' => 'name', 'show_count' => $count ? '1' : '0', 'hierarchical' => '0', 'title_li' => '', 'parent' => $current_term_id, 'show_option_none' => false, 'use_desc_for_title' => $use_desc_for_title ? '1' : '0', 'echo' => false);
|
|
|
|
|
|
|
|
|
80 |
|
81 |
+
$category_output = $post_output = '';
|
82 |
|
83 |
if (!$current_term || is_taxonomy_hierarchical($current_taxonomy))
|
84 |
+
$category_output = wp_list_categories($term_args);
|
85 |
|
86 |
if ($current_term) {
|
87 |
$child_posts = get_posts(array('taxonomy' => $current_taxonomy, 'term' => $current_term->slug, 'numberposts' => 5));
|
92 |
if ($child_post->ID == $current_post_id)
|
93 |
$css_class = 'current_post_item';
|
94 |
|
95 |
+
$post_output .= "\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";
|
96 |
}
|
97 |
}
|
98 |
|
99 |
+
if ($category_output || $post_output) {
|
100 |
+
echo $before_widget;
|
101 |
+
if ( $title )
|
102 |
+
echo $before_title . $title . $after_title;
|
103 |
+
echo "\n\t\t<ul>\n";
|
104 |
+
echo $category_output;
|
105 |
+
echo $post_output;
|
106 |
+
echo "\n\t\t</ul>\n";
|
107 |
+
echo $after_widget;
|
108 |
+
}
|
109 |
}
|
110 |
+
|
111 |
function update( $new_instance, $old_instance ) {
|
112 |
$instance = $old_instance;
|
113 |
$instance['title'] = strip_tags(stripslashes($new_instance['title']));
|
114 |
$instance['taxonomy'] = stripslashes($new_instance['taxonomy']);
|
115 |
$instance['count'] = !empty($new_instance['count']) ? 1 : 0;
|
116 |
+
$instance['use_desc_for_title'] = !empty($new_instance['use_desc_for_title']) ? 1 : 0;
|
117 |
|
118 |
return $instance;
|
119 |
}
|
124 |
//Defaults
|
125 |
$instance = wp_parse_args( (array) $instance, array( 'title' => '') );
|
126 |
$title = esc_attr( $instance['title'] );
|
127 |
+
$count = isset($instance['count']) ? (bool)$instance['count'] : false;
|
128 |
+
$use_desc_for_title = isset($instance['use_desc_for_title']) ? (bool)$instance['use_desc_for_title'] : true;
|
129 |
?>
|
130 |
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title:' ); ?></label>
|
131 |
<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>
|
132 |
|
133 |
<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 ); ?> />
|
134 |
+
<label for="<?php echo $this->get_field_id('count'); ?>"><?php _e( 'Show post counts' ); ?></label>
|
135 |
+
<br /><input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('use_desc_for_title'); ?>" name="<?php echo $this->get_field_name('use_desc_for_title'); ?>"<?php checked( $use_desc_for_title ); ?> />
|
136 |
+
<label for="<?php echo $this->get_field_id('use_desc_for_title'); ?>"><?php _e( 'Use term descriptions in title attributes' ); ?></label></p>
|
137 |
|
138 |
<p><label for="<?php echo $this->get_field_id('taxonomy'); ?>"><?php _e('Taxonomy:') ?></label>
|
139 |
<select class="widefat" id="<?php echo $this->get_field_id('taxonomy'); ?>" name="<?php echo $this->get_field_name('taxonomy'); ?>">
|
140 |
<?php foreach ( get_object_taxonomies('post') as $taxonomy ) :
|
141 |
$tax = get_taxonomy($taxonomy);
|
142 |
+
if ( empty($tax->labels->name) )
|
143 |
continue;
|
144 |
?>
|
145 |
<option value="<?php echo esc_attr($taxonomy) ?>" <?php selected($taxonomy, $current_taxonomy) ?>><?php echo $tax->labels->name; ?></option>
|
plugin/class.seo-ultimate.php
CHANGED
@@ -391,7 +391,15 @@ class SEO_Ultimate {
|
|
391 |
//Let modules run uninstallation tasks
|
392 |
do_action('su_uninstall');
|
393 |
|
394 |
-
//Delete
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
delete_option('seo_ultimate');
|
396 |
}
|
397 |
|
@@ -754,7 +762,7 @@ class SEO_Ultimate {
|
|
754 |
//If subitems have numeric bubbles, then add them up and show the total by the main menu item
|
755 |
$count = 0;
|
756 |
foreach ($this->modules as $key => $module) {
|
757 |
-
if ( ($psdata['modules']
|
758 |
&& $module->get_menu_count() > 0
|
759 |
&& $module->get_menu_parent() == 'seo'
|
760 |
&& $module->is_independent_module()
|
@@ -779,12 +787,12 @@ class SEO_Ultimate {
|
|
779 |
|
780 |
//If the module is hidden, put the module under a non-existent menu parent
|
781 |
//(this will let the module's admin page be loaded, but it won't show up on the menu)
|
782 |
-
if ($psdata['modules']
|
783 |
$parent = $module->get_menu_parent();
|
784 |
else
|
785 |
$parent = 'su-hidden-modules';
|
786 |
|
787 |
-
if ($psdata['modules']
|
788 |
$count_code = $this->get_menu_count_code($module->get_menu_count());
|
789 |
else
|
790 |
$count_code = '';
|
@@ -1490,7 +1498,7 @@ class SEO_Ultimate {
|
|
1490 |
$post_id = (int)$post_id;
|
1491 |
|
1492 |
//Run preliminary permissions checks
|
1493 |
-
if ( !wp_verify_nonce($_REQUEST['_su_wpnonce'], 'su-update-postmeta') ) return;
|
1494 |
$post_type = isset($_POST['post_type']) ? $_POST['post_type'] : 'post';
|
1495 |
if (function_exists('get_post_type_object')) { //If WP3.0+...
|
1496 |
$post_type_object = get_post_type_object($post_type);
|
391 |
//Let modules run uninstallation tasks
|
392 |
do_action('su_uninstall');
|
393 |
|
394 |
+
//Delete module data
|
395 |
+
$psdata = (array)get_option('seo_ultimate', array());
|
396 |
+
if (!empty($psdata['modules'])) {
|
397 |
+
$module_keys = array_keys($psdata['modules']);
|
398 |
+
foreach ($module_keys as $module)
|
399 |
+
delete_option("seo_ultimate_module_$module");
|
400 |
+
}
|
401 |
+
|
402 |
+
//Delete plugin data
|
403 |
delete_option('seo_ultimate');
|
404 |
}
|
405 |
|
762 |
//If subitems have numeric bubbles, then add them up and show the total by the main menu item
|
763 |
$count = 0;
|
764 |
foreach ($this->modules as $key => $module) {
|
765 |
+
if ( (empty($psdata['modules']) || $psdata['modules'][$key] > SU_MODULE_SILENCED)
|
766 |
&& $module->get_menu_count() > 0
|
767 |
&& $module->get_menu_parent() == 'seo'
|
768 |
&& $module->is_independent_module()
|
787 |
|
788 |
//If the module is hidden, put the module under a non-existent menu parent
|
789 |
//(this will let the module's admin page be loaded, but it won't show up on the menu)
|
790 |
+
if (empty($psdata['modules']) || $psdata['modules'][$key] > SU_MODULE_HIDDEN)
|
791 |
$parent = $module->get_menu_parent();
|
792 |
else
|
793 |
$parent = 'su-hidden-modules';
|
794 |
|
795 |
+
if (empty($psdata['modules']) || $psdata['modules'][$key] > SU_MODULE_SILENCED)
|
796 |
$count_code = $this->get_menu_count_code($module->get_menu_count());
|
797 |
else
|
798 |
$count_code = '';
|
1498 |
$post_id = (int)$post_id;
|
1499 |
|
1500 |
//Run preliminary permissions checks
|
1501 |
+
if ( !isset($_REQUEST['_su_wpnonce']) || !wp_verify_nonce($_REQUEST['_su_wpnonce'], 'su-update-postmeta') ) return;
|
1502 |
$post_type = isset($_POST['post_type']) ? $_POST['post_type'] : 'post';
|
1503 |
if (function_exists('get_post_type_object')) { //If WP3.0+...
|
1504 |
$post_type_object = get_post_type_object($post_type);
|
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, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 3.2
|
6 |
-
Stable tag: 6.9.
|
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 |
|
@@ -257,6 +257,16 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
257 |
|
258 |
== Changelog ==
|
259 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
= Version 6.9.1 (July 21, 2011) =
|
261 |
* Bugfix: Fixed invalid callback errors that appeared on the post editor pages for some users
|
262 |
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 3.2
|
6 |
+
Stable tag: 6.9.2
|
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 |
|
257 |
|
258 |
== Changelog ==
|
259 |
|
260 |
+
= Version 6.9.2 (August 20, 2011) =
|
261 |
+
* Feature: The Siloed Categories widget now lets you choose whether or not to use a term's description as the value of its link title attribute
|
262 |
+
* Bugfix: The Siloed Categories widget now hides itself on the archives of empty categories instead of outputting its header and an empty list
|
263 |
+
* Bugfix: Fixed the SEO Settings box's "Autolink Exclusion" checkbox, which broke in 6.8
|
264 |
+
* Bugfix: Fixed Link Mask Generator and Deeplink Juggernaut features that broke when WordPress's Site URL option had capitalization in the domain name
|
265 |
+
* Bugfix: Slug Optimizer no longer messes up Unicode characters in slugs
|
266 |
+
* Bugfix: SEO Ultimate's uninstallation routine no longer leaves behind module data
|
267 |
+
* Bugfix: Fixed additional errors that could have appeared when WP_DEBUG mode was enabled
|
268 |
+
* Security Fix: Rich Snippet Creator now properly escapes HTML attributes
|
269 |
+
|
270 |
= Version 6.9.1 (July 21, 2011) =
|
271 |
* Bugfix: Fixed invalid callback errors that appeared on the post editor pages for some users
|
272 |
|
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.9.
|
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.9.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.1.3');
|
|
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.9.
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/6.9.
|
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.9.2
|
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.9.2
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
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.9.2');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/6.9.2');
|
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.9\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
-
"POT-Creation-Date: 2011-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -19,2317 +19,2321 @@ 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 |
-
|
|
|
|
|
192 |
|
193 |
-
#:
|
194 |
-
msgid "
|
195 |
-
|
|
|
|
|
196 |
|
197 |
-
#:
|
198 |
-
msgid "
|
199 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
-
msgid "
|
219 |
msgstr ""
|
220 |
|
221 |
-
#:
|
222 |
-
msgid "
|
223 |
msgstr ""
|
224 |
|
225 |
-
#:
|
226 |
-
msgid "
|
227 |
msgstr ""
|
228 |
|
229 |
-
#:
|
230 |
-
|
|
|
231 |
msgstr ""
|
232 |
|
233 |
-
#:
|
234 |
-
msgid "
|
235 |
msgstr ""
|
236 |
|
237 |
-
#:
|
238 |
-
msgid "
|
239 |
msgstr ""
|
240 |
|
241 |
-
#:
|
242 |
-
msgid "
|
243 |
msgstr ""
|
244 |
|
245 |
-
#:
|
246 |
-
msgid "
|
247 |
msgstr ""
|
248 |
|
249 |
-
#:
|
250 |
-
|
|
|
251 |
msgstr ""
|
252 |
|
253 |
-
#:
|
254 |
-
|
255 |
-
msgid "Format"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#:
|
259 |
-
msgid "
|
260 |
msgstr ""
|
261 |
|
262 |
-
#:
|
263 |
-
msgid "
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: modules/
|
267 |
-
msgid "
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: modules/
|
271 |
-
msgid "
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: modules/
|
275 |
-
msgid "
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: modules/
|
279 |
-
msgid "
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: modules/
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: modules/
|
287 |
-
msgid "
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: modules/
|
291 |
-
msgid "
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: modules/
|
295 |
-
msgid "
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: modules/
|
299 |
-
msgid ""
|
300 |
-
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
301 |
-
"Settings tab."
|
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 |
msgstr ""
|
323 |
|
324 |
-
#: modules/
|
325 |
-
msgid "
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: modules/
|
329 |
-
msgid "
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: modules/
|
333 |
-
|
|
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: modules/
|
337 |
-
|
|
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: modules/
|
341 |
-
|
|
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: modules/
|
345 |
-
msgid "
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: modules/
|
349 |
-
msgid "
|
|
|
|
|
|
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: modules/
|
353 |
-
msgid "
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: modules/
|
357 |
-
msgid "
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: modules/
|
361 |
-
msgid "
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: modules/
|
365 |
-
msgid "
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: modules/
|
369 |
-
msgid "
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: modules/
|
373 |
-
msgid "
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: modules/
|
377 |
-
msgid "
|
|
|
|
|
|
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: modules/
|
381 |
-
msgid "
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: modules/
|
385 |
-
msgid "
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: modules/
|
389 |
-
msgid "
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: modules/
|
393 |
-
msgid "
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: modules/
|
397 |
-
msgid "
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: modules/
|
401 |
-
msgid "
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: modules/
|
405 |
-
msgid "
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: modules/
|
409 |
-
msgid "
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: modules/
|
413 |
-
msgid "
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: modules/
|
417 |
-
msgid "
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: modules/
|
421 |
-
msgid "
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: modules/
|
425 |
-
msgid "
|
|
|
|
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: modules/
|
429 |
-
msgid "
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: modules/
|
433 |
-
msgid "
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: modules/
|
437 |
-
msgid "
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: modules/
|
441 |
-
msgid ""
|
442 |
-
"The uploaded file is not in the proper format. Settings could not be "
|
443 |
-
"imported."
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: modules/
|
447 |
-
msgid "
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: modules/
|
451 |
-
msgid ""
|
452 |
-
"Settings could not be imported because no settings file was selected. Please "
|
453 |
-
"click the “Browse” button and select a file to import."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: modules/
|
457 |
msgid ""
|
458 |
-
"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: modules/
|
462 |
-
msgid "
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: modules/
|
466 |
-
msgid "
|
|
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: modules/
|
470 |
msgid ""
|
471 |
-
"
|
472 |
-
"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: modules/
|
476 |
-
msgid "
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: modules/
|
480 |
-
msgid ""
|
481 |
-
"You can use this form to upload and import an SEO Ultimate settings file "
|
482 |
-
"stored on your computer. (These files can be created using the Export tool.) "
|
483 |
-
"Note that importing a file will overwrite your existing settings with those "
|
484 |
-
"in the file."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: modules/
|
488 |
-
msgid ""
|
489 |
-
"Are you sure you want to import this settings file? This will overwrite your "
|
490 |
-
"current settings and cannot be undone."
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: modules/
|
494 |
-
msgid "
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: modules/
|
498 |
-
msgid "
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: modules/
|
502 |
-
msgid ""
|
503 |
-
"You can use this form to upload and import a Deeplink Juggernaut CSV file "
|
504 |
-
"stored on your computer. (These files can be created using the Export tool.) "
|
505 |
-
"Note that importing a file will overwrite your existing links with those in "
|
506 |
-
"the file."
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: modules/
|
510 |
-
msgid ""
|
511 |
-
"Are you sure you want to import this CSV file? This will overwrite your "
|
512 |
-
"current Deeplink Juggernaut links and cannot be undone."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: modules/
|
516 |
-
msgid "
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: modules/
|
520 |
-
msgid "
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: modules/
|
524 |
-
msgid ""
|
525 |
-
"You can import settings and data from these plugins. Clicking a plugin’"
|
526 |
-
"s name will take you to the importer page, where you can customize "
|
527 |
-
"parameters and start the import."
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: modules/
|
531 |
-
msgid "
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: modules/
|
535 |
-
msgid ""
|
536 |
-
"You can use this export tool to download an SEO Ultimate settings file to "
|
537 |
-
"your computer."
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: modules/
|
541 |
-
msgid ""
|
542 |
-
"A settings file includes the data of every checkbox and textbox of every "
|
543 |
-
"installed module. It does NOT include site-specific data like logged 404s or "
|
544 |
-
"post/page title/meta data (this data would be included in a standard "
|
545 |
-
"database backup, however)."
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: modules/
|
549 |
-
msgid "
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: modules/
|
553 |
-
msgid "
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: modules/
|
557 |
-
msgid ""
|
558 |
-
"You can use this export tool to download a CSV file (comma-separated values "
|
559 |
-
"file) that contains your Deeplink Juggernaut links. Once you download this "
|
560 |
-
"file to your computer, you can edit it using your favorite spreadsheet "
|
561 |
-
"program. When you’re done editing, you can re-upload the file using "
|
562 |
-
"the Import tool."
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: modules/
|
566 |
-
msgid "
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: modules/
|
570 |
-
msgid "
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: modules/
|
574 |
-
msgid ""
|
575 |
-
"You can erase all your SEO Ultimate settings and restore them to “"
|
576 |
-
"factory defaults” by clicking the button below."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: modules/
|
580 |
-
msgid ""
|
581 |
-
"Are you sure you want to erase all module settings? This cannot be undone."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: modules/
|
585 |
-
msgid "
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: modules/
|
589 |
-
msgid "
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: modules/
|
593 |
-
msgid "
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: modules/
|
597 |
-
msgid "
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: modules/
|
601 |
-
msgid "
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: modules/
|
605 |
-
msgid "
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: modules/
|
609 |
-
msgid "
|
|
|
|
|
|
|
|
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: modules/
|
613 |
-
msgid "
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: modules/
|
|
|
|
|
|
|
|
|
617 |
msgid ""
|
618 |
-
"
|
619 |
-
"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: modules/
|
623 |
-
msgid "
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: modules/
|
627 |
-
msgid ""
|
628 |
-
"There was an error retrieving the list of available versions. Please try "
|
629 |
-
"again later. You can also upgrade to the latest version of SEO Ultimate "
|
630 |
-
"using the WordPress plugin upgrader."
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: modules/
|
634 |
-
msgid ""
|
635 |
-
"Downgrading is provided as a convenience only and is not officially "
|
636 |
-
"supported. Although unlikely, you may lose data in the downgrading process. "
|
637 |
-
"It is your responsibility to backup your database before proceeding."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: modules/
|
641 |
-
msgid ""
|
642 |
-
"From the list below, select the version to which you would like to "
|
643 |
-
"downgrade. Then click the “Downgrade” button at the bottom of "
|
644 |
-
"the screen."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: modules/
|
648 |
-
msgid ""
|
649 |
-
"Downgrading to versions earlier than %s is not supported because doing so "
|
650 |
-
"will result in data loss."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: modules/
|
654 |
msgid ""
|
655 |
-
"
|
656 |
-
"again later."
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: modules/
|
660 |
-
msgid ""
|
661 |
-
"To download and install a fresh copy of the SEO Ultimate version you are "
|
662 |
-
"currently using, click the “Reinstall” button below."
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: modules/
|
666 |
-
msgid "
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: modules/
|
670 |
-
msgid "
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: modules/
|
674 |
msgid ""
|
675 |
-
"
|
676 |
-
"blog."
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: modules/
|
680 |
-
msgid "
|
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 |
msgstr ""
|
706 |
|
707 |
-
#: modules/
|
708 |
-
|
|
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: modules/
|
712 |
-
msgid "
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: modules/
|
716 |
-
|
717 |
-
"
|
718 |
-
"files."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: modules/
|
722 |
-
msgid ""
|
723 |
-
"Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
|
724 |
-
"your SEO Ultimate settings and cannot be undone."
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: modules/
|
728 |
-
msgid "
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: modules/
|
732 |
-
msgid "
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: modules/
|
736 |
-
msgid "
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: modules/
|
740 |
-
msgid "
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: modules/
|
744 |
-
msgid "
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: modules/
|
748 |
-
msgid "
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: modules/
|
752 |
-
msgid "
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: modules/
|
756 |
-
msgid "
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: modules/
|
760 |
-
msgid ""
|
761 |
-
"SEO Ultimate’s features are located in groups called “modules."
|
762 |
-
"” By default, most of these modules are listed in the “"
|
763 |
-
"SEO” menu on the left. Whenever you’re working with a module, "
|
764 |
-
"you can view documentation by clicking the tabs in the upper-right-hand "
|
765 |
-
"corner of your administration screen."
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: modules/
|
769 |
-
msgid ""
|
770 |
-
"The Module Manager lets you disable or hide modules you don’t use. "
|
771 |
-
"You can also silence modules from displaying bubble alerts on the menu."
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: modules/
|
775 |
-
msgid "
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: modules/
|
779 |
-
msgid "
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: modules/
|
783 |
-
msgid "
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: modules/
|
787 |
-
msgid "
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: modules/
|
791 |
-
msgid "
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: modules/
|
795 |
-
msgid "
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: modules/
|
799 |
-
msgid "
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: modules/
|
803 |
-
msgid "
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: modules/
|
807 |
-
msgid "
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: modules/
|
811 |
-
msgid "
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: modules/
|
815 |
-
msgid "
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: modules/
|
819 |
-
msgid "
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: modules/
|
823 |
-
msgid "
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: modules/
|
827 |
-
msgid "
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: modules/
|
831 |
-
msgid "
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: modules/
|
835 |
-
msgid ""
|
836 |
-
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
837 |
-
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
838 |
-
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
839 |
-
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
840 |
-
"to be currently installed or activated for the import to take place."
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: modules/
|
844 |
-
msgid ""
|
845 |
-
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
846 |
-
"you use an older version of AIOSP, you should update to the latest version "
|
847 |
-
"first and run AIOSP’s upgrade process."
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: modules/
|
851 |
-
msgid "
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: modules/
|
855 |
-
msgid "
|
|
|
|
|
|
|
|
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: modules/
|
859 |
-
msgid "
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: modules/
|
863 |
-
msgid "
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: modules/
|
867 |
-
msgid "
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: modules/
|
871 |
-
msgid "
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: modules/
|
875 |
-
msgid "
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: modules/
|
879 |
-
msgid "
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: modules/
|
883 |
-
msgid "
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: modules/
|
887 |
-
msgid "
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: modules/
|
891 |
-
msgid "
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: modules/
|
895 |
-
msgid "
|
|
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: modules/
|
899 |
-
msgid "
|
|
|
|
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: modules/
|
903 |
-
msgid "
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: modules/
|
907 |
-
msgid "
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: modules/
|
911 |
-
msgid "
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: modules/
|
915 |
-
msgid "
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: modules/
|
919 |
-
msgid "
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: modules/
|
923 |
-
msgid "
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: modules/
|
927 |
-
msgid "
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: modules/
|
931 |
-
msgid "
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: modules/
|
935 |
-
msgid "Use the
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: modules/
|
939 |
-
msgid "
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: modules/
|
943 |
-
msgid "
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: modules/
|
947 |
-
msgid "
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: modules/
|
951 |
-
#: modules/autolinks/footer-autolinks.php:133
|
952 |
msgid ""
|
953 |
-
"
|
954 |
-
"
|
|
|
|
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: modules/
|
958 |
-
|
959 |
-
msgid "Edit Existing Links"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: modules/
|
963 |
-
|
964 |
-
msgid "Add a New Link"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: modules/
|
968 |
-
|
969 |
-
msgid "Anchor Text"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: modules/
|
973 |
-
|
974 |
-
msgid "Destination"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: modules/
|
978 |
-
|
979 |
-
msgid "Title Attribute"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: modules/
|
983 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: modules/
|
987 |
-
|
988 |
-
|
|
|
|
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: modules/
|
992 |
-
|
993 |
-
msgid "Delete"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: modules/
|
997 |
-
|
998 |
-
#: modules/noindex/noindex.php:78
|
999 |
-
msgid "Nofollow"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
|
|
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 |
-
"
|
1022 |
-
"
|
1023 |
-
"
|
1024 |
-
"
|
1025 |
-
"
|
1026 |
-
"Deeplink Juggernaut will automatically build internal links to this post "
|
1027 |
-
"with that anchor text (assuming other posts contain that text)."
|
1028 |
-
msgstr ""
|
1029 |
-
|
1030 |
-
#: modules/autolinks/autolinks.php:11
|
1031 |
-
msgid "Deeplink Juggernaut"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: modules/
|
1035 |
msgid ""
|
1036 |
-
"
|
1037 |
-
"
|
1038 |
-
"WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your "
|
1039 |
-
"webhost. In the meantime, you can return to an older version of Deeplink "
|
1040 |
-
"Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
|
1041 |
-
"a> to SEO Ultimate 5.9."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: modules/
|
1045 |
-
msgid "
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: modules/
|
1049 |
-
msgid "
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: modules/
|
1053 |
-
msgid "
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: modules/
|
1057 |
-
msgid "
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: modules/
|
1061 |
-
msgid "
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: modules/
|
1065 |
-
msgid "
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: modules/
|
1069 |
-
msgid "
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: modules/
|
1073 |
-
msgid "
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: modules/
|
1077 |
-
msgid "
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: modules/
|
1081 |
-
msgid "
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: modules/
|
1085 |
-
msgid "
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: modules/
|
1089 |
-
msgid "
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: modules/
|
1093 |
-
msgid "
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: modules/
|
1097 |
-
msgid "
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: modules/
|
1101 |
-
msgid "
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: modules/
|
1105 |
-
msgid ""
|
1106 |
-
"Allow posts to link to the URL by which the visitor is accessing the post."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: modules/
|
1110 |
-
msgid "
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: modules/
|
1114 |
-
msgid "
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: modules/
|
1118 |
-
msgid "
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: modules/
|
1122 |
-
msgid ""
|
1123 |
-
"Don’t link the same anchor text any more than %d times per post/page/"
|
1124 |
-
"etc."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: modules/
|
1128 |
-
msgid ""
|
1129 |
-
"Don’t link the same anchor text any more than %d times across my "
|
1130 |
-
"entire site."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: modules/
|
1134 |
-
msgid ""
|
1135 |
-
"Don’t link to the same destination any more than %d times per post/"
|
1136 |
-
"page/etc."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: modules/
|
1140 |
-
msgid "
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: modules/
|
1144 |
-
msgid ""
|
1145 |
-
"Don’t add autolinks to text within these HTML tags <em>(separate with "
|
1146 |
-
"commas)</em>:"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: modules/
|
1150 |
-
msgid "
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: modules/
|
1154 |
-
msgid "
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: modules/
|
1158 |
-
msgid "
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: modules/
|
1162 |
-
msgid "
|
|
|
|
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: modules/
|
1166 |
-
|
1167 |
-
msgid "Noindex"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: modules/
|
1171 |
-
msgid "
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: modules/
|
1175 |
-
msgid "
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: modules/
|
1179 |
-
msgid "
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: modules/
|
1183 |
-
msgid "
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: modules/
|
1187 |
-
msgid "
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: modules/
|
1191 |
-
msgid "
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: modules/
|
1195 |
-
msgid ""
|
1196 |
-
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
1197 |
-
"block indexing of the entire site, regardless of which options are set below."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: modules/
|
1201 |
-
msgid "
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: modules/
|
1205 |
-
msgid "
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: modules/
|
1209 |
-
msgid "
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: modules/
|
1213 |
-
msgid "
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: modules/
|
1217 |
-
msgid "
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: modules/
|
1221 |
-
msgid "
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: modules/
|
1225 |
-
msgid "
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: modules/
|
1229 |
-
msgid "
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: modules/
|
1233 |
-
msgid "
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: modules/
|
1237 |
-
msgid "
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: modules/
|
1241 |
-
msgid "
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: modules/
|
1245 |
-
msgid "
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: modules/
|
1249 |
-
msgid "
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: modules/
|
1253 |
-
msgid "
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: modules/
|
1257 |
-
msgid ""
|
1258 |
-
"(Note: This translated documentation was designed for an older version of "
|
1259 |
-
"SEO Ultimate and may be outdated.)"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: modules/
|
1263 |
-
msgid ""
|
1264 |
-
"All the modules on this page have been disabled. You can re-enable them "
|
1265 |
-
"using the <a href=\"%s\">Module Manager</a>."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: modules/
|
1269 |
-
|
1270 |
-
msgid "%s — %s"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: modules/
|
1274 |
-
msgid "
|
|
|
|
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: modules/
|
1278 |
-
msgid "
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: modules/
|
1282 |
-
msgid "
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: modules/
|
1286 |
-
msgid "
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: modules/
|
1290 |
-
msgid "
|
|
|
|
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: modules/
|
1294 |
-
msgid "
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: modules/
|
1298 |
-
msgid "
|
|
|
|
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: modules/
|
1302 |
-
msgid "
|
|
|
|
|
|
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: modules/
|
1306 |
-
msgid "
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: modules/
|
1310 |
-
msgid "
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: modules/
|
1314 |
-
msgid ""
|
1315 |
-
"Are you sure you want to replace the textbox contents with this default "
|
1316 |
-
"value?"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: modules/
|
1320 |
-
msgid "
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: modules/
|
1324 |
-
msgid "
|
|
|
|
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: modules/
|
1328 |
-
msgid "
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: modules/
|
1332 |
-
msgid "
|
|
|
|
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: modules/
|
1336 |
-
msgid "
|
|
|
|
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: modules/
|
1340 |
-
msgid "
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: modules/
|
1344 |
-
msgid "
|
|
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: modules/
|
1348 |
-
msgid "
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: modules/
|
1352 |
-
msgid "
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: modules/
|
1356 |
-
msgid "
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: modules/
|
1360 |
-
msgid "
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: modules/
|
1364 |
-
msgid "
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: modules/
|
1368 |
-
msgid ""
|
1369 |
-
"Don’t use this site’s Open Directory description in search results."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: modules/
|
1373 |
-
msgid ""
|
1374 |
-
"Don’t use this site’s Yahoo! Directory description in search "
|
1375 |
-
"results."
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: modules/
|
1379 |
-
msgid "
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: modules/
|
1383 |
-
msgid "
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: modules/
|
1387 |
-
msgid "
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: modules/
|
1391 |
-
msgid "
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: modules/
|
1395 |
-
msgid "
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: modules/
|
1399 |
-
msgid "
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: modules/
|
1403 |
-
msgid "
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: modules/
|
1407 |
-
msgid "
|
|
|
|
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: modules/
|
1411 |
-
msgid "
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: modules/
|
1415 |
-
msgid "
|
|
|
|
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: modules/
|
1419 |
-
msgid "
|
|
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: modules/
|
1423 |
-
msgid "
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: modules/
|
1427 |
-
msgid "
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: modules/
|
1431 |
msgid ""
|
1432 |
-
"
|
1433 |
-
"
|
1434 |
-
"results. Writing an accurate, attention-grabbing description for every post "
|
1435 |
-
"is important to ensuring a good search results clickthrough rate."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: modules/
|
1439 |
-
msgid "
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: modules/
|
1443 |
-
msgid "
|
|
|
|
|
|
|
|
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: modules/
|
1447 |
-
msgid "
|
|
|
|
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: modules/
|
1451 |
-
msgid "
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: modules/
|
1455 |
-
msgid "
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: modules/
|
1459 |
-
msgid "
|
|
|
|
|
|
|
|
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: modules/
|
1463 |
-
msgid "
|
|
|
|
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: modules/
|
1467 |
-
msgid ""
|
1468 |
-
"<strong>Keywords</strong> — The value of the meta keywords tag. The "
|
1469 |
-
"keywords list gives search engines a hint as to what this post/page is "
|
1470 |
-
"about. Be sure to separate keywords with commas, like so: <samp>one,two,"
|
1471 |
-
"three</samp>."
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: modules/
|
1475 |
-
msgid "Import
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: modules/
|
1479 |
msgid ""
|
1480 |
-
"
|
1481 |
-
"
|
1482 |
-
"
|
1483 |
-
"Ultimate."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: modules/
|
1487 |
-
msgid "
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: modules/
|
1491 |
msgid ""
|
1492 |
-
"
|
1493 |
-
"
|
1494 |
-
"fields?"
|
1495 |
-
msgstr ""
|
1496 |
-
|
1497 |
-
#: modules/class.su-importmodule.php:56
|
1498 |
-
msgid "Skip that post and leave all data as-is (default)."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: modules/
|
1502 |
-
msgid "
|
|
|
|
|
|
|
|
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: modules/
|
1506 |
-
msgid "
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: modules/
|
1510 |
-
msgid "
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: modules/
|
1514 |
msgid ""
|
1515 |
-
"
|
1516 |
-
"
|
|
|
|
|
|
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: modules/
|
1520 |
-
msgid "
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: modules/
|
1524 |
-
msgid "
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: modules/
|
1528 |
-
msgid "
|
|
|
|
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: modules/
|
1532 |
msgid ""
|
1533 |
-
"
|
1534 |
-
"target=\"_blank\">backup your database</a> before proceeding!"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: modules/
|
1538 |
-
msgid "
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: modules/
|
1542 |
-
msgid "
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: modules/
|
1546 |
-
msgid "
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: modules/
|
1550 |
-
msgid "
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: modules/
|
1554 |
-
msgid "
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: modules/
|
1558 |
-
msgid "
|
1559 |
-
|
1560 |
-
msgstr[0] ""
|
1561 |
-
msgstr[1] ""
|
1562 |
-
|
1563 |
-
#: modules/class.su-importmodule.php:180
|
1564 |
-
msgid "Skipped one post with disabled %2$s data."
|
1565 |
-
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
1566 |
-
msgstr[0] ""
|
1567 |
-
msgstr[1] ""
|
1568 |
-
|
1569 |
-
#: modules/class.su-importmodule.php:186
|
1570 |
-
msgid ""
|
1571 |
-
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
1572 |
-
"settings you chose."
|
1573 |
-
msgid_plural ""
|
1574 |
-
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
1575 |
-
"settings you chose."
|
1576 |
-
msgstr[0] ""
|
1577 |
-
msgstr[1] ""
|
1578 |
|
1579 |
-
#: modules/
|
1580 |
-
msgid "
|
1581 |
-
|
1582 |
-
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
1583 |
-
msgstr[0] ""
|
1584 |
-
msgstr[1] ""
|
1585 |
|
1586 |
-
#: modules/
|
1587 |
-
msgid "
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
|
1591 |
-
|
|
|
|
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
|
|
|
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: modules/
|
1601 |
msgid ""
|
1602 |
-
"
|
1603 |
-
"
|
1604 |
-
"an article’s title to read it."
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: modules/
|
1608 |
-
msgid "
|
|
|
|
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: modules/
|
1612 |
-
msgid "
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: modules/
|
1616 |
-
msgid "
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: modules/
|
1620 |
-
msgid "
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: modules/
|
1624 |
-
msgid "
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: modules/
|
1628 |
-
msgid "
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: modules/
|
1632 |
-
msgid "
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: modules/
|
1636 |
-
msgid ""
|
1637 |
-
"You can stop search engines from following a link by typing in a mask for "
|
1638 |
-
"its URL."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: modules/
|
1642 |
-
msgid "
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: modules/
|
1646 |
-
msgid "
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: modules/
|
1650 |
-
msgid "
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: modules/
|
1654 |
-
msgid "
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: modules/
|
1658 |
-
msgid "
|
|
|
|
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: modules/
|
1662 |
-
msgid "
|
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 |
-
"
|
1688 |
-
"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: modules/
|
1692 |
-
msgid "
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: modules/
|
1696 |
-
msgid "
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: modules/
|
1700 |
-
msgid "
|
|
|
|
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: modules/
|
1704 |
-
msgid "
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: modules/
|
1708 |
-
msgid "
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: modules/
|
1712 |
-
msgid ""
|
1713 |
-
"Find out how many “actual” pages are competing for each query"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: modules/
|
1717 |
-
msgid "
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: modules/
|
1721 |
-
msgid "
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: modules/
|
1725 |
-
msgid "
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: modules/
|
1729 |
-
msgid ""
|
1730 |
-
"Find out which sites have the highest relevance in the title for each query"
|
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 |
-
"Find out which sites have the most relevant naming conventions for each "
|
1748 |
-
"keyword"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: modules/
|
1752 |
-
msgid "
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: modules/
|
1756 |
-
msgid "
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: modules/
|
1760 |
-
msgid "
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: modules/
|
1764 |
-
|
1765 |
-
|
|
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: modules/
|
1769 |
-
msgid "
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: modules/
|
1773 |
-
|
1774 |
-
|
|
|
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 |
-
|
1795 |
-
msgid "Show 100 results per page"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: modules/
|
1799 |
-
|
1800 |
-
|
|
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: modules/
|
1804 |
-
|
1805 |
-
|
|
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: modules/
|
1809 |
-
msgid "
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: modules/
|
1813 |
-
msgid "
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: modules/
|
1817 |
-
|
1818 |
-
|
1819 |
msgstr ""
|
1820 |
|
1821 |
-
#: modules/
|
1822 |
-
|
|
|
|
|
1823 |
msgstr ""
|
1824 |
|
1825 |
-
#: modules/
|
1826 |
-
msgid ""
|
1827 |
-
"Use output buffering — no configuration required, but slower (default)"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: modules/
|
1831 |
-
msgid ""
|
1832 |
-
"Use filtering — faster, but configuration required (see the “"
|
1833 |
-
"Settings Help” dropdown for details)"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: modules/
|
1837 |
-
msgid "
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#: modules/
|
1841 |
-
msgid "
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#: modules/
|
1845 |
-
msgid "
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: modules/
|
1849 |
-
msgid "
|
|
|
|
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#: modules/
|
1853 |
-
msgid "
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: modules/
|
1857 |
-
msgid "
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: modules/
|
1861 |
-
msgid "
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: modules/
|
1865 |
-
msgid "
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: modules/
|
1869 |
-
msgid "
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: modules/
|
1873 |
-
msgid "
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: modules/
|
1877 |
-
msgid "
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: modules/
|
1881 |
-
msgid "
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: modules/
|
1885 |
-
msgid "
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: modules/
|
1889 |
-
msgid "
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: modules/
|
1893 |
-
msgid "
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: modules/
|
1897 |
-
msgid "
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#: modules/
|
1901 |
-
msgid "
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: modules/
|
1905 |
-
msgid "
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: modules/
|
1909 |
-
msgid "
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: modules/
|
1913 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: modules/
|
1917 |
-
msgid "
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#: modules/
|
1921 |
-
msgid "
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: modules/
|
1925 |
-
|
|
|
|
|
|
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: modules/
|
1929 |
-
|
|
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: modules/
|
1933 |
-
|
|
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#: modules/
|
1937 |
-
|
|
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: modules/
|
1941 |
-
|
1942 |
-
|
1943 |
-
"tag. The title appears in visitors’ title bars and in search engine "
|
1944 |
-
"result titles. If this box is left blank, then the <a href=\"admin.php?"
|
1945 |
-
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: modules/
|
1949 |
-
|
|
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: modules/
|
1953 |
-
msgid "
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: modules/
|
1957 |
-
|
|
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: modules/
|
1961 |
-
|
|
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: modules/
|
1965 |
-
|
|
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: modules/
|
1969 |
-
msgid "
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: modules/
|
1973 |
-
msgid "
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: modules/
|
1977 |
-
msgid "
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: modules/
|
1981 |
msgid ""
|
1982 |
-
"
|
1983 |
-
"
|
|
|
|
|
|
|
|
|
|
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: modules/
|
1987 |
-
msgid "
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: modules/
|
1991 |
-
msgid "
|
1992 |
msgstr ""
|
1993 |
|
1994 |
-
#: modules/
|
1995 |
-
msgid "
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#: modules/
|
1999 |
-
msgid "
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#: modules/
|
2003 |
-
msgid "
|
|
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#: modules/
|
2007 |
-
|
2008 |
-
msgid "Review"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: modules/
|
2012 |
-
msgid "
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: modules/
|
2016 |
-
msgid "
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: modules/
|
2020 |
-
msgid "
|
|
|
|
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: modules/
|
2024 |
-
msgid "
|
|
|
|
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: modules/
|
2028 |
-
|
2029 |
-
|
|
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: modules/
|
2033 |
-
msgid "
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: modules/
|
2037 |
-
msgid "
|
|
|
|
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: modules/
|
2041 |
-
msgid "
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: modules/
|
2045 |
-
msgid "
|
|
|
|
|
|
|
|
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: modules/
|
2049 |
-
msgid "
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: modules/
|
2053 |
-
msgid "
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: modules/
|
2057 |
-
msgid "
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: modules/
|
2061 |
-
msgid "
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: modules/
|
2065 |
-
msgid "
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#: modules/
|
2069 |
-
msgid "
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: modules/
|
2073 |
-
msgid "
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: modules/
|
2077 |
-
msgid "
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: modules/
|
2081 |
-
msgid "
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: modules/
|
2085 |
-
msgid "
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#:
|
2089 |
-
msgid "
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#:
|
2093 |
-
msgid "
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#:
|
2097 |
-
msgid "
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#:
|
2101 |
-
msgid "
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#:
|
2105 |
-
msgid "
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#:
|
2109 |
-
msgid "
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#:
|
2113 |
-
msgid ""
|
2114 |
-
"To use the Permalinks Tweaker, you must disable default (query-string) "
|
2115 |
-
"permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#:
|
2119 |
-
msgid "
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#:
|
2123 |
-
msgid "
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#:
|
2127 |
-
msgid "
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#:
|
2131 |
-
msgid "
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#:
|
2135 |
-
msgid "
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#:
|
2139 |
-
msgid "
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#:
|
2143 |
-
msgid "
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#:
|
2147 |
-
msgid ""
|
2148 |
-
"WordPress is configured to block search engines. This will nullify your "
|
2149 |
-
"site’s SEO and should be resolved immediately."
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#:
|
2153 |
-
msgid "
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#:
|
2157 |
-
msgid ""
|
2158 |
-
"It is highly recommended that you use a non-default and non-numeric "
|
2159 |
-
"permalink structure."
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#:
|
2163 |
-
msgid "
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#:
|
2167 |
-
msgid ""
|
2168 |
-
"Pathinfo permalinks add a keyword-less “index.php” prefix. This "
|
2169 |
-
"is not ideal, but it may be beyond your control (since it’s likely "
|
2170 |
-
"caused by your site’s web hosting setup)."
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#:
|
2174 |
-
msgid "
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#:
|
2178 |
-
msgid ""
|
2179 |
-
"Including a version of the post’s title helps provide keyword-rich "
|
2180 |
-
"URLs."
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#:
|
2184 |
-
msgid "
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#:
|
2188 |
msgid ""
|
2189 |
-
"It
|
2190 |
-
"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#:
|
2194 |
-
msgid ""
|
2195 |
-
"Settings Monitor analyzes your blog’s settings and notifies you of any "
|
2196 |
-
"problems. If any issues are found, they will show up in red or yellow below."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#:
|
2200 |
-
msgid "
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#:
|
2204 |
-
msgid "
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#:
|
2208 |
msgid ""
|
2209 |
-
"
|
2210 |
-
"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#:
|
2214 |
-
msgid ""
|
2215 |
-
"WordPress won’t be able to display your robots.txt file because the "
|
2216 |
-
"default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
|
2217 |
-
"structure</a> is in use."
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#:
|
2221 |
-
msgid "
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#:
|
2225 |
-
msgid "
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#:
|
2229 |
-
msgid "
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#:
|
2233 |
-
msgid "
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#:
|
2237 |
-
msgid ""
|
2238 |
-
"Please realize that incorrectly editing your robots.txt file could block "
|
2239 |
-
"search engines from your site."
|
2240 |
msgstr ""
|
2241 |
|
2242 |
-
#:
|
2243 |
-
msgid "
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#:
|
2247 |
-
msgid ""
|
2248 |
-
"Also, incorrectly editing your .htaccess file could disable your entire "
|
2249 |
-
"website. Edit with caution!"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#:
|
2253 |
-
msgid ""
|
2254 |
-
"Please note that your privacy settings won’t have any effect on your "
|
2255 |
-
"robots.txt file, since you’re using <a href=\"%s\">a custom one</a>."
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#:
|
2259 |
-
msgid "
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#:
|
2263 |
-
msgid ""
|
2264 |
-
"On category archives, displays a list of child categories and/or posts in "
|
2265 |
-
"the category. Displays a list of top-level categories everywhere else. "
|
2266 |
-
"Powered by the SEO Ultimate plugin."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#:
|
2270 |
-
msgid "
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#:
|
2274 |
-
msgid "
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#:
|
2278 |
-
msgid "
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#:
|
2282 |
-
msgid "
|
|
|
|
|
|
|
|
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#:
|
2286 |
-
msgid "
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#:
|
2290 |
-
msgid ""
|
2291 |
-
"Add this widget to display Deeplink Juggernaut’s Footer Links in a "
|
2292 |
-
"widget area of your choosing rather than the default wp_footer section. "
|
2293 |
-
"Powered by the SEO Ultimate plugin."
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#:
|
2297 |
-
msgid "
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#:
|
2301 |
-
msgid "
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#:
|
2305 |
-
msgid "
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#:
|
2309 |
-
msgid "
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#:
|
2313 |
-
msgid ""
|
2314 |
-
"The Miscellaneous page contains modules that don’t have enough "
|
2315 |
-
"settings to warrant their own separate admin pages."
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#:
|
2319 |
-
msgid "
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#:
|
2323 |
-
msgid ""
|
2324 |
-
"Generate <code><link rel="canonical" /></code> meta tags."
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#:
|
2328 |
-
|
|
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#:
|
2332 |
-
msgid "
|
|
|
|
|
|
|
|
|
2333 |
msgstr ""
|
2334 |
|
2335 |
#. Plugin URI of the plugin/theme
|
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.9.2\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2011-08-20 18:36:26+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:1017
|
35 |
+
msgctxt "Dropdown Title"
|
36 |
+
msgid "%s — %s"
|
|
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: modules/class.su-module.php:1045
|
40 |
+
msgid "%1$s | %2$s %3$s by %4$s"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: modules/class.su-module.php:1124
|
44 |
+
msgid "Your site currently doesn’t have any public items of this type."
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: modules/class.su-module.php:1208
|
48 |
+
msgid "«"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: modules/class.su-module.php:1209
|
52 |
+
msgid "»"
|
|
|
|
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: modules/class.su-module.php:1216
|
56 |
+
msgid "Displaying %s–%s of %s"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: modules/class.su-module.php:1229 modules/404s/fofs-log.php:113
|
60 |
+
msgid "Actions"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: modules/class.su-module.php:1230
|
64 |
+
msgid "ID"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: modules/class.su-module.php:1264
|
68 |
+
msgid "View"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: modules/class.su-module.php:1266
|
72 |
+
msgid "Edit"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: modules/class.su-module.php:1430
|
76 |
+
msgid "Settings updated."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: modules/class.su-module.php:1451
|
80 |
+
msgid "Save Changes"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: modules/class.su-module.php:1962
|
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:1978 modules/settings/settings-data.php:23
|
90 |
+
msgid "Reset"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: modules/class.su-module.php:2588 modules/meta/meta-keywords.php:34
|
94 |
+
#: modules/meta/meta-descriptions.php:25 plugin/class.seo-ultimate.php:1680
|
95 |
+
msgid "Blog Homepage"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: modules/class.su-module.php:2592 plugin/class.seo-ultimate.php:1754
|
99 |
+
msgid "Author"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: modules/class.su-module.php:2612
|
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:2624
|
107 |
+
msgid "Remove this destination"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: modules/class.su-module.php:2624
|
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:130
|
393 |
+
msgid "Title:"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: modules/widgets/widgets.php:134
|
397 |
+
msgid "Show post counts"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: modules/widgets/widgets.php:136
|
401 |
+
msgid "Use term descriptions in title attributes"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: modules/widgets/widgets.php:138
|
405 |
+
msgid "Taxonomy:"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: modules/widgets/widgets.php:163
|
409 |
+
msgid ""
|
410 |
+
"Add this widget to display Deeplink Juggernaut’s Footer Links in a "
|
411 |
+
"widget area of your choosing rather than the default wp_footer section. "
|
412 |
+
"Powered by the SEO Ultimate plugin."
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: modules/widgets/widgets.php:164 modules/autolinks/footer-autolinks.php:17
|
416 |
+
msgid "Footer Links"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: modules/widgets/widgets.php:217
|
420 |
+
msgid "Title: <em>(optional)</em>"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: modules/widgets/widgets.php:221
|
424 |
+
msgid "Display as a list"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: modules/widgets/widgets.php:224
|
428 |
+
msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:20
|
432 |
+
msgid "Link Mask Generator"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:27
|
436 |
+
msgid "Alias Directory"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:29
|
440 |
+
msgid "Nofollow aliased links"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:29
|
444 |
+
msgid "Link Attributes"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:49
|
448 |
+
msgid "Link Masks:"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:52
|
452 |
+
msgid "URL"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:52
|
456 |
+
msgid "Mask URL"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:83
|
460 |
+
msgid ""
|
461 |
+
"You can stop search engines from following a link by typing in a mask for "
|
462 |
+
"its URL."
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:160
|
466 |
+
msgid "Added by Link Alias Generator (LAG) module"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:171
|
470 |
+
msgid "End LAG"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: modules/titles/titles.php:12
|
474 |
+
msgid "Title Tag Rewriter"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: modules/titles/titles.php:33 modules/meta/meta-descriptions.php:24
|
478 |
+
msgid "Default Formats"
|
|
|
|
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: modules/titles/titles.php:34 modules/404s/fofs-settings.php:17
|
482 |
+
msgid "Settings"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: modules/titles/titles.php:40
|
486 |
+
msgid "Title Tag"
|
|
|
|
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: modules/titles/titles.php:53
|
490 |
msgid ""
|
491 |
+
"Convert lowercase category/tag names to title case when used in title tags."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: modules/titles/titles.php:53
|
495 |
+
msgid "Title Tag Variables"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: modules/titles/titles.php:55
|
499 |
+
msgid ""
|
500 |
+
"Use output buffering — no configuration required, but slower (default)"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: modules/titles/titles.php:56
|
504 |
msgid ""
|
505 |
+
"Use filtering — faster, but configuration required (see the “"
|
506 |
+
"Settings Help” dropdown for details)"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: modules/titles/titles.php:57
|
510 |
+
msgid "Rewrite Method"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: modules/titles/titles.php:65
|
514 |
+
msgid "{blog}"
|
|
|
|
|
|
|
|
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: modules/titles/titles.php:66
|
518 |
+
msgid "{post} | {blog}"
|
|
|
|
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: modules/titles/titles.php:67
|
522 |
+
msgid "{page} | {blog}"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: modules/titles/titles.php:68
|
526 |
+
msgid "{category} | {blog}"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: modules/titles/titles.php:69
|
530 |
+
msgid "{tag} | {blog}"
|
|
|
|
|
|
|
|
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: modules/titles/titles.php:70
|
534 |
+
msgid "Archives for {month} {day}, {year} | {blog}"
|
|
|
|
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: modules/titles/titles.php:71
|
538 |
+
msgid "Archives for {month} {year} | {blog}"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: modules/titles/titles.php:72
|
542 |
+
msgid "Archives for {year} | {blog}"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: modules/titles/titles.php:73
|
546 |
+
msgid "Posts by {author} | {blog}"
|
|
|
|
|
|
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: modules/titles/titles.php:74
|
550 |
+
msgid "Search Results for {query} | {blog}"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: modules/titles/titles.php:75
|
554 |
+
msgid "404 Not Found | {blog}"
|
|
|
|
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: modules/titles/titles.php:76
|
558 |
+
msgid "{title} - Page {num}"
|
|
|
|
|
|
|
|
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: modules/titles/titles.php:85
|
562 |
+
msgid "Blog Homepage Title"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: modules/titles/titles.php:86
|
566 |
+
msgid "Post Title Format"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: modules/titles/titles.php:87
|
570 |
+
msgid "Page Title Format"
|
|
|
|
|
|
|
|
|
|
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: modules/titles/titles.php:88
|
574 |
+
msgid "Category Title Format"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: modules/titles/titles.php:89
|
578 |
+
msgid "Tag Title Format"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: modules/titles/titles.php:90
|
582 |
+
msgid "Day Archive Title Format"
|
|
|
|
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: modules/titles/titles.php:91
|
586 |
+
msgid "Month Archive Title Format"
|
|
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: modules/titles/titles.php:92
|
590 |
+
msgid "Year Archive Title Format"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: modules/titles/titles.php:93
|
594 |
+
msgid "Author Archive Title Format"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: modules/titles/titles.php:94
|
598 |
+
msgid "Search Title Format"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: modules/titles/titles.php:95
|
602 |
+
msgid "404 Title Format"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: modules/titles/titles.php:96
|
606 |
+
msgid "Pagination Title Format"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: modules/titles/titles.php:328
|
610 |
+
msgid "Title Tag:"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: modules/titles/titles.php:333
|
614 |
+
msgid ""
|
615 |
+
"<strong>Title Tag</strong> — The exact contents of the <title> "
|
616 |
+
"tag. The title appears in visitors’ title bars and in search engine "
|
617 |
+
"result titles. If this box is left blank, then the <a href=\"admin.php?"
|
618 |
+
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: modules/competition-queries/competition-queries.php:12
|
622 |
+
msgid "Competition Researcher"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: modules/competition-queries/competition-queries.php:13
|
626 |
+
msgid "Comp. Researcher"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: modules/competition-queries/competition-queries.php:17
|
630 |
msgid ""
|
631 |
+
"The Competition Researcher provides you with easy access to various search "
|
632 |
+
"engine tools which you can use to research multiple search queries or URLs."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: modules/competition-queries/competition-queries.php:21
|
636 |
+
msgid "Step 1: Choose Your Research Tool"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: modules/competition-queries/competition-queries.php:25
|
640 |
+
msgid "Keywords"
|
|
|
|
|
|
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: modules/competition-queries/competition-queries.php:25
|
644 |
+
msgid "Normal Search"
|
|
|
|
|
|
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: modules/competition-queries/competition-queries.php:25
|
648 |
+
msgid "Find out how many pages contain the words in each query"
|
|
|
|
|
|
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: modules/competition-queries/competition-queries.php:26
|
652 |
+
msgid "Phrase Match"
|
|
|
|
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: modules/competition-queries/competition-queries.php:26
|
656 |
msgid ""
|
657 |
+
"Find out how many “actual” pages are competing for each query"
|
|
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: modules/competition-queries/competition-queries.php:27
|
661 |
+
msgid "Allinanchor"
|
|
|
|
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: modules/competition-queries/competition-queries.php:27
|
665 |
+
msgid "Find out which sites have the most links for each query"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: modules/competition-queries/competition-queries.php:28
|
669 |
+
msgid "Allintitle"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: modules/competition-queries/competition-queries.php:28
|
673 |
msgid ""
|
674 |
+
"Find out which sites have the highest relevance in the title for each query"
|
|
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: modules/competition-queries/competition-queries.php:29
|
678 |
+
msgid "Allintext"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: modules/competition-queries/competition-queries.php:29
|
682 |
+
msgid "Find out which sites have the most relevant content/text on their pages"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: modules/competition-queries/competition-queries.php:30
|
686 |
+
msgid "Allinurl"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: modules/competition-queries/competition-queries.php:30
|
690 |
+
msgid ""
|
691 |
+
"Find out which sites have the most relevant naming conventions for each "
|
692 |
+
"keyword"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: modules/competition-queries/competition-queries.php:32
|
696 |
+
msgid "URLs"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: modules/competition-queries/competition-queries.php:32
|
700 |
+
msgid "Site"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: modules/competition-queries/competition-queries.php:32
|
704 |
+
msgid "Find out how many pages are indexed for each domain"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: modules/competition-queries/competition-queries.php:33
|
708 |
+
#: modules/competition-queries/competition-queries.php:38
|
709 |
+
msgid "Inbound Links"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: modules/competition-queries/competition-queries.php:33
|
713 |
+
msgid "Find out how many sites link to the domains"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: modules/competition-queries/competition-queries.php:34
|
717 |
+
#: modules/competition-queries/competition-queries.php:38
|
718 |
+
msgid "Outbound Links"
|
|
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: modules/competition-queries/competition-queries.php:34
|
722 |
+
msgid "Find out how many sites the domains link to"
|
|
|
|
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: modules/competition-queries/competition-queries.php:57
|
726 |
+
msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: modules/competition-queries/competition-queries.php:59
|
730 |
+
msgid "(Type in one per line)"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: modules/competition-queries/competition-queries.php:61
|
734 |
+
msgid "Step 3: Set Options and Submit"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: modules/link-nofollow/link-nofollow.php:12
|
738 |
+
msgid "Nofollow Manager"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: modules/link-nofollow/link-nofollow.php:53
|
742 |
+
msgid "Add the nofollow attribute to..."
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: modules/link-nofollow/link-nofollow.php:55
|
746 |
+
msgid "Adjacent post links"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: modules/link-nofollow/link-nofollow.php:56
|
750 |
+
msgid "Category links (after posts)"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: modules/link-nofollow/link-nofollow.php:57
|
754 |
+
msgid "Category links (in lists)"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: modules/link-nofollow/link-nofollow.php:58
|
758 |
+
msgid "Comment anchor links"
|
|
|
|
|
|
|
|
|
|
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: modules/link-nofollow/link-nofollow.php:59
|
762 |
+
msgid "Comment feed links"
|
|
|
|
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: modules/link-nofollow/link-nofollow.php:60
|
766 |
+
msgid "Date-based archive links"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: modules/link-nofollow/link-nofollow.php:61
|
770 |
+
msgid "Pagination navigation links (all)"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: modules/link-nofollow/link-nofollow.php:62
|
774 |
+
msgid "Pagination navigation links (on blog home only)"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: modules/link-nofollow/link-nofollow.php:63
|
778 |
+
msgid "“Read more” links"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: modules/link-nofollow/link-nofollow.php:64
|
782 |
+
msgid "Registration link"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: modules/link-nofollow/link-nofollow.php:65
|
786 |
+
msgid "Login link"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: modules/link-nofollow/link-nofollow.php:66
|
790 |
+
msgid "Tag links (after posts)"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: modules/link-nofollow/link-nofollow.php:67
|
794 |
+
msgid "Tag links (in lists and clouds)"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
798 |
+
msgid "When displaying page lists, nofollow links to this page"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
802 |
+
msgid "Nofollow:"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: modules/meta/meta-keywords.php:12
|
806 |
+
msgid "Meta Keywords Editor"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: modules/meta/meta-keywords.php:13 modules/meta/meta-keywords.php:40
|
810 |
+
msgid "Meta Keywords"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: modules/meta/meta-keywords.php:33 modules/noindex/noindex.php:43
|
814 |
+
msgid "Default Values"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: modules/meta/meta-keywords.php:56
|
818 |
+
msgid "The %d most commonly-used words"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: modules/meta/meta-keywords.php:69
|
822 |
+
msgid "Sitewide Keywords"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: modules/meta/meta-keywords.php:69
|
826 |
+
msgid "(Separate with commas)"
|
|
|
|
|
|
|
|
|
|
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: modules/meta/meta-keywords.php:76
|
830 |
+
msgid "Blog Homepage Meta Keywords"
|
|
|
|
|
|
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: modules/meta/meta-keywords.php:153
|
834 |
+
msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: modules/meta/meta-keywords.php:158
|
838 |
+
msgid ""
|
839 |
+
"<strong>Keywords</strong> — The value of the meta keywords tag. The "
|
840 |
+
"keywords list gives search engines a hint as to what this post/page is "
|
841 |
+
"about. Be sure to separate keywords with commas, like so: <samp>one,two,"
|
842 |
+
"three</samp>."
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: modules/meta/webmaster-verify.php:12
|
846 |
+
msgid "Webmaster Verification Assistant"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: modules/meta/webmaster-verify.php:13
|
850 |
+
msgid "W.M. Verification"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: modules/meta/webmaster-verify.php:47
|
854 |
+
msgid "Google Webmaster Tools"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: modules/meta/webmaster-verify.php:48
|
858 |
+
msgid "Yahoo! Site Explorer"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: modules/meta/webmaster-verify.php:49
|
862 |
+
msgid "Bing Webmaster Center"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: modules/meta/meta-robots.php:12
|
866 |
+
msgid "Meta Robot Tags Editor"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: modules/meta/meta-robots.php:13
|
870 |
+
msgid "Meta Robot Tags"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: modules/meta/meta-robots.php:22
|
874 |
+
msgid "Global"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: modules/meta/meta-robots.php:28
|
878 |
+
msgid "Spider Instructions"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: modules/meta/meta-robots.php:30
|
882 |
+
msgid ""
|
883 |
+
"Don’t use this site’s Open Directory description in search results."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: modules/meta/meta-robots.php:31
|
887 |
+
msgid ""
|
888 |
+
"Don’t use this site’s Yahoo! Directory description in search "
|
889 |
+
"results."
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: modules/meta/meta-robots.php:32
|
893 |
+
msgid "Don’t cache or archive this site."
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: modules/meta/meta-descriptions.php:12
|
897 |
+
msgid "Meta Description Editor"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: modules/meta/meta-descriptions.php:13
|
901 |
+
msgid "Meta Descriptions"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: modules/meta/meta-descriptions.php:31
|
905 |
+
msgid "Meta Description"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: modules/meta/meta-descriptions.php:48
|
909 |
+
msgid "Post Description Format"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: modules/meta/meta-descriptions.php:49
|
913 |
+
msgid "Category Description Format"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: modules/meta/meta-descriptions.php:50
|
917 |
+
msgid "Post Tag Description Format"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: modules/meta/meta-descriptions.php:57
|
921 |
+
msgid "Blog Homepage Meta Description"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: modules/meta/meta-descriptions.php:59
|
925 |
+
msgid "Use this blog’s tagline as the default homepage description."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: modules/meta/meta-descriptions.php:60
|
929 |
+
msgid "Default Value"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: modules/meta/meta-descriptions.php:122
|
933 |
+
msgid "Meta Description:"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: modules/meta/meta-descriptions.php:125
|
937 |
+
msgid "You’ve entered %s characters. Most search engines use up to 140."
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: modules/meta/meta-descriptions.php:133
|
|
|
941 |
msgid ""
|
942 |
+
"<strong>Description</strong> — The value of the meta description tag. "
|
943 |
+
"The description will often appear underneath the title in search engine "
|
944 |
+
"results. Writing an accurate, attention-grabbing description for every post "
|
945 |
+
"is important to ensuring a good search results clickthrough rate."
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: modules/import-aiosp/import-aiosp.php:12
|
949 |
+
msgid "Import from All in One SEO Pack"
|
|
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: modules/import-aiosp/import-aiosp.php:13
|
953 |
+
msgid "AIOSP Import"
|
|
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: modules/import-aiosp/import-aiosp.php:15
|
957 |
+
msgid "All in One SEO Pack"
|
|
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: modules/import-aiosp/import-aiosp.php:16
|
961 |
+
msgid "AIOSP"
|
|
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: modules/import-aiosp/import-aiosp.php:17
|
965 |
+
msgid "Import post data (custom title tags and meta tags)."
|
|
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: modules/import-aiosp/import-aiosp.php:21
|
969 |
+
msgid ""
|
970 |
+
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
971 |
+
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
972 |
+
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
973 |
+
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
974 |
+
"to be currently installed or activated for the import to take place."
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: modules/import-aiosp/import-aiosp.php:23
|
978 |
+
msgid ""
|
979 |
+
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
980 |
+
"you use an older version of AIOSP, you should update to the latest version "
|
981 |
+
"first and run AIOSP’s upgrade process."
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: modules/sds-blog/sds-blog.php:12
|
985 |
+
msgid "Whitepapers"
|
|
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: modules/sds-blog/sds-blog.php:13
|
989 |
+
msgid "SEO Design Solutions Whitepapers"
|
|
|
|
|
990 |
msgstr ""
|
991 |
|
992 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 6.9.2) #-#-#-#-#
|
993 |
+
#. Author of the plugin/theme
|
994 |
+
#: modules/sds-blog/sds-blog.php:49
|
995 |
+
msgid "SEO Design Solutions"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: modules/sds-blog/sds-blog.php:50
|
999 |
+
msgid ""
|
1000 |
+
"The search engine optimization articles below are loaded from the website of "
|
1001 |
+
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
1002 |
+
"an article’s title to read it."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: modules/modules/modules.php:12
|
1006 |
+
msgid "Module Manager"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: modules/modules/modules.php:13
|
1010 |
+
msgid "Modules"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: modules/modules/modules.php:41
|
1014 |
msgid ""
|
1015 |
+
"SEO Ultimate’s features are located in groups called “modules."
|
1016 |
+
"” By default, most of these modules are listed in the “"
|
1017 |
+
"SEO” menu on the left. Whenever you’re working with a module, "
|
1018 |
+
"you can view documentation by clicking the tabs in the upper-right-hand "
|
1019 |
+
"corner of your administration screen."
|
|
|
|
|
|
|
|
|
|
|
|
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: modules/modules/modules.php:43
|
1023 |
msgid ""
|
1024 |
+
"The Module Manager lets you disable or hide modules you don’t use. "
|
1025 |
+
"You can also silence modules from displaying bubble alerts on the menu."
|
|
|
|
|
|
|
|
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: modules/modules/modules.php:47
|
1029 |
+
msgid "Modules updated."
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: modules/modules/modules.php:52
|
1033 |
+
msgid "Status"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: modules/modules/modules.php:53
|
1037 |
+
msgid "Module"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: modules/modules/modules.php:66
|
1041 |
+
msgid "Enabled"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: modules/modules/modules.php:67
|
1045 |
+
msgid "Silenced"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: modules/modules/modules.php:68
|
1049 |
+
msgid "Hidden"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: modules/modules/modules.php:69
|
1053 |
+
msgid "Disabled"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: modules/slugs/slugs.php:12
|
1057 |
+
msgid "Slug Optimizer"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: modules/slugs/slugs.php:16
|
1061 |
+
msgid "Words to Remove"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: modules/404s/fofs.php:11
|
1065 |
+
msgid "404 Monitor"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: modules/404s/fofs-settings.php:16
|
1069 |
+
msgid "404 Monitor Settings"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: modules/404s/fofs-settings.php:37
|
1073 |
+
msgid "Continue monitoring for new 404 errors"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: modules/404s/fofs-settings.php:37
|
1077 |
+
msgid "Monitoring Settings"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: modules/404s/fofs-settings.php:39
|
1081 |
+
msgid "Only log these types of 404 errors:"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: modules/404s/fofs-settings.php:40
|
1085 |
+
msgid "404s generated by search engine spiders"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: modules/404s/fofs-settings.php:41
|
1089 |
+
msgid "404s with referring URLs"
|
|
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: modules/404s/fofs-settings.php:42
|
1093 |
+
msgid "Log Restrictions"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: modules/404s/fofs-settings.php:43
|
1097 |
+
msgid "Maximum Log Entries"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: modules/404s/fofs-settings.php:44
|
1101 |
+
msgid "URLs to Ignore"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: modules/404s/fofs-settings.php:44
|
1105 |
+
msgid "(Use * as wildcard)"
|
|
|
|
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: modules/404s/fofs-log.php:16
|
1109 |
+
msgid "404 Monitor Log"
|
|
|
|
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: modules/404s/fofs-log.php:17
|
1113 |
+
msgid "Log"
|
|
|
|
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: modules/404s/fofs-log.php:114
|
1117 |
+
msgid "Hits"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: modules/404s/fofs-log.php:115
|
1121 |
+
msgid "URL with 404 Error"
|
|
|
|
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: modules/404s/fofs-log.php:116
|
1125 |
+
msgid "Date of Most Recent Hit"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: modules/404s/fofs-log.php:117
|
1129 |
+
msgid "Referers"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
|
1133 |
+
msgid "User Agents"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: modules/404s/fofs-log.php:134
|
1137 |
+
msgid ""
|
1138 |
+
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
1139 |
+
"Settings tab."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: modules/404s/fofs-log.php:141
|
1143 |
+
msgid "The log entry was successfully deleted."
|
|
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: modules/404s/fofs-log.php:143
|
1147 |
+
msgid "This log entry has already been deleted."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: modules/404s/fofs-log.php:152
|
1151 |
+
msgid "The log was successfully cleared."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: modules/404s/fofs-log.php:156
|
1155 |
+
msgid "No 404 errors in the log."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: modules/404s/fofs-log.php:180
|
1159 |
+
msgid "Open URL in new window (will not be logged)"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: modules/404s/fofs-log.php:181
|
1163 |
+
msgid "Query Google for cached version of URL (opens in new window)"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: modules/404s/fofs-log.php:182
|
1167 |
+
msgid "Remove this URL from the log"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: modules/404s/fofs-log.php:185
|
1171 |
+
msgid "%s at %s"
|
|
|
|
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: modules/404s/fofs-log.php:189
|
1175 |
+
msgid "View list of referring URLs"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: modules/404s/fofs-log.php:190
|
1179 |
+
msgid "View list of user agents"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: modules/404s/fofs-log.php:200
|
1183 |
+
msgid "Referring URLs"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
|
1187 |
+
msgid "Hide list"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: modules/404s/fofs-log.php:252
|
1191 |
+
msgid "Are you sure you want to delete all 404 log entries?"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: modules/404s/fofs-log.php:254
|
1195 |
+
msgid "Clear Log"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: modules/linkbox/linkbox.php:12
|
1199 |
+
msgid "Linkbox Inserter"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: modules/linkbox/linkbox.php:18
|
1203 |
+
msgid "Link to this post!"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: modules/linkbox/linkbox.php:45
|
1207 |
+
msgid "At the end of posts"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: modules/linkbox/linkbox.php:46
|
1211 |
+
msgid "At the end of pages"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: modules/linkbox/linkbox.php:47
|
1215 |
+
msgid "When called by the su_linkbox hook"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: modules/linkbox/linkbox.php:48
|
1219 |
+
msgid "Display linkboxes..."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: modules/linkbox/linkbox.php:49
|
1223 |
+
msgid "Linkbox HTML"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: modules/more-links/more-links.php:12
|
1227 |
+
msgid "More Link Customizer"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: modules/more-links/more-links.php:30
|
1231 |
+
msgid "Default More Link Text"
|
|
|
|
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: modules/more-links/more-links.php:51
|
1235 |
+
msgid "More Link Text:"
|
|
|
|
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: modules/permalinks/permalinks.php:15
|
1239 |
+
msgid "Permalink Tweaker"
|
|
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: modules/permalinks/permalinks.php:44
|
1243 |
+
msgid ""
|
1244 |
+
"To use the Permalinks Tweaker, you must disable default (query-string) "
|
1245 |
+
"permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: modules/permalinks/permalinks.php:62
|
1249 |
+
msgid "%1$s (turn <code>%2$s</code> into <code>%3$s</code>)"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: modules/permalinks/permalinks.php:69
|
1253 |
+
msgid "Remove the URL bases of..."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: modules/misc/misc.php:11
|
1257 |
+
msgid "Miscellaneous"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: modules/misc/misc.php:14
|
1261 |
+
msgid ""
|
1262 |
+
"The Miscellaneous page contains modules that don’t have enough "
|
1263 |
+
"settings to warrant their own separate admin pages."
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: modules/files/files.php:14
|
1267 |
+
msgid "File Editor"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: modules/files/files.php:53
|
1271 |
+
msgid ""
|
1272 |
+
"A .htaccess file exists, but it’s not writable. You can edit it here "
|
1273 |
+
"once the file permissions are corrected."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: modules/files/files.php:59
|
1277 |
+
msgid ""
|
1278 |
+
"WordPress won’t be able to display your robots.txt file because the "
|
1279 |
+
"default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
|
1280 |
+
"structure</a> is in use."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: modules/files/files.php:66
|
1284 |
+
msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: modules/files/files.php:70
|
1288 |
+
msgid "Enable this custom robots.txt file and disable the default file"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: modules/files/files.php:71
|
1292 |
+
msgid "Let other plugins add rules to my custom robots.txt file"
|
|
|
|
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: modules/files/files.php:72
|
1296 |
+
msgid "robots.txt Settings"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: modules/files/files.php:75
|
1300 |
+
msgid ""
|
1301 |
+
"Please realize that incorrectly editing your robots.txt file could block "
|
1302 |
+
"search engines from your site."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: modules/files/files.php:79
|
1306 |
+
msgid ".htaccess"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: modules/files/files.php:82
|
1310 |
+
msgid ""
|
1311 |
+
"Also, incorrectly editing your .htaccess file could disable your entire "
|
1312 |
+
"website. Edit with caution!"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: modules/files/files.php:134
|
1316 |
+
msgid ""
|
1317 |
+
"Please note that your privacy settings won’t have any effect on your "
|
1318 |
+
"robots.txt file, since you’re using <a href=\"%s\">a custom one</a>."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: modules/canonical/canonical.php:12
|
1322 |
+
msgid "Canonicalizer"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: modules/canonical/canonical.php:39
|
1326 |
+
msgid ""
|
1327 |
+
"Generate <code><link rel="canonical" /></code> meta tags."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: modules/canonical/canonical.php:40
|
1331 |
+
msgid "Send <code>rel="canonical"</code> HTTP headers."
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: modules/canonical/canonical.php:41
|
1335 |
+
msgid "Redirect requests for nonexistent pagination."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: modules/user-code/user-code.php:12
|
1339 |
+
msgid "Code Inserter"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: modules/user-code/user-code.php:27
|
1343 |
+
msgid "Everywhere"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: modules/user-code/user-code.php:34
|
1347 |
+
msgid "<head> Tag"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: modules/user-code/user-code.php:35
|
1351 |
+
msgid "Before Item Content"
|
|
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: modules/user-code/user-code.php:36
|
1355 |
+
msgid "After Item Content"
|
|
|
|
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: modules/user-code/user-code.php:37
|
1359 |
+
msgid "Footer"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: modules/user-code/user-code.php:51
|
1363 |
+
msgid "Code Inserter module"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: modules/settings/settings-data.php:16
|
1367 |
+
msgid "Settings Data Manager"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: modules/settings/settings-data.php:17
|
1371 |
+
msgid "Manage Settings Data"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: modules/settings/settings-data.php:21
|
1375 |
+
msgid "Import"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: modules/settings/settings-data.php:22
|
1379 |
+
msgid "Export"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: modules/settings/settings-data.php:82
|
1383 |
+
msgid "Settings successfully imported."
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: modules/settings/settings-data.php:84
|
1387 |
+
msgid ""
|
1388 |
+
"The uploaded file is not in the proper format. Settings could not be "
|
1389 |
+
"imported."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: modules/settings/settings-data.php:86
|
1393 |
+
msgid "The settings file could not be uploaded successfully."
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: modules/settings/settings-data.php:89
|
1397 |
+
msgid ""
|
1398 |
+
"Settings could not be imported because no settings file was selected. Please "
|
1399 |
+
"click the “Browse” button and select a file to import."
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: modules/settings/settings-data.php:140
|
1403 |
+
msgid ""
|
1404 |
+
"The uploaded file is not in the proper format. Links could not be imported."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: modules/settings/settings-data.php:182
|
1408 |
+
msgid "Links successfully imported."
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: modules/settings/settings-data.php:185
|
1412 |
+
msgid "The CSV file could not be uploaded successfully."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: modules/settings/settings-data.php:188
|
1416 |
msgid ""
|
1417 |
+
"Links could not be imported because no CSV file was selected. Please click "
|
1418 |
+
"the “Browse” button and select a file to import."
|
|
|
|
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: modules/settings/settings-data.php:198
|
1422 |
+
msgid "Import SEO Ultimate Settings File"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: modules/settings/settings-data.php:200
|
1426 |
+
msgid ""
|
1427 |
+
"You can use this form to upload and import an SEO Ultimate settings file "
|
1428 |
+
"stored on your computer. (These files can be created using the Export tool.) "
|
1429 |
+
"Note that importing a file will overwrite your existing settings with those "
|
1430 |
+
"in the file."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: modules/settings/settings-data.php:204
|
1434 |
+
msgid ""
|
1435 |
+
"Are you sure you want to import this settings file? This will overwrite your "
|
1436 |
+
"current settings and cannot be undone."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: modules/settings/settings-data.php:205
|
1440 |
+
msgid "Import Settings File"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: modules/settings/settings-data.php:211
|
1444 |
+
msgid "Import Deeplink Juggernaut CSV File"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: modules/settings/settings-data.php:213
|
1448 |
+
msgid ""
|
1449 |
+
"You can use this form to upload and import a Deeplink Juggernaut CSV file "
|
1450 |
+
"stored on your computer. (These files can be created using the Export tool.) "
|
1451 |
+
"Note that importing a file will overwrite your existing links with those in "
|
1452 |
+
"the file."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: modules/settings/settings-data.php:217
|
1456 |
+
msgid ""
|
1457 |
+
"Are you sure you want to import this CSV file? This will overwrite your "
|
1458 |
+
"current Deeplink Juggernaut links and cannot be undone."
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: modules/settings/settings-data.php:218
|
1462 |
+
msgid "Import CSV File"
|
|
|
|
|
|
|
|
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: modules/settings/settings-data.php:233
|
1466 |
+
msgid "Import from Other Plugins"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: modules/settings/settings-data.php:235
|
1470 |
msgid ""
|
1471 |
+
"You can import settings and data from these plugins. Clicking a plugin’"
|
1472 |
+
"s name will take you to the importer page, where you can customize "
|
1473 |
+
"parameters and start the import."
|
|
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: modules/settings/settings-data.php:255
|
1477 |
+
msgid "Export SEO Ultimate Settings File"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: modules/settings/settings-data.php:257
|
1481 |
msgid ""
|
1482 |
+
"You can use this export tool to download an SEO Ultimate settings file to "
|
1483 |
+
"your computer."
|
|
|
|
|
|
|
|
|
|
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: modules/settings/settings-data.php:259
|
1487 |
+
msgid ""
|
1488 |
+
"A settings file includes the data of every checkbox and textbox of every "
|
1489 |
+
"installed module. It does NOT include site-specific data like logged 404s or "
|
1490 |
+
"post/page title/meta data (this data would be included in a standard "
|
1491 |
+
"database backup, however)."
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: modules/settings/settings-data.php:262
|
1495 |
+
msgid "Download Settings File"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: modules/settings/settings-data.php:267
|
1499 |
+
msgid "Export Deeplink Juggernaut CSV File"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: modules/settings/settings-data.php:269
|
1503 |
msgid ""
|
1504 |
+
"You can use this export tool to download a CSV file (comma-separated values "
|
1505 |
+
"file) that contains your Deeplink Juggernaut links. Once you download this "
|
1506 |
+
"file to your computer, you can edit it using your favorite spreadsheet "
|
1507 |
+
"program. When you’re done editing, you can re-upload the file using "
|
1508 |
+
"the Import tool."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: modules/settings/settings-data.php:272
|
1512 |
+
msgid "Download CSV File"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: modules/settings/settings-data.php:279
|
1516 |
+
msgid "All settings have been erased and defaults have been restored."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: modules/settings/settings-data.php:281
|
1520 |
+
msgid ""
|
1521 |
+
"You can erase all your SEO Ultimate settings and restore them to “"
|
1522 |
+
"factory defaults” by clicking the button below."
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: modules/settings/settings-data.php:284
|
1526 |
msgid ""
|
1527 |
+
"Are you sure you want to erase all module settings? This cannot be undone."
|
|
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: modules/settings/settings-data.php:285
|
1531 |
+
msgid "Restore Default Settings"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: modules/settings/global-settings.php:18
|
1535 |
+
msgid "Global Settings"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: modules/settings/global-settings.php:40
|
1539 |
+
msgid "Enable nofollow’d attribution link"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: modules/settings/global-settings.php:41
|
1543 |
+
msgid "Enable attribution link CSS styling"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: modules/settings/global-settings.php:42
|
1547 |
+
msgid "Notify me about unnecessary active plugins"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: modules/settings/global-settings.php:43
|
1551 |
+
msgid "Insert comments around HTML code insertions"
|
1552 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1553 |
|
1554 |
+
#: modules/settings/settings.php:12
|
1555 |
+
msgid "Plugin Settings"
|
1556 |
+
msgstr ""
|
|
|
|
|
|
|
1557 |
|
1558 |
+
#: modules/settings/settings.php:13
|
1559 |
+
msgid "SEO Ultimate Plugin Settings"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 6.9.2) #-#-#-#-#
|
1563 |
+
#. Plugin Name of the plugin/theme
|
1564 |
+
#: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:775
|
1565 |
+
msgid "SEO Ultimate"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: modules/settings/uninstall.php:17
|
1569 |
+
msgid "Uninstaller"
|
1570 |
+
msgstr ""
|
1571 |
+
|
1572 |
+
#: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1258
|
1573 |
+
msgid "Uninstall"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: modules/settings/uninstall.php:27
|
1577 |
msgid ""
|
1578 |
+
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
1579 |
+
"files."
|
|
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: modules/settings/uninstall.php:30
|
1583 |
+
msgid ""
|
1584 |
+
"Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
|
1585 |
+
"your SEO Ultimate settings and cannot be undone."
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: modules/settings/uninstall.php:31
|
1589 |
+
msgid "Uninstall Now"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: modules/settings/uninstall.php:35 modules/settings/uninstall.php:42
|
1593 |
+
msgid "Uninstall SEO Ultimate"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: modules/settings/uninstall.php:46
|
1597 |
+
msgid "Deleted settings."
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: modules/settings/uninstall.php:53
|
1601 |
+
msgid "An error occurred while deleting files."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: modules/settings/uninstall.php:55
|
1605 |
+
msgid "Deleted files."
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: modules/settings/uninstall.php:56
|
1609 |
+
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: modules/settings/install.php:18
|
1613 |
+
msgid "Upgrade/Downgrade/Reinstall"
|
|
|
|
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: modules/settings/install.php:19
|
1617 |
+
msgid "Installer"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: modules/settings/install.php:23 modules/settings/install.php:48
|
1621 |
+
msgid "Upgrade"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: modules/settings/install.php:24 modules/settings/install.php:71
|
1625 |
+
msgid "Downgrade"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: modules/settings/install.php:25 modules/settings/install.php:86
|
1629 |
+
msgid "Reinstall"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: modules/settings/install.php:42
|
1633 |
+
msgid ""
|
1634 |
+
"From the list below, select the version to which you would like to upgrade. "
|
1635 |
+
"Then click the “Upgrade” button at the bottom of the screen."
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: modules/settings/install.php:51
|
1639 |
+
msgid "You are already running the latest version."
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: modules/settings/install.php:53
|
1643 |
+
msgid ""
|
1644 |
+
"There was an error retrieving the list of available versions. Please try "
|
1645 |
+
"again later. You can also upgrade to the latest version of SEO Ultimate "
|
1646 |
+
"using the WordPress plugin upgrader."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: modules/settings/install.php:62
|
1650 |
+
msgid ""
|
1651 |
+
"Downgrading is provided as a convenience only and is not officially "
|
1652 |
+
"supported. Although unlikely, you may lose data in the downgrading process. "
|
1653 |
+
"It is your responsibility to backup your database before proceeding."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: modules/settings/install.php:65
|
1657 |
+
msgid ""
|
1658 |
+
"From the list below, select the version to which you would like to "
|
1659 |
+
"downgrade. Then click the “Downgrade” button at the bottom of "
|
1660 |
+
"the screen."
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: modules/settings/install.php:74
|
1664 |
+
msgid ""
|
1665 |
+
"Downgrading to versions earlier than %s is not supported because doing so "
|
1666 |
+
"will result in data loss."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: modules/settings/install.php:76
|
1670 |
+
msgid ""
|
1671 |
+
"There was an error retrieving the list of available versions. Please try "
|
1672 |
+
"again later."
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: modules/settings/install.php:81
|
1676 |
msgid ""
|
1677 |
+
"To download and install a fresh copy of the SEO Ultimate version you are "
|
1678 |
+
"currently using, click the “Reinstall” button below."
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: modules/settings/install.php:108
|
1682 |
+
msgid "Your Current Version"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: modules/settings/install.php:110
|
1686 |
+
msgid "Latest Version"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: modules/settings/install.php:130
|
1690 |
+
msgid ""
|
1691 |
+
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
1692 |
+
"blog."
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: modules/settings/install.php:140
|
1696 |
+
msgid "Downgrade to SEO Ultimate %s"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: modules/settings/install.php:143
|
1700 |
+
msgid "Reinstall SEO Ultimate %s"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: modules/settings/install.php:146
|
1704 |
+
msgid "Upgrade to SEO Ultimate %s"
|
|
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: modules/sharing-buttons/sharing-buttons.php:12
|
1708 |
+
msgid "Sharing Facilitator"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: modules/sharing-buttons/sharing-buttons.php:25
|
1712 |
+
msgid "Bookmark and Share"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: modules/sharing-buttons/sharing-buttons.php:39
|
1716 |
+
msgid "Which provider would you like to use for your sharing buttons?"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: modules/sharing-buttons/sharing-buttons.php:41
|
1720 |
+
msgid "None; disable sharing buttons"
|
|
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: modules/sharing-buttons/sharing-buttons.php:42
|
1724 |
+
msgid "Use the ShareThis button"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: modules/sharing-buttons/sharing-buttons.php:43
|
1728 |
+
msgid "Use the AddThis button"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: modules/wp-settings/wp-settings.php:14
|
1732 |
+
msgid "Settings Monitor (Beta)"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: modules/wp-settings/wp-settings.php:15
|
1736 |
+
msgid "Settings Monitor"
|
|
|
|
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: modules/wp-settings/wp-settings.php:30
|
1740 |
+
msgid "Blog is visible to search engines"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: modules/wp-settings/wp-settings.php:31
|
1744 |
+
msgid "WordPress will allow search engines to visit your site."
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: modules/wp-settings/wp-settings.php:33
|
1748 |
+
msgid "Blog is hidden from search engines"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: modules/wp-settings/wp-settings.php:34
|
1752 |
+
msgid ""
|
1753 |
+
"WordPress is configured to block search engines. This will nullify your "
|
1754 |
+
"site’s SEO and should be resolved immediately."
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: modules/wp-settings/wp-settings.php:38
|
1758 |
+
msgid "Query-string permalinks enabled"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: modules/wp-settings/wp-settings.php:39
|
1762 |
+
msgid ""
|
1763 |
+
"It is highly recommended that you use a non-default and non-numeric "
|
1764 |
+
"permalink structure."
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: modules/wp-settings/wp-settings.php:43
|
1768 |
+
msgid "Pathinfo permalinks enabled"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: modules/wp-settings/wp-settings.php:44
|
1772 |
+
msgid ""
|
1773 |
+
"Pathinfo permalinks add a keyword-less “index.php” prefix. This "
|
1774 |
+
"is not ideal, but it may be beyond your control (since it’s likely "
|
1775 |
+
"caused by your site’s web hosting setup)."
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: modules/wp-settings/wp-settings.php:49
|
1779 |
+
msgid "Permalinks include the post slug"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: modules/wp-settings/wp-settings.php:50
|
1783 |
+
msgid ""
|
1784 |
+
"Including a version of the post’s title helps provide keyword-rich "
|
1785 |
+
"URLs."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: modules/wp-settings/wp-settings.php:52
|
1789 |
+
msgid "Permalinks do not include the post slug"
|
|
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: modules/wp-settings/wp-settings.php:53
|
1793 |
+
msgid ""
|
1794 |
+
"It is highly recommended that you include the %postname% variable in the "
|
1795 |
+
"permalink structure."
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: modules/wp-settings/wp-settings.php:63
|
1799 |
+
msgid ""
|
1800 |
+
"Settings Monitor analyzes your blog’s settings and notifies you of any "
|
1801 |
+
"problems. If any issues are found, they will show up in red or yellow below."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: modules/wp-settings/wp-settings.php:75
|
1805 |
+
msgid "Go to setting »"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: modules/noindex/noindex.php:12
|
1809 |
+
msgid "Noindex Manager"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
|
1813 |
+
#: modules/noindex/noindex.php:67
|
1814 |
+
msgid "Noindex"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
|
1818 |
+
#: modules/autolinks/content-autolinks.php:367
|
1819 |
+
#: modules/autolinks/footer-autolinks.php:214
|
1820 |
+
msgid "Nofollow"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
|
1824 |
+
msgid "Use default"
|
|
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: modules/noindex/noindex.php:63
|
1828 |
+
msgid "noindex"
|
|
|
|
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: modules/noindex/noindex.php:64
|
1832 |
+
msgid "index"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: modules/noindex/noindex.php:74
|
1836 |
+
msgid "nofollow"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: modules/noindex/noindex.php:75
|
1840 |
+
msgid "follow"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: modules/noindex/noindex.php:89
|
1844 |
+
msgid ""
|
1845 |
+
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
1846 |
+
"block indexing of the entire site, regardless of which options are set below."
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: modules/noindex/noindex.php:92
|
1850 |
+
msgid "Prevent indexing of..."
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: modules/noindex/noindex.php:93
|
1854 |
+
msgid "Administration back-end pages"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: modules/noindex/noindex.php:94
|
1858 |
+
msgid "Author archives"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: modules/noindex/noindex.php:95
|
1862 |
+
msgid "Blog search pages"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: modules/noindex/noindex.php:96
|
1866 |
+
msgid "Category archives"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: modules/noindex/noindex.php:97
|
1870 |
+
msgid "Comment feeds"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: modules/noindex/noindex.php:98
|
1874 |
+
msgid "Comment subpages"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
+
#: modules/noindex/noindex.php:99
|
1878 |
+
msgid "Date-based archives"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: modules/noindex/noindex.php:100
|
1882 |
+
msgid "Subpages of the homepage"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
+
#: modules/noindex/noindex.php:101
|
1886 |
+
msgid "Tag archives"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: modules/noindex/noindex.php:102
|
1890 |
+
msgid "User login/registration pages"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: modules/noindex/noindex.php:165
|
1894 |
+
msgid "Noindex: Tell search engines not to index this webpage."
|
1895 |
msgstr ""
|
1896 |
|
1897 |
+
#: modules/noindex/noindex.php:166
|
1898 |
+
msgid "Nofollow: Tell search engines not to spider links on this webpage."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: modules/noindex/noindex.php:167
|
1902 |
+
msgid "Meta Robots Tag:"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: modules/autolinks/autolinks.php:11
|
1906 |
+
msgid "Deeplink Juggernaut"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: modules/autolinks/autolinks.php:18
|
1910 |
+
msgid ""
|
1911 |
+
"Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
|
1912 |
+
"(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
|
1913 |
+
"WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your "
|
1914 |
+
"webhost. In the meantime, you can return to an older version of Deeplink "
|
1915 |
+
"Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
|
1916 |
+
"a> to SEO Ultimate 5.9."
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: modules/autolinks/content-autolinks.php:16
|
1920 |
+
msgid "Content Deeplink Juggernaut"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: modules/autolinks/content-autolinks.php:17
|
1924 |
+
msgid "Content Links"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: modules/autolinks/content-autolinks.php:259
|
1928 |
+
#: modules/autolinks/footer-autolinks.php:129
|
1929 |
+
msgid ""
|
1930 |
+
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
1931 |
+
"a certain word or phrase in your post/page content to a URL you specify."
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: modules/autolinks/content-autolinks.php:313
|
1935 |
+
#: modules/autolinks/footer-autolinks.php:161
|
1936 |
+
msgid "Edit Existing Links"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: modules/autolinks/content-autolinks.php:317
|
1940 |
+
#: modules/autolinks/footer-autolinks.php:165
|
1941 |
+
msgid "Add a New Link"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: modules/autolinks/content-autolinks.php:328
|
1945 |
+
#: modules/autolinks/footer-autolinks.php:175
|
1946 |
+
msgid "Anchor Text"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: modules/autolinks/content-autolinks.php:329
|
1950 |
+
#: modules/autolinks/footer-autolinks.php:176
|
1951 |
+
msgid "Destination"
|
|
|
|
|
|
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: modules/autolinks/content-autolinks.php:330
|
1955 |
+
#: modules/autolinks/footer-autolinks.php:177
|
1956 |
+
msgid "Title Attribute"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: modules/autolinks/content-autolinks.php:332
|
1960 |
+
msgid "Site Cap"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: modules/autolinks/content-autolinks.php:333
|
1964 |
+
#: modules/autolinks/footer-autolinks.php:178
|
1965 |
+
msgid "Options"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: modules/autolinks/content-autolinks.php:335
|
1969 |
+
#: modules/autolinks/footer-autolinks.php:180
|
1970 |
+
msgid "Delete"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: modules/autolinks/content-autolinks.php:369
|
1974 |
+
#: modules/autolinks/footer-autolinks.php:216
|
1975 |
+
msgid "New window"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: modules/autolinks/content-autolinks.php:434
|
1979 |
+
msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: modules/autolinks/content-autolinks.php:437
|
1983 |
+
msgid "Don’t add autolinks to anchor texts found in this post."
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: modules/autolinks/content-autolinks.php:437
|
1987 |
+
msgid "Autolink Exclusion:"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: modules/autolinks/content-autolinks.php:443
|
1991 |
msgid ""
|
1992 |
+
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
1993 |
+
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
1994 |
+
"other posts and link it to this post. For example, if the post you’re "
|
1995 |
+
"editing is about “blue widgets,” you could type “blue "
|
1996 |
+
"widgets” into the “Incoming Autolink Anchors” box and "
|
1997 |
+
"Deeplink Juggernaut will automatically build internal links to this post "
|
1998 |
+
"with that anchor text (assuming other posts contain that text)."
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: modules/autolinks/content-autolinks-settings.php:16
|
2002 |
+
msgid "Content Deeplink Juggernaut Settings"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: modules/autolinks/content-autolinks-settings.php:17
|
2006 |
+
msgid "Content Link Settings"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: modules/autolinks/content-autolinks-settings.php:40
|
2010 |
+
msgid "Add Autolinks to..."
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: modules/autolinks/content-autolinks-settings.php:43
|
2014 |
+
msgid "Allow posts to link to themselves."
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: modules/autolinks/content-autolinks-settings.php:44
|
2018 |
+
msgid ""
|
2019 |
+
"Allow posts to link to the URL by which the visitor is accessing the post."
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: modules/autolinks/content-autolinks-settings.php:45
|
2023 |
+
msgid "Self-Linking"
|
|
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: modules/autolinks/content-autolinks-settings.php:48
|
2027 |
+
msgid "Enable per-link customization of quantity limits."
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: modules/autolinks/content-autolinks-settings.php:49
|
2031 |
+
msgid "Don’t add any more than %d autolinks per post/page/etc."
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: modules/autolinks/content-autolinks-settings.php:50
|
2035 |
+
msgid ""
|
2036 |
+
"Don’t link the same anchor text any more than %d times per post/page/"
|
2037 |
+
"etc."
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: modules/autolinks/content-autolinks-settings.php:51
|
2041 |
+
msgid ""
|
2042 |
+
"Don’t link the same anchor text any more than %d times across my "
|
2043 |
+
"entire site."
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: modules/autolinks/content-autolinks-settings.php:52
|
2047 |
+
msgid ""
|
2048 |
+
"Don’t link to the same destination any more than %d times per post/"
|
2049 |
+
"page/etc."
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: modules/autolinks/content-autolinks-settings.php:53
|
2053 |
+
msgid "Quantity Restrictions"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: modules/autolinks/content-autolinks-settings.php:55
|
2057 |
+
msgid ""
|
2058 |
+
"Don’t add autolinks to text within these HTML tags <em>(separate with "
|
2059 |
+
"commas)</em>:"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: modules/autolinks/content-autolinks-settings.php:55
|
2063 |
+
msgid "Tag Restrictions"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: modules/autolinks/content-autolinks-settings.php:63
|
2067 |
+
msgid "%s can only link to internal destinations that share at least one..."
|
2068 |
+
msgstr ""
|
2069 |
+
|
2070 |
+
#: modules/autolinks/content-autolinks-settings.php:76
|
2071 |
+
msgid "Siloing"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: modules/autolinks/footer-autolinks.php:16
|
2075 |
+
msgid "Footer Deeplink Juggernaut"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: modules/autolinks/footer-autolinks.php:173
|
2079 |
+
msgid "Link Location (optional)"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: modules/autolinks/footer-autolinks.php:201
|
2083 |
+
msgid "Match child content"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: modules/autolinks/footer-autolinks.php:203
|
2087 |
+
msgid "Negative match"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
+
#: modules/autolinks/footer-autolinks-settings.php:16
|
2091 |
+
msgid "Footer Deeplink Juggernaut Settings"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
+
#: modules/autolinks/footer-autolinks-settings.php:17
|
2095 |
+
msgid "Footer Link Settings"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: modules/autolinks/footer-autolinks-settings.php:28
|
2099 |
+
msgid "HTML Formats"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: modules/autolinks/footer-autolinks-settings.php:31
|
2103 |
+
msgid "Link Section Format"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: modules/autolinks/footer-autolinks-settings.php:32
|
2107 |
+
msgid "Link Format"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: modules/autolinks/footer-autolinks-settings.php:34
|
2111 |
+
msgid "Link Separator"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: plugin/class.su-installer.php:9
|
2115 |
+
msgid "Package not available."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: plugin/class.su-installer.php:12
|
2119 |
+
msgid "Removing the current version of the plugin…"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: plugin/class.su-installer.php:13
|
2123 |
+
msgid "Could not remove the current version of the plugin."
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: plugin/class.su-installer.php:17
|
2127 |
+
msgid "Downloading old version from <span class=\"code\">%s</span>…"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: plugin/class.su-installer.php:18
|
2131 |
+
msgid "Unpacking the downgrade…"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: plugin/class.su-installer.php:19
|
2135 |
+
msgid "Installing the downgrade…"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: plugin/class.su-installer.php:20
|
2139 |
+
msgid "Plugin downgrade failed."
|
|
|
|
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: plugin/class.su-installer.php:21
|
2143 |
+
msgid "Plugin downgraded successfully."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: plugin/class.su-installer.php:24
|
2147 |
+
msgid "Downloading from <span class=\"code\">%s</span>…"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: plugin/class.su-installer.php:25
|
2151 |
+
msgid "Unpacking the reinstall…"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: plugin/class.su-installer.php:26
|
2155 |
+
msgid "Reinstalling the current version…"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: plugin/class.su-installer.php:27
|
2159 |
+
msgid "Plugin reinstallation failed."
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: plugin/class.su-installer.php:28
|
2163 |
+
msgid "Plugin reinstalled successfully."
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: plugin/class.su-installer.php:32
|
2167 |
+
msgid "Downloading upgrade from <span class=\"code\">%s</span>…"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: plugin/class.su-installer.php:33
|
2171 |
+
msgid "Unpacking the upgrade…"
|
|
|
|
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: plugin/class.su-installer.php:34
|
2175 |
+
msgid "Installing the upgrade…"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: plugin/class.su-installer.php:35
|
2179 |
+
msgid "Plugin upgrade failed."
|
|
|
|
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: plugin/class.su-installer.php:36
|
2183 |
+
msgid "Plugin upgraded successfully."
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
|
2187 |
+
msgid "%s and %s"
|
|
|
|
|
|
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
|
2191 |
+
msgid ", "
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
|
2195 |
+
msgid "%s, and %s"
|
|
|
|
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: plugin/class.seo-ultimate.php:775
|
2199 |
+
msgid "SEO"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: plugin/class.seo-ultimate.php:964
|
2203 |
msgid ""
|
2204 |
+
"It looks like you made changes to the settings of this SEO Ultimate module. "
|
2205 |
+
"If you leave before saving, those changes will be lost."
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: plugin/class.seo-ultimate.php:1058
|
2209 |
+
msgid "SEO Settings Help"
|
|
|
|
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: plugin/class.seo-ultimate.php:1060
|
2213 |
+
msgid "The SEO Settings box lets you customize these settings:"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: plugin/class.seo-ultimate.php:1062
|
2217 |
+
msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: plugin/class.seo-ultimate.php:1117
|
2221 |
msgid ""
|
2222 |
+
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
|
2223 |
+
"1$s to avoid plugin conflicts."
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: plugin/class.seo-ultimate.php:1159
|
2227 |
+
msgid "new module"
|
|
|
|
|
|
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: plugin/class.seo-ultimate.php:1159
|
2231 |
+
msgid "new modules"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: plugin/class.seo-ultimate.php:1160
|
2235 |
+
msgid "new feature"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: plugin/class.seo-ultimate.php:1160
|
2239 |
+
msgid "new features"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: plugin/class.seo-ultimate.php:1161
|
2243 |
+
msgid "bugfix"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: plugin/class.seo-ultimate.php:1161
|
2247 |
+
msgid "bugfixes"
|
|
|
|
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: plugin/class.seo-ultimate.php:1162
|
2251 |
+
msgid "improvement"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: plugin/class.seo-ultimate.php:1162
|
2255 |
+
msgid "improvements"
|
|
|
|
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: plugin/class.seo-ultimate.php:1163
|
2259 |
+
msgid "security fix"
|
|
|
|
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: plugin/class.seo-ultimate.php:1163
|
2263 |
+
msgid "security fixes"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: plugin/class.seo-ultimate.php:1194
|
2267 |
+
msgid "%d %s"
|
|
|
|
|
|
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: plugin/class.seo-ultimate.php:1200
|
2271 |
+
msgid "Upgrade now to get %s. %s."
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: plugin/class.seo-ultimate.php:1202
|
2275 |
+
msgid "View changelog"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: plugin/class.seo-ultimate.php:1278
|
2279 |
+
msgid "Active Modules: "
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: plugin/class.seo-ultimate.php:1339
|
2283 |
+
msgid ""
|
2284 |
+
"<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
|
2285 |
+
"search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
|
2286 |
+
"target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
|
2287 |
+
"to everyone."
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: plugin/class.seo-ultimate.php:1461
|
2291 |
+
msgid "SEO Settings"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: plugin/class.seo-ultimate.php:1679
|
2295 |
+
msgid "Home"
|
|
|
|
|
|
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: plugin/class.seo-ultimate.php:1748
|
2299 |
+
msgid "Author Archives"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: includes/jlwp/functions.php:65
|
2303 |
+
msgid "Posts"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: includes/jlwp/functions.php:65
|
2307 |
+
msgid "Post"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: includes/jlwp/functions.php:66
|
2311 |
+
msgid "Pages"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: includes/jlwp/functions.php:66
|
2315 |
+
msgid "Page"
|
|
|
|
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: includes/jlwp/functions.php:67
|
2319 |
+
msgid "Attachments"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: includes/jlwp/functions.php:67
|
2323 |
+
msgid "Attachment"
|
|
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: includes/jlwp/functions.php:96
|
2327 |
+
msgctxt "post format"
|
2328 |
+
msgid "Format"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: includes/jlwp/functions.php:97
|
2332 |
+
msgid "Post Format Archives"
|
2333 |
+
msgstr ""
|
2334 |
+
|
2335 |
+
#: includes/jlwp/functions.php:165
|
2336 |
+
msgid "backup your database"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
#. Plugin URI of the plugin/theme
|