SEO Ultimate - Version 5.6

Version Description

Download this release

Release Info

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

Code changes from version 5.5.1 to 5.6

modules/documentation.txt CHANGED
@@ -351,6 +351,16 @@ The Module Manager lets you customize the visibility and accessibility of each m
351
 
352
 
353
 
 
 
 
 
 
 
 
 
 
 
354
 
355
  == Rich Snippet Creator ==
356
 
351
 
352
 
353
 
354
+ == Nofollow Manager ==
355
+
356
+ = Overview =
357
+
358
+ * **What it does:** Nofollow Manager adds the `rel="nofollow"` attribute to types of links that you specify. The `rel="nofollow"` attribute prevents a link from passing PageRank.
359
+
360
+ * **Why it helps:** If you're migrating to SEO Ultimate from another plugin, Nofollow Manager can help you maintain your existing settings (as part of an "if it ain't broke don't fix it" strategy). In other cases, however, we recommend not using the Nofollow Manager because in 2008 Google disabled the ability to use the `rel="nofollow"` attribute for PageRank sculpting.
361
+
362
+ * **How it works:** Select the types of links you'd like to nofollow, then click Save Changes. You can also nofollow links to individual Pages using the checkbox that Nofollow Manager adds to the "SEO Settings" box below the Page editor.
363
+
364
 
365
  == Rich Snippet Creator ==
366
 
modules/internal-link-aliases/index.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ header('Status: 403 Forbidden');
3
+ header('HTTP/1.1 403 Forbidden');
4
+ ?>
modules/link-nofollow/index.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ header('Status: 403 Forbidden');
3
+ header('HTTP/1.1 403 Forbidden');
4
+ ?>
modules/link-nofollow/link-nofollow.php ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Nofollow Manager Module
4
+ *
5
+ * @since 5.6
6
+ */
7
+
8
+ if (class_exists('SU_Module')) {
9
+
10
+ class SU_LinkNofollow extends SU_Module {
11
+
12
+ function get_module_title() { return __('Nofollow Manager', 'seo-ultimate'); }
13
+ function get_default_status() { return SU_MODULE_DISABLED; }
14
+
15
+ function init() {
16
+ $filterdata = array(
17
+ 'nofollow_links' => array(
18
+ 'nofollow_adjacent_post' => array('previous_post_link', 'next_post_link')
19
+ , 'nofollow_category_loop' => 'the_category'
20
+ , 'nofollow_category_list' => 'wp_list_categories'
21
+ , 'nofollow_comment_feed' => 'post_comments_feed_link_html'
22
+ , 'nofollow_date_archive' => 'get_archives_link'
23
+ , 'nofollow_post_more' => 'the_content_more_link'
24
+ , 'nofollow_register' => 'register'
25
+ , 'nofollow_login' => 'loginout'
26
+ , 'nofollow_tag_loop' => 'term_links-post_tag'
27
+ , 'nofollow_tag_list' => 'wp_tag_cloud'
28
+ )
29
+ , 'nofollow_attributes_string' => array(
30
+ 'nofollow_comment_popup' => 'comments_popup_link_attributes'
31
+ , 'nofollow_paged' => array('previous_posts_link_attributes', 'next_posts_link_attributes')
32
+ , 'nofollow_paged_home' => array('previous_posts_link_attributes', 'next_posts_link_attributes')
33
+ )
34
+ );
35
+
36
+ if (!is_home()) unset($filterdata['nofollow_attributes_string']['nofollow_paged_home']);
37
+
38
+ foreach ($filterdata as $callback => $filters) {
39
+ foreach ($filters as $setting => $hooks) {
40
+ if ($this->get_setting($setting)) {
41
+ foreach ((array)$hooks as $hook) {
42
+ add_filter($hook, array(&$this, $callback));
43
+ }
44
+ }
45
+ }
46
+ }
47
+
48
+ add_filter('wp_list_pages', array(&$this, 'nofollow_page_links'));
49
+ }
50
+
51
+ function admin_page_contents() {
52
+ $this->admin_form_start();
53
+ $this->admin_form_subheader(__('Add the nofollow attribute to...', 'seo-ultimate'));
54
+ $this->checkboxes(array(
55
+ 'nofollow_adjacent_post' => __("Adjacent post links", 'seo-ultimate')
56
+ , 'nofollow_category_loop' => __("Category links (after posts)", 'seo-ultimate')
57
+ , 'nofollow_category_list' => __("Category links (in lists)", 'seo-ultimate')
58
+ , 'nofollow_comment_popup' => __("Comment anchor links", 'seo-ultimate')
59
+ , 'nofollow_comment_feed' => __("Comment feed links", 'seo-ultimate')
60
+ , 'nofollow_date_archive' => __("Date-based archive links", 'seo-ultimate')
61
+ , 'nofollow_paged' => __("Pagination navigation links (all)", 'seo-ultimate')
62
+ , 'nofollow_paged_home' => __("Pagination navigation links (on blog home only)", 'seo-ultimate')
63
+ , 'nofollow_post_more' => __("&#8220;Read more&#8221; links", 'seo-ultimate')
64
+ , 'nofollow_register' => __("Registration link", 'seo-ultimate')
65
+ , 'nofollow_login' => __("Login link", 'seo-ultimate')
66
+ , 'nofollow_tag_loop' => __("Tag links (after posts)", 'seo-ultimate')
67
+ , 'nofollow_tag_list' => __("Tag links (in lists and clouds)", 'seo-ultimate')
68
+ ));
69
+
70
+ $this->admin_form_end();
71
+ }
72
+
73
+ function postmeta_fields($fields, $screen) {
74
+
75
+ if (strcmp($screen, 'page') == 0)
76
+ $fields['40|nofollow'] = $this->get_postmeta_checkbox('nofollow', __('When displaying page lists, nofollow links to this page', 'seo-ultimate'), __('Nofollow:', 'seo-ultimate'));
77
+
78
+ return $fields;
79
+ }
80
+
81
+ function nofollow_links($html) {
82
+ return preg_replace_callback('|<a (.+?)>|i', array(&$this, 'nofollow_links_callback'), $html);
83
+ }
84
+
85
+ function nofollow_links_callback($matches) {
86
+ $html = $this->nofollow_attributes_string($matches[1]);
87
+ return "<a $html>";
88
+ }
89
+
90
+ function nofollow_attributes_string($html) {
91
+ if (preg_match('|rel=[\'"]?[^>]+nofollow[^>]+[\'"]?|i', $html))
92
+ return $html;
93
+ elseif (preg_match('|rel=[\'"][^>]+[\'"]|i', $html))
94
+ return preg_replace('|rel=([\'"])|i', 'rel=\\1nofollow ', $html);
95
+ else {
96
+ if (strlen($html)) $html = rtrim($html, ' ').' ';
97
+ return $html.'rel="nofollow"';
98
+ }
99
+ }
100
+
101
+ function nofollow_page_links($html) {
102
+ return preg_replace_callback('|<a (.+?)>|i', array(&$this, 'nofollow_page_links_callback'), $html);
103
+ }
104
+
105
+ function nofollow_page_links_callback($matches) {
106
+ $html = $matches[1];
107
+
108
+ if (preg_match('|href=[\'"]([^\'"]+)[\'"]|i', $html, $pagematches)) {
109
+ $pageurl = $pagematches[1];
110
+ $pagepath = str_replace(array(untrailingslashit(get_bloginfo('url')), '/index.php/'), '', $pageurl);
111
+
112
+ if (preg_match('|/?\\?page_id=([0-9]+)|i', $pagepath, $qsmatches))
113
+ //We're using query string URLs
114
+ $page = get_page(intval($qsmatches[1]));
115
+ else
116
+ //We're using pretty or pathinfo permalinks
117
+ $page = get_page_by_path($pagepath);
118
+
119
+ if ($this->get_postmeta('nofollow', $page->ID))
120
+ $html = $this->nofollow_attributes_string($html);
121
+ }
122
+
123
+ return "<a $html>";
124
+ }
125
+
126
+ }
127
+
128
+ }
129
+ ?>
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions, JohnLamansky
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.0
5
  Tested up to: 3.1
6
- Stable tag: 5.5.1
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
@@ -11,17 +11,17 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
11
 
12
  = Recent Releases =
13
 
 
14
  * Version 5.5 adds noindex/nofollow mass-editing for categories/tags/terms
15
  * Version 5.4 adds noindex/nofollow mass-editing for posts/pages
16
  * Version 5.3 adds meta keyword auto-generation from frequently-used words
17
  * Version 5.2 adds meta description mass-editing for categories/tags/terms
18
- * Version 5.1 adds meta keyword auto-generation from categories/tags/terms
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 5.0
25
  * Out-of-the-box functionality puts your post titles at the beginning of the `<title>` tag for improved keyword SEO.
26
  * Easily override the entire `<title>` tag contents for any individual post, page, attachment, category, or post tag on your blog. Also supports custom post types.
27
  * Customize your homepage's `<title>` tag.
@@ -120,6 +120,9 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
120
  * Link masks provide a modern replacement for the deprecated, nofollow-based "PageRank Sculpting" technique.
121
  * Perfect for affiliate marketers and SEO-savvy bloggers.
122
 
 
 
 
123
  * **Settings Manager**
124
  * Export your SEO Ultimate settings to a file and re-import later if desired.
125
  * Move SEO Ultimate settings between blogs using the export/import functionality.
@@ -227,6 +230,9 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
227
 
228
  == Changelog ==
229
 
 
 
 
230
  = Version 5.5.1 (May 21, 2011) =
231
  * Bugfix: Link Mask Generator can now mask links that are created in the Visual Editor and whose URLs contain ampersands
232
  * Improvement: When the "Convert lowercase category/tag names to title case when used in title tags" option was checked and a term title had some capitalization, Title Tag Rewriter used to leave the entire term title alone; now it title-cases just the words without capitalization and leaves the capitalized words alone (so with the option enabled, the "iPod tips" category now becomes "iPod Tips" when used in title tags, for example)
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.0
5
  Tested up to: 3.1
6
+ Stable tag: 5.6
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
11
 
12
  = Recent Releases =
13
 
14
+ * Version 5.6 adds the Nofollow Manager module
15
  * Version 5.5 adds noindex/nofollow mass-editing for categories/tags/terms
16
  * Version 5.4 adds noindex/nofollow mass-editing for posts/pages
17
  * Version 5.3 adds meta keyword auto-generation from frequently-used words
18
  * Version 5.2 adds meta description mass-editing for categories/tags/terms
 
19
 
20
  = Features =
21
 
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, or post tag on your blog. Also supports custom post types.
27
  * Customize your homepage's `<title>` tag.
120
  * Link masks provide a modern replacement for the deprecated, nofollow-based "PageRank Sculpting" technique.
121
  * Perfect for affiliate marketers and SEO-savvy bloggers.
122
 
123
+ * **Nofollow Manager**
124
+ * Lets you maintain `rel="nofollow"` settings when migrating from other SEO plugins
125
+
126
  * **Settings Manager**
127
  * Export your SEO Ultimate settings to a file and re-import later if desired.
128
  * Move SEO Ultimate settings between blogs using the export/import functionality.
230
 
231
  == Changelog ==
232
 
233
+ = Version 5.6 (May 27, 2011) =
234
+ * Feature: Added the Nofollow Manager module (disabled by default)
235
+
236
  = Version 5.5.1 (May 21, 2011) =
237
  * Bugfix: Link Mask Generator can now mask links that are created in the Visual Editor and whose URLs contain ampersands
238
  * Improvement: When the "Convert lowercase category/tag names to title case when used in title tags" option was checked and a term title had some capitalization, Title Tag Rewriter used to leave the entire term title alone; now it title-cases just the words without capitalization and leaves the capitalized words alone (so with the option enabled, the "iPod tips" category now becomes "iPod Tips" when used in title tags, for example)
seo-ultimate.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
- Version: 5.5.1
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
- * @version 5.5.1
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.0');
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
- define('SU_VERSION', '5.5.1');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/5.5.1');
54
 
55
  /********** INCLUDES **********/
56
 
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
+ Version: 5.6
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
+ * @version 5.6
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
+ define('SU_VERSION', '5.6');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/5.6');
54
 
55
  /********** INCLUDES **********/
56
 
seo-ultimate.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: SEO Ultimate 5.5\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
- "POT-Creation-Date: 2011-05-20 17:18:27+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,360 +19,391 @@ msgid ""
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
- #: modules/class.su-module.php:368
23
- msgid ""
24
- "(Note: This translated documentation was designed for an older version of "
25
- "SEO Ultimate and may be outdated.)"
26
  msgstr ""
27
 
28
- #: modules/class.su-module.php:971
29
- msgid "%s %s|Dropdown Title"
30
  msgstr ""
31
 
32
- #: modules/class.su-module.php:999
33
- msgid "%1$s | %2$s %3$s by %4$s"
34
  msgstr ""
35
 
36
- #: modules/class.su-module.php:1056
37
- msgid "Name"
38
  msgstr ""
39
 
40
- #: modules/class.su-module.php:1067
41
- msgid "Your site currently doesn&#8217;t have any public items of this type."
42
  msgstr ""
43
 
44
- #: modules/class.su-module.php:1150
45
- msgid "&laquo;"
 
 
46
  msgstr ""
47
 
48
- #: modules/class.su-module.php:1151
49
- msgid "&raquo;"
50
  msgstr ""
51
 
52
- #: modules/class.su-module.php:1158
53
- msgid "Displaying %s&#8211;%s of %s"
54
  msgstr ""
55
 
56
- #: modules/class.su-module.php:1171 modules/404s/fofs-log.php:116
57
- msgid "Actions"
58
  msgstr ""
59
 
60
- #: modules/class.su-module.php:1172
61
- msgid "ID"
62
  msgstr ""
63
 
64
- #: modules/class.su-module.php:1205
65
- msgid "View"
66
  msgstr ""
67
 
68
- #: modules/class.su-module.php:1205
69
- msgid "Edit"
70
  msgstr ""
71
 
72
- #: modules/class.su-module.php:1360
73
- msgid "Settings updated."
74
  msgstr ""
75
 
