SEO Ultimate - Version 6.8

Version Description

Download this release

Release Info

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

Code changes from version 6.7 to 6.8

modules/autolinks/content-autolinks-settings.php CHANGED
@@ -17,7 +17,7 @@ class SU_ContentAutolinksSettings extends SU_Module {
17
  function get_module_subtitle() { return __('Content Link Settings', 'seo-ultimate'); }
18
 
19
  function get_default_settings() {
20
- return array(
21
  'enable_self_links' => false
22
  , 'enable_current_url_links' => $this->get_setting('enable_self_links', false)
23
  , 'limit_lpp_value' => 5
@@ -26,11 +26,19 @@ class SU_ContentAutolinksSettings extends SU_Module {
26
  , 'limit_sitewide_lpa_value' => 50
27
  , 'linkfree_tags' => 'code,pre,kbd,h1,h2,h3,h4,h5,h6'
28
  );
 
 
 
 
29
  }
30
 
31
  function admin_page_contents() {
32
  $this->admin_form_table_start();
33
 
 
 
 
 
34
  $this->checkboxes(array(
35
  'enable_self_links' => __('Allow posts to link to themselves.', 'seo-ultimate')
36
  , 'enable_current_url_links' => __('Allow posts to link to the URL by which the visitor is accessing the post.', 'seo-ultimate')
17
  function get_module_subtitle() { return __('Content Link Settings', 'seo-ultimate'); }
18
 
19
  function get_default_settings() {
20
+ $defaults = array(
21
  'enable_self_links' => false
22
  , 'enable_current_url_links' => $this->get_setting('enable_self_links', false)
23
  , 'limit_lpp_value' => 5
26
  , 'limit_sitewide_lpa_value' => 50
27
  , 'linkfree_tags' => 'code,pre,kbd,h1,h2,h3,h4,h5,h6'
28
  );
29
+
30
+ $defaults = array_merge($defaults, array_fill_keys(suarr::aprintf(false, 'autolink_posttype_%s', get_post_types(array('public' => true), 'names')), true));
31
+
32
+ return $defaults;
33
  }
34
 
35
  function admin_page_contents() {
36
  $this->admin_form_table_start();
37
 
38
+ $this->checkboxes(
39
+ suarr::aprintf('autolink_posttype_%s', false, suarr::simplify(get_post_types(array('public' => true), 'objects'), 'name', array('labels', 'name')))
40
+ , __('Add Autolinks to...', 'seo-ultimate'));
41
+
42
  $this->checkboxes(array(
43
  'enable_self_links' => __('Allow posts to link to themselves.', 'seo-ultimate')
44
  , 'enable_current_url_links' => __('Allow posts to link to the URL by which the visitor is accessing the post.', 'seo-ultimate')
modules/autolinks/content-autolinks.php CHANGED
@@ -62,10 +62,15 @@ class SU_ContentAutolinks extends SU_Module {
62
  $i++;
63
  }
64
 
65
- if ($this->get_postmeta('disable_autolinks', $id)) return $content;
 
 
 
 
66
 
67
  $limit_enabled = $this->get_setting('limit_lpp', false);
68
- if ($limit_enabled && $limit < 1) return $content;
 
69
  $oldlimit = $limit;
70
 
71
  $lpa_limit_enabled = $this->get_setting('limit_lpa', false);
@@ -424,8 +429,13 @@ class SU_ContentAutolinks extends SU_Module {
424
  }
425
 
426
  function postmeta_fields($fields) {
 
 
427
  $fields['35|autolinks'] = $this->get_postmeta_textarea('autolinks', __('Incoming Autolink Anchors:<br /><em>(one per line)</em>', 'seo-ultimate'));
428
- $fields['38|disable_autolinks'] = $this->get_postmeta_checkbox('disable_autolinks', __('Don&#8217;t add autolinks to anchor texts found in this post.', 'seo-ultimate'), __('Autolink Exclusion:', 'seo-ultimate'));
 
 
 
429
  return $fields;
430
  }
431
 
62
  $i++;
63
  }
64
 
65
+ if (!$this->get_setting('autolink_posttype_' . get_post_type($id)))
66
+ return $content;
67
+
68
+ if ($this->get_postmeta('disable_autolinks', $id))
69
+ return $content;
70
 
71
  $limit_enabled = $this->get_setting('limit_lpp', false);
72
+ if ($limit_enabled && $limit < 1)
73
+ return $content;
74
  $oldlimit = $limit;
75
 
76
  $lpa_limit_enabled = $this->get_setting('limit_lpa', false);
429
  }
430
 
431
  function postmeta_fields($fields) {
432
+ $id = suwp::get_post_id();
433
+
434
  $fields['35|autolinks'] = $this->get_postmeta_textarea('autolinks', __('Incoming Autolink Anchors:<br /><em>(one per line)</em>', 'seo-ultimate'));
435
+
436
+ if ($id && $this->get_setting('autolink_posttype_' . get_post_type($id)))
437
+ $fields['38|disable_autolinks'] = $this->get_postmeta_checkbox('disable_autolinks', __('Don&#8217;t add autolinks to anchor texts found in this post.', 'seo-ultimate'), __('Autolink Exclusion:', 'seo-ultimate'));
438
+
439
  return $fields;
440
  }
441
 
modules/documentation.txt CHANGED
@@ -448,7 +448,7 @@ The Module Manager lets you customize the visibility and accessibility of each m
448
 
449
  * **How to use it:** Title Tag Rewriter enables recommended settings automatically, so you shouldn't need to change anything. If you do wish to edit the rewriting formats, you can do so using the textboxes below (the "Settings & Variables" tab includes additional information on this). You also have the option of overriding the `<title>` tag of an individual post or page by using the textboxes under the "Post" and "Page" tabs below, or by using the "Title Tag" textbox that Title Tag Rewriter adds to the post/page editors.
450
 
451
- = Settings & Variables =
452
 
453
  Various variables, surrounded in {curly brackets}, are provided for use in the title formats. All settings support the {blog} variable, which is replaced with the name of the blog, and the {tagline} variable, which is replaced with the blog tagline as set under `Settings > General`.
454
 
@@ -502,6 +502,24 @@ Here's information on each of the settings and its supported variables:
502
  * {num} -- The current page number (2, 3, etc).
503
  * {max} -- The total number of subpages available. Would usually be used like this: Page {num} of {max}
504
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
  = FAQ =
506
 
507
  * **Does the Title Tag Rewriter edit my post/page titles?**
@@ -509,11 +527,11 @@ Here's information on each of the settings and its supported variables:
509
 
510
  * **What's the difference between the "title" and the "title tag" of a post/page?**
511
  The "title" is the title of your post or page, and is displayed on your site and in your RSS feed. The title is also used in your `<title>` tag by default; however, you can override the value of just the `<title>` tag by using the "Title Tag" field in the "SEO Settings" box.
512
-
513
  = Troubleshooting =
514
 
515
- * **Why isn't the Title Tag Rewriter changing my `<title>` tags?**
516
- Try disabling other SEO plugins, as they may be conflicting with SEO Ultimate. Also, check to make sure your theme is [plugin-friendly](http://johnlamansky.com/wordpress/theme-plugin-hooks/).
517
 
518
 
519
 
448
 
449
  * **How to use it:** Title Tag Rewriter enables recommended settings automatically, so you shouldn't need to change anything. If you do wish to edit the rewriting formats, you can do so using the textboxes below (the "Settings & Variables" tab includes additional information on this). You also have the option of overriding the `<title>` tag of an individual post or page by using the textboxes under the "Post" and "Page" tabs below, or by using the "Title Tag" textbox that Title Tag Rewriter adds to the post/page editors.
450
 
451
+ = Formats & Variables =
452
 
453
  Various variables, surrounded in {curly brackets}, are provided for use in the title formats. All settings support the {blog} variable, which is replaced with the name of the blog, and the {tagline} variable, which is replaced with the blog tagline as set under `Settings > General`.
454
 
502
  * {num} -- The current page number (2, 3, etc).
503
  * {max} -- The total number of subpages available. Would usually be used like this: Page {num} of {max}
504
 
505
+ = Settings Help =
506
+
507
+ Here's documentation for the options on the "Settings" tab.
508
+
509
+ * **Rewrite Method** -- This setting controls the method by which Title Tag Rewriter edits your site's `<title>` tags.
510
+
511
+ * **Use output buffering** -- This is the "traditional" method that most SEO plugins use. With this method, SEO Ultimate will intercept your site's `<head>` tag section as it's being outputted, locate the `<title>` tag, edit its value, and then output the `<head>` data. The good thing about this method is that you don't have to edit your theme in any way, as SEO Ultimate will overwrite whatever your theme puts in your `<title>` tag. The bad thing is that this output interception takes a few extra milliseconds to complete. If you are concerned about performance, are comfortable editing your theme's `header.php` file, and will remember to edit the `header.php` file of any new themes you activate, you may want to try the filtering rewrite method.
512
+
513
+ * **Use filtering** -- With this method, SEO Ultimate will register itself with WordPress and will replace WordPress's `<title>` tag output with its own. This method can only edit the text that WordPress itself generates for the `<title>` tag; the filtering method can't edit anything extra your theme may add. For this reason, you need to edit your theme to make sure it's only pulling `<title>` tag data from WordPress and is not adding anything else.
514
+
515
+ Here's how to set up filtering:
516
+ 1. Click "Editor" under the "Appearance" menu (if you don't see this option, you may be on a WordPress multi-site environment and may not be able to use the filtering rewrite method)
517
+ 2. Click "Header (header.php)"
518
+ 3. Look for the `<title>` start tag and the `</title>` end tag
519
+ 4. Edit the text in between those tags so that it looks like this: `<title><?php wp_title(''); ?></title>`.
520
+ 5. Click "Update File"
521
+ 6. Return to the "Settings" tab of Title Tag Rewriter, select "Use filtering," and click "Save Changes"
522
+
523
  = FAQ =
524
 
525
  * **Does the Title Tag Rewriter edit my post/page titles?**
527
 
528
  * **What's the difference between the "title" and the "title tag" of a post/page?**
529
  The "title" is the title of your post or page, and is displayed on your site and in your RSS feed. The title is also used in your `<title>` tag by default; however, you can override the value of just the `<title>` tag by using the "Title Tag" field in the "SEO Settings" box.
530
+
531
  = Troubleshooting =
532
 
533
+ * **Why isn't Title Tag Rewriter changing my `<title>` tags?**
534
+ Try disabling other SEO plugins, as they may be conflicting with SEO Ultimate. If you're using the default "output buffering" rewrite method, check to make sure your theme is [plugin-friendly](http://johnlamansky.com/wordpress/theme-plugin-hooks/). If you're using the "filtering" rewrite method, check your theme's `header.php` file and make sure the `<title>` tag looks like this: `<title><?php wp_title(''); ?></title>`.
535
 
536
 
537
 
modules/titles/titles.php CHANGED
@@ -12,8 +12,18 @@ class SU_Titles extends SU_Module {
12
  function get_module_title() { return __('Title Tag Rewriter', 'seo-ultimate'); }
13
 
14
  function init() {
15
- add_action('template_redirect', array(&$this, 'before_header'), 0);
16
- add_action('wp_head', array(&$this, 'after_header'), 1000);
 
 
 
 
 
 
 
 
 
 
17
  add_filter('su_postmeta_help', array(&$this, 'postmeta_help'), 10);
18
  }
19
 
@@ -41,6 +51,10 @@ class SU_Titles extends SU_Module {
41
  function settings_tab() {
42
  $this->admin_form_table_start();
43
  $this->checkbox('terms_ucwords', __('Convert lowercase category/tag names to title case when used in title tags.', 'seo-ultimate'), __('Title Tag Variables', 'seo-ultimate'));
 
 
 
 
44
  $this->admin_form_table_end();
45
  }
46
 
@@ -62,6 +76,7 @@ class SU_Titles extends SU_Module {
62
  , 'title_paged' => __('{title} - Page {num}', 'seo-ultimate')
63
 
64
  , 'terms_ucwords' => true
 
65
  );
66
  }
67
 
@@ -220,7 +235,13 @@ class SU_Titles extends SU_Module {
220
  , 'nickname' => get_the_author_meta('nickname', $author_obj->ID)
221
  );
222
  else
223
- $author = array();
 
 
 
 
 
 
224
 
225
  $variables = array(
226
  '{blog}' => get_bloginfo('name')
12
  function get_module_title() { return __('Title Tag Rewriter', 'seo-ultimate'); }
13
 
14
  function init() {
15
+
16
+ switch ($this->get_setting('rewrite_method', 'ob')) {
17
+ case 'filter':
18
+ add_filter('wp_title', array(&$this, 'get_title'));
19
+ break;
20
+ case 'ob':
21
+ default:
22
+ add_action('template_redirect', array(&$this, 'before_header'), 0);
23
+ add_action('wp_head', array(&$this, 'after_header'), 1000);
24
+ break;
25
+ }
26
+
27
  add_filter('su_postmeta_help', array(&$this, 'postmeta_help'), 10);
28
  }
29
 
51
  function settings_tab() {
52
  $this->admin_form_table_start();
53
  $this->checkbox('terms_ucwords', __('Convert lowercase category/tag names to title case when used in title tags.', 'seo-ultimate'), __('Title Tag Variables', 'seo-ultimate'));
54
+ $this->radiobuttons('rewrite_method', array(
55
+ 'ob' => __('Use output buffering &mdash; no configuration required, but slower (default)', 'seo-ultimate')
56
+ , 'filter' => __('Use filtering &mdash; faster, but configuration required (see the &#8220;Settings Help&#8221; dropdown for details)', 'seo-ultimate')
57
+ ), __('Rewrite Method', 'seo-ultimate'));
58
  $this->admin_form_table_end();
59
  }
60
 
76
  , 'title_paged' => __('{title} - Page {num}', 'seo-ultimate')
77
 
78
  , 'terms_ucwords' => true
79
+ , 'rewrite_method' => 'ob'
80
  );
81
  }
82
 
235
  , 'nickname' => get_the_author_meta('nickname', $author_obj->ID)
236
  );
237
  else
238
+ $author = array(
239
+ 'username' => ''
240
+ , 'name' => ''
241
+ , 'firstname' => ''
242
+ , 'lastname' => ''
243
+ , 'nickname' => ''
244
+ );
245
 
246
  $variables = array(
247
  '{blog}' => get_bloginfo('name')
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === SEO Ultimate ===
2
  Contributors: SEO Design Solutions, JohnLamansky
3
- Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.2
5
  Tested up to: 3.2
6
- Stable tag: 6.7
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,21 +11,22 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
11
 
12
  = Recent Releases =
13
 
 
14
  * Version 6.7 adds 3 more features to Deeplink Juggernaut
15
  * Version 6.6 adds the SEO Ultimate Widgets module
16
  * Version 6.5 features Deeplink Juggernaut 3.0
17
  * Version 6.4 adds 3 more features to Deeplink Juggernaut
18
- * Version 6.3 adds support for the new `rel="canonical"` HTTP headers
19
 
20
  = Features =
21
 
22
  SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin with these powerful features:
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.
@@ -44,7 +45,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
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
-
48
  * **Deeplink Juggernaut** -- UPDATED in Version 6.7
49
  * Use the power of anchor text to boost your internal ranking SEO paradigm.
50
  * Searches your site's content for anchor texts you specify and automatically links them to a destination of your choosing. Lets you easily build internal links to URLs, posts, pages, attachments, custom post type items, categories, terms, post format archives, and custom taxonomy term archives.
@@ -59,9 +60,9 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
59
  * Import/export your links as CSV files.
60
  * Create links pointing to draft posts that will auto-enable when the post is published!
61
  * 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.
62
- * Lets you enable "Silo Linking" mode so that posts only link to other posts in the same category
63
-
64
- * **Canonicalizer** -- UPDATED in Version 6.3
65
  * Point search engines to preferred content access points with `<link rel="canonical" />` head tags and/or `Link: <url>; rel="canonical"` HTTP headers.
66
  * Go beyond the basic canonical tag functionality of WordPress 2.9+ with SEO Ultimate's support for category/tag/date/author archives.
67
  * Redirect requests for non-existent pagination with a simple checkbox.
@@ -71,7 +72,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
71
  * Find out what URLs are referring visitors to 404 errors.
72
  * The default settings hone in on the most important errors by only logging 404s that either have a referring URL or are generated by a search engine spider.
73
  * If desired, ignore 404s generated from specific URLs or wildcard URL patterns.
74
-
75
  * **Linkbox Inserter**
76
  * Encourage natural linkbuilding activity by adding textboxes to the end of your posts/pages that contain automatically-generated link HTML.
77
 
@@ -124,7 +125,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
124
  * Lets you change `/go/` to a directory of your choosing.
125
  * Link masks provide a modern replacement for the deprecated, nofollow-based "PageRank Sculpting" technique.
126
  * Perfect for affiliate marketers and SEO-savvy bloggers.
127
-
128
  * **Nofollow Manager**
129
  * Lets you maintain `rel="nofollow"` settings when migrating from other SEO plugins
130
 
@@ -150,7 +151,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
150
  * Includes icon integration with the WordPress 2.7+ menu and the Ozh Admin Drop Down Menu plugin.
151
  * Uses WordPress plugin security features like nonces, etc.
152
  * Includes an uninstaller that can delete the plugin's files and database entries if desired.
153
- * Lets you upgrade/downgrade the plugin to versions of your choosing (starting with 2.5).
154
 
155
  * **More Features In the Works**
156
  There are many additional features in development. Install SEO Ultimate today and use WordPress's automatic plugin updater to get new features as they're released.
@@ -192,7 +193,7 @@ To install the plugin manually:
192
 
193
  * **How do I disable the attribution link?**
194
  The attribution link is disabled by default. It only appears if you enable it. You can re-disable it the same place you enabled it: under `Settings > SEO Ultimate`.
195
-
196
  * **How do I uninstall SEO Ultimate?**
197
  1. Go to the `Settings > SEO Ultimate` admin page and click the "Uninstall" tab.
198
  2. Click the "Uninstall Now" button and click "Yes" to confirm. SEO Ultimate's files and database entries will be deleted.
@@ -253,6 +254,10 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
253
 
254
  == Changelog ==
255
 
 
 
 
 
256
  = Version 6.7 (July 16, 2011) =
257
  * Feature: Deeplink Juggernaut now lets you specify per-link sitewide quantity caps (just go to "Content Link Settings," check "Enable per-link customization of quantity limits," click "Save Changes," and then edit "Site Cap" fields under "Content Links")
258
  * Feature: Deeplink Juggernaut now lets you limit the number of times a post can link to the same destination
1
  === SEO Ultimate ===
2
  Contributors: SEO Design Solutions, JohnLamansky
3
+ Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.2
5
  Tested up to: 3.2
6
+ Stable tag: 6.8
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
11
 
12
  = Recent Releases =
13
 
14
+ * Version 6.8 adds rewrite method selection for Title Tag Rewriter
15
  * Version 6.7 adds 3 more features to Deeplink Juggernaut
16
  * Version 6.6 adds the SEO Ultimate Widgets module
17
  * Version 6.5 features Deeplink Juggernaut 3.0
18
  * Version 6.4 adds 3 more features to Deeplink Juggernaut
 
19
 
20
  = Features =
21
 
22
  SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin with these powerful features:
23
 
24
+ * **Title Tag Rewriter** -- UPDATED in Version 6.8
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
+ * Choose between two rewrite methods: "output buffering" or "filtering"
30
 
31
  * **Meta Description Editor**
32
  * Edit the `<meta>` description tags for posts, pages, attachments, categories, tags, post format archives, and the homepage.
45
  * 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.
46
  * Avoid duplicate content SEO issues with the recommended noindex settings (see built-in module documentation for details).
47
  * Give instructions to search engine spiders if desired (`noodp`, `noydir`, and `noarchive`).
48
+
49
  * **Deeplink Juggernaut** -- UPDATED in Version 6.7
50
  * Use the power of anchor text to boost your internal ranking SEO paradigm.
51
  * Searches your site's content for anchor texts you specify and automatically links them to a destination of your choosing. Lets you easily build internal links to URLs, posts, pages, attachments, custom post type items, categories, terms, post format archives, and custom taxonomy term archives.
60
  * Import/export your links as CSV files.
61
  * Create links pointing to draft posts that will auto-enable when the post is published!
62
  * 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.
63
+ * Lets you enable "Silo Linking" mode so that posts only link to other posts in the same category.
64
+
65
+ * **Canonicalizer**
66
  * Point search engines to preferred content access points with `<link rel="canonical" />` head tags and/or `Link: <url>; rel="canonical"` HTTP headers.
67
  * Go beyond the basic canonical tag functionality of WordPress 2.9+ with SEO Ultimate's support for category/tag/date/author archives.
68
  * Redirect requests for non-existent pagination with a simple checkbox.
72
  * Find out what URLs are referring visitors to 404 errors.
73
  * The default settings hone in on the most important errors by only logging 404s that either have a referring URL or are generated by a search engine spider.
74
  * If desired, ignore 404s generated from specific URLs or wildcard URL patterns.
75
+
76
  * **Linkbox Inserter**
77
  * Encourage natural linkbuilding activity by adding textboxes to the end of your posts/pages that contain automatically-generated link HTML.
78
 
125
  * Lets you change `/go/` to a directory of your choosing.
126
  * Link masks provide a modern replacement for the deprecated, nofollow-based "PageRank Sculpting" technique.
127
  * Perfect for affiliate marketers and SEO-savvy bloggers.
128
+
129
  * **Nofollow Manager**
130
  * Lets you maintain `rel="nofollow"` settings when migrating from other SEO plugins
131
 
151
  * Includes icon integration with the WordPress 2.7+ menu and the Ozh Admin Drop Down Menu plugin.
152
  * Uses WordPress plugin security features like nonces, etc.
153
  * Includes an uninstaller that can delete the plugin's files and database entries if desired.
154
+ * Lets you upgrade/downgrade the plugin to versions of your choosing.
155
 
156
  * **More Features In the Works**
157
  There are many additional features in development. Install SEO Ultimate today and use WordPress's automatic plugin updater to get new features as they're released.
193
 
194
  * **How do I disable the attribution link?**
195
  The attribution link is disabled by default. It only appears if you enable it. You can re-disable it the same place you enabled it: under `Settings > SEO Ultimate`.
196
+
197
  * **How do I uninstall SEO Ultimate?**
198
  1. Go to the `Settings > SEO Ultimate` admin page and click the "Uninstall" tab.
199
  2. Click the "Uninstall Now" button and click "Yes" to confirm. SEO Ultimate's files and database entries will be deleted.
254
 
255
  == Changelog ==
256
 
257
+ = Version 6.8 (July 18, 2011) =
258
+ * Feature: Title Tag Rewriter now supports `wp_title` filtering in addition to output buffering. A new Settings field lets you choose between the two rewrite methods.
259
+ * Feature: Deeplink Juggernaut now lets you control which post types have autolinks added to them
260
+
261
  = Version 6.7 (July 16, 2011) =
262
  * Feature: Deeplink Juggernaut now lets you specify per-link sitewide quantity caps (just go to "Content Link Settings," check "Enable per-link customization of quantity limits," click "Save Changes," and then edit "Site Cap" fields under "Content Links")
263
  * Feature: Deeplink Juggernaut now lets you limit the number of times a post can link to the same destination
seo-ultimate.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
- Version: 6.7
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
- * @version 6.7
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.1.3');
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
- define('SU_VERSION', '6.7');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/6.7');
54
 
55
  /********** INCLUDES **********/
56
 
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
+ Version: 6.8
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
+ * @version 6.8
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
+ define('SU_VERSION', '6.8');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/6.8');
54
 
55
  /********** INCLUDES **********/
56
 
seo-ultimate.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: SEO Ultimate 6.7\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
- "POT-Creation-Date: 2011-07-16 17:33: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,282 +19,355 @@ msgid ""
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
- #. #-#-#-#-# plugin.pot (SEO Ultimate 6.7) #-#-#-#-#
23
- #. Plugin Name of the plugin/theme
24
- #: plugin/class.seo-ultimate.php:767 modules/settings/settings.php:14
25
- msgid "SEO Ultimate"
26
  msgstr ""
27
 
28
- #: plugin/class.seo-ultimate.php:767
29
- msgid "SEO"
 
 
30
  msgstr ""
31
 
32
- #: plugin/class.seo-ultimate.php:956
33
- msgid ""
34
- "It looks like you made changes to the settings of this SEO Ultimate module. "
35
- "If you leave before saving, those changes will be lost."
36
  msgstr ""
37
 
38
- #: plugin/class.seo-ultimate.php:1050
39
- msgid "SEO Settings Help"
40
  msgstr ""
41
 
42
- #: plugin/class.seo-ultimate.php:1052
43
- msgid "The SEO Settings box lets you customize these settings:"
44
  msgstr ""
45
 
46
- #: plugin/class.seo-ultimate.php:1054
47
- msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
48
  msgstr ""
49
 
50
- #: plugin/class.seo-ultimate.php:1109
51
- msgid ""
52
- "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
53
- "1$s to avoid plugin conflicts."
54
  msgstr ""
55
 
56
- #: plugin/class.seo-ultimate.php:1151
57
- msgid "new module"
58
  msgstr ""
59
 
60
- #: plugin/class.seo-ultimate.php:1151
61
- msgid "new modules"
62
  msgstr ""
63
 
64
- #: plugin/class.seo-ultimate.php:1152
65
- msgid "new feature"
66
  msgstr ""
67
 
68
- #: plugin/class.seo-ultimate.php:1152
69
- msgid "new features"
70
  msgstr ""
71
 
72
- #: plugin/class.seo-ultimate.php:1153
73
- msgid "bugfix"
74
  msgstr ""
75
 
76
- #: plugin/class.seo-ultimate.php:1153
77
- msgid "bugfixes"
78
  msgstr ""
79
 
80
- #: plugin/class.seo-ultimate.php:1154
81
- msgid "improvement"
82
  msgstr ""
83
 
84
- #: plugin/class.seo-ultimate.php:1154
85
- msgid "improvements"
 
 
86
  msgstr ""
87
 
88
- #: plugin/class.seo-ultimate.php:1155
89
- msgid "security fix"
90
  msgstr ""
91
 
92
- #: plugin/class.seo-ultimate.php:1155
93
- msgid "security fixes"
 
94
  msgstr ""
95
 
96
- #: plugin/class.seo-ultimate.php:1186
97
- msgid "%d %s"
98
  msgstr ""
99
 
100
- #: plugin/class.seo-ultimate.php:1192
101
- msgid "Upgrade now to get %s. %s."
102
  msgstr ""
103
 
104
- #: plugin/class.seo-ultimate.php:1194
105
- msgid "View changelog"
106
  msgstr ""
107
 
108
- #: plugin/class.seo-ultimate.php:1250 modules/settings/uninstall.php:18
109
- msgid "Uninstall"
110
  msgstr ""
111
 
112
- #: plugin/class.seo-ultimate.php:1270
113
- msgid "Active Modules: "
114
  msgstr ""
115
 
116
- #: plugin/class.seo-ultimate.php:1331
117
  msgid ""
118
- "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
119
- "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
120
- "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
121
- "to everyone."
122
  msgstr ""
123
 
124
- #: plugin/class.seo-ultimate.php:1453
125
- msgid "SEO Settings"
126
  msgstr ""
127
 
128
- #: plugin/class.seo-ultimate.php:1671
129
- msgid "Home"
 
 
 
130
  msgstr ""
131
 
132
- #: plugin/class.seo-ultimate.php:1672 modules/class.su-module.php:2588
133
- #: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:34
134
- msgid "Blog Homepage"
135
  msgstr ""
136
 
137
- #: plugin/class.seo-ultimate.php:1740
138
- msgid "Author Archives"
139
  msgstr ""
140
 
141
- #: plugin/class.seo-ultimate.php:1746 modules/class.su-module.php:2592
142
- msgid "Author"
143
  msgstr ""
144
 
145
- #: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
146
- msgid "%s and %s"
147
  msgstr ""
148
 
149
- #: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
150
- msgid ", "
 
 
151
  msgstr ""
152
 
153
- #: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
154
- msgid "%s, and %s"
155
  msgstr ""
156
 
157
- #: plugin/class.su-installer.php:9
158
- msgid "Package not available."
159
  msgstr ""
160
 
161
- #: plugin/class.su-installer.php:12
162
- msgid "Removing the current version of the plugin&#8230;"
163
  msgstr ""
164
 
165
- #: plugin/class.su-installer.php:13
166
- msgid "Could not remove the current version of the plugin."
 
 
167
  msgstr ""
168
 
169
- #: plugin/class.su-installer.php:17
170
- msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
171
  msgstr ""
172
 
173
- #: plugin/class.su-installer.php:18
174
- msgid "Unpacking the downgrade&#8230;"
175
  msgstr ""
176
 
177
- #: plugin/class.su-installer.php:19
178
- msgid "Installing the downgrade&#8230;"
179
  msgstr ""
180
 
181
- #: plugin/class.su-installer.php:20
182
- msgid "Plugin downgrade failed."
183
  msgstr ""
184
 
185
- #: plugin/class.su-installer.php:21
186
- msgid "Plugin downgraded successfully."
187
  msgstr ""
188
 
189
- #: plugin/class.su-installer.php:24
190
- msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
  msgstr ""
192
 
193
- #: plugin/class.su-installer.php:25
194
- msgid "Unpacking the reinstall&#8230;"
 
 
195
  msgstr ""
196
 
197
- #: plugin/class.su-installer.php:26
198
- msgid "Reinstalling the current version&#8230;"
199
  msgstr ""
200
 
201
- #: plugin/class.su-installer.php:27
202
- msgid "Plugin reinstallation failed."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  msgstr ""
204
 
205
- #: plugin/class.su-installer.php:28
206
- msgid "Plugin reinstalled successfully."
207
  msgstr ""
208
 
209
- #: plugin/class.su-installer.php:32
210
- msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
211
  msgstr ""
212
 
213
- #: plugin/class.su-installer.php:33
214
- msgid "Unpacking the upgrade&#8230;"
215
  msgstr ""
216
 
217
- #: plugin/class.su-installer.php:34
218
- msgid "Installing the upgrade&#8230;"
219
  msgstr ""
220
 
221
- #: plugin/class.su-installer.php:35
222
- msgid "Plugin upgrade failed."
223
  msgstr ""
224
 
225
- #: plugin/class.su-installer.php:36
226
- msgid "Plugin upgraded successfully."
227
  msgstr ""
228
 
229
- #: modules/more-links/more-links.php:12
230
- msgid "More Link Customizer"
231
  msgstr ""
232
 
233
- #: modules/more-links/more-links.php:30
234
- msgid "Default More Link Text"
235
  msgstr ""
236
 
237
- #: modules/more-links/more-links.php:51
238
- msgid "More Link Text:"
239
  msgstr ""
240
 
241
- #: modules/misc/misc.php:11
242
- msgid "Miscellaneous"
243
  msgstr ""
244
 
245
- #: modules/misc/misc.php:14
246
- msgid ""
247
- "The Miscellaneous page contains modules that don&#8217;t have enough "
248
- "settings to warrant their own separate admin pages."
249
  msgstr ""
250
 
251
- #: modules/sds-blog/sds-blog.php:12
252
- msgid "Whitepapers"
253
  msgstr ""
254
 
255
- #: modules/sds-blog/sds-blog.php:13
256
- msgid "SEO Design Solutions Whitepapers"
257
  msgstr ""
258
 
259
- #. #-#-#-#-# plugin.pot (SEO Ultimate 6.7) #-#-#-#-#
260
- #. Author of the plugin/theme
261
- #: modules/sds-blog/sds-blog.php:49
262
- msgid "SEO Design Solutions"
263
  msgstr ""
264
 
265
- #: modules/sds-blog/sds-blog.php:50
266
- msgid ""
267
- "The search engine optimization articles below are loaded from the website of "
268
- "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
269
- "an article&#8217;s title to read it."
270
  msgstr ""
271
 
272
- #: modules/linkbox/linkbox.php:12
273
- msgid "Linkbox Inserter"
274
  msgstr ""
275
 
276
- #: modules/linkbox/linkbox.php:18
277
- msgid "Link to this post!"
278
  msgstr ""
279
 
280
- #: modules/linkbox/linkbox.php:45
281
- msgid "At the end of posts"
282
  msgstr ""
283
 
284
- #: modules/linkbox/linkbox.php:46
285
- msgid "At the end of pages"
286
  msgstr ""
287
 
288
- #: modules/linkbox/linkbox.php:47
289
- msgid "When called by the su_linkbox hook"
 
290
  msgstr ""
291
 
292
- #: modules/linkbox/linkbox.php:48
293
- msgid "Display linkboxes..."
 
294
  msgstr ""
295
 
296
- #: modules/linkbox/linkbox.php:49
297
- msgid "Linkbox HTML"
 
298
  msgstr ""
299
 
300
  #: modules/widgets/widgets.php:12
@@ -351,280 +424,189 @@ msgstr ""
351
  msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
352
  msgstr ""
353
 
354
- #: modules/import-aiosp/import-aiosp.php:12
355
- msgid "Import from All in One SEO Pack"
356
- msgstr ""
357
-
358
- #: modules/import-aiosp/import-aiosp.php:13
359
- msgid "AIOSP Import"
360
- msgstr ""
361
-
362
- #: modules/import-aiosp/import-aiosp.php:15
363
- msgid "All in One SEO Pack"
364
- msgstr ""
365
-
366
- #: modules/import-aiosp/import-aiosp.php:16
367
- msgid "AIOSP"
368
  msgstr ""
369
 
370
- #: modules/import-aiosp/import-aiosp.php:17
371
- msgid "Import post data (custom title tags and meta tags)."
372
  msgstr ""
373
 
374
- #: modules/import-aiosp/import-aiosp.php:21
375
- msgid ""
376
- "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
377
- "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
378
- "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
379
- "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
380
- "to be currently installed or activated for the import to take place."
381
  msgstr ""
382
 
383
- #: modules/import-aiosp/import-aiosp.php:23
384
- msgid ""
385
- "The import tool can only move over data from AIOSP version 1.6 or above. If "
386
- "you use an older version of AIOSP, you should update to the latest version "
387
- "first and run AIOSP&#8217;s upgrade process."
388
  msgstr ""
389
 
390
- #: modules/class.su-importmodule.php:49
391
- msgid "Import Post Fields"
392
  msgstr ""
393
 
394
- #: modules/class.su-importmodule.php:50
395
- msgid ""
396
- "Post fields store the SEO data for your posts/pages (i.e. your custom title "
397
- "tags, meta descriptions, and meta keywords). If you provided custom titles/"
398
- "descriptions/keywords to %s, this importer can move that data over to SEO "
399
- "Ultimate."
400
  msgstr ""
401
 
402
- #: modules/class.su-importmodule.php:53
403
- msgid "Conflict Resolution Mode"
404
  msgstr ""
405
 
406
- #: modules/class.su-importmodule.php:54
407
  msgid ""
408
- "What should the import tool do if it tries to move over a post&#8217;s %s "
409
- "data, but different data already exists in the corresponding SEO Ultimate "
410
- "fields?"
411
- msgstr ""
412
-
413
- #: modules/class.su-importmodule.php:56
414
- msgid "Skip that post and leave all data as-is (default)."
415
- msgstr ""
416
-
417
- #: modules/class.su-importmodule.php:57
418
- msgid "Delete the SEO Ultimate data and replace it with the %s data."
419
  msgstr ""
420
 
421
- #: modules/class.su-importmodule.php:58
422
- msgid "Keep the SEO Ultimate data and delete the %s data."
423
  msgstr ""
424
 
425
- #: modules/class.su-importmodule.php:61
426
- msgid "Deletion Preference"
427
  msgstr ""
428
 
429
- #: modules/class.su-importmodule.php:62
430
- msgid ""
431
- "When the migration tool successfully copies a post&#8217;s %1$s data over to "
432
- "SEO Ultimate, what should it do with the old %1$s data?"
433
  msgstr ""
434
 
435
- #: modules/class.su-importmodule.php:64
436
- msgid "Delete the %s data."
437
  msgstr ""
438
 
439
- #: modules/class.su-importmodule.php:65
440
- msgid "Leave behind the duplicate %s data (default)."
441
  msgstr ""
442
 
443
- #: modules/class.su-importmodule.php:72
444
- msgid "Import Now"
445
  msgstr ""
446
 
447
- #: modules/class.su-importmodule.php:75
448
  msgid ""
449
- "The import cannot be undone. It is your responsibility to <a href=\"%s\" "
450
- "target=\"_blank\">backup your database</a> before proceeding!"
451
- msgstr ""
452
-
453
- #: modules/class.su-importmodule.php:84
454
- msgid "Import complete."
455
- msgstr ""
456
-
457
- #: modules/class.su-importmodule.php:90
458
- msgid "Return to import page"
459
- msgstr ""
460
-
461
- #: modules/class.su-importmodule.php:93
462
- msgid "Return to settings page"
463
- msgstr ""
464
-
465
- #: modules/class.su-importmodule.php:96
466
- msgid "Return to SEO page"
467
  msgstr ""
468
 
469
- #: modules/class.su-importmodule.php:116
470
- msgid "Deactivated %s."
471
  msgstr ""
472
 
473
- #: modules/class.su-importmodule.php:174
474
- msgid "Imported a total of %d fields for one post/page/revision."
475
- msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
476
- msgstr[0] ""
477
- msgstr[1] ""
478
-
479
- #: modules/class.su-importmodule.php:180
480
- msgid "Skipped one post with disabled %2$s data."
481
- msgid_plural "Skipped %1$d posts with disabled %2$s data."
482
- msgstr[0] ""
483
- msgstr[1] ""
484
-
485
- #: modules/class.su-importmodule.php:186
486
  msgid ""
487
- "Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
488
- "settings you chose."
489
- msgid_plural ""
490
- "Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
491
- "settings you chose."
492
- msgstr[0] ""
493
- msgstr[1] ""
494
-
495
- #: modules/class.su-importmodule.php:192
496
- msgid "Deleted one %2$s field, as instructed by the settings you chose."
497
- msgid_plural ""
498
- "Deleted %1$d %2$s fields, as instructed by the settings you chose."
499
- msgstr[0] ""
500
- msgstr[1] ""
501
-
502
- #: modules/titles/titles.php:12
503
- msgid "Title Tag Rewriter"
504
- msgstr ""
505
-
506
- #: modules/titles/titles.php:23 modules/meta/meta-descriptions.php:24
507
- msgid "Default Formats"
508
- msgstr ""
509
-
510
- #: modules/titles/titles.php:24 modules/404s/fofs-settings.php:17
511
- msgid "Settings"
512
- msgstr ""
513
-
514
- #: modules/titles/titles.php:30
515
- msgid "Title Tag"
516
  msgstr ""
517
 
518
- #: modules/titles/titles.php:43
519
  msgid ""
520
- "Convert lowercase category/tag names to title case when used in title tags."
 
521
  msgstr ""
522
 
523
- #: modules/titles/titles.php:43
524
- msgid "Title Tag Variables"
525
  msgstr ""
526
 
527
- #: modules/titles/titles.php:51
528
  msgid "{blog}"
529
  msgstr ""
530
 
531
- #: modules/titles/titles.php:52
532
  msgid "{post} | {blog}"
533
  msgstr ""
534
 
535
- #: modules/titles/titles.php:53
536
  msgid "{page} | {blog}"
537
  msgstr ""
538
 
539
- #: modules/titles/titles.php:54
540
  msgid "{category} | {blog}"
541
  msgstr ""
542
 
543
- #: modules/titles/titles.php:55
544
  msgid "{tag} | {blog}"
545
  msgstr ""
546
 
547
- #: modules/titles/titles.php:56
548
  msgid "Archives for {month} {day}, {year} | {blog}"
549
  msgstr ""
550
 
551
- #: modules/titles/titles.php:57
552
  msgid "Archives for {month} {year} | {blog}"
553
  msgstr ""
554
 
555
- #: modules/titles/titles.php:58
556
  msgid "Archives for {year} | {blog}"
557
  msgstr ""
558
 
559
- #: modules/titles/titles.php:59
560
  msgid "Posts by {author} | {blog}"
561
  msgstr ""
562
 
563
- #: modules/titles/titles.php:60
564
  msgid "Search Results for {query} | {blog}"
565
  msgstr ""
566
 
567
- #: modules/titles/titles.php:61
568
  msgid "404 Not Found | {blog}"
569
  msgstr ""
570
 
571
- #: modules/titles/titles.php:62
572
  msgid "{title} - Page {num}"
573
  msgstr ""
574
 
575
- #: modules/titles/titles.php:70
576
  msgid "Blog Homepage Title"
577
  msgstr ""
578
 
579
- #: modules/titles/titles.php:71
580
  msgid "Post Title Format"
581
  msgstr ""
582
 
583
- #: modules/titles/titles.php:72
584
  msgid "Page Title Format"
585
  msgstr ""
586
 
587
- #: modules/titles/titles.php:73
588
  msgid "Category Title Format"
589
  msgstr ""
590
 
591
- #: modules/titles/titles.php:74
592
  msgid "Tag Title Format"
593
  msgstr ""
594
 
595
- #: modules/titles/titles.php:75
596
  msgid "Day Archive Title Format"
597
  msgstr ""
598
 
599
- #: modules/titles/titles.php:76
600
  msgid "Month Archive Title Format"
601
  msgstr ""
602
 
603
- #: modules/titles/titles.php:77
604
  msgid "Year Archive Title Format"
605
  msgstr ""
606
 
607
- #: modules/titles/titles.php:78
608
  msgid "Author Archive Title Format"
609
  msgstr ""
610
 
611
- #: modules/titles/titles.php:79
612
  msgid "Search Title Format"
613
  msgstr ""
614
 
615
- #: modules/titles/titles.php:80
616
  msgid "404 Title Format"
617
  msgstr ""
618
 
619
- #: modules/titles/titles.php:81
620
  msgid "Pagination Title Format"
621
  msgstr ""
622
 
623
- #: modules/titles/titles.php:307
624
  msgid "Title Tag:"
625
  msgstr ""
626
 
627
- #: modules/titles/titles.php:312
628
  msgid ""
629
  "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
630
  "tag. The title appears in visitors&#8217; title bars and in search engine "
@@ -632,240 +614,188 @@ msgid ""
632
  "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
633
  msgstr ""
634
 
635
- #: modules/class.su-module.php:375
636
- msgid ""
637
- "(Note: This translated documentation was designed for an older version of "
638
- "SEO Ultimate and may be outdated.)"
639
- msgstr ""
640
-
641
- #: modules/class.su-module.php:658
642
- msgid ""
643
- "All the modules on this page have been disabled. You can re-enable them "
644
- "using the <a href=\"%s\">Module Manager</a>."
645
- msgstr ""
646
-
647
- #: modules/class.su-module.php:1017
648
- msgctxt "Dropdown Title"
649
- msgid "%s &mdash; %s"
650
- msgstr ""
651
-
652
- #: modules/class.su-module.php:1045
653
- msgid "%1$s | %2$s %3$s by %4$s"
654
- msgstr ""
655
-
656
- #: modules/class.su-module.php:1124
657
- msgid "Your site currently doesn&#8217;t have any public items of this type."
658
- msgstr ""
659
-
660
- #: modules/class.su-module.php:1208
661
- msgid "&laquo;"
662
- msgstr ""
663
-
664
- #: modules/class.su-module.php:1209
665
- msgid "&raquo;"
666
  msgstr ""
667
 
668
- #: modules/class.su-module.php:1216
669
- msgid "Displaying %s&#8211;%s of %s"
670
  msgstr ""
671
 
672
- #: modules/class.su-module.php:1229 modules/404s/fofs-log.php:113
673
- msgid "Actions"
 
 
674
  msgstr ""
675
 
676
- #: modules/class.su-module.php:1230
677
- msgid "ID"
678
  msgstr ""
679
 
680
- #: modules/class.su-module.php:1264
681
- msgid "View"
682
  msgstr ""
683
 
684
- #: modules/class.su-module.php:1266
685
- msgid "Edit"
686
  msgstr ""
687
 
688
- #: modules/class.su-module.php:1430
689
- msgid "Settings updated."
690
  msgstr ""
691
 
692
- #: modules/class.su-module.php:1451
693
- msgid "Save Changes"
694
  msgstr ""
695
 
696
- #: modules/class.su-module.php:1962
697
  msgid ""
698
- "Are you sure you want to replace the textbox contents with this default "
699
- "value?"
700
- msgstr ""
701
-
702
- #: modules/class.su-module.php:1978 modules/settings/settings-data.php:23
703
- msgid "Reset"
704
- msgstr ""
705
-
706
- #: modules/class.su-module.php:2612
707
- msgid "Type a URL or start typing the name of the item you want to link to"
708
- msgstr ""
709
-
710
- #: modules/class.su-module.php:2624
711
- msgid "Remove this destination"
712
- msgstr ""
713
-
714
- #: modules/class.su-module.php:2624
715
- msgid "X"
716
- msgstr ""
717
-
718
- #: modules/noindex/noindex.php:12
719
- msgid "Noindex Manager"
720
  msgstr ""
721
 
722
- #: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
723
- #: modules/noindex/noindex.php:67
724
- msgid "Noindex"
725
  msgstr ""
726
 
727
- #: modules/noindex/noindex.php:43 modules/meta/meta-keywords.php:33
728
- msgid "Default Values"
729
  msgstr ""
730
 
731
- #: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
732
- #: modules/autolinks/footer-autolinks.php:218
733
- #: modules/autolinks/content-autolinks.php:362
734
- msgid "Nofollow"
735
  msgstr ""
736
 
737
- #: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
738
- msgid "Use default"
 
739
  msgstr ""
740
 
741
- #: modules/noindex/noindex.php:63
742
- msgid "noindex"
743
  msgstr ""
744
 
745
- #: modules/noindex/noindex.php:64
746
- msgid "index"
747
  msgstr ""
748
 
749
- #: modules/noindex/noindex.php:74
750
- msgid "nofollow"
751
  msgstr ""
752
 
753
- #: modules/noindex/noindex.php:75
754
- msgid "follow"
 
 
755
  msgstr ""
756
 
757
- #: modules/noindex/noindex.php:89
758
- msgid ""
759
- "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
760
- "block indexing of the entire site, regardless of which options are set below."
761
  msgstr ""
762
 
763
- #: modules/noindex/noindex.php:92
764
- msgid "Prevent indexing of..."
765
  msgstr ""
766
 
767
- #: modules/noindex/noindex.php:93
768
- msgid "Administration back-end pages"
769
  msgstr ""
770
 
771
- #: modules/noindex/noindex.php:94
772
- msgid "Author archives"
 
773
  msgstr ""
774
 
775
- #: modules/noindex/noindex.php:95
776
- msgid "Blog search pages"
777
  msgstr ""
778
 
779
- #: modules/noindex/noindex.php:96
780
- msgid "Category archives"
 
781
  msgstr ""
782
 
783
- #: modules/noindex/noindex.php:97
784
- msgid "Comment feeds"
785
  msgstr ""
786
 
787
- #: modules/noindex/noindex.php:98
788
- msgid "Comment subpages"
789
  msgstr ""
790
 
791
- #: modules/noindex/noindex.php:99
792
- msgid "Date-based archives"
793
  msgstr ""
794
 
795
- #: modules/noindex/noindex.php:100
796
- msgid "Subpages of the homepage"
797
  msgstr ""
798
 
799
- #: modules/noindex/noindex.php:101
800
- msgid "Tag archives"
801
  msgstr ""
802
 
803
- #: modules/noindex/noindex.php:102
804
- msgid "User login/registration pages"
805
  msgstr ""
806
 
807
- #: modules/noindex/noindex.php:165
808
- msgid "Noindex: Tell search engines not to index this webpage."
809
  msgstr ""
810
 
811
- #: modules/noindex/noindex.php:166
812
- msgid "Nofollow: Tell search engines not to spider links on this webpage."
813
  msgstr ""
814
 
815
- #: modules/noindex/noindex.php:167
816
- msgid "Meta Robots Tag:"
817
  msgstr ""
818
 
819
- #: modules/meta/meta-descriptions.php:12
820
- msgid "Meta Description Editor"
821
  msgstr ""
822
 
823
- #: modules/meta/meta-descriptions.php:13
824
- msgid "Meta Descriptions"
825
  msgstr ""
826
 
827
- #: modules/meta/meta-descriptions.php:31
828
- msgid "Meta Description"
829
  msgstr ""
830
 
831
- #: modules/meta/meta-descriptions.php:48
832
- msgid "Post Description Format"
833
  msgstr ""
834
 
835
- #: modules/meta/meta-descriptions.php:49
836
- msgid "Category Description Format"
837
  msgstr ""
838
 
839
- #: modules/meta/meta-descriptions.php:50
840
- msgid "Post Tag Description Format"
841
  msgstr ""
842
 
843
- #: modules/meta/meta-descriptions.php:57
844
- msgid "Blog Homepage Meta Description"
845
  msgstr ""
846
 
847
- #: modules/meta/meta-descriptions.php:59
848
- msgid "Use this blog&#8217s tagline as the default homepage description."
849
  msgstr ""
850
 
851
- #: modules/meta/meta-descriptions.php:60
852
- msgid "Default Value"
853
  msgstr ""
854
 
855
- #: modules/meta/meta-descriptions.php:122
856
- msgid "Meta Description:"
857
  msgstr ""
858
 
859
- #: modules/meta/meta-descriptions.php:125
860
- msgid "You&#8217;ve entered %s characters. Most search engines use up to 140."
861
  msgstr ""
862
 
863
- #: modules/meta/meta-descriptions.php:133
864
- msgid ""
865
- "<strong>Description</strong> &mdash; The value of the meta description tag. "
866
- "The description will often appear underneath the title in search engine "
867
- "results. Writing an accurate, attention-grabbing description for every post "
868
- "is important to ensuring a good search results clickthrough rate."
869
  msgstr ""
870
 
871
  #: modules/meta/meta-keywords.php:12
@@ -876,6 +806,10 @@ msgstr ""
876
  msgid "Meta Keywords"
877
  msgstr ""
878
 
 
 
 
 
879
  #: modules/meta/meta-keywords.php:56
880
  msgid "The %d most commonly-used words"
881
  msgstr ""
@@ -955,323 +889,346 @@ msgstr ""
955
  msgid "Don&#8217t cache or archive this site."
956
  msgstr ""
957
 
958
- #: modules/canonical/canonical.php:12
959
- msgid "Canonicalizer"
960
  msgstr ""
961
 
962
- #: modules/canonical/canonical.php:39
963
- msgid ""
964
- "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> meta tags."
965
  msgstr ""
966
 
967
- #: modules/canonical/canonical.php:40
968
- msgid "Send <code>rel=&quot;canonical&quot;</code> HTTP headers."
969
  msgstr ""
970
 
971
- #: modules/canonical/canonical.php:41
972
- msgid "Redirect requests for nonexistent pagination."
973
  msgstr ""
974
 
975
- #: modules/link-nofollow/link-nofollow.php:12
976
- msgid "Nofollow Manager"
977
  msgstr ""
978
 
979
- #: modules/link-nofollow/link-nofollow.php:53
980
- msgid "Add the nofollow attribute to..."
981
  msgstr ""
982
 
983
- #: modules/link-nofollow/link-nofollow.php:55
984
- msgid "Adjacent post links"
985
  msgstr ""
986
 
987
- #: modules/link-nofollow/link-nofollow.php:56
988
- msgid "Category links (after posts)"
989
  msgstr ""
990
 
991
- #: modules/link-nofollow/link-nofollow.php:57
992
- msgid "Category links (in lists)"
993
  msgstr ""
994
 
995
- #: modules/link-nofollow/link-nofollow.php:58
996
- msgid "Comment anchor links"
997
  msgstr ""
998
 
999
- #: modules/link-nofollow/link-nofollow.php:59
1000
- msgid "Comment feed links"
1001
  msgstr ""
1002
 
1003
- #: modules/link-nofollow/link-nofollow.php:60
1004
- msgid "Date-based archive links"
 
 
 
 
1005
  msgstr ""
1006
 
1007
- #: modules/link-nofollow/link-nofollow.php:61
1008
- msgid "Pagination navigation links (all)"
1009
  msgstr ""
1010
 
1011
- #: modules/link-nofollow/link-nofollow.php:62
1012
- msgid "Pagination navigation links (on blog home only)"
1013
  msgstr ""
1014
 
1015
- #: modules/link-nofollow/link-nofollow.php:63
1016
- msgid "&#8220;Read more&#8221; links"
1017
  msgstr ""
1018
 
1019
- #: modules/link-nofollow/link-nofollow.php:64
1020
- msgid "Registration link"
1021
  msgstr ""
1022
 
1023
- #: modules/link-nofollow/link-nofollow.php:65
1024
- msgid "Login link"
1025
  msgstr ""
1026
 
1027
- #: modules/link-nofollow/link-nofollow.php:66
1028
- msgid "Tag links (after posts)"
 
 
 
 
 
1029
  msgstr ""
1030
 
1031
- #: modules/link-nofollow/link-nofollow.php:67
1032
- msgid "Tag links (in lists and clouds)"
 
 
 
1033
  msgstr ""
1034
 
1035
- #: modules/link-nofollow/link-nofollow.php:76
1036
- msgid "When displaying page lists, nofollow links to this page"
1037
  msgstr ""
1038
 
1039
- #: modules/link-nofollow/link-nofollow.php:76
1040
- msgid "Nofollow:"
1041
  msgstr ""
1042
 
1043
- #: modules/competition-queries/competition-queries.php:12
1044
- msgid "Competition Researcher"
 
 
1045
  msgstr ""
1046
 
1047
- #: modules/competition-queries/competition-queries.php:13
1048
- msgid "Comp. Researcher"
 
 
 
1049
  msgstr ""
1050
 
1051
- #: modules/competition-queries/competition-queries.php:17
 
 
 
 
 
 
 
 
1052
  msgid ""
1053
- "The Competition Researcher provides you with easy access to various search "
1054
- "engine tools which you can use to research multiple search queries or URLs."
 
 
 
1055
  msgstr ""
1056
 
1057
- #: modules/competition-queries/competition-queries.php:21
1058
- msgid "Step 1: Choose Your Research Tool"
 
 
1059
  msgstr ""
1060
 
1061
- #: modules/competition-queries/competition-queries.php:25
1062
- msgid "Keywords"
1063
  msgstr ""
1064
 
1065
- #: modules/competition-queries/competition-queries.php:25
1066
- msgid "Normal Search"
1067
  msgstr ""
1068
 
1069
- #: modules/competition-queries/competition-queries.php:25
1070
- msgid "Find out how many pages contain the words in each query"
1071
  msgstr ""
1072
 
1073
- #: modules/competition-queries/competition-queries.php:26
1074
- msgid "Phrase Match"
1075
  msgstr ""
1076
 
1077
- #: modules/competition-queries/competition-queries.php:26
1078
- msgid ""
1079
- "Find out how many &#8220;actual&#8221; pages are competing for each query"
1080
  msgstr ""
1081
 
1082
- #: modules/competition-queries/competition-queries.php:27
1083
- msgid "Allinanchor"
1084
  msgstr ""
1085
 
1086
- #: modules/competition-queries/competition-queries.php:27
1087
- msgid "Find out which sites have the most links for each query"
1088
  msgstr ""
1089
 
1090
- #: modules/competition-queries/competition-queries.php:28
1091
- msgid "Allintitle"
1092
  msgstr ""
1093
 
1094
- #: modules/competition-queries/competition-queries.php:28
1095
- msgid ""
1096
- "Find out which sites have the highest relevance in the title for each query"
1097
  msgstr ""
1098
 
1099
- #: modules/competition-queries/competition-queries.php:29
1100
- msgid "Allintext"
1101
  msgstr ""
1102
 
1103
- #: modules/competition-queries/competition-queries.php:29
1104
- msgid "Find out which sites have the most relevant content/text on their pages"
1105
  msgstr ""
1106
 
1107
- #: modules/competition-queries/competition-queries.php:30
1108
- msgid "Allinurl"
1109
  msgstr ""
1110
 
1111
- #: modules/competition-queries/competition-queries.php:30
1112
- msgid ""
1113
- "Find out which sites have the most relevant naming conventions for each "
1114
- "keyword"
1115
  msgstr ""
1116
 
1117
- #: modules/competition-queries/competition-queries.php:32
1118
- msgid "URLs"
1119
  msgstr ""
1120
 
1121
- #: modules/competition-queries/competition-queries.php:32
1122
- msgid "Site"
1123
  msgstr ""
1124
 
1125
- #: modules/competition-queries/competition-queries.php:32
1126
- msgid "Find out how many pages are indexed for each domain"
1127
  msgstr ""
1128
 
1129
- #: modules/competition-queries/competition-queries.php:33
1130
- #: modules/competition-queries/competition-queries.php:38
1131
- msgid "Inbound Links"
1132
  msgstr ""
1133
 
1134
- #: modules/competition-queries/competition-queries.php:33
1135
- msgid "Find out how many sites link to the domains"
1136
  msgstr ""
1137
 
1138
- #: modules/competition-queries/competition-queries.php:34
1139
- #: modules/competition-queries/competition-queries.php:38
1140
- msgid "Outbound Links"
1141
  msgstr ""
1142
 
1143
- #: modules/competition-queries/competition-queries.php:34
1144
- msgid "Find out how many sites the domains link to"
1145
  msgstr ""
1146
 
1147
- #: modules/competition-queries/competition-queries.php:57
1148
- msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
1149
  msgstr ""
1150
 
1151
- #: modules/competition-queries/competition-queries.php:59
1152
- msgid "(Type in one per line)"
1153
  msgstr ""
1154
 
1155
- #: modules/competition-queries/competition-queries.php:61
1156
- msgid "Step 3: Set Options and Submit"
1157
  msgstr ""
1158
 
1159
- #: modules/competition-queries/competition-queries.php:63
1160
- #: modules/site-keyword-queries/site-keyword-queries.php:28
1161
- msgid "Show 100 results per page"
1162
  msgstr ""
1163
 
1164
- #: modules/competition-queries/competition-queries.php:65
1165
- #: modules/site-keyword-queries/site-keyword-queries.php:30
1166
- msgid "Use Google&#8217;s minimal mode"
1167
  msgstr ""
1168
 
1169
- #: modules/competition-queries/competition-queries.php:71
1170
- #: modules/site-keyword-queries/site-keyword-queries.php:33
1171
- msgid "Submit"
 
 
 
 
 
 
 
 
 
1172
  msgstr ""
1173
 
1174
- #: modules/site-keyword-queries/site-keyword-queries.php:12
1175
- msgid "Internal Relevance Researcher"
1176
  msgstr ""
1177
 
1178
- #: modules/site-keyword-queries/site-keyword-queries.php:13
1179
- msgid "Int. Rel. Researcher"
1180
  msgstr ""
1181
 
1182
- #: modules/site-keyword-queries/site-keyword-queries.php:21
1183
- msgid "Step 1: Enter Keywords"
1184
  msgstr ""
1185
 
1186
- #: modules/site-keyword-queries/site-keyword-queries.php:23
1187
- msgid "(Type one keyword per line)"
1188
  msgstr ""
1189
 
1190
- #: modules/site-keyword-queries/site-keyword-queries.php:25
1191
- msgid "Step 2: Set Options and Submit"
1192
  msgstr ""
1193
 
1194
- #: modules/site-keyword-queries/site-keyword-queries.php:27
1195
- msgid "Put keywords in quotes"
1196
  msgstr ""
1197
 
1198
- #: modules/user-code/user-code.php:12
1199
- msgid "Code Inserter"
1200
  msgstr ""
1201
 
1202
- #: modules/user-code/user-code.php:27
1203
- msgid "Everywhere"
1204
  msgstr ""
1205
 
1206
- #: modules/user-code/user-code.php:34
1207
- msgid "&lt;head&gt; Tag"
1208
  msgstr ""
1209
 
1210
- #: modules/user-code/user-code.php:35
1211
- msgid "Before Item Content"
1212
  msgstr ""
1213
 
1214
- #: modules/user-code/user-code.php:36
1215
- msgid "After Item Content"
1216
  msgstr ""
1217
 
1218
- #: modules/user-code/user-code.php:37
1219
- msgid "Footer"
1220
  msgstr ""
1221
 
1222
- #: modules/user-code/user-code.php:51
1223
- msgid "Code Inserter module"
1224
  msgstr ""
1225
 
1226
- #: modules/modules/modules.php:12
1227
- msgid "Module Manager"
1228
  msgstr ""
1229
 
1230
- #: modules/modules/modules.php:13
1231
- msgid "Modules"
1232
  msgstr ""
1233
 
1234
- #: modules/modules/modules.php:41
1235
- msgid ""
1236
- "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
1237
- "&#8221; By default, most of these modules are listed in the &#8220;"
1238
- "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
1239
- "you can view documentation by clicking the tabs in the upper-right-hand "
1240
- "corner of your administration screen."
1241
  msgstr ""
1242
 
1243
- #: modules/modules/modules.php:43
1244
- msgid ""
1245
- "The Module Manager lets you disable or hide modules you don&#8217;t use. "
1246
- "You can also silence modules from displaying bubble alerts on the menu."
1247
  msgstr ""
1248
 
1249
- #: modules/modules/modules.php:47
1250
- msgid "Modules updated."
1251
  msgstr ""
1252
 
1253
- #: modules/modules/modules.php:52
1254
- msgid "Status"
1255
  msgstr ""
1256
 
1257
- #: modules/modules/modules.php:53
1258
- msgid "Module"
1259
  msgstr ""
1260
 
1261
- #: modules/modules/modules.php:66
1262
- msgid "Enabled"
1263
  msgstr ""
1264
 
1265
- #: modules/modules/modules.php:67
1266
- msgid "Silenced"
1267
  msgstr ""
1268
 
1269
- #: modules/modules/modules.php:68
1270
- msgid "Hidden"
1271
  msgstr ""
1272
 
1273
- #: modules/modules/modules.php:69
1274
- msgid "Disabled"
1275
  msgstr ""
1276
 
1277
  #: modules/permalinks/permalinks.php:15
@@ -1292,6 +1249,16 @@ msgstr ""
1292
  msgid "Remove the URL bases of..."
1293
  msgstr ""
1294
 
 
 
 
 
 
 
 
 
 
 
1295
  #: modules/files/files.php:14
1296
  msgid "File Editor"
1297
  msgstr ""
@@ -1347,12 +1314,49 @@ msgid ""
1347
  "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1348
  msgstr ""
1349
 
1350
- #: modules/settings/settings.php:12
1351
- msgid "Plugin Settings"
1352
  msgstr ""
1353
 
1354
- #: modules/settings/settings.php:13
1355
- msgid "SEO Ultimate Plugin Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1356
  msgstr ""
1357
 
1358
  #: modules/settings/settings-data.php:16
@@ -1523,10 +1527,48 @@ msgstr ""
1523
  msgid "Restore Default Settings"
1524
  msgstr ""
1525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1526
  #: modules/settings/uninstall.php:17
1527
  msgid "Uninstaller"
1528
  msgstr ""
1529
 
 
 
 
 
1530
  #: modules/settings/uninstall.php:27
1531
  msgid ""
1532
  "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
@@ -1563,26 +1605,6 @@ msgstr ""
1563
  msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1564
  msgstr ""
1565
 
1566
- #: modules/settings/global-settings.php:18
1567
- msgid "Global Settings"
1568
- msgstr ""
1569
-
1570
- #: modules/settings/global-settings.php:40
1571
- msgid "Enable nofollow&#8217;d attribution link"
1572
- msgstr ""
1573
-
1574
- #: modules/settings/global-settings.php:41
1575
- msgid "Enable attribution link CSS styling"
1576
- msgstr ""
1577
-
1578
- #: modules/settings/global-settings.php:42
1579
- msgid "Notify me about unnecessary active plugins"
1580
- msgstr ""
1581
-
1582
- #: modules/settings/global-settings.php:43
1583
- msgid "Insert comments around HTML code insertions"
1584
- msgstr ""
1585
-
1586
  #: modules/settings/install.php:18
1587
  msgid "Upgrade/Downgrade/Reinstall"
1588
  msgstr ""
@@ -1653,345 +1675,335 @@ msgid ""
1653
  msgstr ""
1654
 
1655
  #: modules/settings/install.php:108
1656
- msgid "Your Current Version"
1657
- msgstr ""
1658
-
1659
- #: modules/settings/install.php:110
1660
- msgid "Latest Version"
1661
- msgstr ""
1662
-
1663
- #: modules/settings/install.php:130
1664
- msgid ""
1665
- "You do not have sufficient permissions to upgrade/downgrade plugins for this "
1666
- "blog."
1667
- msgstr ""
1668
-
1669
- #: modules/settings/install.php:140
1670
- msgid "Downgrade to SEO Ultimate %s"
1671
- msgstr ""
1672
-
1673
- #: modules/settings/install.php:143
1674
- msgid "Reinstall SEO Ultimate %s"
1675
- msgstr ""
1676
-
1677
- #: modules/settings/install.php:146
1678
- msgid "Upgrade to SEO Ultimate %s"
1679
- msgstr ""
1680
-
1681
- #: modules/404s/fofs.php:11
1682
- msgid "404 Monitor"
1683
- msgstr ""
1684
-
1685
- #: modules/404s/fofs-log.php:16
1686
- msgid "404 Monitor Log"
1687
- msgstr ""
1688
-
1689
- #: modules/404s/fofs-log.php:17
1690
- msgid "Log"
1691
- msgstr ""
1692
-
1693
- #: modules/404s/fofs-log.php:114
1694
- msgid "Hits"
1695
  msgstr ""
1696
 
1697
- #: modules/404s/fofs-log.php:115
1698
- msgid "URL with 404 Error"
1699
  msgstr ""
1700
 
1701
- #: modules/404s/fofs-log.php:116
1702
- msgid "Date of Most Recent Hit"
 
 
1703
  msgstr ""
1704
 
1705
- #: modules/404s/fofs-log.php:117
1706
- msgid "Referers"
1707
  msgstr ""
1708
 
1709
- #: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
1710
- msgid "User Agents"
1711
  msgstr ""
1712
 
1713
- #: modules/404s/fofs-log.php:134
1714
- msgid ""
1715
- "New 404 errors will not be recorded because 404 logging is disabled on the "
1716
- "Settings tab."
1717
  msgstr ""
1718
 
1719
- #: modules/404s/fofs-log.php:141
1720
- msgid "The log entry was successfully deleted."
1721
  msgstr ""
1722
 
1723
- #: modules/404s/fofs-log.php:143
1724
- msgid "This log entry has already been deleted."
1725
  msgstr ""
1726
 
1727
- #: modules/404s/fofs-log.php:152
1728
- msgid "The log was successfully cleared."
1729
  msgstr ""
1730
 
1731
- #: modules/404s/fofs-log.php:156
1732
- msgid "No 404 errors in the log."
1733
  msgstr ""
1734
 
1735
- #: modules/404s/fofs-log.php:180
1736
- msgid "Open URL in new window (will not be logged)"
1737
  msgstr ""
1738
 
1739
- #: modules/404s/fofs-log.php:181
1740
- msgid "Query Google for cached version of URL (opens in new window)"
1741
  msgstr ""
1742
 
1743
- #: modules/404s/fofs-log.php:182
1744
- msgid "Remove this URL from the log"
1745
  msgstr ""
1746
 
1747
- #: modules/404s/fofs-log.php:185
1748
- msgid "%s at %s"
 
1749
  msgstr ""
1750
 
1751
- #: modules/404s/fofs-log.php:189
1752
- msgid "View list of referring URLs"
 
 
1753
  msgstr ""
1754
 
1755
- #: modules/404s/fofs-log.php:190
1756
- msgid "View list of user agents"
1757
  msgstr ""
1758
 
1759
- #: modules/404s/fofs-log.php:200
1760
- msgid "Referring URLs"
1761
  msgstr ""
1762
 
1763
- #: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
1764
- msgid "Hide list"
1765
  msgstr ""
1766
 
1767
- #: modules/404s/fofs-log.php:252
1768
- msgid "Are you sure you want to delete all 404 log entries?"
1769
  msgstr ""
1770
 
1771
- #: modules/404s/fofs-log.php:254
1772
- msgid "Clear Log"
1773
  msgstr ""
1774
 
1775
- #: modules/404s/fofs-settings.php:16
1776
- msgid "404 Monitor Settings"
 
 
1777
  msgstr ""
1778
 
1779
- #: modules/404s/fofs-settings.php:37
1780
- msgid "Continue monitoring for new 404 errors"
1781
  msgstr ""
1782
 
1783
- #: modules/404s/fofs-settings.php:37
1784
- msgid "Monitoring Settings"
1785
  msgstr ""
1786
 
1787
- #: modules/404s/fofs-settings.php:39
1788
- msgid "Only log these types of 404 errors:"
1789
  msgstr ""
1790
 
1791
- #: modules/404s/fofs-settings.php:40
1792
- msgid "404s generated by search engine spiders"
1793
  msgstr ""
1794
 
1795
- #: modules/404s/fofs-settings.php:41
1796
- msgid "404s with referring URLs"
1797
  msgstr ""
1798
 
1799
- #: modules/404s/fofs-settings.php:42
1800
- msgid "Log Restrictions"
1801
  msgstr ""
1802
 
1803
- #: modules/404s/fofs-settings.php:43
1804
- msgid "Maximum Log Entries"
1805
  msgstr ""
1806
 
1807
- #: modules/404s/fofs-settings.php:44
1808
- msgid "URLs to Ignore"
1809
  msgstr ""
1810
 
1811
- #: modules/404s/fofs-settings.php:44
1812
- msgid "(Use * as wildcard)"
1813
  msgstr ""
1814
 
1815
- #: modules/slugs/slugs.php:12
1816
- msgid "Slug Optimizer"
1817
  msgstr ""
1818
 
1819
- #: modules/slugs/slugs.php:16
1820
- msgid "Words to Remove"
1821
  msgstr ""
1822
 
1823
- #: modules/internal-link-aliases/internal-link-aliases.php:20
1824
- msgid "Link Mask Generator"
1825
  msgstr ""
1826
 
1827
- #: modules/internal-link-aliases/internal-link-aliases.php:27
1828
- msgid "Alias Directory"
1829
  msgstr ""
1830
 
1831
- #: modules/internal-link-aliases/internal-link-aliases.php:29
1832
- msgid "Nofollow aliased links"
1833
  msgstr ""
1834
 
1835
- #: modules/internal-link-aliases/internal-link-aliases.php:29
1836
- msgid "Link Attributes"
1837
  msgstr ""
1838
 
1839
- #: modules/internal-link-aliases/internal-link-aliases.php:49
1840
- msgid "Link Masks:"
 
 
 
 
 
 
1841
  msgstr ""
1842
 
1843
- #: modules/internal-link-aliases/internal-link-aliases.php:52
1844
- msgid "URL"
1845
  msgstr ""
1846
 
1847
- #: modules/internal-link-aliases/internal-link-aliases.php:52
1848
- msgid "Mask URL"
1849
  msgstr ""
1850
 
1851
- #: modules/internal-link-aliases/internal-link-aliases.php:83
 
1852
  msgid ""
1853
- "You can stop search engines from following a link by typing in a mask for "
1854
- "its URL."
1855
- msgstr ""
1856
-
1857
- #: modules/internal-link-aliases/internal-link-aliases.php:160
1858
- msgid "Added by Link Alias Generator (LAG) module"
1859
  msgstr ""
1860
 
1861
- #: modules/internal-link-aliases/internal-link-aliases.php:171
1862
- msgid "End LAG"
 
1863
  msgstr ""
1864
 
1865
- #: modules/rich-snippets/rich-snippets.php:12
1866
- msgid "Rich Snippet Creator"
 
1867
  msgstr ""
1868
 
1869
- #: modules/rich-snippets/rich-snippets.php:17
1870
- msgid ""
1871
- "Reviews\n"
1872
- "Review"
1873
  msgstr ""
1874
 
1875
- #: modules/rich-snippets/rich-snippets.php:28
1876
- msgid "Data Format"
 
1877
  msgstr ""
1878
 
1879
- #: modules/rich-snippets/rich-snippets.php:29
1880
- msgid "Categories/Tags That Indicate Reviews"
 
1881
  msgstr ""
1882
 
1883
- #: modules/rich-snippets/rich-snippets.php:37
1884
- msgid "Microformats (recommended)"
1885
  msgstr ""
1886
 
1887
- #: modules/rich-snippets/rich-snippets.php:43
1888
- msgid "HTML5 Microdata"
 
1889
  msgstr ""
1890
 
1891
- #: modules/rich-snippets/rich-snippets.php:49
1892
- msgid "RDFa"
 
1893
  msgstr ""
1894
 
1895
- #: modules/rich-snippets/rich-snippets.php:62
1896
- #: modules/rich-snippets/rich-snippets.php:224
1897
- msgid "Review"
1898
  msgstr ""
1899
 
1900
- #: modules/rich-snippets/rich-snippets.php:70
1901
- msgid "Item Reviewed"
1902
  msgstr ""
1903
 
1904
- #: modules/rich-snippets/rich-snippets.php:78
1905
- msgid "Star Rating"
1906
  msgstr ""
1907
 
1908
- #: modules/rich-snippets/rich-snippets.php:83
1909
- msgid "Review Author"
1910
  msgstr ""
1911
 
1912
- #: modules/rich-snippets/rich-snippets.php:89
1913
- msgid "Date Reviewed"
 
 
 
 
 
 
 
1914
  msgstr ""
1915
 
1916
- #: modules/rich-snippets/rich-snippets.php:223
1917
- #: modules/rich-snippets/rich-snippets.php:232
1918
- msgid "None"
1919
  msgstr ""
1920
 
1921
- #: modules/rich-snippets/rich-snippets.php:225
1922
- msgid "Rich Snippet Type:"
1923
  msgstr ""
1924
 
1925
- #: modules/rich-snippets/rich-snippets.php:229
1926
- msgid "Name of Reviewed Item:"
1927
  msgstr ""
1928
 
1929
- #: modules/rich-snippets/rich-snippets.php:233
1930
- msgid "0.5 stars"
1931
  msgstr ""
1932
 
1933
- #: modules/rich-snippets/rich-snippets.php:234
1934
- msgid "1 star"
 
1935
  msgstr ""
1936
 
1937
- #: modules/rich-snippets/rich-snippets.php:235
1938
- msgid "1.5 stars"
1939
  msgstr ""
1940
 
1941
- #: modules/rich-snippets/rich-snippets.php:236
1942
- msgid "2 stars"
1943
  msgstr ""
1944
 
1945
- #: modules/rich-snippets/rich-snippets.php:237
1946
- msgid "2.5 stars"
1947
  msgstr ""
1948
 
1949
- #: modules/rich-snippets/rich-snippets.php:238
1950
- msgid "3 stars"
 
 
1951
  msgstr ""
1952
 
1953
- #: modules/rich-snippets/rich-snippets.php:239
1954
- msgid "3.5 stars"
 
 
1955
  msgstr ""
1956
 
1957
- #: modules/rich-snippets/rich-snippets.php:240
1958
- msgid "4 stars"
 
 
1959
  msgstr ""
1960
 
1961
- #: modules/rich-snippets/rich-snippets.php:241
1962
- msgid "4.5 stars"
1963
  msgstr ""
1964
 
1965
- #: modules/rich-snippets/rich-snippets.php:242
1966
- msgid "5 stars"
 
 
1967
  msgstr ""
1968
 
1969
- #: modules/rich-snippets/rich-snippets.php:243
1970
- msgid "Star Rating for Reviewed Item:"
1971
  msgstr ""
1972
 
1973
- #: modules/sharing-buttons/sharing-buttons.php:12
1974
- msgid "Sharing Facilitator"
1975
  msgstr ""
1976
 
1977
- #: modules/sharing-buttons/sharing-buttons.php:25
1978
- msgid "Bookmark and Share"
1979
  msgstr ""
1980
 
1981
- #: modules/sharing-buttons/sharing-buttons.php:39
1982
- msgid "Which provider would you like to use for your sharing buttons?"
1983
  msgstr ""
1984
 
1985
- #: modules/sharing-buttons/sharing-buttons.php:41
1986
- msgid "None; disable sharing buttons"
1987
  msgstr ""
1988
 
1989
- #: modules/sharing-buttons/sharing-buttons.php:42
1990
- msgid "Use the ShareThis button"
1991
  msgstr ""
1992
 
1993
- #: modules/sharing-buttons/sharing-buttons.php:43
1994
- msgid "Use the AddThis button"
1995
  msgstr ""
1996
 
1997
  #: modules/autolinks/footer-autolinks-settings.php:16
@@ -2018,185 +2030,192 @@ msgstr ""
2018
  msgid "Link Separator"
2019
  msgstr ""
2020
 
2021
- #: modules/autolinks/footer-autolinks.php:16
2022
- msgid "Footer Deeplink Juggernaut"
2023
  msgstr ""
2024
 
2025
- #: modules/autolinks/footer-autolinks.php:133
2026
- #: modules/autolinks/content-autolinks.php:254
2027
- msgid ""
2028
- "The Content Links section of Deeplink Juggernaut lets you automatically link "
2029
- "a certain word or phrase in your post/page content to a URL you specify."
2030
  msgstr ""
2031
 
2032
- #: modules/autolinks/footer-autolinks.php:165
2033
- #: modules/autolinks/content-autolinks.php:308
2034
- msgid "Edit Existing Links"
2035
  msgstr ""
2036
 
2037
- #: modules/autolinks/footer-autolinks.php:169
2038
- #: modules/autolinks/content-autolinks.php:312
2039
- msgid "Add a New Link"
2040
  msgstr ""
2041
 
2042
- #: modules/autolinks/footer-autolinks.php:177
2043
- msgid "Link Location (optional)"
2044
  msgstr ""
2045
 
2046
- #: modules/autolinks/footer-autolinks.php:179
2047
- #: modules/autolinks/content-autolinks.php:323
2048
- msgid "Anchor Text"
2049
  msgstr ""
2050
 
2051
- #: modules/autolinks/footer-autolinks.php:180
2052
- #: modules/autolinks/content-autolinks.php:324
2053
- msgid "Destination"
2054
  msgstr ""
2055
 
2056
- #: modules/autolinks/footer-autolinks.php:181
2057
- #: modules/autolinks/content-autolinks.php:325
2058
- msgid "Title Attribute"
2059
  msgstr ""
2060
 
2061
- #: modules/autolinks/footer-autolinks.php:182
2062
- #: modules/autolinks/content-autolinks.php:328
2063
- msgid "Options"
2064
  msgstr ""
2065
 
2066
- #: modules/autolinks/footer-autolinks.php:184
2067
- #: modules/autolinks/content-autolinks.php:330
2068
- msgid "Delete"
2069
  msgstr ""
2070
 
2071
- #: modules/autolinks/footer-autolinks.php:205
2072
- msgid "Match child content"
2073
  msgstr ""
2074
 
2075
- #: modules/autolinks/footer-autolinks.php:207
2076
- msgid "Negative match"
2077
  msgstr ""
2078
 
2079
- #: modules/autolinks/footer-autolinks.php:220
2080
- #: modules/autolinks/content-autolinks.php:364
2081
- msgid "New window"
2082
  msgstr ""
2083
 
2084
- #: modules/autolinks/autolinks.php:11
2085
- msgid "Deeplink Juggernaut"
2086
  msgstr ""
2087
 
2088
- #: modules/autolinks/autolinks.php:18
2089
- msgid ""
2090
- "Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
2091
- "(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
2092
- "WordPress 3.2.) If you aren&#8217;t sure how to upgrade PHP, please ask your "
2093
- "webhost. In the meantime, you can return to an older version of Deeplink "
2094
- "Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
2095
- "a> to SEO Ultimate 5.9."
2096
  msgstr ""
2097
 
2098
- #: modules/autolinks/content-autolinks-settings.php:16
2099
- msgid "Content Deeplink Juggernaut Settings"
2100
  msgstr ""
2101
 
2102
- #: modules/autolinks/content-autolinks-settings.php:17
2103
- msgid "Content Link Settings"
2104
  msgstr ""
2105
 
2106
- #: modules/autolinks/content-autolinks-settings.php:35
2107
- msgid "Allow posts to link to themselves."
2108
  msgstr ""
2109
 
2110
- #: modules/autolinks/content-autolinks-settings.php:36
2111
- msgid ""
2112
- "Allow posts to link to the URL by which the visitor is accessing the post."
2113
  msgstr ""
2114
 
2115
- #: modules/autolinks/content-autolinks-settings.php:37
2116
- msgid "Self-Linking"
2117
  msgstr ""
2118
 
2119
- #: modules/autolinks/content-autolinks-settings.php:40
2120
- msgid "Enable per-link customization of quantity limits."
2121
  msgstr ""
2122
 
2123
- #: modules/autolinks/content-autolinks-settings.php:41
2124
- msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
2125
  msgstr ""
2126
 
2127
- #: modules/autolinks/content-autolinks-settings.php:42
2128
  msgid ""
2129
- "Don&#8217;t link the same anchor text any more than %d times per post/page/"
2130
- "etc."
2131
  msgstr ""
2132
 
2133
- #: modules/autolinks/content-autolinks-settings.php:43
2134
- msgid ""
2135
- "Don&#8217;t link the same anchor text any more than %d times across my "
2136
- "entire site."
2137
  msgstr ""
2138
 
2139
- #: modules/autolinks/content-autolinks-settings.php:44
2140
- msgid ""
2141
- "Don&#8217;t link to the same destination any more than %d times per post/"
2142
- "page/etc."
2143
  msgstr ""
2144
 
2145
- #: modules/autolinks/content-autolinks-settings.php:45
2146
- msgid "Quantity Restrictions"
2147
  msgstr ""
2148
 
2149
- #: modules/autolinks/content-autolinks-settings.php:47
2150
  msgid ""
2151
- "Don&#8217;t add autolinks to text within these HTML tags <em>(separate with "
2152
- "commas)</em>:"
2153
  msgstr ""
2154
 
2155
- #: modules/autolinks/content-autolinks-settings.php:47
2156
- msgid "Tag Restrictions"
2157
  msgstr ""
2158
 
2159
- #: modules/autolinks/content-autolinks-settings.php:55
2160
- msgid "%s can only link to internal destinations that share at least one..."
2161
  msgstr ""
2162
 
2163
- #: modules/autolinks/content-autolinks-settings.php:68
2164
- msgid "Siloing"
2165
  msgstr ""
2166
 
2167
- #: modules/autolinks/content-autolinks.php:16
2168
- msgid "Content Deeplink Juggernaut"
2169
  msgstr ""
2170
 
2171
- #: modules/autolinks/content-autolinks.php:17
2172
- msgid "Content Links"
2173
  msgstr ""
2174
 
2175
- #: modules/autolinks/content-autolinks.php:327
2176
- msgid "Site Cap"
2177
  msgstr ""
2178
 
2179
- #: modules/autolinks/content-autolinks.php:427
2180
- msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
2181
  msgstr ""
2182
 
2183
- #: modules/autolinks/content-autolinks.php:428
2184
- msgid "Don&#8217;t add autolinks to anchor texts found in this post."
2185
  msgstr ""
2186
 
2187
- #: modules/autolinks/content-autolinks.php:428
2188
- msgid "Autolink Exclusion:"
 
 
 
 
 
 
 
 
 
 
 
 
2189
  msgstr ""
2190
 
2191
- #: modules/autolinks/content-autolinks.php:433
 
 
 
 
 
 
 
 
2192
  msgid ""
2193
- "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
2194
- "into this box, Deeplink Juggernaut will search for that anchor in all your "
2195
- "other posts and link it to this post. For example, if the post you&#8217;re "
2196
- "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
2197
- "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
2198
- "Deeplink Juggernaut will automatically build internal links to this post "
2199
- "with that anchor text (assuming other posts contain that text)."
 
 
 
 
 
 
 
 
 
2200
  msgstr ""
2201
 
2202
  #: includes/jlwp/functions.php:60
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEO Ultimate 6.8\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
+ "POT-Creation-Date: 2011-07-18 16:38:37+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
+ #: modules/class.su-module.php:375
23
+ msgid ""
24
+ "(Note: This translated documentation was designed for an older version of "
25
+ "SEO Ultimate and may be outdated.)"
26
  msgstr ""
27
 
28
+ #: modules/class.su-module.php:658
29
+ msgid ""
30
+ "All the modules on this page have been disabled. You can re-enable them "
31
+ "using the <a href=\"%s\">Module Manager</a>."
32
  msgstr ""
33
 
34
+ #: modules/class.su-module.php:1017
35
+ msgctxt "Dropdown Title"
36
+ msgid "%s &mdash; %s"
 
37
  msgstr ""
38
 
39
+ #: modules/class.su-module.php:1045
40
+ msgid "%1$s | %2$s %3$s by %4$s"
41
  msgstr ""
42
 
43
+ #: modules/class.su-module.php:1124
44
+ msgid "Your site currently doesn&#8217;t have any public items of this type."
45
  msgstr ""
46
 
47
+ #: modules/class.su-module.php:1208
48
+ msgid "&laquo;"
49
  msgstr ""
50
 
51
+ #: modules/class.su-module.php:1209
52
+ msgid "&raquo;"
 
 
53
  msgstr ""
54
 
55
+ #: modules/class.su-module.php:1216
56
+ msgid "Displaying %s&#8211;%s of %s"
57
  msgstr ""
58
 
59
+ #: modules/class.su-module.php:1229 modules/404s/fofs-log.php:113
60
+ msgid "Actions"
61
  msgstr ""
62
 
63
+ #: modules/class.su-module.php:1230
64
+ msgid "ID"
65
  msgstr ""
66
 
67
+ #: modules/class.su-module.php:1264
68
+ msgid "View"
69
  msgstr ""
70
 
71
+ #: modules/class.su-module.php:1266
72
+ msgid "Edit"
73
  msgstr ""
74
 
75
+ #: modules/class.su-module.php:1430
76
+ msgid "Settings updated."
77
  msgstr ""
78
 
79
+ #: modules/class.su-module.php:1451
80
+ msgid "Save Changes"
81
  msgstr ""
82
 
83
+ #: modules/class.su-module.php:1962
84
+ msgid ""
85
+ "Are you sure you want to replace the textbox contents with this default "
86
+ "value?"
87
  msgstr ""
88
 
89
+ #: modules/class.su-module.php:1978 modules/settings/settings-data.php:23
90
+ msgid "Reset"
91
  msgstr ""
92
 
93
+ #: modules/class.su-module.php:2588 modules/meta/meta-keywords.php:34
94
+ #: modules/meta/meta-descriptions.php:25 plugin/class.seo-ultimate.php:1672
95
+ msgid "Blog Homepage"
96
  msgstr ""
97
 
98
+ #: modules/class.su-module.php:2592 plugin/class.seo-ultimate.php:1746
99
+ msgid "Author"
100
  msgstr ""
101
 
102
+ #: modules/class.su-module.php:2612
103
+ msgid "Type a URL or start typing the name of the item you want to link to"
104
  msgstr ""
105
 
106
+ #: modules/class.su-module.php:2624
107
+ msgid "Remove this destination"
108
  msgstr ""
109
 
110
+ #: modules/class.su-module.php:2624
111
+ msgid "X"
112
  msgstr ""
113
 
114
+ #: modules/class.su-importmodule.php:49
115
+ msgid "Import Post Fields"
116
  msgstr ""
117
 
118
+ #: modules/class.su-importmodule.php:50
119
  msgid ""
120
+ "Post fields store the SEO data for your posts/pages (i.e. your custom title "
121
+ "tags, meta descriptions, and meta keywords). If you provided custom titles/"
122
+ "descriptions/keywords to %s, this importer can move that data over to SEO "
123
+ "Ultimate."
124
  msgstr ""
125
 
126
+ #: modules/class.su-importmodule.php:53
127
+ msgid "Conflict Resolution Mode"
128
  msgstr ""
129
 
130
+ #: modules/class.su-importmodule.php:54
131
+ msgid ""
132
+ "What should the import tool do if it tries to move over a post&#8217;s %s "
133
+ "data, but different data already exists in the corresponding SEO Ultimate "
134
+ "fields?"
135
  msgstr ""
136
 
137
+ #: modules/class.su-importmodule.php:56
138
+ msgid "Skip that post and leave all data as-is (default)."
 
139
  msgstr ""
140
 
141
+ #: modules/class.su-importmodule.php:57
142
+ msgid "Delete the SEO Ultimate data and replace it with the %s data."
143
  msgstr ""
144
 
145
+ #: modules/class.su-importmodule.php:58
146
+ msgid "Keep the SEO Ultimate data and delete the %s data."
147
  msgstr ""
148
 
149
+ #: modules/class.su-importmodule.php:61
150
+ msgid "Deletion Preference"
151
  msgstr ""
152
 
153
+ #: modules/class.su-importmodule.php:62
154
+ msgid ""
155
+ "When the migration tool successfully copies a post&#8217;s %1$s data over to "
156
+ "SEO Ultimate, what should it do with the old %1$s data?"
157
  msgstr ""
158
 
159
+ #: modules/class.su-importmodule.php:64
160
+ msgid "Delete the %s data."
161
  msgstr ""
162
 
163
+ #: modules/class.su-importmodule.php:65
164
+ msgid "Leave behind the duplicate %s data (default)."
165
  msgstr ""
166
 
167
+ #: modules/class.su-importmodule.php:72
168
+ msgid "Import Now"
169
  msgstr ""
170
 
171
+ #: modules/class.su-importmodule.php:75
172
+ msgid ""
173
+ "The import cannot be undone. It is your responsibility to <a href=\"%s\" "
174
+ "target=\"_blank\">backup your database</a> before proceeding!"
175
  msgstr ""
176
 
177
+ #: modules/class.su-importmodule.php:84
178
+ msgid "Import complete."
179
  msgstr ""
180
 
181
+ #: modules/class.su-importmodule.php:90
182
+ msgid "Return to import page"
183
  msgstr ""
184
 
185
+ #: modules/class.su-importmodule.php:93
186
+ msgid "Return to settings page"
187
  msgstr ""
188
 
189
+ #: modules/class.su-importmodule.php:96
190
+ msgid "Return to SEO page"
191
  msgstr ""
192
 
193
+ #: modules/class.su-importmodule.php:116
194
+ msgid "Deactivated %s."
195
  msgstr ""
196
 
197
+ #: modules/class.su-importmodule.php:174
198
+ msgid "Imported a total of %d fields for one post/page/revision."
199
+ msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
200
+ msgstr[0] ""
201
+ msgstr[1] ""
202
+
203
+ #: modules/class.su-importmodule.php:180
204
+ msgid "Skipped one post with disabled %2$s data."
205
+ msgid_plural "Skipped %1$d posts with disabled %2$s data."
206
+ msgstr[0] ""
207
+ msgstr[1] ""
208
+
209
+ #: modules/class.su-importmodule.php:186
210
+ msgid ""
211
+ "Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
212
+ "settings you chose."
213
+ msgid_plural ""
214
+ "Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
215
+ "settings you chose."
216
+ msgstr[0] ""
217
+ msgstr[1] ""
218
+
219
+ #: modules/class.su-importmodule.php:192
220
+ msgid "Deleted one %2$s field, as instructed by the settings you chose."
221
+ msgid_plural ""
222
+ "Deleted %1$d %2$s fields, as instructed by the settings you chose."
223
+ msgstr[0] ""
224
+ msgstr[1] ""
225
+
226
+ #: modules/rich-snippets/rich-snippets.php:12
227
+ msgid "Rich Snippet Creator"
228
  msgstr ""
229
 
230
+ #: modules/rich-snippets/rich-snippets.php:17
231
+ msgid ""
232
+ "Reviews\n"
233
+ "Review"
234
  msgstr ""
235
 
236
+ #: modules/rich-snippets/rich-snippets.php:28
237
+ msgid "Data Format"
238
  msgstr ""
239
 
240
+ #: modules/rich-snippets/rich-snippets.php:29
241
+ msgid "Categories/Tags That Indicate Reviews"
242
+ msgstr ""
243
+
244
+ #: modules/rich-snippets/rich-snippets.php:37
245
+ msgid "Microformats (recommended)"
246
+ msgstr ""
247
+
248
+ #: modules/rich-snippets/rich-snippets.php:43
249
+ msgid "HTML5 Microdata"
250
+ msgstr ""
251
+
252
+ #: modules/rich-snippets/rich-snippets.php:49
253
+ msgid "RDFa"
254
+ msgstr ""
255
+
256
+ #: modules/rich-snippets/rich-snippets.php:62
257
+ #: modules/rich-snippets/rich-snippets.php:224
258
+ msgid "Review"
259
+ msgstr ""
260
+
261
+ #: modules/rich-snippets/rich-snippets.php:70
262
+ msgid "Item Reviewed"
263
+ msgstr ""
264
+
265
+ #: modules/rich-snippets/rich-snippets.php:78
266
+ msgid "Star Rating"
267
+ msgstr ""
268
+
269
+ #: modules/rich-snippets/rich-snippets.php:83
270
+ msgid "Review Author"
271
+ msgstr ""
272
+
273
+ #: modules/rich-snippets/rich-snippets.php:89
274
+ msgid "Date Reviewed"
275
+ msgstr ""
276
+
277
+ #: modules/rich-snippets/rich-snippets.php:223
278
+ #: modules/rich-snippets/rich-snippets.php:232
279
+ msgid "None"
280
  msgstr ""
281
 
282
+ #: modules/rich-snippets/rich-snippets.php:225
283
+ msgid "Rich Snippet Type:"
284
  msgstr ""
285
 
286
+ #: modules/rich-snippets/rich-snippets.php:229
287
+ msgid "Name of Reviewed Item:"
288
  msgstr ""
289
 
290
+ #: modules/rich-snippets/rich-snippets.php:233
291
+ msgid "0.5 stars"
292
  msgstr ""
293
 
294
+ #: modules/rich-snippets/rich-snippets.php:234
295
+ msgid "1 star"
296
  msgstr ""
297
 
298
+ #: modules/rich-snippets/rich-snippets.php:235
299
+ msgid "1.5 stars"
300
  msgstr ""
301
 
302
+ #: modules/rich-snippets/rich-snippets.php:236
303
+ msgid "2 stars"
304
  msgstr ""
305
 
306
+ #: modules/rich-snippets/rich-snippets.php:237
307
+ msgid "2.5 stars"
308
  msgstr ""
309
 
310
+ #: modules/rich-snippets/rich-snippets.php:238
311
+ msgid "3 stars"
312
  msgstr ""
313
 
314
+ #: modules/rich-snippets/rich-snippets.php:239
315
+ msgid "3.5 stars"
316
  msgstr ""
317
 
318
+ #: modules/rich-snippets/rich-snippets.php:240
319
+ msgid "4 stars"
320
  msgstr ""
321
 
322
+ #: modules/rich-snippets/rich-snippets.php:241
323
+ msgid "4.5 stars"
 
 
324
  msgstr ""
325
 
326
+ #: modules/rich-snippets/rich-snippets.php:242
327
+ msgid "5 stars"
328
  msgstr ""
329
 
330
+ #: modules/rich-snippets/rich-snippets.php:243
331
+ msgid "Star Rating for Reviewed Item:"
332
  msgstr ""
333
 
334
+ #: modules/site-keyword-queries/site-keyword-queries.php:12
335
+ msgid "Internal Relevance Researcher"
 
 
336
  msgstr ""
337
 
338
+ #: modules/site-keyword-queries/site-keyword-queries.php:13
339
+ msgid "Int. Rel. Researcher"
 
 
 
340
  msgstr ""
341
 
342
+ #: modules/site-keyword-queries/site-keyword-queries.php:21
343
+ msgid "Step 1: Enter Keywords"
344
  msgstr ""
345
 
346
+ #: modules/site-keyword-queries/site-keyword-queries.php:23
347
+ msgid "(Type one keyword per line)"
348
  msgstr ""
349
 
350
+ #: modules/site-keyword-queries/site-keyword-queries.php:25
351
+ msgid "Step 2: Set Options and Submit"
352
  msgstr ""
353
 
354
+ #: modules/site-keyword-queries/site-keyword-queries.php:27
355
+ msgid "Put keywords in quotes"
356
  msgstr ""
357
 
358
+ #: modules/site-keyword-queries/site-keyword-queries.php:28
359
+ #: modules/competition-queries/competition-queries.php:63
360
+ msgid "Show 100 results per page"
361
  msgstr ""
362
 
363
+ #: modules/site-keyword-queries/site-keyword-queries.php:30
364
+ #: modules/competition-queries/competition-queries.php:65
365
+ msgid "Use Google&#8217;s minimal mode"
366
  msgstr ""
367
 
368
+ #: modules/site-keyword-queries/site-keyword-queries.php:33
369
+ #: modules/competition-queries/competition-queries.php:71
370
+ msgid "Submit"
371
  msgstr ""
372
 
373
  #: modules/widgets/widgets.php:12
424
  msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
425
  msgstr ""
426
 
427
+ #: modules/internal-link-aliases/internal-link-aliases.php:20
428
+ msgid "Link Mask Generator"
 
 
 
 
 
 
 
 
 
 
 
 
429
  msgstr ""
430
 
431
+ #: modules/internal-link-aliases/internal-link-aliases.php:27
432
+ msgid "Alias Directory"
433
  msgstr ""
434
 
435
+ #: modules/internal-link-aliases/internal-link-aliases.php:29
436
+ msgid "Nofollow aliased links"
 
 
 
 
 
437
  msgstr ""
438
 
439
+ #: modules/internal-link-aliases/internal-link-aliases.php:29
440
+ msgid "Link Attributes"
 
 
 
441
  msgstr ""
442
 
443
+ #: modules/internal-link-aliases/internal-link-aliases.php:49
444
+ msgid "Link Masks:"
445
  msgstr ""
446
 
447
+ #: modules/internal-link-aliases/internal-link-aliases.php:52
448
+ msgid "URL"
 
 
 
 
449
  msgstr ""
450
 
451
+ #: modules/internal-link-aliases/internal-link-aliases.php:52
452
+ msgid "Mask URL"
453
  msgstr ""
454
 
455
+ #: modules/internal-link-aliases/internal-link-aliases.php:83
456
  msgid ""
457
+ "You can stop search engines from following a link by typing in a mask for "
458
+ "its URL."
 
 
 
 
 
 
 
 
 
459
  msgstr ""
460
 
461
+ #: modules/internal-link-aliases/internal-link-aliases.php:160
462
+ msgid "Added by Link Alias Generator (LAG) module"
463
  msgstr ""
464
 
465
+ #: modules/internal-link-aliases/internal-link-aliases.php:171
466
+ msgid "End LAG"
467
  msgstr ""
468
 
469
+ #: modules/titles/titles.php:12
470
+ msgid "Title Tag Rewriter"
 
 
471
  msgstr ""
472
 
473
+ #: modules/titles/titles.php:33 modules/meta/meta-descriptions.php:24
474
+ msgid "Default Formats"
475
  msgstr ""
476
 
477
+ #: modules/titles/titles.php:34 modules/404s/fofs-settings.php:17
478
+ msgid "Settings"
479
  msgstr ""
480
 
481
+ #: modules/titles/titles.php:40
482
+ msgid "Title Tag"
483
  msgstr ""
484
 
485
+ #: modules/titles/titles.php:53
486
  msgid ""
487
+ "Convert lowercase category/tag names to title case when used in title tags."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
488
  msgstr ""
489
 
490
+ #: modules/titles/titles.php:53
491
+ msgid "Title Tag Variables"
492
  msgstr ""
493
 
494
+ #: modules/titles/titles.php:55
 
 
 
 
 
 
 
 
 
 
 
 
495
  msgid ""
496
+ "Use output buffering &mdash; no configuration required, but slower (default)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
497
  msgstr ""
498
 
499
+ #: modules/titles/titles.php:56
500
  msgid ""
501
+ "Use filtering &mdash; faster, but configuration required (see the &#8220;"
502
+ "Settings Help&#8221; dropdown for details)"
503
  msgstr ""
504
 
505
+ #: modules/titles/titles.php:57
506
+ msgid "Rewrite Method"
507
  msgstr ""
508
 
509
+ #: modules/titles/titles.php:65
510
  msgid "{blog}"
511
  msgstr ""
512
 
513
+ #: modules/titles/titles.php:66
514
  msgid "{post} | {blog}"
515
  msgstr ""
516
 
517
+ #: modules/titles/titles.php:67
518
  msgid "{page} | {blog}"
519
  msgstr ""
520
 
521
+ #: modules/titles/titles.php:68
522
  msgid "{category} | {blog}"
523
  msgstr ""
524
 
525
+ #: modules/titles/titles.php:69
526
  msgid "{tag} | {blog}"
527
  msgstr ""
528
 
529
+ #: modules/titles/titles.php:70
530
  msgid "Archives for {month} {day}, {year} | {blog}"
531
  msgstr ""
532
 
533
+ #: modules/titles/titles.php:71
534
  msgid "Archives for {month} {year} | {blog}"
535
  msgstr ""
536
 
537
+ #: modules/titles/titles.php:72
538
  msgid "Archives for {year} | {blog}"
539
  msgstr ""
540
 
541
+ #: modules/titles/titles.php:73
542
  msgid "Posts by {author} | {blog}"
543
  msgstr ""
544
 
545
+ #: modules/titles/titles.php:74
546
  msgid "Search Results for {query} | {blog}"
547
  msgstr ""
548
 
549
+ #: modules/titles/titles.php:75
550
  msgid "404 Not Found | {blog}"
551
  msgstr ""
552
 
553
+ #: modules/titles/titles.php:76
554
  msgid "{title} - Page {num}"
555
  msgstr ""
556
 
557
+ #: modules/titles/titles.php:85
558
  msgid "Blog Homepage Title"
559
  msgstr ""
560
 
561
+ #: modules/titles/titles.php:86
562
  msgid "Post Title Format"
563
  msgstr ""
564
 
565
+ #: modules/titles/titles.php:87
566
  msgid "Page Title Format"
567
  msgstr ""
568
 
569
+ #: modules/titles/titles.php:88
570
  msgid "Category Title Format"
571
  msgstr ""
572
 
573
+ #: modules/titles/titles.php:89
574
  msgid "Tag Title Format"
575
  msgstr ""
576
 
577
+ #: modules/titles/titles.php:90
578
  msgid "Day Archive Title Format"
579
  msgstr ""
580
 
581
+ #: modules/titles/titles.php:91
582
  msgid "Month Archive Title Format"
583
  msgstr ""
584
 
585
+ #: modules/titles/titles.php:92
586
  msgid "Year Archive Title Format"
587
  msgstr ""
588
 
589
+ #: modules/titles/titles.php:93
590
  msgid "Author Archive Title Format"
591
  msgstr ""
592
 
593
+ #: modules/titles/titles.php:94
594
  msgid "Search Title Format"
595
  msgstr ""
596
 
597
+ #: modules/titles/titles.php:95
598
  msgid "404 Title Format"
599
  msgstr ""
600
 
601
+ #: modules/titles/titles.php:96
602
  msgid "Pagination Title Format"
603
  msgstr ""
604
 
605
+ #: modules/titles/titles.php:328
606
  msgid "Title Tag:"
607
  msgstr ""
608
 
609
+ #: modules/titles/titles.php:333
610
  msgid ""
611
  "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
612
  "tag. The title appears in visitors&#8217; title bars and in search engine "
614
  "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
615
  msgstr ""
616
 
617
+ #: modules/competition-queries/competition-queries.php:12
618
+ msgid "Competition Researcher"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
619
  msgstr ""
620
 
621
+ #: modules/competition-queries/competition-queries.php:13
622
+ msgid "Comp. Researcher"
623
  msgstr ""
624
 
625
+ #: modules/competition-queries/competition-queries.php:17
626
+ msgid ""
627
+ "The Competition Researcher provides you with easy access to various search "
628
+ "engine tools which you can use to research multiple search queries or URLs."
629
  msgstr ""
630
 
631
+ #: modules/competition-queries/competition-queries.php:21
632
+ msgid "Step 1: Choose Your Research Tool"
633
  msgstr ""
634
 
635
+ #: modules/competition-queries/competition-queries.php:25
636
+ msgid "Keywords"
637
  msgstr ""
638
 
639
+ #: modules/competition-queries/competition-queries.php:25
640
+ msgid "Normal Search"
641
  msgstr ""
642
 
643
+ #: modules/competition-queries/competition-queries.php:25
644
+ msgid "Find out how many pages contain the words in each query"
645
  msgstr ""
646
 
647
+ #: modules/competition-queries/competition-queries.php:26
648
+ msgid "Phrase Match"
649
  msgstr ""
650
 
651
+ #: modules/competition-queries/competition-queries.php:26
652
  msgid ""
653
+ "Find out how many &#8220;actual&#8221; pages are competing for each query"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
654
  msgstr ""
655
 
656
+ #: modules/competition-queries/competition-queries.php:27
657
+ msgid "Allinanchor"
 
658
  msgstr ""
659
 
660
+ #: modules/competition-queries/competition-queries.php:27
661
+ msgid "Find out which sites have the most links for each query"
662
  msgstr ""
663
 
664
+ #: modules/competition-queries/competition-queries.php:28
665
+ msgid "Allintitle"
 
 
666
  msgstr ""
667
 
668
+ #: modules/competition-queries/competition-queries.php:28
669
+ msgid ""
670
+ "Find out which sites have the highest relevance in the title for each query"
671
  msgstr ""
672
 
673
+ #: modules/competition-queries/competition-queries.php:29
674
+ msgid "Allintext"
675
  msgstr ""
676
 
677
+ #: modules/competition-queries/competition-queries.php:29
678
+ msgid "Find out which sites have the most relevant content/text on their pages"
679
  msgstr ""
680
 
681
+ #: modules/competition-queries/competition-queries.php:30
682
+ msgid "Allinurl"
683
  msgstr ""
684
 
685
+ #: modules/competition-queries/competition-queries.php:30
686
+ msgid ""
687
+ "Find out which sites have the most relevant naming conventions for each "
688
+ "keyword"
689
  msgstr ""
690
 
691
+ #: modules/competition-queries/competition-queries.php:32
692
+ msgid "URLs"
 
 
693
  msgstr ""
694
 
695
+ #: modules/competition-queries/competition-queries.php:32
696
+ msgid "Site"
697
  msgstr ""
698
 
699
+ #: modules/competition-queries/competition-queries.php:32
700
+ msgid "Find out how many pages are indexed for each domain"
701
  msgstr ""
702
 
703
+ #: modules/competition-queries/competition-queries.php:33
704
+ #: modules/competition-queries/competition-queries.php:38
705
+ msgid "Inbound Links"
706
  msgstr ""
707
 
708
+ #: modules/competition-queries/competition-queries.php:33
709
+ msgid "Find out how many sites link to the domains"
710
  msgstr ""
711
 
712
+ #: modules/competition-queries/competition-queries.php:34
713
+ #: modules/competition-queries/competition-queries.php:38
714
+ msgid "Outbound Links"
715
  msgstr ""
716
 
717
+ #: modules/competition-queries/competition-queries.php:34
718
+ msgid "Find out how many sites the domains link to"
719
  msgstr ""
720
 
721
+ #: modules/competition-queries/competition-queries.php:57
722
+ msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
723
  msgstr ""
724
 
725
+ #: modules/competition-queries/competition-queries.php:59
726
+ msgid "(Type in one per line)"
727
  msgstr ""
728
 
729
+ #: modules/competition-queries/competition-queries.php:61
730
+ msgid "Step 3: Set Options and Submit"
731
  msgstr ""
732
 
733
+ #: modules/link-nofollow/link-nofollow.php:12
734
+ msgid "Nofollow Manager"
735
  msgstr ""
736
 
737
+ #: modules/link-nofollow/link-nofollow.php:53
738
+ msgid "Add the nofollow attribute to..."
739
  msgstr ""
740
 
741
+ #: modules/link-nofollow/link-nofollow.php:55
742
+ msgid "Adjacent post links"
743
  msgstr ""
744
 
745
+ #: modules/link-nofollow/link-nofollow.php:56
746
+ msgid "Category links (after posts)"
747
  msgstr ""
748
 
749
+ #: modules/link-nofollow/link-nofollow.php:57
750
+ msgid "Category links (in lists)"
751
  msgstr ""
752
 
753
+ #: modules/link-nofollow/link-nofollow.php:58
754
+ msgid "Comment anchor links"
755
  msgstr ""
756
 
757
+ #: modules/link-nofollow/link-nofollow.php:59
758
+ msgid "Comment feed links"
759
  msgstr ""
760
 
761
+ #: modules/link-nofollow/link-nofollow.php:60
762
+ msgid "Date-based archive links"
763
  msgstr ""
764
 
765
+ #: modules/link-nofollow/link-nofollow.php:61
766
+ msgid "Pagination navigation links (all)"
767
  msgstr ""
768
 
769
+ #: modules/link-nofollow/link-nofollow.php:62
770
+ msgid "Pagination navigation links (on blog home only)"
771
  msgstr ""
772
 
773
+ #: modules/link-nofollow/link-nofollow.php:63
774
+ msgid "&#8220;Read more&#8221; links"
775
  msgstr ""
776
 
777
+ #: modules/link-nofollow/link-nofollow.php:64
778
+ msgid "Registration link"
779
  msgstr ""
780
 
781
+ #: modules/link-nofollow/link-nofollow.php:65
782
+ msgid "Login link"
783
  msgstr ""
784
 
785
+ #: modules/link-nofollow/link-nofollow.php:66
786
+ msgid "Tag links (after posts)"
787
  msgstr ""
788
 
789
+ #: modules/link-nofollow/link-nofollow.php:67
790
+ msgid "Tag links (in lists and clouds)"
791
  msgstr ""
792
 
793
+ #: modules/link-nofollow/link-nofollow.php:76
794
+ msgid "When displaying page lists, nofollow links to this page"
795
  msgstr ""
796
 
797
+ #: modules/link-nofollow/link-nofollow.php:76
798
+ msgid "Nofollow:"
 
 
 
 
799
  msgstr ""
800
 
801
  #: modules/meta/meta-keywords.php:12
806
  msgid "Meta Keywords"
807
  msgstr ""
808
 
809
+ #: modules/meta/meta-keywords.php:33 modules/noindex/noindex.php:43
810
+ msgid "Default Values"
811
+ msgstr ""
812
+
813
  #: modules/meta/meta-keywords.php:56
814
  msgid "The %d most commonly-used words"
815
  msgstr ""
889
  msgid "Don&#8217t cache or archive this site."
890
  msgstr ""
891
 
892
+ #: modules/meta/meta-descriptions.php:12
893
+ msgid "Meta Description Editor"
894
  msgstr ""
895
 
896
+ #: modules/meta/meta-descriptions.php:13
897
+ msgid "Meta Descriptions"
 
898
  msgstr ""
899
 
900
+ #: modules/meta/meta-descriptions.php:31
901
+ msgid "Meta Description"
902
  msgstr ""
903
 
904
+ #: modules/meta/meta-descriptions.php:48
905
+ msgid "Post Description Format"
906
  msgstr ""
907
 
908
+ #: modules/meta/meta-descriptions.php:49
909
+ msgid "Category Description Format"
910
  msgstr ""
911
 
912
+ #: modules/meta/meta-descriptions.php:50
913
+ msgid "Post Tag Description Format"
914
  msgstr ""
915
 
916
+ #: modules/meta/meta-descriptions.php:57
917
+ msgid "Blog Homepage Meta Description"
918
  msgstr ""
919
 
920
+ #: modules/meta/meta-descriptions.php:59
921
+ msgid "Use this blog&#8217s tagline as the default homepage description."
922
  msgstr ""
923
 
924
+ #: modules/meta/meta-descriptions.php:60
925
+ msgid "Default Value"
926
  msgstr ""
927
 
928
+ #: modules/meta/meta-descriptions.php:122
929
+ msgid "Meta Description:"
930
  msgstr ""
931
 
932
+ #: modules/meta/meta-descriptions.php:125
933
+ msgid "You&#8217;ve entered %s characters. Most search engines use up to 140."
934
  msgstr ""
935
 
936
+ #: modules/meta/meta-descriptions.php:133
937
+ msgid ""
938
+ "<strong>Description</strong> &mdash; The value of the meta description tag. "
939
+ "The description will often appear underneath the title in search engine "
940
+ "results. Writing an accurate, attention-grabbing description for every post "
941
+ "is important to ensuring a good search results clickthrough rate."
942
  msgstr ""
943
 
944
+ #: modules/import-aiosp/import-aiosp.php:12
945
+ msgid "Import from All in One SEO Pack"
946
  msgstr ""
947
 
948
+ #: modules/import-aiosp/import-aiosp.php:13
949
+ msgid "AIOSP Import"
950
  msgstr ""
951
 
952
+ #: modules/import-aiosp/import-aiosp.php:15
953
+ msgid "All in One SEO Pack"
954
  msgstr ""
955
 
956
+ #: modules/import-aiosp/import-aiosp.php:16
957
+ msgid "AIOSP"
958
  msgstr ""
959
 
960
+ #: modules/import-aiosp/import-aiosp.php:17
961
+ msgid "Import post data (custom title tags and meta tags)."
962
  msgstr ""
963
 
964
+ #: modules/import-aiosp/import-aiosp.php:21
965
+ msgid ""
966
+ "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
967
+ "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
968
+ "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
969
+ "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
970
+ "to be currently installed or activated for the import to take place."
971
  msgstr ""
972
 
973
+ #: modules/import-aiosp/import-aiosp.php:23
974
+ msgid ""
975
+ "The import tool can only move over data from AIOSP version 1.6 or above. If "
976
+ "you use an older version of AIOSP, you should update to the latest version "
977
+ "first and run AIOSP&#8217;s upgrade process."
978
  msgstr ""
979
 
980
+ #: modules/sds-blog/sds-blog.php:12
981
+ msgid "Whitepapers"
982
  msgstr ""
983
 
984
+ #: modules/sds-blog/sds-blog.php:13
985
+ msgid "SEO Design Solutions Whitepapers"
986
  msgstr ""
987
 
988
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 6.8) #-#-#-#-#
989
+ #. Author of the plugin/theme
990
+ #: modules/sds-blog/sds-blog.php:49
991
+ msgid "SEO Design Solutions"
992
  msgstr ""
993
 
994
+ #: modules/sds-blog/sds-blog.php:50
995
+ msgid ""
996
+ "The search engine optimization articles below are loaded from the website of "
997
+ "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
998
+ "an article&#8217;s title to read it."
999
  msgstr ""
1000
 
1001
+ #: modules/modules/modules.php:12
1002
+ msgid "Module Manager"
1003
+ msgstr ""
1004
+
1005
+ #: modules/modules/modules.php:13
1006
+ msgid "Modules"
1007
+ msgstr ""
1008
+
1009
+ #: modules/modules/modules.php:41
1010
  msgid ""
1011
+ "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
1012
+ "&#8221; By default, most of these modules are listed in the &#8220;"
1013
+ "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
1014
+ "you can view documentation by clicking the tabs in the upper-right-hand "
1015
+ "corner of your administration screen."
1016
  msgstr ""
1017
 
1018
+ #: modules/modules/modules.php:43
1019
+ msgid ""
1020
+ "The Module Manager lets you disable or hide modules you don&#8217;t use. "
1021
+ "You can also silence modules from displaying bubble alerts on the menu."
1022
  msgstr ""
1023
 
1024
+ #: modules/modules/modules.php:47
1025
+ msgid "Modules updated."
1026
  msgstr ""
1027
 
1028
+ #: modules/modules/modules.php:52
1029
+ msgid "Status"
1030
  msgstr ""
1031
 
1032
+ #: modules/modules/modules.php:53
1033
+ msgid "Module"
1034
  msgstr ""
1035
 
1036
+ #: modules/modules/modules.php:66
1037
+ msgid "Enabled"
1038
  msgstr ""
1039
 
1040
+ #: modules/modules/modules.php:67
1041
+ msgid "Silenced"
 
1042
  msgstr ""
1043
 
1044
+ #: modules/modules/modules.php:68
1045
+ msgid "Hidden"
1046
  msgstr ""
1047
 
1048
+ #: modules/modules/modules.php:69
1049
+ msgid "Disabled"
1050
  msgstr ""
1051
 
1052
+ #: modules/slugs/slugs.php:12
1053
+ msgid "Slug Optimizer"
1054
  msgstr ""
1055
 
1056
+ #: modules/slugs/slugs.php:16
1057
+ msgid "Words to Remove"
 
1058
  msgstr ""
1059
 
1060
+ #: modules/404s/fofs.php:11
1061
+ msgid "404 Monitor"
1062
  msgstr ""
1063
 
1064
+ #: modules/404s/fofs-settings.php:16
1065
+ msgid "404 Monitor Settings"
1066
  msgstr ""
1067
 
1068
+ #: modules/404s/fofs-settings.php:37
1069
+ msgid "Continue monitoring for new 404 errors"
1070
  msgstr ""
1071
 
1072
+ #: modules/404s/fofs-settings.php:37
1073
+ msgid "Monitoring Settings"
 
 
1074
  msgstr ""
1075
 
1076
+ #: modules/404s/fofs-settings.php:39
1077
+ msgid "Only log these types of 404 errors:"
1078
  msgstr ""
1079
 
1080
+ #: modules/404s/fofs-settings.php:40
1081
+ msgid "404s generated by search engine spiders"
1082
  msgstr ""
1083
 
1084
+ #: modules/404s/fofs-settings.php:41
1085
+ msgid "404s with referring URLs"
1086
  msgstr ""
1087
 
1088
+ #: modules/404s/fofs-settings.php:42
1089
+ msgid "Log Restrictions"
 
1090
  msgstr ""
1091
 
1092
+ #: modules/404s/fofs-settings.php:43
1093
+ msgid "Maximum Log Entries"
1094
  msgstr ""
1095
 
1096
+ #: modules/404s/fofs-settings.php:44
1097
+ msgid "URLs to Ignore"
 
1098
  msgstr ""
1099
 
1100
+ #: modules/404s/fofs-settings.php:44
1101
+ msgid "(Use * as wildcard)"
1102
  msgstr ""
1103
 
1104
+ #: modules/404s/fofs-log.php:16
1105
+ msgid "404 Monitor Log"
1106
  msgstr ""
1107
 
1108
+ #: modules/404s/fofs-log.php:17
1109
+ msgid "Log"
1110
  msgstr ""
1111
 
1112
+ #: modules/404s/fofs-log.php:114
1113
+ msgid "Hits"
1114
  msgstr ""
1115
 
1116
+ #: modules/404s/fofs-log.php:115
1117
+ msgid "URL with 404 Error"
 
1118
  msgstr ""
1119
 
1120
+ #: modules/404s/fofs-log.php:116
1121
+ msgid "Date of Most Recent Hit"
 
1122
  msgstr ""
1123
 
1124
+ #: modules/404s/fofs-log.php:117
1125
+ msgid "Referers"
1126
+ msgstr ""
1127
+
1128
+ #: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
1129
+ msgid "User Agents"
1130
+ msgstr ""
1131
+
1132
+ #: modules/404s/fofs-log.php:134
1133
+ msgid ""
1134
+ "New 404 errors will not be recorded because 404 logging is disabled on the "
1135
+ "Settings tab."
1136
  msgstr ""
1137
 
1138
+ #: modules/404s/fofs-log.php:141
1139
+ msgid "The log entry was successfully deleted."
1140
  msgstr ""
1141
 
1142
+ #: modules/404s/fofs-log.php:143
1143
+ msgid "This log entry has already been deleted."
1144
  msgstr ""
1145
 
1146
+ #: modules/404s/fofs-log.php:152
1147
+ msgid "The log was successfully cleared."
1148
  msgstr ""
1149
 
1150
+ #: modules/404s/fofs-log.php:156
1151
+ msgid "No 404 errors in the log."
1152
  msgstr ""
1153
 
1154
+ #: modules/404s/fofs-log.php:180
1155
+ msgid "Open URL in new window (will not be logged)"
1156
  msgstr ""
1157
 
1158
+ #: modules/404s/fofs-log.php:181
1159
+ msgid "Query Google for cached version of URL (opens in new window)"
1160
  msgstr ""
1161
 
1162
+ #: modules/404s/fofs-log.php:182
1163
+ msgid "Remove this URL from the log"
1164
  msgstr ""
1165
 
1166
+ #: modules/404s/fofs-log.php:185
1167
+ msgid "%s at %s"
1168
  msgstr ""
1169
 
1170
+ #: modules/404s/fofs-log.php:189
1171
+ msgid "View list of referring URLs"
1172
  msgstr ""
1173
 
1174
+ #: modules/404s/fofs-log.php:190
1175
+ msgid "View list of user agents"
1176
  msgstr ""
1177
 
1178
+ #: modules/404s/fofs-log.php:200
1179
+ msgid "Referring URLs"
1180
  msgstr ""
1181
 
1182
+ #: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
1183
+ msgid "Hide list"
1184
  msgstr ""
1185
 
1186
+ #: modules/404s/fofs-log.php:252
1187
+ msgid "Are you sure you want to delete all 404 log entries?"
1188
  msgstr ""
1189
 
1190
+ #: modules/404s/fofs-log.php:254
1191
+ msgid "Clear Log"
1192
  msgstr ""
1193
 
1194
+ #: modules/linkbox/linkbox.php:12
1195
+ msgid "Linkbox Inserter"
1196
  msgstr ""
1197
 
1198
+ #: modules/linkbox/linkbox.php:18
1199
+ msgid "Link to this post!"
 
 
 
 
 
1200
  msgstr ""
1201
 
1202
+ #: modules/linkbox/linkbox.php:45
1203
+ msgid "At the end of posts"
 
 
1204
  msgstr ""
1205
 
1206
+ #: modules/linkbox/linkbox.php:46
1207
+ msgid "At the end of pages"
1208
  msgstr ""
1209
 
1210
+ #: modules/linkbox/linkbox.php:47
1211
+ msgid "When called by the su_linkbox hook"
1212
  msgstr ""
1213
 
1214
+ #: modules/linkbox/linkbox.php:48
1215
+ msgid "Display linkboxes..."
1216
  msgstr ""
1217
 
1218
+ #: modules/linkbox/linkbox.php:49
1219
+ msgid "Linkbox HTML"
1220
  msgstr ""
1221
 
1222
+ #: modules/more-links/more-links.php:12
1223
+ msgid "More Link Customizer"
1224
  msgstr ""
1225
 
1226
+ #: modules/more-links/more-links.php:30
1227
+ msgid "Default More Link Text"
1228
  msgstr ""
1229
 
1230
+ #: modules/more-links/more-links.php:51
1231
+ msgid "More Link Text:"
1232
  msgstr ""
1233
 
1234
  #: modules/permalinks/permalinks.php:15
1249
  msgid "Remove the URL bases of..."
1250
  msgstr ""
1251
 
1252
+ #: modules/misc/misc.php:11
1253
+ msgid "Miscellaneous"
1254
+ msgstr ""
1255
+
1256
+ #: modules/misc/misc.php:14
1257
+ msgid ""
1258
+ "The Miscellaneous page contains modules that don&#8217;t have enough "
1259
+ "settings to warrant their own separate admin pages."
1260
+ msgstr ""
1261
+
1262
  #: modules/files/files.php:14
1263
  msgid "File Editor"
1264
  msgstr ""
1314
  "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1315
  msgstr ""
1316
 
1317
+ #: modules/canonical/canonical.php:12
1318
+ msgid "Canonicalizer"
1319
  msgstr ""
1320
 
1321
+ #: modules/canonical/canonical.php:39
1322
+ msgid ""
1323
+ "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> meta tags."
1324
+ msgstr ""
1325
+
1326
+ #: modules/canonical/canonical.php:40
1327
+ msgid "Send <code>rel=&quot;canonical&quot;</code> HTTP headers."
1328
+ msgstr ""
1329
+
1330
+ #: modules/canonical/canonical.php:41
1331
+ msgid "Redirect requests for nonexistent pagination."
1332
+ msgstr ""
1333
+
1334
+ #: modules/user-code/user-code.php:12
1335
+ msgid "Code Inserter"
1336
+ msgstr ""
1337
+
1338
+ #: modules/user-code/user-code.php:27
1339
+ msgid "Everywhere"
1340
+ msgstr ""
1341
+
1342
+ #: modules/user-code/user-code.php:34
1343
+ msgid "&lt;head&gt; Tag"
1344
+ msgstr ""
1345
+
1346
+ #: modules/user-code/user-code.php:35
1347
+ msgid "Before Item Content"
1348
+ msgstr ""
1349
+
1350
+ #: modules/user-code/user-code.php:36
1351
+ msgid "After Item Content"
1352
+ msgstr ""
1353
+
1354
+ #: modules/user-code/user-code.php:37
1355
+ msgid "Footer"
1356
+ msgstr ""
1357
+
1358
+ #: modules/user-code/user-code.php:51
1359
+ msgid "Code Inserter module"
1360
  msgstr ""
1361
 
1362
  #: modules/settings/settings-data.php:16
1527
  msgid "Restore Default Settings"
1528
  msgstr ""
1529
 
1530
+ #: modules/settings/global-settings.php:18
1531
+ msgid "Global Settings"
1532
+ msgstr ""
1533
+
1534
+ #: modules/settings/global-settings.php:40
1535
+ msgid "Enable nofollow&#8217;d attribution link"
1536
+ msgstr ""
1537
+
1538
+ #: modules/settings/global-settings.php:41
1539
+ msgid "Enable attribution link CSS styling"
1540
+ msgstr ""
1541
+
1542
+ #: modules/settings/global-settings.php:42
1543
+ msgid "Notify me about unnecessary active plugins"
1544
+ msgstr ""
1545
+
1546
+ #: modules/settings/global-settings.php:43
1547
+ msgid "Insert comments around HTML code insertions"
1548
+ msgstr ""
1549
+
1550
+ #: modules/settings/settings.php:12
1551
+ msgid "Plugin Settings"
1552
+ msgstr ""
1553
+
1554
+ #: modules/settings/settings.php:13
1555
+ msgid "SEO Ultimate Plugin Settings"
1556
+ msgstr ""
1557
+
1558
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 6.8) #-#-#-#-#
1559
+ #. Plugin Name of the plugin/theme
1560
+ #: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:767
1561
+ msgid "SEO Ultimate"
1562
+ msgstr ""
1563
+
1564
  #: modules/settings/uninstall.php:17
1565
  msgid "Uninstaller"
1566
  msgstr ""
1567
 
1568
+ #: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1250
1569
+ msgid "Uninstall"
1570
+ msgstr ""
1571
+
1572
  #: modules/settings/uninstall.php:27
1573
  msgid ""
1574
  "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
1605
  msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1606
  msgstr ""
1607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1608
  #: modules/settings/install.php:18
1609
  msgid "Upgrade/Downgrade/Reinstall"
1610
  msgstr ""
1675
  msgstr ""
1676
 
1677
  #: modules/settings/install.php:108
1678
+ msgid "Your Current Version"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1679
  msgstr ""
1680
 
1681
+ #: modules/settings/install.php:110
1682
+ msgid "Latest Version"
1683
  msgstr ""
1684
 
1685
+ #: modules/settings/install.php:130
1686
+ msgid ""
1687
+ "You do not have sufficient permissions to upgrade/downgrade plugins for this "
1688
+ "blog."
1689
  msgstr ""
1690
 
1691
+ #: modules/settings/install.php:140
1692
+ msgid "Downgrade to SEO Ultimate %s"
1693
  msgstr ""
1694
 
1695
+ #: modules/settings/install.php:143
1696
+ msgid "Reinstall SEO Ultimate %s"
1697
  msgstr ""
1698
 
1699
+ #: modules/settings/install.php:146
1700
+ msgid "Upgrade to SEO Ultimate %s"
 
 
1701
  msgstr ""
1702
 
1703
+ #: modules/sharing-buttons/sharing-buttons.php:12
1704
+ msgid "Sharing Facilitator"
1705
  msgstr ""
1706
 
1707
+ #: modules/sharing-buttons/sharing-buttons.php:25
1708
+ msgid "Bookmark and Share"
1709
  msgstr ""
1710
 
1711
+ #: modules/sharing-buttons/sharing-buttons.php:39
1712
+ msgid "Which provider would you like to use for your sharing buttons?"
1713
  msgstr ""
1714
 
1715
+ #: modules/sharing-buttons/sharing-buttons.php:41
1716
+ msgid "None; disable sharing buttons"
1717
  msgstr ""
1718
 
1719
+ #: modules/sharing-buttons/sharing-buttons.php:42
1720
+ msgid "Use the ShareThis button"
1721
  msgstr ""
1722
 
1723
+ #: modules/sharing-buttons/sharing-buttons.php:43
1724
+ msgid "Use the AddThis button"
1725
  msgstr ""
1726
 
1727
+ #: modules/noindex/noindex.php:12
1728
+ msgid "Noindex Manager"
1729
  msgstr ""
1730
 
1731
+ #: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
1732
+ #: modules/noindex/noindex.php:67
1733
+ msgid "Noindex"
1734
  msgstr ""
1735
 
1736
+ #: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
1737
+ #: modules/autolinks/content-autolinks.php:367
1738
+ #: modules/autolinks/footer-autolinks.php:218
1739
+ msgid "Nofollow"
1740
  msgstr ""
1741
 
1742
+ #: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
1743
+ msgid "Use default"
1744
  msgstr ""
1745
 
1746
+ #: modules/noindex/noindex.php:63
1747
+ msgid "noindex"
1748
  msgstr ""
1749
 
1750
+ #: modules/noindex/noindex.php:64
1751
+ msgid "index"
1752
  msgstr ""
1753
 
1754
+ #: modules/noindex/noindex.php:74
1755
+ msgid "nofollow"
1756
  msgstr ""
1757
 
1758
+ #: modules/noindex/noindex.php:75
1759
+ msgid "follow"
1760
  msgstr ""
1761
 
1762
+ #: modules/noindex/noindex.php:89
1763
+ msgid ""
1764
+ "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
1765
+ "block indexing of the entire site, regardless of which options are set below."
1766
  msgstr ""
1767
 
1768
+ #: modules/noindex/noindex.php:92
1769
+ msgid "Prevent indexing of..."
1770
  msgstr ""
1771
 
1772
+ #: modules/noindex/noindex.php:93
1773
+ msgid "Administration back-end pages"
1774
  msgstr ""
1775
 
1776
+ #: modules/noindex/noindex.php:94
1777
+ msgid "Author archives"
1778
  msgstr ""
1779
 
1780
+ #: modules/noindex/noindex.php:95
1781
+ msgid "Blog search pages"
1782
  msgstr ""
1783
 
1784
+ #: modules/noindex/noindex.php:96
1785
+ msgid "Category archives"
1786
  msgstr ""
1787
 
1788
+ #: modules/noindex/noindex.php:97
1789
+ msgid "Comment feeds"
1790
  msgstr ""
1791
 
1792
+ #: modules/noindex/noindex.php:98
1793
+ msgid "Comment subpages"
1794
  msgstr ""
1795
 
1796
+ #: modules/noindex/noindex.php:99
1797
+ msgid "Date-based archives"
1798
  msgstr ""
1799
 
1800
+ #: modules/noindex/noindex.php:100
1801
+ msgid "Subpages of the homepage"
1802
  msgstr ""
1803
 
1804
+ #: modules/noindex/noindex.php:101
1805
+ msgid "Tag archives"
1806
  msgstr ""
1807
 
1808
+ #: modules/noindex/noindex.php:102
1809
+ msgid "User login/registration pages"
1810
  msgstr ""
1811
 
1812
+ #: modules/noindex/noindex.php:165
1813
+ msgid "Noindex: Tell search engines not to index this webpage."
1814
  msgstr ""
1815
 
1816
+ #: modules/noindex/noindex.php:166
1817
+ msgid "Nofollow: Tell search engines not to spider links on this webpage."
1818
  msgstr ""
1819
 
1820
+ #: modules/noindex/noindex.php:167
1821
+ msgid "Meta Robots Tag:"
1822
  msgstr ""
1823
 
1824
+ #: modules/autolinks/autolinks.php:11
1825
+ msgid "Deeplink Juggernaut"
1826
  msgstr ""
1827
 
1828
+ #: modules/autolinks/autolinks.php:18
1829
+ msgid ""
1830
+ "Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
1831
+ "(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
1832
+ "WordPress 3.2.) If you aren&#8217;t sure how to upgrade PHP, please ask your "
1833
+ "webhost. In the meantime, you can return to an older version of Deeplink "
1834
+ "Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
1835
+ "a> to SEO Ultimate 5.9."
1836
  msgstr ""
1837
 
1838
+ #: modules/autolinks/content-autolinks.php:16
1839
+ msgid "Content Deeplink Juggernaut"
1840
  msgstr ""
1841
 
1842
+ #: modules/autolinks/content-autolinks.php:17
1843
+ msgid "Content Links"
1844
  msgstr ""
1845
 
1846
+ #: modules/autolinks/content-autolinks.php:259
1847
+ #: modules/autolinks/footer-autolinks.php:133
1848
  msgid ""
1849
+ "The Content Links section of Deeplink Juggernaut lets you automatically link "
1850
+ "a certain word or phrase in your post/page content to a URL you specify."
 
 
 
 
1851
  msgstr ""
1852
 
1853
+ #: modules/autolinks/content-autolinks.php:313
1854
+ #: modules/autolinks/footer-autolinks.php:165
1855
+ msgid "Edit Existing Links"
1856
  msgstr ""
1857
 
1858
+ #: modules/autolinks/content-autolinks.php:317
1859
+ #: modules/autolinks/footer-autolinks.php:169
1860
+ msgid "Add a New Link"
1861
  msgstr ""
1862
 
1863
+ #: modules/autolinks/content-autolinks.php:328
1864
+ #: modules/autolinks/footer-autolinks.php:179
1865
+ msgid "Anchor Text"
 
1866
  msgstr ""
1867
 
1868
+ #: modules/autolinks/content-autolinks.php:329
1869
+ #: modules/autolinks/footer-autolinks.php:180
1870
+ msgid "Destination"
1871
  msgstr ""
1872
 
1873
+ #: modules/autolinks/content-autolinks.php:330
1874
+ #: modules/autolinks/footer-autolinks.php:181
1875
+ msgid "Title Attribute"
1876
  msgstr ""
1877
 
1878
+ #: modules/autolinks/content-autolinks.php:332
1879
+ msgid "Site Cap"
1880
  msgstr ""
1881
 
1882
+ #: modules/autolinks/content-autolinks.php:333
1883
+ #: modules/autolinks/footer-autolinks.php:182
1884
+ msgid "Options"
1885
  msgstr ""
1886
 
1887
+ #: modules/autolinks/content-autolinks.php:335
1888
+ #: modules/autolinks/footer-autolinks.php:184
1889
+ msgid "Delete"
1890
  msgstr ""
1891
 
1892
+ #: modules/autolinks/content-autolinks.php:369
1893
+ #: modules/autolinks/footer-autolinks.php:220
1894
+ msgid "New window"
1895
  msgstr ""
1896
 
1897
+ #: modules/autolinks/content-autolinks.php:434
1898
+ msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
1899
  msgstr ""
1900
 
1901
+ #: modules/autolinks/content-autolinks.php:437
1902
+ msgid "Don&#8217;t add autolinks to anchor texts found in this post."
1903
  msgstr ""
1904
 
1905
+ #: modules/autolinks/content-autolinks.php:437
1906
+ msgid "Autolink Exclusion:"
1907
  msgstr ""
1908
 
1909
+ #: modules/autolinks/content-autolinks.php:443
1910
+ msgid ""
1911
+ "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
1912
+ "into this box, Deeplink Juggernaut will search for that anchor in all your "
1913
+ "other posts and link it to this post. For example, if the post you&#8217;re "
1914
+ "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
1915
+ "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
1916
+ "Deeplink Juggernaut will automatically build internal links to this post "
1917
+ "with that anchor text (assuming other posts contain that text)."
1918
  msgstr ""
1919
 
1920
+ #: modules/autolinks/content-autolinks-settings.php:16
1921
+ msgid "Content Deeplink Juggernaut Settings"
 
1922
  msgstr ""
1923
 
1924
+ #: modules/autolinks/content-autolinks-settings.php:17
1925
+ msgid "Content Link Settings"
1926
  msgstr ""
1927
 
1928
+ #: modules/autolinks/content-autolinks-settings.php:40
1929
+ msgid "Add Autolinks to..."
1930
  msgstr ""
1931
 
1932
+ #: modules/autolinks/content-autolinks-settings.php:43
1933
+ msgid "Allow posts to link to themselves."
1934
  msgstr ""
1935
 
1936
+ #: modules/autolinks/content-autolinks-settings.php:44
1937
+ msgid ""
1938
+ "Allow posts to link to the URL by which the visitor is accessing the post."
1939
  msgstr ""
1940
 
1941
+ #: modules/autolinks/content-autolinks-settings.php:45
1942
+ msgid "Self-Linking"
1943
  msgstr ""
1944
 
1945
+ #: modules/autolinks/content-autolinks-settings.php:48
1946
+ msgid "Enable per-link customization of quantity limits."
1947
  msgstr ""
1948
 
1949
+ #: modules/autolinks/content-autolinks-settings.php:49
1950
+ msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1951
  msgstr ""
1952
 
1953
+ #: modules/autolinks/content-autolinks-settings.php:50
1954
+ msgid ""
1955
+ "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1956
+ "etc."
1957
  msgstr ""
1958
 
1959
+ #: modules/autolinks/content-autolinks-settings.php:51
1960
+ msgid ""
1961
+ "Don&#8217;t link the same anchor text any more than %d times across my "
1962
+ "entire site."
1963
  msgstr ""
1964
 
1965
+ #: modules/autolinks/content-autolinks-settings.php:52
1966
+ msgid ""
1967
+ "Don&#8217;t link to the same destination any more than %d times per post/"
1968
+ "page/etc."
1969
  msgstr ""
1970
 
1971
+ #: modules/autolinks/content-autolinks-settings.php:53
1972
+ msgid "Quantity Restrictions"
1973
  msgstr ""
1974
 
1975
+ #: modules/autolinks/content-autolinks-settings.php:55
1976
+ msgid ""
1977
+ "Don&#8217;t add autolinks to text within these HTML tags <em>(separate with "
1978
+ "commas)</em>:"
1979
  msgstr ""
1980
 
1981
+ #: modules/autolinks/content-autolinks-settings.php:55
1982
+ msgid "Tag Restrictions"
1983
  msgstr ""
1984
 
1985
+ #: modules/autolinks/content-autolinks-settings.php:63
1986
+ msgid "%s can only link to internal destinations that share at least one..."
1987
  msgstr ""
1988
 
1989
+ #: modules/autolinks/content-autolinks-settings.php:76
1990
+ msgid "Siloing"
1991
  msgstr ""
1992
 
1993
+ #: modules/autolinks/footer-autolinks.php:16
1994
+ msgid "Footer Deeplink Juggernaut"
1995
  msgstr ""
1996
 
1997
+ #: modules/autolinks/footer-autolinks.php:177
1998
+ msgid "Link Location (optional)"
1999
  msgstr ""
2000
 
2001
+ #: modules/autolinks/footer-autolinks.php:205
2002
+ msgid "Match child content"
2003
  msgstr ""
2004
 
2005
+ #: modules/autolinks/footer-autolinks.php:207
2006
+ msgid "Negative match"
2007
  msgstr ""
2008
 
2009
  #: modules/autolinks/footer-autolinks-settings.php:16
2030
  msgid "Link Separator"
2031
  msgstr ""
2032
 
2033
+ #: plugin/class.su-installer.php:9
2034
+ msgid "Package not available."
2035
  msgstr ""
2036
 
2037
+ #: plugin/class.su-installer.php:12
2038
+ msgid "Removing the current version of the plugin&#8230;"
 
 
 
2039
  msgstr ""
2040
 
2041
+ #: plugin/class.su-installer.php:13
2042
+ msgid "Could not remove the current version of the plugin."
 
2043
  msgstr ""
2044
 
2045
+ #: plugin/class.su-installer.php:17
2046
+ msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
 
2047
  msgstr ""
2048
 
2049
+ #: plugin/class.su-installer.php:18
2050
+ msgid "Unpacking the downgrade&#8230;"
2051
  msgstr ""
2052
 
2053
+ #: plugin/class.su-installer.php:19
2054
+ msgid "Installing the downgrade&#8230;"
 
2055
  msgstr ""
2056
 
2057
+ #: plugin/class.su-installer.php:20
2058
+ msgid "Plugin downgrade failed."
 
2059
  msgstr ""
2060
 
2061
+ #: plugin/class.su-installer.php:21
2062
+ msgid "Plugin downgraded successfully."
 
2063
  msgstr ""
2064
 
2065
+ #: plugin/class.su-installer.php:24
2066
+ msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
 
2067
  msgstr ""
2068
 
2069
+ #: plugin/class.su-installer.php:25
2070
+ msgid "Unpacking the reinstall&#8230;"
 
2071
  msgstr ""
2072
 
2073
+ #: plugin/class.su-installer.php:26
2074
+ msgid "Reinstalling the current version&#8230;"
2075
  msgstr ""
2076
 
2077
+ #: plugin/class.su-installer.php:27
2078
+ msgid "Plugin reinstallation failed."
2079
  msgstr ""
2080
 
2081
+ #: plugin/class.su-installer.php:28
2082
+ msgid "Plugin reinstalled successfully."
 
2083
  msgstr ""
2084
 
2085
+ #: plugin/class.su-installer.php:32
2086
+ msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
2087
  msgstr ""
2088
 
2089
+ #: plugin/class.su-installer.php:33
2090
+ msgid "Unpacking the upgrade&#8230;"
 
 
 
 
 
 
2091
  msgstr ""
2092
 
2093
+ #: plugin/class.su-installer.php:34
2094
+ msgid "Installing the upgrade&#8230;"
2095
  msgstr ""
2096
 
2097
+ #: plugin/class.su-installer.php:35
2098
+ msgid "Plugin upgrade failed."
2099
  msgstr ""
2100
 
2101
+ #: plugin/class.su-installer.php:36
2102
+ msgid "Plugin upgraded successfully."
2103
  msgstr ""
2104
 
2105
+ #: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
2106
+ msgid "%s and %s"
 
2107
  msgstr ""
2108
 
2109
+ #: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
2110
+ msgid ", "
2111
  msgstr ""
2112
 
2113
+ #: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
2114
+ msgid "%s, and %s"
2115
  msgstr ""
2116
 
2117
+ #: plugin/class.seo-ultimate.php:767
2118
+ msgid "SEO"
2119
  msgstr ""
2120
 
2121
+ #: plugin/class.seo-ultimate.php:956
2122
  msgid ""
2123
+ "It looks like you made changes to the settings of this SEO Ultimate module. "
2124
+ "If you leave before saving, those changes will be lost."
2125
  msgstr ""
2126
 
2127
+ #: plugin/class.seo-ultimate.php:1050
2128
+ msgid "SEO Settings Help"
 
 
2129
  msgstr ""
2130
 
2131
+ #: plugin/class.seo-ultimate.php:1052
2132
+ msgid "The SEO Settings box lets you customize these settings:"
 
 
2133
  msgstr ""
2134
 
2135
+ #: plugin/class.seo-ultimate.php:1054
2136
+ msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
2137
  msgstr ""
2138
 
2139
+ #: plugin/class.seo-ultimate.php:1109
2140
  msgid ""
2141
+ "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
2142
+ "1$s to avoid plugin conflicts."
2143
  msgstr ""
2144
 
2145
+ #: plugin/class.seo-ultimate.php:1151
2146
+ msgid "new module"
2147
  msgstr ""
2148
 
2149
+ #: plugin/class.seo-ultimate.php:1151
2150
+ msgid "new modules"
2151
  msgstr ""
2152
 
2153
+ #: plugin/class.seo-ultimate.php:1152
2154
+ msgid "new feature"
2155
  msgstr ""
2156
 
2157
+ #: plugin/class.seo-ultimate.php:1152
2158
+ msgid "new features"
2159
  msgstr ""
2160
 
2161
+ #: plugin/class.seo-ultimate.php:1153
2162
+ msgid "bugfix"
2163
  msgstr ""
2164
 
2165
+ #: plugin/class.seo-ultimate.php:1153
2166
+ msgid "bugfixes"
2167
  msgstr ""
2168
 
2169
+ #: plugin/class.seo-ultimate.php:1154
2170
+ msgid "improvement"
2171
  msgstr ""
2172
 
2173
+ #: plugin/class.seo-ultimate.php:1154
2174
+ msgid "improvements"
2175
  msgstr ""
2176
 
2177
+ #: plugin/class.seo-ultimate.php:1155
2178
+ msgid "security fix"
2179
+ msgstr ""
2180
+
2181
+ #: plugin/class.seo-ultimate.php:1155
2182
+ msgid "security fixes"
2183
+ msgstr ""
2184
+
2185
+ #: plugin/class.seo-ultimate.php:1186
2186
+ msgid "%d %s"
2187
+ msgstr ""
2188
+
2189
+ #: plugin/class.seo-ultimate.php:1192
2190
+ msgid "Upgrade now to get %s. %s."
2191
  msgstr ""
2192
 
2193
+ #: plugin/class.seo-ultimate.php:1194
2194
+ msgid "View changelog"
2195
+ msgstr ""
2196
+
2197
+ #: plugin/class.seo-ultimate.php:1270
2198
+ msgid "Active Modules: "
2199
+ msgstr ""
2200
+
2201
+ #: plugin/class.seo-ultimate.php:1331
2202
  msgid ""
2203
+ "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
2204
+ "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
2205
+ "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
2206
+ "to everyone."
2207
+ msgstr ""
2208
+
2209
+ #: plugin/class.seo-ultimate.php:1453
2210
+ msgid "SEO Settings"
2211
+ msgstr ""
2212
+
2213
+ #: plugin/class.seo-ultimate.php:1671
2214
+ msgid "Home"
2215
+ msgstr ""
2216
+
2217
+ #: plugin/class.seo-ultimate.php:1740
2218
+ msgid "Author Archives"
2219
  msgstr ""
2220
 
2221
  #: includes/jlwp/functions.php:60