SEO Ultimate - Version 5.7

Version Description

Download this release

Release Info

Developer JohnLamansky
Plugin Icon 128x128 SEO Ultimate
Version 5.7
Comparing to
See all releases

Code changes from version 5.6.2 to 5.7

includes/jlfunctions/str.php CHANGED
@@ -232,6 +232,17 @@ class sustr {
232
  }
233
  return implode(' ', $new_words);
234
  }
 
 
 
 
 
 
 
 
 
 
 
235
  }
236
 
237
  ?>
232
  }
233
  return implode(' ', $new_words);
234
  }
235
+
236
+ function camel_case($string) {
237
+ $string = strtolower($string);
238
+ $string = preg_replace('@[^a-z0-9]@', ' ', $string);
239
+ $words = array_filter(explode(' ', $string));
240
+ $first = array_shift($words);
241
+ $words = array_map('ucwords', $words);
242
+ $words = implode('', $words);
243
+ $string = $first . $words;
244
+ return $string;
245
+ }
246
  }
247
 
248
  ?>
includes/jlwp/functions.php CHANGED
@@ -79,6 +79,18 @@ class suwp {
79
  return $taxonomies;
80
  }
81
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  function get_any_terms($args = array()) {
83
  $taxonomies = get_taxonomies(array('public' => true));
84
  return get_terms($taxonomies, $args);
@@ -141,10 +153,11 @@ class suwp {
141
  }
142
 
143
  function get_edit_term_link($id, $taxonomy) {
144
- if ($taxonomy == 'category')
145
- return admin_url("categories.php?action=edit&cat_ID=$id");
146
- else
147
  return get_edit_tag_link($id, $taxonomy);
 
 
148
  }
149
 
150
  function get_all_the_terms($id = 0) {
79
  return $taxonomies;
80
  }
81
 
82
+ function get_object_taxonomies($post_type) {
83
+ $taxonomies = get_object_taxonomies($post_type, 'objects');
84
+ $taxonomies = wp_filter_object_list($taxonomies, array('public' => true, 'show_ui' => true));
85
+ return $taxonomies;
86
+ }
87
+
88
+ function get_object_taxonomy_names($post_type) {
89
+ $taxonomies = get_object_taxonomies($post_type, 'objects');
90
+ $taxonomies = wp_filter_object_list($taxonomies, array('public' => true, 'show_ui' => true), 'and', 'name');
91
+ return $taxonomies;
92
+ }
93
+
94
  function get_any_terms($args = array()) {
95
  $taxonomies = get_taxonomies(array('public' => true));
96
  return get_terms($taxonomies, $args);
153
  }
154
 
155
  function get_edit_term_link($id, $taxonomy) {
156
+ $tax_obj = get_taxonomy($taxonomy);
157
+ if ($tax_obj->show_ui)
 
158
  return get_edit_tag_link($id, $taxonomy);
159
+ else
160
+ return false;
161
  }
162
 
163
  function get_all_the_terms($id = 0) {
modules/class.su-module.php CHANGED
@@ -1047,12 +1047,21 @@ class SU_Module {
1047
  * @param array $fields The array of meta fields that the user can edit with the tables.
1048
  */
1049
  function get_taxmeta_edit_tabs($fields) {
1050
- $types = suwp::get_taxonomies();
1051
 
1052
  //Turn the types array into a tabs array
1053
  $tabs = array();
1054
- foreach ($types as $name => $type)
1055
- $tabs[$type->label] = array('meta_edit_tab', 'term', sustr::preg_filter('a-z0-9', strtolower($type->label)), $name, __('Name', 'seo-ultimate'), $fields);
 
 
 
 
 
 
 
 
 
1056
  return $tabs;
1057
  }
1058
 
@@ -1202,7 +1211,12 @@ class SU_Module {
1202
 
1203
  $view_url = su_esc_attr($view_url);
1204
  $edit_url = su_esc_attr($edit_url);
1205
- $actions = sprintf('<a href="%s">%s</a> | <a href="%s">%s</a>', $view_url, __('View', 'seo-ultimate'), $edit_url, __('Edit', 'seo-ultimate'));
 
 
 
 
 
1206
  $cells = compact('actions', 'id', 'name');
1207
 
1208
  //Get meta field cells
@@ -1627,7 +1641,10 @@ class SU_Module {
1627
  //Save checkbox settings after form submission
1628
  if ($this->is_action('update')) {
1629
  foreach ($checkboxes as $name => $desc) {
1630
- $this->update_setting($name, $_POST[$name] == '1');
 
 
 
1631
 
1632
  if (strpos($desc, '%d') !== false) {
1633
  $name .= '_value';
@@ -1883,7 +1900,7 @@ class SU_Module {
1883
  if (isset($defaults[$id])) {
1884
  $default = su_esc_editable_html($defaults[$id]);
1885
  echo "onkeyup=\"javascript:su_textbox_value_changed(this, '$default', '{$id}_reset')\" />";
1886
- echo "&nbsp;<a href=\"javascript:void(0)\" id=\"{$id}_reset\" onclick=\"javascript:su_reset_textbox('$id', '$default', '$resetmessage', this)\"";
1887
  if ($default == $value) echo ' class="hidden"';
1888
  echo ">";
1889
  _e('Reset', 'seo-ultimate');
1047
  * @param array $fields The array of meta fields that the user can edit with the tables.
1048
  */
1049
  function get_taxmeta_edit_tabs($fields) {
1050
+ $types = get_taxonomies(array('public' => true), 'objects');
1051
 
1052
  //Turn the types array into a tabs array
1053
  $tabs = array();
1054
+ foreach ($types as $name => $type) {
1055
+ if ($type->labels->name) {
1056
+
1057
+ $label = $type->labels->name;
1058
+ if ($label == _x( 'Format', 'post format' ))
1059
+ $label = __('Post Format Archives', 'seo-ultimate');
1060
+
1061
+ $tabs[$label] = array('meta_edit_tab', 'term', sustr::preg_filter('a-z0-9', strtolower($label)), $name, $type->labels->singular_name, $fields);
1062
+
1063
+ }
1064
+ }
1065
  return $tabs;
1066
  }
1067
 
1211
 
1212
  $view_url = su_esc_attr($view_url);
1213
  $edit_url = su_esc_attr($edit_url);
1214
+
1215
+ $actions = array(sprintf('<a href="%s">%s</a>', $view_url, __('View', 'seo-ultimate')));
1216
+ if ($edit_url)
1217
+ $actions[] = sprintf('<a href="%s">%s</a>', $edit_url, __('Edit', 'seo-ultimate'));
1218
+ $actions = implode(' | ', $actions);
1219
+
1220
  $cells = compact('actions', 'id', 'name');
1221
 
1222
  //Get meta field cells
1641
  //Save checkbox settings after form submission
1642
  if ($this->is_action('update')) {
1643
  foreach ($checkboxes as $name => $desc) {
1644
+ $new_value = isset($_POST[$name]) ? ($_POST[$name] == '1') : false;
1645
+ $this->update_setting($name, $new_value);
1646
+
1647
+ if (is_array($desc)) $desc = isset($desc['description']) ? $desc['description'] : '';
1648
 
1649
  if (strpos($desc, '%d') !== false) {
1650
  $name .= '_value';
1900
  if (isset($defaults[$id])) {
1901
  $default = su_esc_editable_html($defaults[$id]);
1902
  echo "onkeyup=\"javascript:su_textbox_value_changed(this, '$default', '{$id}_reset')\" />";
1903
+ echo "&nbsp;<a href=\"#\" id=\"{$id}_reset\" onclick=\"javascript:su_reset_textbox('$id', '$default', '$resetmessage', this); return false;\"";
1904
  if ($default == $value) echo ' class="hidden"';
1905
  echo ">";
1906
  _e('Reset', 'seo-ultimate');
modules/meta/meta-descriptions.php CHANGED
@@ -90,7 +90,8 @@ class SU_MetaDescriptions extends SU_Module {
90
  } elseif (is_category() || is_tag() || is_tax()) {
91
  global $wp_query;
92
  $tax_descriptions = $this->get_setting('taxonomy_descriptions');
93
- $desc = $tax_descriptions[$wp_query->get_queried_object_id()];
 
94
  }
95
 
96
  //Do we have a description? If so, output it.
90
  } elseif (is_category() || is_tag() || is_tax()) {
91
  global $wp_query;
92
  $tax_descriptions = $this->get_setting('taxonomy_descriptions');
93
+ $tax_id = $wp_query->get_queried_object_id();
94
+ $desc = isset($tax_descriptions[$tax_id]) ? $tax_descriptions[$tax_id] : '';
95
  }
96
 
97
  //Do we have a description? If so, output it.
modules/modules.js CHANGED
@@ -2,6 +2,7 @@ function su_reset_textbox(id, d, m, e) {
2
  if (confirm(m+"\n\n"+d)) {
3
  document.getElementById(id).value=d;
4
  e.className='hidden';
 
5
  }
6
  }
7
 
@@ -21,4 +22,21 @@ function su_toggle_blind(id) {
21
  }
22
 
23
  return false;
24
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if (confirm(m+"\n\n"+d)) {
3
  document.getElementById(id).value=d;
4
  e.className='hidden';
5
+ su_enable_unload_confirm();
6
  }
7
  }
8
 
22
  }
23
 
24
  return false;
25
+ }
26
+
27
+ function su_enable_unload_confirm() {
28
+ window.onbeforeunload = su_confirm_unload_message;
29
+ }
30
+
31
+ function su_disable_unload_confirm() {
32
+ window.onbeforeunload = null;
33
+ }
34
+
35
+ function su_confirm_unload_message() {
36
+ return suModulesModulesL10n.unloadConfirmMessage;
37
+ }
38
+
39
+ jQuery(document).ready(function() {
40
+ jQuery('input, textarea, select', 'div.su-module').change(su_enable_unload_confirm);
41
+ jQuery('form#su-admin-form').submit(su_disable_unload_confirm);
42
+ });
modules/more-links/more-links.php CHANGED
@@ -35,7 +35,7 @@ class SU_MoreLinks extends SU_Module {
35
  $default = $this->get_setting('default');
36
 
37
  if (strlen($newtext = trim($this->get_postmeta('morelinktext'))) || strlen(trim($newtext = $default))) {
38
- $newtext = str_replace('{post}', wp_specialchars(get_the_title()), $newtext);
39
  $link = str_replace("$text</a>", "$newtext</a>", $link);
40
  }
41
 
35
  $default = $this->get_setting('default');
36
 
37
  if (strlen($newtext = trim($this->get_postmeta('morelinktext'))) || strlen(trim($newtext = $default))) {
38
+ $newtext = str_replace('{post}', su_esc_html(get_the_title()), $newtext);
39
  $link = str_replace("$text</a>", "$newtext</a>", $link);
40
  }
41
 
modules/titles/titles.php CHANGED
@@ -102,7 +102,7 @@ class SU_Titles extends SU_Module {
102
  }
103
 
104
  function should_rewrite_title() {
105
- return (!is_admin() && !is_feed() && strlen(strval($this->get_title_format())) > 0);
106
  }
107
 
108
  function before_header() {
@@ -146,7 +146,7 @@ class SU_Titles extends SU_Module {
146
 
147
  //Get format
148
  if (!$this->should_rewrite_title()) return '';
149
- $format = $this->get_title_format();
150
 
151
  //Load post/page titles
152
  $post_id = 0;
102
  }
103
 
104
  function should_rewrite_title() {
105
+ return (!is_admin() && !is_feed());
106
  }
107
 
108
  function before_header() {
146
 
147
  //Get format
148
  if (!$this->should_rewrite_title()) return '';
149
+ if (!($format = $this->get_title_format())) return '';
150
 
151
  //Load post/page titles
152
  $post_id = 0;
plugin/class.seo-ultimate.php CHANGED
@@ -653,17 +653,17 @@ class SEO_Ultimate {
653
  //Put it all into an array
654
  $data = array(
655
  'time' => time()
656
- , 'ip_address' => $_SERVER['REMOTE_ADDR']
657
- , 'user_agent' => $_SERVER['HTTP_USER_AGENT']
658
  , 'url' => $url
659
  , 'redirect_url' => $redirect_url
660
  , 'redirect_trigger' => $this->hit_redirect_trigger
661
- , 'referer' => $_SERVER['HTTP_REFERER']
662
  , 'status_code' => $status_code
663
  );
664
 
665
  //We don't want to overwrite a redirect URL if it's already been logged
666
- if (strlen($this->hit['redirect_url']))
667
  $data['redirect_url'] = $this->hit['redirect_url'];
668
 
669
  //Put the hit data into our variable.
@@ -926,7 +926,9 @@ class SEO_Ultimate {
926
  //We're viewing a module page, so print links to the CSS/JavaScript files loaded for all modules
927
  if (!$outputted_module_files) {
928
  $this->queue_css('modules', 'modules');
929
- $this->queue_js ('modules', 'modules');
 
 
930
  $outputted_module_files = true;
931
  }
932
 
@@ -968,8 +970,8 @@ class SEO_Ultimate {
968
  *
969
  * @param string $relurl The URL to the JavaScript file, relative to the plugin directory.
970
  */
971
- function queue_js($reldir, $filename) {
972
- $this->queue_file($reldir, $filename, '.js', 'wp_enqueue_script');
973
  }
974
 
975
  /**
@@ -977,14 +979,17 @@ class SEO_Ultimate {
977
  *
978
  * @since 2.1
979
  */
980
- function queue_file($reldir, $filename, $ext, $func) {
981
  if (!function_exists($func)) return;
982
  $reldir = untrailingslashit($reldir);
983
  $dirid = str_replace('/', '-', $reldir);
984
  $relurl = $reldir . '/';
985
  $file = sustr::endwith($filename, $ext);
986
  if (file_exists($this->plugin_dir_path.$relurl.$file))
987
- $func("su-$dirid-$filename", $this->plugin_dir_url.$relurl.$file, array(), SU_VERSION);
 
 
 
988
  }
989
 
990
  /**
653
  //Put it all into an array
654
  $data = array(
655
  'time' => time()
656
+ , 'ip_address' => isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : ''
657
+ , 'user_agent' => isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : ''
658
  , 'url' => $url
659
  , 'redirect_url' => $redirect_url
660
  , 'redirect_trigger' => $this->hit_redirect_trigger
661
+ , 'referer' => isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : ''
662
  , 'status_code' => $status_code
663
  );
664
 
665
  //We don't want to overwrite a redirect URL if it's already been logged
666
+ if (!empty($this->hit['redirect_url']))
667
  $data['redirect_url'] = $this->hit['redirect_url'];
668
 
669
  //Put the hit data into our variable.
926
  //We're viewing a module page, so print links to the CSS/JavaScript files loaded for all modules
927
  if (!$outputted_module_files) {
928
  $this->queue_css('modules', 'modules');
929
+ $this->queue_js ('modules', 'modules', array('jquery'), array(
930
+ 'unloadConfirmMessage' => __("It looks like you made changes to the settings of this SEO Ultimate module. If you leave before saving, those changes will be lost.", 'seo-ultimate')
931
+ ));
932
  $outputted_module_files = true;
933
  }
934
 
970
  *
971
  * @param string $relurl The URL to the JavaScript file, relative to the plugin directory.
972
  */
973
+ function queue_js($reldir, $filename, $deps=array(), $l10n=array()) {
974
+ $this->queue_file($reldir, $filename, '.js', 'wp_enqueue_script', $deps, $l10n);
975
  }
976
 
977
  /**
979
  *
980
  * @since 2.1
981
  */
982
+ function queue_file($reldir, $filename, $ext, $func, $deps=array(), $l10n=array()) {
983
  if (!function_exists($func)) return;
984
  $reldir = untrailingslashit($reldir);
985
  $dirid = str_replace('/', '-', $reldir);
986
  $relurl = $reldir . '/';
987
  $file = sustr::endwith($filename, $ext);
988
  if (file_exists($this->plugin_dir_path.$relurl.$file))
989
+ $func("su-$dirid-$filename", $this->plugin_dir_url.$relurl.$file, $deps, SU_VERSION);
990
+
991
+ if (count($l10n))
992
+ wp_localize_script("su-$dirid-$filename", sustr::camel_case("su $dirid $filename l10n"), $l10n);
993
  }
994
 
995
  /**
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, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.0
5
  Tested up to: 3.1
6
- Stable tag: 5.6.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
 
@@ -11,11 +11,11 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
11
 
12
  = Recent Releases =
13
 
 
14
  * Version 5.6 adds the Nofollow Manager module
15
  * Version 5.5 adds noindex/nofollow mass-editing for categories/tags/terms
16
  * Version 5.4 adds noindex/nofollow mass-editing for posts/pages
17
  * Version 5.3 adds meta keyword auto-generation from frequently-used words
18
- * Version 5.2 adds meta description mass-editing for categories/tags/terms
19
 
20
  = Features =
21
 
@@ -23,25 +23,25 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
23
 
24
  * **Title Tag Rewriter**
25
  * Out-of-the-box functionality puts your post titles at the beginning of the `<title>` tag for improved keyword SEO.
26
- * Easily override the entire `<title>` tag contents for any individual post, page, attachment, category, or post tag on your blog. Also supports custom post types.
27
  * Customize your homepage's `<title>` tag.
28
  * Format the `<title>` tags of posts, pages, categories, tags, archives, search results, and more!
29
 
30
- * **Meta Description Editor** -- UPDATED in Version 5.2
31
- * Edit the `<meta>` description tags for posts, pages, and the homepage.
32
- * Increase SERP clickthrough rates by influence search engine result snippets.
33
  * Mass-editor makes it a cinch to go back and add descriptions to old posts.
34
  * Use the `{excerpt::autogen}` variable to auto-generate meta descriptions if desired.
35
 
36
  * **Meta Keywords Editor** -- UPDATED in Version 5.3
37
  * Edit the `<meta>` keyword tags for posts, pages, and the homepage.
38
  * Easily specify global keywords that are applied across the entire site.
39
- * Go back and edit old posts' keywords with the mass-editor.
40
  * Automatically generate meta keywords based on categories, tags, custom taxonomy terms, and frequently-used words.
41
 
42
  * **Meta Robot Tags Editor** -- UPDATED in Version 5.5
43
  * Add the `<meta name="robots" content="noindex,follow" />` tag to archives, comment feeds, the login page, and more.
44
- * Set meta robots tags (index/noindex and follow/nofollow) for each individual post/page.
45
  * Avoid duplicate content SEO issues with the recommended noindex settings (see built-in module documentation for details).
46
  * Give instructions to search engine spiders if desired (`noodp`, `noydir`, and `noarchive`).
47
 
@@ -88,12 +88,11 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
88
  * Automatically link phrases in your posts/pages to other posts/pages or to custom URLs.
89
  * Exclude specific posts/pages from having links added to them, if desired (e.g. contact pages, the homepage, etc.).
90
  * Use the power of anchor text to boost your internal ranking SEO paradigm.
91
- * Control the maximum number of autolinks added to each post/page.
92
  * Apply the nofollow attribute on a per-link basis. (Perfect for automatic affiliate links.)
93
  * Import/export your links as CSV files.
94
  * Create links pointing to draft posts that will auto-enable when the post is published!
95
- * Build internal links to your posts from within the WordPress post editor!
96
- * Use "Instant Post Propulsion" technology to automatically link your old posts to new ones.
97
 
98
  * **Code Inserter**
99
  * Easily insert custom HTML into your site's `<head>` tag, footer, or item content.
@@ -120,7 +119,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
120
  * Link masks provide a modern replacement for the deprecated, nofollow-based "PageRank Sculpting" technique.
121
  * Perfect for affiliate marketers and SEO-savvy bloggers.
122
 
123
- * **Nofollow Manager**
124
  * Lets you maintain `rel="nofollow"` settings when migrating from other SEO plugins
125
 
126
  * **Settings Manager**
@@ -230,8 +229,18 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
230
 
231
  == Changelog ==
232
 
 
 
 
 
 
 
 
 
 
233
  = Version 5.6.2 (June 1, 2011) =
234
  * Bugfix: Fixed bug that stopped settings from being saved (introduced in 5.6.1)
 
235
  * Bugfix: Fixed more errors that appeared when WP_DEBUG mode was enabled
236
 
237
  = Version 5.6.1 (May 31, 2011) =
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.0
5
  Tested up to: 3.1
6
+ Stable tag: 5.7
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
11
 
12
  = Recent Releases =
13
 
14
+ * Version 5.7 adds mass-editing for post format archives
15
  * Version 5.6 adds the Nofollow Manager module
16
  * Version 5.5 adds noindex/nofollow mass-editing for categories/tags/terms
17
  * Version 5.4 adds noindex/nofollow mass-editing for posts/pages
18
  * Version 5.3 adds meta keyword auto-generation from frequently-used words
 
19
 
20
  = Features =
21
 
23
 
24
  * **Title Tag Rewriter**
25
  * Out-of-the-box functionality puts your post titles at the beginning of the `<title>` tag for improved keyword SEO.
26
+ * Easily override the entire `<title>` tag contents for any individual post, page, attachment, category, post tag, or post format archive on your blog. Also supports custom post types and custom taxonomies.
27
  * Customize your homepage's `<title>` tag.
28
  * Format the `<title>` tags of posts, pages, categories, tags, archives, search results, and more!
29
 
30
+ * **Meta Description Editor**
31
+ * Edit the `<meta>` description tags for posts, pages, attachments, categories, tags, post format archives, and the homepage.
32
+ * Increase SERP clickthrough rates by influencing search engine result snippets.
33
  * Mass-editor makes it a cinch to go back and add descriptions to old posts.
34
  * Use the `{excerpt::autogen}` variable to auto-generate meta descriptions if desired.
35
 
36
  * **Meta Keywords Editor** -- UPDATED in Version 5.3
37
  * Edit the `<meta>` keyword tags for posts, pages, and the homepage.
38
  * Easily specify global keywords that are applied across the entire site.
39
+ * Go back and edit old posts' and pages' keywords with the mass-editor.
40
  * Automatically generate meta keywords based on categories, tags, custom taxonomy terms, and frequently-used words.
41
 
42
  * **Meta Robot Tags Editor** -- UPDATED in Version 5.5
43
  * Add the `<meta name="robots" content="noindex,follow" />` tag to archives, comment feeds, the login page, and more.
44
+ * Set meta robots tags (index/noindex and follow/nofollow) for each individual post, page, category, tag, and post type archive on your blog. Also supports custom post types and custom taxonomies.
45
  * Avoid duplicate content SEO issues with the recommended noindex settings (see built-in module documentation for details).
46
  * Give instructions to search engine spiders if desired (`noodp`, `noydir`, and `noarchive`).
47
 
88
  * Automatically link phrases in your posts/pages to other posts/pages or to custom URLs.
89
  * Exclude specific posts/pages from having links added to them, if desired (e.g. contact pages, the homepage, etc.).
90
  * Use the power of anchor text to boost your internal ranking SEO paradigm.
91
+ * Control the maximum number of autolinks added to each post/page as well as the number of times an anchor is linked per page.
92
  * Apply the nofollow attribute on a per-link basis. (Perfect for automatic affiliate links.)
93
  * Import/export your links as CSV files.
94
  * Create links pointing to draft posts that will auto-enable when the post is published!
95
+ * Build internal links to your posts from within the WordPress post editor! Use "Instant Post Propulsion" technology to automatically link your old posts to new ones.
 
96
 
97
  * **Code Inserter**
98
  * Easily insert custom HTML into your site's `<head>` tag, footer, or item content.
119
  * Link masks provide a modern replacement for the deprecated, nofollow-based "PageRank Sculpting" technique.
120
  * Perfect for affiliate marketers and SEO-savvy bloggers.
121
 
122
+ * **Nofollow Manager** -- NEW in Version 5.6
123
  * Lets you maintain `rel="nofollow"` settings when migrating from other SEO plugins
124
 
125
  * **Settings Manager**
229
 
230
  == Changelog ==
231
 
232
+ = Version 5.7 (June 2, 2011) =
233
+ * Feature: Title Tag Rewriter, Meta Descriptions Editor, and Meta Robot Tags Editor now officially support mass-editing post format archives (requires WordPress 3.1 or later)
234
+ * Feature: SEO Ultimate now alerts users when they're about to leave a module admin page that has unsaved changes
235
+ * Improvement: Custom taxonomy mass-editors now support taxonomies that are registered only with pages or custom post types
236
+ * Improvement: Taxonomies registered without `show_ui` support no longer have "Edit" links in the mass-editors
237
+ * Bugfix: Fixed the mass-editors' category edit links, which broke starting with WordPress 3.0
238
+ * Bugfix: Fixed a bug that hindered Title Tag Rewriter from rewriting custom taxonomy archives' `<title>` tags
239
+ * Bugfix: Fixed more errors that appeared when WP_DEBUG mode was enabled
240
+
241
  = Version 5.6.2 (June 1, 2011) =
242
  * Bugfix: Fixed bug that stopped settings from being saved (introduced in 5.6.1)
243
+ * Bugfix: Fixed bug that disabled mass-editors (introduced in 5.6.1)
244
  * Bugfix: Fixed more errors that appeared when WP_DEBUG mode was enabled
245
 
246
  = Version 5.6.1 (May 31, 2011) =
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: 5.6.2
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 5.6.2
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.0');
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', '5.6.2');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/5.6.2');
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: 5.7
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 5.7
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', '5.7');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/5.7');
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 5.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
- "POT-Creation-Date: 2011-05-28 00:59:59+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,277 +19,78 @@ msgid ""
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
- #. #-#-#-#-# plugin.pot (SEO Ultimate 5.6) #-#-#-#-#
23
- #. Plugin Name of the plugin/theme
24
- #: plugin/class.seo-ultimate.php:741 modules/settings/settings.php:14
25
- msgid "SEO Ultimate"
26
- msgstr ""
27
-
28
- #: plugin/class.seo-ultimate.php:741
29
- msgid "SEO"
30
- msgstr ""
31
-
32
- #: plugin/class.seo-ultimate.php:1019
33
- msgid "SEO Settings Help"
34
- msgstr ""
35
-
36
- #: plugin/class.seo-ultimate.php:1021
37
- msgid "The SEO Settings box lets you customize these settings:"
38
- msgstr ""
39
-
40
- #: plugin/class.seo-ultimate.php:1023
41
- msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
42
- msgstr ""
43
-
44
- #: plugin/class.seo-ultimate.php:1078
45
- msgid ""
46
- "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
47
- "1$s to avoid plugin conflicts."
48
- msgstr ""
49
-
50
- #: plugin/class.seo-ultimate.php:1119
51
- msgid "new feature"
52
- msgstr ""
53
-
54
- #: plugin/class.seo-ultimate.php:1119
55
- msgid "new features"
56
- msgstr ""
57
-
58
- #: plugin/class.seo-ultimate.php:1120
59
- msgid "bugfix"
60
- msgstr ""
61
-
62
- #: plugin/class.seo-ultimate.php:1120
63
- msgid "bugfixes"
64
- msgstr ""
65
-
66
- #: plugin/class.seo-ultimate.php:1121
67
- msgid "improvement"
68
- msgstr ""
69
-
70
- #: plugin/class.seo-ultimate.php:1121
71
- msgid "improvements"
72
- msgstr ""
73
-
74
- #: plugin/class.seo-ultimate.php:1122
75
- msgid "security fix"
76
- msgstr ""
77
-
78
- #: plugin/class.seo-ultimate.php:1122
79
- msgid "security fixes"
80
- msgstr ""
81
-
82
- #: plugin/class.seo-ultimate.php:1153
83
- msgid "%d %s"
84
- msgstr ""
85
-
86
- #: plugin/class.seo-ultimate.php:1159
87
- msgid "Upgrade now to get %s. %s."
88
- msgstr ""
89
-
90
- #: plugin/class.seo-ultimate.php:1161
91
- msgid "View changelog"
92
- msgstr ""
93
-
94
- #: plugin/class.seo-ultimate.php:1228 modules/settings/uninstall.php:18
95
- msgid "Uninstall"
96
- msgstr ""
97
-
98
- #: plugin/class.seo-ultimate.php:1248
99
- msgid "Active Modules: "
100
- msgstr ""
101
-
102
- #: plugin/class.seo-ultimate.php:1309
103
  msgid ""
104
- "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
105
- "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
106
- "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
107
- "to everyone."
108
- msgstr ""
109
-
110
- #: plugin/class.seo-ultimate.php:1419
111
- msgid "SEO Settings"
112
- msgstr ""
113
-
114
- #: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
115
- msgid "%s and %s"
116
- msgstr ""
117
-
118
- #: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
119
- msgid ", "
120
- msgstr ""
121
-
122
- #: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
123
- msgid "%s, and %s"
124
- msgstr ""
125
-
126
- #: plugin/class.su-installer.php:9
127
- msgid "Package not available."
128
- msgstr ""
129
-
130
- #: plugin/class.su-installer.php:12
131
- msgid "Removing the current version of the plugin&#8230;"
132
- msgstr ""
133
-
134
- #: plugin/class.su-installer.php:13
135
- msgid "Could not remove the current version of the plugin."
136
- msgstr ""
137
-
138
- #: plugin/class.su-installer.php:17
139
- msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
140
- msgstr ""
141
-
142
- #: plugin/class.su-installer.php:18
143
- msgid "Unpacking the downgrade&#8230;"
144
- msgstr ""
145
-
146
- #: plugin/class.su-installer.php:19
147
- msgid "Installing the downgrade&#8230;"
148
- msgstr ""
149
-
150
- #: plugin/class.su-installer.php:20
151
- msgid "Plugin downgrade failed."
152
- msgstr ""
153
-
154
- #: plugin/class.su-installer.php:21
155
- msgid "Plugin downgraded successfully."
156
- msgstr ""
157
-
158
- #: plugin/class.su-installer.php:24
159
- msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
160
- msgstr ""
161
-
162
- #: plugin/class.su-installer.php:25
163
- msgid "Unpacking the reinstall&#8230;"
164
- msgstr ""
165
-
166
- #: plugin/class.su-installer.php:26
167
- msgid "Reinstalling the current version&#8230;"
168
- msgstr ""
169
-
170
- #: plugin/class.su-installer.php:27
171
- msgid "Plugin reinstallation failed."
172
- msgstr ""
173
-
174
- #: plugin/class.su-installer.php:28
175
- msgid "Plugin reinstalled successfully."
176
- msgstr ""
177
-
178
- #: plugin/class.su-installer.php:32
179
- msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
180
- msgstr ""
181
-
182
- #: plugin/class.su-installer.php:33
183
- msgid "Unpacking the upgrade&#8230;"
184
- msgstr ""
185
-
186
- #: plugin/class.su-installer.php:34
187
- msgid "Installing the upgrade&#8230;"
188
- msgstr ""
189
-
190
- #: plugin/class.su-installer.php:35
191
- msgid "Plugin upgrade failed."
192
- msgstr ""
193
-
194
- #: plugin/class.su-installer.php:36
195
- msgid "Plugin upgraded successfully."
196
- msgstr ""
197
-
198
- #: modules/more-links/more-links.php:12
199
- msgid "More Link Customizer"
200
- msgstr ""
201
-
202
- #: modules/more-links/more-links.php:27
203
- msgid "Default More Link Text"
204
- msgstr ""
205
-
206
- #: modules/more-links/more-links.php:48
207
- msgid "More Link Text:"
208
- msgstr ""
209
-
210
- #: modules/sds-blog/sds-blog.php:12
211
- msgid "Whitepapers"
212
- msgstr ""
213
-
214
- #: modules/sds-blog/sds-blog.php:13
215
- msgid "SEO Design Solutions Whitepapers"
216
  msgstr ""
217
 
218
- #. #-#-#-#-# plugin.pot (SEO Ultimate 5.6) #-#-#-#-#
219
- #. Author of the plugin/theme
220
- #: modules/sds-blog/sds-blog.php:49
221
- msgid "SEO Design Solutions"
222
  msgstr ""
223
 
224
- #: modules/sds-blog/sds-blog.php:50
225
- msgid ""
226
- "The search engine optimization articles below are loaded from the website of "
227
- "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
228
- "an article&#8217;s title to read it."
229
  msgstr ""
230
 
231
- #: modules/linkbox/linkbox.php:12
232
- msgid "Linkbox Inserter"
 
233
  msgstr ""
234
 
235
- #: modules/linkbox/linkbox.php:18
236
- msgid "Link to this post!"
237
  msgstr ""
238
 
239
- #: modules/linkbox/linkbox.php:45
240
- msgid "At the end of posts"
241
  msgstr ""
242
 
243
- #: modules/linkbox/linkbox.php:46
244
- msgid "At the end of pages"
245
  msgstr ""
246
 
247
- #: modules/linkbox/linkbox.php:47
248
- msgid "When called by the su_linkbox hook"
249
  msgstr ""
250
 
251
- #: modules/linkbox/linkbox.php:48
252
- msgid "Display linkboxes..."
253
  msgstr ""
254
 
255
- #: modules/linkbox/linkbox.php:49
256
- msgid "Linkbox HTML"
257
  msgstr ""
258
 
259
- #: modules/import-aiosp/import-aiosp.php:12
260
- msgid "Import from All in One SEO Pack"
261
  msgstr ""
262
 
263
- #: modules/import-aiosp/import-aiosp.php:13
264
- msgid "AIOSP Import"
265
  msgstr ""
266
 
267
- #: modules/import-aiosp/import-aiosp.php:15
268
- msgid "All in One SEO Pack"
269
  msgstr ""
270
 
271
- #: modules/import-aiosp/import-aiosp.php:16
272
- msgid "AIOSP"
273
  msgstr ""
274
 
275
- #: modules/import-aiosp/import-aiosp.php:17
276
- msgid "Import post data (custom title tags and meta tags)."
277
  msgstr ""
278
 
279
- #: modules/import-aiosp/import-aiosp.php:21
280
  msgid ""
281
- "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
282
- "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
283
- "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
284
- "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
285
- "to be currently installed or activated for the import to take place."
286
  msgstr ""
287
 
288
- #: modules/import-aiosp/import-aiosp.php:23
289
- msgid ""
290
- "The import tool can only move over data from AIOSP version 1.6 or above. If "
291
- "you use an older version of AIOSP, you should update to the latest version "
292
- "first and run AIOSP&#8217;s upgrade process."
293
  msgstr ""
294
 
295
  #: modules/class.su-importmodule.php:49
@@ -404,25 +205,199 @@ msgid_plural ""
404
  msgstr[0] ""
405
  msgstr[1] ""
406
 
407
- #: modules/titles/titles.php:12
408
- msgid "Title Tag Rewriter"
409
  msgstr ""
410
 
411
- #: modules/titles/titles.php:23 modules/meta/meta-descriptions.php:24
412
- msgid "Default Formats"
 
 
413
  msgstr ""
414
 
415
- #: modules/titles/titles.php:24 modules/404s/fofs-settings.php:17
416
- msgid "Settings"
417
  msgstr ""
418
 
419
- #: modules/titles/titles.php:30
420
- msgid "Title Tag"
421
  msgstr ""
422
 
423
- #: modules/titles/titles.php:43
424
- msgid ""
425
- "Convert lowercase category/tag names to title case when used in title tags."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
426
  msgstr ""
427
 
428
  #: modules/titles/titles.php:43
@@ -537,220 +512,188 @@ msgid ""
537
  "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
538
  msgstr ""
539
 
540
- #: modules/class.su-module.php:368
541
- msgid ""
542
- "(Note: This translated documentation was designed for an older version of "
543
- "SEO Ultimate and may be outdated.)"
544
  msgstr ""
545
 
546
- #: modules/class.su-module.php:971
547
- msgid "%s %s|Dropdown Title"
548
  msgstr ""
549
 
550
- #: modules/class.su-module.php:999
551
- msgid "%1$s | %2$s %3$s by %4$s"
 
 
552
  msgstr ""
553
 
554
- #: modules/class.su-module.php:1056
555
- msgid "Name"
556
  msgstr ""
557
 
558
- #: modules/class.su-module.php:1067
559
- msgid "Your site currently doesn&#8217;t have any public items of this type."
560
  msgstr ""
561
 
562
- #: modules/class.su-module.php:1150
563
- msgid "&laquo;"
564
  msgstr ""
565
 
566
- #: modules/class.su-module.php:1151
567
- msgid "&raquo;"
568
  msgstr ""
569
 
570
- #: modules/class.su-module.php:1158
571
- msgid "Displaying %s&#8211;%s of %s"
572
  msgstr ""
573
 
574
- #: modules/class.su-module.php:1171 modules/404s/fofs-log.php:116
575
- msgid "Actions"
 
576
  msgstr ""
577
 
578
- #: modules/class.su-module.php:1172
579
- msgid "ID"
580
  msgstr ""
581
 
582
- #: modules/class.su-module.php:1205
583
- msgid "View"
584
  msgstr ""
585
 
586
- #: modules/class.su-module.php:1205
587
- msgid "Edit"
588
  msgstr ""
589
 
590
- #: modules/class.su-module.php:1360
591
- msgid "Settings updated."
 
592
  msgstr ""
593
 
594
- #: modules/class.su-module.php:1381
595
- msgid "Save Changes"
596
  msgstr ""
597
 
598
- #: modules/class.su-module.php:1869
599
- msgid ""
600
- "Are you sure you want to replace the textbox contents with this default "
601
- "value?"
602
  msgstr ""
603
 
604
- #: modules/class.su-module.php:1884 modules/settings/settings-data.php:23
605
- msgid "Reset"
606
  msgstr ""
607
 
608
- #: modules/noindex/noindex.php:12
609
- msgid "Noindex Manager"
 
 
610
  msgstr ""
611
 
612
- #: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
613
- #: modules/noindex/noindex.php:67
614
- msgid "Noindex"
615
  msgstr ""
616
 
617
- #: modules/noindex/noindex.php:43 modules/meta/meta-keywords.php:32
618
- msgid "Default Values"
619
  msgstr ""
620
 
621
- #: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
622
- #: modules/autolinks/content-autolinks.php:204
623
- msgid "Nofollow"
624
  msgstr ""
625
 
626
- #: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
627
- msgid "Use default"
 
628
  msgstr ""
629
 
630
- #: modules/noindex/noindex.php:63
631
- msgid "noindex"
632
  msgstr ""
633
 
634
- #: modules/noindex/noindex.php:64
635
- msgid "index"
636
- msgstr ""
637
-
638
- #: modules/noindex/noindex.php:74
639
- msgid "nofollow"
640
- msgstr ""
641
-
642
- #: modules/noindex/noindex.php:75
643
- msgid "follow"
644
- msgstr ""
645
-
646
- #: modules/noindex/noindex.php:89
647
- msgid ""
648
- "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
649
- "block indexing of the entire site, regardless of which options are set below."
650
- msgstr ""
651
-
652
- #: modules/noindex/noindex.php:92
653
- msgid "Prevent indexing of..."
654
- msgstr ""
655
-
656
- #: modules/noindex/noindex.php:93
657
- msgid "Administration back-end pages"
658
- msgstr ""
659
-
660
- #: modules/noindex/noindex.php:94
661
- msgid "Author archives"
662
- msgstr ""
663
-
664
- #: modules/noindex/noindex.php:95
665
- msgid "Blog search pages"
666
  msgstr ""
667
 
668
- #: modules/noindex/noindex.php:96
669
- msgid "Category archives"
670
  msgstr ""
671
 
672
- #: modules/noindex/noindex.php:97
673
- msgid "Comment feeds"
674
  msgstr ""
675
 
676
- #: modules/noindex/noindex.php:98
677
- msgid "Comment subpages"
678
  msgstr ""
679
 
680
- #: modules/noindex/noindex.php:99
681
- msgid "Date-based archives"
682
  msgstr ""
683
 
684
- #: modules/noindex/noindex.php:100
685
- msgid "Subpages of the homepage"
686
  msgstr ""
687
 
688
- #: modules/noindex/noindex.php:101
689
- msgid "Tag archives"
690
  msgstr ""
691
 
692
- #: modules/noindex/noindex.php:102
693
- msgid "User login/registration pages"
694
  msgstr ""
695
 
696
- #: modules/noindex/noindex.php:165
697
- msgid "Noindex: Tell search engines not to index this webpage."
698
  msgstr ""
699
 
700
- #: modules/noindex/noindex.php:166
701
- msgid "Nofollow: Tell search engines not to spider links on this webpage."
702
  msgstr ""
703
 
704
- #: modules/noindex/noindex.php:167
705
- msgid "Meta Robots Tag:"
706
  msgstr ""
707
 
708
- #: modules/meta/meta-descriptions.php:12
709
- msgid "Meta Description Editor"
710
  msgstr ""
711
 
712
- #: modules/meta/meta-descriptions.php:13
713
- msgid "Meta Descriptions"
714
  msgstr ""
715
 
716
- #: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:33
717
- msgid "Blog Homepage"
718
  msgstr ""
719
 
720
- #: modules/meta/meta-descriptions.php:31
721
- msgid "Meta Description"
722
  msgstr ""
723
 
724
- #: modules/meta/meta-descriptions.php:46
725
- msgid "Post Description Format"
726
  msgstr ""
727
 
728
- #: modules/meta/meta-descriptions.php:53
729
- msgid "Blog Homepage Meta Description"
730
  msgstr ""
731
 
732
- #: modules/meta/meta-descriptions.php:55
733
- msgid "Use this blog&#8217s tagline as the default homepage description."
734
  msgstr ""
735
 
736
- #: modules/meta/meta-descriptions.php:56
737
- msgid "Default Value"
738
  msgstr ""
739
 
740
- #: modules/meta/meta-descriptions.php:108
741
- msgid "Meta Description:"
742
  msgstr ""
743
 
744
- #: modules/meta/meta-descriptions.php:111
745
- msgid "You&#8217;ve entered %s characters. Most search engines use up to 160."
746
  msgstr ""
747
 
748
- #: modules/meta/meta-descriptions.php:119
749
- msgid ""
750
- "<strong>Description</strong> &mdash; The value of the meta description tag. "
751
- "The description will often appear underneath the title in search engine "
752
- "results. Writing an accurate, attention-grabbing description for every post "
753
- "is important to ensuring a good search results clickthrough rate."
754
  msgstr ""
755
 
756
  #: modules/meta/meta-keywords.php:12
@@ -761,6 +704,14 @@ msgstr ""
761
  msgid "Meta Keywords"
762
  msgstr ""
763
 
 
 
 
 
 
 
 
 
764
  #: modules/meta/meta-keywords.php:55
765
  msgid "The %d most commonly-used words"
766
  msgstr ""
@@ -840,314 +791,334 @@ msgstr ""
840
  msgid "Don&#8217t cache or archive this site."
841
  msgstr ""
842
 
843
- #: modules/canonical/canonical.php:12
844
- msgid "Canonicalizer"
845
  msgstr ""
846
 
847
- #: modules/canonical/canonical.php:33
848
- msgid "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> tags."
849
  msgstr ""
850
 
851
- #: modules/canonical/canonical.php:34
852
- msgid "Redirect requests for nonexistent pagination."
853
  msgstr ""
854
 
855
- #: modules/link-nofollow/link-nofollow.php:12
856
- msgid "Nofollow Manager"
857
  msgstr ""
858
 
859
- #: modules/link-nofollow/link-nofollow.php:53
860
- msgid "Add the nofollow attribute to..."
861
  msgstr ""
862
 
863
- #: modules/link-nofollow/link-nofollow.php:55
864
- msgid "Adjacent post links"
865
  msgstr ""
866
 
867
- #: modules/link-nofollow/link-nofollow.php:56
868
- msgid "Category links (after posts)"
869
  msgstr ""
870
 
871
- #: modules/link-nofollow/link-nofollow.php:57
872
- msgid "Category links (in lists)"
873
  msgstr ""
874
 
875
- #: modules/link-nofollow/link-nofollow.php:58
876
- msgid "Comment anchor links"
877
  msgstr ""
878
 
879
- #: modules/link-nofollow/link-nofollow.php:59
880
- msgid "Comment feed links"
 
 
 
 
881
  msgstr ""
882
 
883
- #: modules/link-nofollow/link-nofollow.php:60
884
- msgid "Date-based archive links"
885
  msgstr ""
886
 
887
- #: modules/link-nofollow/link-nofollow.php:61
888
- msgid "Pagination navigation links (all)"
889
  msgstr ""
890
 
891
- #: modules/link-nofollow/link-nofollow.php:62
892
- msgid "Pagination navigation links (on blog home only)"
893
  msgstr ""
894
 
895
- #: modules/link-nofollow/link-nofollow.php:63
896
- msgid "&#8220;Read more&#8221; links"
897
  msgstr ""
898
 
899
- #: modules/link-nofollow/link-nofollow.php:64
900
- msgid "Registration link"
901
  msgstr ""
902
 
903
- #: modules/link-nofollow/link-nofollow.php:65
904
- msgid "Login link"
 
 
 
 
 
905
  msgstr ""
906
 
907
- #: modules/link-nofollow/link-nofollow.php:66
908
- msgid "Tag links (after posts)"
 
 
 
909
  msgstr ""
910
 
911
- #: modules/link-nofollow/link-nofollow.php:67
912
- msgid "Tag links (in lists and clouds)"
913
  msgstr ""
914
 
915
- #: modules/link-nofollow/link-nofollow.php:76
916
- msgid "When displaying page lists, nofollow links to this page"
917
  msgstr ""
918
 
919
- #: modules/link-nofollow/link-nofollow.php:76
920
- msgid "Nofollow:"
 
 
921
  msgstr ""
922
 
923
- #: modules/competition-queries/competition-queries.php:12
924
- msgid "Competition Researcher"
 
 
 
925
  msgstr ""
926
 
927
- #: modules/competition-queries/competition-queries.php:13
928
- msgid "Comp. Researcher"
929
  msgstr ""
930
 
931
- #: modules/competition-queries/competition-queries.php:17
 
 
 
 
932
  msgid ""
933
- "The Competition Researcher provides you with easy access to various search "
934
- "engine tools which you can use to research multiple search queries or URLs."
 
 
 
935
  msgstr ""
936
 
937
- #: modules/competition-queries/competition-queries.php:21
938
- msgid "Step 1: Choose Your Research Tool"
 
 
939
  msgstr ""
940
 
941
- #: modules/competition-queries/competition-queries.php:25
942
- msgid "Keywords"
943
  msgstr ""
944
 
945
- #: modules/competition-queries/competition-queries.php:25
946
- msgid "Normal Search"
947
  msgstr ""
948
 
949
- #: modules/competition-queries/competition-queries.php:25
950
- msgid "Find out how many pages contain the words in each query"
951
  msgstr ""
952
 
953
- #: modules/competition-queries/competition-queries.php:26
954
- msgid "Phrase Match"
955
  msgstr ""
956
 
957
- #: modules/competition-queries/competition-queries.php:26
958
- msgid ""
959
- "Find out how many &#8220;actual&#8221; pages are competing for each query"
960
  msgstr ""
961
 
962
- #: modules/competition-queries/competition-queries.php:27
963
- msgid "Allinanchor"
964
  msgstr ""
965
 
966
- #: modules/competition-queries/competition-queries.php:27
967
- msgid "Find out which sites have the most links for each query"
968
  msgstr ""
969
 
970
- #: modules/competition-queries/competition-queries.php:28
971
- msgid "Allintitle"
972
  msgstr ""
973
 
974
- #: modules/competition-queries/competition-queries.php:28
975
- msgid ""
976
- "Find out which sites have the highest relevance in the title for each query"
977
  msgstr ""
978
 
979
- #: modules/competition-queries/competition-queries.php:29
980
- msgid "Allintext"
981
  msgstr ""
982
 
983
- #: modules/competition-queries/competition-queries.php:29
984
- msgid "Find out which sites have the most relevant content/text on their pages"
985
  msgstr ""
986
 
987
- #: modules/competition-queries/competition-queries.php:30
988
- msgid "Allinurl"
989
  msgstr ""
990
 
991
- #: modules/competition-queries/competition-queries.php:30
992
- msgid ""
993
- "Find out which sites have the most relevant naming conventions for each "
994
- "keyword"
995
  msgstr ""
996
 
997
- #: modules/competition-queries/competition-queries.php:32
998
- msgid "URLs"
999
  msgstr ""
1000
 
1001
- #: modules/competition-queries/competition-queries.php:32
1002
- msgid "Site"
1003
  msgstr ""
1004
 
1005
- #: modules/competition-queries/competition-queries.php:32
1006
- msgid "Find out how many pages are indexed for each domain"
1007
  msgstr ""
1008
 
1009
- #: modules/competition-queries/competition-queries.php:33
1010
- #: modules/competition-queries/competition-queries.php:38
1011
- msgid "Inbound Links"
1012
  msgstr ""
1013
 
1014
- #: modules/competition-queries/competition-queries.php:33
1015
- msgid "Find out how many sites link to the domains"
1016
  msgstr ""
1017
 
1018
- #: modules/competition-queries/competition-queries.php:34
1019
- #: modules/competition-queries/competition-queries.php:38
1020
- msgid "Outbound Links"
1021
  msgstr ""
1022
 
1023
- #: modules/competition-queries/competition-queries.php:34
1024
- msgid "Find out how many sites the domains link to"
1025
  msgstr ""
1026
 
1027
- #: modules/competition-queries/competition-queries.php:56
1028
- msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
1029
  msgstr ""
1030
 
1031
- #: modules/competition-queries/competition-queries.php:58
1032
- msgid "(Type in one per line)"
1033
  msgstr ""
1034
 
1035
- #: modules/competition-queries/competition-queries.php:60
1036
- msgid "Step 3: Set Options and Submit"
1037
  msgstr ""
1038
 
1039
- #: modules/competition-queries/competition-queries.php:62
1040
- #: modules/site-keyword-queries/site-keyword-queries.php:28
1041
- msgid "Show 100 results per page"
1042
  msgstr ""
1043
 
1044
- #: modules/competition-queries/competition-queries.php:64
1045
- #: modules/site-keyword-queries/site-keyword-queries.php:30
1046
- msgid "Use Google&#8217;s minimal mode"
1047
  msgstr ""
1048
 
1049
- #: modules/competition-queries/competition-queries.php:70
1050
- #: modules/site-keyword-queries/site-keyword-queries.php:33
1051
- msgid "Submit"
1052
  msgstr ""
1053
 
1054
- #: modules/site-keyword-queries/site-keyword-queries.php:12
1055
- msgid "Internal Relevance Researcher"
 
 
1056
  msgstr ""
1057
 
1058
- #: modules/site-keyword-queries/site-keyword-queries.php:13
1059
- msgid "Int. Rel. Researcher"
1060
  msgstr ""
1061
 
1062
- #: modules/site-keyword-queries/site-keyword-queries.php:21
1063
- msgid "Step 1: Enter Keywords"
1064
  msgstr ""
1065
 
1066
- #: modules/site-keyword-queries/site-keyword-queries.php:23
1067
- msgid "(Type one keyword per line)"
1068
  msgstr ""
1069
 
1070
- #: modules/site-keyword-queries/site-keyword-queries.php:25
1071
- msgid "Step 2: Set Options and Submit"
1072
  msgstr ""
1073
 
1074
- #: modules/site-keyword-queries/site-keyword-queries.php:27
1075
- msgid "Put keywords in quotes"
1076
  msgstr ""
1077
 
1078
- #: modules/user-code/user-code.php:12
1079
- msgid "Code Inserter"
1080
  msgstr ""
1081
 
1082
- #: modules/user-code/user-code.php:27
1083
- msgid "Everywhere"
1084
  msgstr ""
1085
 
1086
- #: modules/user-code/user-code.php:34
1087
- msgid "&lt;head&gt; Tag"
1088
  msgstr ""
1089
 
1090
- #: modules/user-code/user-code.php:35
1091
- msgid "Before Item Content"
1092
  msgstr ""
1093
 
1094
- #: modules/user-code/user-code.php:36
1095
- msgid "After Item Content"
1096
  msgstr ""
1097
 
1098
- #: modules/user-code/user-code.php:37
1099
- msgid "Footer"
1100
  msgstr ""
1101
 
1102
- #: modules/user-code/user-code.php:51
1103
- msgid "Code Inserter module"
1104
  msgstr ""
1105
 
1106
- #: modules/modules/modules.php:12
1107
- msgid "Module Manager"
1108
  msgstr ""
1109
 
1110
- #: modules/modules/modules.php:13
1111
- msgid "Modules"
1112
  msgstr ""
1113
 
1114
- #: modules/modules/modules.php:37
1115
- msgid ""
1116
- "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
1117
- "&#8221; By default, most of these modules are listed in the &#8220;"
1118
- "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
1119
- "you can view documentation by clicking the tabs in the upper-right-hand "
1120
- "corner of your administration screen."
1121
  msgstr ""
1122
 
1123
- #: modules/modules/modules.php:39
1124
- msgid ""
1125
- "The Module Manager lets you disable or hide modules you don&#8217;t use. "
1126
- "You can also silence modules from displaying bubble alerts on the menu."
1127
  msgstr ""
1128
 
1129
- #: modules/modules/modules.php:45
1130
- msgid "Status"
1131
  msgstr ""
1132
 
1133
- #: modules/modules/modules.php:46
1134
- msgid "Module"
1135
  msgstr ""
1136
 
1137
- #: modules/modules/modules.php:59
1138
- msgid "Enabled"
1139
  msgstr ""
1140
 
1141
- #: modules/modules/modules.php:60
1142
- msgid "Silenced"
1143
  msgstr ""
1144
 
1145
- #: modules/modules/modules.php:61
1146
- msgid "Hidden"
1147
  msgstr ""
1148
 
1149
- #: modules/modules/modules.php:62
1150
- msgid "Disabled"
 
 
 
 
 
 
 
 
1151
  msgstr ""
1152
 
1153
  #: modules/files/files.php:14
@@ -1205,12 +1176,44 @@ msgid ""
1205
  "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1206
  msgstr ""
1207
 
1208
- #: modules/settings/settings.php:12
1209
- msgid "Plugin Settings"
1210
  msgstr ""
1211
 
1212
- #: modules/settings/settings.php:13
1213
- msgid "SEO Ultimate Plugin Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1214
  msgstr ""
1215
 
1216
  #: modules/settings/settings-data.php:16
@@ -1381,20 +1384,58 @@ msgstr ""
1381
  msgid "Restore Default Settings"
1382
  msgstr ""
1383
 
1384
- #: modules/settings/uninstall.php:17
1385
- msgid "Uninstaller"
1386
  msgstr ""
1387
 
1388
- #: modules/settings/uninstall.php:27
1389
- msgid ""
1390
- "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
1391
- "files."
1392
  msgstr ""
1393
 
1394
- #: modules/settings/uninstall.php:30
1395
- msgid ""
1396
- "Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
1397
- "your SEO Ultimate settings and cannot be undone."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1398
  msgstr ""
1399
 
1400
  #: modules/settings/uninstall.php:31
@@ -1421,26 +1462,6 @@ msgstr ""
1421
  msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1422
  msgstr ""
1423
 
1424
- #: modules/settings/global-settings.php:18
1425
- msgid "Global Settings"
1426
- msgstr ""
1427
-
1428
- #: modules/settings/global-settings.php:40
1429
- msgid "Enable nofollow&#8217;d attribution link"
1430
- msgstr ""
1431
-
1432
- #: modules/settings/global-settings.php:41
1433
- msgid "Enable attribution link CSS styling"
1434
- msgstr ""
1435
-
1436
- #: modules/settings/global-settings.php:42
1437
- msgid "Notify me about unnecessary active plugins"
1438
- msgstr ""
1439
-
1440
- #: modules/settings/global-settings.php:43
1441
- msgid "Insert comments around HTML code insertions"
1442
- msgstr ""
1443
-
1444
  #: modules/settings/install.php:18
1445
  msgid "Upgrade/Downgrade/Reinstall"
1446
  msgstr ""
@@ -1536,416 +1557,407 @@ msgstr ""
1536
  msgid "Upgrade to SEO Ultimate %s"
1537
  msgstr ""
1538
 
1539
- #: modules/404s/fofs.php:11
1540
- msgid "404 Monitor"
1541
- msgstr ""
1542
-
1543
- #: modules/404s/fofs-log.php:16
1544
- msgid "404 Monitor Log"
1545
- msgstr ""
1546
-
1547
- #: modules/404s/fofs-log.php:17
1548
- msgid "Log"
1549
- msgstr ""
1550
-
1551
- #: modules/404s/fofs-log.php:117
1552
- msgid "Hits"
1553
  msgstr ""
1554
 
1555
- #: modules/404s/fofs-log.php:118
1556
- msgid "URL with 404 Error"
1557
  msgstr ""
1558
 
1559
- #: modules/404s/fofs-log.php:119
1560
- msgid "Date of Most Recent Hit"
1561
  msgstr ""
1562
 
1563
- #: modules/404s/fofs-log.php:120
1564
- msgid "Referers"
1565
  msgstr ""
1566
 
1567
- #: modules/404s/fofs-log.php:121 modules/404s/fofs-log.php:224
1568
- msgid "User Agents"
1569
  msgstr ""
1570
 
1571
- #: modules/404s/fofs-log.php:137
1572
- msgid ""
1573
- "New 404 errors will not be recorded because 404 logging is disabled on the "
1574
- "Settings tab."
1575
  msgstr ""
1576
 
1577
- #: modules/404s/fofs-log.php:144
1578
- msgid "The log entry was successfully deleted."
1579
  msgstr ""
1580
 
1581
- #: modules/404s/fofs-log.php:146
1582
- msgid "This log entry has already been deleted."
1583
  msgstr ""
1584
 
1585
- #: modules/404s/fofs-log.php:155
1586
- msgid "The log was successfully cleared."
 
1587
  msgstr ""
1588
 
1589
- #: modules/404s/fofs-log.php:159
1590
- msgid "No 404 errors in the log."
 
1591
  msgstr ""
1592
 
1593
- #: modules/404s/fofs-log.php:183
1594
- msgid "Open URL in new window (will not be logged)"
1595
  msgstr ""
1596
 
1597
- #: modules/404s/fofs-log.php:184
1598
- msgid "Query Google for cached version of URL (opens in new window)"
1599
  msgstr ""
1600
 
1601
- #: modules/404s/fofs-log.php:185
1602
- msgid "Remove this URL from the log"
1603
  msgstr ""
1604
 
1605
- #: modules/404s/fofs-log.php:188
1606
- msgid "%s at %s"
1607
  msgstr ""
1608
 
1609
- #: modules/404s/fofs-log.php:192
1610
- msgid "View list of referring URLs"
1611
  msgstr ""
1612
 
1613
- #: modules/404s/fofs-log.php:193
1614
- msgid "View list of user agents"
 
 
1615
  msgstr ""
1616
 
1617
- #: modules/404s/fofs-log.php:203
1618
- msgid "Referring URLs"
1619
  msgstr ""
1620
 
1621
- #: modules/404s/fofs-log.php:204 modules/404s/fofs-log.php:225
1622
- msgid "Hide list"
1623
  msgstr ""
1624
 
1625
- #: modules/404s/fofs-log.php:255
1626
- msgid "Are you sure you want to delete all 404 log entries?"
1627
  msgstr ""
1628
 
1629
- #: modules/404s/fofs-log.php:257
1630
- msgid "Clear Log"
1631
  msgstr ""
1632
 
1633
- #: modules/404s/fofs-settings.php:16
1634
- msgid "404 Monitor Settings"
1635
  msgstr ""
1636
 
1637
- #: modules/404s/fofs-settings.php:37
1638
- msgid "Continue monitoring for new 404 errors"
1639
  msgstr ""
1640
 
1641
- #: modules/404s/fofs-settings.php:37
1642
- msgid "Monitoring Settings"
1643
  msgstr ""
1644
 
1645
- #: modules/404s/fofs-settings.php:39
1646
- msgid "Only log these types of 404 errors:"
1647
  msgstr ""
1648
 
1649
- #: modules/404s/fofs-settings.php:40
1650
- msgid "404s generated by search engine spiders"
1651
  msgstr ""
1652
 
1653
- #: modules/404s/fofs-settings.php:41
1654
- msgid "404s with referring URLs"
1655
  msgstr ""
1656
 
1657
- #: modules/404s/fofs-settings.php:42
1658
- msgid "Log Restrictions"
1659
  msgstr ""
1660
 
1661
- #: modules/404s/fofs-settings.php:43
1662
- msgid "Maximum Log Entries"
1663
  msgstr ""
1664
 
1665
- #: modules/404s/fofs-settings.php:44
1666
- msgid "URLs to Ignore"
1667
  msgstr ""
1668
 
1669
- #: modules/404s/fofs-settings.php:44
1670
- msgid "(Use * as wildcard)"
1671
  msgstr ""
1672
 
1673
- #: modules/slugs/slugs.php:12
1674
- msgid "Slug Optimizer"
1675
  msgstr ""
1676
 
1677
- #: modules/slugs/slugs.php:16
1678
- msgid "Words to Remove"
1679
  msgstr ""
1680
 
1681
- #: modules/internal-link-aliases/internal-link-aliases.php:20
1682
- msgid "Link Mask Generator"
1683
  msgstr ""
1684
 
1685
- #: modules/internal-link-aliases/internal-link-aliases.php:24
1686
- msgid "Alias Directory"
 
 
1687
  msgstr ""
1688
 
1689
- #: modules/internal-link-aliases/internal-link-aliases.php:43
1690
- msgid "Link Masks"
1691
  msgstr ""
1692
 
1693
- #: modules/internal-link-aliases/internal-link-aliases.php:46
1694
- #: modules/autolinks/content-autolinks.php:196
1695
- msgid "URL"
1696
  msgstr ""
1697
 
1698
- #: modules/internal-link-aliases/internal-link-aliases.php:46
1699
- msgid "Mask URL"
1700
  msgstr ""
1701
 
1702
- #: modules/internal-link-aliases/internal-link-aliases.php:66
1703
- msgid ""
1704
- "You can stop search engines from following a link by typing in a mask for "
1705
- "its URL."
1706
  msgstr ""
1707
 
1708
- #: modules/internal-link-aliases/internal-link-aliases.php:129
1709
- msgid "Added by Link Alias Generator (LAG) module"
1710
  msgstr ""
1711
 
1712
- #: modules/internal-link-aliases/internal-link-aliases.php:140
1713
- msgid "End LAG"
1714
  msgstr ""
1715
 
1716
- #: modules/rich-snippets/rich-snippets.php:12
1717
- msgid "Rich Snippet Creator"
1718
  msgstr ""
1719
 
1720
- #: modules/rich-snippets/rich-snippets.php:17
1721
- msgid ""
1722
- "Reviews\n"
1723
- "Review"
1724
  msgstr ""
1725
 
1726
- #: modules/rich-snippets/rich-snippets.php:28
1727
- msgid "Data Format"
1728
  msgstr ""
1729
 
1730
- #: modules/rich-snippets/rich-snippets.php:29
1731
- msgid "Categories/Tags That Indicate Reviews"
1732
  msgstr ""
1733
 
1734
- #: modules/rich-snippets/rich-snippets.php:37
1735
- msgid "Microformats (recommended)"
1736
  msgstr ""
1737
 
1738
- #: modules/rich-snippets/rich-snippets.php:43
1739
- msgid "HTML5 Microdata"
1740
  msgstr ""
1741
 
1742
- #: modules/rich-snippets/rich-snippets.php:49
1743
- msgid "RDFa"
1744
  msgstr ""
1745
 
1746
- #: modules/rich-snippets/rich-snippets.php:62
1747
- #: modules/rich-snippets/rich-snippets.php:218
1748
- msgid "Review"
1749
  msgstr ""
1750
 
1751
- #: modules/rich-snippets/rich-snippets.php:70
1752
- msgid "Star Rating"
 
 
 
 
 
 
 
1753
  msgstr ""
1754
 
1755
- #: modules/rich-snippets/rich-snippets.php:79
1756
- msgid "Review Author"
1757
  msgstr ""
1758
 
1759
- #: modules/rich-snippets/rich-snippets.php:85
1760
- msgid "Date Reviewed"
1761
  msgstr ""
1762
 
1763
- #: modules/rich-snippets/rich-snippets.php:217
1764
- #: modules/rich-snippets/rich-snippets.php:223
1765
- msgid "None"
1766
  msgstr ""
1767
 
1768
- #: modules/rich-snippets/rich-snippets.php:219
1769
- msgid "Rich Snippet Type:"
1770
  msgstr ""
1771
 
1772
- #: modules/rich-snippets/rich-snippets.php:224
1773
- msgid "0.5 stars"
 
 
1774
  msgstr ""
1775
 
1776
- #: modules/rich-snippets/rich-snippets.php:225
1777
- msgid "1 star"
1778
  msgstr ""
1779
 
1780
- #: modules/rich-snippets/rich-snippets.php:226
1781
- msgid "1.5 stars"
1782
  msgstr ""
1783
 
1784
- #: modules/rich-snippets/rich-snippets.php:227
1785
- msgid "2 stars"
1786
  msgstr ""
1787
 
1788
- #: modules/rich-snippets/rich-snippets.php:228
1789
- msgid "2.5 stars"
1790
  msgstr ""
1791
 
1792
- #: modules/rich-snippets/rich-snippets.php:229
1793
- msgid "3 stars"
1794
  msgstr ""
1795
 
1796
- #: modules/rich-snippets/rich-snippets.php:230
1797
- msgid "3.5 stars"
1798
  msgstr ""
1799
 
1800
- #: modules/rich-snippets/rich-snippets.php:231
1801
- msgid "4 stars"
1802
  msgstr ""
1803
 
1804
- #: modules/rich-snippets/rich-snippets.php:232
1805
- msgid "4.5 stars"
1806
  msgstr ""
1807
 
1808
- #: modules/rich-snippets/rich-snippets.php:233
1809
- msgid "5 stars"
1810
  msgstr ""
1811
 
1812
- #: modules/rich-snippets/rich-snippets.php:234
1813
- msgid "Star Rating for Reviewed Item:"
1814
  msgstr ""
1815
 
1816
- #: modules/sharing-buttons/sharing-buttons.php:12
1817
- msgid "Sharing Facilitator"
1818
  msgstr ""
1819
 
1820
- #: modules/sharing-buttons/sharing-buttons.php:22
1821
- msgid "Bookmark and Share"
1822
  msgstr ""
1823
 
1824
- #: modules/sharing-buttons/sharing-buttons.php:28
1825
- msgid "Providers"
1826
  msgstr ""
1827
 
1828
- #: modules/sharing-buttons/sharing-buttons.php:34
1829
- msgid "Which provider would you like to use for your sharing buttons?"
1830
  msgstr ""
1831
 
1832
- #: modules/sharing-buttons/sharing-buttons.php:36
1833
- msgid "None; disable sharing buttons"
1834
  msgstr ""
1835
 
1836
- #: modules/sharing-buttons/sharing-buttons.php:37
1837
- msgid "Use the ShareThis button"
1838
  msgstr ""
1839
 
1840
- #: modules/sharing-buttons/sharing-buttons.php:38
1841
- msgid "Use the AddThis button"
1842
  msgstr ""
1843
 
1844
- #: modules/autolinks/autolinks.php:11
1845
- msgid "Deeplink Juggernaut"
1846
  msgstr ""
1847
 
1848
- #: modules/autolinks/content-autolinks-settings.php:16
1849
- msgid "Content Deeplink Juggernaut Settings"
1850
  msgstr ""
1851
 
1852
- #: modules/autolinks/content-autolinks-settings.php:17
1853
- msgid "Content Link Settings"
1854
  msgstr ""
1855
 
1856
- #: modules/autolinks/content-autolinks-settings.php:21
1857
- msgid "Allow posts to link to themselves."
1858
  msgstr ""
1859
 
1860
- #: modules/autolinks/content-autolinks-settings.php:22
1861
- msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1862
  msgstr ""
1863
 
1864
- #: modules/autolinks/content-autolinks-settings.php:23
1865
  msgid ""
1866
- "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1867
- "etc."
1868
  msgstr ""
1869
 
1870
- #: modules/autolinks/content-autolinks.php:16
1871
- msgid "Content Deeplink Juggernaut"
1872
  msgstr ""
1873
 
1874
- #: modules/autolinks/content-autolinks.php:17
1875
- msgid "Content Links"
1876
  msgstr ""
1877
 
1878
- #: modules/autolinks/content-autolinks.php:100
1879
- msgid ""
1880
- "The Content Links section of Deeplink Juggernaut lets you automatically link "
1881
- "a certain word or phrase in your post/page content to a URL you specify."
1882
  msgstr ""
1883
 
1884
- #: modules/autolinks/content-autolinks.php:136
1885
- msgid "Edit Existing Links"
 
 
1886
  msgstr ""
1887
 
1888
- #: modules/autolinks/content-autolinks.php:140
1889
- msgid "Add a New Link"
1890
  msgstr ""
1891
 
1892
- #: modules/autolinks/content-autolinks.php:148
1893
- msgid "Anchor Text"
1894
  msgstr ""
1895
 
1896
- #: modules/autolinks/content-autolinks.php:149
1897
- msgid "Destination Type"
1898
  msgstr ""
1899
 
1900
- #: modules/autolinks/content-autolinks.php:150
1901
- msgid "Destination"
1902
  msgstr ""
1903
 
1904
- #: modules/autolinks/content-autolinks.php:151
1905
- msgid "Title Attribute"
1906
  msgstr ""
1907
 
1908
- #: modules/autolinks/content-autolinks.php:152
1909
- msgid "Options"
1910
  msgstr ""
1911
 
1912
- #: modules/autolinks/content-autolinks.php:154
1913
- msgid "Delete"
1914
  msgstr ""
1915
 
1916
- #: modules/autolinks/content-autolinks.php:196
1917
- msgid "Custom"
1918
  msgstr ""
1919
 
1920
- #: modules/autolinks/content-autolinks.php:197
1921
- msgid "Content Items"
1922
  msgstr ""
1923
 
1924
- #: modules/autolinks/content-autolinks.php:205
1925
- msgid "New window"
1926
  msgstr ""
1927
 
1928
- #: modules/autolinks/content-autolinks.php:269
1929
- msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
1930
  msgstr ""
1931
 
1932
- #: modules/autolinks/content-autolinks.php:270
1933
- msgid "Don&#8217;t add autolinks to anchor texts found in this post."
1934
  msgstr ""
1935
 
1936
- #: modules/autolinks/content-autolinks.php:270
1937
- msgid "Autolink Exclusion:"
 
 
 
 
1938
  msgstr ""
1939
 
1940
- #: modules/autolinks/content-autolinks.php:275
1941
- msgid ""
1942
- "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
1943
- "into this box, Deeplink Juggernaut will search for that anchor in all your "
1944
- "other posts and link it to this post. For example, if the post you&#8217;re "
1945
- "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
1946
- "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
1947
- "Deeplink Juggernaut will automatically build internal links to this post "
1948
- "with that anchor text (assuming other posts contain that text)."
1949
  msgstr ""
1950
 
1951
  #: includes/jlwp/functions.php:56
@@ -1972,7 +1984,7 @@ msgstr ""
1972
  msgid "Attachment"
1973
  msgstr ""
1974
 
1975
- #: includes/jlwp/functions.php:129
1976
  msgid "backup your database"
1977
  msgstr ""
1978
 
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEO Ultimate 5.7\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
+ "POT-Creation-Date: 2011-06-02 13:47:14+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:368
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:970
29
+ msgctxt "seo-ultimate"
30
+ msgid "%s %s|Dropdown Title"
 
31
  msgstr ""
32
 
33
+ #: modules/class.su-module.php:998
34
+ msgid "%1$s | %2$s %3$s by %4$s"
 
 
 
35
  msgstr ""
36
 
37
+ #: modules/class.su-module.php:1058
38
+ msgctxt "post format"
39
+ msgid "Format"
40
  msgstr ""
41
 
42
+ #: modules/class.su-module.php:1059
43
+ msgid "Post Format Archives"
44
  msgstr ""
45
 
46
+ #: modules/class.su-module.php:1075
47
+ msgid "Your site currently doesn&#8217;t have any public items of this type."
48
  msgstr ""
49
 
50
+ #: modules/class.su-module.php:1159
51
+ msgid "&laquo;"
52
  msgstr ""
53
 
54
+ #: modules/class.su-module.php:1160
55
+ msgid "&raquo;"
56
  msgstr ""
57
 
58
+ #: modules/class.su-module.php:1167
59
+ msgid "Displaying %s&#8211;%s of %s"
60
  msgstr ""
61
 
62
+ #: modules/class.su-module.php:1180 modules/404s/fofs-log.php:116
63
+ msgid "Actions"
64
  msgstr ""
65
 
66
+ #: modules/class.su-module.php:1181
67
+ msgid "ID"
68
  msgstr ""
69
 
70
+ #: modules/class.su-module.php:1215
71
+ msgid "View"
72
  msgstr ""
73
 
74
+ #: modules/class.su-module.php:1217
75
+ msgid "Edit"
76
  msgstr ""
77
 
78
+ #: modules/class.su-module.php:1379
79
+ msgid "Settings updated."
80
  msgstr ""
81
 
82
+ #: modules/class.su-module.php:1400
83
+ msgid "Save Changes"
84
  msgstr ""
85
 
86
+ #: modules/class.su-module.php:1890
87
  msgid ""
88
+ "Are you sure you want to replace the textbox contents with this default "
89
+ "value?"
 
 
 
90
  msgstr ""
91
 
92
+ #: modules/class.su-module.php:1906 modules/settings/settings-data.php:23
93
+ msgid "Reset"
 
 
 
94
  msgstr ""
95
 
96
  #: modules/class.su-importmodule.php:49
205
  msgstr[0] ""
206
  msgstr[1] ""
207
 
208
+ #: modules/rich-snippets/rich-snippets.php:12
209
+ msgid "Rich Snippet Creator"
210
  msgstr ""
211
 
212
+ #: modules/rich-snippets/rich-snippets.php:17
213
+ msgid ""
214
+ "Reviews\n"
215
+ "Review"
216
  msgstr ""
217
 
218
+ #: modules/rich-snippets/rich-snippets.php:28
219
+ msgid "Data Format"
220
  msgstr ""
221
 
222
+ #: modules/rich-snippets/rich-snippets.php:29
223
+ msgid "Categories/Tags That Indicate Reviews"
224
  msgstr ""
225
 
226
+ #: modules/rich-snippets/rich-snippets.php:37
227
+ msgid "Microformats (recommended)"
228
+ msgstr ""
229
+
230
+ #: modules/rich-snippets/rich-snippets.php:43
231
+ msgid "HTML5 Microdata"
232
+ msgstr ""
233
+
234
+ #: modules/rich-snippets/rich-snippets.php:49
235
+ msgid "RDFa"
236
+ msgstr ""
237
+
238
+ #: modules/rich-snippets/rich-snippets.php:62
239
+ #: modules/rich-snippets/rich-snippets.php:218
240
+ msgid "Review"
241
+ msgstr ""
242
+
243
+ #: modules/rich-snippets/rich-snippets.php:70
244
+ msgid "Star Rating"
245
+ msgstr ""
246
+
247
+ #: modules/rich-snippets/rich-snippets.php:79
248
+ msgid "Review Author"
249
+ msgstr ""
250
+
251
+ #: modules/rich-snippets/rich-snippets.php:85
252
+ msgid "Date Reviewed"
253
+ msgstr ""
254
+
255
+ #: modules/rich-snippets/rich-snippets.php:217
256
+ #: modules/rich-snippets/rich-snippets.php:223
257
+ msgid "None"
258
+ msgstr ""
259
+
260
+ #: modules/rich-snippets/rich-snippets.php:219
261
+ msgid "Rich Snippet Type:"
262
+ msgstr ""
263
+
264
+ #: modules/rich-snippets/rich-snippets.php:224
265
+ msgid "0.5 stars"
266
+ msgstr ""
267
+
268
+ #: modules/rich-snippets/rich-snippets.php:225
269
+ msgid "1 star"
270
+ msgstr ""
271
+
272
+ #: modules/rich-snippets/rich-snippets.php:226
273
+ msgid "1.5 stars"
274
+ msgstr ""
275
+
276
+ #: modules/rich-snippets/rich-snippets.php:227
277
+ msgid "2 stars"
278
+ msgstr ""
279
+
280
+ #: modules/rich-snippets/rich-snippets.php:228
281
+ msgid "2.5 stars"
282
+ msgstr ""
283
+
284
+ #: modules/rich-snippets/rich-snippets.php:229
285
+ msgid "3 stars"
286
+ msgstr ""
287
+
288
+ #: modules/rich-snippets/rich-snippets.php:230
289
+ msgid "3.5 stars"
290
+ msgstr ""
291
+
292
+ #: modules/rich-snippets/rich-snippets.php:231
293
+ msgid "4 stars"
294
+ msgstr ""
295
+
296
+ #: modules/rich-snippets/rich-snippets.php:232
297
+ msgid "4.5 stars"
298
+ msgstr ""
299
+
300
+ #: modules/rich-snippets/rich-snippets.php:233
301
+ msgid "5 stars"
302
+ msgstr ""
303
+
304
+ #: modules/rich-snippets/rich-snippets.php:234
305
+ msgid "Star Rating for Reviewed Item:"
306
+ msgstr ""
307
+
308
+ #: modules/site-keyword-queries/site-keyword-queries.php:12
309
+ msgid "Internal Relevance Researcher"
310
+ msgstr ""
311
+
312
+ #: modules/site-keyword-queries/site-keyword-queries.php:13
313
+ msgid "Int. Rel. Researcher"
314
+ msgstr ""
315
+
316
+ #: modules/site-keyword-queries/site-keyword-queries.php:21
317
+ msgid "Step 1: Enter Keywords"
318
+ msgstr ""
319
+
320
+ #: modules/site-keyword-queries/site-keyword-queries.php:23
321
+ msgid "(Type one keyword per line)"
322
+ msgstr ""
323
+
324
+ #: modules/site-keyword-queries/site-keyword-queries.php:25
325
+ msgid "Step 2: Set Options and Submit"
326
+ msgstr ""
327
+
328
+ #: modules/site-keyword-queries/site-keyword-queries.php:27
329
+ msgid "Put keywords in quotes"
330
+ msgstr ""
331
+
332
+ #: modules/site-keyword-queries/site-keyword-queries.php:28
333
+ #: modules/competition-queries/competition-queries.php:63
334
+ msgid "Show 100 results per page"
335
+ msgstr ""
336
+
337
+ #: modules/site-keyword-queries/site-keyword-queries.php:30
338
+ #: modules/competition-queries/competition-queries.php:65
339
+ msgid "Use Google&#8217;s minimal mode"
340
+ msgstr ""
341
+
342
+ #: modules/site-keyword-queries/site-keyword-queries.php:33
343
+ #: modules/competition-queries/competition-queries.php:71
344
+ msgid "Submit"
345
+ msgstr ""
346
+
347
+ #: modules/internal-link-aliases/internal-link-aliases.php:20
348
+ msgid "Link Mask Generator"
349
+ msgstr ""
350
+
351
+ #: modules/internal-link-aliases/internal-link-aliases.php:24
352
+ msgid "Alias Directory"
353
+ msgstr ""
354
+
355
+ #: modules/internal-link-aliases/internal-link-aliases.php:43
356
+ msgid "Link Masks"
357
+ msgstr ""
358
+
359
+ #: modules/internal-link-aliases/internal-link-aliases.php:46
360
+ #: modules/autolinks/content-autolinks.php:196
361
+ msgid "URL"
362
+ msgstr ""
363
+
364
+ #: modules/internal-link-aliases/internal-link-aliases.php:46
365
+ msgid "Mask URL"
366
+ msgstr ""
367
+
368
+ #: modules/internal-link-aliases/internal-link-aliases.php:66
369
+ msgid ""
370
+ "You can stop search engines from following a link by typing in a mask for "
371
+ "its URL."
372
+ msgstr ""
373
+
374
+ #: modules/internal-link-aliases/internal-link-aliases.php:129
375
+ msgid "Added by Link Alias Generator (LAG) module"
376
+ msgstr ""
377
+
378
+ #: modules/internal-link-aliases/internal-link-aliases.php:140
379
+ msgid "End LAG"
380
+ msgstr ""
381
+
382
+ #: modules/titles/titles.php:12
383
+ msgid "Title Tag Rewriter"
384
+ msgstr ""
385
+
386
+ #: modules/titles/titles.php:23 modules/meta/meta-descriptions.php:24
387
+ msgid "Default Formats"
388
+ msgstr ""
389
+
390
+ #: modules/titles/titles.php:24 modules/404s/fofs-settings.php:17
391
+ msgid "Settings"
392
+ msgstr ""
393
+
394
+ #: modules/titles/titles.php:30
395
+ msgid "Title Tag"
396
+ msgstr ""
397
+
398
+ #: modules/titles/titles.php:43
399
+ msgid ""
400
+ "Convert lowercase category/tag names to title case when used in title tags."
401
  msgstr ""
402
 
403
  #: modules/titles/titles.php:43
512
  "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
513
  msgstr ""
514
 
515
+ #: modules/competition-queries/competition-queries.php:12
516
+ msgid "Competition Researcher"
 
 
517
  msgstr ""
518
 
519
+ #: modules/competition-queries/competition-queries.php:13
520
+ msgid "Comp. Researcher"
521
  msgstr ""
522
 
523
+ #: modules/competition-queries/competition-queries.php:17
524
+ msgid ""
525
+ "The Competition Researcher provides you with easy access to various search "
526
+ "engine tools which you can use to research multiple search queries or URLs."
527
  msgstr ""
528
 
529
+ #: modules/competition-queries/competition-queries.php:21
530
+ msgid "Step 1: Choose Your Research Tool"
531
  msgstr ""
532
 
533
+ #: modules/competition-queries/competition-queries.php:25
534
+ msgid "Keywords"
535
  msgstr ""
536
 
537
+ #: modules/competition-queries/competition-queries.php:25
538
+ msgid "Normal Search"
539
  msgstr ""
540
 
541
+ #: modules/competition-queries/competition-queries.php:25
542
+ msgid "Find out how many pages contain the words in each query"
543
  msgstr ""
544
 
545
+ #: modules/competition-queries/competition-queries.php:26
546
+ msgid "Phrase Match"
547
  msgstr ""
548
 
549
+ #: modules/competition-queries/competition-queries.php:26
550
+ msgid ""
551
+ "Find out how many &#8220;actual&#8221; pages are competing for each query"
552
  msgstr ""
553
 
554
+ #: modules/competition-queries/competition-queries.php:27
555
+ msgid "Allinanchor"
556
  msgstr ""
557
 
558
+ #: modules/competition-queries/competition-queries.php:27
559
+ msgid "Find out which sites have the most links for each query"
560
  msgstr ""
561
 
562
+ #: modules/competition-queries/competition-queries.php:28
563
+ msgid "Allintitle"
564
  msgstr ""
565
 
566
+ #: modules/competition-queries/competition-queries.php:28
567
+ msgid ""
568
+ "Find out which sites have the highest relevance in the title for each query"
569
  msgstr ""
570
 
571
+ #: modules/competition-queries/competition-queries.php:29
572
+ msgid "Allintext"
573
  msgstr ""
574
 
575
+ #: modules/competition-queries/competition-queries.php:29
576
+ msgid "Find out which sites have the most relevant content/text on their pages"
 
 
577
  msgstr ""
578
 
579
+ #: modules/competition-queries/competition-queries.php:30
580
+ msgid "Allinurl"
581
  msgstr ""
582
 
583
+ #: modules/competition-queries/competition-queries.php:30
584
+ msgid ""
585
+ "Find out which sites have the most relevant naming conventions for each "
586
+ "keyword"
587
  msgstr ""
588
 
589
+ #: modules/competition-queries/competition-queries.php:32
590
+ msgid "URLs"
 
591
  msgstr ""
592
 
593
+ #: modules/competition-queries/competition-queries.php:32
594
+ msgid "Site"
595
  msgstr ""
596
 
597
+ #: modules/competition-queries/competition-queries.php:32
598
+ msgid "Find out how many pages are indexed for each domain"
 
599
  msgstr ""
600
 
601
+ #: modules/competition-queries/competition-queries.php:33
602
+ #: modules/competition-queries/competition-queries.php:38
603
+ msgid "Inbound Links"
604
  msgstr ""
605
 
606
+ #: modules/competition-queries/competition-queries.php:33
607
+ msgid "Find out how many sites link to the domains"
608
  msgstr ""
609
 
610
+ #: modules/competition-queries/competition-queries.php:34
611
+ #: modules/competition-queries/competition-queries.php:38
612
+ msgid "Outbound Links"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
613
  msgstr ""
614
 
615
+ #: modules/competition-queries/competition-queries.php:34
616
+ msgid "Find out how many sites the domains link to"
617
  msgstr ""
618
 
619
+ #: modules/competition-queries/competition-queries.php:57
620
+ msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
621
  msgstr ""
622
 
623
+ #: modules/competition-queries/competition-queries.php:59
624
+ msgid "(Type in one per line)"
625
  msgstr ""
626
 
627
+ #: modules/competition-queries/competition-queries.php:61
628
+ msgid "Step 3: Set Options and Submit"
629
  msgstr ""
630
 
631
+ #: modules/link-nofollow/link-nofollow.php:12
632
+ msgid "Nofollow Manager"
633
  msgstr ""
634
 
635
+ #: modules/link-nofollow/link-nofollow.php:53
636
+ msgid "Add the nofollow attribute to..."
637
  msgstr ""
638
 
639
+ #: modules/link-nofollow/link-nofollow.php:55
640
+ msgid "Adjacent post links"
641
  msgstr ""
642
 
643
+ #: modules/link-nofollow/link-nofollow.php:56
644
+ msgid "Category links (after posts)"
645
  msgstr ""
646
 
647
+ #: modules/link-nofollow/link-nofollow.php:57
648
+ msgid "Category links (in lists)"
649
  msgstr ""
650
 
651
+ #: modules/link-nofollow/link-nofollow.php:58
652
+ msgid "Comment anchor links"
653
  msgstr ""
654
 
655
+ #: modules/link-nofollow/link-nofollow.php:59
656
+ msgid "Comment feed links"
657
  msgstr ""
658
 
659
+ #: modules/link-nofollow/link-nofollow.php:60
660
+ msgid "Date-based archive links"
661
  msgstr ""
662
 
663
+ #: modules/link-nofollow/link-nofollow.php:61
664
+ msgid "Pagination navigation links (all)"
665
  msgstr ""
666
 
667
+ #: modules/link-nofollow/link-nofollow.php:62
668
+ msgid "Pagination navigation links (on blog home only)"
669
  msgstr ""
670
 
671
+ #: modules/link-nofollow/link-nofollow.php:63
672
+ msgid "&#8220;Read more&#8221; links"
673
  msgstr ""
674
 
675
+ #: modules/link-nofollow/link-nofollow.php:64
676
+ msgid "Registration link"
677
  msgstr ""
678
 
679
+ #: modules/link-nofollow/link-nofollow.php:65
680
+ msgid "Login link"
681
  msgstr ""
682
 
683
+ #: modules/link-nofollow/link-nofollow.php:66
684
+ msgid "Tag links (after posts)"
685
  msgstr ""
686
 
687
+ #: modules/link-nofollow/link-nofollow.php:67
688
+ msgid "Tag links (in lists and clouds)"
689
  msgstr ""
690
 
691
+ #: modules/link-nofollow/link-nofollow.php:76
692
+ msgid "When displaying page lists, nofollow links to this page"
693
  msgstr ""
694
 
695
+ #: modules/link-nofollow/link-nofollow.php:76
696
+ msgid "Nofollow:"
 
 
 
 
697
  msgstr ""
698
 
699
  #: modules/meta/meta-keywords.php:12
704
  msgid "Meta Keywords"
705
  msgstr ""
706
 
707
+ #: modules/meta/meta-keywords.php:32 modules/noindex/noindex.php:43
708
+ msgid "Default Values"
709
+ msgstr ""
710
+
711
+ #: modules/meta/meta-keywords.php:33 modules/meta/meta-descriptions.php:25
712
+ msgid "Blog Homepage"
713
+ msgstr ""
714
+
715
  #: modules/meta/meta-keywords.php:55
716
  msgid "The %d most commonly-used words"
717
  msgstr ""
791
  msgid "Don&#8217t cache or archive this site."
792
  msgstr ""
793
 
794
+ #: modules/meta/meta-descriptions.php:12
795
+ msgid "Meta Description Editor"
796
  msgstr ""
797
 
798
+ #: modules/meta/meta-descriptions.php:13
799
+ msgid "Meta Descriptions"
800
  msgstr ""
801
 
802
+ #: modules/meta/meta-descriptions.php:31
803
+ msgid "Meta Description"
804
  msgstr ""
805
 
806
+ #: modules/meta/meta-descriptions.php:46
807
+ msgid "Post Description Format"
808
  msgstr ""
809
 
810
+ #: modules/meta/meta-descriptions.php:53
811
+ msgid "Blog Homepage Meta Description"
812
  msgstr ""
813
 
814
+ #: modules/meta/meta-descriptions.php:55
815
+ msgid "Use this blog&#8217s tagline as the default homepage description."
816
  msgstr ""
817
 
818
+ #: modules/meta/meta-descriptions.php:56
819
+ msgid "Default Value"
820
  msgstr ""
821
 
822
+ #: modules/meta/meta-descriptions.php:109
823
+ msgid "Meta Description:"
824
  msgstr ""
825
 
826
+ #: modules/meta/meta-descriptions.php:112
827
+ msgid "You&#8217;ve entered %s characters. Most search engines use up to 160."
828
  msgstr ""
829
 
830
+ #: modules/meta/meta-descriptions.php:120
831
+ msgid ""
832
+ "<strong>Description</strong> &mdash; The value of the meta description tag. "
833
+ "The description will often appear underneath the title in search engine "
834
+ "results. Writing an accurate, attention-grabbing description for every post "
835
+ "is important to ensuring a good search results clickthrough rate."
836
  msgstr ""
837
 
838
+ #: modules/import-aiosp/import-aiosp.php:12
839
+ msgid "Import from All in One SEO Pack"
840
  msgstr ""
841
 
842
+ #: modules/import-aiosp/import-aiosp.php:13
843
+ msgid "AIOSP Import"
844
  msgstr ""
845
 
846
+ #: modules/import-aiosp/import-aiosp.php:15
847
+ msgid "All in One SEO Pack"
848
  msgstr ""
849
 
850
+ #: modules/import-aiosp/import-aiosp.php:16
851
+ msgid "AIOSP"
852
  msgstr ""
853
 
854
+ #: modules/import-aiosp/import-aiosp.php:17
855
+ msgid "Import post data (custom title tags and meta tags)."
856
  msgstr ""
857
 
858
+ #: modules/import-aiosp/import-aiosp.php:21
859
+ msgid ""
860
+ "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
861
+ "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
862
+ "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
863
+ "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
864
+ "to be currently installed or activated for the import to take place."
865
  msgstr ""
866
 
867
+ #: modules/import-aiosp/import-aiosp.php:23
868
+ msgid ""
869
+ "The import tool can only move over data from AIOSP version 1.6 or above. If "
870
+ "you use an older version of AIOSP, you should update to the latest version "
871
+ "first and run AIOSP&#8217;s upgrade process."
872
  msgstr ""
873
 
874
+ #: modules/sds-blog/sds-blog.php:12
875
+ msgid "Whitepapers"
876
  msgstr ""
877
 
878
+ #: modules/sds-blog/sds-blog.php:13
879
+ msgid "SEO Design Solutions Whitepapers"
880
  msgstr ""
881
 
882
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 5.7) #-#-#-#-#
883
+ #. Author of the plugin/theme
884
+ #: modules/sds-blog/sds-blog.php:49
885
+ msgid "SEO Design Solutions"
886
  msgstr ""
887
 
888
+ #: modules/sds-blog/sds-blog.php:50
889
+ msgid ""
890
+ "The search engine optimization articles below are loaded from the website of "
891
+ "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
892
+ "an article&#8217;s title to read it."
893
  msgstr ""
894
 
895
+ #: modules/modules/modules.php:12
896
+ msgid "Module Manager"
897
  msgstr ""
898
 
899
+ #: modules/modules/modules.php:13
900
+ msgid "Modules"
901
+ msgstr ""
902
+
903
+ #: modules/modules/modules.php:37
904
  msgid ""
905
+ "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
906
+ "&#8221; By default, most of these modules are listed in the &#8220;"
907
+ "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
908
+ "you can view documentation by clicking the tabs in the upper-right-hand "
909
+ "corner of your administration screen."
910
  msgstr ""
911
 
912
+ #: modules/modules/modules.php:39
913
+ msgid ""
914
+ "The Module Manager lets you disable or hide modules you don&#8217;t use. "
915
+ "You can also silence modules from displaying bubble alerts on the menu."
916
  msgstr ""
917
 
918
+ #: modules/modules/modules.php:45
919
+ msgid "Status"
920
  msgstr ""
921
 
922
+ #: modules/modules/modules.php:46
923
+ msgid "Module"
924
  msgstr ""
925
 
926
+ #: modules/modules/modules.php:59
927
+ msgid "Enabled"
928
  msgstr ""
929
 
930
+ #: modules/modules/modules.php:60
931
+ msgid "Silenced"
932
  msgstr ""
933
 
934
+ #: modules/modules/modules.php:61
935
+ msgid "Hidden"
 
936
  msgstr ""
937
 
938
+ #: modules/modules/modules.php:62
939
+ msgid "Disabled"
940
  msgstr ""
941
 
942
+ #: modules/slugs/slugs.php:12
943
+ msgid "Slug Optimizer"
944
  msgstr ""
945
 
946
+ #: modules/slugs/slugs.php:16
947
+ msgid "Words to Remove"
948
  msgstr ""
949
 
950
+ #: modules/404s/fofs.php:11
951
+ msgid "404 Monitor"
 
952
  msgstr ""
953
 
954
+ #: modules/404s/fofs-settings.php:16
955
+ msgid "404 Monitor Settings"
956
  msgstr ""
957
 
958
+ #: modules/404s/fofs-settings.php:37
959
+ msgid "Continue monitoring for new 404 errors"
960
  msgstr ""
961
 
962
+ #: modules/404s/fofs-settings.php:37
963
+ msgid "Monitoring Settings"
964
  msgstr ""
965
 
966
+ #: modules/404s/fofs-settings.php:39
967
+ msgid "Only log these types of 404 errors:"
 
 
968
  msgstr ""
969
 
970
+ #: modules/404s/fofs-settings.php:40
971
+ msgid "404s generated by search engine spiders"
972
  msgstr ""
973
 
974
+ #: modules/404s/fofs-settings.php:41
975
+ msgid "404s with referring URLs"
976
  msgstr ""
977
 
978
+ #: modules/404s/fofs-settings.php:42
979
+ msgid "Log Restrictions"
980
  msgstr ""
981
 
982
+ #: modules/404s/fofs-settings.php:43
983
+ msgid "Maximum Log Entries"
 
984
  msgstr ""
985
 
986
+ #: modules/404s/fofs-settings.php:44
987
+ msgid "URLs to Ignore"
988
  msgstr ""
989
 
990
+ #: modules/404s/fofs-settings.php:44
991
+ msgid "(Use * as wildcard)"
 
992
  msgstr ""
993
 
994
+ #: modules/404s/fofs-log.php:16
995
+ msgid "404 Monitor Log"
996
  msgstr ""
997
 
998
+ #: modules/404s/fofs-log.php:17
999
+ msgid "Log"
1000
  msgstr ""
1001
 
1002
+ #: modules/404s/fofs-log.php:117
1003
+ msgid "Hits"
1004
  msgstr ""
1005
 
1006
+ #: modules/404s/fofs-log.php:118
1007
+ msgid "URL with 404 Error"
1008
  msgstr ""
1009
 
1010
+ #: modules/404s/fofs-log.php:119
1011
+ msgid "Date of Most Recent Hit"
 
1012
  msgstr ""
1013
 
1014
+ #: modules/404s/fofs-log.php:120
1015
+ msgid "Referers"
 
1016
  msgstr ""
1017
 
1018
+ #: modules/404s/fofs-log.php:121 modules/404s/fofs-log.php:224
1019
+ msgid "User Agents"
 
1020
  msgstr ""
1021
 
1022
+ #: modules/404s/fofs-log.php:137
1023
+ msgid ""
1024
+ "New 404 errors will not be recorded because 404 logging is disabled on the "
1025
+ "Settings tab."
1026
  msgstr ""
1027
 
1028
+ #: modules/404s/fofs-log.php:144
1029
+ msgid "The log entry was successfully deleted."
1030
  msgstr ""
1031
 
1032
+ #: modules/404s/fofs-log.php:146
1033
+ msgid "This log entry has already been deleted."
1034
  msgstr ""
1035
 
1036
+ #: modules/404s/fofs-log.php:155
1037
+ msgid "The log was successfully cleared."
1038
  msgstr ""
1039
 
1040
+ #: modules/404s/fofs-log.php:159
1041
+ msgid "No 404 errors in the log."
1042
  msgstr ""
1043
 
1044
+ #: modules/404s/fofs-log.php:183
1045
+ msgid "Open URL in new window (will not be logged)"
1046
  msgstr ""
1047
 
1048
+ #: modules/404s/fofs-log.php:184
1049
+ msgid "Query Google for cached version of URL (opens in new window)"
1050
  msgstr ""
1051
 
1052
+ #: modules/404s/fofs-log.php:185
1053
+ msgid "Remove this URL from the log"
1054
  msgstr ""
1055
 
1056
+ #: modules/404s/fofs-log.php:188
1057
+ msgid "%s at %s"
1058
  msgstr ""
1059
 
1060
+ #: modules/404s/fofs-log.php:192
1061
+ msgid "View list of referring URLs"
1062
  msgstr ""
1063
 
1064
+ #: modules/404s/fofs-log.php:193
1065
+ msgid "View list of user agents"
1066
  msgstr ""
1067
 
1068
+ #: modules/404s/fofs-log.php:203
1069
+ msgid "Referring URLs"
1070
  msgstr ""
1071
 
1072
+ #: modules/404s/fofs-log.php:204 modules/404s/fofs-log.php:225
1073
+ msgid "Hide list"
1074
  msgstr ""
1075
 
1076
+ #: modules/404s/fofs-log.php:255
1077
+ msgid "Are you sure you want to delete all 404 log entries?"
1078
  msgstr ""
1079
 
1080
+ #: modules/404s/fofs-log.php:257
1081
+ msgid "Clear Log"
1082
  msgstr ""
1083
 
1084
+ #: modules/linkbox/linkbox.php:12
1085
+ msgid "Linkbox Inserter"
 
 
 
 
 
1086
  msgstr ""
1087
 
1088
+ #: modules/linkbox/linkbox.php:18
1089
+ msgid "Link to this post!"
 
 
1090
  msgstr ""
1091
 
1092
+ #: modules/linkbox/linkbox.php:45
1093
+ msgid "At the end of posts"
1094
  msgstr ""
1095
 
1096
+ #: modules/linkbox/linkbox.php:46
1097
+ msgid "At the end of pages"
1098
  msgstr ""
1099
 
1100
+ #: modules/linkbox/linkbox.php:47
1101
+ msgid "When called by the su_linkbox hook"
1102
  msgstr ""
1103
 
1104
+ #: modules/linkbox/linkbox.php:48
1105
+ msgid "Display linkboxes..."
1106
  msgstr ""
1107
 
1108
+ #: modules/linkbox/linkbox.php:49
1109
+ msgid "Linkbox HTML"
1110
  msgstr ""
1111
 
1112
+ #: modules/more-links/more-links.php:12
1113
+ msgid "More Link Customizer"
1114
+ msgstr ""
1115
+
1116
+ #: modules/more-links/more-links.php:27
1117
+ msgid "Default More Link Text"
1118
+ msgstr ""
1119
+
1120
+ #: modules/more-links/more-links.php:48
1121
+ msgid "More Link Text:"
1122
  msgstr ""
1123
 
1124
  #: modules/files/files.php:14
1176
  "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1177
  msgstr ""
1178
 
1179
+ #: modules/canonical/canonical.php:12
1180
+ msgid "Canonicalizer"
1181
  msgstr ""
1182
 
1183
+ #: modules/canonical/canonical.php:33
1184
+ msgid "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> tags."
1185
+ msgstr ""
1186
+
1187
+ #: modules/canonical/canonical.php:34
1188
+ msgid "Redirect requests for nonexistent pagination."
1189
+ msgstr ""
1190
+
1191
+ #: modules/user-code/user-code.php:12
1192
+ msgid "Code Inserter"
1193
+ msgstr ""
1194
+
1195
+ #: modules/user-code/user-code.php:27
1196
+ msgid "Everywhere"
1197
+ msgstr ""
1198
+
1199
+ #: modules/user-code/user-code.php:34
1200
+ msgid "&lt;head&gt; Tag"
1201
+ msgstr ""
1202
+
1203
+ #: modules/user-code/user-code.php:35
1204
+ msgid "Before Item Content"
1205
+ msgstr ""
1206
+
1207
+ #: modules/user-code/user-code.php:36
1208
+ msgid "After Item Content"
1209
+ msgstr ""
1210
+
1211
+ #: modules/user-code/user-code.php:37
1212
+ msgid "Footer"
1213
+ msgstr ""
1214
+
1215
+ #: modules/user-code/user-code.php:51
1216
+ msgid "Code Inserter module"
1217
  msgstr ""
1218
 
1219
  #: modules/settings/settings-data.php:16
1384
  msgid "Restore Default Settings"
1385
  msgstr ""
1386
 
1387
+ #: modules/settings/global-settings.php:18
1388
+ msgid "Global Settings"
1389
  msgstr ""
1390
 
1391
+ #: modules/settings/global-settings.php:40
1392
+ msgid "Enable nofollow&#8217;d attribution link"
 
 
1393
  msgstr ""
1394
 
1395
+ #: modules/settings/global-settings.php:41
1396
+ msgid "Enable attribution link CSS styling"
1397
+ msgstr ""
1398
+
1399
+ #: modules/settings/global-settings.php:42
1400
+ msgid "Notify me about unnecessary active plugins"
1401
+ msgstr ""
1402
+
1403
+ #: modules/settings/global-settings.php:43
1404
+ msgid "Insert comments around HTML code insertions"
1405
+ msgstr ""
1406
+
1407
+ #: modules/settings/settings.php:12
1408
+ msgid "Plugin Settings"
1409
+ msgstr ""
1410
+
1411
+ #: modules/settings/settings.php:13
1412
+ msgid "SEO Ultimate Plugin Settings"
1413
+ msgstr ""
1414
+
1415
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 5.7) #-#-#-#-#
1416
+ #. Plugin Name of the plugin/theme
1417
+ #: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:741
1418
+ msgid "SEO Ultimate"
1419
+ msgstr ""
1420
+
1421
+ #: modules/settings/uninstall.php:17
1422
+ msgid "Uninstaller"
1423
+ msgstr ""
1424
+
1425
+ #: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1233
1426
+ msgid "Uninstall"
1427
+ msgstr ""
1428
+
1429
+ #: modules/settings/uninstall.php:27
1430
+ msgid ""
1431
+ "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
1432
+ "files."
1433
+ msgstr ""
1434
+
1435
+ #: modules/settings/uninstall.php:30
1436
+ msgid ""
1437
+ "Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
1438
+ "your SEO Ultimate settings and cannot be undone."
1439
  msgstr ""
1440
 
1441
  #: modules/settings/uninstall.php:31
1462
  msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1463
  msgstr ""
1464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1465
  #: modules/settings/install.php:18
1466
  msgid "Upgrade/Downgrade/Reinstall"
1467
  msgstr ""
1557
  msgid "Upgrade to SEO Ultimate %s"
1558
  msgstr ""
1559
 
1560
+ #: modules/sharing-buttons/sharing-buttons.php:12
1561
+ msgid "Sharing Facilitator"
 
 
 
 
 
 
 
 
 
 
 
 
1562
  msgstr ""
1563
 
1564
+ #: modules/sharing-buttons/sharing-buttons.php:22
1565
+ msgid "Bookmark and Share"
1566
  msgstr ""
1567
 
1568
+ #: modules/sharing-buttons/sharing-buttons.php:28
1569
+ msgid "Providers"
1570
  msgstr ""
1571
 
1572
+ #: modules/sharing-buttons/sharing-buttons.php:34
1573
+ msgid "Which provider would you like to use for your sharing buttons?"
1574
  msgstr ""
1575
 
1576
+ #: modules/sharing-buttons/sharing-buttons.php:36
1577
+ msgid "None; disable sharing buttons"
1578
  msgstr ""
1579
 
1580
+ #: modules/sharing-buttons/sharing-buttons.php:37
1581
+ msgid "Use the ShareThis button"
 
 
1582
  msgstr ""
1583
 
1584
+ #: modules/sharing-buttons/sharing-buttons.php:38
1585
+ msgid "Use the AddThis button"
1586
  msgstr ""
1587
 
1588
+ #: modules/noindex/noindex.php:12
1589
+ msgid "Noindex Manager"
1590
  msgstr ""
1591
 
1592
+ #: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
1593
+ #: modules/noindex/noindex.php:67
1594
+ msgid "Noindex"
1595
  msgstr ""
1596
 
1597
+ #: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
1598
+ #: modules/autolinks/content-autolinks.php:204
1599
+ msgid "Nofollow"
1600
  msgstr ""
1601
 
1602
+ #: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
1603
+ msgid "Use default"
1604
  msgstr ""
1605
 
1606
+ #: modules/noindex/noindex.php:63
1607
+ msgid "noindex"
1608
  msgstr ""
1609
 
1610
+ #: modules/noindex/noindex.php:64
1611
+ msgid "index"
1612
  msgstr ""
1613
 
1614
+ #: modules/noindex/noindex.php:74
1615
+ msgid "nofollow"
1616
  msgstr ""
1617
 
1618
+ #: modules/noindex/noindex.php:75
1619
+ msgid "follow"
1620
  msgstr ""
1621
 
1622
+ #: modules/noindex/noindex.php:89
1623
+ msgid ""
1624
+ "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
1625
+ "block indexing of the entire site, regardless of which options are set below."
1626
  msgstr ""
1627
 
1628
+ #: modules/noindex/noindex.php:92
1629
+ msgid "Prevent indexing of..."
1630
  msgstr ""
1631
 
1632
+ #: modules/noindex/noindex.php:93
1633
+ msgid "Administration back-end pages"
1634
  msgstr ""
1635
 
1636
+ #: modules/noindex/noindex.php:94
1637
+ msgid "Author archives"
1638
  msgstr ""
1639
 
1640
+ #: modules/noindex/noindex.php:95
1641
+ msgid "Blog search pages"
1642
  msgstr ""
1643
 
1644
+ #: modules/noindex/noindex.php:96
1645
+ msgid "Category archives"
1646
  msgstr ""
1647
 
1648
+ #: modules/noindex/noindex.php:97
1649
+ msgid "Comment feeds"
1650
  msgstr ""
1651
 
1652
+ #: modules/noindex/noindex.php:98
1653
+ msgid "Comment subpages"
1654
  msgstr ""
1655
 
1656
+ #: modules/noindex/noindex.php:99
1657
+ msgid "Date-based archives"
1658
  msgstr ""
1659
 
1660
+ #: modules/noindex/noindex.php:100
1661
+ msgid "Subpages of the homepage"
1662
  msgstr ""
1663
 
1664
+ #: modules/noindex/noindex.php:101
1665
+ msgid "Tag archives"
1666
  msgstr ""
1667
 
1668
+ #: modules/noindex/noindex.php:102
1669
+ msgid "User login/registration pages"
1670
  msgstr ""
1671
 
1672
+ #: modules/noindex/noindex.php:165
1673
+ msgid "Noindex: Tell search engines not to index this webpage."
1674
  msgstr ""
1675
 
1676
+ #: modules/noindex/noindex.php:166
1677
+ msgid "Nofollow: Tell search engines not to spider links on this webpage."
1678
  msgstr ""
1679
 
1680
+ #: modules/noindex/noindex.php:167
1681
+ msgid "Meta Robots Tag:"
1682
  msgstr ""
1683
 
1684
+ #: modules/autolinks/autolinks.php:11
1685
+ msgid "Deeplink Juggernaut"
1686
  msgstr ""
1687
 
1688
+ #: modules/autolinks/content-autolinks.php:16
1689
+ msgid "Content Deeplink Juggernaut"
1690
  msgstr ""
1691
 
1692
+ #: modules/autolinks/content-autolinks.php:17
1693
+ msgid "Content Links"
1694
  msgstr ""
1695
 
1696
+ #: modules/autolinks/content-autolinks.php:100
1697
+ msgid ""
1698
+ "The Content Links section of Deeplink Juggernaut lets you automatically link "
1699
+ "a certain word or phrase in your post/page content to a URL you specify."
1700
  msgstr ""
1701
 
1702
+ #: modules/autolinks/content-autolinks.php:136
1703
+ msgid "Edit Existing Links"
1704
  msgstr ""
1705
 
1706
+ #: modules/autolinks/content-autolinks.php:140
1707
+ msgid "Add a New Link"
 
1708
  msgstr ""
1709
 
1710
+ #: modules/autolinks/content-autolinks.php:148
1711
+ msgid "Anchor Text"
1712
  msgstr ""
1713
 
1714
+ #: modules/autolinks/content-autolinks.php:149
1715
+ msgid "Destination Type"
 
 
1716
  msgstr ""
1717
 
1718
+ #: modules/autolinks/content-autolinks.php:150
1719
+ msgid "Destination"
1720
  msgstr ""
1721
 
1722
+ #: modules/autolinks/content-autolinks.php:151
1723
+ msgid "Title Attribute"
1724
  msgstr ""
1725
 
1726
+ #: modules/autolinks/content-autolinks.php:152
1727
+ msgid "Options"
1728
  msgstr ""
1729
 
1730
+ #: modules/autolinks/content-autolinks.php:154
1731
+ msgid "Delete"
 
 
1732
  msgstr ""
1733
 
1734
+ #: modules/autolinks/content-autolinks.php:196
1735
+ msgid "Custom"
1736
  msgstr ""
1737
 
1738
+ #: modules/autolinks/content-autolinks.php:197
1739
+ msgid "Content Items"
1740
  msgstr ""
1741
 
1742
+ #: modules/autolinks/content-autolinks.php:205
1743
+ msgid "New window"
1744
  msgstr ""
1745
 
1746
+ #: modules/autolinks/content-autolinks.php:269
1747
+ msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
1748
  msgstr ""
1749
 
1750
+ #: modules/autolinks/content-autolinks.php:270
1751
+ msgid "Don&#8217;t add autolinks to anchor texts found in this post."
1752
  msgstr ""
1753
 
1754
+ #: modules/autolinks/content-autolinks.php:270
1755
+ msgid "Autolink Exclusion:"
 
1756
  msgstr ""
1757
 
1758
+ #: modules/autolinks/content-autolinks.php:275
1759
+ msgid ""
1760
+ "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
1761
+ "into this box, Deeplink Juggernaut will search for that anchor in all your "
1762
+ "other posts and link it to this post. For example, if the post you&#8217;re "
1763
+ "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
1764
+ "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
1765
+ "Deeplink Juggernaut will automatically build internal links to this post "
1766
+ "with that anchor text (assuming other posts contain that text)."
1767
  msgstr ""
1768
 
1769
+ #: modules/autolinks/content-autolinks-settings.php:16
1770
+ msgid "Content Deeplink Juggernaut Settings"
1771
  msgstr ""
1772
 
1773
+ #: modules/autolinks/content-autolinks-settings.php:17
1774
+ msgid "Content Link Settings"
1775
  msgstr ""
1776
 
1777
+ #: modules/autolinks/content-autolinks-settings.php:21
1778
+ msgid "Allow posts to link to themselves."
 
1779
  msgstr ""
1780
 
1781
+ #: modules/autolinks/content-autolinks-settings.php:22
1782
+ msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1783
  msgstr ""
1784
 
1785
+ #: modules/autolinks/content-autolinks-settings.php:23
1786
+ msgid ""
1787
+ "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1788
+ "etc."
1789
  msgstr ""
1790
 
1791
+ #: plugin/class.su-installer.php:9
1792
+ msgid "Package not available."
1793
  msgstr ""
1794
 
1795
+ #: plugin/class.su-installer.php:12
1796
+ msgid "Removing the current version of the plugin&#8230;"
1797
  msgstr ""
1798
 
1799
+ #: plugin/class.su-installer.php:13
1800
+ msgid "Could not remove the current version of the plugin."
1801
  msgstr ""
1802
 
1803
+ #: plugin/class.su-installer.php:17
1804
+ msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
1805
  msgstr ""
1806
 
1807
+ #: plugin/class.su-installer.php:18
1808
+ msgid "Unpacking the downgrade&#8230;"
1809
  msgstr ""
1810
 
1811
+ #: plugin/class.su-installer.php:19
1812
+ msgid "Installing the downgrade&#8230;"
1813
  msgstr ""
1814
 
1815
+ #: plugin/class.su-installer.php:20
1816
+ msgid "Plugin downgrade failed."
1817
  msgstr ""
1818
 
1819
+ #: plugin/class.su-installer.php:21
1820
+ msgid "Plugin downgraded successfully."
1821
  msgstr ""
1822
 
1823
+ #: plugin/class.su-installer.php:24
1824
+ msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
1825
  msgstr ""
1826
 
1827
+ #: plugin/class.su-installer.php:25
1828
+ msgid "Unpacking the reinstall&#8230;"
1829
  msgstr ""
1830
 
1831
+ #: plugin/class.su-installer.php:26
1832
+ msgid "Reinstalling the current version&#8230;"
1833
  msgstr ""
1834
 
1835
+ #: plugin/class.su-installer.php:27
1836
+ msgid "Plugin reinstallation failed."
1837
  msgstr ""
1838
 
1839
+ #: plugin/class.su-installer.php:28
1840
+ msgid "Plugin reinstalled successfully."
1841
  msgstr ""
1842
 
1843
+ #: plugin/class.su-installer.php:32
1844
+ msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
1845
  msgstr ""
1846
 
1847
+ #: plugin/class.su-installer.php:33
1848
+ msgid "Unpacking the upgrade&#8230;"
1849
  msgstr ""
1850
 
1851
+ #: plugin/class.su-installer.php:34
1852
+ msgid "Installing the upgrade&#8230;"
1853
  msgstr ""
1854
 
1855
+ #: plugin/class.su-installer.php:35
1856
+ msgid "Plugin upgrade failed."
1857
  msgstr ""
1858
 
1859
+ #: plugin/class.su-installer.php:36
1860
+ msgid "Plugin upgraded successfully."
1861
  msgstr ""
1862
 
1863
+ #: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
1864
+ msgid "%s and %s"
1865
  msgstr ""
1866
 
1867
+ #: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
1868
+ msgid ", "
1869
  msgstr ""
1870
 
1871
+ #: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
1872
+ msgid "%s, and %s"
1873
  msgstr ""
1874
 
1875
+ #: plugin/class.seo-ultimate.php:741
1876
+ msgid "SEO"
1877
  msgstr ""
1878
 
1879
+ #: plugin/class.seo-ultimate.php:930
1880
  msgid ""
1881
+ "It looks like you made changes to the settings of this SEO Ultimate module. "
1882
+ "If you leave before saving, those changes will be lost."
1883
  msgstr ""
1884
 
1885
+ #: plugin/class.seo-ultimate.php:1024
1886
+ msgid "SEO Settings Help"
1887
  msgstr ""
1888
 
1889
+ #: plugin/class.seo-ultimate.php:1026
1890
+ msgid "The SEO Settings box lets you customize these settings:"
1891
  msgstr ""
1892
 
1893
+ #: plugin/class.seo-ultimate.php:1028
1894
+ msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
 
 
1895
  msgstr ""
1896
 
1897
+ #: plugin/class.seo-ultimate.php:1083
1898
+ msgid ""
1899
+ "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
1900
+ "1$s to avoid plugin conflicts."
1901
  msgstr ""
1902
 
1903
+ #: plugin/class.seo-ultimate.php:1124
1904
+ msgid "new feature"
1905
  msgstr ""
1906
 
1907
+ #: plugin/class.seo-ultimate.php:1124
1908
+ msgid "new features"
1909
  msgstr ""
1910
 
1911
+ #: plugin/class.seo-ultimate.php:1125
1912
+ msgid "bugfix"
1913
  msgstr ""
1914
 
1915
+ #: plugin/class.seo-ultimate.php:1125
1916
+ msgid "bugfixes"
1917
  msgstr ""
1918
 
1919
+ #: plugin/class.seo-ultimate.php:1126
1920
+ msgid "improvement"
1921
  msgstr ""
1922
 
1923
+ #: plugin/class.seo-ultimate.php:1126
1924
+ msgid "improvements"
1925
  msgstr ""
1926
 
1927
+ #: plugin/class.seo-ultimate.php:1127
1928
+ msgid "security fix"
1929
  msgstr ""
1930
 
1931
+ #: plugin/class.seo-ultimate.php:1127
1932
+ msgid "security fixes"
1933
  msgstr ""
1934
 
1935
+ #: plugin/class.seo-ultimate.php:1158
1936
+ msgid "%d %s"
1937
  msgstr ""
1938
 
1939
+ #: plugin/class.seo-ultimate.php:1164
1940
+ msgid "Upgrade now to get %s. %s."
1941
  msgstr ""
1942
 
1943
+ #: plugin/class.seo-ultimate.php:1166
1944
+ msgid "View changelog"
1945
  msgstr ""
1946
 
1947
+ #: plugin/class.seo-ultimate.php:1253
1948
+ msgid "Active Modules: "
1949
  msgstr ""
1950
 
1951
+ #: plugin/class.seo-ultimate.php:1314
1952
+ msgid ""
1953
+ "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
1954
+ "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
1955
+ "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
1956
+ "to everyone."
1957
  msgstr ""
1958
 
1959
+ #: plugin/class.seo-ultimate.php:1424
1960
+ msgid "SEO Settings"
 
 
 
 
 
 
 
1961
  msgstr ""
1962
 
1963
  #: includes/jlwp/functions.php:56
1984
  msgid "Attachment"
1985
  msgstr ""
1986
 
1987
+ #: includes/jlwp/functions.php:141
1988
  msgid "backup your database"
1989
  msgstr ""
1990