76
- #: modules/class.su-module.php:1381
77
- msgid "Save Changes"
78
  msgstr ""
79
 
80
- #: modules/class.su-module.php:1869
81
- msgid ""
82
- "Are you sure you want to replace the textbox contents with this default "
83
- "value?"
84
  msgstr ""
85
 
86
- #: modules/class.su-module.php:1884 modules/settings/settings-data.php:23
87
- msgid "Reset"
88
  msgstr ""
89
 
90
- #: modules/class.su-importmodule.php:49
91
- msgid "Import Post Fields"
92
  msgstr ""
93
 
94
- #: modules/class.su-importmodule.php:50
95
- msgid ""
96
- "Post fields store the SEO data for your posts/pages (i.e. your custom title "
97
- "tags, meta descriptions, and meta keywords). If you provided custom titles/"
98
- "descriptions/keywords to %s, this importer can move that data over to SEO "
99
- "Ultimate."
100
  msgstr ""
101
 
102
- #: modules/class.su-importmodule.php:53
103
- msgid "Conflict Resolution Mode"
104
  msgstr ""
105
 
106
- #: modules/class.su-importmodule.php:54
107
  msgid ""
108
- "What should the import tool do if it tries to move over a post&#8217;s %s "
109
- "data, but different data already exists in the corresponding SEO Ultimate "
110
- "fields?"
 
111
  msgstr ""
112
 
113
- #: modules/class.su-importmodule.php:56
114
- msgid "Skip that post and leave all data as-is (default)."
115
  msgstr ""
116
 
117
- #: modules/class.su-importmodule.php:57
118
- msgid "Delete the SEO Ultimate data and replace it with the %s data."
119
  msgstr ""
120
 
121
- #: modules/class.su-importmodule.php:58
122
- msgid "Keep the SEO Ultimate data and delete the %s data."
123
  msgstr ""
124
 
125
- #: modules/class.su-importmodule.php:61
126
- msgid "Deletion Preference"
127
  msgstr ""
128
 
129
- #: modules/class.su-importmodule.php:62
130
- msgid ""
131
- "When the migration tool successfully copies a post&#8217;s %1$s data over to "
132
- "SEO Ultimate, what should it do with the old %1$s data?"
133
  msgstr ""
134
 
135
- #: modules/class.su-importmodule.php:64
136
- msgid "Delete the %s data."
137
  msgstr ""
138
 
139
- #: modules/class.su-importmodule.php:65
140
- msgid "Leave behind the duplicate %s data (default)."
141
  msgstr ""
142
 
143
- #: modules/class.su-importmodule.php:72
144
- msgid "Import Now"
145
  msgstr ""
146
 
147
- #: modules/class.su-importmodule.php:75
148
- msgid ""
149
- "The import cannot be undone. It is your responsibility to <a href=\"%s\" "
150
- "target=\"_blank\">backup your database</a> before proceeding!"
151
  msgstr ""
152
 
153
- #: modules/class.su-importmodule.php:84
154
- msgid "Import complete."
155
  msgstr ""
156
 
157
- #: modules/class.su-importmodule.php:90
158
- msgid "Return to import page"
159
  msgstr ""
160
 
161
- #: modules/class.su-importmodule.php:93
162
- msgid "Return to settings page"
163
  msgstr ""
164
 
165
- #: modules/class.su-importmodule.php:96
166
- msgid "Return to SEO page"
167
  msgstr ""
168
 
169
- #: modules/class.su-importmodule.php:116
170
- msgid "Deactivated %s."
171
  msgstr ""
172
 
173
- #: modules/class.su-importmodule.php:174
174
- msgid "Imported a total of %d fields for one post/page/revision."
175
- msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
176
- msgstr[0] ""
177
- msgstr[1] ""
178
 
179
- #: modules/class.su-importmodule.php:180
180
- msgid "Skipped one post with disabled %2$s data."
181
- msgid_plural "Skipped %1$d posts with disabled %2$s data."
182
- msgstr[0] ""
183
- msgstr[1] ""
184
 
185
- #: modules/class.su-importmodule.php:186
186
- msgid ""
187
- "Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
188
- "settings you chose."
189
- msgid_plural ""
190
- "Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
191
- "settings you chose."
192
- msgstr[0] ""
193
- msgstr[1] ""
194
 
195
- #: modules/class.su-importmodule.php:192
196
- msgid "Deleted one %2$s field, as instructed by the settings you chose."
197
- msgid_plural ""
198
- "Deleted %1$d %2$s fields, as instructed by the settings you chose."
199
- msgstr[0] ""
200
- msgstr[1] ""
201
 
202
- #: modules/rich-snippets/rich-snippets.php:12
203
- msgid "Rich Snippet Creator"
204
  msgstr ""
205
 
206
- #: modules/rich-snippets/rich-snippets.php:17
207
- msgid ""
208
- "Reviews\n"
209
- "Review"
210
  msgstr ""
211
 
212
- #: modules/rich-snippets/rich-snippets.php:28
213
- msgid "Data Format"
214
  msgstr ""
215
 
216
- #: modules/rich-snippets/rich-snippets.php:29
217
- msgid "Categories/Tags That Indicate Reviews"
218
  msgstr ""
219
 
220
- #: modules/rich-snippets/rich-snippets.php:37
221
- msgid "Microformats (recommended)"
222
  msgstr ""
223
 
224
- #: modules/rich-snippets/rich-snippets.php:43
225
- msgid "HTML5 Microdata"
226
  msgstr ""
227
 
228
- #: modules/rich-snippets/rich-snippets.php:49
229
- msgid "RDFa"
230
  msgstr ""
231
 
232
- #: modules/rich-snippets/rich-snippets.php:62
233
- #: modules/rich-snippets/rich-snippets.php:218
234
- msgid "Review"
235
  msgstr ""
236
 
237
- #: modules/rich-snippets/rich-snippets.php:70
238
- msgid "Star Rating"
239
  msgstr ""
240
 
241
- #: modules/rich-snippets/rich-snippets.php:79
242
- msgid "Review Author"
 
 
243
  msgstr ""
244
 
245
- #: modules/rich-snippets/rich-snippets.php:85
246
- msgid "Date Reviewed"
 
 
 
247
  msgstr ""
248
 
249
- #: modules/rich-snippets/rich-snippets.php:217
250
- #: modules/rich-snippets/rich-snippets.php:223
251
- msgid "None"
252
  msgstr ""
253
 
254
- #: modules/rich-snippets/rich-snippets.php:219
255
- msgid "Rich Snippet Type:"
256
  msgstr ""
257
 
258
- #: modules/rich-snippets/rich-snippets.php:224
259
- msgid "0.5 stars"
260
  msgstr ""
261
 
262
- #: modules/rich-snippets/rich-snippets.php:225
263
- msgid "1 star"
 
 
 
 
 
 
 
 
264
  msgstr ""
265
 
266
- #: modules/rich-snippets/rich-snippets.php:226
267
- msgid "1.5 stars"
268
  msgstr ""
269
 
270
- #: modules/rich-snippets/rich-snippets.php:227
271
- msgid "2 stars"
272
  msgstr ""
273
 
274
- #: modules/rich-snippets/rich-snippets.php:228
275
- msgid "2.5 stars"
276
  msgstr ""
277
 
278
- #: modules/rich-snippets/rich-snippets.php:229
279
- msgid "3 stars"
280
  msgstr ""
281
 
282
- #: modules/rich-snippets/rich-snippets.php:230
283
- msgid "3.5 stars"
284
  msgstr ""
285
 
286
- #: modules/rich-snippets/rich-snippets.php:231
287
- msgid "4 stars"
288
  msgstr ""
289
 
290
- #: modules/rich-snippets/rich-snippets.php:232
291
- msgid "4.5 stars"
 
 
 
 
 
292
  msgstr ""
293
 
294
- #: modules/rich-snippets/rich-snippets.php:233
295
- msgid "5 stars"
 
 
 
296
  msgstr ""
297
 
298
- #: modules/rich-snippets/rich-snippets.php:234
299
- msgid "Star Rating for Reviewed Item:"
300
  msgstr ""
301
 
302
- #: modules/site-keyword-queries/site-keyword-queries.php:12
303
- msgid "Internal Relevance Researcher"
 
 
 
 
304
  msgstr ""
305
 
306
- #: modules/site-keyword-queries/site-keyword-queries.php:13
307
- msgid "Int. Rel. Researcher"
308
  msgstr ""
309
 
310
- #: modules/site-keyword-queries/site-keyword-queries.php:21
311
- msgid "Step 1: Enter Keywords"
 
 
 
312
  msgstr ""
313
 
314
- #: modules/site-keyword-queries/site-keyword-queries.php:23
315
- msgid "(Type one keyword per line)"
316
  msgstr ""
317
 
318
- #: modules/site-keyword-queries/site-keyword-queries.php:25
319
- msgid "Step 2: Set Options and Submit"
320
  msgstr ""
321
 
322
- #: modules/site-keyword-queries/site-keyword-queries.php:27
323
- msgid "Put keywords in quotes"
324
  msgstr ""
325
 
326
- #: modules/site-keyword-queries/site-keyword-queries.php:28
327
- #: modules/competition-queries/competition-queries.php:62
328
- msgid "Show 100 results per page"
329
  msgstr ""
330
 
331
- #: modules/site-keyword-queries/site-keyword-queries.php:30
332
- #: modules/competition-queries/competition-queries.php:64
333
- msgid "Use Google&#8217;s minimal mode"
 
334
  msgstr ""
335
 
336
- #: modules/site-keyword-queries/site-keyword-queries.php:33
337
- #: modules/competition-queries/competition-queries.php:70
338
- msgid "Submit"
339
  msgstr ""
340
 
341
- #: modules/internal-link-aliases/internal-link-aliases.php:20
342
- msgid "Link Mask Generator"
343
  msgstr ""
344
 
345
- #: modules/internal-link-aliases/internal-link-aliases.php:24
346
- msgid "Alias Directory"
347
  msgstr ""
348
 
349
- #: modules/internal-link-aliases/internal-link-aliases.php:43
350
- msgid "Link Masks"
 
 
351
  msgstr ""
352
 
353
- #: modules/internal-link-aliases/internal-link-aliases.php:46
354
- #: modules/autolinks/content-autolinks.php:196
355
- msgid "URL"
356
  msgstr ""
357
 
358
- #: modules/internal-link-aliases/internal-link-aliases.php:46
359
- msgid "Mask URL"
360
  msgstr ""
361
 
362
- #: modules/internal-link-aliases/internal-link-aliases.php:66
363
- msgid ""
364
- "You can stop search engines from following a link by typing in a mask for "
365
- "its URL."
366
  msgstr ""
367
 
368
- #: modules/internal-link-aliases/internal-link-aliases.php:122
369
- msgid "Added by Link Alias Generator (LAG) module"
370
  msgstr ""
371
 
372
- #: modules/internal-link-aliases/internal-link-aliases.php:133
373
- msgid "End LAG"
374
  msgstr ""
375
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
376
  #: modules/titles/titles.php:12
377
  msgid "Title Tag Rewriter"
378
  msgstr ""
@@ -474,152 +505,252 @@ msgstr ""
474
  msgid "Month Archive Title Format"
475
  msgstr ""
476
 
477
- #: modules/titles/titles.php:77
478
- msgid "Year Archive Title Format"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
479
  msgstr ""
480
 
481
- #: modules/titles/titles.php:78
482
- msgid "Author Archive Title Format"
 
483
  msgstr ""
484
 
485
- #: modules/titles/titles.php:79
486
- msgid "Search Title Format"
487
  msgstr ""
488
 
489
- #: modules/titles/titles.php:80
490
- msgid "404 Title Format"
 
491
  msgstr ""
492
 
493
- #: modules/titles/titles.php:81
494
- msgid "Pagination Title Format"
495
  msgstr ""
496
 
497
- #: modules/titles/titles.php:307
498
- msgid "Title Tag:"
499
  msgstr ""
500
 
501
- #: modules/titles/titles.php:312
502
- msgid ""
503
- "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
504
- "tag. The title appears in visitors&#8217; title bars and in search engine "
505
- "result titles. If this box is left blank, then the <a href=\"admin.php?"
506
- "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
507
  msgstr ""
508
 
509
- #: modules/competition-queries/competition-queries.php:12
510
- msgid "Competition Researcher"
511
  msgstr ""
512
 
513
- #: modules/competition-queries/competition-queries.php:13
514
- msgid "Comp. Researcher"
515
  msgstr ""
516
 
517
- #: modules/competition-queries/competition-queries.php:17
518
  msgid ""
519
- "The Competition Researcher provides you with easy access to various search "
520
- "engine tools which you can use to research multiple search queries or URLs."
521
  msgstr ""
522
 
523
- #: modules/competition-queries/competition-queries.php:21
524
- msgid "Step 1: Choose Your Research Tool"
525
  msgstr ""
526
 
527
- #: modules/competition-queries/competition-queries.php:25
528
- msgid "Keywords"
529
  msgstr ""
530
 
531
- #: modules/competition-queries/competition-queries.php:25
532
- msgid "Normal Search"
533
  msgstr ""
534
 
535
- #: modules/competition-queries/competition-queries.php:25
536
- msgid "Find out how many pages contain the words in each query"
537
  msgstr ""
538
 
539
- #: modules/competition-queries/competition-queries.php:26
540
- msgid "Phrase Match"
541
  msgstr ""
542
 
543
- #: modules/competition-queries/competition-queries.php:26
544
- msgid ""
545
- "Find out how many &#8220;actual&#8221; pages are competing for each query"
546
  msgstr ""
547
 
548
- #: modules/competition-queries/competition-queries.php:27
549
- msgid "Allinanchor"
550
  msgstr ""
551
 
552
- #: modules/competition-queries/competition-queries.php:27
553
- msgid "Find out which sites have the most links for each query"
554
  msgstr ""
555
 
556
- #: modules/competition-queries/competition-queries.php:28
557
- msgid "Allintitle"
558
  msgstr ""
559
 
560
- #: modules/competition-queries/competition-queries.php:28
561
- msgid ""
562
- "Find out which sites have the highest relevance in the title for each query"
563
  msgstr ""
564
 
