SEO Ultimate - Version 5.4

Version Description

Download this release

Release Info

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

Code changes from version 5.3 to 5.4

modules/class.su-module.php CHANGED
@@ -1076,7 +1076,7 @@ class SU_Module {
1076
  * @param string $tab The ID of the current tab; used to generate a URL hash (e.g. #su-$tab)
1077
  * @param string $type The type of post/taxonomy type being edited (examples: post, page, attachment, category, post_tag)
1078
  * @param string $type_label The singular label for the post/taxonomy type (examples: Post, Page, Attachment, Category, Post Tag)
1079
- * @param array $fields The array of meta fields that the user can edit with the tables. The data for each meta field are stored in an array with these elements: "type" (can be textbox, textarea, or checkbox), "name" (the meta field, e.g. title or description), "setting" (the key of the setting for cases when meta data are stored in the settings array, namely, for taxonomies), and "label" (the internationalized label of the field, e.g. "Meta Description" or "Title Tag")
1080
  */
1081
  function meta_edit_table($genus, $tab, $type, $type_label, $fields) {
1082
 
@@ -2110,7 +2110,7 @@ class SU_Module {
2110
  echo "<div class='su-status su-$type'>$message</div>";
2111
  }
2112
 
2113
- /********** ADMIN POST META BOX FUNCTIONS **********/
2114
 
2115
  /**
2116
  * Gets a specified meta value of the current post (i.e. the post currently being edited in the admin,
@@ -2327,6 +2327,33 @@ class SU_Module {
2327
  return $html;
2328
  }
2329
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2330
  /********** CRON FUNCTION **********/
2331
 
2332
  /**
1076
  * @param string $tab The ID of the current tab; used to generate a URL hash (e.g. #su-$tab)
1077
  * @param string $type The type of post/taxonomy type being edited (examples: post, page, attachment, category, post_tag)
1078
  * @param string $type_label The singular label for the post/taxonomy type (examples: Post, Page, Attachment, Category, Post Tag)
1079
+ * @param array $fields The array of meta fields that the user can edit with the tables. The data for each meta field are stored in an array with these elements: "type" (can be textbox, textarea, or checkbox), "name" (the meta field, e.g. title or description), "term_settings_key" (the key of the setting for cases when term meta data are stored in the settings array), and "label" (the internationalized label of the field, e.g. "Meta Description" or "Title Tag")
1080
  */
1081
  function meta_edit_table($genus, $tab, $type, $type_label, $fields) {
1082
 
2110
  echo "<div class='su-status su-$type'>$message</div>";
2111
  }
2112
 
2113
+ /********** ADMIN META FUNCTIONS **********/
2114
 
2115
  /**
2116
  * Gets a specified meta value of the current post (i.e. the post currently being edited in the admin,
2327
  return $html;
2328
  }
2329
 
2330
+ /**
2331
+ * Gets a specified meta value of the current term.
2332
+ *
2333
+ * @since 5.4
2334
+ *
2335
+ * @param string $key The database setting where the metadata is stored. The function will add a "taxonomy_" prefix.
2336
+ * @param mixed $id The ID number of the post/page.
2337
+ * @return string The meta value requested.
2338
+ */
2339
+ function get_termmeta($key, $id=false, $module=false) {
2340
+
2341
+ global $wp_query;
2342
+
2343
+ if (!$id && (is_category() || is_tag() || is_tax()))
2344
+ $id = $wp_query->get_queried_object_id();
2345
+
2346
+ if (!$id)
2347
+ return null;
2348
+
2349
+ $tax_meta = $this->get_setting(sustr::startwith($key, 'taxonomy_'), array(), $module);
2350
+
2351
+ if (is_array($tax_meta) && isset($tax_meta[$id]))
2352
+ return $tax_meta[$id];
2353
+
2354
+ return null;
2355
+ }
2356
+
2357
  /********** CRON FUNCTION **********/
2358
 
2359
  /**
modules/documentation.txt CHANGED
@@ -245,24 +245,24 @@ Meta Keywords Editor lets you tell search engines what keywords are associated w
245
 
246
  = Overview =
247
 
248
- * **What it does:** Meta Robot Tags Editor lets you convey instructions to search engine spiders, as well as prohibit the spiders from indexing certain pages on your blog using the `<meta name="robots" content="noindex" />` tag.
249
 
250
- * **Why it helps:** The "Spider Instructions" tab lets you stop DMOZ or Yahoo! Directory from overriding your custom meta descriptions, as well as prevent spiders from caching your site if you so desire. The "Noindex" tab lets you deindex pages that contain unimportant content (e.g. the login page), or pages that mostly contain duplicate content.
251
 
252
- * **How to use it:** Adjust the settings as desired, and then click Save Changes. You can refer to the "Settings Help" tab for information on the settings available. You can also customize the noindex/nofollow robots meta statuses of an individual post or page by using the textboxes that Meta Editor adds to the post/page editors.
253
 
254
 
255
  = Settings Help =
256
 
257
  Here's information on the various settings:
258
 
259
- * **Spider Instructions**
260
 
261
  * **Don't use this site's Open Directory / Yahoo! Directory description in search results.** -- If your site is listed in the [Open Directory (DMOZ)](http://www.dmoz.org/) or the [Yahoo! Directory](http://dir.yahoo.com/), some search engines may use your directory listing as the meta description. These boxes tell search engines not to do that and will give you full control over your meta descriptions. These settings have no effect if your site isn't listed in the Open Directory or Yahoo! Directory respectively.
262
 
263
  * **Don't cache or archive this site.** -- When you check this box, Meta Editor will ask search engines (Google, Yahoo!, Bing, etc.) and archivers (Archive.org, etc.) to _not_ make cached or archived "copies" of your site.
264
 
265
- * **Noindex**
266
 
267
  * **Administration back-end pages** -- Tells spiders not to index the administration area (the part you're in now), in the unlikely event a spider somehow gains access to the administration. Recommended.
268
 
@@ -284,6 +284,12 @@ Here's information on the various settings:
284
 
285
  * **User login/registration pages** -- Tells spiders not to index WordPress's user login and registration pages. Recommended.
286
 
 
 
 
 
 
 
287
  = Troubleshooting =
288
 
289
  * **What do I do if my site has multiple meta tags?**
245
 
246
  = Overview =
247
 
248
+ * **What it does:** Meta Robot Tags Editor lets you convey instructions to search engine spiders, as well as prohibit the spiders from indexing certain webpages on your blog using the `<meta name="robots" content="noindex" />` tag.
249
 
250
+ * **Why it helps:** The "Global" tab lets you stop DMOZ or Yahoo! Directory from overriding your custom meta descriptions, as well as prevent spiders from caching your site if you so desire. The "Default Values" tab lets you deindex entire sections of your site that contain content unimportant to visitors (e.g. the administration section), or sections of your site that mostly contain duplicate content (e.g. date archives). The editor tabs can do something similar, but for individual content items. By removing webpages from search results that visitors find unhelpful, you can help increase the focus on your more useful content.
251
 
252
+ * **How to use it:** Adjust the settings as desired, and then click Save Changes. You can refer to the "Settings Help" tab for information on the settings available. You can also use the editor tabs to deindex individual content items on your site as well as enable the "nofollow" meta parameter that will nullify all outgoing links on a specific webpage.
253
 
254
 
255
  = Settings Help =
256
 
257
  Here's information on the various settings:
258
 
259
+ * **Global: Spider Instructions**
260
 
261
  * **Don't use this site's Open Directory / Yahoo! Directory description in search results.** -- If your site is listed in the [Open Directory (DMOZ)](http://www.dmoz.org/) or the [Yahoo! Directory](http://dir.yahoo.com/), some search engines may use your directory listing as the meta description. These boxes tell search engines not to do that and will give you full control over your meta descriptions. These settings have no effect if your site isn't listed in the Open Directory or Yahoo! Directory respectively.
262
 
263
  * **Don't cache or archive this site.** -- When you check this box, Meta Editor will ask search engines (Google, Yahoo!, Bing, etc.) and archivers (Archive.org, etc.) to _not_ make cached or archived "copies" of your site.
264
 
265
+ * **Default Values: Prevent indexing of...**
266
 
267
  * **Administration back-end pages** -- Tells spiders not to index the administration area (the part you're in now), in the unlikely event a spider somehow gains access to the administration. Recommended.
268
 
284
 
285
  * **User login/registration pages** -- Tells spiders not to index WordPress's user login and registration pages. Recommended.
286
 
287
+ * **Editor Tabs (Posts/Pages/etc.)**
288
+
289
+ * **Noindex** -- Checking this for an item will ask search engines to remove that item's webpage from their indices. Use this to remove pages that you don't want showing up in search results (such as a Privacy Policy page, for example).
290
+
291
+ * **Nofollow** -- Checking this for an item will tell search engines to ignore the links to other webpages that are on that item's webpage. Note: this is page-level "meta nofollow," not to be confused with link-level "rel nofollow."
292
+
293
  = Troubleshooting =
294
 
295
  * **What do I do if my site has multiple meta tags?**
modules/meta/meta-robots.php CHANGED
@@ -18,11 +18,12 @@ class SU_MetaRobots extends SU_Module {
18
  }
19
 
20
  function get_admin_page_tabs() {
21
- return array(__('Spider Instructions') => 'global_tab');
22
  }
23
 
24
  function global_tab() {
25
  $this->admin_form_table_start();
 
26
  $this->checkboxes(array(
27
  'noodp' => __('Don&#8217t use this site&#8217s Open Directory description in search results.', 'seo-ultimate')
28
  , 'noydir' => __('Don&#8217t use this site&#8217s Yahoo! Directory description in search results.', 'seo-ultimate')
18
  }
19
 
20
  function get_admin_page_tabs() {
21
+ return array(__('Global') => 'global_tab');
22
  }
23
 
24
  function global_tab() {
25
  $this->admin_form_table_start();
26
+ $this->admin_form_subheader(__('Spider Instructions', 'seo-ultimate'));
27
  $this->checkboxes(array(
28
  'noodp' => __('Don&#8217t use this site&#8217s Open Directory description in search results.', 'seo-ultimate')
29
  , 'noydir' => __('Don&#8217t use this site&#8217s Yahoo! Directory description in search results.', 'seo-ultimate')
modules/noindex/noindex.php CHANGED
@@ -36,7 +36,28 @@ class SU_Noindex extends SU_Module {
36
  add_action('login_head', array(&$this, 'xhtml_noindex_tag'));
37
  }
38
 
39
- function admin_page_contents() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
 
41
  //If global noindex tags are enabled, these settings will be moot, so notify the user.
42
  if (!get_option('blog_public'))
@@ -75,6 +96,11 @@ class SU_Noindex extends SU_Module {
75
  function should_noindex() {
76
  if ($this->get_postmeta('meta_robots_noindex')) return true;
77
 
 
 
 
 
 
78
  $checks = array('author', 'search', 'category', 'date', 'tag');
79
 
80
  foreach ($checks as $setting) {
@@ -94,6 +120,11 @@ class SU_Noindex extends SU_Module {
94
  function should_nofollow() {
95
  if ($this->get_postmeta('meta_robots_nofollow')) return true;
96
 
 
 
 
 
 
97
  return false;
98
  }
99
 
36
  add_action('login_head', array(&$this, 'xhtml_noindex_tag'));
37
  }
38
 
39
+ function get_admin_page_tabs() {
40
+
41
+ return array_merge(
42
+ array(
43
+ __('Default Values') => 'defaults_tab'
44
+ )
45
+ , $this->get_postmeta_edit_tabs(array(
46
+ array(
47
+ 'type' => 'checkbox'
48
+ , 'name' => 'meta_robots_noindex'
49
+ , 'label' => __('Noindex', 'seo-ultimate')
50
+ )
51
+ , array(
52
+ 'type' => 'checkbox'
53
+ , 'name' => 'meta_robots_nofollow'
54
+ , 'label' => __('Nofollow', 'seo-ultimate')
55
+ )
56
+ ))
57
+ );
58
+ }
59
+
60
+ function defaults_tab() {
61
 
62
  //If global noindex tags are enabled, these settings will be moot, so notify the user.
63
  if (!get_option('blog_public'))
96
  function should_noindex() {
97
  if ($this->get_postmeta('meta_robots_noindex')) return true;
98
 
99
+ switch ($this->get_termmeta('meta_robots_noindex', false, 'meta')) {
100
+ case 1: return true; break;
101
+ case -1: return false; break;
102
+ }
103
+
104
  $checks = array('author', 'search', 'category', 'date', 'tag');
105
 
106
  foreach ($checks as $setting) {
120
  function should_nofollow() {
121
  if ($this->get_postmeta('meta_robots_nofollow')) return true;
122
 
123
+ switch ($this->get_termmeta('meta_robots_nofollow', false, 'meta')) {
124
+ case 1: return true; break;
125
+ case 0: case -1: return false; break;
126
+ }
127
+
128
  return false;
129
  }
130
 
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.3
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
@@ -11,11 +11,11 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
11
 
12
  = Recent Releases =
13
 
 
14
  * Version 5.3 adds meta keyword auto-generation from frequently-used words
15
  * Version 5.2 adds meta description mass-editing for categories/tags/terms
16
  * Version 5.1 adds meta keyword auto-generation from categories/tags/terms
17
  * Version 5.0 increases database usage efficiency
18
- * Version 4.9 adds auto-generated meta descriptions
19
 
20
  = Features =
21
 
@@ -39,7 +39,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
39
  * Go back and edit old posts' keywords with the mass-editor.
40
  * Automatically generate meta keywords based on categories, tags, custom taxonomy terms, and frequently-used words.
41
 
42
- * **Meta Robot Tags Editor**
43
  * Add the `<meta name="robots" content="noindex,follow" />` tag to archives, comment feeds, the login page, and more.
44
  * Set meta robots tags (index/noindex and follow/nofollow) for each individual post/page.
45
  * Avoid duplicate content SEO issues with the recommended noindex settings (see built-in module documentation for details).
@@ -113,7 +113,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
113
  * **Webmaster Verification Assistant**
114
  * Enter verification codes in the provided fields to access search engine webmaster tools.
115
 
116
- * **Link Mask Generator** -- UPDATED in Version 4.9
117
  * Lets you generate robots.txt-blocked "link masks" (e.g. `www.example.com/go/google/`) that pass-through to an external URL.
118
  * Lets you mask links on a per-link, per-post basis so you can exert fine-tuned control over your posts' linkflow.
119
  * Lets you change `/go/` to a directory of your choosing.
@@ -227,12 +227,15 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
227
 
228
  == Changelog ==
229
 
 
 
 
230
  = Version 5.3 (May 18, 2011) =
231
  * Feature: Meta Keywords Editor now lets you auto-generate keywords based on the words most commonly used in your posts, pages, and custom post types
232
  * Improvement: Meta Keywords Editor now removes duplicate keywords case-insensitively
233
 
234
  = Version 5.2 (May 17, 2011) =
235
- * Feature: Added meta description mass-editor for categories, tags, and custom taxonomy terms
236
 
237
  = Version 5.1 (May 16, 2011) =
238
  * Feature: Meta Keywords Editor can now auto-generate keywords for posts and custom post types using categories, tags, and custom taxonomy terms
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.4
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.4 adds noindex/nofollow mass-editing for posts/pages
15
  * Version 5.3 adds meta keyword auto-generation from frequently-used words
16
  * Version 5.2 adds meta description mass-editing for categories/tags/terms
17
  * Version 5.1 adds meta keyword auto-generation from categories/tags/terms
18
  * Version 5.0 increases database usage efficiency
 
19
 
20
  = Features =
21
 
39
  * Go back and edit old posts' keywords with the mass-editor.
40
  * Automatically generate meta keywords based on categories, tags, custom taxonomy terms, and frequently-used words.
41
 
42
+ * **Meta Robot Tags Editor** -- UPDATED in Version 5.4
43
  * Add the `<meta name="robots" content="noindex,follow" />` tag to archives, comment feeds, the login page, and more.
44
  * Set meta robots tags (index/noindex and follow/nofollow) for each individual post/page.
45
  * Avoid duplicate content SEO issues with the recommended noindex settings (see built-in module documentation for details).
113
  * **Webmaster Verification Assistant**
114
  * Enter verification codes in the provided fields to access search engine webmaster tools.
115
 
116
+ * **Link Mask Generator**
117
  * Lets you generate robots.txt-blocked "link masks" (e.g. `www.example.com/go/google/`) that pass-through to an external URL.
118
  * Lets you mask links on a per-link, per-post basis so you can exert fine-tuned control over your posts' linkflow.
119
  * Lets you change `/go/` to a directory of your choosing.
227
 
228
  == Changelog ==
229
 
230
+ = Version 5.4 (May 19, 2011) =
231
+ * Feature: Meta Robot Tags Editor now has a noindex/nofollow mass-editor for posts, pages, and custom post types
232
+
233
  = Version 5.3 (May 18, 2011) =
234
  * Feature: Meta Keywords Editor now lets you auto-generate keywords based on the words most commonly used in your posts, pages, and custom post types
235
  * Improvement: Meta Keywords Editor now removes duplicate keywords case-insensitively
236
 
237
  = Version 5.2 (May 17, 2011) =
238
+ * Feature: Meta Description Editor now has a mass-editor for categories, tags, and custom taxonomy terms
239
 
240
  = Version 5.1 (May 16, 2011) =
241
  * Feature: Meta Keywords Editor can now auto-generate keywords for posts and custom post types using categories, tags, and custom taxonomy terms
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.3
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.3
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.3');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/5.3');
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.4
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.4
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.4');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/5.4');
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.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
- "POT-Creation-Date: 2011-05-16 15:38:32+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,7 +19,7 @@ msgid ""
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
- #. #-#-#-#-# plugin.pot (SEO Ultimate 5.1) #-#-#-#-#
23
  #. Plugin Name of the plugin/theme
24
  #: plugin/class.seo-ultimate.php:741 modules/settings/settings.php:14
25
  msgid "SEO Ultimate"
@@ -111,18 +111,6 @@ msgstr ""
111
  msgid "SEO Settings"
112
  msgstr ""
113
 
114
- #: plugin/su-functions.php:77 includes/jlfunctions/str.php:98
115
- msgid "%s and %s"
116
- msgstr ""
117
-
118
- #: plugin/su-functions.php:80 includes/jlfunctions/str.php:101
119
- msgid ", "
120
- msgstr ""
121
-
122
- #: plugin/su-functions.php:81 includes/jlfunctions/str.php:102
123
- msgid "%s, and %s"
124
- msgstr ""
125
-
126
  #: plugin/class.su-installer.php:9
127
  msgid "Package not available."
128
  msgstr ""
@@ -195,1420 +183,1516 @@ msgstr ""
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.1) #-#-#-#-#
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 ""
410
 
411
- #: modules/titles/titles.php:23 modules/meta/meta-descriptions.php:24
412
- msgid "Default Formats"
413
  msgstr ""
414
 
415
- #: modules/titles/titles.php:24 modules/404s/fofs-settings.php:17
416
- msgid "Settings"
417
  msgstr ""
418
 
419
- #: modules/titles/titles.php:30
420
- msgid "Title Tag"
421
  msgstr ""
422
 
423
- #: modules/titles/titles.php:43
424
- msgid ""
425
- "Convert lowercase category/tag names to title case when used in title tags."
426
  msgstr ""
427
 
428
- #: modules/titles/titles.php:43
429
- msgid "Title Tag Variables"
430
  msgstr ""
431
 
432
- #: modules/titles/titles.php:51
433
- msgid "{blog}"
434
  msgstr ""
435
 
436
- #: modules/titles/titles.php:52
437
- msgid "{post} | {blog}"
438
  msgstr ""
439
 
440
- #: modules/titles/titles.php:53
441
- msgid "{page} | {blog}"
442
  msgstr ""
443
 
444
- #: modules/titles/titles.php:54
445
- msgid "{category} | {blog}"
446
  msgstr ""
447
 
448
- #: modules/titles/titles.php:55
449
- msgid "{tag} | {blog}"
 
 
450
  msgstr ""
451
 
452
- #: modules/titles/titles.php:56
453
- msgid "Archives for {month} {day}, {year} | {blog}"
454
  msgstr ""
455
 
456
- #: modules/titles/titles.php:57
457
- msgid "Archives for {month} {year} | {blog}"
 
 
458
  msgstr ""
459
 
460
- #: modules/titles/titles.php:58
461
- msgid "Archives for {year} | {blog}"
 
462
  msgstr ""
463
 
464
- #: modules/titles/titles.php:59
465
- msgid "Posts by {author} | {blog}"
466
  msgstr ""
467
 
468
- #: modules/titles/titles.php:60
469
- msgid "Search Results for {query} | {blog}"
470
  msgstr ""
471
 
472
- #: modules/titles/titles.php:61
473
- msgid "404 Not Found | {blog}"
 
 
474
  msgstr ""
475
 
476
- #: modules/titles/titles.php:62
477
- msgid "{title} - Page {num}"
478
  msgstr ""
479
 
480
- #: modules/titles/titles.php:70
481
- msgid "Blog Homepage Title"
 
 
 
 
482
  msgstr ""
483
 
484
- #: modules/titles/titles.php:71
485
- msgid "Post Title Format"
 
 
486
  msgstr ""
487
 
488
- #: modules/titles/titles.php:72
489
- msgid "Page Title Format"
490
  msgstr ""
491
 
492
- #: modules/titles/titles.php:73
493
- msgid "Category Title Format"
494
  msgstr ""
495
 
496
- #: modules/titles/titles.php:74
497
- msgid "Tag Title Format"
 
 
 
 
498
  msgstr ""
499
 
500
- #: modules/titles/titles.php:75
501
- msgid "Day Archive Title Format"
 
 
502
  msgstr ""
503
 
504
- #: modules/titles/titles.php:76
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
613
- msgid "Noindex"
 
 
 
614
  msgstr ""
615
 
616
- #: modules/noindex/noindex.php:44
617
  msgid ""
618
- "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
619
- "block indexing of the entire site, regardless of which options are set below."
 
620
  msgstr ""
621
 
622
- #: modules/noindex/noindex.php:47
623
- msgid "Prevent indexing of..."
 
 
624
  msgstr ""
625
 
626
- #: modules/noindex/noindex.php:48
627
- msgid "Administration back-end pages"
 
 
628
  msgstr ""
629
 
630
- #: modules/noindex/noindex.php:49
631
- msgid "Author archives"
 
 
632
  msgstr ""
633
 
634
- #: modules/noindex/noindex.php:50
635
- msgid "Blog search pages"
636
  msgstr ""
637
 
638
- #: modules/noindex/noindex.php:51
639
- msgid "Category archives"
640
  msgstr ""
641
 
642
- #: modules/noindex/noindex.php:52
643
- msgid "Comment feeds"
 
 
644
  msgstr ""
645
 
646
- #: modules/noindex/noindex.php:53
647
- msgid "Comment subpages"
648
  msgstr ""
649
 
650
- #: modules/noindex/noindex.php:54
651
- msgid "Date-based archives"
652
  msgstr ""
653
 
654
- #: modules/noindex/noindex.php:55
655
- msgid "Subpages of the homepage"
656
  msgstr ""
657
 
658
- #: modules/noindex/noindex.php:56
659
- msgid "Tag archives"
660
  msgstr ""
661
 
662
- #: modules/noindex/noindex.php:57
663
- msgid "User login/registration pages"
664
  msgstr ""
665
 
666
- #: modules/noindex/noindex.php:110
667
- msgid "Noindex: Tell search engines not to index this webpage."
668
  msgstr ""
669
 
670
- #: modules/noindex/noindex.php:111
671
- msgid "Nofollow: Tell search engines not to spider links on this webpage."
672
  msgstr ""
673
 
674
- #: modules/noindex/noindex.php:112
675
- msgid "Meta Robots Tag:"
676
  msgstr ""
677
 
678
- #: modules/meta/meta-descriptions.php:12
679
- msgid "Meta Description Editor"
680
  msgstr ""
681
 
682
- #: modules/meta/meta-descriptions.php:13
683
- msgid "Meta Descriptions"
 
 
684
  msgstr ""
685
 
686
- #: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:25
687
- msgid "Blog Homepage"
 
 
688
  msgstr ""
689
 
690
- #: modules/meta/meta-descriptions.php:31
691
- msgid "Meta Description"
692
  msgstr ""
693
 
694
- #: modules/meta/meta-descriptions.php:46
695
- msgid "Post Description Format"
696
  msgstr ""
697
 
698
- #: modules/meta/meta-descriptions.php:53
699
- msgid "Blog Homepage Meta Description"
700
  msgstr ""
701
 
702
- #: modules/meta/meta-descriptions.php:55
703
- msgid "Use this blog&#8217s tagline as the default homepage description."
704
  msgstr ""
705
 
706
- #: modules/meta/meta-descriptions.php:56
707
- msgid "Default Value"
708
  msgstr ""
709
 
710
- #: modules/meta/meta-descriptions.php:108
711
- msgid "Meta Description:"
712
  msgstr ""
713
 
714
- #: modules/meta/meta-descriptions.php:111
715
- msgid "You&#8217;ve entered %s characters. Most search engines use up to 160."
716
  msgstr ""
717
 
718
- #: modules/meta/meta-descriptions.php:119
719
- msgid ""
720
- "<strong>Description</strong> &mdash; The value of the meta description tag. "
721
- "The description will often appear underneath the title in search engine "
722
- "results. Writing an accurate, attention-grabbing description for every post "
723
- "is important to ensuring a good search results clickthrough rate."
724
  msgstr ""
725
 
726
- #: modules/meta/meta-keywords.php:12
727
- msgid "Meta Keywords Editor"
 
 
 
 
 
728
  msgstr ""
729
 
730
- #: modules/meta/meta-keywords.php:13 modules/meta/meta-keywords.php:31
731
- msgid "Meta Keywords"
 
 
732
  msgstr ""
733
 
734
- #: modules/meta/meta-keywords.php:24
735
- msgid "Default Values"
736
  msgstr ""
737
 
738
- #: modules/meta/meta-keywords.php:56
739
- msgid "Sitewide Keywords"
740
  msgstr ""
741
 
742
- #: modules/meta/meta-keywords.php:56
743
- msgid "(Separate with commas)"
744
  msgstr ""
745
 
746
- #: modules/meta/meta-keywords.php:63
747
- msgid "Blog Homepage Meta Keywords"
748
  msgstr ""
749
 
750
- #: modules/meta/meta-keywords.php:121
751
- msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
752
  msgstr ""
753
 
754
- #: modules/meta/meta-keywords.php:126
755
- msgid ""
756
- "<strong>Keywords</strong> &mdash; The value of the meta keywords tag. The "
757
- "keywords list gives search engines a hint as to what this post/page is "
758
- "about. Be sure to separate keywords with commas, like so: <samp>one,two,"
759
- "three</samp>."
760
  msgstr ""
761
 
762
- #: modules/meta/webmaster-verify.php:12
763
- msgid "Webmaster Verification Assistant"
764
  msgstr ""
765
 
766
- #: modules/meta/webmaster-verify.php:13
767
- msgid "W.M. Verification"
768
  msgstr ""
769
 
770
- #: modules/meta/webmaster-verify.php:45
771
- msgid "Google Webmaster Tools"
772
  msgstr ""
773
 
774
- #: modules/meta/webmaster-verify.php:46
775
- msgid "Yahoo! Site Explorer"
776
  msgstr ""
777
 
778
- #: modules/meta/webmaster-verify.php:47
779
- msgid "Bing Webmaster Center"
780
  msgstr ""
781
 
782
- #: modules/meta/meta-robots.php:12
783
- msgid "Meta Robot Tags Editor"
784
  msgstr ""
785
 
786
- #: modules/meta/meta-robots.php:13
787
- msgid "Meta Robot Tags"
788
  msgstr ""
789
 
790
- #: modules/meta/meta-robots.php:21
791
- msgid "Spider Instructions"
792
  msgstr ""
793
 
794
- #: modules/meta/meta-robots.php:27
795
  msgid ""
796
- "Don&#8217t use this site&#8217s Open Directory description in search results."
 
 
 
 
797
  msgstr ""
798
 
799
- #: modules/meta/meta-robots.php:28
800
  msgid ""
801
- "Don&#8217t use this site&#8217s Yahoo! Directory description in search "
802
- "results."
 
803
  msgstr ""
804
 
805
- #: modules/meta/meta-robots.php:29
806
- msgid "Don&#8217t cache or archive this site."
807
  msgstr ""
808
 
809
- #: modules/canonical/canonical.php:12
810
- msgid "Canonicalizer"
811
  msgstr ""
812
 
813
- #: modules/canonical/canonical.php:33
814
- msgid "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> tags."
815
  msgstr ""
816
 
817
- #: modules/canonical/canonical.php:34
818
- msgid "Redirect requests for nonexistent pagination."
819
  msgstr ""
820
 
821
- #: modules/competition-queries/competition-queries.php:12
822
- msgid "Competition Researcher"
823
  msgstr ""
824
 
825
- #: modules/competition-queries/competition-queries.php:13
826
- msgid "Comp. Researcher"
827
  msgstr ""
828
 
829
- #: modules/competition-queries/competition-queries.php:17
830
- msgid ""
831
- "The Competition Researcher provides you with easy access to various search "
832
- "engine tools which you can use to research multiple search queries or URLs."
833
  msgstr ""
834
 
835
- #: modules/competition-queries/competition-queries.php:21
836
- msgid "Step 1: Choose Your Research Tool"
837
  msgstr ""
838
 
839
- #: modules/competition-queries/competition-queries.php:25
840
- msgid "Keywords"
841
  msgstr ""
842
 
843
- #: modules/competition-queries/competition-queries.php:25
844
- msgid "Normal Search"
 
 
845
  msgstr ""
846
 
847
- #: modules/competition-queries/competition-queries.php:25
848
- msgid "Find out how many pages contain the words in each query"
849
  msgstr ""
850
 
851
- #: modules/competition-queries/competition-queries.php:26
852
- msgid "Phrase Match"
853
  msgstr ""
854
 
855
- #: modules/competition-queries/competition-queries.php:26
856
- msgid ""
857
- "Find out how many &#8220;actual&#8221; pages are competing for each query"
858
  msgstr ""
859
 
860
- #: modules/competition-queries/competition-queries.php:27
861
- msgid "Allinanchor"
862
  msgstr ""
863
 
864
- #: modules/competition-queries/competition-queries.php:27
865
- msgid "Find out which sites have the most links for each query"
866
  msgstr ""
867
 
868
- #: modules/competition-queries/competition-queries.php:28
869
- msgid "Allintitle"
870
  msgstr ""
871
 
872
- #: modules/competition-queries/competition-queries.php:28
873
- msgid ""
874
- "Find out which sites have the highest relevance in the title for each query"
875
  msgstr ""
876
 
877
- #: modules/competition-queries/competition-queries.php:29
878
- msgid "Allintext"
879
  msgstr ""
880
 
881
- #: modules/competition-queries/competition-queries.php:29
882
- msgid "Find out which sites have the most relevant content/text on their pages"
883
  msgstr ""
884
 
885
- #: modules/competition-queries/competition-queries.php:30
886
- msgid "Allinurl"
 
887
  msgstr ""
888
 
889
- #: modules/competition-queries/competition-queries.php:30
890
- msgid ""
891
- "Find out which sites have the most relevant naming conventions for each "
892
- "keyword"
893
  msgstr ""
894
 
895
- #: modules/competition-queries/competition-queries.php:32
896
- msgid "URLs"
897
  msgstr ""
898
 
899
- #: modules/competition-queries/competition-queries.php:32
900
- msgid "Site"
901
  msgstr ""
902
 
903
- #: modules/competition-queries/competition-queries.php:32
904
- msgid "Find out how many pages are indexed for each domain"
905
  msgstr ""
906
 
907
- #: modules/competition-queries/competition-queries.php:33
908
- #: modules/competition-queries/competition-queries.php:38
909
- msgid "Inbound Links"
910
  msgstr ""
911
 
912
- #: modules/competition-queries/competition-queries.php:33
913
- msgid "Find out how many sites link to the domains"
914
  msgstr ""
915
 
916
- #: modules/competition-queries/competition-queries.php:34
917
- #: modules/competition-queries/competition-queries.php:38
918
- msgid "Outbound Links"
 
 
 
 
 
 
919
  msgstr ""
920
 
921
- #: modules/competition-queries/competition-queries.php:34
922
- msgid "Find out how many sites the domains link to"
923
  msgstr ""
924
 
925
- #: modules/competition-queries/competition-queries.php:56
926
- msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
927
  msgstr ""
928
 
929
- #: modules/competition-queries/competition-queries.php:58
930
- msgid "(Type in one per line)"
931
  msgstr ""
932
 
933
- #: modules/competition-queries/competition-queries.php:60
934
- msgid "Step 3: Set Options and Submit"
935
  msgstr ""
936
 
937
- #: modules/competition-queries/competition-queries.php:62
938
- #: modules/site-keyword-queries/site-keyword-queries.php:28
939
- msgid "Show 100 results per page"
940
  msgstr ""
941
 
942
- #: modules/competition-queries/competition-queries.php:64
943
- #: modules/site-keyword-queries/site-keyword-queries.php:30
944
- msgid "Use Google&#8217;s minimal mode"
 
945
  msgstr ""
946
 
947
- #: modules/competition-queries/competition-queries.php:70
948
- #: modules/site-keyword-queries/site-keyword-queries.php:33
949
- msgid "Submit"
950
  msgstr ""
951
 
952
- #: modules/site-keyword-queries/site-keyword-queries.php:12
953
- msgid "Internal Relevance Researcher"
954
  msgstr ""
955
 
956
- #: modules/site-keyword-queries/site-keyword-queries.php:13
957
- msgid "Int. Rel. Researcher"
958
  msgstr ""
959
 
960
- #: modules/site-keyword-queries/site-keyword-queries.php:21
961
- msgid "Step 1: Enter Keywords"
 
 
962
  msgstr ""
963
 
964
- #: modules/site-keyword-queries/site-keyword-queries.php:23
965
- msgid "(Type one keyword per line)"
966
  msgstr ""
967
 
968
- #: modules/site-keyword-queries/site-keyword-queries.php:25
969
- msgid "Step 2: Set Options and Submit"
970
  msgstr ""
971
 
972
- #: modules/site-keyword-queries/site-keyword-queries.php:27
973
- msgid "Put keywords in quotes"
974
  msgstr ""
975
 
976
- #: modules/user-code/user-code.php:12
977
- msgid "Code Inserter"
978
  msgstr ""
979
 
980
- #: modules/user-code/user-code.php:27
981
- msgid "Everywhere"
982
  msgstr ""
983
 
984
- #: modules/user-code/user-code.php:34
985
- msgid "&lt;head&gt; Tag"
986
  msgstr ""
987
 
988
- #: modules/user-code/user-code.php:35
989
- msgid "Before Item Content"
990
  msgstr ""
991
 
992
- #: modules/user-code/user-code.php:36
993
- msgid "After Item Content"
994
  msgstr ""
995
 
996
- #: modules/user-code/user-code.php:37
997
- msgid "Footer"
998
  msgstr ""
999
 
1000
- #: modules/user-code/user-code.php:51
1001
- msgid "Code Inserter module"
1002
  msgstr ""
1003
 
1004
- #: modules/modules/modules.php:12
1005
- msgid "Module Manager"
1006
  msgstr ""
1007
 
1008
- #: modules/modules/modules.php:13
1009
- msgid "Modules"
1010
  msgstr ""
1011
 
1012
- #: modules/modules/modules.php:37
1013
- msgid ""
1014
- "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
1015
- "&#8221; By default, most of these modules are listed in the &#8220;"
1016
- "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
1017
- "you can view documentation by clicking the tabs in the upper-right-hand "
1018
- "corner of your administration screen."
1019
  msgstr ""
1020
 
1021
- #: modules/modules/modules.php:39
 
 
 
 
1022
  msgid ""
1023
- "The Module Manager lets you disable or hide modules you don&#8217;t use. "
1024
- "You can also silence modules from displaying bubble alerts on the menu."
1025
  msgstr ""
1026
 
1027
- #: modules/modules/modules.php:45
1028
- msgid "Status"
1029
  msgstr ""
1030
 
1031
- #: modules/modules/modules.php:46
1032
- msgid "Module"
1033
  msgstr ""
1034
 
1035
- #: modules/modules/modules.php:59
1036
- msgid "Enabled"
1037
  msgstr ""
1038
 
1039
- #: modules/modules/modules.php:60
1040
- msgid "Silenced"
1041
  msgstr ""
1042
 
1043
- #: modules/modules/modules.php:61
1044
- msgid "Hidden"
1045
  msgstr ""
1046
 
1047
- #: modules/modules/modules.php:62
1048
- msgid "Disabled"
1049
  msgstr ""
1050
 
1051
- #: modules/files/files.php:14
1052
- msgid "File Editor"
1053
  msgstr ""
1054
 
1055
- #: modules/files/files.php:53
1056
- msgid ""
1057
- "A .htaccess file exists, but it&#8217;s not writable. You can edit it here "
1058
- "once the file permissions are corrected."
1059
  msgstr ""
1060
 
1061
- #: modules/files/files.php:59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1062
  msgid ""
1063
- "WordPress won&#8217;t be able to display your robots.txt file because the "
1064
- "default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
1065
- "structure</a> is in use."
1066
  msgstr ""
1067
 
1068
- #: modules/files/files.php:66
1069
- msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
1070
  msgstr ""
1071
 
1072
- #: modules/files/files.php:70
1073
- msgid "Enable this custom robots.txt file and disable the default file"
1074
  msgstr ""
1075
 
1076
- #: modules/files/files.php:71
1077
- msgid "Let other plugins add rules to my custom robots.txt file"
1078
  msgstr ""
1079
 
1080
- #: modules/files/files.php:72
1081
- msgid "robots.txt Settings"
1082
  msgstr ""
1083
 
1084
- #: modules/files/files.php:75
1085
- msgid ""
1086
- "Please realize that incorrectly editing your robots.txt file could block "
1087
- "search engines from your site."
1088
  msgstr ""
1089
 
1090
- #: modules/files/files.php:79
1091
- msgid ".htaccess"
1092
  msgstr ""
1093
 
1094
- #: modules/files/files.php:82
 
 
 
 
 
 
 
 
 
 
 
 
1095
  msgid ""
1096
- "Also, incorrectly editing your .htaccess file could disable your entire "
1097
- "website. Edit with caution!"
1098
  msgstr ""
1099
 
1100
- #: modules/files/files.php:134
1101
  msgid ""
1102
- "Please note that your privacy settings won&#8217;t have any effect on your "
1103
- "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1104
  msgstr ""
1105
 
1106
- #: modules/settings/settings.php:12
1107
- msgid "Plugin Settings"
1108
  msgstr ""
1109
 
1110
- #: modules/settings/settings.php:13
1111
- msgid "SEO Ultimate Plugin Settings"
1112
  msgstr ""
1113
 
1114
- #: modules/settings/settings-data.php:16
1115
- msgid "Settings Data Manager"
1116
  msgstr ""
1117
 
1118
- #: modules/settings/settings-data.php:17
1119
- msgid "Manage Settings Data"
1120
  msgstr ""
1121
 
1122
- #: modules/settings/settings-data.php:21
1123
- msgid "Import"
1124
  msgstr ""
1125
 
1126
- #: modules/settings/settings-data.php:22
1127
- msgid "Export"
1128
  msgstr ""
1129
 
1130
- #: modules/settings/settings-data.php:82
1131
- msgid "Settings successfully imported."
1132
  msgstr ""
1133
 
1134
- #: modules/settings/settings-data.php:84
1135
- msgid ""
1136
- "The uploaded file is not in the proper format. Settings could not be "
1137
- "imported."
1138
  msgstr ""
1139
 
1140
- #: modules/settings/settings-data.php:86
1141
- msgid "The settings file could not be uploaded successfully."
1142
  msgstr ""
1143
 
1144
- #: modules/settings/settings-data.php:89
1145
- msgid ""
1146
- "Settings could not be imported because no settings file was selected. Please "
1147
- "click the &#8220;Browse&#8221; button and select a file to import."
1148
  msgstr ""
1149
 
1150
- #: modules/settings/settings-data.php:134
 
 
 
 
 
 
 
 
1151
  msgid ""
1152
- "The uploaded file is not in the proper format. Links could not be imported."
 
 
 
1153
  msgstr ""
1154
 
1155
- #: modules/settings/settings-data.php:173
1156
- msgid "Links successfully imported."
1157
  msgstr ""
1158
 
1159
- #: modules/settings/settings-data.php:176
1160
- msgid "The CSV file could not be uploaded successfully."
1161
  msgstr ""
1162
 
1163
- #: modules/settings/settings-data.php:179
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1164
  msgid ""
1165
- "Links could not be imported because no CSV file was selected. Please click "
1166
- "the &#8220;Browse&#8221; button and select a file to import."
 
 
1167
  msgstr ""
1168
 
1169
- #: modules/settings/settings-data.php:189
1170
- msgid "Import SEO Ultimate Settings File"
1171
  msgstr ""
1172
 
1173
- #: modules/settings/settings-data.php:191
1174
  msgid ""
1175
- "You can use this form to upload and import an SEO Ultimate settings file "
1176
- "stored on your computer. (These files can be created using the Export tool.) "
1177
- "Note that importing a file will overwrite your existing settings with those "
1178
- "in the file."
1179
  msgstr ""
1180
 
1181
- #: modules/settings/settings-data.php:195
 
 
 
 
1182
  msgid ""
1183
- "Are you sure you want to import this settings file? This will overwrite your "
1184
- "current settings and cannot be undone."
 
1185
  msgstr ""
1186
 
1187
- #: modules/settings/settings-data.php:196
1188
- msgid "Import Settings File"
1189
  msgstr ""
1190
 
1191
- #: modules/settings/settings-data.php:202
1192
- msgid "Import Deeplink Juggernaut CSV File"
1193
  msgstr ""
1194
 
1195
- #: modules/settings/settings-data.php:204
1196
- msgid ""
1197
- "You can use this form to upload and import a Deeplink Juggernaut CSV file "
1198
- "stored on your computer. (These files can be created using the Export tool.) "
1199
- "Note that importing a file will overwrite your existing links with those in "
1200
- "the file."
1201
  msgstr ""
1202
 
1203
- #: modules/settings/settings-data.php:208
 
 
 
 
1204
  msgid ""
1205
- "Are you sure you want to import this CSV file? This will overwrite your "
1206
- "current Deeplink Juggernaut links and cannot be undone."
1207
  msgstr ""
1208
 
1209
- #: modules/settings/settings-data.php:209
1210
- msgid "Import CSV File"
1211
  msgstr ""
1212
 
1213
- #: modules/settings/settings-data.php:224
1214
- msgid "Import from Other Plugins"
1215
  msgstr ""
1216
 
1217
- #: modules/settings/settings-data.php:226
 
 
 
 
1218
  msgid ""
1219
- "You can import settings and data from these plugins. Clicking a plugin&#8217;"
1220
- "s name will take you to the importer page, where you can customize "
1221
- "parameters and start the import."
1222
  msgstr ""
1223
 
1224
- #: modules/settings/settings-data.php:246
1225
- msgid "Export SEO Ultimate Settings File"
1226
  msgstr ""
1227
 
1228
- #: modules/settings/settings-data.php:248
1229
- msgid ""
1230
- "You can use this export tool to download an SEO Ultimate settings file to "
1231
- "your computer."
1232
  msgstr ""
1233
 
1234
- #: modules/settings/settings-data.php:250
1235
- msgid ""
1236
- "A settings file includes the data of every checkbox and textbox of every "
1237
- "installed module. It does NOT include site-specific data like logged 404s or "
1238
- "post/page title/meta data (this data would be included in a standard "
1239
- "database backup, however)."
1240
  msgstr ""
1241
 
1242
- #: modules/settings/settings-data.php:253
1243
- msgid "Download Settings File"
1244
  msgstr ""
1245
 
1246
- #: modules/settings/settings-data.php:258
1247
- msgid "Export Deeplink Juggernaut CSV File"
1248
  msgstr ""
1249
 
1250
- #: modules/settings/settings-data.php:260
 
 
 
 
 
 
 
 
 
 
 
 
1251
  msgid ""
1252
- "You can use this export tool to download a CSV file (comma-separated values "
1253
- "file) that contains your Deeplink Juggernaut links. Once you download this "
1254
- "file to your computer, you can edit it using your favorite spreadsheet "
1255
- "program. When you&#8217;re done editing, you can re-upload the file using "
1256
- "the Import tool."
 
 
 
 
 
 
 
 
 
 
 
 
1257
  msgstr ""
1258
 
1259
- #: modules/settings/settings-data.php:263
1260
- msgid "Download CSV File"
1261
  msgstr ""
1262
 
1263
- #: modules/settings/settings-data.php:270
1264
- msgid "All settings have been erased and defaults have been restored."
 
 
1265
  msgstr ""
1266
 
1267
- #: modules/settings/settings-data.php:272
1268
  msgid ""
1269
- "You can erase all your SEO Ultimate settings and restore them to &#8220;"
1270
- "factory defaults&#8221; by clicking the button below."
 
1271
  msgstr ""
1272
 
1273
- #: modules/settings/settings-data.php:275
1274
- msgid ""
1275
- "Are you sure you want to erase all module settings? This cannot be undone."
1276
  msgstr ""
1277
 
1278
- #: modules/settings/settings-data.php:276
1279
- msgid "Restore Default Settings"
1280
  msgstr ""
1281
 
1282
- #: modules/settings/uninstall.php:17
1283
- msgid "Uninstaller"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1284
  msgstr ""
1285
 
1286
- #: modules/settings/uninstall.php:27
1287
- msgid ""
1288
- "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
1289
- "files."
1290
  msgstr ""
1291
 
1292
- #: modules/settings/uninstall.php:30
1293
- msgid ""
1294
- "Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
1295
- "your SEO Ultimate settings and cannot be undone."
1296
  msgstr ""
1297
 
1298
- #: modules/settings/uninstall.php:31
1299
- msgid "Uninstall Now"
1300
  msgstr ""
1301
 
1302
- #: modules/settings/uninstall.php:35 modules/settings/uninstall.php:42
1303
- msgid "Uninstall SEO Ultimate"
1304
  msgstr ""
1305
 
1306
- #: modules/settings/uninstall.php:46
1307
- msgid "Deleted settings."
1308
  msgstr ""
1309
 
1310
- #: modules/settings/uninstall.php:53
1311
- msgid "An error occurred while deleting files."
1312
  msgstr ""
1313
 
1314
- #: modules/settings/uninstall.php:55
1315
- msgid "Deleted files."
1316
  msgstr ""
1317
 
1318
- #: modules/settings/uninstall.php:56
1319
- msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1320
  msgstr ""
1321
 
1322
- #: modules/settings/global-settings.php:18
1323
- msgid "Global Settings"
1324
  msgstr ""
1325
 
1326
- #: modules/settings/global-settings.php:40
1327
- msgid "Enable nofollow&#8217;d attribution link"
1328
  msgstr ""
1329
 
1330
- #: modules/settings/global-settings.php:41
1331
- msgid "Enable attribution link CSS styling"
 
 
1332
  msgstr ""
1333
 
1334
- #: modules/settings/global-settings.php:42
1335
- msgid "Notify me about unnecessary active plugins"
1336
  msgstr ""
1337
 
1338
- #: modules/settings/global-settings.php:43
1339
- msgid "Insert comments around HTML code insertions"
1340
  msgstr ""
1341
 
1342
- #: modules/settings/install.php:18
1343
- msgid "Upgrade/Downgrade/Reinstall"
1344
  msgstr ""
1345
 
1346
- #: modules/settings/install.php:19
1347
- msgid "Installer"
1348
  msgstr ""
1349
 
1350
- #: modules/settings/install.php:23 modules/settings/install.php:48
1351
- msgid "Upgrade"
1352
  msgstr ""
1353
 
1354
- #: modules/settings/install.php:24 modules/settings/install.php:71
1355
- msgid "Downgrade"
 
1356
  msgstr ""
1357
 
1358
- #: modules/settings/install.php:25 modules/settings/install.php:86
1359
- msgid "Reinstall"
1360
  msgstr ""
1361
 
1362
- #: modules/settings/install.php:42
1363
- msgid ""
1364
- "From the list below, select the version to which you would like to upgrade. "
1365
- "Then click the &#8220;Upgrade&#8221; button at the bottom of the screen."
1366
  msgstr ""
1367
 
1368
- #: modules/settings/install.php:51
1369
- msgid "You are already running the latest version."
1370
  msgstr ""
1371
 
1372
- #: modules/settings/install.php:53
1373
  msgid ""
1374
- "There was an error retrieving the list of available versions. Please try "
1375
- "again later. You can also upgrade to the latest version of SEO Ultimate "
1376
- "using the WordPress plugin upgrader."
1377
  msgstr ""
1378
 
1379
- #: modules/settings/install.php:62
1380
- msgid ""
1381
- "Downgrading is provided as a convenience only and is not officially "
1382
- "supported. Although unlikely, you may lose data in the downgrading process. "
1383
- "It is your responsibility to backup your database before proceeding."
1384
  msgstr ""
1385
 
1386
- #: modules/settings/install.php:65
1387
- msgid ""
1388
- "From the list below, select the version to which you would like to "
1389
- "downgrade. Then click the &#8220;Downgrade&#8221; button at the bottom of "
1390
- "the screen."
1391
  msgstr ""
1392
 
1393
- #: modules/settings/install.php:74
1394
- msgid ""
1395
- "Downgrading to versions earlier than %s is not supported because doing so "
1396
- "will result in data loss."
1397
  msgstr ""
1398
 
1399
- #: modules/settings/install.php:76
1400
  msgid ""
1401
- "There was an error retrieving the list of available versions. Please try "
1402
- "again later."
1403
  msgstr ""
1404
 
1405
- #: modules/settings/install.php:81
1406
- msgid ""
1407
- "To download and install a fresh copy of the SEO Ultimate version you are "
1408
- "currently using, click the &#8220;Reinstall&#8221; button below."
1409
  msgstr ""
1410
 
1411
- #: modules/settings/install.php:108
1412
- msgid "Your Current Version"
1413
  msgstr ""
1414
 
1415
- #: modules/settings/install.php:110
1416
- msgid "Latest Version"
1417
  msgstr ""
1418
 
1419
- #: modules/settings/install.php:130
1420
- msgid ""
1421
- "You do not have sufficient permissions to upgrade/downgrade plugins for this "
1422
- "blog."
1423
  msgstr ""
1424
 
1425
- #: modules/settings/install.php:140
1426
- msgid "Downgrade to SEO Ultimate %s"
1427
  msgstr ""
1428
 
1429
- #: modules/settings/install.php:143
1430
- msgid "Reinstall SEO Ultimate %s"
 
1431
  msgstr ""
1432
 
1433
- #: modules/settings/install.php:146
1434
- msgid "Upgrade to SEO Ultimate %s"
1435
  msgstr ""
1436
 
1437
- #: modules/404s/fofs.php:11
1438
- msgid "404 Monitor"
1439
  msgstr ""
1440
 
1441
- #: modules/404s/fofs-log.php:16
1442
- msgid "404 Monitor Log"
1443
  msgstr ""
1444
 
1445
- #: modules/404s/fofs-log.php:17
1446
- msgid "Log"
1447
  msgstr ""
1448
 
1449
- #: modules/404s/fofs-log.php:117
1450
- msgid "Hits"
 
1451
  msgstr ""
1452
 
1453
- #: modules/404s/fofs-log.php:118
1454
- msgid "URL with 404 Error"
 
1455
  msgstr ""
1456
 
1457
- #: modules/404s/fofs-log.php:119
1458
- msgid "Date of Most Recent Hit"
 
1459
  msgstr ""
1460
 
1461
- #: modules/404s/fofs-log.php:120
1462
- msgid "Referers"
1463
  msgstr ""
1464
 
1465
- #: modules/404s/fofs-log.php:121 modules/404s/fofs-log.php:224
1466
- msgid "User Agents"
1467
  msgstr ""
1468
 
1469
- #: modules/404s/fofs-log.php:137
1470
  msgid ""
1471
- "New 404 errors will not be recorded because 404 logging is disabled on the "
1472
- "Settings tab."
1473
  msgstr ""
1474
 
1475
- #: modules/404s/fofs-log.php:144
1476
- msgid "The log entry was successfully deleted."
1477
  msgstr ""
1478
 
1479
- #: modules/404s/fofs-log.php:146
1480
- msgid "This log entry has already been deleted."
1481
  msgstr ""
1482
 
1483
- #: modules/404s/fofs-log.php:155
1484
- msgid "The log was successfully cleared."
1485
  msgstr ""
1486
 
1487
- #: modules/404s/fofs-log.php:159
1488
- msgid "No 404 errors in the log."
1489
  msgstr ""
1490
 
1491
- #: modules/404s/fofs-log.php:183
1492
- msgid "Open URL in new window (will not be logged)"
1493
  msgstr ""
1494
 
1495
- #: modules/404s/fofs-log.php:184
1496
- msgid "Query Google for cached version of URL (opens in new window)"
1497
  msgstr ""
1498
 
1499
- #: modules/404s/fofs-log.php:185
1500
- msgid "Remove this URL from the log"
1501
  msgstr ""
1502
 
1503
- #: modules/404s/fofs-log.php:188
1504
- msgid "%s at %s"
1505
  msgstr ""
1506
 
1507
- #: modules/404s/fofs-log.php:192
1508
- msgid "View list of referring URLs"
1509
  msgstr ""
1510
 
1511
- #: modules/404s/fofs-log.php:193
1512
- msgid "View list of user agents"
1513
  msgstr ""
1514
 
1515
- #: modules/404s/fofs-log.php:203
1516
- msgid "Referring URLs"
1517
  msgstr ""
1518
 
1519
- #: modules/404s/fofs-log.php:204 modules/404s/fofs-log.php:225
1520
- msgid "Hide list"
1521
  msgstr ""
1522
 
1523
- #: modules/404s/fofs-log.php:255
1524
- msgid "Are you sure you want to delete all 404 log entries?"
1525
  msgstr ""
1526
 
1527
- #: modules/404s/fofs-log.php:257
1528
- msgid "Clear Log"
1529
  msgstr ""
1530
 
1531
- #: modules/404s/fofs-settings.php:16
1532
- msgid "404 Monitor Settings"
1533
  msgstr ""
1534
 
1535
- #: modules/404s/fofs-settings.php:37
1536
- msgid "Continue monitoring for new 404 errors"
1537
  msgstr ""
1538
 
1539
- #: modules/404s/fofs-settings.php:37
1540
- msgid "Monitoring Settings"
1541
  msgstr ""
1542
 
1543
- #: modules/404s/fofs-settings.php:39
1544
- msgid "Only log these types of 404 errors:"
1545
  msgstr ""
1546
 
1547
- #: modules/404s/fofs-settings.php:40
1548
- msgid "404s generated by search engine spiders"
1549
  msgstr ""
1550
 
1551
- #: modules/404s/fofs-settings.php:41
1552
- msgid "404s with referring URLs"
1553
  msgstr ""
1554
 
1555
- #: modules/404s/fofs-settings.php:42
1556
- msgid "Log Restrictions"
1557
  msgstr ""
1558
 
1559
- #: modules/404s/fofs-settings.php:43
1560
- msgid "Maximum Log Entries"
1561
  msgstr ""
1562
 
1563
- #: modules/404s/fofs-settings.php:44
1564
- msgid "URLs to Ignore"
1565
  msgstr ""
1566
 
1567
- #: modules/404s/fofs-settings.php:44
1568
- msgid "(Use * as wildcard)"
1569
  msgstr ""
1570
 
1571
- #: modules/slugs/slugs.php:12
1572
- msgid "Slug Optimizer"
1573
  msgstr ""
1574
 
1575
- #: modules/slugs/slugs.php:16
1576
- msgid "Words to Remove"
1577
  msgstr ""
1578
 
1579
- #: modules/internal-link-aliases/internal-link-aliases.php:20
1580
- msgid "Link Mask Generator"
 
 
 
 
1581
  msgstr ""
1582
 
1583
- #: modules/internal-link-aliases/internal-link-aliases.php:24
1584
- msgid "Alias Directory"
1585
  msgstr ""
1586
 
1587
- #: modules/internal-link-aliases/internal-link-aliases.php:43
1588
- msgid "Link Masks"
1589
  msgstr ""
1590
 
1591
- #: modules/internal-link-aliases/internal-link-aliases.php:46
1592
- #: modules/autolinks/content-autolinks.php:196
1593
- msgid "URL"
1594
  msgstr ""
1595
 
1596
- #: modules/internal-link-aliases/internal-link-aliases.php:46
1597
- msgid "Mask URL"
1598
  msgstr ""
1599
 
1600
- #: modules/internal-link-aliases/internal-link-aliases.php:66
1601
- msgid ""
1602
- "You can stop search engines from following a link by typing in a mask for "
1603
- "its URL."
1604
  msgstr ""
1605
 
1606
- #: modules/internal-link-aliases/internal-link-aliases.php:122
1607
- msgid "Added by Link Alias Generator (LAG) module"
1608
  msgstr ""
1609
 
1610
- #: modules/internal-link-aliases/internal-link-aliases.php:133
1611
- msgid "End LAG"
1612
  msgstr ""
1613
 
1614
  #: modules/rich-snippets/rich-snippets.php:12
@@ -1711,171 +1795,95 @@ msgstr ""
1711
  msgid "Star Rating for Reviewed Item:"
1712
  msgstr ""
1713
 
1714
- #: modules/sharing-buttons/sharing-buttons.php:12
1715
- msgid "Sharing Facilitator"
1716
- msgstr ""
1717
-
1718
- #: modules/sharing-buttons/sharing-buttons.php:22
1719
- msgid "Bookmark and Share"
1720
- msgstr ""
1721
-
1722
- #: modules/sharing-buttons/sharing-buttons.php:28
1723
- msgid "Providers"
1724
- msgstr ""
1725
-
1726
- #: modules/sharing-buttons/sharing-buttons.php:34
1727
- msgid "Which provider would you like to use for your sharing buttons?"
1728
- msgstr ""
1729
-
1730
- #: modules/sharing-buttons/sharing-buttons.php:36
1731
- msgid "None; disable sharing buttons"
1732
- msgstr ""
1733
-
1734
- #: modules/sharing-buttons/sharing-buttons.php:37
1735
- msgid "Use the ShareThis button"
1736
  msgstr ""
1737
 
1738
- #: modules/sharing-buttons/sharing-buttons.php:38
1739
- msgid "Use the AddThis button"
1740
  msgstr ""
1741
 
1742
- #: modules/autolinks/autolinks.php:11
1743
- msgid "Deeplink Juggernaut"
1744
  msgstr ""
1745
 
1746
- #: modules/autolinks/content-autolinks-settings.php:16
1747
- msgid "Content Deeplink Juggernaut Settings"
1748
  msgstr ""
1749
 
1750
- #: modules/autolinks/content-autolinks-settings.php:17
1751
- msgid "Content Link Settings"
1752
  msgstr ""
1753
 
1754
- #: modules/autolinks/content-autolinks-settings.php:21
1755
- msgid "Allow posts to link to themselves."
1756
  msgstr ""
1757
 
1758
- #: modules/autolinks/content-autolinks-settings.php:22
1759
- msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1760
  msgstr ""
1761
 
1762
- #: modules/autolinks/content-autolinks-settings.php:23
1763
  msgid ""
1764
- "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1765
- "etc."
1766
- msgstr ""
1767
-
1768
- #: modules/autolinks/content-autolinks.php:16
1769
- msgid "Content Deeplink Juggernaut"
1770
- msgstr ""
1771
-
1772
- #: modules/autolinks/content-autolinks.php:17
1773
- msgid "Content Links"
1774
  msgstr ""
1775
 
1776
- #: modules/autolinks/content-autolinks.php:100
1777
  msgid ""
1778
- "The Content Links section of Deeplink Juggernaut lets you automatically link "
1779
- "a certain word or phrase in your post/page content to a URL you specify."
1780
- msgstr ""
1781
-
1782
- #: modules/autolinks/content-autolinks.php:136
1783
- msgid "Edit Existing Links"
1784
- msgstr ""
1785
-
1786
- #: modules/autolinks/content-autolinks.php:140
1787
- msgid "Add a New Link"
1788
- msgstr ""
1789
-
1790
- #: modules/autolinks/content-autolinks.php:148
1791
- msgid "Anchor Text"
1792
- msgstr ""
1793
-
1794
- #: modules/autolinks/content-autolinks.php:149
1795
- msgid "Destination Type"
1796
- msgstr ""
1797
-
1798
- #: modules/autolinks/content-autolinks.php:150
1799
- msgid "Destination"
1800
- msgstr ""
1801
-
1802
- #: modules/autolinks/content-autolinks.php:151
1803
- msgid "Title Attribute"
1804
- msgstr ""
1805
-
1806
- #: modules/autolinks/content-autolinks.php:152
1807
- msgid "Options"
1808
- msgstr ""
1809
-
1810
- #: modules/autolinks/content-autolinks.php:154
1811
- msgid "Delete"
1812
- msgstr ""
1813
-
1814
- #: modules/autolinks/content-autolinks.php:196
1815
- msgid "Custom"
1816
- msgstr ""
1817
-
1818
- #: modules/autolinks/content-autolinks.php:197
1819
- msgid "Content Items"
1820
- msgstr ""
1821
-
1822
- #: modules/autolinks/content-autolinks.php:204
1823
- msgid "Nofollow"
1824
  msgstr ""
1825
 
1826
- #: modules/autolinks/content-autolinks.php:205
1827
- msgid "New window"
1828
  msgstr ""
1829
 
1830
- #: modules/autolinks/content-autolinks.php:269
1831
- msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
1832
  msgstr ""
1833
 
1834
- #: modules/autolinks/content-autolinks.php:270
1835
- msgid "Don&#8217;t add autolinks to anchor texts found in this post."
1836
  msgstr ""
1837
 
1838
- #: modules/autolinks/content-autolinks.php:270
1839
- msgid "Autolink Exclusion:"
1840
  msgstr ""
1841
 
1842
- #: modules/autolinks/content-autolinks.php:275
1843
  msgid ""
1844
- "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
1845
- "into this box, Deeplink Juggernaut will search for that anchor in all your "
1846
- "other posts and link it to this post. For example, if the post you&#8217;re "
1847
- "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
1848
- "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
1849
- "Deeplink Juggernaut will automatically build internal links to this post "
1850
- "with that anchor text (assuming other posts contain that text)."
1851
- msgstr ""
1852
-
1853
- #: includes/jlwp/functions.php:56
1854
- msgid "Posts"
1855
  msgstr ""
1856
 
1857
- #: includes/jlwp/functions.php:56
1858
- msgid "Post"
1859
  msgstr ""
1860
 
1861
- #: includes/jlwp/functions.php:57
1862
- msgid "Pages"
 
 
1863
  msgstr ""
1864
 
1865
- #: includes/jlwp/functions.php:57
1866
- msgid "Page"
 
 
1867
  msgstr ""
1868
 
1869
- #: includes/jlwp/functions.php:58
1870
- msgid "Attachments"
1871
  msgstr ""
1872
 
1873
- #: includes/jlwp/functions.php:58
1874
- msgid "Attachment"
1875
  msgstr ""
1876
 
1877
- #: includes/jlwp/functions.php:129
1878
- msgid "backup your database"
1879
  msgstr ""
1880
 
1881
  #. Plugin URI of the plugin/theme
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEO Ultimate 5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
+ "POT-Creation-Date: 2011-05-19 15:59:17+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 5.4) #-#-#-#-#
23
  #. Plugin Name of the plugin/theme
24
  #: plugin/class.seo-ultimate.php:741 modules/settings/settings.php:14
25
  msgid "SEO Ultimate"
111
  msgid "SEO Settings"
112
  msgstr ""
113
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  #: plugin/class.su-installer.php:9
115
  msgid "Package not available."
116
  msgstr ""
183
  msgid "Plugin upgraded successfully."
184
  msgstr ""
185
 
186
+ #: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
187
+ msgid "%s and %s"
188
  msgstr ""
189
 
190
+ #: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
191
+ msgid ", "
192
  msgstr ""
193
 
194
+ #: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
195
+ msgid "%s, and %s"
196
  msgstr ""
197
 
198
+ #: includes/jlwp/functions.php:56
199
+ msgid "Posts"
200
  msgstr ""
201
 
202
+ #: includes/jlwp/functions.php:56
203
+ msgid "Post"
204
  msgstr ""
205
 
206
+ #: includes/jlwp/functions.php:57
207
+ msgid "Pages"
 
 
208
  msgstr ""
209
 
210
+ #: includes/jlwp/functions.php:57
211
+ msgid "Page"
 
 
 
212
  msgstr ""
213
 
214
+ #: includes/jlwp/functions.php:58
215
+ msgid "Attachments"
216
  msgstr ""
217
 
218
+ #: includes/jlwp/functions.php:58
219
+ msgid "Attachment"
220
  msgstr ""
221
 
222
+ #: includes/jlwp/functions.php:129
223
+ msgid "backup your database"
224
  msgstr ""
225
 
226
+ #: modules/404s/fofs-log.php:16
227
+ msgid "404 Monitor Log"
228
  msgstr ""
229
 
230
+ #: modules/404s/fofs-log.php:17
231
+ msgid "Log"
232
  msgstr ""
233
 
234
+ #: modules/404s/fofs-log.php:116 modules/class.su-module.php:1171
235
+ msgid "Actions"
236
  msgstr ""
237
 
238
+ #: modules/404s/fofs-log.php:117
239
+ msgid "Hits"
240
  msgstr ""
241
 
242
+ #: modules/404s/fofs-log.php:118
243
+ msgid "URL with 404 Error"
244
  msgstr ""
245
 
246
+ #: modules/404s/fofs-log.php:119
247
+ msgid "Date of Most Recent Hit"
248
  msgstr ""
249
 
250
+ #: modules/404s/fofs-log.php:120
251
+ msgid "Referers"
252
  msgstr ""
253
 
254
+ #: modules/404s/fofs-log.php:121 modules/404s/fofs-log.php:224
255
+ msgid "User Agents"
256
  msgstr ""
257
 
258
+ #: modules/404s/fofs-log.php:137
259
+ msgid ""
260
+ "New 404 errors will not be recorded because 404 logging is disabled on the "
261
+ "Settings tab."
262
  msgstr ""
263
 
264
+ #: modules/404s/fofs-log.php:144
265
+ msgid "The log entry was successfully deleted."
 
 
 
 
 
266
  msgstr ""
267
 
268
+ #: modules/404s/fofs-log.php:146
269
+ msgid "This log entry has already been deleted."
 
 
 
270
  msgstr ""
271
 
272
+ #: modules/404s/fofs-log.php:155
273
+ msgid "The log was successfully cleared."
274
  msgstr ""
275
 
276
+ #: modules/404s/fofs-log.php:159
277
+ msgid "No 404 errors in the log."
 
 
 
 
278
  msgstr ""
279
 
280
+ #: modules/404s/fofs-log.php:183
281
+ msgid "Open URL in new window (will not be logged)"
282
  msgstr ""
283
 
284
+ #: modules/404s/fofs-log.php:184
285
+ msgid "Query Google for cached version of URL (opens in new window)"
 
 
 
286
  msgstr ""
287
 
288
+ #: modules/404s/fofs-log.php:185
289
+ msgid "Remove this URL from the log"
290
  msgstr ""
291
 
292
+ #: modules/404s/fofs-log.php:188
293
+ msgid "%s at %s"
294
  msgstr ""
295
 
296
+ #: modules/404s/fofs-log.php:192
297
+ msgid "View list of referring URLs"
298
  msgstr ""
299
 
300
+ #: modules/404s/fofs-log.php:193
301
+ msgid "View list of user agents"
302
  msgstr ""
303
 
304
+ #: modules/404s/fofs-log.php:203
305
+ msgid "Referring URLs"
 
 
306
  msgstr ""
307
 
308
+ #: modules/404s/fofs-log.php:204 modules/404s/fofs-log.php:225
309
+ msgid "Hide list"
310
  msgstr ""
311
 
312
+ #: modules/404s/fofs-log.php:255
313
+ msgid "Are you sure you want to delete all 404 log entries?"
314
  msgstr ""
315
 
316
+ #: modules/404s/fofs-log.php:257
317
+ msgid "Clear Log"
318
  msgstr ""
319
 
320
+ #: modules/404s/fofs.php:11
321
+ msgid "404 Monitor"
 
 
322
  msgstr ""
323
 
324
+ #: modules/404s/fofs-settings.php:16
325
+ msgid "404 Monitor Settings"
326
  msgstr ""
327
 
328
+ #: modules/404s/fofs-settings.php:17 modules/titles/titles.php:24
329
+ msgid "Settings"
330
  msgstr ""
331
 
332
+ #: modules/404s/fofs-settings.php:37
333
+ msgid "Continue monitoring for new 404 errors"
334
  msgstr ""
335
 
336
+ #: modules/404s/fofs-settings.php:37
337
+ msgid "Monitoring Settings"
338
  msgstr ""
339
 
340
+ #: modules/404s/fofs-settings.php:39
341
+ msgid "Only log these types of 404 errors:"
342
  msgstr ""
343
 
344
+ #: modules/404s/fofs-settings.php:40
345
+ msgid "404s generated by search engine spiders"
346
+ msgstr ""
 
 
347
 
348
+ #: modules/404s/fofs-settings.php:41
349
+ msgid "404s with referring URLs"
350
+ msgstr ""
 
 
351
 
352
+ #: modules/404s/fofs-settings.php:42
353
+ msgid "Log Restrictions"
354
+ msgstr ""
 
 
 
 
 
 
355
 
356
+ #: modules/404s/fofs-settings.php:43
357
+ msgid "Maximum Log Entries"
358
+ msgstr ""
 
 
 
359
 
360
+ #: modules/404s/fofs-settings.php:44
361
+ msgid "URLs to Ignore"
362
  msgstr ""
363
 
364
+ #: modules/404s/fofs-settings.php:44
365
+ msgid "(Use * as wildcard)"
366
  msgstr ""
367
 
368
+ #: modules/slugs/slugs.php:12
369
+ msgid "Slug Optimizer"
370
  msgstr ""
371
 
372
+ #: modules/slugs/slugs.php:16
373
+ msgid "Words to Remove"
374
  msgstr ""
375
 
376
+ #: modules/settings/settings-data.php:16
377
+ msgid "Settings Data Manager"
 
378
  msgstr ""
379
 
380
+ #: modules/settings/settings-data.php:17
381
+ msgid "Manage Settings Data"
382
  msgstr ""
383
 
384
+ #: modules/settings/settings-data.php:21
385
+ msgid "Import"
386
  msgstr ""
387
 
388
+ #: modules/settings/settings-data.php:22
389
+ msgid "Export"
390
  msgstr ""
391
 
392
+ #: modules/settings/settings-data.php:23 modules/class.su-module.php:1884
393
+ msgid "Reset"
394
  msgstr ""
395
 
396
+ #: modules/settings/settings-data.php:82
397
+ msgid "Settings successfully imported."
398
  msgstr ""
399
 
400
+ #: modules/settings/settings-data.php:84
401
+ msgid ""
402
+ "The uploaded file is not in the proper format. Settings could not be "
403
+ "imported."
404
  msgstr ""
405
 
406
+ #: modules/settings/settings-data.php:86
407
+ msgid "The settings file could not be uploaded successfully."
408
  msgstr ""
409
 
410
+ #: modules/settings/settings-data.php:89
411
+ msgid ""
412
+ "Settings could not be imported because no settings file was selected. Please "
413
+ "click the &#8220;Browse&#8221; button and select a file to import."
414
  msgstr ""
415
 
416
+ #: modules/settings/settings-data.php:134
417
+ msgid ""
418
+ "The uploaded file is not in the proper format. Links could not be imported."
419
  msgstr ""
420
 
421
+ #: modules/settings/settings-data.php:173
422
+ msgid "Links successfully imported."
423
  msgstr ""
424
 
425
+ #: modules/settings/settings-data.php:176
426
+ msgid "The CSV file could not be uploaded successfully."
427
  msgstr ""
428
 
429
+ #: modules/settings/settings-data.php:179
430
+ msgid ""
431
+ "Links could not be imported because no CSV file was selected. Please click "
432
+ "the &#8220;Browse&#8221; button and select a file to import."
433
  msgstr ""
434
 
435
+ #: modules/settings/settings-data.php:189
436
+ msgid "Import SEO Ultimate Settings File"
437
  msgstr ""
438
 
439
+ #: modules/settings/settings-data.php:191
440
+ msgid ""
441
+ "You can use this form to upload and import an SEO Ultimate settings file "
442
+ "stored on your computer. (These files can be created using the Export tool.) "
443
+ "Note that importing a file will overwrite your existing settings with those "
444
+ "in the file."
445
  msgstr ""
446
 
447
+ #: modules/settings/settings-data.php:195
448
+ msgid ""
449
+ "Are you sure you want to import this settings file? This will overwrite your "
450
+ "current settings and cannot be undone."
451
  msgstr ""
452
 
453
+ #: modules/settings/settings-data.php:196
454
+ msgid "Import Settings File"
455
  msgstr ""
456
 
457
+ #: modules/settings/settings-data.php:202
458
+ msgid "Import Deeplink Juggernaut CSV File"
459
  msgstr ""
460
 
461
+ #: modules/settings/settings-data.php:204
462
+ msgid ""
463
+ "You can use this form to upload and import a Deeplink Juggernaut CSV file "
464
+ "stored on your computer. (These files can be created using the Export tool.) "
465
+ "Note that importing a file will overwrite your existing links with those in "
466
+ "the file."
467
  msgstr ""
468
 
469
+ #: modules/settings/settings-data.php:208
470
+ msgid ""
471
+ "Are you sure you want to import this CSV file? This will overwrite your "
472
+ "current Deeplink Juggernaut links and cannot be undone."
473
  msgstr ""
474
 
475
+ #: modules/settings/settings-data.php:209
476
+ msgid "Import CSV File"
477
  msgstr ""
478
 
479
+ #: modules/settings/settings-data.php:224
480
+ msgid "Import from Other Plugins"
481
  msgstr ""
482
 
483
+ #: modules/settings/settings-data.php:226
484
+ msgid ""
485
+ "You can import settings and data from these plugins. Clicking a plugin&#8217;"
486
+ "s name will take you to the importer page, where you can customize "
487
+ "parameters and start the import."
488
  msgstr ""
489
 
490
+ #: modules/settings/settings-data.php:246
491
+ msgid "Export SEO Ultimate Settings File"
492
  msgstr ""
493
 
494
+ #: modules/settings/settings-data.php:248
495
+ msgid ""
496
+ "You can use this export tool to download an SEO Ultimate settings file to "
497
+ "your computer."
498
  msgstr ""
499
 
500
+ #: modules/settings/settings-data.php:250
501
+ msgid ""
502
+ "A settings file includes the data of every checkbox and textbox of every "
503
+ "installed module. It does NOT include site-specific data like logged 404s or "
504
+ "post/page title/meta data (this data would be included in a standard "
505
+ "database backup, however)."
506
  msgstr ""
507
 
508
+ #: modules/settings/settings-data.php:253
509
+ msgid "Download Settings File"
510
  msgstr ""
511
 
512
+ #: modules/settings/settings-data.php:258
513
+ msgid "Export Deeplink Juggernaut CSV File"
 
 
 
 
514
  msgstr ""
515
 
516
+ #: modules/settings/settings-data.php:260
517
  msgid ""
518
+ "You can use this export tool to download a CSV file (comma-separated values "
519
+ "file) that contains your Deeplink Juggernaut links. Once you download this "
520
+ "file to your computer, you can edit it using your favorite spreadsheet "
521
+ "program. When you&#8217;re done editing, you can re-upload the file using "
522
+ "the Import tool."
 
523
  msgstr ""
524
 
525
+ #: modules/settings/settings-data.php:263
526
+ msgid "Download CSV File"
527
  msgstr ""
528
 
529
+ #: modules/settings/settings-data.php:270
530
+ msgid "All settings have been erased and defaults have been restored."
531
  msgstr ""
532
 
533
+ #: modules/settings/settings-data.php:272
534
+ msgid ""
535
+ "You can erase all your SEO Ultimate settings and restore them to &#8220;"
536
+ "factory defaults&#8221; by clicking the button below."
537
  msgstr ""
538
 
539
+ #: modules/settings/settings-data.php:275
540
+ msgid ""
541
+ "Are you sure you want to erase all module settings? This cannot be undone."
542
  msgstr ""
543
 
544
+ #: modules/settings/settings-data.php:276
545
+ msgid "Restore Default Settings"
546
  msgstr ""
547
 
548
+ #: modules/settings/settings.php:12
549
+ msgid "Plugin Settings"
550
  msgstr ""
551
 
552
+ #: modules/settings/settings.php:13
553
+ msgid "SEO Ultimate Plugin Settings"
554
  msgstr ""
555
 
556
+ #: modules/settings/install.php:18
557
+ msgid "Upgrade/Downgrade/Reinstall"
558
  msgstr ""
559
 
560
+ #: modules/settings/install.php:19
561
+ msgid "Installer"
562
  msgstr ""
563
 
564
+ #: modules/settings/install.php:23 modules/settings/install.php:48
565
+ msgid "Upgrade"
566
  msgstr ""
567
 
568
+ #: modules/settings/install.php:24 modules/settings/install.php:71
569
+ msgid "Downgrade"
570
  msgstr ""
571
 
572
+ #: modules/settings/install.php:25 modules/settings/install.php:86
573
+ msgid "Reinstall"
574
  msgstr ""
575
 
576
+ #: modules/settings/install.php:42
577
  msgid ""
578
+ "From the list below, select the version to which you would like to upgrade. "
579
+ "Then click the &#8220;Upgrade&#8221; button at the bottom of the screen."
580
  msgstr ""
581
 
582
+ #: modules/settings/install.php:51
583
+ msgid "You are already running the latest version."
584
  msgstr ""
585
 
586
+ #: modules/settings/install.php:53
587
+ msgid ""
588
+ "There was an error retrieving the list of available versions. Please try "
589
+ "again later. You can also upgrade to the latest version of SEO Ultimate "
590
+ "using the WordPress plugin upgrader."
591
  msgstr ""
592
 
593
+ #: modules/settings/install.php:62
594
+ msgid ""
595
+ "Downgrading is provided as a convenience only and is not officially "
596
+ "supported. Although unlikely, you may lose data in the downgrading process. "
597
+ "It is your responsibility to backup your database before proceeding."
598
  msgstr ""
599
 
600
+ #: modules/settings/install.php:65
601
  msgid ""
602
+ "From the list below, select the version to which you would like to "
603
+ "downgrade. Then click the &#8220;Downgrade&#8221; button at the bottom of "
604
+ "the screen."
605
  msgstr ""
606
 
607
+ #: modules/settings/install.php:74
608
+ msgid ""
609
+ "Downgrading to versions earlier than %s is not supported because doing so "
610
+ "will result in data loss."
611
  msgstr ""
612
 
613
+ #: modules/settings/install.php:76
614
+ msgid ""
615
+ "There was an error retrieving the list of available versions. Please try "
616
+ "again later."
617
  msgstr ""
618
 
619
+ #: modules/settings/install.php:81
620
+ msgid ""
621
+ "To download and install a fresh copy of the SEO Ultimate version you are "
622
+ "currently using, click the &#8220;Reinstall&#8221; button below."
623
  msgstr ""
624
 
625
+ #: modules/settings/install.php:108
626
+ msgid "Your Current Version"
627
  msgstr ""
628
 
629
+ #: modules/settings/install.php:110
630
+ msgid "Latest Version"
631
  msgstr ""
632
 
633
+ #: modules/settings/install.php:130
634
+ msgid ""
635
+ "You do not have sufficient permissions to upgrade/downgrade plugins for this "
636
+ "blog."
637
  msgstr ""
638
 
639
+ #: modules/settings/install.php:140
640
+ msgid "Downgrade to SEO Ultimate %s"
641
  msgstr ""
642
 
643
+ #: modules/settings/install.php:143
644
+ msgid "Reinstall SEO Ultimate %s"
645
  msgstr ""
646
 
647
+ #: modules/settings/install.php:146
648
+ msgid "Upgrade to SEO Ultimate %s"
649
  msgstr ""
650
 
651
+ #: modules/settings/global-settings.php:18
652
+ msgid "Global Settings"
653
  msgstr ""
654
 
655
+ #: modules/settings/global-settings.php:40
656
+ msgid "Enable nofollow&#8217;d attribution link"
657
  msgstr ""
658
 
659
+ #: modules/settings/global-settings.php:41
660
+ msgid "Enable attribution link CSS styling"
661
  msgstr ""
662
 
663
+ #: modules/settings/global-settings.php:42
664
+ msgid "Notify me about unnecessary active plugins"
665
  msgstr ""
666
 
667
+ #: modules/settings/global-settings.php:43
668
+ msgid "Insert comments around HTML code insertions"
669
  msgstr ""
670
 
671
+ #: modules/settings/uninstall.php:17
672
+ msgid "Uninstaller"
673
  msgstr ""
674
 
675
+ #: modules/settings/uninstall.php:27
676
+ msgid ""
677
+ "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
678
+ "files."
679
  msgstr ""
680
 
681
+ #: modules/settings/uninstall.php:30
682
+ msgid ""
683
+ "Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
684
+ "your SEO Ultimate settings and cannot be undone."
685
  msgstr ""
686
 
687
+ #: modules/settings/uninstall.php:31
688
+ msgid "Uninstall Now"
689
  msgstr ""
690
 
691
+ #: modules/settings/uninstall.php:35 modules/settings/uninstall.php:42
692
+ msgid "Uninstall SEO Ultimate"
693
  msgstr ""
694
 
695
+ #: modules/settings/uninstall.php:46
696
+ msgid "Deleted settings."
697
  msgstr ""
698
 
699
+ #: modules/settings/uninstall.php:53
700
+ msgid "An error occurred while deleting files."
701
  msgstr ""
702
 
703
+ #: modules/settings/uninstall.php:55
704
+ msgid "Deleted files."
705
  msgstr ""
706
 
707
+ #: modules/settings/uninstall.php:56
708
+ msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
709
  msgstr ""
710
 
711
+ #: modules/modules/modules.php:12
712
+ msgid "Module Manager"
713
  msgstr ""
714
 
715
+ #: modules/modules/modules.php:13
716
+ msgid "Modules"
 
 
 
 
717
  msgstr ""
718
 
719
+ #: modules/modules/modules.php:37
720
+ msgid ""
721
+ "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
722
+ "&#8221; By default, most of these modules are listed in the &#8220;"
723
+ "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
724
+ "you can view documentation by clicking the tabs in the upper-right-hand "
725
+ "corner of your administration screen."
726
  msgstr ""
727
 
728
+ #: modules/modules/modules.php:39
729
+ msgid ""
730
+ "The Module Manager lets you disable or hide modules you don&#8217;t use. "
731
+ "You can also silence modules from displaying bubble alerts on the menu."
732
  msgstr ""
733
 
734
+ #: modules/modules/modules.php:45
735
+ msgid "Status"
736
  msgstr ""
737
 
738
+ #: modules/modules/modules.php:46
739
+ msgid "Module"
740
  msgstr ""
741
 
742
+ #: modules/modules/modules.php:59
743
+ msgid "Enabled"
744
  msgstr ""
745
 
746
+ #: modules/modules/modules.php:60
747
+ msgid "Silenced"
748
  msgstr ""
749
 
750
+ #: modules/modules/modules.php:61
751
+ msgid "Hidden"
752
  msgstr ""
753
 
754
+ #: modules/modules/modules.php:62
755
+ msgid "Disabled"
 
 
 
 
756
  msgstr ""
757
 
758
+ #: modules/more-links/more-links.php:12
759
+ msgid "More Link Customizer"
760
  msgstr ""
761
 
762
+ #: modules/more-links/more-links.php:27
763
+ msgid "Default More Link Text"
764
  msgstr ""
765
 
766
+ #: modules/more-links/more-links.php:48
767
+ msgid "More Link Text:"
768
  msgstr ""
769
 
770
+ #: modules/import-aiosp/import-aiosp.php:12
771
+ msgid "Import from All in One SEO Pack"
772
  msgstr ""
773
 
774
+ #: modules/import-aiosp/import-aiosp.php:13
775
+ msgid "AIOSP Import"
776
  msgstr ""
777
 
778
+ #: modules/import-aiosp/import-aiosp.php:15
779
+ msgid "All in One SEO Pack"
780
  msgstr ""
781
 
782
+ #: modules/import-aiosp/import-aiosp.php:16
783
+ msgid "AIOSP"
784
  msgstr ""
785
 
786
+ #: modules/import-aiosp/import-aiosp.php:17
787
+ msgid "Import post data (custom title tags and meta tags)."
788
  msgstr ""
789
 
790
+ #: modules/import-aiosp/import-aiosp.php:21
791
  msgid ""
792
+ "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
793
+ "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
794
+ "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
795
+ "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
796
+ "to be currently installed or activated for the import to take place."
797
  msgstr ""
798
 
799
+ #: modules/import-aiosp/import-aiosp.php:23
800
  msgid ""
801
+ "The import tool can only move over data from AIOSP version 1.6 or above. If "
802
+ "you use an older version of AIOSP, you should update to the latest version "
803
+ "first and run AIOSP&#8217;s upgrade process."
804
  msgstr ""
805
 
806
+ #: modules/sharing-buttons/sharing-buttons.php:12
807
+ msgid "Sharing Facilitator"
808
  msgstr ""
809
 
810
+ #: modules/sharing-buttons/sharing-buttons.php:22
811
+ msgid "Bookmark and Share"
812
  msgstr ""
813
 
814
+ #: modules/sharing-buttons/sharing-buttons.php:28
815
+ msgid "Providers"
816
  msgstr ""
817
 
818
+ #: modules/sharing-buttons/sharing-buttons.php:34
819
+ msgid "Which provider would you like to use for your sharing buttons?"
820
  msgstr ""
821
 
822
+ #: modules/sharing-buttons/sharing-buttons.php:36
823
+ msgid "None; disable sharing buttons"
824
  msgstr ""
825
 
826
+ #: modules/sharing-buttons/sharing-buttons.php:37
827
+ msgid "Use the ShareThis button"
828
  msgstr ""
829
 
830
+ #: modules/sharing-buttons/sharing-buttons.php:38
831
+ msgid "Use the AddThis button"
 
 
832
  msgstr ""
833
 
834
+ #: modules/autolinks/content-autolinks.php:16
835
+ msgid "Content Deeplink Juggernaut"
836
  msgstr ""
837
 
838
+ #: modules/autolinks/content-autolinks.php:17
839
+ msgid "Content Links"
840
  msgstr ""
841
 
842
+ #: modules/autolinks/content-autolinks.php:100
843
+ msgid ""
844
+ "The Content Links section of Deeplink Juggernaut lets you automatically link "
845
+ "a certain word or phrase in your post/page content to a URL you specify."
846
  msgstr ""
847
 
848
+ #: modules/autolinks/content-autolinks.php:136
849
+ msgid "Edit Existing Links"
850
  msgstr ""
851
 
852
+ #: modules/autolinks/content-autolinks.php:140
853
+ msgid "Add a New Link"
854
  msgstr ""
855
 
856
+ #: modules/autolinks/content-autolinks.php:148
857
+ msgid "Anchor Text"
 
858
  msgstr ""
859
 
860
+ #: modules/autolinks/content-autolinks.php:149
861
+ msgid "Destination Type"
862
  msgstr ""
863
 
864
+ #: modules/autolinks/content-autolinks.php:150
865
+ msgid "Destination"
866
  msgstr ""
867
 
868
+ #: modules/autolinks/content-autolinks.php:151
869
+ msgid "Title Attribute"
870
  msgstr ""
871
 
872
+ #: modules/autolinks/content-autolinks.php:152
873
+ msgid "Options"
 
874
  msgstr ""
875
 
876
+ #: modules/autolinks/content-autolinks.php:154
877
+ msgid "Delete"
878
  msgstr ""
879
 
880
+ #: modules/autolinks/content-autolinks.php:196
881
+ msgid "Custom"
882
  msgstr ""
883
 
884
+ #: modules/autolinks/content-autolinks.php:196
885
+ #: modules/internal-link-aliases/internal-link-aliases.php:46
886
+ msgid "URL"
887
  msgstr ""
888
 
889
+ #: modules/autolinks/content-autolinks.php:197
890
+ msgid "Content Items"
 
 
891
  msgstr ""
892
 
893
+ #: modules/autolinks/content-autolinks.php:204 modules/noindex/noindex.php:54
894
+ msgid "Nofollow"
895
  msgstr ""
896
 
897
+ #: modules/autolinks/content-autolinks.php:205
898
+ msgid "New window"
899
  msgstr ""
900
 
901
+ #: modules/autolinks/content-autolinks.php:269
902
+ msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
903
  msgstr ""
904
 
905
+ #: modules/autolinks/content-autolinks.php:270
906
+ msgid "Don&#8217;t add autolinks to anchor texts found in this post."
 
907
  msgstr ""
908
 
909
+ #: modules/autolinks/content-autolinks.php:270
910
+ msgid "Autolink Exclusion:"
911
  msgstr ""
912
 
913
+ #: modules/autolinks/content-autolinks.php:275
914
+ msgid ""
915
+ "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
916
+ "into this box, Deeplink Juggernaut will search for that anchor in all your "
917
+ "other posts and link it to this post. For example, if the post you&#8217;re "
918
+ "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
919
+ "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
920
+ "Deeplink Juggernaut will automatically build internal links to this post "
921
+ "with that anchor text (assuming other posts contain that text)."
922
  msgstr ""
923
 
924
+ #: modules/autolinks/autolinks.php:11
925
+ msgid "Deeplink Juggernaut"
926
  msgstr ""
927
 
928
+ #: modules/autolinks/content-autolinks-settings.php:16
929
+ msgid "Content Deeplink Juggernaut Settings"
930
  msgstr ""
931
 
932
+ #: modules/autolinks/content-autolinks-settings.php:17
933
+ msgid "Content Link Settings"
934
  msgstr ""
935
 
936
+ #: modules/autolinks/content-autolinks-settings.php:21
937
+ msgid "Allow posts to link to themselves."
938
  msgstr ""
939
 
940
+ #: modules/autolinks/content-autolinks-settings.php:22
941
+ msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
 
942
  msgstr ""
943
 
944
+ #: modules/autolinks/content-autolinks-settings.php:23
945
+ msgid ""
946
+ "Don&#8217;t link the same anchor text any more than %d times per post/page/"
947
+ "etc."
948
  msgstr ""
949
 
950
+ #: modules/noindex/noindex.php:12
951
+ msgid "Noindex Manager"
 
952
  msgstr ""
953
 
954
+ #: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
955
+ msgid "Noindex"
956
  msgstr ""
957
 
958
+ #: modules/noindex/noindex.php:43 modules/meta/meta-keywords.php:32
959
+ msgid "Default Values"
960
  msgstr ""
961
 
962
+ #: modules/noindex/noindex.php:65
963
+ msgid ""
964
+ "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
965
+ "block indexing of the entire site, regardless of which options are set below."
966
  msgstr ""
967
 
968
+ #: modules/noindex/noindex.php:68
969
+ msgid "Prevent indexing of..."
970
  msgstr ""
971
 
972
+ #: modules/noindex/noindex.php:69
973
+ msgid "Administration back-end pages"
974
  msgstr ""
975
 
976
+ #: modules/noindex/noindex.php:70
977
+ msgid "Author archives"
978
  msgstr ""
979
 
980
+ #: modules/noindex/noindex.php:71
981
+ msgid "Blog search pages"
982
  msgstr ""
983
 
984
+ #: modules/noindex/noindex.php:72
985
+ msgid "Category archives"
986
  msgstr ""
987
 
988
+ #: modules/noindex/noindex.php:73
989
+ msgid "Comment feeds"
990
  msgstr ""
991
 
992
+ #: modules/noindex/noindex.php:74
993
+ msgid "Comment subpages"
994
  msgstr ""
995
 
996
+ #: modules/noindex/noindex.php:75
997
+ msgid "Date-based archives"
998
  msgstr ""
999
 
1000
+ #: modules/noindex/noindex.php:76
1001
+ msgid "Subpages of the homepage"
1002
  msgstr ""
1003
 
1004
+ #: modules/noindex/noindex.php:77
1005
+ msgid "Tag archives"
1006
  msgstr ""
1007
 
1008
+ #: modules/noindex/noindex.php:78
1009
+ msgid "User login/registration pages"
1010
  msgstr ""
1011
 
1012
+ #: modules/noindex/noindex.php:141
1013
+ msgid "Noindex: Tell search engines not to index this webpage."
1014
  msgstr ""
1015
 
1016
+ #: modules/noindex/noindex.php:142
1017
+ msgid "Nofollow: Tell search engines not to spider links on this webpage."
 
 
 
 
 
1018
  msgstr ""
1019
 
1020
+ #: modules/noindex/noindex.php:143
1021
+ msgid "Meta Robots Tag:"
1022
+ msgstr ""
1023
+
1024
+ #: modules/class.su-module.php:368
1025
  msgid ""
1026
+ "(Note: This translated documentation was designed for an older version of "
1027
+ "SEO Ultimate and may be outdated.)"
1028
  msgstr ""
1029
 
1030
+ #: modules/class.su-module.php:971
1031
+ msgid "%s %s|Dropdown Title"
1032
  msgstr ""
1033
 
1034
+ #: modules/class.su-module.php:999
1035
+ msgid "%1$s | %2$s %3$s by %4$s"
1036
  msgstr ""
1037
 
1038
+ #: modules/class.su-module.php:1056
1039
+ msgid "Name"
1040
  msgstr ""
1041
 
1042
+ #: modules/class.su-module.php:1067
1043
+ msgid "Your site currently doesn&#8217;t have any public items of this type."
1044
  msgstr ""
1045
 
1046
+ #: modules/class.su-module.php:1150
1047
+ msgid "&laquo;"
1048
  msgstr ""
1049
 
1050
+ #: modules/class.su-module.php:1151
1051
+ msgid "&raquo;"
1052
  msgstr ""
1053
 
1054
+ #: modules/class.su-module.php:1158
1055
+ msgid "Displaying %s&#8211;%s of %s"
1056
  msgstr ""
1057
 
1058
+ #: modules/class.su-module.php:1172
1059
+ msgid "ID"
 
 
1060
  msgstr ""
1061
 
1062
+ #: modules/class.su-module.php:1205
1063
+ msgid "View"
1064
+ msgstr ""
1065
+
1066
+ #: modules/class.su-module.php:1205
1067
+ msgid "Edit"
1068
+ msgstr ""
1069
+
1070
+ #: modules/class.su-module.php:1360
1071
+ msgid "Settings updated."
1072
+ msgstr ""
1073
+
1074
+ #: modules/class.su-module.php:1381
1075
+ msgid "Save Changes"
1076
+ msgstr ""
1077
+
1078
+ #: modules/class.su-module.php:1869
1079
  msgid ""
1080
+ "Are you sure you want to replace the textbox contents with this default "
1081
+ "value?"
 
1082
  msgstr ""
1083
 
1084
+ #: modules/meta/webmaster-verify.php:12
1085
+ msgid "Webmaster Verification Assistant"
1086
  msgstr ""
1087
 
1088
+ #: modules/meta/webmaster-verify.php:13
1089
+ msgid "W.M. Verification"
1090
  msgstr ""
1091
 
1092
+ #: modules/meta/webmaster-verify.php:45
1093
+ msgid "Google Webmaster Tools"
1094
  msgstr ""
1095
 
1096
+ #: modules/meta/webmaster-verify.php:46
1097
+ msgid "Yahoo! Site Explorer"
1098
  msgstr ""
1099
 
1100
+ #: modules/meta/webmaster-verify.php:47
1101
+ msgid "Bing Webmaster Center"
 
 
1102
  msgstr ""
1103
 
1104
+ #: modules/meta/meta-robots.php:12
1105
+ msgid "Meta Robot Tags Editor"
1106
  msgstr ""
1107
 
1108
+ #: modules/meta/meta-robots.php:13
1109
+ msgid "Meta Robot Tags"
1110
+ msgstr ""
1111
+
1112
+ #: modules/meta/meta-robots.php:21
1113
+ msgid "Global"
1114
+ msgstr ""
1115
+
1116
+ #: modules/meta/meta-robots.php:26
1117
+ msgid "Spider Instructions"
1118
+ msgstr ""
1119
+
1120
+ #: modules/meta/meta-robots.php:28
1121
  msgid ""
1122
+ "Don&#8217t use this site&#8217s Open Directory description in search results."
 
1123
  msgstr ""
1124
 
1125
+ #: modules/meta/meta-robots.php:29
1126
  msgid ""
1127
+ "Don&#8217t use this site&#8217s Yahoo! Directory description in search "
1128
+ "results."
1129
  msgstr ""
1130
 
1131
+ #: modules/meta/meta-robots.php:30
1132
+ msgid "Don&#8217t cache or archive this site."
1133
  msgstr ""
1134
 
1135
+ #: modules/meta/meta-descriptions.php:12
1136
+ msgid "Meta Description Editor"
1137
  msgstr ""
1138
 
1139
+ #: modules/meta/meta-descriptions.php:13
1140
+ msgid "Meta Descriptions"
1141
  msgstr ""
1142
 
1143
+ #: modules/meta/meta-descriptions.php:24 modules/titles/titles.php:23
1144
+ msgid "Default Formats"
1145
  msgstr ""
1146
 
1147
+ #: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:33
1148
+ msgid "Blog Homepage"
1149
  msgstr ""
1150
 
1151
+ #: modules/meta/meta-descriptions.php:31
1152
+ msgid "Meta Description"
1153
  msgstr ""
1154
 
1155
+ #: modules/meta/meta-descriptions.php:46
1156
+ msgid "Post Description Format"
1157
  msgstr ""
1158
 
1159
+ #: modules/meta/meta-descriptions.php:53
1160
+ msgid "Blog Homepage Meta Description"
 
 
1161
  msgstr ""
1162
 
1163
+ #: modules/meta/meta-descriptions.php:55
1164
+ msgid "Use this blog&#8217s tagline as the default homepage description."
1165
  msgstr ""
1166
 
1167
+ #: modules/meta/meta-descriptions.php:56
1168
+ msgid "Default Value"
 
 
1169
  msgstr ""
1170
 
1171
+ #: modules/meta/meta-descriptions.php:108
1172
+ msgid "Meta Description:"
1173
+ msgstr ""
1174
+
1175
+ #: modules/meta/meta-descriptions.php:111
1176
+ msgid "You&#8217;ve entered %s characters. Most search engines use up to 160."
1177
+ msgstr ""
1178
+
1179
+ #: modules/meta/meta-descriptions.php:119
1180
  msgid ""
1181
+ "<strong>Description</strong> &mdash; The value of the meta description tag. "
1182
+ "The description will often appear underneath the title in search engine "
1183
+ "results. Writing an accurate, attention-grabbing description for every post "
1184
+ "is important to ensuring a good search results clickthrough rate."
1185
  msgstr ""
1186
 
1187
+ #: modules/meta/meta-keywords.php:12
1188
+ msgid "Meta Keywords Editor"
1189
  msgstr ""
1190
 
1191
+ #: modules/meta/meta-keywords.php:13 modules/meta/meta-keywords.php:39
1192
+ msgid "Meta Keywords"
1193
  msgstr ""
1194
 
1195
+ #: modules/meta/meta-keywords.php:55
1196
+ msgid "The %d most commonly-used words"
1197
+ msgstr ""
1198
+
1199
+ #: modules/meta/meta-keywords.php:68
1200
+ msgid "Sitewide Keywords"
1201
+ msgstr ""
1202
+
1203
+ #: modules/meta/meta-keywords.php:68
1204
+ msgid "(Separate with commas)"
1205
+ msgstr ""
1206
+
1207
+ #: modules/meta/meta-keywords.php:75
1208
+ msgid "Blog Homepage Meta Keywords"
1209
+ msgstr ""
1210
+
1211
+ #: modules/meta/meta-keywords.php:152
1212
+ msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
1213
+ msgstr ""
1214
+
1215
+ #: modules/meta/meta-keywords.php:157
1216
  msgid ""
1217
+ "<strong>Keywords</strong> &mdash; The value of the meta keywords tag. The "
1218
+ "keywords list gives search engines a hint as to what this post/page is "
1219
+ "about. Be sure to separate keywords with commas, like so: <samp>one,two,"
1220
+ "three</samp>."
1221
  msgstr ""
1222
 
1223
+ #: modules/class.su-importmodule.php:49
1224
+ msgid "Import Post Fields"
1225
  msgstr ""
1226
 
1227
+ #: modules/class.su-importmodule.php:50
1228
  msgid ""
1229
+ "Post fields store the SEO data for your posts/pages (i.e. your custom title "
1230
+ "tags, meta descriptions, and meta keywords). If you provided custom titles/"
1231
+ "descriptions/keywords to %s, this importer can move that data over to SEO "
1232
+ "Ultimate."
1233
  msgstr ""
1234
 
1235
+ #: modules/class.su-importmodule.php:53
1236
+ msgid "Conflict Resolution Mode"
1237
+ msgstr ""
1238
+
1239
+ #: modules/class.su-importmodule.php:54
1240
  msgid ""
1241
+ "What should the import tool do if it tries to move over a post&#8217;s %s "
1242
+ "data, but different data already exists in the corresponding SEO Ultimate "
1243
+ "fields?"
1244
  msgstr ""
1245
 
1246
+ #: modules/class.su-importmodule.php:56
1247
+ msgid "Skip that post and leave all data as-is (default)."
1248
  msgstr ""
1249
 
1250
+ #: modules/class.su-importmodule.php:57
1251
+ msgid "Delete the SEO Ultimate data and replace it with the %s data."
1252
  msgstr ""
1253
 
1254
+ #: modules/class.su-importmodule.php:58
1255
+ msgid "Keep the SEO Ultimate data and delete the %s data."
 
 
 
 
1256
  msgstr ""
1257
 
1258
+ #: modules/class.su-importmodule.php:61
1259
+ msgid "Deletion Preference"
1260
+ msgstr ""
1261
+
1262
+ #: modules/class.su-importmodule.php:62
1263
  msgid ""
1264
+ "When the migration tool successfully copies a post&#8217;s %1$s data over to "
1265
+ "SEO Ultimate, what should it do with the old %1$s data?"
1266
  msgstr ""
1267
 
1268
+ #: modules/class.su-importmodule.php:64
1269
+ msgid "Delete the %s data."
1270
  msgstr ""
1271
 
1272
+ #: modules/class.su-importmodule.php:65
1273
+ msgid "Leave behind the duplicate %s data (default)."
1274
  msgstr ""
1275
 
1276
+ #: modules/class.su-importmodule.php:72
1277
+ msgid "Import Now"
1278
+ msgstr ""
1279
+
1280
+ #: modules/class.su-importmodule.php:75
1281
  msgid ""
1282
+ "The import cannot be undone. It is your responsibility to <a href=\"%s\" "
1283
+ "target=\"_blank\">backup your database</a> before proceeding!"
 
1284
  msgstr ""
1285
 
1286
+ #: modules/class.su-importmodule.php:84
1287
+ msgid "Import complete."
1288
  msgstr ""
1289
 
1290
+ #: modules/class.su-importmodule.php:90
1291
+ msgid "Return to import page"
 
 
1292
  msgstr ""
1293
 
1294
+ #: modules/class.su-importmodule.php:93
1295
+ msgid "Return to settings page"
 
 
 
 
1296
  msgstr ""
1297
 
1298
+ #: modules/class.su-importmodule.php:96
1299
+ msgid "Return to SEO page"
1300
  msgstr ""
1301
 
1302
+ #: modules/class.su-importmodule.php:116
1303
+ msgid "Deactivated %s."
1304
  msgstr ""
1305
 
1306
+ #: modules/class.su-importmodule.php:174
1307
+ msgid "Imported a total of %d fields for one post/page/revision."
1308
+ msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
1309
+ msgstr[0] ""
1310
+ msgstr[1] ""
1311
+
1312
+ #: modules/class.su-importmodule.php:180
1313
+ msgid "Skipped one post with disabled %2$s data."
1314
+ msgid_plural "Skipped %1$d posts with disabled %2$s data."
1315
+ msgstr[0] ""
1316
+ msgstr[1] ""
1317
+
1318
+ #: modules/class.su-importmodule.php:186
1319
  msgid ""
1320
+ "Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
1321
+ "settings you chose."
1322
+ msgid_plural ""
1323
+ "Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
1324
+ "settings you chose."
1325
+ msgstr[0] ""
1326
+ msgstr[1] ""
1327
+
1328
+ #: modules/class.su-importmodule.php:192
1329
+ msgid "Deleted one %2$s field, as instructed by the settings you chose."
1330
+ msgid_plural ""
1331
+ "Deleted %1$d %2$s fields, as instructed by the settings you chose."
1332
+ msgstr[0] ""
1333
+ msgstr[1] ""
1334
+
1335
+ #: modules/sds-blog/sds-blog.php:12
1336
+ msgid "Whitepapers"
1337
  msgstr ""
1338
 
1339
+ #: modules/sds-blog/sds-blog.php:13
1340
+ msgid "SEO Design Solutions Whitepapers"
1341
  msgstr ""
1342
 
1343
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 5.4) #-#-#-#-#
1344
+ #. Author of the plugin/theme
1345
+ #: modules/sds-blog/sds-blog.php:49
1346
+ msgid "SEO Design Solutions"
1347
  msgstr ""
1348
 
1349
+ #: modules/sds-blog/sds-blog.php:50
1350
  msgid ""
1351
+ "The search engine optimization articles below are loaded from the website of "
1352
+ "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
1353
+ "an article&#8217;s title to read it."
1354
  msgstr ""
1355
 
1356
+ #: modules/internal-link-aliases/internal-link-aliases.php:20
1357
+ msgid "Link Mask Generator"
 
1358
  msgstr ""
1359
 
1360
+ #: modules/internal-link-aliases/internal-link-aliases.php:24
1361
+ msgid "Alias Directory"
1362
  msgstr ""
1363
 
1364
+ #: modules/internal-link-aliases/internal-link-aliases.php:43
1365
+ msgid "Link Masks"
1366
+ msgstr ""
1367
+
1368
+ #: modules/internal-link-aliases/internal-link-aliases.php:46
1369
+ msgid "Mask URL"
1370
+ msgstr ""
1371
+
1372
+ #: modules/internal-link-aliases/internal-link-aliases.php:66
1373
+ msgid ""
1374
+ "You can stop search engines from following a link by typing in a mask for "
1375
+ "its URL."
1376
+ msgstr ""
1377
+
1378
+ #: modules/internal-link-aliases/internal-link-aliases.php:122
1379
+ msgid "Added by Link Alias Generator (LAG) module"
1380
  msgstr ""
1381
 
1382
+ #: modules/internal-link-aliases/internal-link-aliases.php:133
1383
+ msgid "End LAG"
 
 
1384
  msgstr ""
1385
 
1386
+ #: modules/linkbox/linkbox.php:12
1387
+ msgid "Linkbox Inserter"
 
 
1388
  msgstr ""
1389
 
1390
+ #: modules/linkbox/linkbox.php:18
1391
+ msgid "Link to this post!"
1392
  msgstr ""
1393
 
1394
+ #: modules/linkbox/linkbox.php:45
1395
+ msgid "At the end of posts"
1396
  msgstr ""
1397
 
1398
+ #: modules/linkbox/linkbox.php:46
1399
+ msgid "At the end of pages"
1400
  msgstr ""
1401
 
1402
+ #: modules/linkbox/linkbox.php:47
1403
+ msgid "When called by the su_linkbox hook"
1404
  msgstr ""
1405
 
1406
+ #: modules/linkbox/linkbox.php:48
1407
+ msgid "Display linkboxes..."
1408
  msgstr ""
1409
 
1410
+ #: modules/linkbox/linkbox.php:49
1411
+ msgid "Linkbox HTML"
1412
  msgstr ""
1413
 
1414
+ #: modules/competition-queries/competition-queries.php:12
1415
+ msgid "Competition Researcher"
1416
  msgstr ""
1417
 
1418
+ #: modules/competition-queries/competition-queries.php:13
1419
+ msgid "Comp. Researcher"
1420
  msgstr ""
1421
 
1422
+ #: modules/competition-queries/competition-queries.php:17
1423
+ msgid ""
1424
+ "The Competition Researcher provides you with easy access to various search "
1425
+ "engine tools which you can use to research multiple search queries or URLs."
1426
  msgstr ""
1427
 
1428
+ #: modules/competition-queries/competition-queries.php:21
1429
+ msgid "Step 1: Choose Your Research Tool"
1430
  msgstr ""
1431
 
1432
+ #: modules/competition-queries/competition-queries.php:25
1433
+ msgid "Keywords"
1434
  msgstr ""
1435
 
1436
+ #: modules/competition-queries/competition-queries.php:25
1437
+ msgid "Normal Search"
1438
  msgstr ""
1439
 
1440
+ #: modules/competition-queries/competition-queries.php:25
1441
+ msgid "Find out how many pages contain the words in each query"
1442
  msgstr ""
1443
 
1444
+ #: modules/competition-queries/competition-queries.php:26
1445
+ msgid "Phrase Match"
1446
  msgstr ""
1447
 
1448
+ #: modules/competition-queries/competition-queries.php:26
1449
+ msgid ""
1450
+ "Find out how many &#8220;actual&#8221; pages are competing for each query"
1451
  msgstr ""
1452
 
1453
+ #: modules/competition-queries/competition-queries.php:27
1454
+ msgid "Allinanchor"
1455
  msgstr ""
1456
 
1457
+ #: modules/competition-queries/competition-queries.php:27
1458
+ msgid "Find out which sites have the most links for each query"
 
 
1459
  msgstr ""
1460
 
1461
+ #: modules/competition-queries/competition-queries.php:28
1462
+ msgid "Allintitle"
1463
  msgstr ""
1464
 
1465
+ #: modules/competition-queries/competition-queries.php:28
1466
  msgid ""
1467
+ "Find out which sites have the highest relevance in the title for each query"
 
 
1468
  msgstr ""
1469
 
1470
+ #: modules/competition-queries/competition-queries.php:29
1471
+ msgid "Allintext"
 
 
 
1472
  msgstr ""
1473
 
1474
+ #: modules/competition-queries/competition-queries.php:29
1475
+ msgid "Find out which sites have the most relevant content/text on their pages"
 
 
 
1476
  msgstr ""
1477
 
1478
+ #: modules/competition-queries/competition-queries.php:30
1479
+ msgid "Allinurl"
 
 
1480
  msgstr ""
1481
 
1482
+ #: modules/competition-queries/competition-queries.php:30
1483
  msgid ""
1484
+ "Find out which sites have the most relevant naming conventions for each "
1485
+ "keyword"
1486
  msgstr ""
1487
 
1488
+ #: modules/competition-queries/competition-queries.php:32
1489
+ msgid "URLs"
 
 
1490
  msgstr ""
1491
 
1492
+ #: modules/competition-queries/competition-queries.php:32
1493
+ msgid "Site"
1494
  msgstr ""
1495
 
1496
+ #: modules/competition-queries/competition-queries.php:32
1497
+ msgid "Find out how many pages are indexed for each domain"
1498
  msgstr ""
1499
 
1500
+ #: modules/competition-queries/competition-queries.php:33
1501
+ #: modules/competition-queries/competition-queries.php:38
1502
+ msgid "Inbound Links"
 
1503
  msgstr ""
1504
 
1505
+ #: modules/competition-queries/competition-queries.php:33
1506
+ msgid "Find out how many sites link to the domains"
1507
  msgstr ""
1508
 
1509
+ #: modules/competition-queries/competition-queries.php:34
1510
+ #: modules/competition-queries/competition-queries.php:38
1511
+ msgid "Outbound Links"
1512
  msgstr ""
1513
 
1514
+ #: modules/competition-queries/competition-queries.php:34
1515
+ msgid "Find out how many sites the domains link to"
1516
  msgstr ""
1517
 
1518
+ #: modules/competition-queries/competition-queries.php:56
1519
+ msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
1520
  msgstr ""
1521
 
1522
+ #: modules/competition-queries/competition-queries.php:58
1523
+ msgid "(Type in one per line)"
1524
  msgstr ""
1525
 
1526
+ #: modules/competition-queries/competition-queries.php:60
1527
+ msgid "Step 3: Set Options and Submit"
1528
  msgstr ""
1529
 
1530
+ #: modules/competition-queries/competition-queries.php:62
1531
+ #: modules/site-keyword-queries/site-keyword-queries.php:28
1532
+ msgid "Show 100 results per page"
1533
  msgstr ""
1534
 
1535
+ #: modules/competition-queries/competition-queries.php:64
1536
+ #: modules/site-keyword-queries/site-keyword-queries.php:30
1537
+ msgid "Use Google&#8217;s minimal mode"
1538
  msgstr ""
1539
 
1540
+ #: modules/competition-queries/competition-queries.php:70
1541
+ #: modules/site-keyword-queries/site-keyword-queries.php:33
1542
+ msgid "Submit"
1543
  msgstr ""
1544
 
1545
+ #: modules/titles/titles.php:12
1546
+ msgid "Title Tag Rewriter"
1547
  msgstr ""
1548
 
1549
+ #: modules/titles/titles.php:30
1550
+ msgid "Title Tag"
1551
  msgstr ""
1552
 
1553
+ #: modules/titles/titles.php:43
1554
  msgid ""
1555
+ "Convert lowercase category/tag names to title case when used in title tags."
 
1556
  msgstr ""
1557
 
1558
+ #: modules/titles/titles.php:43
1559
+ msgid "Title Tag Variables"
1560
  msgstr ""
1561
 
1562
+ #: modules/titles/titles.php:51
1563
+ msgid "{blog}"
1564
  msgstr ""
1565
 
1566
+ #: modules/titles/titles.php:52
1567
+ msgid "{post} | {blog}"
1568
  msgstr ""
1569
 
1570
+ #: modules/titles/titles.php:53
1571
+ msgid "{page} | {blog}"
1572
  msgstr ""
1573
 
1574
+ #: modules/titles/titles.php:54
1575
+ msgid "{category} | {blog}"
1576
  msgstr ""
1577
 
1578
+ #: modules/titles/titles.php:55
1579
+ msgid "{tag} | {blog}"
1580
  msgstr ""
1581
 
1582
+ #: modules/titles/titles.php:56
1583
+ msgid "Archives for {month} {day}, {year} | {blog}"
1584
  msgstr ""
1585
 
1586
+ #: modules/titles/titles.php:57
1587
+ msgid "Archives for {month} {year} | {blog}"
1588
  msgstr ""
1589
 
1590
+ #: modules/titles/titles.php:58
1591
+ msgid "Archives for {year} | {blog}"
1592
  msgstr ""
1593
 
1594
+ #: modules/titles/titles.php:59
1595
+ msgid "Posts by {author} | {blog}"
1596
  msgstr ""
1597
 
1598
+ #: modules/titles/titles.php:60
1599
+ msgid "Search Results for {query} | {blog}"
1600
  msgstr ""
1601
 
1602
+ #: modules/titles/titles.php:61
1603
+ msgid "404 Not Found | {blog}"
1604
  msgstr ""
1605
 
1606
+ #: modules/titles/titles.php:62
1607
+ msgid "{title} - Page {num}"
1608
  msgstr ""
1609
 
1610
+ #: modules/titles/titles.php:70
1611
+ msgid "Blog Homepage Title"
1612
  msgstr ""
1613
 
1614
+ #: modules/titles/titles.php:71
1615
+ msgid "Post Title Format"
1616
  msgstr ""
1617
 
1618
+ #: modules/titles/titles.php:72
1619
+ msgid "Page Title Format"
1620
  msgstr ""
1621
 
1622
+ #: modules/titles/titles.php:73
1623
+ msgid "Category Title Format"
1624
  msgstr ""
1625
 
1626
+ #: modules/titles/titles.php:74
1627
+ msgid "Tag Title Format"
1628
  msgstr ""
1629
 
1630
+ #: modules/titles/titles.php:75
1631
+ msgid "Day Archive Title Format"
1632
  msgstr ""
1633
 
1634
+ #: modules/titles/titles.php:76
1635
+ msgid "Month Archive Title Format"
1636
  msgstr ""
1637
 
1638
+ #: modules/titles/titles.php:77
1639
+ msgid "Year Archive Title Format"
1640
  msgstr ""
1641
 
1642
+ #: modules/titles/titles.php:78
1643
+ msgid "Author Archive Title Format"
1644
  msgstr ""
1645
 
1646
+ #: modules/titles/titles.php:79
1647
+ msgid "Search Title Format"
1648
  msgstr ""
1649
 
1650
+ #: modules/titles/titles.php:80
1651
+ msgid "404 Title Format"
1652
  msgstr ""
1653
 
1654
+ #: modules/titles/titles.php:81
1655
+ msgid "Pagination Title Format"
1656
  msgstr ""
1657
 
1658
+ #: modules/titles/titles.php:307
1659
+ msgid "Title Tag:"
1660
  msgstr ""
1661
 
1662
+ #: modules/titles/titles.php:312
1663
+ msgid ""
1664
+ "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
1665
+ "tag. The title appears in visitors&#8217; title bars and in search engine "
1666
+ "result titles. If this box is left blank, then the <a href=\"admin.php?"
1667
+ "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
1668
  msgstr ""
1669
 
1670
+ #: modules/user-code/user-code.php:12
1671
+ msgid "Code Inserter"
1672
  msgstr ""
1673
 
1674
+ #: modules/user-code/user-code.php:27
1675
+ msgid "Everywhere"
1676
  msgstr ""
1677
 
1678
+ #: modules/user-code/user-code.php:34
1679
+ msgid "&lt;head&gt; Tag"
 
1680
  msgstr ""
1681
 
1682
+ #: modules/user-code/user-code.php:35
1683
+ msgid "Before Item Content"
1684
  msgstr ""
1685
 
1686
+ #: modules/user-code/user-code.php:36
1687
+ msgid "After Item Content"
 
 
1688
  msgstr ""
1689
 
1690
+ #: modules/user-code/user-code.php:37
1691
+ msgid "Footer"
1692
  msgstr ""
1693
 
1694
+ #: modules/user-code/user-code.php:51
1695
+ msgid "Code Inserter module"
1696
  msgstr ""
1697
 
1698
  #: modules/rich-snippets/rich-snippets.php:12
1795
  msgid "Star Rating for Reviewed Item:"
1796
  msgstr ""
1797
 
1798
+ #: modules/site-keyword-queries/site-keyword-queries.php:12
1799
+ msgid "Internal Relevance Researcher"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1800
  msgstr ""
1801
 
1802
+ #: modules/site-keyword-queries/site-keyword-queries.php:13
1803
+ msgid "Int. Rel. Researcher"
1804
  msgstr ""
1805
 
1806
+ #: modules/site-keyword-queries/site-keyword-queries.php:21
1807
+ msgid "Step 1: Enter Keywords"
1808
  msgstr ""
1809
 
1810
+ #: modules/site-keyword-queries/site-keyword-queries.php:23
1811
+ msgid "(Type one keyword per line)"
1812
  msgstr ""
1813
 
1814
+ #: modules/site-keyword-queries/site-keyword-queries.php:25
1815
+ msgid "Step 2: Set Options and Submit"
1816
  msgstr ""
1817
 
1818
+ #: modules/site-keyword-queries/site-keyword-queries.php:27
1819
+ msgid "Put keywords in quotes"
1820
  msgstr ""
1821
 
1822
+ #: modules/files/files.php:14
1823
+ msgid "File Editor"
1824
  msgstr ""
1825
 
1826
+ #: modules/files/files.php:53
1827
  msgid ""
1828
+ "A .htaccess file exists, but it&#8217;s not writable. You can edit it here "
1829
+ "once the file permissions are corrected."
 
 
 
 
 
 
 
 
1830
  msgstr ""
1831
 
1832
+ #: modules/files/files.php:59
1833
  msgid ""
1834
+ "WordPress won&#8217;t be able to display your robots.txt file because the "
1835
+ "default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
1836
+ "structure</a> is in use."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1837
  msgstr ""
1838
 
1839
+ #: modules/files/files.php:66
1840
+ msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
1841
  msgstr ""
1842
 
1843
+ #: modules/files/files.php:70
1844
+ msgid "Enable this custom robots.txt file and disable the default file"
1845
  msgstr ""
1846
 
1847
+ #: modules/files/files.php:71
1848
+ msgid "Let other plugins add rules to my custom robots.txt file"
1849
  msgstr ""
1850
 
1851
+ #: modules/files/files.php:72
1852
+ msgid "robots.txt Settings"
1853
  msgstr ""
1854
 
1855
+ #: modules/files/files.php:75
1856
  msgid ""
1857
+ "Please realize that incorrectly editing your robots.txt file could block "
1858
+ "search engines from your site."
 
 
 
 
 
 
 
 
 
1859
  msgstr ""
1860
 
1861
+ #: modules/files/files.php:79
1862
+ msgid ".htaccess"
1863
  msgstr ""
1864
 
1865
+ #: modules/files/files.php:82
1866
+ msgid ""
1867
+ "Also, incorrectly editing your .htaccess file could disable your entire "
1868
+ "website. Edit with caution!"
1869
  msgstr ""
1870
 
1871
+ #: modules/files/files.php:134
1872
+ msgid ""
1873
+ "Please note that your privacy settings won&#8217;t have any effect on your "
1874
+ "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1875
  msgstr ""
1876
 
1877
+ #: modules/canonical/canonical.php:12
1878
+ msgid "Canonicalizer"
1879
  msgstr ""
1880
 
1881
+ #: modules/canonical/canonical.php:33
1882
+ msgid "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> tags."
1883
  msgstr ""
1884
 
1885
+ #: modules/canonical/canonical.php:34
1886
+ msgid "Redirect requests for nonexistent pagination."
1887
  msgstr ""
1888
 
1889
  #. Plugin URI of the plugin/theme