SEO Ultimate - Version 6.9.2

Version Description

Download this release

Release Info

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