565
- #: modules/competition-queries/competition-queries.php:29
566
- msgid "Allintext"
567
  msgstr ""
568
 
569
- #: modules/competition-queries/competition-queries.php:29
570
- msgid "Find out which sites have the most relevant content/text on their pages"
571
  msgstr ""
572
 
573
- #: modules/competition-queries/competition-queries.php:30
574
- msgid "Allinurl"
575
  msgstr ""
576
 
577
- #: modules/competition-queries/competition-queries.php:30
578
- msgid ""
579
- "Find out which sites have the most relevant naming conventions for each "
580
- "keyword"
581
  msgstr ""
582
 
583
- #: modules/competition-queries/competition-queries.php:32
584
- msgid "URLs"
585
  msgstr ""
586
 
587
- #: modules/competition-queries/competition-queries.php:32
588
- msgid "Site"
589
  msgstr ""
590
 
591
- #: modules/competition-queries/competition-queries.php:32
592
- msgid "Find out how many pages are indexed for each domain"
593
  msgstr ""
594
 
595
- #: modules/competition-queries/competition-queries.php:33
596
- #: modules/competition-queries/competition-queries.php:38
597
- msgid "Inbound Links"
598
  msgstr ""
599
 
600
- #: modules/competition-queries/competition-queries.php:33
601
- msgid "Find out how many sites link to the domains"
602
  msgstr ""
603
 
604
- #: modules/competition-queries/competition-queries.php:34
605
- #: modules/competition-queries/competition-queries.php:38
606
- msgid "Outbound Links"
607
  msgstr ""
608
 
609
- #: modules/competition-queries/competition-queries.php:34
610
- msgid "Find out how many sites the domains link to"
611
  msgstr ""
612
 
613
- #: modules/competition-queries/competition-queries.php:56
614
- msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
615
  msgstr ""
616
 
617
- #: modules/competition-queries/competition-queries.php:58
618
- msgid "(Type in one per line)"
619
  msgstr ""
620
 
621
- #: modules/competition-queries/competition-queries.php:60
622
- msgid "Step 3: Set Options and Submit"
 
 
 
 
 
 
 
 
623
  msgstr ""
624
 
625
  #: modules/meta/meta-keywords.php:12
@@ -630,14 +761,6 @@ msgstr ""
630
  msgid "Meta Keywords"
631
  msgstr ""
632
 
633
- #: modules/meta/meta-keywords.php:32 modules/noindex/noindex.php:43
634
- msgid "Default Values"
635
- msgstr ""
636
-
637
- #: modules/meta/meta-keywords.php:33 modules/meta/meta-descriptions.php:25
638
- msgid "Blog Homepage"
639
- msgstr ""
640
-
641
  #: modules/meta/meta-keywords.php:55
642
  msgid "The %d most commonly-used words"
643
  msgstr ""
@@ -717,334 +840,314 @@ msgstr ""
717
  msgid "Don&#8217t cache or archive this site."
718
  msgstr ""
719
 
720
- #: modules/meta/meta-descriptions.php:12
721
- msgid "Meta Description Editor"
722
- msgstr ""
723
-
724
- #: modules/meta/meta-descriptions.php:13
725
- msgid "Meta Descriptions"
726
- msgstr ""
727
-
728
- #: modules/meta/meta-descriptions.php:31
729
- msgid "Meta Description"
730
  msgstr ""
731
 
732
- #: modules/meta/meta-descriptions.php:46
733
- msgid "Post Description Format"
734
  msgstr ""
735
 
736
- #: modules/meta/meta-descriptions.php:53
737
- msgid "Blog Homepage Meta Description"
738
  msgstr ""
739
 
740
- #: modules/meta/meta-descriptions.php:55
741
- msgid "Use this blog&#8217s tagline as the default homepage description."
742
  msgstr ""
743
 
744
- #: modules/meta/meta-descriptions.php:56
745
- msgid "Default Value"
746
  msgstr ""
747
 
748
- #: modules/meta/meta-descriptions.php:108
749
- msgid "Meta Description:"
750
  msgstr ""
751
 
752
- #: modules/meta/meta-descriptions.php:111
753
- msgid "You&#8217;ve entered %s characters. Most search engines use up to 160."
754
  msgstr ""
755
 
756
- #: modules/meta/meta-descriptions.php:119
757
- msgid ""
758
- "<strong>Description</strong> &mdash; The value of the meta description tag. "
759
- "The description will often appear underneath the title in search engine "
760
- "results. Writing an accurate, attention-grabbing description for every post "
761
- "is important to ensuring a good search results clickthrough rate."
762
  msgstr ""
763
 
764
- #: modules/import-aiosp/import-aiosp.php:12
765
- msgid "Import from All in One SEO Pack"
766
  msgstr ""
767
 
768
- #: modules/import-aiosp/import-aiosp.php:13
769
- msgid "AIOSP Import"
770
  msgstr ""
771
 
772
- #: modules/import-aiosp/import-aiosp.php:15
773
- msgid "All in One SEO Pack"
774
  msgstr ""
775
 
776
- #: modules/import-aiosp/import-aiosp.php:16
777
- msgid "AIOSP"
778
  msgstr ""
779
 
780
- #: modules/import-aiosp/import-aiosp.php:17
781
- msgid "Import post data (custom title tags and meta tags)."
782
  msgstr ""
783
 
784
- #: modules/import-aiosp/import-aiosp.php:21
785
- msgid ""
786
- "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
787
- "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
788
- "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
789
- "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
790
- "to be currently installed or activated for the import to take place."
791
  msgstr ""
792
 
793
- #: modules/import-aiosp/import-aiosp.php:23
794
- msgid ""
795
- "The import tool can only move over data from AIOSP version 1.6 or above. If "
796
- "you use an older version of AIOSP, you should update to the latest version "
797
- "first and run AIOSP&#8217;s upgrade process."
798
  msgstr ""
799
 
800
- #: modules/sds-blog/sds-blog.php:12
801
- msgid "Whitepapers"
802
  msgstr ""
803
 
804
- #: modules/sds-blog/sds-blog.php:13
805
- msgid "SEO Design Solutions Whitepapers"
806
  msgstr ""
807
 
808
- #. #-#-#-#-# plugin.pot (SEO Ultimate 5.5) #-#-#-#-#
809
- #. Author of the plugin/theme
810
- #: modules/sds-blog/sds-blog.php:49
811
- msgid "SEO Design Solutions"
812
  msgstr ""
813
 
814
- #: modules/sds-blog/sds-blog.php:50
815
- msgid ""
816
- "The search engine optimization articles below are loaded from the website of "
817
- "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
818
- "an article&#8217;s title to read it."
819
  msgstr ""
820
 
821
- #: modules/modules/modules.php:12
822
- msgid "Module Manager"
823
  msgstr ""
824
 
825
- #: modules/modules/modules.php:13
826
- msgid "Modules"
827
  msgstr ""
828
 
829
- #: modules/modules/modules.php:37
830
- msgid ""
831
- "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
832
- "&#8221; By default, most of these modules are listed in the &#8220;"
833
- "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
834
- "you can view documentation by clicking the tabs in the upper-right-hand "
835
- "corner of your administration screen."
836
  msgstr ""
837
 
838
- #: modules/modules/modules.php:39
839
  msgid ""
840
- "The Module Manager lets you disable or hide modules you don&#8217;t use. "
841
- "You can also silence modules from displaying bubble alerts on the menu."
842
- msgstr ""
843
-
844
- #: modules/modules/modules.php:45
845
- msgid "Status"
846
  msgstr ""
847
 
848
- #: modules/modules/modules.php:46
849
- msgid "Module"
850
  msgstr ""
851
 
852
- #: modules/modules/modules.php:59
853
- msgid "Enabled"
854
  msgstr ""
855
 
856
- #: modules/modules/modules.php:60
857
- msgid "Silenced"
858
  msgstr ""
859
 
860
- #: modules/modules/modules.php:61
861
- msgid "Hidden"
862
  msgstr ""
863
 
864
- #: modules/modules/modules.php:62
865
- msgid "Disabled"
866
  msgstr ""
867
 
868
- #: modules/slugs/slugs.php:12
869
- msgid "Slug Optimizer"
 
870
  msgstr ""
871
 
872
- #: modules/slugs/slugs.php:16
873
- msgid "Words to Remove"
874
  msgstr ""
875
 
876
- #: modules/404s/fofs.php:11
877
- msgid "404 Monitor"
878
  msgstr ""
879
 
880
- #: modules/404s/fofs-settings.php:16
881
- msgid "404 Monitor Settings"
882
  msgstr ""
883
 
884
- #: modules/404s/fofs-settings.php:37
885
- msgid "Continue monitoring for new 404 errors"
 
886
  msgstr ""
887
 
888
- #: modules/404s/fofs-settings.php:37
889
- msgid "Monitoring Settings"
890
  msgstr ""
891
 
892
- #: modules/404s/fofs-settings.php:39
893
- msgid "Only log these types of 404 errors:"
894
  msgstr ""
895
 
896
- #: modules/404s/fofs-settings.php:40
897
- msgid "404s generated by search engine spiders"
898
  msgstr ""
899
 
900
- #: modules/404s/fofs-settings.php:41
901
- msgid "404s with referring URLs"
 
 
902
  msgstr ""
903
 
904
- #: modules/404s/fofs-settings.php:42
905
- msgid "Log Restrictions"
906
  msgstr ""
907
 
908
- #: modules/404s/fofs-settings.php:43
909
- msgid "Maximum Log Entries"
910
  msgstr ""
911
 
912
- #: modules/404s/fofs-settings.php:44
913
- msgid "URLs to Ignore"
914
  msgstr ""
915
 
916
- #: modules/404s/fofs-settings.php:44
917
- msgid "(Use * as wildcard)"
 
918
  msgstr ""
919
 
920
- #: modules/404s/fofs-log.php:16
921
- msgid "404 Monitor Log"
922
  msgstr ""
923
 
924
- #: modules/404s/fofs-log.php:17
925
- msgid "Log"
 
926
  msgstr ""
927
 
928
- #: modules/404s/fofs-log.php:117
929
- msgid "Hits"
930
  msgstr ""
931
 
932
- #: modules/404s/fofs-log.php:118
933
- msgid "URL with 404 Error"
934
  msgstr ""
935
 
936
- #: modules/404s/fofs-log.php:119
937
- msgid "Date of Most Recent Hit"
938
  msgstr ""
939
 
940
- #: modules/404s/fofs-log.php:120
941
- msgid "Referers"
942
  msgstr ""
943
 
944
- #: modules/404s/fofs-log.php:121 modules/404s/fofs-log.php:224
945
- msgid "User Agents"
 
946
  msgstr ""
947
 
948
- #: modules/404s/fofs-log.php:137
949
- msgid ""
950
- "New 404 errors will not be recorded because 404 logging is disabled on the "
951
- "Settings tab."
952
  msgstr ""
953
 
954
- #: modules/404s/fofs-log.php:144
955
- msgid "The log entry was successfully deleted."
 
956
  msgstr ""
957
 
958
- #: modules/404s/fofs-log.php:146
959
- msgid "This log entry has already been deleted."
960
  msgstr ""
961
 
962
- #: modules/404s/fofs-log.php:155
963
- msgid "The log was successfully cleared."
964
  msgstr ""
965
 
966
- #: modules/404s/fofs-log.php:159
967
- msgid "No 404 errors in the log."
968
  msgstr ""
969
 
970
- #: modules/404s/fofs-log.php:183
971
- msgid "Open URL in new window (will not be logged)"
972
  msgstr ""
973
 
974
- #: modules/404s/fofs-log.php:184
975
- msgid "Query Google for cached version of URL (opens in new window)"
976
  msgstr ""
977
 
978
- #: modules/404s/fofs-log.php:185
979
- msgid "Remove this URL from the log"
980
  msgstr ""
981
 
982
- #: modules/404s/fofs-log.php:188
983
- msgid "%s at %s"
984
  msgstr ""
985
 
986
- #: modules/404s/fofs-log.php:192
987
- msgid "View list of referring URLs"
988
  msgstr ""
989
 
990
- #: modules/404s/fofs-log.php:193
991
- msgid "View list of user agents"
992
  msgstr ""
993
 
994
- #: modules/404s/fofs-log.php:203
995
- msgid "Referring URLs"
996
  msgstr ""
997
 
998
- #: modules/404s/fofs-log.php:204 modules/404s/fofs-log.php:225
999
- msgid "Hide list"
1000
  msgstr ""
1001
 
1002
- #: modules/404s/fofs-log.php:255
1003
- msgid "Are you sure you want to delete all 404 log entries?"
1004
  msgstr ""
1005
 
1006
- #: modules/404s/fofs-log.php:257
1007
- msgid "Clear Log"
1008
  msgstr ""
1009
 
1010
- #: modules/linkbox/linkbox.php:12
1011
- msgid "Linkbox Inserter"
1012
  msgstr ""
1013
 
1014
- #: modules/linkbox/linkbox.php:18
1015
- msgid "Link to this post!"
1016
  msgstr ""
1017
 
1018
- #: modules/linkbox/linkbox.php:45
1019
- msgid "At the end of posts"
 
 
 
 
 
1020
  msgstr ""
1021
 
1022
- #: modules/linkbox/linkbox.php:46
1023
- msgid "At the end of pages"
 
 
1024
  msgstr ""
1025
 
1026
- #: modules/linkbox/linkbox.php:47
1027
- msgid "When called by the su_linkbox hook"
1028
  msgstr ""
1029
 
1030
- #: modules/linkbox/linkbox.php:48
1031
- msgid "Display linkboxes..."
1032
  msgstr ""
1033
 
1034
- #: modules/linkbox/linkbox.php:49
1035
- msgid "Linkbox HTML"
1036
  msgstr ""
1037
 
1038
- #: modules/more-links/more-links.php:12
1039
- msgid "More Link Customizer"
1040
  msgstr ""
1041
 
1042
- #: modules/more-links/more-links.php:27
1043
- msgid "Default More Link Text"
1044
  msgstr ""
1045
 
1046
- #: modules/more-links/more-links.php:48
1047
- msgid "More Link Text:"
1048
  msgstr ""
1049
 
1050
  #: modules/files/files.php:14
@@ -1082,64 +1185,32 @@ msgstr ""
1082
 
1083
  #: modules/files/files.php:75
1084
  msgid ""
1085
- "Please realize that incorrectly editing your robots.txt file could block "
1086
- "search engines from your site."
1087
- msgstr ""
1088
-
1089
- #: modules/files/files.php:79
1090
- msgid ".htaccess"
1091
- msgstr ""
1092
-
1093
- #: modules/files/files.php:82
1094
- msgid ""
1095
- "Also, incorrectly editing your .htaccess file could disable your entire "
1096
- "website. Edit with caution!"
1097
- msgstr ""
1098
-
1099
- #: modules/files/files.php:134
1100
- msgid ""
1101
- "Please note that your privacy settings won&#8217;t have any effect on your "
1102
- "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1103
- msgstr ""
1104
-
1105
- #: modules/canonical/canonical.php:12
1106
- msgid "Canonicalizer"
1107
- msgstr ""
1108
-
1109
- #: modules/canonical/canonical.php:33
1110
- msgid "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> tags."
1111
- msgstr ""
1112
-
1113
- #: modules/canonical/canonical.php:34
1114
- msgid "Redirect requests for nonexistent pagination."
1115
- msgstr ""
1116
-
1117
- #: modules/user-code/user-code.php:12
1118
- msgid "Code Inserter"
1119
- msgstr ""
1120
-
1121
- #: modules/user-code/user-code.php:27
1122
- msgid "Everywhere"
1123
  msgstr ""
1124
 
1125
- #: modules/user-code/user-code.php:34
1126
- msgid "&lt;head&gt; Tag"
1127
  msgstr ""
1128
 
1129
- #: modules/user-code/user-code.php:35
1130
- msgid "Before Item Content"
 
 
1131
  msgstr ""
1132
 
1133
- #: modules/user-code/user-code.php:36
1134
- msgid "After Item Content"
 
 
1135
  msgstr ""
1136
 
1137
- #: modules/user-code/user-code.php:37
1138
- msgid "Footer"
1139
  msgstr ""
1140
 
1141
- #: modules/user-code/user-code.php:51
1142
- msgid "Code Inserter module"
1143
  msgstr ""
1144
 
1145
  #: modules/settings/settings-data.php:16
@@ -1310,48 +1381,10 @@ msgstr ""
1310
  msgid "Restore Default Settings"
1311
  msgstr ""
1312
 
1313
- #: modules/settings/global-settings.php:18
1314
- msgid "Global Settings"
1315
- msgstr ""
1316
-
1317
- #: modules/settings/global-settings.php:40
1318
- msgid "Enable nofollow&#8217;d attribution link"
1319
- msgstr ""
1320
-
1321
- #: modules/settings/global-settings.php:41
1322
- msgid "Enable attribution link CSS styling"
1323
- msgstr ""
1324
-
1325
- #: modules/settings/global-settings.php:42
1326
- msgid "Notify me about unnecessary active plugins"
1327
- msgstr ""
1328
-
1329
- #: modules/settings/global-settings.php:43
1330
- msgid "Insert comments around HTML code insertions"
1331
- msgstr ""
1332
-
1333
- #: modules/settings/settings.php:12
1334
- msgid "Plugin Settings"
1335
- msgstr ""
1336
-
1337
- #: modules/settings/settings.php:13
1338
- msgid "SEO Ultimate Plugin Settings"
1339
- msgstr ""
1340
-
1341
- #. #-#-#-#-# plugin.pot (SEO Ultimate 5.5) #-#-#-#-#
1342
- #. Plugin Name of the plugin/theme
1343
- #: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:741
1344
- msgid "SEO Ultimate"
1345
- msgstr ""
1346
-
1347
  #: modules/settings/uninstall.php:17
1348
  msgid "Uninstaller"
1349
  msgstr ""
1350
 
1351
- #: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1228
1352
- msgid "Uninstall"
1353
- msgstr ""
1354
-
1355
  #: modules/settings/uninstall.php:27
1356
  msgid ""
1357
  "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
@@ -1388,6 +1421,26 @@ msgstr ""
1388
  msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1389
  msgstr ""
1390
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1391
  #: modules/settings/install.php:18
1392
  msgid "Upgrade/Downgrade/Reinstall"
1393
  msgstr ""
@@ -1483,401 +1536,416 @@ msgstr ""
1483
  msgid "Upgrade to SEO Ultimate %s"
1484
  msgstr ""
1485
 
1486
- #: modules/sharing-buttons/sharing-buttons.php:12
1487
- msgid "Sharing Facilitator"
1488
  msgstr ""
1489
 
1490
- #: modules/sharing-buttons/sharing-buttons.php:22
1491
- msgid "Bookmark and Share"
1492
  msgstr ""
1493
 
1494
- #: modules/sharing-buttons/sharing-buttons.php:28
1495
- msgid "Providers"
1496
  msgstr ""
1497
 
1498
- #: modules/sharing-buttons/sharing-buttons.php:34
1499
- msgid "Which provider would you like to use for your sharing buttons?"
1500
  msgstr ""
1501
 
1502
- #: modules/sharing-buttons/sharing-buttons.php:36
1503
- msgid "None; disable sharing buttons"
1504
  msgstr ""
1505
 
1506
- #: modules/sharing-buttons/sharing-buttons.php:37
1507
- msgid "Use the ShareThis button"
1508
  msgstr ""
1509
 
1510
- #: modules/sharing-buttons/sharing-buttons.php:38
1511
- msgid "Use the AddThis button"
1512
  msgstr ""
1513
 
1514
- #: modules/noindex/noindex.php:12
1515
- msgid "Noindex Manager"
1516
  msgstr ""
1517
 
1518
- #: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
1519
- #: modules/noindex/noindex.php:67
1520
- msgid "Noindex"
 
1521
  msgstr ""
1522
 
1523
- #: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
1524
- #: modules/autolinks/content-autolinks.php:204
1525
- msgid "Nofollow"
1526
  msgstr ""
1527
 
1528
- #: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
1529
- msgid "Use default"
1530
  msgstr ""
1531
 
1532
- #: modules/noindex/noindex.php:63
1533
- msgid "noindex"
1534
  msgstr ""
1535
 
1536
- #: modules/noindex/noindex.php:64
1537
- msgid "index"
1538
  msgstr ""
1539
 
1540
- #: modules/noindex/noindex.php:74
1541
- msgid "nofollow"
1542
  msgstr ""
1543
 
1544
- #: modules/noindex/noindex.php:75
1545
- msgid "follow"
1546
  msgstr ""
1547
 
1548
- #: modules/noindex/noindex.php:89
1549
- msgid ""
1550
- "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
1551
- "block indexing of the entire site, regardless of which options are set below."
1552
  msgstr ""
1553
 
1554
- #: modules/noindex/noindex.php:92
1555
- msgid "Prevent indexing of..."
1556
  msgstr ""
1557
 
1558
- #: modules/noindex/noindex.php:93
1559
- msgid "Administration back-end pages"
1560
  msgstr ""
1561
 
1562
- #: modules/noindex/noindex.php:94
1563
- msgid "Author archives"
1564
  msgstr ""
1565
 
1566
- #: modules/noindex/noindex.php:95
1567
- msgid "Blog search pages"
1568
  msgstr ""
1569
 
1570
- #: modules/noindex/noindex.php:96
1571
- msgid "Category archives"
1572
  msgstr ""
1573
 
1574
- #: modules/noindex/noindex.php:97
1575
- msgid "Comment feeds"
1576
  msgstr ""
1577
 
1578
- #: modules/noindex/noindex.php:98
1579
- msgid "Comment subpages"
1580
  msgstr ""
1581
 
1582
- #: modules/noindex/noindex.php:99
1583
- msgid "Date-based archives"
1584
  msgstr ""
1585
 
1586
- #: modules/noindex/noindex.php:100
1587
- msgid "Subpages of the homepage"
1588
  msgstr ""
1589
 
1590
- #: modules/noindex/noindex.php:101
1591
- msgid "Tag archives"
1592
  msgstr ""
1593
 
1594
- #: modules/noindex/noindex.php:102
1595
- msgid "User login/registration pages"
1596
  msgstr ""
1597
 
1598
- #: modules/noindex/noindex.php:165
1599
- msgid "Noindex: Tell search engines not to index this webpage."
1600
  msgstr ""
1601
 
1602
- #: modules/noindex/noindex.php:166
1603
- msgid "Nofollow: Tell search engines not to spider links on this webpage."
1604
  msgstr ""
1605
 
1606
- #: modules/noindex/noindex.php:167
1607
- msgid "Meta Robots Tag:"
1608
  msgstr ""
1609
 
1610
- #: modules/autolinks/autolinks.php:11
1611
- msgid "Deeplink Juggernaut"
1612
  msgstr ""
1613
 
1614
- #: modules/autolinks/content-autolinks.php:16
1615
- msgid "Content Deeplink Juggernaut"
1616
  msgstr ""
1617
 
1618
- #: modules/autolinks/content-autolinks.php:17
1619
- msgid "Content Links"
1620
  msgstr ""
1621
 
1622
- #: modules/autolinks/content-autolinks.php:100
1623
- msgid ""
1624
- "The Content Links section of Deeplink Juggernaut lets you automatically link "
1625
- "a certain word or phrase in your post/page content to a URL you specify."
1626
  msgstr ""
1627
 
1628
- #: modules/autolinks/content-autolinks.php:136
1629
- msgid "Edit Existing Links"
1630
  msgstr ""
1631
 
1632
- #: modules/autolinks/content-autolinks.php:140
1633
- msgid "Add a New Link"
1634
  msgstr ""
1635
 
1636
- #: modules/autolinks/content-autolinks.php:148
1637
- msgid "Anchor Text"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1638
  msgstr ""
1639
 
1640
- #: modules/autolinks/content-autolinks.php:149
1641
- msgid "Destination Type"
1642
  msgstr ""
1643
 
1644
- #: modules/autolinks/content-autolinks.php:150
1645
- msgid "Destination"
1646
  msgstr ""
1647
 
1648
- #: modules/autolinks/content-autolinks.php:151
1649
- msgid "Title Attribute"
1650
  msgstr ""
1651
 
1652
- #: modules/autolinks/content-autolinks.php:152
1653
- msgid "Options"
 
 
1654
  msgstr ""
1655
 
1656
- #: modules/autolinks/content-autolinks.php:154
1657
- msgid "Delete"
1658
  msgstr ""
1659
 
1660
- #: modules/autolinks/content-autolinks.php:196
1661
- msgid "Custom"
1662
  msgstr ""
1663
 
1664
- #: modules/autolinks/content-autolinks.php:197
1665
- msgid "Content Items"
1666
  msgstr ""
1667
 
1668
- #: modules/autolinks/content-autolinks.php:205
1669
- msgid "New window"
1670
  msgstr ""
1671
 
1672
- #: modules/autolinks/content-autolinks.php:269
1673
- msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
1674
  msgstr ""
1675
 
1676
- #: modules/autolinks/content-autolinks.php:270
1677
- msgid "Don&#8217;t add autolinks to anchor texts found in this post."
 
1678
  msgstr ""
1679
 
1680
- #: modules/autolinks/content-autolinks.php:270
1681
- msgid "Autolink Exclusion:"
1682
  msgstr ""
1683
 
1684
- #: modules/autolinks/content-autolinks.php:275
1685
- msgid ""
1686
- "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
1687
- "into this box, Deeplink Juggernaut will search for that anchor in all your "
1688
- "other posts and link it to this post. For example, if the post you&#8217;re "
1689
- "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
1690
- "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
1691
- "Deeplink Juggernaut will automatically build internal links to this post "
1692
- "with that anchor text (assuming other posts contain that text)."
1693
  msgstr ""
1694
 
1695
- #: modules/autolinks/content-autolinks-settings.php:16
1696
- msgid "Content Deeplink Juggernaut Settings"
1697
  msgstr ""
1698
 
1699
- #: modules/autolinks/content-autolinks-settings.php:17
1700
- msgid "Content Link Settings"
 
1701
  msgstr ""
1702
 
1703
- #: modules/autolinks/content-autolinks-settings.php:21
1704
- msgid "Allow posts to link to themselves."
1705
  msgstr ""
1706
 
1707
- #: modules/autolinks/content-autolinks-settings.php:22
1708
- msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1709
  msgstr ""
1710
 
1711
- #: modules/autolinks/content-autolinks-settings.php:23
1712
- msgid ""
1713
- "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1714
- "etc."
1715
  msgstr ""
1716
 
1717
- #: plugin/class.su-installer.php:9
1718
- msgid "Package not available."
1719
  msgstr ""
1720
 
1721
- #: plugin/class.su-installer.php:12
1722
- msgid "Removing the current version of the plugin&#8230;"
1723
  msgstr ""
1724
 
1725
- #: plugin/class.su-installer.php:13
1726
- msgid "Could not remove the current version of the plugin."
1727
  msgstr ""
1728
 
1729
- #: plugin/class.su-installer.php:17
1730
- msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
1731
  msgstr ""
1732
 
1733
- #: plugin/class.su-installer.php:18
1734
- msgid "Unpacking the downgrade&#8230;"
1735
  msgstr ""
1736
 
1737
- #: plugin/class.su-installer.php:19
1738
- msgid "Installing the downgrade&#8230;"
1739
  msgstr ""
1740
 
1741
- #: plugin/class.su-installer.php:20
1742
- msgid "Plugin downgrade failed."
1743
  msgstr ""
1744
 
1745
- #: plugin/class.su-installer.php:21
1746
- msgid "Plugin downgraded successfully."
1747
  msgstr ""
1748
 
1749
- #: plugin/class.su-installer.php:24
1750
- msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
1751
  msgstr ""
1752
 
1753
- #: plugin/class.su-installer.php:25
1754
- msgid "Unpacking the reinstall&#8230;"
1755
  msgstr ""
1756
 
1757
- #: plugin/class.su-installer.php:26
1758
- msgid "Reinstalling the current version&#8230;"
1759
  msgstr ""
1760
 
1761
- #: plugin/class.su-installer.php:27
1762
- msgid "Plugin reinstallation failed."
1763
  msgstr ""
1764
 
1765
- #: plugin/class.su-installer.php:28
1766
- msgid "Plugin reinstalled successfully."
1767
  msgstr ""
1768
 
1769
- #: plugin/class.su-installer.php:32
1770
- msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
1771
  msgstr ""
1772
 
1773
- #: plugin/class.su-installer.php:33
1774
- msgid "Unpacking the upgrade&#8230;"
1775
  msgstr ""
1776
 
1777
- #: plugin/class.su-installer.php:34
1778
- msgid "Installing the upgrade&#8230;"
1779
  msgstr ""
1780
 
1781
- #: plugin/class.su-installer.php:35
1782
- msgid "Plugin upgrade failed."
1783
  msgstr ""
1784
 
1785
- #: plugin/class.su-installer.php:36
1786
- msgid "Plugin upgraded successfully."
1787
  msgstr ""
1788
 
1789
- #: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
1790
- msgid "%s and %s"
1791
  msgstr ""
1792
 
1793
- #: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
1794
- msgid ", "
1795
  msgstr ""
1796
 
1797
- #: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
1798
- msgid "%s, and %s"
1799
  msgstr ""
1800
 
1801
- #: plugin/class.seo-ultimate.php:741
1802
- msgid "SEO"
 
 
1803
  msgstr ""
1804
 
1805
- #: plugin/class.seo-ultimate.php:1019
1806
- msgid "SEO Settings Help"
1807
  msgstr ""
1808
 
1809
- #: plugin/class.seo-ultimate.php:1021
1810
- msgid "The SEO Settings box lets you customize these settings:"
1811
  msgstr ""
1812
 
1813
- #: plugin/class.seo-ultimate.php:1023
1814
- msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
 
 
1815
  msgstr ""
1816
 
1817
- #: plugin/class.seo-ultimate.php:1078
1818
- msgid ""
1819
- "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
1820
- "1$s to avoid plugin conflicts."
1821
  msgstr ""
1822
 
1823
- #: plugin/class.seo-ultimate.php:1119
1824
- msgid "new feature"
1825
  msgstr ""
1826
 
1827
- #: plugin/class.seo-ultimate.php:1119
1828
- msgid "new features"
1829
  msgstr ""
1830
 
1831
- #: plugin/class.seo-ultimate.php:1120
1832
- msgid "bugfix"
1833
  msgstr ""
1834
 
1835
- #: plugin/class.seo-ultimate.php:1120
1836
- msgid "bugfixes"
1837
  msgstr ""
1838
 
1839
- #: plugin/class.seo-ultimate.php:1121
1840
- msgid "improvement"
1841
  msgstr ""
1842
 
1843
- #: plugin/class.seo-ultimate.php:1121
1844
- msgid "improvements"
1845
  msgstr ""
1846
 
1847
- #: plugin/class.seo-ultimate.php:1122
1848
- msgid "security fix"
1849
  msgstr ""
1850
 
1851
- #: plugin/class.seo-ultimate.php:1122
1852
- msgid "security fixes"
1853
  msgstr ""
1854
 
1855
- #: plugin/class.seo-ultimate.php:1153
1856
- msgid "%d %s"
1857
  msgstr ""
1858
 
1859
- #: plugin/class.seo-ultimate.php:1159
1860
- msgid "Upgrade now to get %s. %s."
1861
  msgstr ""
1862
 
1863
- #: plugin/class.seo-ultimate.php:1161
1864
- msgid "View changelog"
1865
  msgstr ""
1866
 
1867
- #: plugin/class.seo-ultimate.php:1248
1868
- msgid "Active Modules: "
1869
  msgstr ""
1870
 
1871
- #: plugin/class.seo-ultimate.php:1309
1872
- msgid ""
1873
- "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
1874
- "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
1875
- "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
1876
- "to everyone."
1877
  msgstr ""
1878
 
1879
- #: plugin/class.seo-ultimate.php:1419
1880
- msgid "SEO Settings"
 
 
 
 
 
 
 
1881
  msgstr ""
1882
 
1883
  #: includes/jlwp/functions.php:56
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEO Ultimate 5.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
+ "POT-Creation-Date: 2011-05-28 00:59:59+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 5.6) #-#-#-#-#
23
+ #. Plugin Name of the plugin/theme
24
+ #: plugin/class.seo-ultimate.php:741 modules/settings/settings.php:14
25
+ msgid "SEO Ultimate"
26
  msgstr ""
27
 
28
+ #: plugin/class.seo-ultimate.php:741
29
+ msgid "SEO"
30
  msgstr ""
31
 
32
+ #: plugin/class.seo-ultimate.php:1019
33
+ msgid "SEO Settings Help"
34
  msgstr ""
35
 
36
+ #: plugin/class.seo-ultimate.php:1021
37
+ msgid "The SEO Settings box lets you customize these settings:"
38
  msgstr ""
39
 
40
+ #: plugin/class.seo-ultimate.php:1023
41
+ msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
42
  msgstr ""
43
 
44
+ #: plugin/class.seo-ultimate.php:1078
45
+ msgid ""
46
+ "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
47
+ "1$s to avoid plugin conflicts."
48
  msgstr ""
49
 
50
+ #: plugin/class.seo-ultimate.php:1119
51
+ msgid "new feature"
52
  msgstr ""
53
 
54
+ #: plugin/class.seo-ultimate.php:1119
55
+ msgid "new features"
56
  msgstr ""
57
 
58
+ #: plugin/class.seo-ultimate.php:1120
59
+ msgid "bugfix"
60
  msgstr ""
61
 
62
+ #: plugin/class.seo-ultimate.php:1120
63
+ msgid "bugfixes"
64
  msgstr ""
65
 
66
+ #: plugin/class.seo-ultimate.php:1121
67
+ msgid "improvement"
68
  msgstr ""
69
 
70
+ #: plugin/class.seo-ultimate.php:1121
71
+ msgid "improvements"
72
  msgstr ""
73
 
74
+ #: plugin/class.seo-ultimate.php:1122
75
+ msgid "security fix"
76
  msgstr ""
77
 
78
+ #: plugin/class.seo-ultimate.php:1122
79
+ msgid "security fixes"
80
  msgstr ""
81
 
82
+ #: plugin/class.seo-ultimate.php:1153
83
+ msgid "%d %s"
 
 
84
  msgstr ""
85
 
86
+ #: plugin/class.seo-ultimate.php:1159
87
+ msgid "Upgrade now to get %s. %s."
88
  msgstr ""
89
 
90
+ #: plugin/class.seo-ultimate.php:1161
91
+ msgid "View changelog"
92
  msgstr ""
93
 
94
+ #: plugin/class.seo-ultimate.php:1228 modules/settings/uninstall.php:18
95
+ msgid "Uninstall"
 
 
 
 
96
  msgstr ""
97
 
98
+ #: plugin/class.seo-ultimate.php:1248
99
+ msgid "Active Modules: "
100
  msgstr ""
101
 
102
+ #: plugin/class.seo-ultimate.php:1309
103
  msgid ""
104
+ "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
105
+ "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
106
+ "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
107
+ "to everyone."
108
  msgstr ""
109
 
110
+ #: plugin/class.seo-ultimate.php:1419
111
+ msgid "SEO Settings"
112
  msgstr ""
113
 
114
+ #: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
115
+ msgid "%s and %s"
116
  msgstr ""
117
 
118
+ #: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
119
+ msgid ", "
120
  msgstr ""
121
 
122
+ #: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
123
+ msgid "%s, and %s"
124
  msgstr ""
125
 
126
+ #: plugin/class.su-installer.php:9
127
+ msgid "Package not available."
 
 
128
  msgstr ""
129
 
130
+ #: plugin/class.su-installer.php:12
131
+ msgid "Removing the current version of the plugin&#8230;"
132
  msgstr ""
133
 
134
+ #: plugin/class.su-installer.php:13
135
+ msgid "Could not remove the current version of the plugin."
136
  msgstr ""
137
 
138
+ #: plugin/class.su-installer.php:17
139
+ msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
140
  msgstr ""
141
 
142
+ #: plugin/class.su-installer.php:18
143
+ msgid "Unpacking the downgrade&#8230;"
 
 
144
  msgstr ""
145
 
146
+ #: plugin/class.su-installer.php:19
147
+ msgid "Installing the downgrade&#8230;"
148
  msgstr ""
149
 
150
+ #: plugin/class.su-installer.php:20
151
+ msgid "Plugin downgrade failed."
152
  msgstr ""
153
 
154
+ #: plugin/class.su-installer.php:21
155
+ msgid "Plugin downgraded successfully."
156
  msgstr ""
157
 
158
+ #: plugin/class.su-installer.php:24
159
+ msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
160
  msgstr ""
161
 
162
+ #: plugin/class.su-installer.php:25
163
+ msgid "Unpacking the reinstall&#8230;"
164
  msgstr ""
165
 
166
+ #: plugin/class.su-installer.php:26
167
+ msgid "Reinstalling the current version&#8230;"
168
+ msgstr ""
 
 
169
 
170
+ #: plugin/class.su-installer.php:27
171
+ msgid "Plugin reinstallation failed."
172
+ msgstr ""
 
 
173
 
174
+ #: plugin/class.su-installer.php:28
175
+ msgid "Plugin reinstalled successfully."
176
+ msgstr ""
 
 
 
 
 
 
177
 
178
+ #: plugin/class.su-installer.php:32
179
+ msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
180
+ msgstr ""
 
 
 
181
 
182
+ #: plugin/class.su-installer.php:33
183
+ msgid "Unpacking the upgrade&#8230;"
184
  msgstr ""
185
 
186
+ #: plugin/class.su-installer.php:34
187
+ msgid "Installing the upgrade&#8230;"
 
 
188
  msgstr ""
189
 
190
+ #: plugin/class.su-installer.php:35
191
+ msgid "Plugin upgrade failed."
192
  msgstr ""
193
 
194
+ #: plugin/class.su-installer.php:36
195
+ msgid "Plugin upgraded successfully."
196
  msgstr ""
197
 
198
+ #: modules/more-links/more-links.php:12
199
+ msgid "More Link Customizer"
200
  msgstr ""
201
 
202
+ #: modules/more-links/more-links.php:27
203
+ msgid "Default More Link Text"
204
  msgstr ""
205
 
206
+ #: modules/more-links/more-links.php:48
207
+ msgid "More Link Text:"
208
  msgstr ""
209
 
210
+ #: modules/sds-blog/sds-blog.php:12
211
+ msgid "Whitepapers"
 
212
  msgstr ""
213
 
214
+ #: modules/sds-blog/sds-blog.php:13
215
+ msgid "SEO Design Solutions Whitepapers"
216
  msgstr ""
217
 
218
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 5.6) #-#-#-#-#
219
+ #. Author of the plugin/theme
220
+ #: modules/sds-blog/sds-blog.php:49
221
+ msgid "SEO Design Solutions"
222
  msgstr ""
223
 
224
+ #: modules/sds-blog/sds-blog.php:50
225
+ msgid ""
226
+ "The search engine optimization articles below are loaded from the website of "
227
+ "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
228
+ "an article&#8217;s title to read it."
229
  msgstr ""
230
 
231
+ #: modules/linkbox/linkbox.php:12
232
+ msgid "Linkbox Inserter"
 
233
  msgstr ""
234
 
235
+ #: modules/linkbox/linkbox.php:18
236
+ msgid "Link to this post!"
237
  msgstr ""
238
 
239
+ #: modules/linkbox/linkbox.php:45
240
+ msgid "At the end of posts"
241
  msgstr ""
242
 
243
+ #: modules/linkbox/linkbox.php:46
244
+ msgid "At the end of pages"
245
+ msgstr ""
246
+
247
+ #: modules/linkbox/linkbox.php:47
248
+ msgid "When called by the su_linkbox hook"
249
+ msgstr ""
250
+
251
+ #: modules/linkbox/linkbox.php:48
252
+ msgid "Display linkboxes..."
253
  msgstr ""
254
 
255
+ #: modules/linkbox/linkbox.php:49
256
+ msgid "Linkbox HTML"
257
  msgstr ""
258
 
259
+ #: modules/import-aiosp/import-aiosp.php:12
260
+ msgid "Import from All in One SEO Pack"
261
  msgstr ""
262
 
263
+ #: modules/import-aiosp/import-aiosp.php:13
264
+ msgid "AIOSP Import"
265
  msgstr ""
266
 
267
+ #: modules/import-aiosp/import-aiosp.php:15
268
+ msgid "All in One SEO Pack"
269
  msgstr ""
270
 
271
+ #: modules/import-aiosp/import-aiosp.php:16
272
+ msgid "AIOSP"
273
  msgstr ""
274
 
275
+ #: modules/import-aiosp/import-aiosp.php:17
276
+ msgid "Import post data (custom title tags and meta tags)."
277
  msgstr ""
278
 
279
+ #: modules/import-aiosp/import-aiosp.php:21
280
+ msgid ""
281
+ "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
282
+ "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
283
+ "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
284
+ "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
285
+ "to be currently installed or activated for the import to take place."
286
  msgstr ""
287
 
288
+ #: modules/import-aiosp/import-aiosp.php:23
289
+ msgid ""
290
+ "The import tool can only move over data from AIOSP version 1.6 or above. If "
291
+ "you use an older version of AIOSP, you should update to the latest version "
292
+ "first and run AIOSP&#8217;s upgrade process."
293
  msgstr ""
294
 
295
+ #: modules/class.su-importmodule.php:49
296
+ msgid "Import Post Fields"
297
  msgstr ""
298
 
299
+ #: modules/class.su-importmodule.php:50
300
+ msgid ""
301
+ "Post fields store the SEO data for your posts/pages (i.e. your custom title "
302
+ "tags, meta descriptions, and meta keywords). If you provided custom titles/"
303
+ "descriptions/keywords to %s, this importer can move that data over to SEO "
304
+ "Ultimate."
305
  msgstr ""
306
 
307
+ #: modules/class.su-importmodule.php:53
308
+ msgid "Conflict Resolution Mode"
309
  msgstr ""
310
 
311
+ #: modules/class.su-importmodule.php:54
312
+ msgid ""
313
+ "What should the import tool do if it tries to move over a post&#8217;s %s "
314
+ "data, but different data already exists in the corresponding SEO Ultimate "
315
+ "fields?"
316
  msgstr ""
317
 
318
+ #: modules/class.su-importmodule.php:56
319
+ msgid "Skip that post and leave all data as-is (default)."
320
  msgstr ""
321
 
322
+ #: modules/class.su-importmodule.php:57
323
+ msgid "Delete the SEO Ultimate data and replace it with the %s data."
324
  msgstr ""
325
 
326
+ #: modules/class.su-importmodule.php:58
327
+ msgid "Keep the SEO Ultimate data and delete the %s data."
328
  msgstr ""
329
 
330
+ #: modules/class.su-importmodule.php:61
331
+ msgid "Deletion Preference"
 
332
  msgstr ""
333
 
334
+ #: modules/class.su-importmodule.php:62
335
+ msgid ""
336
+ "When the migration tool successfully copies a post&#8217;s %1$s data over to "
337
+ "SEO Ultimate, what should it do with the old %1$s data?"
338
  msgstr ""
339
 
340
+ #: modules/class.su-importmodule.php:64
341
+ msgid "Delete the %s data."
 
342
  msgstr ""
343
 
344
+ #: modules/class.su-importmodule.php:65
345
+ msgid "Leave behind the duplicate %s data (default)."
346
  msgstr ""
347
 
348
+ #: modules/class.su-importmodule.php:72
349
+ msgid "Import Now"
350
  msgstr ""
351
 
352
+ #: modules/class.su-importmodule.php:75
353
+ msgid ""
354
+ "The import cannot be undone. It is your responsibility to <a href=\"%s\" "
355
+ "target=\"_blank\">backup your database</a> before proceeding!"
356
  msgstr ""
357
 
358
+ #: modules/class.su-importmodule.php:84
359
+ msgid "Import complete."
 
360
  msgstr ""
361
 
362
+ #: modules/class.su-importmodule.php:90
363
+ msgid "Return to import page"
364
  msgstr ""
365
 
366
+ #: modules/class.su-importmodule.php:93
367
+ msgid "Return to settings page"
 
 
368
  msgstr ""
369
 
370
+ #: modules/class.su-importmodule.php:96
371
+ msgid "Return to SEO page"
372
  msgstr ""
373
 
374
+ #: modules/class.su-importmodule.php:116
375
+ msgid "Deactivated %s."
376
  msgstr ""
377
 
378
+ #: modules/class.su-importmodule.php:174
379
+ msgid "Imported a total of %d fields for one post/page/revision."
380
+ msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
381
+ msgstr[0] ""
382
+ msgstr[1] ""
383
+
384
+ #: modules/class.su-importmodule.php:180
385
+ msgid "Skipped one post with disabled %2$s data."
386
+ msgid_plural "Skipped %1$d posts with disabled %2$s data."
387
+ msgstr[0] ""
388
+ msgstr[1] ""
389
+
390
+ #: modules/class.su-importmodule.php:186
391
+ msgid ""
392
+ "Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
393
+ "settings you chose."
394
+ msgid_plural ""
395
+ "Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
396
+ "settings you chose."
397
+ msgstr[0] ""
398
+ msgstr[1] ""
399
+
400
+ #: modules/class.su-importmodule.php:192
401
+ msgid "Deleted one %2$s field, as instructed by the settings you chose."
402
+ msgid_plural ""
403
+ "Deleted %1$d %2$s fields, as instructed by the settings you chose."
404
+ msgstr[0] ""
405
+ msgstr[1] ""
406
+
407
  #: modules/titles/titles.php:12
408
  msgid "Title Tag Rewriter"
409
  msgstr ""
505
  msgid "Month Archive Title Format"
506
  msgstr ""
507
 
508
+ #: modules/titles/titles.php:77
509
+ msgid "Year Archive Title Format"
510
+ msgstr ""
511
+
512
+ #: modules/titles/titles.php:78
513
+ msgid "Author Archive Title Format"
514
+ msgstr ""
515
+
516
+ #: modules/titles/titles.php:79
517
+ msgid "Search Title Format"
518
+ msgstr ""
519
+
520
+ #: modules/titles/titles.php:80
521
+ msgid "404 Title Format"
522
+ msgstr ""
523
+
524
+ #: modules/titles/titles.php:81
525
+ msgid "Pagination Title Format"
526
+ msgstr ""
527
+
528
+ #: modules/titles/titles.php:307
529
+ msgid "Title Tag:"
530
+ msgstr ""
531
+
532
+ #: modules/titles/titles.php:312
533
+ msgid ""
534
+ "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
535
+ "tag. The title appears in visitors&#8217; title bars and in search engine "
536
+ "result titles. If this box is left blank, then the <a href=\"admin.php?"
537
+ "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
538
+ msgstr ""
539
+
540
+ #: modules/class.su-module.php:368
541
+ msgid ""
542
+ "(Note: This translated documentation was designed for an older version of "
543
+ "SEO Ultimate and may be outdated.)"
544
+ msgstr ""
545
+
546
+ #: modules/class.su-module.php:971
547
+ msgid "%s %s|Dropdown Title"
548
+ msgstr ""
549
+
550
+ #: modules/class.su-module.php:999
551
+ msgid "%1$s | %2$s %3$s by %4$s"
552
+ msgstr ""
553
+
554
+ #: modules/class.su-module.php:1056
555
+ msgid "Name"
556
+ msgstr ""
557
+
558
+ #: modules/class.su-module.php:1067
559
+ msgid "Your site currently doesn&#8217;t have any public items of this type."
560
+ msgstr ""
561
+
562
+ #: modules/class.su-module.php:1150
563
+ msgid "&laquo;"
564
+ msgstr ""
565
+
566
+ #: modules/class.su-module.php:1151
567
+ msgid "&raquo;"
568
+ msgstr ""
569
+
570
+ #: modules/class.su-module.php:1158
571
+ msgid "Displaying %s&#8211;%s of %s"
572
+ msgstr ""
573
+
574
+ #: modules/class.su-module.php:1171 modules/404s/fofs-log.php:116
575
+ msgid "Actions"
576
+ msgstr ""
577
+
578
+ #: modules/class.su-module.php:1172
579
+ msgid "ID"
580
+ msgstr ""
581
+
582
+ #: modules/class.su-module.php:1205
583
+ msgid "View"
584
+ msgstr ""
585
+
586
+ #: modules/class.su-module.php:1205
587
+ msgid "Edit"
588
+ msgstr ""
589
+
590
+ #: modules/class.su-module.php:1360
591
+ msgid "Settings updated."
592
+ msgstr ""
593
+
594
+ #: modules/class.su-module.php:1381
595
+ msgid "Save Changes"
596
+ msgstr ""
597
+
598
+ #: modules/class.su-module.php:1869
599
+ msgid ""
600
+ "Are you sure you want to replace the textbox contents with this default "
601
+ "value?"
602
+ msgstr ""
603
+
604
+ #: modules/class.su-module.php:1884 modules/settings/settings-data.php:23
605
+ msgid "Reset"
606
+ msgstr ""
607
+
608
+ #: modules/noindex/noindex.php:12
609
+ msgid "Noindex Manager"
610
  msgstr ""
611
 
612
+ #: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
613
+ #: modules/noindex/noindex.php:67
614
+ msgid "Noindex"
615
  msgstr ""
616
 
617
+ #: modules/noindex/noindex.php:43 modules/meta/meta-keywords.php:32
618
+ msgid "Default Values"
619
  msgstr ""
620
 
621
+ #: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
622
+ #: modules/autolinks/content-autolinks.php:204
623
+ msgid "Nofollow"
624
  msgstr ""
625
 
626
+ #: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
627
+ msgid "Use default"
628
  msgstr ""
629
 
630
+ #: modules/noindex/noindex.php:63
631
+ msgid "noindex"
632
  msgstr ""
633
 
634
+ #: modules/noindex/noindex.php:64
635
+ msgid "index"
 
 
 
 
636
  msgstr ""
637
 
638
+ #: modules/noindex/noindex.php:74
639
+ msgid "nofollow"
640
  msgstr ""
641
 
642
+ #: modules/noindex/noindex.php:75
643
+ msgid "follow"
644
  msgstr ""
645
 
646
+ #: modules/noindex/noindex.php:89
647
  msgid ""
648
+ "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
649
+ "block indexing of the entire site, regardless of which options are set below."
650
  msgstr ""
651
 
652
+ #: modules/noindex/noindex.php:92
653
+ msgid "Prevent indexing of..."
654
  msgstr ""
655
 
656
+ #: modules/noindex/noindex.php:93
657
+ msgid "Administration back-end pages"
658
  msgstr ""
659
 
660
+ #: modules/noindex/noindex.php:94
661
+ msgid "Author archives"
662
  msgstr ""
663
 
664
+ #: modules/noindex/noindex.php:95
665
+ msgid "Blog search pages"
666
  msgstr ""
667
 
668
+ #: modules/noindex/noindex.php:96
669
+ msgid "Category archives"
670
  msgstr ""
671
 
672
+ #: modules/noindex/noindex.php:97
673
+ msgid "Comment feeds"
 
674
  msgstr ""
675
 
676
+ #: modules/noindex/noindex.php:98
677
+ msgid "Comment subpages"
678
  msgstr ""
679
 
680
+ #: modules/noindex/noindex.php:99
681
+ msgid "Date-based archives"
682
  msgstr ""
683
 
684
+ #: modules/noindex/noindex.php:100
685
+ msgid "Subpages of the homepage"
686
  msgstr ""
687
 
688
+ #: modules/noindex/noindex.php:101
689
+ msgid "Tag archives"
 
690
  msgstr ""
691
 
692
+ #: modules/noindex/noindex.php:102
693
+ msgid "User login/registration pages"
694
  msgstr ""
695
 
696
+ #: modules/noindex/noindex.php:165
697
+ msgid "Noindex: Tell search engines not to index this webpage."
698
  msgstr ""
699
 
700
+ #: modules/noindex/noindex.php:166
701
+ msgid "Nofollow: Tell search engines not to spider links on this webpage."
702
  msgstr ""
703
 
704
+ #: modules/noindex/noindex.php:167
705
+ msgid "Meta Robots Tag:"
 
 
706
  msgstr ""
707
 
708
+ #: modules/meta/meta-descriptions.php:12
709
+ msgid "Meta Description Editor"
710
  msgstr ""
711
 
712
+ #: modules/meta/meta-descriptions.php:13
713
+ msgid "Meta Descriptions"
714
  msgstr ""
715
 
716
+ #: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:33
717
+ msgid "Blog Homepage"
718
  msgstr ""
719
 
720
+ #: modules/meta/meta-descriptions.php:31
721
+ msgid "Meta Description"
 
722
  msgstr ""
723
 
724
+ #: modules/meta/meta-descriptions.php:46
725
+ msgid "Post Description Format"
726
  msgstr ""
727
 
728
+ #: modules/meta/meta-descriptions.php:53
729
+ msgid "Blog Homepage Meta Description"
 
730
  msgstr ""
731
 
732
+ #: modules/meta/meta-descriptions.php:55
733
+ msgid "Use this blog&#8217s tagline as the default homepage description."
734
  msgstr ""
735
 
736
+ #: modules/meta/meta-descriptions.php:56
737
+ msgid "Default Value"
738
  msgstr ""
739
 
740
+ #: modules/meta/meta-descriptions.php:108
741
+ msgid "Meta Description:"
742
  msgstr ""
743
 
744
+ #: modules/meta/meta-descriptions.php:111
745
+ msgid "You&#8217;ve entered %s characters. Most search engines use up to 160."
746
+ msgstr ""
747
+
748
+ #: modules/meta/meta-descriptions.php:119
749
+ msgid ""
750
+ "<strong>Description</strong> &mdash; The value of the meta description tag. "
751
+ "The description will often appear underneath the title in search engine "
752
+ "results. Writing an accurate, attention-grabbing description for every post "
753
+ "is important to ensuring a good search results clickthrough rate."
754
  msgstr ""
755
 
756
  #: modules/meta/meta-keywords.php:12
761
  msgid "Meta Keywords"
762
  msgstr ""
763
 
 
 
 
 
 
 
 
 
764
  #: modules/meta/meta-keywords.php:55
765
  msgid "The %d most commonly-used words"
766
  msgstr ""
840
  msgid "Don&#8217t cache or archive this site."
841
  msgstr ""
842
 
843
+ #: modules/canonical/canonical.php:12
844
+ msgid "Canonicalizer"
 
 
 
 
 
 
 
 
845
  msgstr ""
846
 
847
+ #: modules/canonical/canonical.php:33
848
+ msgid "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> tags."
849
  msgstr ""
850
 
851
+ #: modules/canonical/canonical.php:34
852
+ msgid "Redirect requests for nonexistent pagination."
853
  msgstr ""
854
 
855
+ #: modules/link-nofollow/link-nofollow.php:12
856
+ msgid "Nofollow Manager"
857
  msgstr ""
858
 
859
+ #: modules/link-nofollow/link-nofollow.php:53
860
+ msgid "Add the nofollow attribute to..."
861
  msgstr ""
862
 
863
+ #: modules/link-nofollow/link-nofollow.php:55
864
+ msgid "Adjacent post links"
865
  msgstr ""
866
 
867
+ #: modules/link-nofollow/link-nofollow.php:56
868
+ msgid "Category links (after posts)"
869
  msgstr ""
870
 
871
+ #: modules/link-nofollow/link-nofollow.php:57
872
+ msgid "Category links (in lists)"
 
 
 
 
873
  msgstr ""
874
 
875
+ #: modules/link-nofollow/link-nofollow.php:58
876
+ msgid "Comment anchor links"
877
  msgstr ""
878
 
879
+ #: modules/link-nofollow/link-nofollow.php:59
880
+ msgid "Comment feed links"
881
  msgstr ""
882
 
883
+ #: modules/link-nofollow/link-nofollow.php:60
884
+ msgid "Date-based archive links"
885
  msgstr ""
886
 
887
+ #: modules/link-nofollow/link-nofollow.php:61
888
+ msgid "Pagination navigation links (all)"
889
  msgstr ""
890
 
891
+ #: modules/link-nofollow/link-nofollow.php:62
892
+ msgid "Pagination navigation links (on blog home only)"
893
  msgstr ""
894
 
895
+ #: modules/link-nofollow/link-nofollow.php:63
896
+ msgid "&#8220;Read more&#8221; links"
 
 
 
 
 
897
  msgstr ""
898
 
899
+ #: modules/link-nofollow/link-nofollow.php:64
900
+ msgid "Registration link"
 
 
 
901
  msgstr ""
902
 
903
+ #: modules/link-nofollow/link-nofollow.php:65
904
+ msgid "Login link"
905
  msgstr ""
906
 
907
+ #: modules/link-nofollow/link-nofollow.php:66
908
+ msgid "Tag links (after posts)"
909
  msgstr ""
910
 
911
+ #: modules/link-nofollow/link-nofollow.php:67
912
+ msgid "Tag links (in lists and clouds)"
 
 
913
  msgstr ""
914
 
915
+ #: modules/link-nofollow/link-nofollow.php:76
916
+ msgid "When displaying page lists, nofollow links to this page"
 
 
 
917
  msgstr ""
918
 
919
+ #: modules/link-nofollow/link-nofollow.php:76
920
+ msgid "Nofollow:"
921
  msgstr ""
922
 
923
+ #: modules/competition-queries/competition-queries.php:12
924
+ msgid "Competition Researcher"
925
  msgstr ""
926
 
927
+ #: modules/competition-queries/competition-queries.php:13
928
+ msgid "Comp. Researcher"
 
 
 
 
 
929
  msgstr ""
930
 
931
+ #: modules/competition-queries/competition-queries.php:17
932
  msgid ""
933
+ "The Competition Researcher provides you with easy access to various search "
934
+ "engine tools which you can use to research multiple search queries or URLs."
 
 
 
 
935
  msgstr ""
936
 
937
+ #: modules/competition-queries/competition-queries.php:21
938
+ msgid "Step 1: Choose Your Research Tool"
939
  msgstr ""
940
 
941
+ #: modules/competition-queries/competition-queries.php:25
942
+ msgid "Keywords"
943
  msgstr ""
944
 
945
+ #: modules/competition-queries/competition-queries.php:25
946
+ msgid "Normal Search"
947
  msgstr ""
948
 
949
+ #: modules/competition-queries/competition-queries.php:25
950
+ msgid "Find out how many pages contain the words in each query"
951
  msgstr ""
952
 
953
+ #: modules/competition-queries/competition-queries.php:26
954
+ msgid "Phrase Match"
955
  msgstr ""
956
 
957
+ #: modules/competition-queries/competition-queries.php:26
958
+ msgid ""
959
+ "Find out how many &#8220;actual&#8221; pages are competing for each query"
960
  msgstr ""
961
 
962
+ #: modules/competition-queries/competition-queries.php:27
963
+ msgid "Allinanchor"
964
  msgstr ""
965
 
966
+ #: modules/competition-queries/competition-queries.php:27
967
+ msgid "Find out which sites have the most links for each query"
968
  msgstr ""
969
 
970
+ #: modules/competition-queries/competition-queries.php:28
971
+ msgid "Allintitle"
972
  msgstr ""
973
 
974
+ #: modules/competition-queries/competition-queries.php:28
975
+ msgid ""
976
+ "Find out which sites have the highest relevance in the title for each query"
977
  msgstr ""
978
 
979
+ #: modules/competition-queries/competition-queries.php:29
980
+ msgid "Allintext"
981
  msgstr ""
982
 
983
+ #: modules/competition-queries/competition-queries.php:29
984
+ msgid "Find out which sites have the most relevant content/text on their pages"
985
  msgstr ""
986
 
987
+ #: modules/competition-queries/competition-queries.php:30
988
+ msgid "Allinurl"
989
  msgstr ""
990
 
991
+ #: modules/competition-queries/competition-queries.php:30
992
+ msgid ""
993
+ "Find out which sites have the most relevant naming conventions for each "
994
+ "keyword"
995
  msgstr ""
996
 
997
+ #: modules/competition-queries/competition-queries.php:32
998
+ msgid "URLs"
999
  msgstr ""
1000
 
1001
+ #: modules/competition-queries/competition-queries.php:32
1002
+ msgid "Site"
1003
  msgstr ""
1004
 
1005
+ #: modules/competition-queries/competition-queries.php:32
1006
+ msgid "Find out how many pages are indexed for each domain"
1007
  msgstr ""
1008
 
1009
+ #: modules/competition-queries/competition-queries.php:33
1010
+ #: modules/competition-queries/competition-queries.php:38
1011
+ msgid "Inbound Links"
1012
  msgstr ""
1013
 
1014
+ #: modules/competition-queries/competition-queries.php:33
1015
+ msgid "Find out how many sites link to the domains"
1016
  msgstr ""
1017
 
1018
+ #: modules/competition-queries/competition-queries.php:34
1019
+ #: modules/competition-queries/competition-queries.php:38
1020
+ msgid "Outbound Links"
1021
  msgstr ""
1022
 
1023
+ #: modules/competition-queries/competition-queries.php:34
1024
+ msgid "Find out how many sites the domains link to"
1025
  msgstr ""
1026
 
1027
+ #: modules/competition-queries/competition-queries.php:56
1028
+ msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
1029
  msgstr ""
1030
 
1031
+ #: modules/competition-queries/competition-queries.php:58
1032
+ msgid "(Type in one per line)"
1033
  msgstr ""
1034
 
1035
+ #: modules/competition-queries/competition-queries.php:60
1036
+ msgid "Step 3: Set Options and Submit"
1037
  msgstr ""
1038
 
1039
+ #: modules/competition-queries/competition-queries.php:62
1040
+ #: modules/site-keyword-queries/site-keyword-queries.php:28
1041
+ msgid "Show 100 results per page"
1042
  msgstr ""
1043
 
1044
+ #: modules/competition-queries/competition-queries.php:64
1045
+ #: modules/site-keyword-queries/site-keyword-queries.php:30
1046
+ msgid "Use Google&#8217;s minimal mode"
 
1047
  msgstr ""
1048
 
1049
+ #: modules/competition-queries/competition-queries.php:70
1050
+ #: modules/site-keyword-queries/site-keyword-queries.php:33
1051
+ msgid "Submit"
1052
  msgstr ""
1053
 
1054
+ #: modules/site-keyword-queries/site-keyword-queries.php:12
1055
+ msgid "Internal Relevance Researcher"
1056
  msgstr ""
1057
 
1058
+ #: modules/site-keyword-queries/site-keyword-queries.php:13
1059
+ msgid "Int. Rel. Researcher"
1060
  msgstr ""
1061
 
1062
+ #: modules/site-keyword-queries/site-keyword-queries.php:21
1063
+ msgid "Step 1: Enter Keywords"
1064
  msgstr ""
1065
 
1066
+ #: modules/site-keyword-queries/site-keyword-queries.php:23
1067
+ msgid "(Type one keyword per line)"
1068
  msgstr ""
1069
 
1070
+ #: modules/site-keyword-queries/site-keyword-queries.php:25
1071
+ msgid "Step 2: Set Options and Submit"
1072
  msgstr ""
1073
 
1074
+ #: modules/site-keyword-queries/site-keyword-queries.php:27
1075
+ msgid "Put keywords in quotes"
1076
  msgstr ""
1077
 
1078
+ #: modules/user-code/user-code.php:12
1079
+ msgid "Code Inserter"
1080
  msgstr ""
1081
 
1082
+ #: modules/user-code/user-code.php:27
1083
+ msgid "Everywhere"
1084
  msgstr ""
1085
 
1086
+ #: modules/user-code/user-code.php:34
1087
+ msgid "&lt;head&gt; Tag"
1088
  msgstr ""
1089
 
1090
+ #: modules/user-code/user-code.php:35
1091
+ msgid "Before Item Content"
1092
  msgstr ""
1093
 
1094
+ #: modules/user-code/user-code.php:36
1095
+ msgid "After Item Content"
1096
  msgstr ""
1097
 
1098
+ #: modules/user-code/user-code.php:37
1099
+ msgid "Footer"
1100
  msgstr ""
1101
 
1102
+ #: modules/user-code/user-code.php:51
1103
+ msgid "Code Inserter module"
1104
  msgstr ""
1105
 
1106
+ #: modules/modules/modules.php:12
1107
+ msgid "Module Manager"
1108
  msgstr ""
1109
 
1110
+ #: modules/modules/modules.php:13
1111
+ msgid "Modules"
1112
  msgstr ""
1113
 
1114
+ #: modules/modules/modules.php:37
1115
+ msgid ""
1116
+ "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
1117
+ "&#8221; By default, most of these modules are listed in the &#8220;"
1118
+ "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
1119
+ "you can view documentation by clicking the tabs in the upper-right-hand "
1120
+ "corner of your administration screen."
1121
  msgstr ""
1122
 
1123
+ #: modules/modules/modules.php:39
1124
+ msgid ""
1125
+ "The Module Manager lets you disable or hide modules you don&#8217;t use. "
1126
+ "You can also silence modules from displaying bubble alerts on the menu."
1127
  msgstr ""
1128
 
1129
+ #: modules/modules/modules.php:45
1130
+ msgid "Status"
1131
  msgstr ""
1132
 
1133
+ #: modules/modules/modules.php:46
1134
+ msgid "Module"
1135
  msgstr ""
1136
 
1137
+ #: modules/modules/modules.php:59
1138
+ msgid "Enabled"
1139
  msgstr ""
1140
 
1141
+ #: modules/modules/modules.php:60
1142
+ msgid "Silenced"
1143
  msgstr ""
1144
 
1145
+ #: modules/modules/modules.php:61
1146
+ msgid "Hidden"
1147
  msgstr ""
1148
 
1149
+ #: modules/modules/modules.php:62
1150
+ msgid "Disabled"
1151
  msgstr ""
1152
 
1153
  #: modules/files/files.php:14
1185
 
1186
  #: modules/files/files.php:75
1187
  msgid ""
1188
+ "Please realize that incorrectly editing your robots.txt file could block "
1189
+ "search engines from your site."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1190
  msgstr ""
1191
 
1192
+ #: modules/files/files.php:79
1193
+ msgid ".htaccess"
1194
  msgstr ""
1195
 
1196
+ #: modules/files/files.php:82
1197
+ msgid ""
1198
+ "Also, incorrectly editing your .htaccess file could disable your entire "
1199
+ "website. Edit with caution!"
1200
  msgstr ""
1201
 
1202
+ #: modules/files/files.php:134
1203
+ msgid ""
1204
+ "Please note that your privacy settings won&#8217;t have any effect on your "
1205
+ "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1206
  msgstr ""
1207
 
1208
+ #: modules/settings/settings.php:12
1209
+ msgid "Plugin Settings"
1210
  msgstr ""
1211
 
1212
+ #: modules/settings/settings.php:13
1213
+ msgid "SEO Ultimate Plugin Settings"
1214
  msgstr ""
1215
 
1216
  #: modules/settings/settings-data.php:16
1381
  msgid "Restore Default Settings"
1382
  msgstr ""
1383
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1384
  #: modules/settings/uninstall.php:17
1385
  msgid "Uninstaller"
1386
  msgstr ""
1387
 
 
 
 
 
1388
  #: modules/settings/uninstall.php:27
1389
  msgid ""
1390
  "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
1421
  msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1422
  msgstr ""
1423
 
1424
+ #: modules/settings/global-settings.php:18
1425
+ msgid "Global Settings"
1426
+ msgstr ""
1427
+
1428
+ #: modules/settings/global-settings.php:40
1429
+ msgid "Enable nofollow&#8217;d attribution link"
1430
+ msgstr ""
1431
+
1432
+ #: modules/settings/global-settings.php:41
1433
+ msgid "Enable attribution link CSS styling"
1434
+ msgstr ""
1435
+
1436
+ #: modules/settings/global-settings.php:42
1437
+ msgid "Notify me about unnecessary active plugins"
1438
+ msgstr ""
1439
+
1440
+ #: modules/settings/global-settings.php:43
1441
+ msgid "Insert comments around HTML code insertions"
1442
+ msgstr ""
1443
+
1444
  #: modules/settings/install.php:18
1445
  msgid "Upgrade/Downgrade/Reinstall"
1446
  msgstr ""
1536
  msgid "Upgrade to SEO Ultimate %s"
1537
  msgstr ""
1538
 
1539
+ #: modules/404s/fofs.php:11
1540
+ msgid "404 Monitor"
1541
  msgstr ""
1542
 
1543
+ #: modules/404s/fofs-log.php:16
1544
+ msgid "404 Monitor Log"
1545
  msgstr ""
1546
 
1547
+ #: modules/404s/fofs-log.php:17
1548
+ msgid "Log"
1549
  msgstr ""
1550
 
1551
+ #: modules/404s/fofs-log.php:117
1552
+ msgid "Hits"
1553
  msgstr ""
1554
 
1555
+ #: modules/404s/fofs-log.php:118
1556
+ msgid "URL with 404 Error"
1557
  msgstr ""
1558
 
1559
+ #: modules/404s/fofs-log.php:119
1560
+ msgid "Date of Most Recent Hit"
1561
  msgstr ""
1562
 
1563
+ #: modules/404s/fofs-log.php:120
1564
+ msgid "Referers"
1565
  msgstr ""
1566
 
1567
+ #: modules/404s/fofs-log.php:121 modules/404s/fofs-log.php:224
1568
+ msgid "User Agents"
1569
  msgstr ""
1570
 
1571
+ #: modules/404s/fofs-log.php:137
1572
+ msgid ""
1573
+ "New 404 errors will not be recorded because 404 logging is disabled on the "
1574
+ "Settings tab."
1575
  msgstr ""
1576
 
1577
+ #: modules/404s/fofs-log.php:144
1578
+ msgid "The log entry was successfully deleted."
 
1579
  msgstr ""
1580
 
1581
+ #: modules/404s/fofs-log.php:146
1582
+ msgid "This log entry has already been deleted."
1583
  msgstr ""
1584
 
1585
+ #: modules/404s/fofs-log.php:155
1586
+ msgid "The log was successfully cleared."
1587
  msgstr ""
1588
 
1589
+ #: modules/404s/fofs-log.php:159
1590
+ msgid "No 404 errors in the log."
1591
  msgstr ""
1592
 
1593
+ #: modules/404s/fofs-log.php:183
1594
+ msgid "Open URL in new window (will not be logged)"
1595
  msgstr ""
1596
 
1597
+ #: modules/404s/fofs-log.php:184
1598
+ msgid "Query Google for cached version of URL (opens in new window)"
1599
  msgstr ""
1600
 
1601
+ #: modules/404s/fofs-log.php:185
1602
+ msgid "Remove this URL from the log"
 
 
1603
  msgstr ""
1604
 
1605
+ #: modules/404s/fofs-log.php:188
1606
+ msgid "%s at %s"
1607
  msgstr ""
1608
 
1609
+ #: modules/404s/fofs-log.php:192
1610
+ msgid "View list of referring URLs"
1611
  msgstr ""
1612
 
1613
+ #: modules/404s/fofs-log.php:193
1614
+ msgid "View list of user agents"
1615
  msgstr ""
1616
 
1617
+ #: modules/404s/fofs-log.php:203
1618
+ msgid "Referring URLs"
1619
  msgstr ""
1620
 
1621
+ #: modules/404s/fofs-log.php:204 modules/404s/fofs-log.php:225
1622
+ msgid "Hide list"
1623
  msgstr ""
1624
 
1625
+ #: modules/404s/fofs-log.php:255
1626
+ msgid "Are you sure you want to delete all 404 log entries?"
1627
  msgstr ""
1628
 
1629
+ #: modules/404s/fofs-log.php:257
1630
+ msgid "Clear Log"
1631
  msgstr ""
1632
 
1633
+ #: modules/404s/fofs-settings.php:16
1634
+ msgid "404 Monitor Settings"
1635
  msgstr ""
1636
 
1637
+ #: modules/404s/fofs-settings.php:37
1638
+ msgid "Continue monitoring for new 404 errors"
1639
  msgstr ""
1640
 
1641
+ #: modules/404s/fofs-settings.php:37
1642
+ msgid "Monitoring Settings"
1643
  msgstr ""
1644
 
1645
+ #: modules/404s/fofs-settings.php:39
1646
+ msgid "Only log these types of 404 errors:"
1647
  msgstr ""
1648
 
1649
+ #: modules/404s/fofs-settings.php:40
1650
+ msgid "404s generated by search engine spiders"
1651
  msgstr ""
1652
 
1653
+ #: modules/404s/fofs-settings.php:41
1654
+ msgid "404s with referring URLs"
1655
  msgstr ""
1656
 
1657
+ #: modules/404s/fofs-settings.php:42
1658
+ msgid "Log Restrictions"
1659
  msgstr ""
1660
 
1661
+ #: modules/404s/fofs-settings.php:43
1662
+ msgid "Maximum Log Entries"
1663
  msgstr ""
1664
 
1665
+ #: modules/404s/fofs-settings.php:44
1666
+ msgid "URLs to Ignore"
1667
  msgstr ""
1668
 
1669
+ #: modules/404s/fofs-settings.php:44
1670
+ msgid "(Use * as wildcard)"
1671
  msgstr ""
1672
 
1673
+ #: modules/slugs/slugs.php:12
1674
+ msgid "Slug Optimizer"
 
 
1675
  msgstr ""
1676
 
1677
+ #: modules/slugs/slugs.php:16
1678
+ msgid "Words to Remove"
1679
  msgstr ""
1680
 
1681
+ #: modules/internal-link-aliases/internal-link-aliases.php:20
1682
+ msgid "Link Mask Generator"
1683
  msgstr ""
1684
 
1685
+ #: modules/internal-link-aliases/internal-link-aliases.php:24
1686
+ msgid "Alias Directory"
1687
+ msgstr ""
1688
+
1689
+ #: modules/internal-link-aliases/internal-link-aliases.php:43
1690
+ msgid "Link Masks"
1691
+ msgstr ""
1692
+
1693
+ #: modules/internal-link-aliases/internal-link-aliases.php:46
1694
+ #: modules/autolinks/content-autolinks.php:196
1695
+ msgid "URL"
1696
+ msgstr ""
1697
+
1698
+ #: modules/internal-link-aliases/internal-link-aliases.php:46
1699
+ msgid "Mask URL"
1700
+ msgstr ""
1701
+
1702
+ #: modules/internal-link-aliases/internal-link-aliases.php:66
1703
+ msgid ""
1704
+ "You can stop search engines from following a link by typing in a mask for "
1705
+ "its URL."
1706
  msgstr ""
1707
 
1708
+ #: modules/internal-link-aliases/internal-link-aliases.php:129
1709
+ msgid "Added by Link Alias Generator (LAG) module"
1710
  msgstr ""
1711
 
1712
+ #: modules/internal-link-aliases/internal-link-aliases.php:140
1713
+ msgid "End LAG"
1714
  msgstr ""
1715
 
1716
+ #: modules/rich-snippets/rich-snippets.php:12
1717
+ msgid "Rich Snippet Creator"
1718
  msgstr ""
1719
 
1720
+ #: modules/rich-snippets/rich-snippets.php:17
1721
+ msgid ""
1722
+ "Reviews\n"
1723
+ "Review"
1724
  msgstr ""
1725
 
1726
+ #: modules/rich-snippets/rich-snippets.php:28
1727
+ msgid "Data Format"
1728
  msgstr ""
1729
 
1730
+ #: modules/rich-snippets/rich-snippets.php:29
1731
+ msgid "Categories/Tags That Indicate Reviews"
1732
  msgstr ""
1733
 
1734
+ #: modules/rich-snippets/rich-snippets.php:37
1735
+ msgid "Microformats (recommended)"
1736
  msgstr ""
1737
 
1738
+ #: modules/rich-snippets/rich-snippets.php:43
1739
+ msgid "HTML5 Microdata"
1740
  msgstr ""
1741
 
1742
+ #: modules/rich-snippets/rich-snippets.php:49
1743
+ msgid "RDFa"
1744
  msgstr ""
1745
 
1746
+ #: modules/rich-snippets/rich-snippets.php:62
1747
+ #: modules/rich-snippets/rich-snippets.php:218
1748
+ msgid "Review"
1749
  msgstr ""
1750
 
1751
+ #: modules/rich-snippets/rich-snippets.php:70
1752
+ msgid "Star Rating"
1753
  msgstr ""
1754
 
1755
+ #: modules/rich-snippets/rich-snippets.php:79
1756
+ msgid "Review Author"
 
 
 
 
 
 
 
1757
  msgstr ""
1758
 
1759
+ #: modules/rich-snippets/rich-snippets.php:85
1760
+ msgid "Date Reviewed"
1761
  msgstr ""
1762
 
1763
+ #: modules/rich-snippets/rich-snippets.php:217
1764
+ #: modules/rich-snippets/rich-snippets.php:223
1765
+ msgid "None"
1766
  msgstr ""
1767
 
1768
+ #: modules/rich-snippets/rich-snippets.php:219
1769
+ msgid "Rich Snippet Type:"
1770
  msgstr ""
1771
 
1772
+ #: modules/rich-snippets/rich-snippets.php:224
1773
+ msgid "0.5 stars"
1774
  msgstr ""
1775
 
1776
+ #: modules/rich-snippets/rich-snippets.php:225
1777
+ msgid "1 star"
 
 
1778
  msgstr ""
1779
 
1780
+ #: modules/rich-snippets/rich-snippets.php:226
1781
+ msgid "1.5 stars"
1782
  msgstr ""
1783
 
1784
+ #: modules/rich-snippets/rich-snippets.php:227
1785
+ msgid "2 stars"
1786
  msgstr ""
1787
 
1788
+ #: modules/rich-snippets/rich-snippets.php:228
1789
+ msgid "2.5 stars"
1790
  msgstr ""
1791
 
1792
+ #: modules/rich-snippets/rich-snippets.php:229
1793
+ msgid "3 stars"
1794
  msgstr ""
1795
 
1796
+ #: modules/rich-snippets/rich-snippets.php:230
1797
+ msgid "3.5 stars"
1798
  msgstr ""
1799
 
1800
+ #: modules/rich-snippets/rich-snippets.php:231
1801
+ msgid "4 stars"
1802
  msgstr ""
1803
 
1804
+ #: modules/rich-snippets/rich-snippets.php:232
1805
+ msgid "4.5 stars"
1806
  msgstr ""
1807
 
1808
+ #: modules/rich-snippets/rich-snippets.php:233
1809
+ msgid "5 stars"
1810
  msgstr ""
1811
 
1812
+ #: modules/rich-snippets/rich-snippets.php:234
1813
+ msgid "Star Rating for Reviewed Item:"
1814
  msgstr ""
1815
 
1816
+ #: modules/sharing-buttons/sharing-buttons.php:12
1817
+ msgid "Sharing Facilitator"
1818
  msgstr ""
1819
 
1820
+ #: modules/sharing-buttons/sharing-buttons.php:22
1821
+ msgid "Bookmark and Share"
1822
  msgstr ""
1823
 
1824
+ #: modules/sharing-buttons/sharing-buttons.php:28
1825
+ msgid "Providers"
1826
  msgstr ""
1827
 
1828
+ #: modules/sharing-buttons/sharing-buttons.php:34
1829
+ msgid "Which provider would you like to use for your sharing buttons?"
1830
  msgstr ""
1831
 
1832
+ #: modules/sharing-buttons/sharing-buttons.php:36
1833
+ msgid "None; disable sharing buttons"
1834
  msgstr ""
1835
 
1836
+ #: modules/sharing-buttons/sharing-buttons.php:37
1837
+ msgid "Use the ShareThis button"
1838
  msgstr ""
1839
 
1840
+ #: modules/sharing-buttons/sharing-buttons.php:38
1841
+ msgid "Use the AddThis button"
1842
  msgstr ""
1843
 
1844
+ #: modules/autolinks/autolinks.php:11
1845
+ msgid "Deeplink Juggernaut"
1846
  msgstr ""
1847
 
1848
+ #: modules/autolinks/content-autolinks-settings.php:16
1849
+ msgid "Content Deeplink Juggernaut Settings"
1850
  msgstr ""
1851
 
1852
+ #: modules/autolinks/content-autolinks-settings.php:17
1853
+ msgid "Content Link Settings"
1854
  msgstr ""
1855
 
1856
+ #: modules/autolinks/content-autolinks-settings.php:21
1857
+ msgid "Allow posts to link to themselves."
1858
  msgstr ""
1859
 
1860
+ #: modules/autolinks/content-autolinks-settings.php:22
1861
+ msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1862
  msgstr ""
1863
 
1864
+ #: modules/autolinks/content-autolinks-settings.php:23
1865
+ msgid ""
1866
+ "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1867
+ "etc."
1868
  msgstr ""
1869
 
1870
+ #: modules/autolinks/content-autolinks.php:16
1871
+ msgid "Content Deeplink Juggernaut"
1872
  msgstr ""
1873
 
1874
+ #: modules/autolinks/content-autolinks.php:17
1875
+ msgid "Content Links"
1876
  msgstr ""
1877
 
1878
+ #: modules/autolinks/content-autolinks.php:100
1879
+ msgid ""
1880
+ "The Content Links section of Deeplink Juggernaut lets you automatically link "
1881
+ "a certain word or phrase in your post/page content to a URL you specify."
1882
  msgstr ""
1883
 
1884
+ #: modules/autolinks/content-autolinks.php:136
1885
+ msgid "Edit Existing Links"
 
 
1886
  msgstr ""
1887
 
1888
+ #: modules/autolinks/content-autolinks.php:140
1889
+ msgid "Add a New Link"
1890
  msgstr ""
1891
 
1892
+ #: modules/autolinks/content-autolinks.php:148
1893
+ msgid "Anchor Text"
1894
  msgstr ""
1895
 
1896
+ #: modules/autolinks/content-autolinks.php:149
1897
+ msgid "Destination Type"
1898
  msgstr ""
1899
 
1900
+ #: modules/autolinks/content-autolinks.php:150
1901
+ msgid "Destination"
1902
  msgstr ""
1903
 
1904
+ #: modules/autolinks/content-autolinks.php:151
1905
+ msgid "Title Attribute"
1906
  msgstr ""
1907
 
1908
+ #: modules/autolinks/content-autolinks.php:152
1909
+ msgid "Options"
1910
  msgstr ""
1911
 
1912
+ #: modules/autolinks/content-autolinks.php:154
1913
+ msgid "Delete"
1914
  msgstr ""
1915
 
1916
+ #: modules/autolinks/content-autolinks.php:196
1917
+ msgid "Custom"
1918
  msgstr ""
1919
 
1920
+ #: modules/autolinks/content-autolinks.php:197
1921
+ msgid "Content Items"
1922
  msgstr ""
1923
 
1924
+ #: modules/autolinks/content-autolinks.php:205
1925
+ msgid "New window"
1926
  msgstr ""
1927
 
1928
+ #: modules/autolinks/content-autolinks.php:269
1929
+ msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
1930
  msgstr ""
1931
 
1932
+ #: modules/autolinks/content-autolinks.php:270
1933
+ msgid "Don&#8217;t add autolinks to anchor texts found in this post."
1934
  msgstr ""
1935
 
1936
+ #: modules/autolinks/content-autolinks.php:270
1937
+ msgid "Autolink Exclusion:"
 
 
 
 
1938
  msgstr ""
1939
 
1940
+ #: modules/autolinks/content-autolinks.php:275
1941
+ msgid ""
1942
+ "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
1943
+ "into this box, Deeplink Juggernaut will search for that anchor in all your "
1944
+ "other posts and link it to this post. For example, if the post you&#8217;re "
1945
+ "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
1946
+ "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
1947
+ "Deeplink Juggernaut will automatically build internal links to this post "
1948
+ "with that anchor text (assuming other posts contain that text)."
1949
  msgstr ""
1950
 
1951
  #: includes/jlwp/functions.php:56