SEO Ultimate - Version 7.2

Version Description

Download this release

Release Info

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

Code changes from version 7.1 to 7.2

modules/class.su-module.php CHANGED
@@ -601,8 +601,10 @@ class SU_Module {
601
  */
602
  function children_admin_pages() {
603
  foreach ($this->modules as $key => $x_module) {
604
- $this->modules[$key]->admin_subheader($this->modules[$key]->get_module_subtitle(), $this->plugin->key_to_hook($key));
 
605
  $this->modules[$key]->admin_page_contents();
 
606
  }
607
  }
608
 
@@ -613,9 +615,9 @@ class SU_Module {
613
  */
614
  function children_admin_pages_form() {
615
  if (count($this->modules)) {
616
- $this->admin_form_start();
617
  $this->children_admin_pages();
618
- $this->admin_form_end();
619
  } else
620
  $this->print_message('warning', sprintf(__('All the modules on this page have been disabled. You can re-enable them using the <a href="%s">Module Manager</a>.', 'seo-ultimate'), $this->get_admin_url('modules')));
621
  }
@@ -1568,7 +1570,8 @@ class SU_Module {
1568
  * @param bool $newtable Whether to open a new <table> element.
1569
  */
1570
  function admin_form_group_start($title, $newtable=true) {
1571
- echo "<tr valign='top'>\n<th scope='row'>$title</th>\n<td><fieldset><legend class='hidden'>$title</legend>\n";
 
1572
  if ($newtable) echo "<table>\n";
1573
  }
1574
 
@@ -1633,7 +1636,11 @@ class SU_Module {
1633
  * @param array $checkboxes An array of checkboxes. (Field/setting IDs are the keys, and descriptions are the values.)
1634
  * @param mixed $grouptext The text to display in a table cell to the left of the one containing the checkboxes. Optional.
1635
  */
1636
- function checkboxes($checkboxes, $grouptext=false) {
 
 
 
 
1637
 
1638
  //Save checkbox settings after form submission
1639
  if ($this->is_action('update')) {
@@ -1652,7 +1659,7 @@ class SU_Module {
1652
 
1653
  if ($grouptext)
1654
  $this->admin_form_group_start($grouptext, false);
1655
- else
1656
  echo "<tr valign='top' class='su-admin-form-checkbox'>\n<td colspan='2'>\n";
1657
 
1658
  if (is_array($checkboxes)) {
@@ -1686,8 +1693,12 @@ class SU_Module {
1686
  }
1687
  }
1688
 
1689
- if ($grouptext) echo "</fieldset>";
1690
- echo "</td>\n</tr>\n";
 
 
 
 
1691
  }
1692
 
1693
  /**
@@ -1701,8 +1712,8 @@ class SU_Module {
1701
  * @param mixed $grouptext The text to display in a table cell to the left of the one containing the checkbox. Optional.
1702
  * @return string The HTML that would render the checkbox.
1703
  */
1704
- function checkbox($id, $desc, $grouptext = false) {
1705
- $this->checkboxes(array($id => $desc), $grouptext);
1706
  }
1707
 
1708
  /**
@@ -1793,7 +1804,7 @@ class SU_Module {
1793
  * @param array $values The keys of this array are the radio button values, and the array values are the label strings.
1794
  * @param string|false $grouptext The text to display in a table cell to the left of the one containing the radio buttons. Optional.
1795
  */
1796
- function dropdown($name, $values, $grouptext=false) {
1797
 
1798
  //Save dropdown setting after form submission
1799
  if ($this->is_action('update') && isset($_POST[$name]))
@@ -1809,9 +1820,10 @@ class SU_Module {
1809
  register_setting($this->get_module_key(), $name);
1810
 
1811
  $name = su_esc_attr($name);
1812
- echo "<select name='$name' id='$name'>\n";
1813
- echo suhtml::option_tags($values, $this->get_setting($name));
1814
- echo "</select>";
 
1815
  }
1816
 
1817
  if ($grouptext) echo "</fieldset>";
601
  */
602
  function children_admin_pages() {
603
  foreach ($this->modules as $key => $x_module) {
604
+ echo "<div id='" . $this->plugin->key_to_hook($key) . "'>\n";
605
+ $this->modules[$key]->admin_subheader($this->modules[$key]->get_module_subtitle());
606
  $this->modules[$key]->admin_page_contents();
607
+ echo "</div>\n";
608
  }
609
  }
610
 
615
  */
616
  function children_admin_pages_form() {
617
  if (count($this->modules)) {
618
+ $this->admin_form_start(false, false);
619
  $this->children_admin_pages();
620
+ $this->admin_form_end(null, false);
621
  } else
622
  $this->print_message('warning', sprintf(__('All the modules on this page have been disabled. You can re-enable them using the <a href="%s">Module Manager</a>.', 'seo-ultimate'), $this->get_admin_url('modules')));
623
  }
1570
  * @param bool $newtable Whether to open a new <table> element.
1571
  */
1572
  function admin_form_group_start($title, $newtable=true) {
1573
+ $class = $newtable ? ' class="su-admin-form-group"' : '';
1574
+ echo "<tr valign='top'$class>\n<th scope='row'>$title</th>\n<td><fieldset><legend class='hidden'>$title</legend>\n";
1575
  if ($newtable) echo "<table>\n";
1576
  }
1577
 
1636
  * @param array $checkboxes An array of checkboxes. (Field/setting IDs are the keys, and descriptions are the values.)
1637
  * @param mixed $grouptext The text to display in a table cell to the left of the one containing the checkboxes. Optional.
1638
  */
1639
+ function checkboxes($checkboxes, $grouptext=false, $args=array()) {
1640
+
1641
+ extract(wp_parse_args($args, array(
1642
+ 'output_tr' => true
1643
+ )));
1644
 
1645
  //Save checkbox settings after form submission
1646
  if ($this->is_action('update')) {
1659
 
1660
  if ($grouptext)
1661
  $this->admin_form_group_start($grouptext, false);
1662
+ elseif ($output_tr)
1663
  echo "<tr valign='top' class='su-admin-form-checkbox'>\n<td colspan='2'>\n";
1664
 
1665
  if (is_array($checkboxes)) {
1693
  }
1694
  }
1695
 
1696
+ if ($grouptext) {
1697
+ echo "</fieldset>";
1698
+ $this->admin_form_group_end();
1699
+ } elseif ($output_tr) {
1700
+ echo "</td>\n</tr>\n";
1701
+ }
1702
  }
1703
 
1704
  /**
1712
  * @param mixed $grouptext The text to display in a table cell to the left of the one containing the checkbox. Optional.
1713
  * @return string The HTML that would render the checkbox.
1714
  */
1715
+ function checkbox($id, $desc, $grouptext = false, $args=array()) {
1716
+ $this->checkboxes(array($id => $desc), $grouptext, $args);
1717
  }
1718
 
1719
  /**
1804
  * @param array $values The keys of this array are the radio button values, and the array values are the label strings.
1805
  * @param string|false $grouptext The text to display in a table cell to the left of the one containing the radio buttons. Optional.
1806
  */
1807
+ function dropdown($name, $values, $grouptext=false, $text='%s') {
1808
 
1809
  //Save dropdown setting after form submission
1810
  if ($this->is_action('update') && isset($_POST[$name]))
1820
  register_setting($this->get_module_key(), $name);
1821
 
1822
  $name = su_esc_attr($name);
1823
+ $dropdown = "<select name='$name' id='$name'>\n"
1824
+ . suhtml::option_tags($values, $this->get_setting($name))
1825
+ . "</select>";
1826
+ printf($text, $dropdown);
1827
  }
1828
 
1829
  if ($grouptext) echo "</fieldset>";
modules/modules.css CHANGED
@@ -47,6 +47,14 @@ div.su-module .form-table label.su-indent {
47
  padding-left: 3em;
48
  }
49
 
 
 
 
 
 
 
 
 
50
  div.su-module table.report {
51
  border-collapse: collapse;
52
  border-top: 1px solid #ccc;
47
  padding-left: 3em;
48
  }
49
 
50
+ div.su-module .form-table tr.su-admin-form-group > td {
51
+ padding: 0;
52
+ }
53
+
54
+ div.su-module .form-table tr.su-admin-form-group > td > fieldset > table {
55
+ width: 100%;
56
+ }
57
+
58
  div.su-module table.report {
59
  border-collapse: collapse;
60
  border-top: 1px solid #ccc;
modules/permalinks/index.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ header('Status: 403 Forbidden');
3
+ header('HTTP/1.1 403 Forbidden');
4
+ ?>
modules/permalinks/permalinks.css ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #su-permalinks table.widefat {
2
+ width: 100%;
3
+ }
4
+
5
+ #su-permalinks table.widefat th,
6
+ #su-permalinks table.widefat td {
7
+ vertical-align: middle;
8
+ padding: 5px;
9
+ }
10
+
11
+ #su-permalinks table.widefat .su-permalinks-taxonomy {
12
+ width: 10em;
13
+ }
14
+
15
+ #su-permalinks table.widefat .su-permalinks-arrow {
16
+ width: 2em;
17
+ padding: 0;
18
+ text-align: center;
19
+ }
modules/permalinks/permalinks.php CHANGED
@@ -17,6 +17,12 @@ class SU_Permalinks extends SU_Module {
17
  function get_parent_module() { return 'misc'; }
18
  function get_settings_key() { return 'permalinks'; }
19
 
 
 
 
 
 
 
20
  function init() {
21
  if (suwp::permalink_mode()) {
22
  $nobase_enabled = false;
@@ -58,15 +64,45 @@ class SU_Permalinks extends SU_Module {
58
 
59
  $after_url = home_url( user_trailingslashit('/example', 'category') );
60
 
61
- $nobase_checkboxes['nobase_' . $taxonomy->name] = sprintf(
62
- __('%1$s (turn <code>%2$s</code> into <code>%3$s</code>)', 'seo-ultimate')
63
- , $taxonomy->labels->name
64
- , $before_url
65
- , $after_url
66
  );
67
  }
68
 
69
- $this->checkboxes($nobase_checkboxes, __('Remove the URL bases of...', 'seo-ultimate'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  $this->child_admin_form_end();
71
 
72
  $this->update_rewrite_filters();
@@ -113,9 +149,11 @@ class SU_Permalinks extends SU_Module {
113
  else
114
  $url_start = "index.php?taxonomy={$tax_name}&term=";
115
 
116
- $rules['('.$term_slug.')/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$'] = $url_start . '$matches[1]&feed=$matches[2]';
117
- $rules['('.$term_slug.')/page/?([0-9]{1,})/?$'] = $url_start . '$matches[1]&paged=$matches[2]';
118
- $rules['('.$term_slug.')/?$'] = $url_start . '$matches[1]';
 
 
119
  }
120
  }
121
 
17
  function get_parent_module() { return 'misc'; }
18
  function get_settings_key() { return 'permalinks'; }
19
 
20
+ function get_default_settings() {
21
+ return array(
22
+ 'add_rule_if_conflict' => true
23
+ );
24
+ }
25
+
26
  function init() {
27
  if (suwp::permalink_mode()) {
28
  $nobase_enabled = false;
64
 
65
  $after_url = home_url( user_trailingslashit('/example', 'category') );
66
 
67
+ $nobase_checkboxes[] = array(
68
+ 'setting_id' => 'nobase_' . $taxonomy->name
69
+ , 'taxonomy_label' => $taxonomy->labels->name
70
+ , 'example_before' => $before_url
71
+ , 'example_after' => $after_url
72
  );
73
  }
74
 
75
+ $this->admin_form_group_start(__('Remove the URL bases of...', 'seo-ultimate'));
76
+
77
+ echo "<tr><td>\n";
78
+ $this->admin_wftable_start(array(
79
+ 'taxonomy' => ' '
80
+ , 'before' => __('Before', 'seo-ultimate')
81
+ , 'arrow' => ' '
82
+ , 'after' => __('After', 'seo-ultimate')
83
+ ));
84
+
85
+ foreach ($nobase_checkboxes as $nobase_checkbox) {
86
+ echo "<tr>\n";
87
+ echo "<td class='su-permalinks-taxonomy'>";
88
+ $this->checkbox($nobase_checkbox['setting_id'], $nobase_checkbox['taxonomy_label'], false, array('output_tr' => false));
89
+ echo "</td>\n";
90
+ echo "<td class='su-permalinks-before'>" . esc_html($nobase_checkbox['example_before']) . "</td>\n";
91
+ echo "<td class='su-permalinks-arrow'>&rArr;</td>\n";
92
+ echo "<td class='su-permalinks-after'>" . esc_html($nobase_checkbox['example_after']) . "</td>\n";
93
+ echo "</tr>\n";
94
+ }
95
+
96
+ $this->admin_wftable_end();
97
+ echo "</td></tr>\n";
98
+
99
+ $this->admin_form_group_end();
100
+
101
+ $this->dropdown('add_rule_if_conflict', array(
102
+ '1' => __('term archive', 'seo-ultimate')
103
+ , '0' => __('page', 'seo-ultimate')
104
+ ), __('URL Conflict Resolution', 'seo-ultimate'), __('If a term archive and a Page with the same slug end up having the same URL because of the term&#8217;s base being removed, the URL should be given to the %s.', 'seo-ultimate'));
105
+
106
  $this->child_admin_form_end();
107
 
108
  $this->update_rewrite_filters();
149
  else
150
  $url_start = "index.php?taxonomy={$tax_name}&term=";
151
 
152
+ if ($this->get_setting('add_rule_if_conflict', true) || get_page_by_path($term_slug) === null) {
153
+ $rules['('.$term_slug.')/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$'] = $url_start . '$matches[1]&feed=$matches[2]';
154
+ $rules['('.$term_slug.')/page/?([0-9]{1,})/?$'] = $url_start . '$matches[1]&paged=$matches[2]';
155
+ $rules['('.$term_slug.')/?$'] = $url_start . '$matches[1]';
156
+ }
157
  }
158
  }
159
 
modules/rich-snippets/rich-snippets.php CHANGED
@@ -72,6 +72,10 @@ class SU_RichSnippets extends SU_Module {
72
  'mf' => array('item', 'fn')
73
  , 'md' => 'itemreviewed'
74
  , 'rdfa' => 'itemreviewed'
 
 
 
 
75
  )
76
  )
77
  , 'rating' => array(
72
  'mf' => array('item', 'fn')
73
  , 'md' => 'itemreviewed'
74
  , 'rdfa' => 'itemreviewed'
75
+ ),'hidden_tags' => array(
76
+ 'mf' => '<span class="item"><span class="fn"><span class="value-title" title="%s"></span></span></span>'
77
+ , 'md' => 'itemreviewed'
78
+ , 'rdfa' => 'itemreviewed'
79
  )
80
  )
81
  , 'rating' => array(
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions, JohnLamansky
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.3
5
  Tested up to: 3.3
6
- Stable tag: 7.1
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
@@ -11,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 7.1 adds new Link Mask Generator features
15
  * Version 7.0 adds meta description pagination and WP 3.3 compatibility
16
  * Version 6.9 adds the Settings Monitor module
17
  * Version 6.8 adds rewrite method selection for Title Tag Rewriter
18
- * Version 6.7 adds 3 more features to Deeplink Juggernaut
19
 
20
  = Features =
21
 
@@ -46,7 +46,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
46
  * Avoid duplicate content SEO issues with the recommended noindex settings (see built-in module documentation for details).
47
  * Give instructions to search engine spiders if desired (`noodp`, `noydir`, and `noarchive`).
48
 
49
- * **Deeplink Juggernaut** -- UPDATED in Version 6.7
50
  * Use the power of anchor text to boost your internal ranking SEO paradigm.
51
  * Searches your site's content for anchor texts you specify and automatically links them to a destination of your choosing. Lets you easily build internal links to URLs, posts, pages, attachments, custom post type items, categories, terms, post format archives, and custom taxonomy term archives.
52
  * Customize footer links for your entire site and/or on a page-by-page basis.
@@ -118,8 +118,10 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
118
  * **Nofollow Manager**
119
  * Lets you maintain `rel="nofollow"` settings when migrating from other SEO plugins
120
 
121
- * **Permalink Tweaker**
122
- * Lets you remove the permalink base for categories, tags, and/or custom taxonomies. For example, enable category base removal to convert `http://example.com/category/example` into `http://example.com/example`, and then pair that with a `/%category%/%postname%/` permalink to enable some serious SEO siloing action.
 
 
123
 
124
  * **SEO Ultimate Widgets**
125
  * Lets you output your Deeplink Juggernaut Footer Links in a widget
@@ -259,6 +261,11 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
259
 
260
  == Changelog ==
261
 
 
 
 
 
 
262
  = Version 7.1 (December 21, 2011) =
263
  * Feature: Link Mask Generator now lets you edit all your link masks from a new interface on its admin page
264
  * Feature: You can now create link masks that apply across your entire site instead of just to one post
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.3
5
  Tested up to: 3.3
6
+ Stable tag: 7.2
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
11
 
12
  = Recent Releases =
13
 
14
+ * Version 7.2 updates Permalink Tweaker
15
  * Version 7.1 adds new Link Mask Generator features
16
  * Version 7.0 adds meta description pagination and WP 3.3 compatibility
17
  * Version 6.9 adds the Settings Monitor module
18
  * Version 6.8 adds rewrite method selection for Title Tag Rewriter
 
19
 
20
  = Features =
21
 
46
  * Avoid duplicate content SEO issues with the recommended noindex settings (see built-in module documentation for details).
47
  * Give instructions to search engine spiders if desired (`noodp`, `noydir`, and `noarchive`).
48
 
49
+ * **Deeplink Juggernaut**
50
  * Use the power of anchor text to boost your internal ranking SEO paradigm.
51
  * Searches your site's content for anchor texts you specify and automatically links them to a destination of your choosing. Lets you easily build internal links to URLs, posts, pages, attachments, custom post type items, categories, terms, post format archives, and custom taxonomy term archives.
52
  * Customize footer links for your entire site and/or on a page-by-page basis.
118
  * **Nofollow Manager**
119
  * Lets you maintain `rel="nofollow"` settings when migrating from other SEO plugins
120
 
121
+ * **Permalink Tweaker** -- UPDATED in Version 7.2
122
+ * Lets you remove the permalink base for categories, tags, and/or custom taxonomies.
123
+ * For example, enable category base removal to convert `http://example.com/category/example` into `http://example.com/example`, and then pair that with a `/%category%/%postname%/` permalink to enable some serious SEO siloing action.
124
+ * The "URL Conflict Resolution" setting lets you arbitrate between pages/terms when taxonomy base removal causes their URLs to conflict
125
 
126
  * **SEO Ultimate Widgets**
127
  * Lets you output your Deeplink Juggernaut Footer Links in a widget
261
 
262
  == Changelog ==
263
 
264
+ = Version 7.2 (December 22, 2011) =
265
+ * Feature: Added "URL Conflict Resolution" setting to Permalink Tweaker that lets you arbitrate between pages/terms when taxonomy base removal causes their URLs to conflict
266
+ * Improvement: Cleaned up the Permalink Tweaker config interface
267
+ * Bugfix: Fixed stray `">` that appeared on some posts due to malformed HTML that Rich Snippet Creator generated when set on Microformats mode
268
+
269
  = Version 7.1 (December 21, 2011) =
270
  * Feature: Link Mask Generator now lets you edit all your link masks from a new interface on its admin page
271
  * Feature: You can now create link masks that apply across your entire site instead of just to one post
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: 7.1
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
- * @version 7.1
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.1.3');
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
- define('SU_VERSION', '7.1');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/7.1');
54
 
55
  /********** INCLUDES **********/
56
 
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
+ Version: 7.2
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
+ * @version 7.2
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
+ define('SU_VERSION', '7.2');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/7.2');
54
 
55
  /********** INCLUDES **********/
56
 
seo-ultimate.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: SEO Ultimate 7.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
- "POT-Creation-Date: 2011-12-21 18:35:07+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 7.1) #-#-#-#-#
23
  #. Plugin Name of the plugin/theme
24
  #: plugin/class.seo-ultimate.php:791 modules/settings/settings.php:14
25
  msgid "SEO Ultimate"
@@ -145,7 +145,7 @@ msgstr ""
145
  msgid "Home"
146
  msgstr ""
147
 
148
- #: plugin/class.seo-ultimate.php:1671 modules/class.su-module.php:2546
149
  #: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:34
150
  msgid "Blog Homepage"
151
  msgstr ""
@@ -154,7 +154,7 @@ msgstr ""
154
  msgid "Author Archives"
155
  msgstr ""
156
 
157
- #: plugin/class.seo-ultimate.php:1745 modules/class.su-module.php:2550
158
  msgid "Author"
159
  msgstr ""
160
 
@@ -162,22 +162,10 @@ msgstr ""
162
  msgid "Link Masks"
163
  msgstr ""
164
 
165
- #: plugin/class.seo-ultimate.php:1772 modules/class.su-module.php:2558
166
  msgid "Link Mask"
167
  msgstr ""
168
 
169
- #: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
170
- msgid "%s and %s"
171
- msgstr ""
172
-
173
- #: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
174
- msgid ", "
175
- msgstr ""
176
-
177
- #: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
178
- msgid "%s, and %s"
179
- msgstr ""
180
-
181
  #: plugin/class.su-installer.php:9
182
  msgid "Package not available."
183
  msgstr ""
@@ -250,2623 +238,2602 @@ msgstr ""
250
  msgid "Plugin upgraded successfully."
251
  msgstr ""
252
 
253
- #: modules/more-links/more-links.php:12 modules/more-links/more-links.php:102
254
- msgid "More Link Customizer"
255
  msgstr ""
256
 
257
- #: modules/more-links/more-links.php:30
258
- msgid "Default More Link Text"
259
  msgstr ""
260
 
261
- #: modules/more-links/more-links.php:51
262
- msgid "More Link Text:"
263
  msgstr ""
264
 
265
- #: modules/more-links/more-links.php:75
266
- msgid ""
267
- "\r\n"
268
- "<ul>\r\n"
269
- "\t<li><strong>What it does:</strong> More Link Customizer lets you modify "
270
- "the anchor text of your posts&#8217; <a href='http://codex.wordpress.org/"
271
- "Customizing_the_Read_More' target='_blank'>&#8220;more&#8221; links</a>.</li>"
272
- "\r\n"
273
- "\t<li><strong>Why it helps:</strong> On the typical WordPress setup, the "
274
- "&#8220;more link&#8221; always has the same anchor text (e.g. &#8220;Read "
275
- "more of this entry&#8221;). Since internal anchor text conveys web page "
276
- "topicality to search engines, the &#8220;read more&#8221; phrase isn&#8217;t "
277
- "a desirable anchor phrase. More Link Customizer lets you replace the "
278
- "boilerplate text with a new anchor that, by default, integrates your post "
279
- "titles (which will ideally be keyword-oriented).</li>\r\n"
280
- "\t<li><strong>How to use it:</strong> On this page you can set the anchor "
281
- "text you&#8217;d like to use by default. The <code>{post}</code> variable "
282
- "will be replaced with the post&#8217;s title. HTML and encoded entities are "
283
- "supported. If instead you decide that you&#8217;d like to use the default "
284
- "anchor text specified by your currently-active theme, just erase the "
285
- "contents of the textbox. The anchor text can be overridden on a per-post "
286
- "basis via the &#8220;More Link Text&#8221; box in the &#8220;SEO "
287
- "Settings&#8221; section of the WordPress post editor.</li>\r\n"
288
- "</ul>\r\n"
289
  msgstr ""
290
 
291
- #: modules/more-links/more-links.php:83
292
- msgid ""
293
- "\r\n"
294
- "<ul>\r\n"
295
- "\t<li>\r\n"
296
- "\t\t<p><strong>Why is the More Link Customizer an improvement over "
297
- "WordPress&#8217;s built-in functionality?</strong><br />Although WordPress "
298
- "does allow basic <a href='http://codex.wordpress.org/"
299
- "Customizing_the_Read_More#Having_a_custom_text_for_each_post' "
300
- "target='_blank'>custom &#8220;more&#8221; anchors</a>, the SEO Ultimate "
301
- "approach has several benefits:</p>\r\n"
302
- "\t\t<ul>\r\n"
303
- "\t\t\t<li>More Link Customizer (MLC) lets you set a custom default anchor "
304
- "text. WordPress, on the other hand, leaves this up to the currently-active "
305
- "theme.</li>\r\n"
306
- "\t\t\t<li>MLC lets you dynamically incorporate the post&#8217;s title into "
307
- "the anchor text.</li>\r\n"
308
- "\t\t\t<li>MLC lets you include HTML tags in your anchor, whereas WordPress "
309
- "strips these out.</li>\r\n"
310
- "\t\t\t<li>MLC&#8217;s functionality is much more prominent than "
311
- "WordPress&#8217;s unintuitive, barely-documented approach.</li>\r\n"
312
- "\t\t\t<li>Unlike WordPress's method, MLC doesn't require you to utilize the "
313
- "HTML editor.</li>\r\n"
314
- "\t\t</ul>\r\n"
315
- "\t\t<p>If you&#8217;ve already specified custom anchors via WordPress&#8217;"
316
- "s method, SEO Ultimate will import those anchors automatically into the More "
317
- "Link Customizer.</p>\r\n"
318
- "\t</li>\r\n"
319
- "</ul>\r\n"
320
  msgstr ""
321
 
322
- #: modules/more-links/more-links.php:104 modules/more-links/more-links.php:111
323
- #: modules/linkbox/linkbox.php:91 modules/titles/titles.php:341
324
- #: modules/meta/meta-descriptions.php:174 modules/meta/meta-keywords.php:166
325
- #: modules/meta/webmaster-verify.php:58 modules/meta/meta-robots.php:53
326
- #: modules/canonical/canonical.php:201
327
- #: modules/link-nofollow/link-nofollow.php:130
328
- #: modules/user-code/user-code.php:70 modules/files/files.php:144
329
- #: modules/settings/settings.php:22 modules/404s/fofs.php:19
330
- #: modules/slugs/slugs.php:76 modules/rich-snippets/rich-snippets.php:254
331
- #: modules/sharing-buttons/sharing-buttons.php:72
332
- msgid "Overview"
333
  msgstr ""
334
 
335
- #: modules/more-links/more-links.php:105 modules/more-links/more-links.php:116
336
- #: modules/titles/titles.php:442 modules/meta/meta-descriptions.php:197
337
- #: modules/meta/meta-keywords.php:183 modules/modules/modules.php:174
338
- #: modules/files/files.php:155 modules/settings/settings.php:41
339
- #: modules/slugs/slugs.php:87
340
- msgid "FAQ"
341
  msgstr ""
342
 
343
- #: modules/misc/misc.php:11
344
- msgid "Miscellaneous"
345
  msgstr ""
346
 
347
- #: modules/misc/misc.php:14
348
- msgid ""
349
- "The Miscellaneous page contains modules that don&#8217;t have enough "
350
- "settings to warrant their own separate admin pages."
351
  msgstr ""
352
 
353
- #: modules/sds-blog/sds-blog.php:12
354
- msgid "Whitepapers"
 
355
  msgstr ""
356
 
357
- #: modules/sds-blog/sds-blog.php:13
358
- msgid "SEO Design Solutions Whitepapers"
359
  msgstr ""
360
 
361
- #. #-#-#-#-# plugin.pot (SEO Ultimate 7.1) #-#-#-#-#
362
- #. Author of the plugin/theme
363
- #: modules/sds-blog/sds-blog.php:49
364
- msgid "SEO Design Solutions"
365
  msgstr ""
366
 
367
- #: modules/sds-blog/sds-blog.php:50
368
- msgid ""
369
- "The search engine optimization articles below are loaded from the website of "
370
- "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
371
- "an article&#8217;s title to read it."
372
  msgstr ""
373
 
374
- #: modules/linkbox/linkbox.php:12
375
- msgid "Linkbox Inserter"
376
  msgstr ""
377
 
378
- #: modules/linkbox/linkbox.php:18
379
- msgid "Link to this post!"
380
  msgstr ""
381
 
382
- #: modules/linkbox/linkbox.php:45
383
- msgid "At the end of posts"
384
  msgstr ""
385
 
386
- #: modules/linkbox/linkbox.php:46
387
- msgid "At the end of pages"
388
  msgstr ""
389
 
390
- #: modules/linkbox/linkbox.php:47
391
- msgid "When called by the su_linkbox hook"
392
  msgstr ""
393
 
394
- #: modules/linkbox/linkbox.php:48
395
- msgid "Display linkboxes..."
396
  msgstr ""
397
 
398
- #: modules/linkbox/linkbox.php:49
399
- msgid "Linkbox HTML"
400
  msgstr ""
401
 
402
- #: modules/linkbox/linkbox.php:92
403
  msgid ""
404
- "\r\n"
405
- "<ul>\r\n"
406
- "\t<li><strong>What it does:</strong> Linkbox Inserter can add linkboxes to "
407
- "your posts/pages.</li>\r\n"
408
- "\t<li><strong>Why it helps:</strong> Linkboxes contain HTML code that "
409
- "visitors can use to link to your site. This is a great way to encourage SEO-"
410
- "beneficial linking activity.</li>\r\n"
411
- "\t<li><strong>How to use it:</strong> Use the checkboxes to enable the "
412
- "Linkbox Inserter in various areas of your site. Customize the HTML if "
413
- "desired. Click &#8220;Save Changes&#8221; when finished.</li>\r\n"
414
- "</ul>\r\n"
415
  msgstr ""
416
 
417
- #: modules/linkbox/linkbox.php:102 modules/titles/titles.php:415
418
- #: modules/meta/meta-descriptions.php:185 modules/meta/meta-keywords.php:173
419
- #: modules/meta/meta-robots.php:64 modules/404s/fofs.php:45
420
- #: modules/rich-snippets/rich-snippets.php:265
421
- msgid "Settings Help"
422
  msgstr ""
423
 
424
- #: modules/linkbox/linkbox.php:103
425
- msgid ""
426
- "\r\n"
427
- "<p>Here&#8217;s information on the various settings:</p>\r\n"
428
- "\r\n"
429
- "<ul>\r\n"
430
- "\t<li>\r\n"
431
- "\t\t<strong>Display linkboxes...</strong>\r\n"
432
- "\t\t<ul>\r\n"
433
- "\t\t\t<li><strong>At the end of posts</strong> &mdash; Adds the linkbox HTML "
434
- "to the end of all posts (whether they're displayed on the blog homepage, in "
435
- "archives, or by themselves).</li>\r\n"
436
- "\t\t\t<li><strong>At the end of pages</strong> &mdash; Adds the linkbox HTML "
437
- "to the end of all Pages.</li>\r\n"
438
- "\t\t\t<li><strong>When called by the su_linkbox hook</strong> &mdash; For "
439
- "more fine-tuned control over where linkboxes appear, enable this option and "
440
- "add <code>&lt;?php do_action('su_linkbox'); ?&gt;</code> to your theme. You "
441
- "can also add an ID parameter to display the linkbox of a particular post/"
442
- "page; for example: <code>&lt;?php do_action('su_linkbox', 123); ?&gt;</code>."
443
- "</li>\r\n"
444
- "\t\t</ul>\r\n"
445
- "\t</li>\r\n"
446
- "\t<li>\r\n"
447
- "\t\t<strong>HTML</strong> &mdash; The HTML that will be outputted to display "
448
- "the linkboxes. The HTML field supports these variables:\r\n"
449
- "\t\t<ul>\r\n"
450
- "\t\t\t<li>{id} &mdash; The ID of the current post/page, or the ID passed to "
451
- "the action hook call.</li>\r\n"
452
- "\t\t\t<li>{url} &mdash; The permalink URL of the post/page.</li>\r\n"
453
- "\t\t\t<li>{title} &mdash; The title of the post/page.</li>\r\n"
454
- "\t\t</ul>\r\n"
455
- "\t</li>\r\n"
456
- "</ul>\r\n"
457
  msgstr ""
458
 
459
- #: modules/wp-settings/wp-settings.php:14
460
- msgid "Settings Monitor (Beta)"
461
  msgstr ""
462
 
463
- #: modules/wp-settings/wp-settings.php:15
464
- msgid "Settings Monitor"
465
  msgstr ""
466
 
467
- #: modules/wp-settings/wp-settings.php:30
468
- msgid "Blog is visible to search engines"
469
  msgstr ""
470
 
471
- #: modules/wp-settings/wp-settings.php:31
472
- msgid "WordPress will allow search engines to visit your site."
473
  msgstr ""
474
 
475
- #: modules/wp-settings/wp-settings.php:33
476
- msgid "Blog is hidden from search engines"
477
  msgstr ""
478
 
479
- #: modules/wp-settings/wp-settings.php:34
480
- msgid ""
481
- "WordPress is configured to block search engines. This will nullify your "
482
- "site&#8217;s SEO and should be resolved immediately."
483
  msgstr ""
484
 
485
- #: modules/wp-settings/wp-settings.php:38
486
- msgid "Query-string permalinks enabled"
487
  msgstr ""
488
 
489
- #: modules/wp-settings/wp-settings.php:39
490
- msgid ""
491
- "It is highly recommended that you use a non-default and non-numeric "
492
- "permalink structure."
493
  msgstr ""
494
 
495
- #: modules/wp-settings/wp-settings.php:43
496
- msgid "Pathinfo permalinks enabled"
497
  msgstr ""
498
 
499
- #: modules/wp-settings/wp-settings.php:44
500
- msgid ""
501
- "Pathinfo permalinks add a keyword-less &#8220;index.php&#8221; prefix. This "
502
- "is not ideal, but it may be beyond your control (since it&#8217;s likely "
503
- "caused by your site&#8217;s web hosting setup)."
504
  msgstr ""
505
 
506
- #: modules/wp-settings/wp-settings.php:49
507
- msgid "Permalinks include the post slug"
508
- msgstr ""
509
-
510
- #: modules/wp-settings/wp-settings.php:50
511
- msgid ""
512
- "Including a version of the post&#8217;s title helps provide keyword-rich "
513
- "URLs."
514
- msgstr ""
515
-
516
- #: modules/wp-settings/wp-settings.php:52
517
- msgid "Permalinks do not include the post slug"
518
- msgstr ""
519
-
520
- #: modules/wp-settings/wp-settings.php:53
521
- msgid ""
522
- "It is highly recommended that you include the %postname% variable in the "
523
- "permalink structure."
524
  msgstr ""
525
 
526
- #: modules/wp-settings/wp-settings.php:63
527
- msgid ""
528
- "Settings Monitor analyzes your blog&#8217;s settings and notifies you of any "
529
- "problems. If any issues are found, they will show up in red or yellow below."
530
  msgstr ""
531
 
532
- #: modules/wp-settings/wp-settings.php:75
533
- msgid "Go to setting &raquo;"
534
  msgstr ""
535
 
536
- #: modules/widgets/widgets.php:12
537
- msgid "SEO Ultimate Widgets"
 
 
 
 
 
 
 
 
 
 
538
  msgstr ""
539
 
540
- #: modules/widgets/widgets.php:36
541
  msgid ""
542
- "On category archives, displays a list of child categories and/or posts in "
543
- "the category. Displays a list of top-level categories everywhere else. "
544
- "Powered by the SEO Ultimate plugin."
545
- msgstr ""
546
-
547
- #: modules/widgets/widgets.php:37
548
- msgid "Siloed Categories"
 
 
 
 
 
 
 
 
 
 
 
 
 
549
  msgstr ""
550
 
551
- #: modules/widgets/widgets.php:51
552
- msgid "Tags"
553
  msgstr ""
554
 
555
- #: modules/widgets/widgets.php:130
556
- msgid "Title:"
 
 
 
 
 
 
 
 
 
 
 
 
 
557
  msgstr ""
558
 
559
- #: modules/widgets/widgets.php:134
560
- msgid "Show post counts"
 
 
 
561
  msgstr ""
562
 
563
- #: modules/widgets/widgets.php:136
564
- msgid "Use term descriptions in title attributes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
565
  msgstr ""
566
 
567
- #: modules/widgets/widgets.php:138
568
- msgid "Taxonomy:"
 
 
 
 
569
  msgstr ""
570
 
571
- #: modules/widgets/widgets.php:163
572
  msgid ""
573
- "Add this widget to display Deeplink Juggernaut&#8217;s Footer Links in a "
574
- "widget area of your choosing rather than the default wp_footer section. "
575
- "Powered by the SEO Ultimate plugin."
576
- msgstr ""
577
-
578
- #: modules/widgets/widgets.php:164 modules/autolinks/footer-autolinks.php:17
579
- msgid "Footer Links"
 
 
 
 
 
 
580
  msgstr ""
581
 
582
- #: modules/widgets/widgets.php:217
583
- msgid "Title: <em>(optional)</em>"
584
  msgstr ""
585
 
586
- #: modules/widgets/widgets.php:221
587
- msgid "Display as a list"
 
 
588
  msgstr ""
589
 
590
- #: modules/widgets/widgets.php:224
591
- msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
592
  msgstr ""
593
 
594
- #: modules/import-aiosp/import-aiosp.php:12
595
- msgid "Import from All in One SEO Pack"
596
  msgstr ""
597
 
598
- #: modules/import-aiosp/import-aiosp.php:13
599
- msgid "AIOSP Import"
600
  msgstr ""
601
 
602
- #: modules/import-aiosp/import-aiosp.php:15
603
- msgid "All in One SEO Pack"
604
  msgstr ""
605
 
606
- #: modules/import-aiosp/import-aiosp.php:16
607
- msgid "AIOSP"
608
  msgstr ""
609
 
610
- #: modules/import-aiosp/import-aiosp.php:17
611
- msgid "Import post data (custom title tags and meta tags)."
612
  msgstr ""
613
 
614
- #: modules/import-aiosp/import-aiosp.php:21
615
- msgid ""
616
- "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
617
- "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
618
- "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
619
- "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
620
- "to be currently installed or activated for the import to take place."
621
  msgstr ""
622
 
623
- #: modules/import-aiosp/import-aiosp.php:23
624
- msgid ""
625
- "The import tool can only move over data from AIOSP version 1.6 or above. If "
626
- "you use an older version of AIOSP, you should update to the latest version "
627
- "first and run AIOSP&#8217;s upgrade process."
628
  msgstr ""
629
 
630
- #: modules/class.su-importmodule.php:49
631
- msgid "Import Post Fields"
632
  msgstr ""
633
 
634
- #: modules/class.su-importmodule.php:50
635
- msgid ""
636
- "Post fields store the SEO data for your posts/pages (i.e. your custom title "
637
- "tags, meta descriptions, and meta keywords). If you provided custom titles/"
638
- "descriptions/keywords to %s, this importer can move that data over to SEO "
639
- "Ultimate."
640
  msgstr ""
641
 
642
- #: modules/class.su-importmodule.php:53
643
- msgid "Conflict Resolution Mode"
644
  msgstr ""
645
 
646
- #: modules/class.su-importmodule.php:54
647
  msgid ""
648
- "What should the import tool do if it tries to move over a post&#8217;s %s "
649
- "data, but different data already exists in the corresponding SEO Ultimate "
650
- "fields?"
651
- msgstr ""
652
-
653
- #: modules/class.su-importmodule.php:56
654
- msgid "Skip that post and leave all data as-is (default)."
 
 
 
 
 
 
 
 
 
655
  msgstr ""
656
 
657
- #: modules/class.su-importmodule.php:57
658
- msgid "Delete the SEO Ultimate data and replace it with the %s data."
 
 
 
 
659
  msgstr ""
660
 
661
- #: modules/class.su-importmodule.php:58
662
- msgid "Keep the SEO Ultimate data and delete the %s data."
663
- msgstr ""
664
-
665
- #: modules/class.su-importmodule.php:61
666
- msgid "Deletion Preference"
667
- msgstr ""
668
-
669
- #: modules/class.su-importmodule.php:62
670
  msgid ""
671
- "When the migration tool successfully copies a post&#8217;s %1$s data over to "
672
- "SEO Ultimate, what should it do with the old %1$s data?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
673
  msgstr ""
674
 
675
- #: modules/class.su-importmodule.php:64
676
- msgid "Delete the %s data."
 
 
 
 
 
 
 
 
677
  msgstr ""
678
 
679
- #: modules/class.su-importmodule.php:65
680
- msgid "Leave behind the duplicate %s data (default)."
681
  msgstr ""
682
 
683
- #: modules/class.su-importmodule.php:72
684
- msgid "Import Now"
685
  msgstr ""
686
 
687
- #: modules/class.su-importmodule.php:75
688
- msgid ""
689
- "The import cannot be undone. It is your responsibility to <a href=\"%s\" "
690
- "target=\"_blank\">backup your database</a> before proceeding!"
691
  msgstr ""
692
 
693
- #: modules/class.su-importmodule.php:84
694
- msgid "Import complete."
695
  msgstr ""
696
 
697
- #: modules/class.su-importmodule.php:90
698
- msgid "Return to import page"
699
  msgstr ""
700
 
701
- #: modules/class.su-importmodule.php:93
702
- msgid "Return to settings page"
703
  msgstr ""
704
 
705
- #: modules/class.su-importmodule.php:96
706
- msgid "Return to SEO page"
 
 
707
  msgstr ""
708
 
709
- #: modules/class.su-importmodule.php:116
710
- msgid "Deactivated %s."
711
  msgstr ""
712
 
713
- #: modules/class.su-importmodule.php:174
714
- msgid "Imported a total of %d fields for one post/page/revision."
715
- msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
716
- msgstr[0] ""
717
- msgstr[1] ""
718
-
719
- #: modules/class.su-importmodule.php:180
720
- msgid "Skipped one post with disabled %2$s data."
721
- msgid_plural "Skipped %1$d posts with disabled %2$s data."
722
- msgstr[0] ""
723
- msgstr[1] ""
724
-
725
- #: modules/class.su-importmodule.php:186
726
  msgid ""
727
- "Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
728
- "settings you chose."
729
- msgid_plural ""
730
- "Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
731
- "settings you chose."
732
- msgstr[0] ""
733
- msgstr[1] ""
734
-
735
- #: modules/class.su-importmodule.php:192
736
- msgid "Deleted one %2$s field, as instructed by the settings you chose."
737
- msgid_plural ""
738
- "Deleted %1$d %2$s fields, as instructed by the settings you chose."
739
- msgstr[0] ""
740
- msgstr[1] ""
741
-
742
- #: modules/titles/titles.php:12
743
- msgid "Title Tag Rewriter"
744
  msgstr ""
745
 
746
- #: modules/titles/titles.php:33 modules/meta/meta-descriptions.php:24
747
- msgid "Default Formats"
 
748
  msgstr ""
749
 
750
- #: modules/titles/titles.php:34 modules/404s/fofs-settings.php:17
751
- #: modules/internal-link-aliases/internal-link-aliases.php:31
752
- msgid "Settings"
753
  msgstr ""
754
 
755
- #: modules/titles/titles.php:40
756
- msgid "Title Tag"
757
  msgstr ""
758
 
759
- #: modules/titles/titles.php:53
760
  msgid ""
761
- "Convert lowercase category/tag names to title case when used in title tags."
 
762
  msgstr ""
763
 
764
- #: modules/titles/titles.php:53
765
- msgid "Title Tag Variables"
766
  msgstr ""
767
 
768
- #: modules/titles/titles.php:55
769
  msgid ""
770
- "Use output buffering &mdash; no configuration required, but slower (default)"
 
 
 
771
  msgstr ""
772
 
773
- #: modules/titles/titles.php:56
774
  msgid ""
775
- "Use filtering &mdash; faster, but configuration required (see the &#8220;"
776
- "Settings Help&#8221; dropdown for details)"
777
  msgstr ""
778
 
779
- #: modules/titles/titles.php:57
780
- msgid "Rewrite Method"
781
  msgstr ""
782
 
783
- #: modules/titles/titles.php:65
784
- msgid "{blog}"
785
  msgstr ""
786
 
787
- #: modules/titles/titles.php:66
788
- msgid "{post} | {blog}"
 
 
 
 
789
  msgstr ""
790
 
791
- #: modules/titles/titles.php:67
792
- msgid "{page} | {blog}"
 
 
793
  msgstr ""
794
 
795
- #: modules/titles/titles.php:68
796
- msgid "{category} | {blog}"
797
  msgstr ""
798
 
799
- #: modules/titles/titles.php:69
800
- msgid "{tag} | {blog}"
801
  msgstr ""
802
 
803
- #: modules/titles/titles.php:70
804
- msgid "Archives for {month} {day}, {year} | {blog}"
 
 
 
805
  msgstr ""
806
 
807
- #: modules/titles/titles.php:71
808
- msgid "Archives for {month} {year} | {blog}"
809
  msgstr ""
810
 
811
- #: modules/titles/titles.php:72
812
- msgid "Archives for {year} | {blog}"
 
 
813
  msgstr ""
814
 
815
- #: modules/titles/titles.php:73
816
- msgid "Posts by {author} | {blog}"
 
 
 
 
817
  msgstr ""
818
 
819
- #: modules/titles/titles.php:74
820
- msgid "Search Results for {query} | {blog}"
821
  msgstr ""
822
 
823
- #: modules/titles/titles.php:75
824
- msgid "404 Not Found | {blog}"
825
  msgstr ""
826
 
827
- #: modules/titles/titles.php:76
828
- msgid "{title} - Page {num}"
 
 
 
 
 
829
  msgstr ""
830
 
831
- #: modules/titles/titles.php:85
832
- msgid "Blog Homepage Title"
833
  msgstr ""
834
 
835
- #: modules/titles/titles.php:86
836
- msgid "Post Title Format"
837
  msgstr ""
838
 
839
- #: modules/titles/titles.php:87
840
- msgid "Page Title Format"
 
 
841
  msgstr ""
842
 
843
- #: modules/titles/titles.php:88
844
- msgid "Category Title Format"
 
845
  msgstr ""
846
 
847
- #: modules/titles/titles.php:89
848
- msgid "Tag Title Format"
849
  msgstr ""
850
 
851
- #: modules/titles/titles.php:90
852
- msgid "Day Archive Title Format"
853
  msgstr ""
854
 
855
- #: modules/titles/titles.php:91
856
- msgid "Month Archive Title Format"
857
  msgstr ""
858
 
859
- #: modules/titles/titles.php:92
860
- msgid "Year Archive Title Format"
 
 
 
861
  msgstr ""
862
 
863
- #: modules/titles/titles.php:93
864
- msgid "Author Archive Title Format"
865
  msgstr ""
866
 
867
- #: modules/titles/titles.php:94
868
- msgid "Search Title Format"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
869
  msgstr ""
870
 
871
- #: modules/titles/titles.php:95
872
- msgid "404 Title Format"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
873
  msgstr ""
874
 
875
- #: modules/titles/titles.php:96
876
- msgid "Pagination Title Format"
877
  msgstr ""
878
 
879
- #: modules/titles/titles.php:328
880
- msgid "Title Tag:"
881
  msgstr ""
882
 
883
- #: modules/titles/titles.php:333
884
- msgid ""
885
- "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
886
- "tag. The title appears in visitors&#8217; title bars and in search engine "
887
- "result titles. If this box is left blank, then the <a href=\"admin.php?"
888
- "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
889
  msgstr ""
890
 
891
- #: modules/titles/titles.php:342
 
 
 
 
 
 
 
 
892
  msgid ""
893
- "\r\n"
894
- "<ul>\r\n"
895
- "\t<li><strong>What it does:</strong> Title Tag Rewriter helps you customize "
896
- "the contents of your website&#8217;s <code>&lt;title&gt;</code> tags. The "
897
- "tag contents are displayed in web browser title bars and in search engine "
898
- "result pages.</li>\r\n"
899
- "\t<li><strong>Why it helps:</strong> Proper title rewriting ensures that the "
900
- "keywords in your post/Page titles have greater prominence for search engine "
901
- "spiders and users. This is an important foundation for WordPress SEO.</li>"
902
- "\r\n"
903
- "\t<li><strong>How to use it:</strong> Title Tag Rewriter enables recommended "
904
- "settings automatically, so you shouldn&#8217;t need to change anything. If "
905
- "you do wish to edit the rewriting formats, you can do so using the textboxes "
906
- "below (the &#8220;Formats & Variables&#8221; help tab includes additional "
907
- "information on this). You also have the option of overriding the <code>&lt;"
908
- "title&gt;</code> tag of an individual post/page/category/tag/etc. using the "
909
- "appropriate tabs below, or by using the &#8220;Title Tag&#8221; textbox that "
910
- "Title Tag Rewriter adds to the post/page editors.</li>\r\n"
911
- "</ul>\r\n"
912
  msgstr ""
913
 
914
- #: modules/titles/titles.php:352
915
- msgid "Formats &amp; Variables"
916
  msgstr ""
917
 
918
- #: modules/titles/titles.php:353
919
  msgid ""
920
- "\r\n"
921
- "<p>Various variables, surrounded in {curly brackets}, are provided for use "
922
- "in the title formats. All settings support the {blog} variable, which is "
923
- "replaced with the name of the blog, and the {tagline} variable, which is "
924
- "replaced with the blog tagline as set under <a href='options-general."
925
- "php'>Settings &rArr; General</a>.</p>\r\n"
926
- "\r\n"
927
- "<p>Here&#8217;s information on each of the settings and its supported "
928
- "variables:</p>\r\n"
929
- "\r\n"
930
- "<ul>\r\n"
931
- "\t<li><strong>Blog Homepage Title</strong> &mdash; Displays on the main blog "
932
- "posts page.</li>\r\n"
933
- "\t<li>\r\n"
934
- "\t\t<p><strong>Post Title Format</strong> &mdash; Displays on single-post "
935
- "pages. Supports these variables:</p>\r\n"
936
- "\t\t<ul>\r\n"
937
- "\t\t\t<li>{post} &mdash; The post&#8217;s title.</li>\r\n"
938
- "\t\t\t<li>{category} &mdash; The title of the post category with the lowest "
939
- "ID number.</li>\r\n"
940
- "\t\t\t<li>{categories} &mdash; A natural-language list of the post&#8217;s "
941
- "categories (e.g. &#8220;Category A, Category B, and Category C&#8221;).</li>"
942
- "\r\n"
943
- "\t\t\t<li>{tags} &mdash; A natural-language list of the post's tags (e.g. "
944
- "&#8220;Tag A, Tag B, and Tag C&#8221;).</li>\r\n"
945
- "\t\t\t<li>{author} &mdash; The Display Name of the post's author.</li>\r\n"
946
- "\t\t\t<li>{author_username}, {author_firstname}, {author_lastname}, "
947
- "{author_nickname} &mdash; The username, first name, last name, and nickname "
948
- "of the post&#8217;s author, respectively, as set in his or her profile.</li>"
949
- "\r\n"
950
- "\t\t</ul>\r\n"
951
- "\t</li>\r\n"
952
- "\t<li>\r\n"
953
- "\t\t<p><strong>Page Title Format</strong> &mdash; Displays on WordPress "
954
- "Pages. Supports these variables:\r\n"
955
- "\t\t<ul>\r\n"
956
- "\t\t\t<li>{page} &mdash; The page&#8217;s title.</li>\r\n"
957
- "\t\t\t<li>{page_parent} &mdash; The title of the page&#8217;s parent page.</"
958
- "li>\r\n"
959
- "\t\t\t<li>{author} &mdash; The Display Name of the page&#8217;s author.</li>"
960
- "\r\n"
961
- "\t\t\t<li>{author_username}, {author_firstname}, {author_lastname}, "
962
- "{author_nickname} &mdash; The username, first name, last name, and nickname "
963
- "of the page&#8217;s author, respectively, as set in his or her profile.</li>"
964
- "\r\n"
965
- "\t\t</ul>\r\n"
966
- "\t</li>\r\n"
967
- "\t<li><strong>Category Title Format</strong> &mdash; Displays on category "
968
- "archives. The {category} variable is replaced with the name of the category, "
969
- "and {category_description} is replaced with its description.</li>\r\n"
970
- "\t<li><strong>Tag Title Format</strong> &mdash; Displays on tag archives. "
971
- "The {tag} variable is replaced with the name of the tag, and "
972
- "{tag_description} is replaced with its description.</li>\r\n"
973
- "\t<li>\r\n"
974
- "\t\t<p><strong>Day Archive Title Format</strong> &mdash; Displays on day "
975
- "archives. Supports these variables:</p>\r\n"
976
- "\t\t<ul>\r\n"
977
- "\t\t\t<li>{day} &mdash; The day number, with ordinal suffix, e.g. 23rd</li>"
978
- "\r\n"
979
- "\t\t\t<li>{daynum} &mdash; The two-digit day number, e.g. 23</li>\r\n"
980
- "\t\t\t<li>{month} &mdash; The name of the month, e.g. April</li>\r\n"
981
- "\t\t\t<li>{monthnum} &mdash; The two-digit number of the month, e.g. 04</li>"
982
- "\r\n"
983
- "\t\t\t<li>{year} &mdash; The year, e.g. 2009</li>\r\n"
984
- "\t\t</ul>\r\n"
985
- "\t</li>\r\n"
986
- "\t<li><strong>Month Archive Title Format</strong> &mdash; Displays on month "
987
- "archives. Supports {month}, {monthnum}, and {year}.</li>\r\n"
988
- "\t<li><strong>Year Archive Title Format</strong> &mdash; Displays on year "
989
- "archives. Supports the {year} variable.</li>\r\n"
990
- "\t<li><strong>Author Archive Title Format</strong> &mdash; Displays on "
991
- "author archives. Supports the same author variables as the Post Title Format "
992
- "box, i.e. {author}, {author_username}, {author_firstname}, "
993
- "{author_lastname}, and {author_nickname}.</li>\r\n"
994
- "\t<li><strong>Search Title Format</strong> &mdash; Displays on the result "
995
- "pages for WordPress&#8217;s blog search function. The {query} variable is "
996
- "replaced with the search query as-is. The {ucwords} variable returns the "
997
- "search query with the first letter of each word capitalized.</li>\r\n"
998
- "\t<li>\r\n"
999
- "\t\t<p><strong>404 Title Format</strong> &mdash; Displays whenever a URL "
1000
- "doesn&#8217;t go anywhere. Supports this variable:</p>\r\n"
1001
- "\t\t<ul>\r\n"
1002
- "\t\t\t<li>{url_words} &mdash; The words used in the error-generating URL. "
1003
- "The first letter of each word will be capitalized.</li>\r\n"
1004
- "\t\t</ul>\r\n"
1005
- "\t</li>\r\n"
1006
- "\t<li>\r\n"
1007
- "\t\t<p><strong>Pagination Title Format</strong> &mdash; Displays whenever "
1008
- "the visitor is on a subpage (page 2, page 3, etc.) of the homepage or of an "
1009
- "archive. Supports these variables:</p>\r\n"
1010
- "\t\t<ul>\r\n"
1011
- "\t\t\t<li>{title} &mdash; The title that would normally be displayed on page "
1012
- "1</li>\r\n"
1013
- "\t\t\t<li>{num} &mdash; The current page number (2, 3, etc.)</li>\r\n"
1014
- "\t\t\t<li>{max} &mdash; The total number of subpages available. Would "
1015
- "usually be used like this: Page {num} of {max}</li>\r\n"
1016
- "\t\t</ul>\r\n"
1017
- "\t</li>\r\n"
1018
- "</ul>\r\n"
1019
  msgstr ""
1020
 
1021
- #: modules/titles/titles.php:416
1022
  msgid ""
1023
- "\r\n"
1024
- "<p>Here&#8217;s documentation for the options on the &#8220;Settings&#8221; "
1025
- "tab.</p>\r\n"
1026
- "<ul>\r\n"
1027
- "\t<li>\r\n"
1028
- "\t\t<p><strong>Rewrite Method</strong> &mdash; This setting controls the "
1029
- "method by which Title Tag Rewriter edits your site&#8217;s <code>&lt;"
1030
- "title&gt;</code> tags.</p>\r\n"
1031
- "\t\t<ul>\r\n"
1032
- "\t\t\t<li><strong>Use output buffering</strong> &mdash; This is the &#8220;"
1033
- "traditional&#8221; method that most SEO plugins use. With this method, SEO "
1034
- "Ultimate will intercept your site&#8217;s <code>&lt;head&gt;</code> tag "
1035
- "section as it&#8217;s being outputted, locate the <code>&lt;title&gt;</code> "
1036
- "tag, edit its value, and then output the edited <code>&lt;head&gt;</code> "
1037
- "data. The good thing about this method is that you don&#8217;t have to edit "
1038
- "your theme in any way, as SEO Ultimate will overwrite whatever your theme "
1039
- "puts in your <code>&lt;title&gt;</code> tag. The bad thing is that this "
1040
- "output interception takes a few extra milliseconds to complete. If you are "
1041
- "concerned about performance, are comfortable editing your theme&#8217;s "
1042
- "`header.php` file, and will remember to edit the `header.php` file of any "
1043
- "new themes you activate, you may want to try the filtering rewrite method.</"
1044
- "li>\r\n"
1045
- "\t\t\t<li>\r\n"
1046
- "\t\t\t\t<p><strong>Use filtering</strong> &mdash; With this method, SEO "
1047
- "Ultimate will register itself with WordPress and will replace "
1048
- "WordPress&#8217;s <code>&lt;title&gt;</code> tag output with its own. This "
1049
- "method can only edit the text that WordPress itself generates for the "
1050
- "<code>&lt;title&gt;</code> tag; the filtering method can&#8217;t edit "
1051
- "anything extra your theme may add. For this reason, you need to edit your "
1052
- "theme to make sure it&#8217;s only pulling <code>&lt;title&gt;</code> tag "
1053
- "data from WordPress and is not adding anything else.</p>\r\n"
1054
- "\t\t\t\t<p>Here&#8217;s how to set up filtering:</p>\r\n"
1055
- "\t\t\t\t<ol>\r\n"
1056
- "\t\t\t\t\t<li>Go to <a href='theme-editor.php'>Appearance &rArr; Editor</a> "
1057
- "(if you get a permissions error, you may be on a WordPress multi-site "
1058
- "environment and may not be able to use the filtering rewrite method)</li>\r\n"
1059
- "\t\t\t\t\t<li>Click &#8220;Header (header.php)&#8221;</li>\r\n"
1060
- "\t\t\t\t\t<li>Look for the <code>&lt;title&gt;</code> start tag and the "
1061
- "<code>&lt;/title&gt;</code> end tag</li>\r\n"
1062
- "\t\t\t\t\t<li>Edit the text in between those tags so that it looks like "
1063
- "this: <code>&lt;title&gt;&lt;?php wp_title(''); ?&gt;&lt;/title&gt;</code></"
1064
- "li>\r\n"
1065
- "\t\t\t\t\t<li>Click &#8220;Update File&#8221;</li>\r\n"
1066
- "\t\t\t\t\t<li>Return to the &#8220;Settings&#8221; tab of Title Tag "
1067
- "Rewriter, select &#8220;Use filtering,&#8221; and click &#8220;Save "
1068
- "Changes&#8221;</li>\r\n"
1069
- "\t\t\t\t</ol>\r\n"
1070
- "\t\t\t</li>\r\n"
1071
- "\t\t</ul>\r\n"
1072
- "\t</li>\r\n"
1073
- "</ul>\r\n"
1074
  msgstr ""
1075
 
1076
- #: modules/titles/titles.php:443
1077
  msgid ""
1078
- "\r\n"
1079
- "<ul>\r\n"
1080
- "\t<li><strong>Does the Title Tag Rewriter edit my post/page titles?</"
1081
- "strong><br />No. The Title Tag Rewriter edits the <code>&lt;title&gt;</code> "
1082
- "tags of your site, not your post/page titles.</li>\r\n"
1083
- "\t<li><strong>Will rewriting the title tags of my posts change their "
1084
- "permalinks/URLs?</strong><br />No.</li>\r\n"
1085
- "\t<li><strong>What&#8217;s the difference between the &#8220;title&#8221; "
1086
- "and the &#8220;title tag&#8221; of a post/page?</strong><br />The &#8220;"
1087
- "title&#8221; is the title of your post or page that&#8217;s used in your "
1088
- "site&#8217;s theme, in your site&#8217;s admin, in your site&#8217;s RSS "
1089
- "feeds, and in your site&#8217;s <code>&lt;title&gt;</code> tags. A <code>&lt;"
1090
- "title&gt;</code> tag is the title of a specific webpage, and it appears in "
1091
- "your browser&#8217;s title bar and in search result listings. Title Tag "
1092
- "Rewriter lets you edit your post&#8217;s <code>&lt;title&gt;</code> tags "
1093
- "without editing their actual titles. This means you can edit a post&#8217;s "
1094
- "title as it appears in search results, but not as it appears on your site.</"
1095
- "li>\r\n"
1096
- "</ul>\r\n"
1097
  msgstr ""
1098
 
1099
- #: modules/titles/titles.php:453 modules/meta/meta-descriptions.php:206
1100
- #: modules/meta/meta-keywords.php:196 modules/meta/meta-robots.php:103
1101
- #: modules/user-code/user-code.php:84 modules/files/files.php:165
1102
- #: modules/404s/fofs.php:74 modules/slugs/slugs.php:107
1103
- #: modules/rich-snippets/rich-snippets.php:275
1104
- msgid "Troubleshooting"
1105
  msgstr ""
1106
 
1107
- #: modules/titles/titles.php:454
1108
  msgid ""
1109
- "\r\n"
1110
- "<ul>\r\n"
1111
- "\t<li><strong>Why isn&#8217;t Title Tag Rewriter changing my <code>&lt;"
1112
- "title&gt;</code> tags?</strong><br />Try disabling other SEO plugins, as "
1113
- "they may be conflicting with SEO Ultimate. If you&#8217;re using the default "
1114
- "&#8220;output buffering&#8221; rewrite method, check to make sure your theme "
1115
- "is <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' "
1116
- "target='_blank'>plugin-friendly</a>. If you're using the &#8220;"
1117
- "filtering&#8221; rewrite method, check your theme&#8217;s <code>header.php</"
1118
- "code> file and make sure the <code>&lt;title&gt;</code> tag looks like this: "
1119
- "<code>&lt;title&gt;&lt;?php wp_title(''); ?&gt;&lt;/title&gt;</code>.</li>"
1120
- "\r\n"
1121
- "</ul>\r\n"
1122
  msgstr ""
1123
 
1124
- #: modules/class.su-module.php:620
1125
  msgid ""
1126
- "All the modules on this page have been disabled. You can re-enable them "
1127
- "using the <a href=\"%s\">Module Manager</a>."
1128
  msgstr ""
1129
 
1130
- #: modules/class.su-module.php:969
1131
- msgid "%1$s | %2$s %3$s by %4$s"
1132
  msgstr ""
1133
 
1134
- #: modules/class.su-module.php:1048
1135
- msgid "Your site currently doesn&#8217;t have any public items of this type."
1136
  msgstr ""
1137
 
1138
- #: modules/class.su-module.php:1134
1139
- msgid "&laquo;"
 
 
1140
  msgstr ""
1141
 
1142
- #: modules/class.su-module.php:1135
1143
- msgid "&raquo;"
1144
  msgstr ""
1145
 
1146
- #: modules/class.su-module.php:1142
1147
- msgid "Displaying %s&#8211;%s of %s"
1148
  msgstr ""
1149
 
1150
- #: modules/class.su-module.php:1155 modules/404s/fofs-log.php:113
1151
- msgid "Actions"
1152
  msgstr ""
1153
 
1154
- #: modules/class.su-module.php:1156
1155
- msgid "ID"
1156
  msgstr ""
1157
 
1158
- #: modules/class.su-module.php:1190
1159
- msgid "View"
1160
  msgstr ""
1161
 
1162
- #: modules/class.su-module.php:1192
1163
- msgid "Edit"
1164
  msgstr ""
1165
 
1166
- #: modules/class.su-module.php:1356
1167
- msgid "Settings updated."
1168
  msgstr ""
1169
 
1170
- #: modules/class.su-module.php:1377
1171
- msgid "Save Changes"
1172
  msgstr ""
1173
 
1174
- #: modules/class.su-module.php:1907
1175
  msgid ""
1176
- "Are you sure you want to replace the textbox contents with this default "
1177
- "value?"
1178
  msgstr ""
1179
 
1180
- #: modules/class.su-module.php:1926 modules/settings/settings-data.php:23
1181
- msgid "Reset"
 
 
1182
  msgstr ""
1183
 
1184
- #: modules/class.su-module.php:2583
1185
- msgid "Type a URL or start typing the name of the item you want to link to"
1186
  msgstr ""
1187
 
1188
- #: modules/class.su-module.php:2595
1189
- msgid "Remove this location from this textbox"
1190
  msgstr ""
1191
 
1192
- #: modules/class.su-module.php:2595
1193
- msgid "X"
1194
  msgstr ""
1195
 
1196
- #: modules/noindex/noindex.php:12
1197
- msgid "Noindex Manager"
1198
  msgstr ""
1199
 
1200
- #: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
1201
- #: modules/noindex/noindex.php:67
1202
- msgid "Noindex"
1203
  msgstr ""
1204
 
1205
- #: modules/noindex/noindex.php:43 modules/meta/meta-keywords.php:33
1206
- msgid "Default Values"
1207
  msgstr ""
1208
 
1209
- #: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
1210
- #: modules/autolinks/footer-autolinks.php:210
1211
- #: modules/autolinks/content-autolinks.php:394
1212
- msgid "Nofollow"
1213
  msgstr ""
1214
 
1215
- #: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
1216
- msgid "Use default"
1217
  msgstr ""
1218
 
1219
- #: modules/noindex/noindex.php:63
1220
- msgid "noindex"
 
 
 
 
 
1221
  msgstr ""
1222
 
1223
- #: modules/noindex/noindex.php:64
1224
- msgid "index"
 
 
1225
  msgstr ""
1226
 
1227
- #: modules/noindex/noindex.php:74
1228
- msgid "nofollow"
1229
  msgstr ""
1230
 
1231
- #: modules/noindex/noindex.php:75
1232
- msgid "follow"
1233
  msgstr ""
1234
 
1235
- #: modules/noindex/noindex.php:89
1236
- msgid ""
1237
- "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
1238
- "block indexing of the entire site, regardless of which options are set below."
1239
  msgstr ""
1240
 
1241
- #: modules/noindex/noindex.php:92
1242
- msgid "Prevent indexing of..."
1243
  msgstr ""
1244
 
1245
- #: modules/noindex/noindex.php:93
1246
- msgid "Administration back-end pages"
1247
  msgstr ""
1248
 
1249
- #: modules/noindex/noindex.php:94
1250
- msgid "Author archives"
1251
  msgstr ""
1252
 
1253
- #: modules/noindex/noindex.php:95
1254
- msgid "Blog search pages"
1255
  msgstr ""
1256
 
1257
- #: modules/noindex/noindex.php:96
1258
- msgid "Category archives"
1259
  msgstr ""
1260
 
1261
- #: modules/noindex/noindex.php:97
1262
- msgid "Comment feeds"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1263
  msgstr ""
1264
 
1265
- #: modules/noindex/noindex.php:98
1266
- msgid "Comment subpages"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1267
  msgstr ""
1268
 
1269
- #: modules/noindex/noindex.php:99
1270
- msgid "Date-based archives"
1271
  msgstr ""
1272
 
1273
- #: modules/noindex/noindex.php:100
1274
- msgid "Subpages of the homepage"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1275
  msgstr ""
1276
 
1277
- #: modules/noindex/noindex.php:101
1278
- msgid "Tag archives"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1279
  msgstr ""
1280
 
1281
- #: modules/noindex/noindex.php:102
1282
- msgid "User login/registration pages"
1283
  msgstr ""
1284
 
1285
- #: modules/noindex/noindex.php:165
1286
- msgid "Noindex: Tell search engines not to index this webpage."
1287
  msgstr ""
1288
 
1289
- #: modules/noindex/noindex.php:166
1290
- msgid "Nofollow: Tell search engines not to spider links on this webpage."
1291
  msgstr ""
1292
 
1293
- #: modules/noindex/noindex.php:167
1294
- msgid "Meta Robots Tag:"
1295
  msgstr ""
1296
 
1297
- #: modules/meta/meta-descriptions.php:12
1298
- msgid "Meta Description Editor"
1299
  msgstr ""
1300
 
1301
- #: modules/meta/meta-descriptions.php:13
1302
- msgid "Meta Descriptions"
 
 
 
 
 
1303
  msgstr ""
1304
 
1305
- #: modules/meta/meta-descriptions.php:31
1306
- msgid "Meta Description"
 
 
 
1307
  msgstr ""
1308
 
1309
- #: modules/meta/meta-descriptions.php:50
1310
- msgid "Post Description Format"
1311
  msgstr ""
1312
 
1313
- #: modules/meta/meta-descriptions.php:51
1314
- msgid "Page Description Format"
1315
  msgstr ""
1316
 
1317
- #: modules/meta/meta-descriptions.php:52
1318
- msgid "Category Description Format"
1319
  msgstr ""
1320
 
1321
- #: modules/meta/meta-descriptions.php:53
1322
- msgid "Post Tag Description Format"
1323
  msgstr ""
1324
 
1325
- #: modules/meta/meta-descriptions.php:54
1326
- msgid "Pagination Description Format"
1327
  msgstr ""
1328
 
1329
- #: modules/meta/meta-descriptions.php:62
1330
- msgid "Blog Homepage Meta Description"
1331
  msgstr ""
1332
 
1333
- #: modules/meta/meta-descriptions.php:64
1334
- msgid "Use this blog&#8217s tagline as the default homepage description."
1335
  msgstr ""
1336
 
1337
- #: modules/meta/meta-descriptions.php:65
1338
- msgid "Default Value"
1339
  msgstr ""
1340
 
1341
- #: modules/meta/meta-descriptions.php:155
1342
- msgid "Meta Description:"
1343
  msgstr ""
1344
 
1345
- #: modules/meta/meta-descriptions.php:158
1346
- msgid "You&#8217;ve entered %s characters. Most search engines use up to 140."
1347
  msgstr ""
1348
 
1349
- #: modules/meta/meta-descriptions.php:166
1350
- msgid ""
1351
- "<strong>Description</strong> &mdash; The value of the meta description tag. "
1352
- "The description will often appear underneath the title in search engine "
1353
- "results. Writing an accurate, attention-grabbing description for every post "
1354
- "is important to ensuring a good search results clickthrough rate."
1355
  msgstr ""
1356
 
1357
- #: modules/meta/meta-descriptions.php:175
1358
- msgid ""
1359
- "\r\n"
1360
- "<ul>\r\n"
1361
- "\t<li><strong>What it does:</strong> Meta Descriptions Editor lets you "
1362
- "customize the text that you want to appear under your webpages&#8217; titles "
1363
- "in search results.</li>\r\n"
1364
- "\t<li><strong>Why it helps:</strong> Getting ranked isn&#8217;t enough; once "
1365
- "you're ranked, you need visitors to click on your site in the results. "
1366
- "That&#8217;s where meta descriptions can help. When you provide text that "
1367
- "makes searchers want to visit your site, you can increase your SERP "
1368
- "clickthrough rate and thus increase search traffic.</li>\r\n"
1369
- "\t<li><strong>How to use it:</strong> Enter meta descriptions for your "
1370
- "homepage, posts, pages, etc. as desired, and then click Save Changes. You "
1371
- "can also customize the meta data of an individual post or page by using the "
1372
- "textboxes that Meta Editor adds to the post/page editors.</li>\r\n"
1373
- "</ul>\r\n"
1374
  msgstr ""
1375
 
1376
- #: modules/meta/meta-descriptions.php:186
1377
- msgid ""
1378
- "\r\n"
1379
- "<p>Here&#8217;s information on the various settings:</p>\r\n"
1380
- "\r\n"
1381
- "<ul>\r\n"
1382
- "\t<li><strong>Blog Homepage Meta Description</strong> &mdash; When your blog "
1383
- "homepage appears in search results, it&#8217;ll have a title and a "
1384
- "description. When you insert content into the description field below, the "
1385
- "Meta Editor will add code to your blog homepage (the <code>&lt;meta "
1386
- "name=&quot;description&quot; /&gt;</code> tag) that asks search engines to "
1387
- "use what you&#8217;ve entered as the homepage&#8217;s search results "
1388
- "description.</li>\r\n"
1389
- "\t<li><strong>Use this blog&#8217;s tagline as the default homepage "
1390
- "description.</strong> &mdash; If this box is checked and if the Blog "
1391
- "Homepage Meta Description field is empty, Meta Editor will use your "
1392
- "blog&#8217;s tagline as the meta description. You can edit the blog&#8217;s "
1393
- "tagline under <a href='options-general.php'>Settings &rArr; General</a>.</li>"
1394
- "\r\n"
1395
- "</ul>\r\n"
1396
  msgstr ""
1397
 
1398
- #: modules/meta/meta-descriptions.php:198
1399
- msgid ""
1400
- "\r\n"
1401
- "<ul>\r\n"
1402
- "\t<li><strong>How do I edit the meta description of my homepage?</"
1403
- "strong><br />If you are using a &#8220;blog homepage&#8221; (the default "
1404
- "option of showing your blog posts on your homepage), just use the Blog "
1405
- "Homepage field. If you have configured your <a href='options-reading."
1406
- "php'>Settings &rArr; Reading</a> section to use a &#8220;frontpage&#8221; (i."
1407
- "e. a Page as your homepage), just edit that Page&#8217;s meta description on "
1408
- "the &#8220;Pages&#8221; tab.</li>\r\n"
1409
- "</ul>\r\n"
1410
  msgstr ""
1411
 
1412
- #: modules/meta/meta-descriptions.php:207 modules/meta/meta-keywords.php:197
1413
- #: modules/meta/meta-robots.php:104
1414
- msgid ""
1415
- "\r\n"
1416
- "<ul>\r\n"
1417
- "\t<li>\r\n"
1418
- "\t\t<p><strong>What do I do if my site has multiple meta tags?</strong><br /"
1419
- ">First, try removing your theme&#8217;s built-in meta tags if it has them. "
1420
- "Go to <a href='theme-editor.php' target='_blank'>Appearance &rArr; Editor</"
1421
- "a> and edit <code>header.php</code>. Delete or comment-out any <code>&lt;"
1422
- "meta&gt;</code> tags.</p>\r\n"
1423
- "\t\t<p>If the problem persists, try disabling other SEO plugins that may be "
1424
- "generating meta tags.</p>\r\n"
1425
- "\t\t<p>Troubleshooting tip: Go to <a href='options-general.php?page=seo-"
1426
- "ultimate'>Settings &rArr; SEO Ultimate</a> and enable the &#8220;Insert "
1427
- "comments around HTML code insertions&#8221; option. This will mark SEO "
1428
- "Ultimate&#8217;s meta tags with comments, allowing you to see which meta "
1429
- "tags are generated by SEO Ultimate and which aren&#8217;t.</p>\r\n"
1430
- "\t</li>\r\n"
1431
- "</ul>\r\n"
1432
  msgstr ""
1433
 
1434
- #: modules/meta/meta-keywords.php:12
1435
- msgid "Meta Keywords Editor"
1436
  msgstr ""
1437
 
1438
- #: modules/meta/meta-keywords.php:13 modules/meta/meta-keywords.php:40
1439
- msgid "Meta Keywords"
1440
  msgstr ""
1441
 
1442
- #: modules/meta/meta-keywords.php:56
1443
- msgid "The %d most commonly-used words"
 
 
 
 
 
 
 
 
 
 
1444
  msgstr ""
1445
 
1446
- #: modules/meta/meta-keywords.php:69
1447
- msgid "Sitewide Keywords"
 
1448
  msgstr ""
1449
 
1450
- #: modules/meta/meta-keywords.php:69
1451
- msgid "(Separate with commas)"
1452
  msgstr ""
1453
 
1454
- #: modules/meta/meta-keywords.php:76
1455
- msgid "Blog Homepage Meta Keywords"
1456
  msgstr ""
1457
 
1458
- #: modules/meta/meta-keywords.php:153
1459
- msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
1460
  msgstr ""
1461
 
1462
- #: modules/meta/meta-keywords.php:158
1463
- msgid ""
1464
- "<strong>Keywords</strong> &mdash; The value of the meta keywords tag. The "
1465
- "keywords list gives search engines a hint as to what this post/page is "
1466
- "about. Be sure to separate keywords with commas, like so: <samp>one,two,"
1467
- "three</samp>."
1468
  msgstr ""
1469
 
1470
- #: modules/meta/meta-keywords.php:167
1471
- msgid ""
1472
- "\r\n"
1473
- "<p>Meta Keywords Editor lets you tell search engines what keywords are "
1474
- "associated with the various pages on your site. Modern search engines "
1475
- "don&#8217;t give meta keywords much weight, but the option is there if you "
1476
- "want to use it. You can customize the meta keywords of an individual post or "
1477
- "page by using the textboxes that Meta Editor adds to the post/page editors.</"
1478
- "p>\r\n"
1479
  msgstr ""
1480
 
1481
- #: modules/meta/meta-keywords.php:174
1482
  msgid ""
1483
  "\r\n"
1484
  "<ul>\r\n"
1485
- "\t<li><strong>Sitewide Keywords</strong> &mdash; Here you can enter keywords "
1486
- "that describe the overall subject matter of your entire blog. Use ommas to "
1487
- "separate keywords. These keywords will be put in the <code>&gt;meta "
1488
- "name=&quot;keywords&quot; /&gt;</code> tags of all webpages on the site "
1489
- "(homepage, posts, pages, archives, etc.).</li>\r\n"
1490
- "\t<li><strong>Blog Homepage Meta Keywords</strong> &mdash; These keywords "
1491
- "will be applied only to the <em>blog</em> homepage. Note that if you&#8217;"
1492
- "ve specified a &#8220;front page&#8221; under <a href='options-reading."
1493
- "php'>Settings &rArr; Reading</a>, you&#8217;ll need to edit your frontpage "
1494
- "and set your frontpage keywords there.</li>\r\n"
1495
  "</ul>\r\n"
1496
  msgstr ""
1497
 
1498
- #: modules/meta/meta-keywords.php:184
 
 
 
 
 
 
 
 
1499
  msgid ""
1500
- "\r\n"
1501
- "<ul>\r\n"
1502
- "\t<li>\r\n"
1503
- "\t\t<p><strong>How do I edit the meta keywords of my homepage?</strong><br /"
1504
- ">If you are using a &#8220;blog homepage&#8221; (the default option of "
1505
- "showing your blog posts on your homepage), just use the Blog Homepage field."
1506
- "</p>\r\n"
1507
- "\t\t<p>If you have configured your <a href='options-reading.php'>Settings "
1508
- "&rArr; Reading</a> section to use a &#8220;frontpage&#8221; (i.e. a Page as "
1509
- "your homepage), just edit that Page and use the &#8220;Meta Keywords&#8221; "
1510
- "field in the &#8220;SEO Settings&#8221; box.</p>\r\n"
1511
- "\t</li>\r\n"
1512
- "\t<li><strong>What happens if I add a global keyword that I previously "
1513
- "assigned to individual posts or pages?</strong><br />Don&#8217;t worry; Meta "
1514
- "Keywords Editor will remove duplicate keywords automatically.</li>\r\n"
1515
- "</ul>\r\n"
1516
  msgstr ""
1517
 
1518
- #: modules/meta/webmaster-verify.php:12 modules/meta/webmaster-verify.php:58
1519
- msgid "Webmaster Verification Assistant"
 
1520
  msgstr ""
1521
 
1522
- #: modules/meta/webmaster-verify.php:13
1523
- msgid "W.M. Verification"
 
1524
  msgstr ""
1525
 
1526
- #: modules/meta/webmaster-verify.php:47
1527
- msgid "Google Webmaster Tools"
 
1528
  msgstr ""
1529
 
1530
- #: modules/meta/webmaster-verify.php:48
1531
- msgid "Yahoo! Site Explorer"
 
1532
  msgstr ""
1533
 
1534
- #: modules/meta/webmaster-verify.php:49
1535
- msgid "Bing Webmaster Center"
 
1536
  msgstr ""
1537
 
1538
- #: modules/meta/webmaster-verify.php:59
1539
- msgid ""
1540
- "\r\n"
1541
- "<ul>\r\n"
1542
- "\t<li><strong>What it does:</strong> Webmaster Verification Assistant lets "
1543
- "you enter in verification codes for the webmaster portals of the 3 leading "
1544
- "search engines.</li>\r\n"
1545
- "\t<li><strong>Why it helps:</strong> Webmaster Verification Assistant "
1546
- "assists you in obtaining access to webmaster portals, which can provide you "
1547
- "with valuable SEO tools.</li>\r\n"
1548
- "\t<li><strong>How to use it:</strong> Use a search engine to locate the "
1549
- "webmaster portal you&#8217;re interested in, sign up at the portal, and then "
1550
- "obtain a verification code. Once you have the code, you can paste it in "
1551
- "here, click Save Changes, then return to the portal to verify that you own "
1552
- "the site. Once that&#8217;s done, you'll have access to the portal&#8217;s "
1553
- "SEO tools.</li>\r\n"
1554
- "</ul>\r\n"
1555
  msgstr ""
1556
 
1557
- #: modules/meta/meta-robots.php:12
1558
- msgid "Meta Robot Tags Editor"
 
1559
  msgstr ""
1560
 
1561
- #: modules/meta/meta-robots.php:13
1562
- msgid "Meta Robot Tags"
 
 
1563
  msgstr ""
1564
 
1565
- #: modules/meta/meta-robots.php:22
1566
- msgid "Global"
 
 
1567
  msgstr ""
1568
 
1569
- #: modules/meta/meta-robots.php:28
1570
- msgid "Spider Instructions"
 
1571
  msgstr ""
1572
 
1573
- #: modules/meta/meta-robots.php:30
1574
- msgid ""
1575
- "Don&#8217t use this site&#8217s Open Directory description in search results."
1576
  msgstr ""
1577
 
1578
- #: modules/meta/meta-robots.php:31
1579
- msgid ""
1580
- "Don&#8217t use this site&#8217s Yahoo! Directory description in search "
1581
- "results."
1582
  msgstr ""
1583
 
1584
- #: modules/meta/meta-robots.php:32
1585
- msgid "Don&#8217t cache or archive this site."
1586
  msgstr ""
1587
 
1588
- #: modules/meta/meta-robots.php:54
1589
  msgid ""
1590
- "\r\n"
1591
- "<ul>\r\n"
1592
- "\t<li><strong>What it does:</strong> Meta Robot Tags Editor lets you convey "
1593
- "instructions to search engine spiders, as well as prohibit the spiders from "
1594
- "indexing certain webpages on your blog using the <code>&lt;meta name=&quot;"
1595
- "robots&quot; content=&quot;noindex&quot; /&gt;</code> tag.</li>\r\n"
1596
- "\t<li><strong>Why it helps:</strong> The &#8220;Global&#8221; tab lets you "
1597
- "stop DMOZ or Yahoo! Directory from overriding your custom meta descriptions, "
1598
- "as well as prevent spiders from caching your site if you so desire. The "
1599
- "&#8220;Default Values&#8221; tab lets you deindex entire sections of your "
1600
- "site that contain content unimportant to visitors (e.g. the administration "
1601
- "section), or sections of your site that mostly contain duplicate content (e."
1602
- "g. date archives). The editor tabs can do something similar, but for "
1603
- "individual content items. By removing webpages from search results that "
1604
- "visitors find unhelpful, you can help increase the focus on your more useful "
1605
- "content.</li>\r\n"
1606
- "\t<li><strong>How to use it:</strong> Adjust the settings as desired, and "
1607
- "then click Save Changes. You can refer to the &#8220;Settings Help&#8221; "
1608
- "tab for information on the settings available. You can also use the editor "
1609
- "tabs to deindex individual content items on your site as well as enable the "
1610
- "&#8220;nofollow&#8221; meta parameter that will nullify all outgoing links "
1611
- "on a specific webpage.</li>\r\n"
1612
- "</ul>\r\n"
1613
  msgstr ""
1614
 
1615
- #: modules/meta/meta-robots.php:65
1616
- msgid ""
1617
- "\r\n"
1618
- "<p>Here&#8217;s information on the various settings:</p>\r\n"
1619
- "\r\n"
1620
- "<ul>\r\n"
1621
- "\t<li>\r\n"
1622
- "\t\t<strong>Global: Spider Instructions</strong>\r\n"
1623
- "\t\t<ul>\r\n"
1624
- "\t\t\t<li><strong>Don't use this site's Open Directory / Yahoo! Directory "
1625
- "description in search results.</strong> &mdash; If your site is listed in "
1626
- "the <a href='http://www.dmoz.org/' target='_blank'>Open Directory (DMOZ)</a> "
1627
- "or the <a href='http://dir.yahoo.com/' target='_blank'>Yahoo! Directory</a>, "
1628
- "some search engines may use your directory listing as the meta description. "
1629
- "These boxes tell search engines not to do that and will give you full "
1630
- "control over your meta descriptions. These settings have no effect if your "
1631
- "site isn&#8217;t listed in the Open Directory or Yahoo! Directory "
1632
- "respectively.</li>\r\n"
1633
- "\t\t\t<li>Don&#8217;t cache or archive this site.</li> &mdash; When you "
1634
- "check this box, Meta Editor will ask search engines (Google, Yahoo!, Bing, "
1635
- "etc.) and archivers (Archive.org, etc.) to <em>not</em> make cached or "
1636
- "archived &#8220;copies&#8221; of your site.</li>\r\n"
1637
- "\t\t</ul>\r\n"
1638
- "\t</li>\r\n"
1639
- "\t<li>\r\n"
1640
- "\t\t<strong>Default Values: Prevent indexing of...</strong>\r\n"
1641
- "\t\t<ul>\r\n"
1642
- "\t\t\t<li><strong>Administration back-end pages</strong> &mdash; Tells "
1643
- "spiders not to index the administration area (the part you&#8217;re in now), "
1644
- "in the unlikely event a spider somehow gains access to the administration. "
1645
- "Recommended.</li>\r\n"
1646
- "\t\t\t<li><strong>Author archives</strong> &mdash; Tells spiders not to "
1647
- "index author archives. Useful if your blog only has one author.</li>\r\n"
1648
- "\t\t\t<li><strong>Blog search pages</strong> &mdash; Tells spiders not to "
1649
- "index the result pages of WordPress's blog search function. Recommended.</li>"
1650
- "\r\n"
1651
- "\t\t\t<li><strong>Category archives</strong> &mdash; Tells spiders not to "
1652
- "index category archives. Recommended only if you don't use categories.</li>"
1653
- "\r\n"
1654
- "\t\t\t<li><strong>Comment feeds</strong> &mdash; Tells spiders not to index "
1655
- "the RSS feeds that exist for every post's comments. (These comment feeds are "
1656
- "totally separate from your normal blog feeds.)</li>\r\n"
1657
- "\t\t\t<li><strong>Comment subpages</strong> &mdash; Tells spiders not to "
1658
- "index posts' comment subpages.</li>\r\n"
1659
- "\t\t\t<li><strong>Date-based archives</strong> &mdash; Tells spiders not to "
1660
- "index day/month/year archives. Recommended, since these pages have little "
1661
- "keyword value.</li>\r\n"
1662
- "\t\t\t<li><strong>Subpages of the homepage</strong> &mdash; Tells spiders "
1663
- "not to index the homepage's subpages (page 2, page 3, etc). Recommended.</li>"
1664
- "\r\n"
1665
- "\t\t\t<li><strong>Tag archives</strong> &mdash; Tells spiders not to index "
1666
- "tag archives. Recommended only if you don't use tags.</li>\r\n"
1667
- "\t\t\t<li>User login/registration pages</strong> &mdash; Tells spiders not "
1668
- "to index WordPress's user login and registration pages. Recommended.</li>\r\n"
1669
- "\t\t</ul>\r\n"
1670
- "\t</li>\r\n"
1671
- "\t<li>\r\n"
1672
- "\t\t<strong>Editor Tabs (Posts/Pages/etc.)</strong>\r\n"
1673
- "\t\t<ul>\r\n"
1674
- "\t\t\t<li><strong>Noindex</strong> &mdash; Checking this for an item will "
1675
- "ask search engines to remove that item&#8217;s webpage from their indices. "
1676
- "Use this to remove pages that you don&#8217;t want showing up in search "
1677
- "results (such as a Privacy Policy page, for example).</li>\r\n"
1678
- "\t\t\t<li><strong>Nofollow</strong> &mdash; Checking this for an item will "
1679
- "tell search engines to ignore the links to other webpages that are on that "
1680
- "item&#8217;s webpage. Note: this is page-level &#8220;meta nofollow,&#8221; "
1681
- "not to be confused with link-level &#8220;rel nofollow.&#8221;</li>\r\n"
1682
- "\t\t</ul>\r\n"
1683
- "\t</li>\r\n"
1684
- "</ul>\r\n"
1685
  msgstr ""
1686
 
1687
- #: modules/canonical/canonical.php:12 modules/canonical/canonical.php:201
1688
- msgid "Canonicalizer"
1689
  msgstr ""
1690
 
1691
- #: modules/canonical/canonical.php:39
1692
- msgid ""
1693
- "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> meta tags."
1694
  msgstr ""
1695
 
1696
- #: modules/canonical/canonical.php:40
1697
- msgid "Send <code>rel=&quot;canonical&quot;</code> HTTP headers."
1698
  msgstr ""
1699
 
1700
- #: modules/canonical/canonical.php:41
1701
- msgid "Redirect requests for nonexistent pagination."
1702
  msgstr ""
1703
 
1704
- #: modules/canonical/canonical.php:202
1705
- msgid ""
1706
- "\r\n"
1707
- "<ul>\r\n"
1708
- "\t<li>\r\n"
1709
- "\t\t<p><strong>What it does:</strong> Canonicalizer improves on two "
1710
- "WordPress features to minimize possible exact-content duplication penalties. "
1711
- "The <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> tags setting "
1712
- "improves on the canonical tags feature of WordPress 2.9 and above by "
1713
- "encompassing much more of your site than just your posts and Pages.</p>\r\n"
1714
- "\t\t<p>The nonexistent pagination redirect feature fills a gap in "
1715
- "WordPress's built-in canonicalization functionality: for example, if a URL "
1716
- "request is made for page 6 of a category archive, and that category doesn't "
1717
- "have a page 6, then by default, depending on the context, WordPress will "
1718
- "display a blank page, or it will display the content of the closest page "
1719
- "number available, without issuing a 404 error or a 301 redirect (thus "
1720
- "creating two or more identical webpages). This duplicate-content situation "
1721
- "can happen when you, for example, remove many posts from a category, thus "
1722
- "reducing the amount of pagination needed in the category's archive. The "
1723
- "Canonicalizer's feature fixes that behavior by issuing 301 redirects to page "
1724
- "1 of the paginated section in question.</p>\r\n"
1725
- "\t</li>\r\n"
1726
- "\t<li><strong>Why it helps:</strong> These features will point Google to the "
1727
- "correct URL for your homepage and each of your posts, Pages, categories, "
1728
- "tags, date archives, and author archives. That way, if Google comes across "
1729
- "an alternate URL by which one of those items can be accessed, it will be "
1730
- "able to find the correct URL and won't penalize you for having two identical "
1731
- "pages on your site.</li>\r\n"
1732
- "\t<li><strong>How to use it:</strong> Just check all three checkboxes and "
1733
- "click Save Changes. SEO Ultimate will do the rest.</li>\r\n"
1734
- "</ul>\r\n"
1735
  msgstr ""
1736
 
1737
- #: modules/link-nofollow/link-nofollow.php:12
1738
- msgid "Nofollow Manager"
1739
  msgstr ""
1740
 
1741
- #: modules/link-nofollow/link-nofollow.php:53
1742
- msgid "Add the nofollow attribute to..."
1743
  msgstr ""
1744
 
1745
- #: modules/link-nofollow/link-nofollow.php:55
1746
- msgid "Adjacent post links"
1747
  msgstr ""
1748
 
1749
- #: modules/link-nofollow/link-nofollow.php:56
1750
- msgid "Category links (after posts)"
1751
  msgstr ""
1752
 
1753
- #: modules/link-nofollow/link-nofollow.php:57
1754
- msgid "Category links (in lists)"
1755
  msgstr ""
1756
 
1757
- #: modules/link-nofollow/link-nofollow.php:58
1758
- msgid "Comment anchor links"
1759
  msgstr ""
1760
 
1761
- #: modules/link-nofollow/link-nofollow.php:59
1762
- msgid "Comment feed links"
1763
  msgstr ""
1764
 
1765
- #: modules/link-nofollow/link-nofollow.php:60
1766
- msgid "Date-based archive links"
1767
  msgstr ""
1768
 
1769
- #: modules/link-nofollow/link-nofollow.php:61
1770
- msgid "Pagination navigation links (all)"
1771
  msgstr ""
1772
 
1773
- #: modules/link-nofollow/link-nofollow.php:62
1774
- msgid "Pagination navigation links (on blog home only)"
1775
  msgstr ""
1776
 
1777
- #: modules/link-nofollow/link-nofollow.php:63
1778
- msgid "&#8220;Read more&#8221; links"
 
1779
  msgstr ""
1780
 
1781
- #: modules/link-nofollow/link-nofollow.php:64
1782
- msgid "Registration link"
1783
  msgstr ""
1784
 
1785
- #: modules/link-nofollow/link-nofollow.php:65
1786
- msgid "Login link"
1787
  msgstr ""
1788
 
1789
- #: modules/link-nofollow/link-nofollow.php:66
1790
- msgid "Tag links (after posts)"
1791
  msgstr ""
1792
 
1793
- #: modules/link-nofollow/link-nofollow.php:67
1794
- msgid "Tag links (in lists and clouds)"
 
 
1795
  msgstr ""
1796
 
1797
- #: modules/link-nofollow/link-nofollow.php:76
1798
- msgid "When displaying page lists, nofollow links to this page"
 
 
1799
  msgstr ""
1800
 
1801
- #: modules/link-nofollow/link-nofollow.php:76
1802
- msgid "Nofollow:"
 
 
1803
  msgstr ""
1804
 
1805
- #: modules/link-nofollow/link-nofollow.php:131
 
 
 
 
1806
  msgid ""
1807
- "\r\n"
1808
- "<p>Nofollow Manager adds the <code>rel=&quot;nofollow&quot;</code> attribute "
1809
- "to types of links that you specify. The <code>rel=&quot;nofollow&quot;</"
1810
- "code> attribute prevents a link from passing PageRank.</p>\r\n"
1811
- "<p>If you&#8217;re migrating to SEO Ultimate from another plugin, Nofollow "
1812
- "Manager can help you maintain your existing settings (as part of an &#8220;"
1813
- "if it ain&#8217;t broke don&#8217;t fix it&#8221; strategy). In other cases, "
1814
- "however, we recommend not using the Nofollow Manager because in 2008 Google "
1815
- "disabled the ability to use the <code>rel=&quot;nofollow&quot;</code> "
1816
- "attribute for PageRank sculpting.</p>\r\n"
1817
  msgstr ""
1818
 
1819
- #: modules/user-code/user-code.php:12
1820
- msgid "Code Inserter"
1821
  msgstr ""
1822
 
1823
- #: modules/user-code/user-code.php:27
1824
- msgid "Everywhere"
1825
  msgstr ""
1826
 
1827
- #: modules/user-code/user-code.php:34
1828
- msgid "&lt;head&gt; Tag"
1829
  msgstr ""
1830
 
1831
- #: modules/user-code/user-code.php:35
1832
- msgid "Before Item Content"
1833
  msgstr ""
1834
 
1835
- #: modules/user-code/user-code.php:36
1836
- msgid "After Item Content"
 
1837
  msgstr ""
1838
 
1839
- #: modules/user-code/user-code.php:37
1840
- msgid "Footer"
1841
  msgstr ""
1842
 
1843
- #: modules/user-code/user-code.php:51
1844
- msgid "Code Inserter module"
1845
  msgstr ""
1846
 
1847
- #: modules/user-code/user-code.php:71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1848
  msgid ""
1849
- "\r\n"
1850
- "<ul>\r\n"
1851
- "\t<li><strong>What it does:</strong> Code Inserter can add custom HTML code "
1852
- "to various parts of your site.</li>\r\n"
1853
- "\t<li>\r\n"
1854
- "\t\t<p><strong>Why it helps:</strong> Code Inserter is useful for inserting "
1855
- "third-party code that can improve the SEO or user experience of your site. "
1856
- "For example, you can use Code Inserter to add Google Analytics code to your "
1857
- "footer, Feedburner FeedFlares or social media widgets after your posts, or "
1858
- "Google AdSense section targeting code before/after your content.</p>\r\n"
1859
- "\t\t<p>Using Code Inserter is easier than editing your theme manually "
1860
- "because your custom code is stored in one convenient location and will be "
1861
- "added to your site even if you change your site&#8217;s theme.</p>\r\n"
1862
- "\t</li>\r\n"
1863
- "\t<li><strong>How to use it:</strong> Just paste the desired HTML code into "
1864
- "the appropriate fields and then click Save Changes.</li>\r\n"
1865
- "</ul>\r\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1866
  msgstr ""
1867
 
1868
- #: modules/user-code/user-code.php:85
1869
- msgid ""
1870
- "\r\n"
1871
- "<ul>\r\n"
1872
- "\t<li><strong>Why doesn't my code appear on my site?</strong><br />It&#8217;"
1873
- "s possible that your theme doesn't have the proper &#8220;hooks,&#8221; "
1874
- "which are pieces of code that let WordPress plugins insert custom HTML into "
1875
- "your theme. <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' "
1876
- "target='_blank'>Click here</a> for information on how to check your theme "
1877
- "and add the hooks if needed.</li>\r\n"
1878
- "</ul>\r\n"
1879
  msgstr ""
1880
 
1881
- #: modules/modules/modules.php:12
1882
- msgid "Module Manager"
1883
  msgstr ""
1884
 
1885
- #: modules/modules/modules.php:13
1886
- msgid "Modules"
1887
  msgstr ""
1888
 
1889
- #: modules/modules/modules.php:41
1890
- msgid ""
1891
- "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
1892
- "&#8221; By default, most of these modules are listed in the &#8220;"
1893
- "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
1894
- "you can view documentation by clicking the tabs in the upper-right-hand "
1895
- "corner of your administration screen."
1896
  msgstr ""
1897
 
1898
- #: modules/modules/modules.php:43
1899
  msgid ""
1900
- "The Module Manager lets you disable or hide modules you don&#8217;t use. "
1901
- "You can also silence modules from displaying bubble alerts on the menu."
1902
  msgstr ""
1903
 
1904
- #: modules/modules/modules.php:47
1905
- msgid "Modules updated."
1906
  msgstr ""
1907
 
1908
- #: modules/modules/modules.php:52
1909
- msgid "Status"
1910
  msgstr ""
1911
 
1912
- #: modules/modules/modules.php:53
1913
- msgid "Module"
1914
  msgstr ""
1915
 
1916
- #: modules/modules/modules.php:66
1917
- msgid "Enabled"
1918
  msgstr ""
1919
 
1920
- #: modules/modules/modules.php:67
1921
- msgid "Silenced"
1922
  msgstr ""
1923
 
1924
- #: modules/modules/modules.php:68
1925
- msgid "Hidden"
1926
  msgstr ""
1927
 
1928
- #: modules/modules/modules.php:69
1929
- msgid "Disabled"
1930
  msgstr ""
1931
 
1932
- #: modules/modules/modules.php:161
1933
- msgid "Options Help"
1934
  msgstr ""
1935
 
1936
- #: modules/modules/modules.php:162
1937
- msgid ""
1938
- "\r\n"
1939
- "<p>The Module Manager lets you customize the visibility and accessibility of "
1940
- "each module; here are the options available:</p>\r\n"
1941
- "<ul>\r\n"
1942
- "\t<li><strong>Enabled</strong> &mdash; The default option. The module will "
1943
- "be fully enabled and accessible.</li>\r\n"
1944
- "\t<li><strong>Silenced</strong> &mdash; The module will be enabled and "
1945
- "accessible, but it won't be allowed to display numeric bubble alerts on the "
1946
- "menu.</li>\r\n"
1947
- "\t<li><strong>Hidden</strong> &mdash; The module's functionality will be "
1948
- "enabled, but the module won't be visible on the SEO menu. You will still be "
1949
- "able to access the module's admin page by clicking on its title in the "
1950
- "Module Manager table.</li>\r\n"
1951
- "\t<li><strong>Disabled</strong> &mdash; The module will be completely "
1952
- "disabled and inaccessible.</li>\r\n"
1953
- "</ul>\r\n"
1954
  msgstr ""
1955
 
1956
- #: modules/modules/modules.php:175
 
 
 
 
1957
  msgid ""
1958
- "\r\n"
1959
- "<ul>\r\n"
1960
- "\t<li><strong>What are modules?</strong><br />SEO Ultimate&#8217;s features "
1961
- "are divided into groups called &#8220;modules.&#8221; SEO Ultimate&#8217;s "
1962
- "&#8220;Module Manager&#8221; lets you enable or disable each of these groups "
1963
- "of features. This way, you can pick-and-choose which SEO Ultimate features "
1964
- "you want.</li>\r\n"
1965
- "\t<li><strong>Can I access a module again after I&#8217;ve hidden it?</"
1966
- "strong><br />Yes. Just go to the Module Manager and click the module&#8217;s "
1967
- "title to open its admin page. If you&#8217;d like to put the module back in "
1968
- "the &#8220;SEO&#8221; menu, just re-enable the module in the Module Manager "
1969
- "and click &#8220;Save Changes.&#8221;</li>\r\n"
1970
- "\t<li><strong>How do I disable the number bubbles on the &#8220;SEO&#8221; "
1971
- "menu?</strong><br />Just go to the Module Manager and select the &#8220;"
1972
- "Silenced&#8221; option for any modules generating number bubbles. Then click "
1973
- "&#8220;Save Changes.&#8221;</li>\r\n"
1974
- "</ul>\r\n"
1975
  msgstr ""
1976
 
1977
- #: modules/permalinks/permalinks.php:15
1978
- msgid "Permalink Tweaker"
1979
  msgstr ""
1980
 
1981
- #: modules/permalinks/permalinks.php:44
1982
- msgid ""
1983
- "To use the Permalinks Tweaker, you must disable default (query-string) "
1984
- "permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
1985
  msgstr ""
1986
 
1987
- #: modules/permalinks/permalinks.php:62
1988
- msgid "%1$s (turn <code>%2$s</code> into <code>%3$s</code>)"
1989
  msgstr ""
1990
 
1991
- #: modules/permalinks/permalinks.php:69
1992
- msgid "Remove the URL bases of..."
1993
  msgstr ""
1994
 
1995
- #: modules/files/files.php:14
1996
- msgid "File Editor"
1997
  msgstr ""
1998
 
1999
- #: modules/files/files.php:53
2000
- msgid ""
2001
- "A .htaccess file exists, but it&#8217;s not writable. You can edit it here "
2002
- "once the file permissions are corrected."
2003
  msgstr ""
2004
 
2005
- #: modules/files/files.php:59
2006
- msgid ""
2007
- "WordPress won&#8217;t be able to display your robots.txt file because the "
2008
- "default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
2009
- "structure</a> is in use."
2010
  msgstr ""
2011
 
2012
- #: modules/files/files.php:66
2013
- msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
2014
  msgstr ""
2015
 
2016
- #: modules/files/files.php:70
2017
- msgid "Enable this custom robots.txt file and disable the default file"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2018
  msgstr ""
2019
 
2020
- #: modules/files/files.php:71
2021
- msgid "Let other plugins add rules to my custom robots.txt file"
2022
  msgstr ""
2023
 
2024
- #: modules/files/files.php:72
2025
- msgid "robots.txt Settings"
2026
  msgstr ""
2027
 
2028
- #: modules/files/files.php:75
2029
- msgid ""
2030
- "Please realize that incorrectly editing your robots.txt file could block "
2031
- "search engines from your site."
2032
  msgstr ""
2033
 
2034
- #: modules/files/files.php:79
2035
- msgid ".htaccess"
2036
  msgstr ""
2037
 
2038
- #: modules/files/files.php:82
2039
  msgid ""
2040
- "Also, incorrectly editing your .htaccess file could disable your entire "
2041
- "website. Edit with caution!"
2042
  msgstr ""
2043
 
2044
- #: modules/files/files.php:134
2045
  msgid ""
2046
- "Please note that your privacy settings won&#8217;t have any effect on your "
2047
- "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
2048
  msgstr ""
2049
 
2050
- #: modules/files/files.php:145
 
 
 
 
2051
  msgid ""
2052
  "\r\n"
2053
  "<ul>\r\n"
2054
- "\t<li><strong>What it does:</strong> The File Editor module lets you edit "
2055
- "two important SEO-related files: robots.txt and .htaccess.</li>\r\n"
2056
- "\t<li><strong>Why it helps:</strong> You can use the <a href='http://www."
2057
- "robotstxt.org/robotstxt.html' target='_blank'>robots.txt file</a> to give "
2058
- "instructions to search engine spiders. You can use the <a href='http://httpd."
2059
- "apache.org/docs/2.2/howto/htaccess.html' target='_blank'>.htaccess file</a> "
2060
- "to implement advanced SEO strategies (URL rewriting, regex redirects, etc.). "
2061
- "SEO Ultimate makes editing these files easier than ever.</li>\r\n"
2062
- "\t<li><strong>How to use it:</strong> Edit the files as desired, then click "
2063
- "Save Changes. If you create a custom robots.txt file, be sure to enable it "
2064
- "with the checkbox.</li>\r\n"
 
 
 
 
 
 
 
 
 
2065
  "</ul>\r\n"
2066
  msgstr ""
2067
 
2068
- #: modules/files/files.php:156
2069
  msgid ""
2070
  "\r\n"
2071
- "<ul>\r\n"
2072
- "\t<li><strong>Will my robots.txt edits remain if I disable the File Editor?</"
2073
- "strong><br />No. On a WordPress blog, the robots.txt file is dynamically "
2074
- "generated just like your posts and Pages. If you disable the File Editor "
2075
- "module or the entire SEO Ultimate plugin, the File Editor won&#8217;t be "
2076
- "able to insert your custom code into the robots.txt file anymore.</li>\r\n"
2077
- "\t<li><strong>Will my .htaccess edits remain if I disable the File Editor?</"
2078
- "strong><br />Yes. The .htaccess file is static. Your edits will remain even "
2079
- "if you disable SEO Ultimate or its File Editor module.</li>\r\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2080
  "</ul>\r\n"
2081
  msgstr ""
2082
 
2083
- #: modules/files/files.php:166
 
2084
  msgid ""
2085
  "\r\n"
2086
  "<ul>\r\n"
2087
- "\t<li><strong>Why do I get a &#8220;500 Server Error&#8221; after using the "
2088
- "File Editor?</strong><br />You may have inserted code into your .htaccess "
2089
- "file that your web server can't understand. As the File Editor warns, "
2090
- "incorrectly editing your .htaccess file can disable your entire website in "
2091
- "this way. To restore your site, you'll need to use an FTP client (or your "
2092
- "web host's File Manager) to edit or rename your .htaccess file. If you need "
2093
- "help, please contact your web host.</li>\r\n"
2094
- "\t<li><strong>Where did my .htaccess edits go?</strong><br />The .htaccess "
2095
- "file is static, so SEO Ultimate doesn't have total control over it. It&#8217;"
2096
- "s possible that WordPress, another plugin, or other software may overwrite "
2097
- "your .htaccess file. If you have a backup of your blog&#8217;s files, you "
2098
- "can try recovering your edits from there.</li>\r\n"
 
 
2099
  "</ul>\r\n"
2100
  msgstr ""
2101
 
2102
- #: modules/settings/settings.php:12
2103
- msgid "Plugin Settings"
2104
  msgstr ""
2105
 
2106
- #: modules/settings/settings.php:13
2107
- msgid "SEO Ultimate Plugin Settings"
2108
  msgstr ""
2109
 
2110
- #: modules/settings/settings.php:23
2111
- msgid ""
2112
- "\r\n"
2113
- "<p>The Settings module lets you manage settings related to the SEO Ultimate "
2114
- "plugin as a whole.</p>\r\n"
2115
  msgstr ""
2116
 
2117
- #: modules/settings/settings.php:29 modules/settings/global-settings.php:18
2118
- msgid "Global Settings"
2119
  msgstr ""
2120
 
2121
- #: modules/settings/settings.php:30
2122
- msgid ""
2123
- "\r\n"
2124
- "<p>Here&#8217;s information on some of the settings:</p>\r\n"
2125
- "<ul>\r\n"
2126
- "\t<li><strong>Enable nofollow&#8217;d attribution link</strong> &mdash; If "
2127
- "enabled, the plugin will display an attribution link on your site.</li>\r\n"
2128
- "\t<li><strong>Notify me about unnecessary active plugins</strong> &mdash; If "
2129
- "enabled, SEO Ultimate will add notices to your &#8220;Plugins&#8221; "
2130
- "administration page if you have any other plugins installed whose "
2131
- "functionality SEO Ultimate replaces.</li>\r\n"
2132
- "\t<li><strong>Insert comments around HTML code insertions</strong> &mdash; "
2133
- "If enabled, SEO Ultimate will use HTML comments to identify all code it "
2134
- "inserts into your <code>&lt;head&gt;</code> tag. This is useful if you&#8217;"
2135
- "re trying to figure out whether or not SEO Ultimate is inserting a certain "
2136
- "piece of header code.</li>\r\n"
2137
- "</ul>\r\n"
2138
  msgstr ""
2139
 
2140
- #: modules/settings/settings.php:42
2141
- msgid ""
2142
- "\r\n"
2143
- "<ul>\r\n"
2144
- "\t<li>\r\n"
2145
- "\t\t<p><strong>Why doesn&#8217;t the settings exporter include all my data "
2146
- "in an export?</strong><br />The settings export/import system is designed to "
2147
- "facilitate moving settings between sites. It is NOT a replacement for "
2148
- "keeping your database backed up. The settings exporter doesn&#8217;t include "
2149
- "data that is specific to your site. For example, logged 404 errors are not "
2150
- "included because those 404 errors only apply to your site, not another site. "
2151
- "Also, post/page titles/meta are not included because the site into which you "
2152
- "import the file could have totally different posts/pages located under the "
2153
- "same ID numbers.</p>\r\n"
2154
- "\t\t<p>If you&#8217;re moving a site to a different server or restoring a "
2155
- "crashed site, you should do so with database backup/restore.</p>\r\n"
2156
- "\t</li>\r\n"
2157
- "</ul>\r\n"
2158
  msgstr ""
2159
 
2160
- #: modules/settings/settings-data.php:16
2161
- msgid "Settings Data Manager"
2162
  msgstr ""
2163
 
2164
- #: modules/settings/settings-data.php:17
2165
- msgid "Manage Settings Data"
2166
  msgstr ""
2167
 
2168
- #: modules/settings/settings-data.php:21
2169
- msgid "Import"
2170
  msgstr ""
2171
 
2172
- #: modules/settings/settings-data.php:22
2173
- msgid "Export"
2174
  msgstr ""
2175
 
2176
- #: modules/settings/settings-data.php:82
2177
- msgid "Settings successfully imported."
2178
  msgstr ""
2179
 
2180
- #: modules/settings/settings-data.php:84
2181
- msgid ""
2182
- "The uploaded file is not in the proper format. Settings could not be "
2183
- "imported."
2184
  msgstr ""
2185
 
2186
- #: modules/settings/settings-data.php:86
2187
- msgid "The settings file could not be uploaded successfully."
2188
  msgstr ""
2189
 
2190
- #: modules/settings/settings-data.php:89
2191
- msgid ""
2192
- "Settings could not be imported because no settings file was selected. Please "
2193
- "click the &#8220;Browse&#8221; button and select a file to import."
2194
  msgstr ""
2195
 
2196
- #: modules/settings/settings-data.php:130
2197
  msgid ""
2198
- "The uploaded file is not in the proper format. Links could not be imported."
2199
- msgstr ""
2200
-
2201
- #: modules/settings/settings-data.php:172
2202
- msgid "Links successfully imported."
2203
  msgstr ""
2204
 
2205
- #: modules/settings/settings-data.php:175
2206
- msgid "The CSV file could not be uploaded successfully."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2207
  msgstr ""
2208
 
2209
- #: modules/settings/settings-data.php:178
2210
  msgid ""
2211
- "Links could not be imported because no CSV file was selected. Please click "
2212
- "the &#8220;Browse&#8221; button and select a file to import."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2213
  msgstr ""
2214
 
2215
- #: modules/settings/settings-data.php:188
2216
- msgid "Import SEO Ultimate Settings File"
 
 
 
 
 
 
 
 
 
 
2217
  msgstr ""
2218
 
2219
- #: modules/settings/settings-data.php:190
2220
- msgid ""
2221
- "You can use this form to upload and import an SEO Ultimate settings file "
2222
- "stored on your computer. (These files can be created using the Export tool.) "
2223
- "Note that importing a file will overwrite your existing settings with those "
2224
- "in the file."
2225
  msgstr ""
2226
 
2227
- #: modules/settings/settings-data.php:194
2228
- msgid ""
2229
- "Are you sure you want to import this settings file? This will overwrite your "
2230
- "current settings and cannot be undone."
2231
  msgstr ""
2232
 
2233
- #: modules/settings/settings-data.php:195
2234
- msgid "Import Settings File"
2235
  msgstr ""
2236
 
2237
- #: modules/settings/settings-data.php:201
2238
- msgid "Import Deeplink Juggernaut CSV File"
2239
  msgstr ""
2240
 
2241
- #: modules/settings/settings-data.php:203
2242
- msgid ""
2243
- "You can use this form to upload and import a Deeplink Juggernaut CSV file "
2244
- "stored on your computer. (These files can be created using the Export tool.) "
2245
- "Note that importing a file will overwrite your existing links with those in "
2246
- "the file."
2247
  msgstr ""
2248
 
2249
- #: modules/settings/settings-data.php:207
2250
- msgid ""
2251
- "Are you sure you want to import this CSV file? This will overwrite your "
2252
- "current Deeplink Juggernaut links and cannot be undone."
2253
  msgstr ""
2254
 
2255
- #: modules/settings/settings-data.php:208
2256
- msgid "Import CSV File"
2257
  msgstr ""
2258
 
2259
- #: modules/settings/settings-data.php:223
2260
- msgid "Import from Other Plugins"
 
 
 
 
2261
  msgstr ""
2262
 
2263
- #: modules/settings/settings-data.php:225
2264
  msgid ""
2265
- "You can import settings and data from these plugins. Clicking a plugin&#8217;"
2266
- "s name will take you to the importer page, where you can customize "
2267
- "parameters and start the import."
 
 
 
 
2268
  msgstr ""
2269
 
2270
- #: modules/settings/settings-data.php:245
2271
- msgid "Export SEO Ultimate Settings File"
 
 
 
 
 
 
 
 
 
 
 
 
 
2272
  msgstr ""
2273
 
2274
- #: modules/settings/settings-data.php:247
2275
  msgid ""
2276
- "You can use this export tool to download an SEO Ultimate settings file to "
2277
- "your computer."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2278
  msgstr ""
2279
 
2280
- #: modules/settings/settings-data.php:249
2281
- msgid ""
2282
- "A settings file includes the data of every checkbox and textbox of every "
2283
- "installed module. It does NOT include site-specific data like logged 404s or "
2284
- "post/page title/meta data (this data would be included in a standard "
2285
- "database backup, however)."
2286
  msgstr ""
2287
 
2288
- #: modules/settings/settings-data.php:252
2289
- msgid "Download Settings File"
 
 
 
 
2290
  msgstr ""
2291
 
2292
- #: modules/settings/settings-data.php:257
2293
- msgid "Export Deeplink Juggernaut CSV File"
2294
  msgstr ""
2295
 
2296
- #: modules/settings/settings-data.php:259
2297
  msgid ""
2298
- "You can use this export tool to download a CSV file (comma-separated values "
2299
- "file) that contains your Deeplink Juggernaut links. Once you download this "
2300
- "file to your computer, you can edit it using your favorite spreadsheet "
2301
- "program. When you&#8217;re done editing, you can re-upload the file using "
2302
- "the Import tool."
2303
  msgstr ""
2304
 
2305
- #: modules/settings/settings-data.php:262
2306
- msgid "Download CSV File"
2307
  msgstr ""
2308
 
2309
- #: modules/settings/settings-data.php:269
2310
- msgid "All settings have been erased and defaults have been restored."
2311
  msgstr ""
2312
 
2313
- #: modules/settings/settings-data.php:271
2314
- msgid ""
2315
- "You can erase all your SEO Ultimate settings and restore them to &#8220;"
2316
- "factory defaults&#8221; by clicking the button below."
2317
  msgstr ""
2318
 
2319
- #: modules/settings/settings-data.php:274
 
 
 
 
2320
  msgid ""
2321
- "Are you sure you want to erase all module settings? This cannot be undone."
 
2322
  msgstr ""
2323
 
2324
- #: modules/settings/settings-data.php:275
2325
- msgid "Restore Default Settings"
2326
  msgstr ""
2327
 
2328
- #: modules/settings/uninstall.php:17
2329
- msgid "Uninstaller"
2330
  msgstr ""
2331
 
2332
- #: modules/settings/uninstall.php:27
2333
- msgid ""
2334
- "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
2335
- "files."
2336
  msgstr ""
2337
 
2338
- #: modules/settings/uninstall.php:30
2339
  msgid ""
2340
- "Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
2341
- "your SEO Ultimate settings and cannot be undone."
2342
  msgstr ""
2343
 
2344
- #: modules/settings/uninstall.php:31
2345
- msgid "Uninstall Now"
2346
  msgstr ""
2347
 
2348
- #: modules/settings/uninstall.php:35 modules/settings/uninstall.php:42
2349
- msgid "Uninstall SEO Ultimate"
2350
  msgstr ""
2351
 
2352
- #: modules/settings/uninstall.php:46
2353
- msgid "Deleted settings."
2354
  msgstr ""
2355
 
2356
- #: modules/settings/uninstall.php:53
2357
- msgid "An error occurred while deleting files."
2358
  msgstr ""
2359
 
2360
- #: modules/settings/uninstall.php:55
2361
- msgid "Deleted files."
2362
  msgstr ""
2363
 
2364
- #: modules/settings/uninstall.php:56
2365
- msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
2366
- msgstr ""
 
 
2367
 
2368
- #: modules/settings/global-settings.php:40
2369
- msgid "Enable nofollow&#8217;d attribution link"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2370
  msgstr ""
2371
 
2372
- #: modules/settings/global-settings.php:41
2373
- msgid "Enable attribution link CSS styling"
2374
  msgstr ""
2375
 
2376
- #: modules/settings/global-settings.php:42
2377
- msgid "Notify me about unnecessary active plugins"
 
 
2378
  msgstr ""
2379
 
2380
- #: modules/settings/global-settings.php:43
2381
- msgid "Insert comments around HTML code insertions"
 
 
 
2382
  msgstr ""
2383
 
2384
- #: modules/settings/install.php:18
2385
- msgid "Upgrade/Downgrade/Reinstall"
2386
  msgstr ""
2387
 
2388
- #: modules/settings/install.php:19
2389
- msgid "Installer"
2390
  msgstr ""
2391
 
2392
- #: modules/settings/install.php:23 modules/settings/install.php:48
2393
- msgid "Upgrade"
2394
  msgstr ""
2395
 
2396
- #: modules/settings/install.php:24 modules/settings/install.php:71
2397
- msgid "Downgrade"
2398
  msgstr ""
2399
 
2400
- #: modules/settings/install.php:25 modules/settings/install.php:86
2401
- msgid "Reinstall"
2402
  msgstr ""
2403
 
2404
- #: modules/settings/install.php:42
2405
- msgid ""
2406
- "From the list below, select the version to which you would like to upgrade. "
2407
- "Then click the &#8220;Upgrade&#8221; button at the bottom of the screen."
2408
  msgstr ""
2409
 
2410
- #: modules/settings/install.php:51
2411
- msgid "You are already running the latest version."
2412
  msgstr ""
2413
 
2414
- #: modules/settings/install.php:53
2415
- msgid ""
2416
- "There was an error retrieving the list of available versions. Please try "
2417
- "again later. You can also upgrade to the latest version of SEO Ultimate "
2418
- "using the WordPress plugin upgrader."
2419
  msgstr ""
2420
 
2421
- #: modules/settings/install.php:62
2422
- msgid ""
2423
- "Downgrading is provided as a convenience only and is not officially "
2424
- "supported. Although unlikely, you may lose data in the downgrading process. "
2425
- "It is your responsibility to backup your database before proceeding."
2426
  msgstr ""
2427
 
2428
- #: modules/settings/install.php:65
2429
- msgid ""
2430
- "From the list below, select the version to which you would like to "
2431
- "downgrade. Then click the &#8220;Downgrade&#8221; button at the bottom of "
2432
- "the screen."
 
2433
  msgstr ""
2434
 
2435
- #: modules/settings/install.php:74
2436
- msgid ""
2437
- "Downgrading to versions earlier than %s is not supported because doing so "
2438
- "will result in data loss."
2439
  msgstr ""
2440
 
2441
- #: modules/settings/install.php:76
2442
- msgid ""
2443
- "There was an error retrieving the list of available versions. Please try "
2444
- "again later."
2445
  msgstr ""
2446
 
2447
- #: modules/settings/install.php:81
 
 
 
 
2448
  msgid ""
2449
- "To download and install a fresh copy of the SEO Ultimate version you are "
2450
- "currently using, click the &#8220;Reinstall&#8221; button below."
2451
  msgstr ""
2452
 
2453
- #: modules/settings/install.php:108
2454
- msgid "Your Current Version"
2455
  msgstr ""
2456
 
2457
- #: modules/settings/install.php:110
2458
- msgid "Latest Version"
2459
  msgstr ""
2460
 
2461
- #: modules/settings/install.php:130
2462
- msgid ""
2463
- "You do not have sufficient permissions to upgrade/downgrade plugins for this "
2464
- "blog."
2465
  msgstr ""
2466
 
2467
- #: modules/settings/install.php:140
2468
- msgid "Downgrade to SEO Ultimate %s"
2469
  msgstr ""
2470
 
2471
- #: modules/settings/install.php:143
2472
- msgid "Reinstall SEO Ultimate %s"
2473
  msgstr ""
2474
 
2475
- #: modules/settings/install.php:146
2476
- msgid "Upgrade to SEO Ultimate %s"
2477
  msgstr ""
2478
 
2479
- #: modules/404s/fofs.php:11
2480
- msgid "404 Monitor"
2481
  msgstr ""
2482
 
2483
- #: modules/404s/fofs.php:20
2484
- msgid ""
2485
- "\r\n"
2486
- "<ul>\r\n"
2487
- "\t<li><strong>What it does:</strong> The 404 Monitor keeps track of non-"
2488
- "existent URLs that generated 404 errors. 404 errors are when a search engine "
2489
- "or visitor comes to a URL on your site but nothing exists at that URL.</li>"
2490
- "\r\n"
2491
- "\t<li><strong>Why it helps:</strong> The 404 Monitor helps you spot 404 "
2492
- "errors; then you can take steps to correct them to reduce link-juice loss "
2493
- "from broken links.</li>\r\n"
2494
- "\t<li><strong>How to use it:</strong> Check the 404 Monitor occasionally for "
2495
- "errors. (A numeric bubble will appear next to the &#8220;404 Monitor&#8221; "
2496
- "item on the menu if there are any newly-logged URLs that you haven't seen "
2497
- "yet. These new URLs will also be highlighted green in the table.) If a 404 "
2498
- "error's referring URL is located on your site, try locating and fixing the "
2499
- "broken URL. If moved content was previously located at the requested URL, "
2500
- "try using a redirection plugin to point the old URL to the new one.</li>\r\n"
2501
- "</ul>\r\n"
2502
- "\r\n"
2503
- "<p>If there are no 404 errors in the log, this is good and means there's no "
2504
- "action required on your part.</p>\r\n"
2505
  msgstr ""
2506
 
2507
- #: modules/404s/fofs.php:32
2508
- msgid "Log Help"
2509
  msgstr ""
2510
 
2511
- #: modules/404s/fofs.php:33
2512
  msgid ""
2513
  "\r\n"
2514
- "<p>You can perform the following actions on each entry in the log:</p>\r\n"
2515
- "\r\n"
2516
  "<ul>\r\n"
2517
- "\t<li>The &#8220;View&#8221; button will open the URL in a new window. This "
2518
- "is useful for testing whether or not a redirect is working.</li>\r\n"
2519
- "\t<li>The &#8220;Google Cache&#8221; button will open Google's archived "
2520
- "version of the URL in a new window. This is useful for determining what "
2521
- "content, if any, used to be located at that URL.</li>\r\n"
2522
- "\t<li>Once you've taken care of a 404 error, you can click the &#8220;"
2523
- "Remove&#8221; button to remove it from the list. The URL will reappear on "
2524
- "the list if it triggers a 404 error in the future.</li>\r\n"
2525
  "</ul>\r\n"
2526
  msgstr ""
2527
 
2528
- #: modules/404s/fofs.php:46
2529
  msgid ""
2530
  "\r\n"
2531
- "<p>The following options are available on the Settings tab:</p>\r\n"
2532
  "\r\n"
2533
  "<ul>\r\n"
2534
  "\t<li>\r\n"
2535
- "\t\t<strong>Monitoring Settings</strong>\r\n"
2536
  "\t\t<ul>\r\n"
2537
- "\t\t\t<li><strong>Continue monitoring for new 404 errors</strong> &mdash; If "
2538
- "disabled, 404 Monitor will keep existing 404 errors in the log but won't add "
2539
- "any new ones.</li>\r\n"
 
 
 
 
 
 
 
 
2540
  "\t\t</ul>\r\n"
2541
  "\t</li>\r\n"
2542
  "\t<li>\r\n"
2543
- "\t\t<strong>Log Restrictions</strong>\r\n"
 
2544
  "\t\t<ul>\r\n"
2545
- "\t\t\t<li><strong>Only log these types of 404 errors</strong> &mdash; Check "
2546
- "this option to log a 404 error <em>only</em> if it meets at least one of the "
2547
- "criteria you specify. If you don't enable any criteria, no 404 errors will "
2548
- "be logged.\r\n"
2549
- "\t\t\t\t<ul>\r\n"
2550
- "\t\t\t\t\t<li><strong>404s generated by search engine spiders</strong> "
2551
- "&mdash; When logging restriction is enabled, this option will make an "
2552
- "exception for 404 errors generated by one of the top search engines (Google, "
2553
- "Yahoo, Baidu, Bing, Yandex, Soso, Ask.com, Sogou, or AltaVista).</li>\r\n"
2554
- "\t\t\t\t\t<li><strong>404s with referring URLs</strong> &mdash; When logging "
2555
- "restriction is enabled, this option will make an exception for 404 errors "
2556
- "generated by users who click a link on your site or another site first "
2557
- "before ending up at a 404 page on your site.</li>\r\n"
2558
- "\t\t\t\t</ul>\r\n"
2559
- "\t\t\t</li>\r\n"
2560
  "\t\t</ul>\r\n"
2561
  "\t</li>\r\n"
2562
- "\t<li><strong>Maximum Log Entries</strong> &mdash; Here you can set the "
2563
- "maximum number of log entries that 404 Monitor will keep at a time. Setting "
2564
- "this to a reasonable number will help keep database usage under control. If "
2565
- "you change this setting, it will take effect the next time a 404 is logged.</"
2566
- "li>\r\n"
2567
- "\t<li><strong>URLs to Ignore</strong> &mdash; URLs entered here will be "
2568
- "ignored whenever they generate 404 errors in the future. You can use "
2569
- "asterisks (*) as wildcards.</li>\r\n"
2570
  "</ul>\r\n"
2571
  msgstr ""
2572
 
2573
- #: modules/404s/fofs.php:75
2574
- msgid ""
2575
- "\r\n"
2576
- "<p>404 Monitor doesn't appear to work? Take these notes into consideration:</"
2577
- "p>\r\n"
2578
- "\r\n"
2579
- "<ul>\r\n"
2580
- "\t<li>The 404 Monitor doesn't record 404 errors generated by logged-in users."
2581
- "</li>\r\n"
2582
- "\t<li>In order for the 404 Monitor to track 404 errors, you must have non-"
2583
- "default permalinks enabled under <a href='options-permalink.php' "
2584
- "target='_blank'>Settings &rArr; Permalinks</a>.</li>\r\n"
2585
- "\t<li>Some parts of your website may not be under WordPress's control; the "
2586
- "404 Monitor can't track 404 errors on non-WordPress website areas.</li>\r\n"
2587
- "</ul>\r\n"
2588
  msgstr ""
2589
 
2590
- #: modules/404s/fofs-log.php:16
2591
- msgid "404 Monitor Log"
2592
  msgstr ""
2593
 
2594
- #: modules/404s/fofs-log.php:17
2595
- msgid "Log"
 
2596
  msgstr ""
2597
 
2598
- #: modules/404s/fofs-log.php:114
2599
- msgid "Hits"
2600
  msgstr ""
2601
 
2602
- #: modules/404s/fofs-log.php:115
2603
- msgid "URL with 404 Error"
 
2604
  msgstr ""
2605
 
2606
- #: modules/404s/fofs-log.php:116
2607
- msgid "Date of Most Recent Hit"
 
 
2608
  msgstr ""
2609
 
2610
- #: modules/404s/fofs-log.php:117
2611
- msgid "Referers"
2612
  msgstr ""
2613
 
2614
- #: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
2615
- msgid "User Agents"
2616
  msgstr ""
2617
 
2618
- #: modules/404s/fofs-log.php:134
2619
- msgid ""
2620
- "New 404 errors will not be recorded because 404 logging is disabled on the "
2621
- "Settings tab."
2622
  msgstr ""
2623
 
2624
- #: modules/404s/fofs-log.php:141
2625
- msgid "The log entry was successfully deleted."
2626
  msgstr ""
2627
 
2628
- #: modules/404s/fofs-log.php:143
2629
- msgid "This log entry has already been deleted."
2630
  msgstr ""
2631
 
2632
- #: modules/404s/fofs-log.php:152
2633
- msgid "The log was successfully cleared."
2634
  msgstr ""
2635
 
2636
- #: modules/404s/fofs-log.php:156
2637
- msgid "No 404 errors in the log."
2638
  msgstr ""
2639
 
2640
- #: modules/404s/fofs-log.php:180
2641
- msgid "Open URL in new window (will not be logged)"
2642
  msgstr ""
2643
 
2644
- #: modules/404s/fofs-log.php:181
2645
- msgid "Query Google for cached version of URL (opens in new window)"
2646
  msgstr ""
2647
 
2648
- #: modules/404s/fofs-log.php:182
2649
- msgid "Remove this URL from the log"
2650
  msgstr ""
2651
 
2652
- #: modules/404s/fofs-log.php:185
2653
- msgid "%s at %s"
2654
  msgstr ""
2655
 
2656
- #: modules/404s/fofs-log.php:189
2657
- msgid "View list of referring URLs"
2658
  msgstr ""
2659
 
2660
- #: modules/404s/fofs-log.php:190
2661
- msgid "View list of user agents"
2662
  msgstr ""
2663
 
2664
- #: modules/404s/fofs-log.php:200
2665
- msgid "Referring URLs"
2666
  msgstr ""
2667
 
2668
- #: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
2669
- msgid "Hide list"
2670
  msgstr ""
2671
 
2672
- #: modules/404s/fofs-log.php:252
2673
- msgid "Are you sure you want to delete all 404 log entries?"
2674
  msgstr ""
2675
-
2676
- #: modules/404s/fofs-log.php:254
2677
- msgid "Clear Log"
2678
  msgstr ""
2679
 
2680
- #: modules/404s/fofs-settings.php:16
2681
- msgid "404 Monitor Settings"
2682
  msgstr ""
2683
 
2684
- #: modules/404s/fofs-settings.php:37
2685
- msgid "Continue monitoring for new 404 errors"
2686
  msgstr ""
2687
 
2688
- #: modules/404s/fofs-settings.php:37
2689
- msgid "Monitoring Settings"
2690
  msgstr ""
2691
 
2692
- #: modules/404s/fofs-settings.php:39
2693
- msgid "Only log these types of 404 errors:"
2694
  msgstr ""
2695
 
2696
- #: modules/404s/fofs-settings.php:40
2697
- msgid "404s generated by search engine spiders"
2698
  msgstr ""
2699
 
2700
- #: modules/404s/fofs-settings.php:41
2701
- msgid "404s with referring URLs"
2702
  msgstr ""
2703
 
2704
- #: modules/404s/fofs-settings.php:42
2705
- msgid "Log Restrictions"
2706
  msgstr ""
2707
 
2708
- #: modules/404s/fofs-settings.php:43
2709
- msgid "Maximum Log Entries"
2710
  msgstr ""
2711
 
2712
- #: modules/404s/fofs-settings.php:44
2713
- msgid "URLs to Ignore"
2714
  msgstr ""
2715
 
2716
- #: modules/404s/fofs-settings.php:44
2717
- msgid "(Use * as wildcard)"
 
 
 
 
2718
  msgstr ""
2719
 
2720
- #: modules/slugs/slugs.php:12
2721
- msgid "Slug Optimizer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2722
  msgstr ""
2723
 
2724
- #: modules/slugs/slugs.php:16
2725
- msgid "Words to Remove"
2726
  msgstr ""
2727
 
2728
- #: modules/slugs/slugs.php:77
2729
  msgid ""
2730
  "\r\n"
 
 
 
 
 
 
 
 
 
2731
  "<ul>\r\n"
2732
- "\t<li><strong>What it does:</strong> Slug Optimizer removes common words "
2733
- "from the portion of a post&#8217;s or Page&#8217;s URL that is based on its "
2734
- "title. (This portion is also known as the &#8220;slug.&#8221;)</li>\r\n"
2735
- "\t<li><strong>Why it helps:</strong> Slug Optimizer increases keyword "
2736
- "potency because there are fewer words in your URLs competing for relevance.</"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2737
  "li>\r\n"
2738
- "\t<li><strong>How to use it:</strong> Slug Optimizer works without any "
2739
- "action required on your part. When you add a new post in your WordPress "
2740
- "admin and specify a title for it, WordPress will generate a slug and the new "
2741
- "post&#8217;s future URL will appear below the title box. While WordPress is "
2742
- "generating the slug, Slug Optimizer takes common words out of it. You can "
2743
- "use the textbox on Slug Optimizer&#8217;s admin page to specify which common "
2744
- "words are removed.</li>\r\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2745
  "</ul>\r\n"
2746
  msgstr ""
2747
 
2748
- #: modules/slugs/slugs.php:88
2749
  msgid ""
2750
  "\r\n"
 
 
2751
  "<ul>\r\n"
2752
- "\t<li><strong>What&#8217;s a slug?</strong><br />The slug of a post or page "
2753
- "is the portion of its URL that is based on its title. When you edit a post "
2754
- "or Page in WordPress, the slug is the yellow-highlighted portion of the "
2755
- "Permalink beneath the Title textbox.</li>\r\n"
2756
- "\t<li><strong>Does the Slug Optimizer change my existing URLs?</strong><br /"
2757
- ">No. Slug Optimizer will not relocate your content by changing existing "
2758
- "URLs. Slug Optimizer only takes effect on new posts and pages.</li>\r\n"
2759
  "\t<li>\r\n"
2760
- "\t\t<p><strong>How do I see Slug Optimizer in action?</strong><br />Follow "
2761
- "these steps:</p>\r\n"
2762
- "\t\t<ol>\r\n"
2763
- "\t\t\t<li>Create a new post/Page in WordPress.</li>\r\n"
2764
- "\t\t\t<li>Type in a title containing some common and uncommon words.</li>\r\n"
2765
- "\t\t\t<li>Click outside the Title box. WordPress will insert a URL labeled "
2766
- "&#8220;Permalink&#8221; below the Title textbox. The Slug Optimizer will "
2767
- "have removed the common words from the URL.</li>\r\n"
2768
- "\t\t</ol>\r\n"
2769
- "\t</li>\r\n"
2770
- "\t<li><strong>What if I want to include a common word in my slug?</"
2771
- "strong><br />When editing the post or page in question, just click the "
2772
- "&#8220;Edit&#8221; button next to the permalink and change the slug as "
2773
- "desired. The Slug Optimizer won&#8217;t remove words from a manually-edited "
2774
- "slug.</li>\r\n"
2775
- "\t<li><strong>If I edit the optimized slug but then change my mind, how do I "
2776
- "revert back to the optimized slug?</strong><br />When editing the post or "
2777
- "page in question, just click the &#8220;Edit&#8221; button next to the "
2778
- "permalink; a &#8220;Save&#8221; button will appear in its place. Next erase "
2779
- "the contents of the textbox, and then click the aforementioned &#8220;"
2780
- "Save&#8221; button.</li>\r\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2781
  "</ul>\r\n"
2782
  msgstr ""
2783
 
2784
- #: modules/slugs/slugs.php:108
2785
  msgid ""
2786
  "\r\n"
2787
  "<ul>\r\n"
2788
- "\t<li><strong>Why didn&#8217;t the Slug Optimizer remove common words from "
2789
- "my slug?</strong><br />It&#8217;s possible that every word in your post "
2790
- "title is in the list of words to remove. In this case, Slug Optimizer "
2791
- "doesn&#8217;t remove the words, because if it did, you&#8217;d end up with a "
2792
- "blank slug.</li>\r\n"
 
 
 
 
 
 
 
 
 
 
 
2793
  "</ul>\r\n"
2794
  msgstr ""
2795
 
2796
- #: modules/internal-link-aliases/internal-link-aliases.php:24
2797
- msgid "Link Mask Generator"
2798
- msgstr ""
2799
-
2800
- #: modules/internal-link-aliases/internal-link-aliases.php:30
2801
- msgid "Aliases"
2802
- msgstr ""
2803
-
2804
- #: modules/internal-link-aliases/internal-link-aliases.php:70
2805
- msgid "Edit Existing Aliases"
2806
- msgstr ""
2807
-
2808
- #: modules/internal-link-aliases/internal-link-aliases.php:74
2809
- msgid "Add a New Alias"
2810
- msgstr ""
2811
-
2812
- #: modules/internal-link-aliases/internal-link-aliases.php:82
2813
- msgid "Actual URL"
2814
- msgstr ""
2815
-
2816
- #: modules/internal-link-aliases/internal-link-aliases.php:83
2817
- msgid "Alias URL"
2818
- msgstr ""
2819
-
2820
- #: modules/internal-link-aliases/internal-link-aliases.php:84
2821
- msgid "Only on This Post&hellip; (optional)"
2822
- msgstr ""
2823
-
2824
- #: modules/internal-link-aliases/internal-link-aliases.php:86
2825
- #: modules/autolinks/footer-autolinks.php:176
2826
- #: modules/autolinks/content-autolinks.php:359
2827
- msgid "Delete"
2828
  msgstr ""
2829
 
2830
- #: modules/internal-link-aliases/internal-link-aliases.php:117
2831
- msgid "Test"
2832
  msgstr ""
2833
 
2834
- #: modules/internal-link-aliases/internal-link-aliases.php:134
2835
- msgid "Alias Directory"
2836
  msgstr ""
2837
 
2838
- #: modules/internal-link-aliases/internal-link-aliases.php:136
2839
- msgid "Nofollow aliased links"
2840
  msgstr ""
2841
 
2842
- #: modules/internal-link-aliases/internal-link-aliases.php:136
2843
- msgid "Link Attributes"
2844
  msgstr ""
2845
 
2846
- #: modules/internal-link-aliases/internal-link-aliases.php:159
2847
- msgid "Link Masks:"
2848
  msgstr ""
2849
 
2850
- #: modules/internal-link-aliases/internal-link-aliases.php:162
2851
- msgid "URL"
2852
  msgstr ""
2853
 
2854
- #: modules/internal-link-aliases/internal-link-aliases.php:162
2855
- msgid "Mask URL"
2856
  msgstr ""
2857
 
2858
- #: modules/internal-link-aliases/internal-link-aliases.php:199
2859
  msgid ""
2860
- "You can stop search engines from following a link by typing in a mask for "
2861
- "its URL."
2862
- msgstr ""
2863
-
2864
- #: modules/internal-link-aliases/internal-link-aliases.php:281
2865
- msgid "Added by SEO Ultimate's Link Mask Generator module"
 
 
 
 
 
 
 
 
 
 
 
2866
  msgstr ""
2867
 
2868
- #: modules/internal-link-aliases/internal-link-aliases.php:292
2869
- msgid "End Link Mask Generator output"
 
 
 
 
 
 
 
 
 
2870
  msgstr ""
2871
 
2872
  #: modules/rich-snippets/rich-snippets.php:12
@@ -2900,7 +2867,7 @@ msgid "RDFa"
2900
  msgstr ""
2901
 
2902
  #: modules/rich-snippets/rich-snippets.php:62
2903
- #: modules/rich-snippets/rich-snippets.php:225
2904
  msgid "Review"
2905
  msgstr ""
2906
 
@@ -2908,76 +2875,76 @@ msgstr ""
2908
  msgid "Item Reviewed"
2909
  msgstr ""
2910
 
2911
- #: modules/rich-snippets/rich-snippets.php:78
2912
  msgid "Star Rating"
2913
  msgstr ""
2914
 
2915
- #: modules/rich-snippets/rich-snippets.php:83
2916
  msgid "Review Author"
2917
  msgstr ""
2918
 
2919
- #: modules/rich-snippets/rich-snippets.php:89
2920
  msgid "Date Reviewed"
2921
  msgstr ""
2922
 
2923
- #: modules/rich-snippets/rich-snippets.php:224
2924
- #: modules/rich-snippets/rich-snippets.php:233
2925
  msgid "None"
2926
  msgstr ""
2927
 
2928
- #: modules/rich-snippets/rich-snippets.php:226
2929
  msgid "Rich Snippet Type:"
2930
  msgstr ""
2931
 
2932
- #: modules/rich-snippets/rich-snippets.php:230
2933
  msgid "Name of Reviewed Item:"
2934
  msgstr ""
2935
 
2936
- #: modules/rich-snippets/rich-snippets.php:234
2937
  msgid "0.5 stars"
2938
  msgstr ""
2939
 
2940
- #: modules/rich-snippets/rich-snippets.php:235
2941
  msgid "1 star"
2942
  msgstr ""
2943
 
2944
- #: modules/rich-snippets/rich-snippets.php:236
2945
  msgid "1.5 stars"
2946
  msgstr ""
2947
 
2948
- #: modules/rich-snippets/rich-snippets.php:237
2949
  msgid "2 stars"
2950
  msgstr ""
2951
 
2952
- #: modules/rich-snippets/rich-snippets.php:238
2953
  msgid "2.5 stars"
2954
  msgstr ""
2955
 
2956
- #: modules/rich-snippets/rich-snippets.php:239
2957
  msgid "3 stars"
2958
  msgstr ""
2959
 
2960
- #: modules/rich-snippets/rich-snippets.php:240
2961
  msgid "3.5 stars"
2962
  msgstr ""
2963
 
2964
- #: modules/rich-snippets/rich-snippets.php:241
2965
  msgid "4 stars"
2966
  msgstr ""
2967
 
2968
- #: modules/rich-snippets/rich-snippets.php:242
2969
  msgid "4.5 stars"
2970
  msgstr ""
2971
 
2972
- #: modules/rich-snippets/rich-snippets.php:243
2973
  msgid "5 stars"
2974
  msgstr ""
2975
 
2976
- #: modules/rich-snippets/rich-snippets.php:244
2977
  msgid "Star Rating for Reviewed Item:"
2978
  msgstr ""
2979
 
2980
- #: modules/rich-snippets/rich-snippets.php:255
2981
  msgid ""
2982
  "\r\n"
2983
  "<ul>\r\n"
@@ -3005,7 +2972,7 @@ msgid ""
3005
  "</ul>\r\n"
3006
  msgstr ""
3007
 
3008
- #: modules/rich-snippets/rich-snippets.php:266
3009
  msgid ""
3010
  "\r\n"
3011
  "<ul>\r\n"
@@ -3025,7 +2992,7 @@ msgid ""
3025
  "</ul>\r\n"
3026
  msgstr ""
3027
 
3028
- #: modules/rich-snippets/rich-snippets.php:276
3029
  msgid ""
3030
  "\r\n"
3031
  "<ul>\r\n"
@@ -3044,285 +3011,343 @@ msgid ""
3044
  "</ul>\r\n"
3045
  msgstr ""
3046
 
3047
- #: modules/sharing-buttons/sharing-buttons.php:12
3048
- #: modules/sharing-buttons/sharing-buttons.php:72
3049
- msgid "Sharing Facilitator"
3050
- msgstr ""
3051
-
3052
- #: modules/sharing-buttons/sharing-buttons.php:25
3053
- msgid "Bookmark and Share"
3054
- msgstr ""
3055
-
3056
- #: modules/sharing-buttons/sharing-buttons.php:39
3057
- msgid "Which provider would you like to use for your sharing buttons?"
3058
- msgstr ""
3059
-
3060
- #: modules/sharing-buttons/sharing-buttons.php:41
3061
- msgid "None; disable sharing buttons"
3062
  msgstr ""
3063
 
3064
- #: modules/sharing-buttons/sharing-buttons.php:42
3065
- msgid "Use the ShareThis button"
 
 
3066
  msgstr ""
3067
 
3068
- #: modules/sharing-buttons/sharing-buttons.php:43
3069
- msgid "Use the AddThis button"
3070
  msgstr ""
3071
 
3072
- #: modules/sharing-buttons/sharing-buttons.php:73
3073
- msgid ""
3074
- "\r\n"
3075
- "<ul>\r\n"
3076
- "\t<li><strong>What it does:</strong> Sharing Facilitator adds buttons to "
3077
- "your posts/pages that make it easy for visitors to share your content.</li>"
3078
- "\r\n"
3079
- "\t<li><strong>Why it helps:</strong> When visitors share your content on "
3080
- "social networking sites, this can build links to your site. Sharing "
3081
- "Facilitator makes it easy for visitors to do this.</li>\r\n"
3082
- "\t<li><strong>How to use it:</strong> Pick which button type you&#8217;d "
3083
- "like to use (ShareThis or AddThis) and click Save Changes. Try enabling each "
3084
- "button on your site and see which one you like better.</li>\r\n"
3085
- "</ul>\r\n"
3086
  msgstr ""
3087
 
3088
- #: modules/autolinks/footer-autolinks-settings.php:16
3089
- msgid "Footer Deeplink Juggernaut Settings"
3090
  msgstr ""
3091
 
3092
- #: modules/autolinks/footer-autolinks-settings.php:17
3093
- msgid "Footer Link Settings"
3094
  msgstr ""
3095
 
3096
- #: modules/autolinks/footer-autolinks-settings.php:28
3097
- msgid "HTML Formats"
3098
  msgstr ""
3099
 
3100
- #: modules/autolinks/footer-autolinks-settings.php:31
3101
- msgid "Link Section Format"
3102
  msgstr ""
3103
 
3104
- #: modules/autolinks/footer-autolinks-settings.php:32
3105
- msgid "Link Format"
 
 
 
3106
  msgstr ""
3107
 
3108
- #: modules/autolinks/footer-autolinks-settings.php:34
3109
- msgid "Link Separator"
3110
  msgstr ""
3111
 
3112
- #: modules/autolinks/footer-autolinks.php:16
3113
- msgid "Footer Deeplink Juggernaut"
3114
  msgstr ""
3115
 
3116
- #: modules/autolinks/footer-autolinks.php:157
3117
- #: modules/autolinks/content-autolinks.php:337
3118
- msgid "Edit Existing Links"
3119
  msgstr ""
3120
 
3121
- #: modules/autolinks/footer-autolinks.php:161
3122
- #: modules/autolinks/content-autolinks.php:341
3123
- msgid "Add a New Link"
3124
  msgstr ""
3125
 
3126
- #: modules/autolinks/footer-autolinks.php:169
3127
- msgid "Link Location (optional)"
3128
  msgstr ""
3129
 
3130
- #: modules/autolinks/footer-autolinks.php:171
3131
- #: modules/autolinks/content-autolinks.php:352
3132
- msgid "Anchor Text"
 
3133
  msgstr ""
3134
 
3135
- #: modules/autolinks/footer-autolinks.php:172
3136
- #: modules/autolinks/content-autolinks.php:353
3137
- msgid "Destination"
3138
  msgstr ""
3139
 
3140
- #: modules/autolinks/footer-autolinks.php:173
3141
- #: modules/autolinks/content-autolinks.php:354
3142
- msgid "Title Attribute"
 
3143
  msgstr ""
3144
 
3145
- #: modules/autolinks/footer-autolinks.php:174
3146
- #: modules/autolinks/content-autolinks.php:357
3147
- msgid "Options"
3148
  msgstr ""
3149
 
3150
- #: modules/autolinks/footer-autolinks.php:197
3151
- msgid "Match child content"
 
 
 
3152
  msgstr ""
3153
 
3154
- #: modules/autolinks/footer-autolinks.php:199
3155
- msgid "Negative match"
3156
  msgstr ""
3157
 
3158
- #: modules/autolinks/footer-autolinks.php:212
3159
- #: modules/autolinks/content-autolinks.php:396
3160
- msgid "New window"
 
3161
  msgstr ""
3162
 
3163
- #: modules/autolinks/autolinks.php:11
3164
- msgid "Deeplink Juggernaut"
3165
  msgstr ""
3166
 
3167
- #: modules/autolinks/autolinks.php:18
3168
  msgid ""
3169
- "Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
3170
- "(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
3171
- "WordPress 3.2.) If you aren&#8217;t sure how to upgrade PHP, please ask your "
3172
- "webhost. In the meantime, you can return to an older version of Deeplink "
3173
- "Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
3174
- "a> to SEO Ultimate 5.9."
3175
  msgstr ""
3176
 
3177
- #: modules/autolinks/content-autolinks-settings.php:16
3178
- msgid "Content Deeplink Juggernaut Settings"
 
 
3179
  msgstr ""
3180
 
3181
- #: modules/autolinks/content-autolinks-settings.php:17
3182
- msgid "Content Link Settings"
3183
  msgstr ""
3184
 
3185
- #: modules/autolinks/content-autolinks-settings.php:40
3186
- msgid "Add Autolinks to..."
3187
  msgstr ""
3188
 
3189
- #: modules/autolinks/content-autolinks-settings.php:43
3190
- msgid "Allow posts to link to themselves."
 
 
3191
  msgstr ""
3192
 
3193
- #: modules/autolinks/content-autolinks-settings.php:44
3194
  msgid ""
3195
- "Allow posts to link to the URL by which the visitor is accessing the post."
 
 
3196
  msgstr ""
3197
 
3198
- #: modules/autolinks/content-autolinks-settings.php:45
3199
- msgid "Self-Linking"
3200
  msgstr ""
3201
 
3202
- #: modules/autolinks/content-autolinks-settings.php:48
3203
- msgid "Enable per-link customization of quantity limits."
3204
  msgstr ""
3205
 
3206
- #: modules/autolinks/content-autolinks-settings.php:49
3207
- msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
3208
  msgstr ""
3209
 
3210
- #: modules/autolinks/content-autolinks-settings.php:50
3211
- msgid ""
3212
- "Don&#8217;t link the same anchor text any more than %d times per post/page/"
3213
- "etc."
3214
  msgstr ""
3215
 
3216
- #: modules/autolinks/content-autolinks-settings.php:51
3217
  msgid ""
3218
- "Don&#8217;t link the same anchor text any more than %d times across my "
3219
- "entire site."
3220
  msgstr ""
3221
 
3222
- #: modules/autolinks/content-autolinks-settings.php:52
 
 
 
 
3223
  msgid ""
3224
- "Don&#8217;t link to the same destination any more than %d times per post/"
3225
- "page/etc."
3226
  msgstr ""
3227
 
3228
- #: modules/autolinks/content-autolinks-settings.php:53
3229
- msgid "Quantity Restrictions"
 
 
3230
  msgstr ""
3231
 
3232
- #: modules/autolinks/content-autolinks-settings.php:55
3233
  msgid ""
3234
- "Don&#8217;t add autolinks to text within these HTML tags <em>(separate with "
3235
- "commas)</em>:"
 
 
 
 
 
 
 
 
 
 
 
 
3236
  msgstr ""
3237
 
3238
- #: modules/autolinks/content-autolinks-settings.php:55
3239
- msgid "Tag Restrictions"
 
 
 
 
 
 
 
 
 
 
 
3240
  msgstr ""
3241
 
3242
- #: modules/autolinks/content-autolinks-settings.php:63
3243
- msgid "%s can only link to internal destinations that share at least one..."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3244
  msgstr ""
3245
 
3246
- #: modules/autolinks/content-autolinks-settings.php:76
3247
- msgid "Siloing"
3248
  msgstr ""
3249
 
3250
- #: modules/autolinks/content-autolinks.php:16
3251
- msgid "Content Deeplink Juggernaut"
 
 
 
3252
  msgstr ""
3253
 
3254
- #: modules/autolinks/content-autolinks.php:17
3255
- msgid "Content Links"
3256
  msgstr ""
3257
 
3258
- #: modules/autolinks/content-autolinks.php:281
3259
- msgid ""
3260
- "The Content Links section of Deeplink Juggernaut lets you automatically link "
3261
- "a certain word or phrase in your post/page content to a URL you specify."
3262
  msgstr ""
3263
 
3264
- #: modules/autolinks/content-autolinks.php:356
3265
- msgid "Site Cap"
3266
  msgstr ""
3267
 
3268
- #: modules/autolinks/content-autolinks.php:461
3269
- msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
3270
  msgstr ""
3271
 
3272
- #: modules/autolinks/content-autolinks.php:464
3273
- msgid "Don&#8217;t add autolinks to anchor texts found in this post."
3274
  msgstr ""
3275
 
3276
- #: modules/autolinks/content-autolinks.php:464
3277
- msgid "Autolink Exclusion:"
3278
  msgstr ""
3279
 
3280
- #: modules/autolinks/content-autolinks.php:470
3281
  msgid ""
3282
- "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
3283
- "into this box, Deeplink Juggernaut will search for that anchor in all your "
3284
- "other posts and link it to this post. For example, if the post you&#8217;re "
3285
- "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
3286
- "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
3287
- "Deeplink Juggernaut will automatically build internal links to this post "
3288
- "with that anchor text (assuming other posts contain that text)."
3289
  msgstr ""
3290
 
3291
- #: includes/jlwp/functions.php:65
3292
- msgid "Posts"
3293
  msgstr ""
3294
 
3295
- #: includes/jlwp/functions.php:65
3296
- msgid "Post"
3297
  msgstr ""
3298
 
3299
- #: includes/jlwp/functions.php:66
3300
- msgid "Pages"
3301
  msgstr ""
3302
 
3303
- #: includes/jlwp/functions.php:66
3304
- msgid "Page"
3305
  msgstr ""
3306
 
3307
- #: includes/jlwp/functions.php:67
3308
- msgid "Attachments"
 
 
3309
  msgstr ""
3310
 
3311
- #: includes/jlwp/functions.php:67
3312
- msgid "Attachment"
3313
  msgstr ""
3314
 
3315
- #: includes/jlwp/functions.php:96
3316
- msgctxt "post format"
3317
- msgid "Format"
3318
  msgstr ""
3319
 
3320
- #: includes/jlwp/functions.php:97
3321
- msgid "Post Format Archives"
3322
  msgstr ""
3323
 
3324
- #: includes/jlwp/functions.php:165
3325
- msgid "backup your database"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3326
  msgstr ""
3327
 
3328
  #. 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 7.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
+ "POT-Creation-Date: 2011-12-22 20:28:57+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 7.2) #-#-#-#-#
23
  #. Plugin Name of the plugin/theme
24
  #: plugin/class.seo-ultimate.php:791 modules/settings/settings.php:14
25
  msgid "SEO Ultimate"
145
  msgid "Home"
146
  msgstr ""
147
 
148
+ #: plugin/class.seo-ultimate.php:1671 modules/class.su-module.php:2558
149
  #: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:34
150
  msgid "Blog Homepage"
151
  msgstr ""
154
  msgid "Author Archives"
155
  msgstr ""
156
 
157
+ #: plugin/class.seo-ultimate.php:1745 modules/class.su-module.php:2562
158
  msgid "Author"
159
  msgstr ""
160
 
162
  msgid "Link Masks"
163
  msgstr ""
164
 
165
+ #: plugin/class.seo-ultimate.php:1772 modules/class.su-module.php:2570
166
  msgid "Link Mask"
167
  msgstr ""
168
 
 
 
 
 
 
 
 
 
 
 
 
 
169
  #: plugin/class.su-installer.php:9
170
  msgid "Package not available."
171
  msgstr ""
238
  msgid "Plugin upgraded successfully."
239
  msgstr ""
240
 
241
+ #: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
242
+ msgid "%s and %s"
243
  msgstr ""
244
 
245
+ #: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
246
+ msgid ", "
247
  msgstr ""
248
 
249
+ #: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
250
+ msgid "%s, and %s"
251
  msgstr ""
252
 
253
+ #: includes/jlwp/functions.php:65
254
+ msgid "Posts"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
  msgstr ""
256
 
257
+ #: includes/jlwp/functions.php:65
258
+ msgid "Post"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  msgstr ""
260
 
261
+ #: includes/jlwp/functions.php:66
262
+ msgid "Pages"
 
 
 
 
 
 
 
 
 
263
  msgstr ""
264
 
265
+ #: includes/jlwp/functions.php:66
266
+ msgid "Page"
 
 
 
 
267
  msgstr ""
268
 
269
+ #: includes/jlwp/functions.php:67
270
+ msgid "Attachments"
271
  msgstr ""
272
 
273
+ #: includes/jlwp/functions.php:67
274
+ msgid "Attachment"
 
 
275
  msgstr ""
276
 
277
+ #: includes/jlwp/functions.php:96
278
+ msgctxt "post format"
279
+ msgid "Format"
280
  msgstr ""
281
 
282
+ #: includes/jlwp/functions.php:97
283
+ msgid "Post Format Archives"
284
  msgstr ""
285
 
286
+ #: includes/jlwp/functions.php:165
287
+ msgid "backup your database"
 
 
288
  msgstr ""
289
 
290
+ #: modules/404s/fofs-log.php:16
291
+ msgid "404 Monitor Log"
 
 
 
292
  msgstr ""
293
 
294
+ #: modules/404s/fofs-log.php:17
295
+ msgid "Log"
296
  msgstr ""
297
 
298
+ #: modules/404s/fofs-log.php:113 modules/class.su-module.php:1157
299
+ msgid "Actions"
300
  msgstr ""
301
 
302
+ #: modules/404s/fofs-log.php:114
303
+ msgid "Hits"
304
  msgstr ""
305
 
306
+ #: modules/404s/fofs-log.php:115
307
+ msgid "URL with 404 Error"
308
  msgstr ""
309
 
310
+ #: modules/404s/fofs-log.php:116
311
+ msgid "Date of Most Recent Hit"
312
  msgstr ""
313
 
314
+ #: modules/404s/fofs-log.php:117
315
+ msgid "Referers"
316
  msgstr ""
317
 
318
+ #: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
319
+ msgid "User Agents"
320
  msgstr ""
321
 
322
+ #: modules/404s/fofs-log.php:134
323
  msgid ""
324
+ "New 404 errors will not be recorded because 404 logging is disabled on the "
325
+ "Settings tab."
 
 
 
 
 
 
 
 
 
326
  msgstr ""
327
 
328
+ #: modules/404s/fofs-log.php:141
329
+ msgid "The log entry was successfully deleted."
 
 
 
330
  msgstr ""
331
 
332
+ #: modules/404s/fofs-log.php:143
333
+ msgid "This log entry has already been deleted."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  msgstr ""
335
 
336
+ #: modules/404s/fofs-log.php:152
337
+ msgid "The log was successfully cleared."
338
  msgstr ""
339
 
340
+ #: modules/404s/fofs-log.php:156
341
+ msgid "No 404 errors in the log."
342
  msgstr ""
343
 
344
+ #: modules/404s/fofs-log.php:180
345
+ msgid "Open URL in new window (will not be logged)"
346
  msgstr ""
347
 
348
+ #: modules/404s/fofs-log.php:181
349
+ msgid "Query Google for cached version of URL (opens in new window)"
350
  msgstr ""
351
 
352
+ #: modules/404s/fofs-log.php:182
353
+ msgid "Remove this URL from the log"
354
  msgstr ""
355
 
356
+ #: modules/404s/fofs-log.php:185
357
+ msgid "%s at %s"
 
 
358
  msgstr ""
359
 
360
+ #: modules/404s/fofs-log.php:189
361
+ msgid "View list of referring URLs"
362
  msgstr ""
363
 
364
+ #: modules/404s/fofs-log.php:190
365
+ msgid "View list of user agents"
 
 
366
  msgstr ""
367
 
368
+ #: modules/404s/fofs-log.php:200
369
+ msgid "Referring URLs"
370
  msgstr ""
371
 
372
+ #: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
373
+ msgid "Hide list"
 
 
 
374
  msgstr ""
375
 
376
+ #: modules/404s/fofs-log.php:252
377
+ msgid "Are you sure you want to delete all 404 log entries?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
378
  msgstr ""
379
 
380
+ #: modules/404s/fofs-log.php:254
381
+ msgid "Clear Log"
 
 
382
  msgstr ""
383
 
384
+ #: modules/404s/fofs.php:11
385
+ msgid "404 Monitor"
386
  msgstr ""
387
 
388
+ #: modules/404s/fofs.php:19 modules/slugs/slugs.php:76
389
+ #: modules/settings/settings.php:22 modules/more-links/more-links.php:104
390
+ #: modules/more-links/more-links.php:111
391
+ #: modules/link-nofollow/link-nofollow.php:130
392
+ #: modules/sharing-buttons/sharing-buttons.php:72
393
+ #: modules/meta/webmaster-verify.php:58 modules/meta/meta-robots.php:53
394
+ #: modules/meta/meta-descriptions.php:174 modules/meta/meta-keywords.php:166
395
+ #: modules/linkbox/linkbox.php:91 modules/titles/titles.php:341
396
+ #: modules/user-code/user-code.php:70
397
+ #: modules/rich-snippets/rich-snippets.php:258 modules/files/files.php:144
398
+ #: modules/canonical/canonical.php:201
399
+ msgid "Overview"
400
  msgstr ""
401
 
402
+ #: modules/404s/fofs.php:20
403
  msgid ""
404
+ "\r\n"
405
+ "<ul>\r\n"
406
+ "\t<li><strong>What it does:</strong> The 404 Monitor keeps track of non-"
407
+ "existent URLs that generated 404 errors. 404 errors are when a search engine "
408
+ "or visitor comes to a URL on your site but nothing exists at that URL.</li>"
409
+ "\r\n"
410
+ "\t<li><strong>Why it helps:</strong> The 404 Monitor helps you spot 404 "
411
+ "errors; then you can take steps to correct them to reduce link-juice loss "
412
+ "from broken links.</li>\r\n"
413
+ "\t<li><strong>How to use it:</strong> Check the 404 Monitor occasionally for "
414
+ "errors. (A numeric bubble will appear next to the &#8220;404 Monitor&#8221; "
415
+ "item on the menu if there are any newly-logged URLs that you haven't seen "
416
+ "yet. These new URLs will also be highlighted green in the table.) If a 404 "
417
+ "error's referring URL is located on your site, try locating and fixing the "
418
+ "broken URL. If moved content was previously located at the requested URL, "
419
+ "try using a redirection plugin to point the old URL to the new one.</li>\r\n"
420
+ "</ul>\r\n"
421
+ "\r\n"
422
+ "<p>If there are no 404 errors in the log, this is good and means there's no "
423
+ "action required on your part.</p>\r\n"
424
  msgstr ""
425
 
426
+ #: modules/404s/fofs.php:32
427
+ msgid "Log Help"
428
  msgstr ""
429
 
430
+ #: modules/404s/fofs.php:33
431
+ msgid ""
432
+ "\r\n"
433
+ "<p>You can perform the following actions on each entry in the log:</p>\r\n"
434
+ "\r\n"
435
+ "<ul>\r\n"
436
+ "\t<li>The &#8220;View&#8221; button will open the URL in a new window. This "
437
+ "is useful for testing whether or not a redirect is working.</li>\r\n"
438
+ "\t<li>The &#8220;Google Cache&#8221; button will open Google's archived "
439
+ "version of the URL in a new window. This is useful for determining what "
440
+ "content, if any, used to be located at that URL.</li>\r\n"
441
+ "\t<li>Once you've taken care of a 404 error, you can click the &#8220;"
442
+ "Remove&#8221; button to remove it from the list. The URL will reappear on "
443
+ "the list if it triggers a 404 error in the future.</li>\r\n"
444
+ "</ul>\r\n"
445
  msgstr ""
446
 
447
+ #: modules/404s/fofs.php:45 modules/meta/meta-robots.php:64
448
+ #: modules/meta/meta-descriptions.php:185 modules/meta/meta-keywords.php:173
449
+ #: modules/linkbox/linkbox.php:102 modules/titles/titles.php:415
450
+ #: modules/rich-snippets/rich-snippets.php:269
451
+ msgid "Settings Help"
452
  msgstr ""
453
 
454
+ #: modules/404s/fofs.php:46
455
+ msgid ""
456
+ "\r\n"
457
+ "<p>The following options are available on the Settings tab:</p>\r\n"
458
+ "\r\n"
459
+ "<ul>\r\n"
460
+ "\t<li>\r\n"
461
+ "\t\t<strong>Monitoring Settings</strong>\r\n"
462
+ "\t\t<ul>\r\n"
463
+ "\t\t\t<li><strong>Continue monitoring for new 404 errors</strong> &mdash; If "
464
+ "disabled, 404 Monitor will keep existing 404 errors in the log but won't add "
465
+ "any new ones.</li>\r\n"
466
+ "\t\t</ul>\r\n"
467
+ "\t</li>\r\n"
468
+ "\t<li>\r\n"
469
+ "\t\t<strong>Log Restrictions</strong>\r\n"
470
+ "\t\t<ul>\r\n"
471
+ "\t\t\t<li><strong>Only log these types of 404 errors</strong> &mdash; Check "
472
+ "this option to log a 404 error <em>only</em> if it meets at least one of the "
473
+ "criteria you specify. If you don't enable any criteria, no 404 errors will "
474
+ "be logged.\r\n"
475
+ "\t\t\t\t<ul>\r\n"
476
+ "\t\t\t\t\t<li><strong>404s generated by search engine spiders</strong> "
477
+ "&mdash; When logging restriction is enabled, this option will make an "
478
+ "exception for 404 errors generated by one of the top search engines (Google, "
479
+ "Yahoo, Baidu, Bing, Yandex, Soso, Ask.com, Sogou, or AltaVista).</li>\r\n"
480
+ "\t\t\t\t\t<li><strong>404s with referring URLs</strong> &mdash; When logging "
481
+ "restriction is enabled, this option will make an exception for 404 errors "
482
+ "generated by users who click a link on your site or another site first "
483
+ "before ending up at a 404 page on your site.</li>\r\n"
484
+ "\t\t\t\t</ul>\r\n"
485
+ "\t\t\t</li>\r\n"
486
+ "\t\t</ul>\r\n"
487
+ "\t</li>\r\n"
488
+ "\t<li><strong>Maximum Log Entries</strong> &mdash; Here you can set the "
489
+ "maximum number of log entries that 404 Monitor will keep at a time. Setting "
490
+ "this to a reasonable number will help keep database usage under control. If "
491
+ "you change this setting, it will take effect the next time a 404 is logged.</"
492
+ "li>\r\n"
493
+ "\t<li><strong>URLs to Ignore</strong> &mdash; URLs entered here will be "
494
+ "ignored whenever they generate 404 errors in the future. You can use "
495
+ "asterisks (*) as wildcards.</li>\r\n"
496
+ "</ul>\r\n"
497
  msgstr ""
498
 
499
+ #: modules/404s/fofs.php:74 modules/slugs/slugs.php:107
500
+ #: modules/meta/meta-robots.php:103 modules/meta/meta-descriptions.php:206
501
+ #: modules/meta/meta-keywords.php:196 modules/titles/titles.php:453
502
+ #: modules/user-code/user-code.php:84
503
+ #: modules/rich-snippets/rich-snippets.php:279 modules/files/files.php:165
504
+ msgid "Troubleshooting"
505
  msgstr ""
506
 
507
+ #: modules/404s/fofs.php:75
508
  msgid ""
509
+ "\r\n"
510
+ "<p>404 Monitor doesn't appear to work? Take these notes into consideration:</"
511
+ "p>\r\n"
512
+ "\r\n"
513
+ "<ul>\r\n"
514
+ "\t<li>The 404 Monitor doesn't record 404 errors generated by logged-in users."
515
+ "</li>\r\n"
516
+ "\t<li>In order for the 404 Monitor to track 404 errors, you must have non-"
517
+ "default permalinks enabled under <a href='options-permalink.php' "
518
+ "target='_blank'>Settings &rArr; Permalinks</a>.</li>\r\n"
519
+ "\t<li>Some parts of your website may not be under WordPress's control; the "
520
+ "404 Monitor can't track 404 errors on non-WordPress website areas.</li>\r\n"
521
+ "</ul>\r\n"
522
  msgstr ""
523
 
524
+ #: modules/404s/fofs-settings.php:16
525
+ msgid "404 Monitor Settings"
526
  msgstr ""
527
 
528
+ #: modules/404s/fofs-settings.php:17
529
+ #: modules/internal-link-aliases/internal-link-aliases.php:31
530
+ #: modules/titles/titles.php:34
531
+ msgid "Settings"
532
  msgstr ""
533
 
534
+ #: modules/404s/fofs-settings.php:37
535
+ msgid "Continue monitoring for new 404 errors"
536
  msgstr ""
537
 
538
+ #: modules/404s/fofs-settings.php:37
539
+ msgid "Monitoring Settings"
540
  msgstr ""
541
 
542
+ #: modules/404s/fofs-settings.php:39
543
+ msgid "Only log these types of 404 errors:"
544
  msgstr ""
545
 
546
+ #: modules/404s/fofs-settings.php:40
547
+ msgid "404s generated by search engine spiders"
548
  msgstr ""
549
 
550
+ #: modules/404s/fofs-settings.php:41
551
+ msgid "404s with referring URLs"
552
  msgstr ""
553
 
554
+ #: modules/404s/fofs-settings.php:42
555
+ msgid "Log Restrictions"
556
  msgstr ""
557
 
558
+ #: modules/404s/fofs-settings.php:43
559
+ msgid "Maximum Log Entries"
 
 
 
 
 
560
  msgstr ""
561
 
562
+ #: modules/404s/fofs-settings.php:44
563
+ msgid "URLs to Ignore"
 
 
 
564
  msgstr ""
565
 
566
+ #: modules/404s/fofs-settings.php:44
567
+ msgid "(Use * as wildcard)"
568
  msgstr ""
569
 
570
+ #: modules/slugs/slugs.php:12
571
+ msgid "Slug Optimizer"
 
 
 
 
572
  msgstr ""
573
 
574
+ #: modules/slugs/slugs.php:16
575
+ msgid "Words to Remove"
576
  msgstr ""
577
 
578
+ #: modules/slugs/slugs.php:77
579
  msgid ""
580
+ "\r\n"
581
+ "<ul>\r\n"
582
+ "\t<li><strong>What it does:</strong> Slug Optimizer removes common words "
583
+ "from the portion of a post&#8217;s or Page&#8217;s URL that is based on its "
584
+ "title. (This portion is also known as the &#8220;slug.&#8221;)</li>\r\n"
585
+ "\t<li><strong>Why it helps:</strong> Slug Optimizer increases keyword "
586
+ "potency because there are fewer words in your URLs competing for relevance.</"
587
+ "li>\r\n"
588
+ "\t<li><strong>How to use it:</strong> Slug Optimizer works without any "
589
+ "action required on your part. When you add a new post in your WordPress "
590
+ "admin and specify a title for it, WordPress will generate a slug and the new "
591
+ "post&#8217;s future URL will appear below the title box. While WordPress is "
592
+ "generating the slug, Slug Optimizer takes common words out of it. You can "
593
+ "use the textbox on Slug Optimizer&#8217;s admin page to specify which common "
594
+ "words are removed.</li>\r\n"
595
+ "</ul>\r\n"
596
  msgstr ""
597
 
598
+ #: modules/slugs/slugs.php:87 modules/settings/settings.php:41
599
+ #: modules/modules/modules.php:174 modules/more-links/more-links.php:105
600
+ #: modules/more-links/more-links.php:116
601
+ #: modules/meta/meta-descriptions.php:197 modules/meta/meta-keywords.php:183
602
+ #: modules/titles/titles.php:442 modules/files/files.php:155
603
+ msgid "FAQ"
604
  msgstr ""
605
 
606
+ #: modules/slugs/slugs.php:88
 
 
 
 
 
 
 
 
607
  msgid ""
608
+ "\r\n"
609
+ "<ul>\r\n"
610
+ "\t<li><strong>What&#8217;s a slug?</strong><br />The slug of a post or page "
611
+ "is the portion of its URL that is based on its title. When you edit a post "
612
+ "or Page in WordPress, the slug is the yellow-highlighted portion of the "
613
+ "Permalink beneath the Title textbox.</li>\r\n"
614
+ "\t<li><strong>Does the Slug Optimizer change my existing URLs?</strong><br /"
615
+ ">No. Slug Optimizer will not relocate your content by changing existing "
616
+ "URLs. Slug Optimizer only takes effect on new posts and pages.</li>\r\n"
617
+ "\t<li>\r\n"
618
+ "\t\t<p><strong>How do I see Slug Optimizer in action?</strong><br />Follow "
619
+ "these steps:</p>\r\n"
620
+ "\t\t<ol>\r\n"
621
+ "\t\t\t<li>Create a new post/Page in WordPress.</li>\r\n"
622
+ "\t\t\t<li>Type in a title containing some common and uncommon words.</li>\r\n"
623
+ "\t\t\t<li>Click outside the Title box. WordPress will insert a URL labeled "
624
+ "&#8220;Permalink&#8221; below the Title textbox. The Slug Optimizer will "
625
+ "have removed the common words from the URL.</li>\r\n"
626
+ "\t\t</ol>\r\n"
627
+ "\t</li>\r\n"
628
+ "\t<li><strong>What if I want to include a common word in my slug?</"
629
+ "strong><br />When editing the post or page in question, just click the "
630
+ "&#8220;Edit&#8221; button next to the permalink and change the slug as "
631
+ "desired. The Slug Optimizer won&#8217;t remove words from a manually-edited "
632
+ "slug.</li>\r\n"
633
+ "\t<li><strong>If I edit the optimized slug but then change my mind, how do I "
634
+ "revert back to the optimized slug?</strong><br />When editing the post or "
635
+ "page in question, just click the &#8220;Edit&#8221; button next to the "
636
+ "permalink; a &#8220;Save&#8221; button will appear in its place. Next erase "
637
+ "the contents of the textbox, and then click the aforementioned &#8220;"
638
+ "Save&#8221; button.</li>\r\n"
639
+ "</ul>\r\n"
640
  msgstr ""
641
 
642
+ #: modules/slugs/slugs.php:108
643
+ msgid ""
644
+ "\r\n"
645
+ "<ul>\r\n"
646
+ "\t<li><strong>Why didn&#8217;t the Slug Optimizer remove common words from "
647
+ "my slug?</strong><br />It&#8217;s possible that every word in your post "
648
+ "title is in the list of words to remove. In this case, Slug Optimizer "
649
+ "doesn&#8217;t remove the words, because if it did, you&#8217;d end up with a "
650
+ "blank slug.</li>\r\n"
651
+ "</ul>\r\n"
652
  msgstr ""
653
 
654
+ #: modules/settings/settings-data.php:16
655
+ msgid "Settings Data Manager"
656
  msgstr ""
657
 
658
+ #: modules/settings/settings-data.php:17
659
+ msgid "Manage Settings Data"
660
  msgstr ""
661
 
662
+ #: modules/settings/settings-data.php:21
663
+ msgid "Import"
 
 
664
  msgstr ""
665
 
666
+ #: modules/settings/settings-data.php:22
667
+ msgid "Export"
668
  msgstr ""
669
 
670
+ #: modules/settings/settings-data.php:23 modules/class.su-module.php:1938
671
+ msgid "Reset"
672
  msgstr ""
673
 
674
+ #: modules/settings/settings-data.php:82
675
+ msgid "Settings successfully imported."
676
  msgstr ""
677
 
678
+ #: modules/settings/settings-data.php:84
679
+ msgid ""
680
+ "The uploaded file is not in the proper format. Settings could not be "
681
+ "imported."
682
  msgstr ""
683
 
684
+ #: modules/settings/settings-data.php:86
685
+ msgid "The settings file could not be uploaded successfully."
686
  msgstr ""
687
 
688
+ #: modules/settings/settings-data.php:89
 
 
 
 
 
 
 
 
 
 
 
 
689
  msgid ""
690
+ "Settings could not be imported because no settings file was selected. Please "
691
+ "click the &#8220;Browse&#8221; button and select a file to import."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
692
  msgstr ""
693
 
694
+ #: modules/settings/settings-data.php:130
695
+ msgid ""
696
+ "The uploaded file is not in the proper format. Links could not be imported."
697
  msgstr ""
698
 
699
+ #: modules/settings/settings-data.php:172
700
+ msgid "Links successfully imported."
 
701
  msgstr ""
702
 
703
+ #: modules/settings/settings-data.php:175
704
+ msgid "The CSV file could not be uploaded successfully."
705
  msgstr ""
706
 
707
+ #: modules/settings/settings-data.php:178
708
  msgid ""
709
+ "Links could not be imported because no CSV file was selected. Please click "
710
+ "the &#8220;Browse&#8221; button and select a file to import."
711
  msgstr ""
712
 
713
+ #: modules/settings/settings-data.php:188
714
+ msgid "Import SEO Ultimate Settings File"
715
  msgstr ""
716
 
717
+ #: modules/settings/settings-data.php:190
718
  msgid ""
719
+ "You can use this form to upload and import an SEO Ultimate settings file "
720
+ "stored on your computer. (These files can be created using the Export tool.) "
721
+ "Note that importing a file will overwrite your existing settings with those "
722
+ "in the file."
723
  msgstr ""
724
 
725
+ #: modules/settings/settings-data.php:194
726
  msgid ""
727
+ "Are you sure you want to import this settings file? This will overwrite your "
728
+ "current settings and cannot be undone."
729
  msgstr ""
730
 
731
+ #: modules/settings/settings-data.php:195
732
+ msgid "Import Settings File"
733
  msgstr ""
734
 
735
+ #: modules/settings/settings-data.php:201
736
+ msgid "Import Deeplink Juggernaut CSV File"
737
  msgstr ""
738
 
739
+ #: modules/settings/settings-data.php:203
740
+ msgid ""
741
+ "You can use this form to upload and import a Deeplink Juggernaut CSV file "
742
+ "stored on your computer. (These files can be created using the Export tool.) "
743
+ "Note that importing a file will overwrite your existing links with those in "
744
+ "the file."
745
  msgstr ""
746
 
747
+ #: modules/settings/settings-data.php:207
748
+ msgid ""
749
+ "Are you sure you want to import this CSV file? This will overwrite your "
750
+ "current Deeplink Juggernaut links and cannot be undone."
751
  msgstr ""
752
 
753
+ #: modules/settings/settings-data.php:208
754
+ msgid "Import CSV File"
755
  msgstr ""
756
 
757
+ #: modules/settings/settings-data.php:223
758
+ msgid "Import from Other Plugins"
759
  msgstr ""
760
 
761
+ #: modules/settings/settings-data.php:225
762
+ msgid ""
763
+ "You can import settings and data from these plugins. Clicking a plugin&#8217;"
764
+ "s name will take you to the importer page, where you can customize "
765
+ "parameters and start the import."
766
  msgstr ""
767
 
768
+ #: modules/settings/settings-data.php:245
769
+ msgid "Export SEO Ultimate Settings File"
770
  msgstr ""
771
 
772
+ #: modules/settings/settings-data.php:247
773
+ msgid ""
774
+ "You can use this export tool to download an SEO Ultimate settings file to "
775
+ "your computer."
776
  msgstr ""
777
 
778
+ #: modules/settings/settings-data.php:249
779
+ msgid ""
780
+ "A settings file includes the data of every checkbox and textbox of every "
781
+ "installed module. It does NOT include site-specific data like logged 404s or "
782
+ "post/page title/meta data (this data would be included in a standard "
783
+ "database backup, however)."
784
  msgstr ""
785
 
786
+ #: modules/settings/settings-data.php:252
787
+ msgid "Download Settings File"
788
  msgstr ""
789
 
790
+ #: modules/settings/settings-data.php:257
791
+ msgid "Export Deeplink Juggernaut CSV File"
792
  msgstr ""
793
 
794
+ #: modules/settings/settings-data.php:259
795
+ msgid ""
796
+ "You can use this export tool to download a CSV file (comma-separated values "
797
+ "file) that contains your Deeplink Juggernaut links. Once you download this "
798
+ "file to your computer, you can edit it using your favorite spreadsheet "
799
+ "program. When you&#8217;re done editing, you can re-upload the file using "
800
+ "the Import tool."
801
  msgstr ""
802
 
803
+ #: modules/settings/settings-data.php:262
804
+ msgid "Download CSV File"
805
  msgstr ""
806
 
807
+ #: modules/settings/settings-data.php:269
808
+ msgid "All settings have been erased and defaults have been restored."
809
  msgstr ""
810
 
811
+ #: modules/settings/settings-data.php:271
812
+ msgid ""
813
+ "You can erase all your SEO Ultimate settings and restore them to &#8220;"
814
+ "factory defaults&#8221; by clicking the button below."
815
  msgstr ""
816
 
817
+ #: modules/settings/settings-data.php:274
818
+ msgid ""
819
+ "Are you sure you want to erase all module settings? This cannot be undone."
820
  msgstr ""
821
 
822
+ #: modules/settings/settings-data.php:275
823
+ msgid "Restore Default Settings"
824
  msgstr ""
825
 
826
+ #: modules/settings/settings.php:12
827
+ msgid "Plugin Settings"
828
  msgstr ""
829
 
830
+ #: modules/settings/settings.php:13
831
+ msgid "SEO Ultimate Plugin Settings"
832
  msgstr ""
833
 
834
+ #: modules/settings/settings.php:23
835
+ msgid ""
836
+ "\r\n"
837
+ "<p>The Settings module lets you manage settings related to the SEO Ultimate "
838
+ "plugin as a whole.</p>\r\n"
839
  msgstr ""
840
 
841
+ #: modules/settings/settings.php:29 modules/settings/global-settings.php:18
842
+ msgid "Global Settings"
843
  msgstr ""
844
 
845
+ #: modules/settings/settings.php:30
846
+ msgid ""
847
+ "\r\n"
848
+ "<p>Here&#8217;s information on some of the settings:</p>\r\n"
849
+ "<ul>\r\n"
850
+ "\t<li><strong>Enable nofollow&#8217;d attribution link</strong> &mdash; If "
851
+ "enabled, the plugin will display an attribution link on your site.</li>\r\n"
852
+ "\t<li><strong>Notify me about unnecessary active plugins</strong> &mdash; If "
853
+ "enabled, SEO Ultimate will add notices to your &#8220;Plugins&#8221; "
854
+ "administration page if you have any other plugins installed whose "
855
+ "functionality SEO Ultimate replaces.</li>\r\n"
856
+ "\t<li><strong>Insert comments around HTML code insertions</strong> &mdash; "
857
+ "If enabled, SEO Ultimate will use HTML comments to identify all code it "
858
+ "inserts into your <code>&lt;head&gt;</code> tag. This is useful if you&#8217;"
859
+ "re trying to figure out whether or not SEO Ultimate is inserting a certain "
860
+ "piece of header code.</li>\r\n"
861
+ "</ul>\r\n"
862
  msgstr ""
863
 
864
+ #: modules/settings/settings.php:42
865
+ msgid ""
866
+ "\r\n"
867
+ "<ul>\r\n"
868
+ "\t<li>\r\n"
869
+ "\t\t<p><strong>Why doesn&#8217;t the settings exporter include all my data "
870
+ "in an export?</strong><br />The settings export/import system is designed to "
871
+ "facilitate moving settings between sites. It is NOT a replacement for "
872
+ "keeping your database backed up. The settings exporter doesn&#8217;t include "
873
+ "data that is specific to your site. For example, logged 404 errors are not "
874
+ "included because those 404 errors only apply to your site, not another site. "
875
+ "Also, post/page titles/meta are not included because the site into which you "
876
+ "import the file could have totally different posts/pages located under the "
877
+ "same ID numbers.</p>\r\n"
878
+ "\t\t<p>If you&#8217;re moving a site to a different server or restoring a "
879
+ "crashed site, you should do so with database backup/restore.</p>\r\n"
880
+ "\t</li>\r\n"
881
+ "</ul>\r\n"
882
  msgstr ""
883
 
884
+ #: modules/settings/install.php:18
885
+ msgid "Upgrade/Downgrade/Reinstall"
886
  msgstr ""
887
 
888
+ #: modules/settings/install.php:19
889
+ msgid "Installer"
890
  msgstr ""
891
 
892
+ #: modules/settings/install.php:23 modules/settings/install.php:48
893
+ msgid "Upgrade"
 
 
 
 
894
  msgstr ""
895
 
896
+ #: modules/settings/install.php:24 modules/settings/install.php:71
897
+ msgid "Downgrade"
898
+ msgstr ""
899
+
900
+ #: modules/settings/install.php:25 modules/settings/install.php:86
901
+ msgid "Reinstall"
902
+ msgstr ""
903
+
904
+ #: modules/settings/install.php:42
905
  msgid ""
906
+ "From the list below, select the version to which you would like to upgrade. "
907
+ "Then click the &#8220;Upgrade&#8221; button at the bottom of the screen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
908
  msgstr ""
909
 
910
+ #: modules/settings/install.php:51
911
+ msgid "You are already running the latest version."
912
  msgstr ""
913
 
914
+ #: modules/settings/install.php:53
915
  msgid ""
916
+ "There was an error retrieving the list of available versions. Please try "
917
+ "again later. You can also upgrade to the latest version of SEO Ultimate "
918
+ "using the WordPress plugin upgrader."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
919
  msgstr ""
920
 
921
+ #: modules/settings/install.php:62
922
  msgid ""
923
+ "Downgrading is provided as a convenience only and is not officially "
924
+ "supported. Although unlikely, you may lose data in the downgrading process. "
925
+ "It is your responsibility to backup your database before proceeding."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
926
  msgstr ""
927
 
928
+ #: modules/settings/install.php:65
929
  msgid ""
930
+ "From the list below, select the version to which you would like to "
931
+ "downgrade. Then click the &#8220;Downgrade&#8221; button at the bottom of "
932
+ "the screen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
933
  msgstr ""
934
 
935
+ #: modules/settings/install.php:74
936
+ msgid ""
937
+ "Downgrading to versions earlier than %s is not supported because doing so "
938
+ "will result in data loss."
 
 
939
  msgstr ""
940
 
941
+ #: modules/settings/install.php:76
942
  msgid ""
943
+ "There was an error retrieving the list of available versions. Please try "
944
+ "again later."
 
 
 
 
 
 
 
 
 
 
 
945
  msgstr ""
946
 
947
+ #: modules/settings/install.php:81
948
  msgid ""
949
+ "To download and install a fresh copy of the SEO Ultimate version you are "
950
+ "currently using, click the &#8220;Reinstall&#8221; button below."
951
  msgstr ""
952
 
953
+ #: modules/settings/install.php:108
954
+ msgid "Your Current Version"
955
  msgstr ""
956
 
957
+ #: modules/settings/install.php:110
958
+ msgid "Latest Version"
959
  msgstr ""
960
 
961
+ #: modules/settings/install.php:130
962
+ msgid ""
963
+ "You do not have sufficient permissions to upgrade/downgrade plugins for this "
964
+ "blog."
965
  msgstr ""
966
 
967
+ #: modules/settings/install.php:140
968
+ msgid "Downgrade to SEO Ultimate %s"
969
  msgstr ""
970
 
971
+ #: modules/settings/install.php:143
972
+ msgid "Reinstall SEO Ultimate %s"
973
  msgstr ""
974
 
975
+ #: modules/settings/install.php:146
976
+ msgid "Upgrade to SEO Ultimate %s"
977
  msgstr ""
978
 
979
+ #: modules/settings/global-settings.php:40
980
+ msgid "Enable nofollow&#8217;d attribution link"
981
  msgstr ""
982
 
983
+ #: modules/settings/global-settings.php:41
984
+ msgid "Enable attribution link CSS styling"
985
  msgstr ""
986
 
987
+ #: modules/settings/global-settings.php:42
988
+ msgid "Notify me about unnecessary active plugins"
989
  msgstr ""
990
 
991
+ #: modules/settings/global-settings.php:43
992
+ msgid "Insert comments around HTML code insertions"
993
  msgstr ""
994
 
995
+ #: modules/settings/uninstall.php:17
996
+ msgid "Uninstaller"
997
  msgstr ""
998
 
999
+ #: modules/settings/uninstall.php:27
1000
  msgid ""
1001
+ "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
1002
+ "files."
1003
  msgstr ""
1004
 
1005
+ #: modules/settings/uninstall.php:30
1006
+ msgid ""
1007
+ "Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
1008
+ "your SEO Ultimate settings and cannot be undone."
1009
  msgstr ""
1010
 
1011
+ #: modules/settings/uninstall.php:31
1012
+ msgid "Uninstall Now"
1013
  msgstr ""
1014
 
1015
+ #: modules/settings/uninstall.php:35 modules/settings/uninstall.php:42
1016
+ msgid "Uninstall SEO Ultimate"
1017
  msgstr ""
1018
 
1019
+ #: modules/settings/uninstall.php:46
1020
+ msgid "Deleted settings."
1021
  msgstr ""
1022
 
1023
+ #: modules/settings/uninstall.php:53
1024
+ msgid "An error occurred while deleting files."
1025
  msgstr ""
1026
 
1027
+ #: modules/settings/uninstall.php:55
1028
+ msgid "Deleted files."
 
1029
  msgstr ""
1030
 
1031
+ #: modules/settings/uninstall.php:56
1032
+ msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1033
  msgstr ""
1034
 
1035
+ #: modules/modules/modules.php:12
1036
+ msgid "Module Manager"
 
 
1037
  msgstr ""
1038
 
1039
+ #: modules/modules/modules.php:13
1040
+ msgid "Modules"
1041
  msgstr ""
1042
 
1043
+ #: modules/modules/modules.php:41
1044
+ msgid ""
1045
+ "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
1046
+ "&#8221; By default, most of these modules are listed in the &#8220;"
1047
+ "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
1048
+ "you can view documentation by clicking the tabs in the upper-right-hand "
1049
+ "corner of your administration screen."
1050
  msgstr ""
1051
 
1052
+ #: modules/modules/modules.php:43
1053
+ msgid ""
1054
+ "The Module Manager lets you disable or hide modules you don&#8217;t use. "
1055
+ "You can also silence modules from displaying bubble alerts on the menu."
1056
  msgstr ""
1057
 
1058
+ #: modules/modules/modules.php:47
1059
+ msgid "Modules updated."
1060
  msgstr ""
1061
 
1062
+ #: modules/modules/modules.php:52
1063
+ msgid "Status"
1064
  msgstr ""
1065
 
1066
+ #: modules/modules/modules.php:53
1067
+ msgid "Module"
 
 
1068
  msgstr ""
1069
 
1070
+ #: modules/modules/modules.php:66
1071
+ msgid "Enabled"
1072
  msgstr ""
1073
 
1074
+ #: modules/modules/modules.php:67
1075
+ msgid "Silenced"
1076
  msgstr ""
1077
 
1078
+ #: modules/modules/modules.php:68
1079
+ msgid "Hidden"
1080
  msgstr ""
1081
 
1082
+ #: modules/modules/modules.php:69
1083
+ msgid "Disabled"
1084
  msgstr ""
1085
 
1086
+ #: modules/modules/modules.php:161
1087
+ msgid "Options Help"
1088
  msgstr ""
1089
 
1090
+ #: modules/modules/modules.php:162
1091
+ msgid ""
1092
+ "\r\n"
1093
+ "<p>The Module Manager lets you customize the visibility and accessibility of "
1094
+ "each module; here are the options available:</p>\r\n"
1095
+ "<ul>\r\n"
1096
+ "\t<li><strong>Enabled</strong> &mdash; The default option. The module will "
1097
+ "be fully enabled and accessible.</li>\r\n"
1098
+ "\t<li><strong>Silenced</strong> &mdash; The module will be enabled and "
1099
+ "accessible, but it won't be allowed to display numeric bubble alerts on the "
1100
+ "menu.</li>\r\n"
1101
+ "\t<li><strong>Hidden</strong> &mdash; The module's functionality will be "
1102
+ "enabled, but the module won't be visible on the SEO menu. You will still be "
1103
+ "able to access the module's admin page by clicking on its title in the "
1104
+ "Module Manager table.</li>\r\n"
1105
+ "\t<li><strong>Disabled</strong> &mdash; The module will be completely "
1106
+ "disabled and inaccessible.</li>\r\n"
1107
+ "</ul>\r\n"
1108
  msgstr ""
1109
 
1110
+ #: modules/modules/modules.php:175
1111
+ msgid ""
1112
+ "\r\n"
1113
+ "<ul>\r\n"
1114
+ "\t<li><strong>What are modules?</strong><br />SEO Ultimate&#8217;s features "
1115
+ "are divided into groups called &#8220;modules.&#8221; SEO Ultimate&#8217;s "
1116
+ "&#8220;Module Manager&#8221; lets you enable or disable each of these groups "
1117
+ "of features. This way, you can pick-and-choose which SEO Ultimate features "
1118
+ "you want.</li>\r\n"
1119
+ "\t<li><strong>Can I access a module again after I&#8217;ve hidden it?</"
1120
+ "strong><br />Yes. Just go to the Module Manager and click the module&#8217;s "
1121
+ "title to open its admin page. If you&#8217;d like to put the module back in "
1122
+ "the &#8220;SEO&#8221; menu, just re-enable the module in the Module Manager "
1123
+ "and click &#8220;Save Changes.&#8221;</li>\r\n"
1124
+ "\t<li><strong>How do I disable the number bubbles on the &#8220;SEO&#8221; "
1125
+ "menu?</strong><br />Just go to the Module Manager and select the &#8220;"
1126
+ "Silenced&#8221; option for any modules generating number bubbles. Then click "
1127
+ "&#8220;Save Changes.&#8221;</li>\r\n"
1128
+ "</ul>\r\n"
1129
+ msgstr ""
1130
+
1131
+ #: modules/more-links/more-links.php:12 modules/more-links/more-links.php:102
1132
+ msgid "More Link Customizer"
1133
+ msgstr ""
1134
+
1135
+ #: modules/more-links/more-links.php:30
1136
+ msgid "Default More Link Text"
1137
  msgstr ""
1138
 
1139
+ #: modules/more-links/more-links.php:51
1140
+ msgid "More Link Text:"
1141
  msgstr ""
1142
 
1143
+ #: modules/more-links/more-links.php:75
1144
+ msgid ""
1145
+ "\r\n"
1146
+ "<ul>\r\n"
1147
+ "\t<li><strong>What it does:</strong> More Link Customizer lets you modify "
1148
+ "the anchor text of your posts&#8217; <a href='http://codex.wordpress.org/"
1149
+ "Customizing_the_Read_More' target='_blank'>&#8220;more&#8221; links</a>.</li>"
1150
+ "\r\n"
1151
+ "\t<li><strong>Why it helps:</strong> On the typical WordPress setup, the "
1152
+ "&#8220;more link&#8221; always has the same anchor text (e.g. &#8220;Read "
1153
+ "more of this entry&#8221;). Since internal anchor text conveys web page "
1154
+ "topicality to search engines, the &#8220;read more&#8221; phrase isn&#8217;t "
1155
+ "a desirable anchor phrase. More Link Customizer lets you replace the "
1156
+ "boilerplate text with a new anchor that, by default, integrates your post "
1157
+ "titles (which will ideally be keyword-oriented).</li>\r\n"
1158
+ "\t<li><strong>How to use it:</strong> On this page you can set the anchor "
1159
+ "text you&#8217;d like to use by default. The <code>{post}</code> variable "
1160
+ "will be replaced with the post&#8217;s title. HTML and encoded entities are "
1161
+ "supported. If instead you decide that you&#8217;d like to use the default "
1162
+ "anchor text specified by your currently-active theme, just erase the "
1163
+ "contents of the textbox. The anchor text can be overridden on a per-post "
1164
+ "basis via the &#8220;More Link Text&#8221; box in the &#8220;SEO "
1165
+ "Settings&#8221; section of the WordPress post editor.</li>\r\n"
1166
+ "</ul>\r\n"
1167
  msgstr ""
1168
 
1169
+ #: modules/more-links/more-links.php:83
1170
+ msgid ""
1171
+ "\r\n"
1172
+ "<ul>\r\n"
1173
+ "\t<li>\r\n"
1174
+ "\t\t<p><strong>Why is the More Link Customizer an improvement over "
1175
+ "WordPress&#8217;s built-in functionality?</strong><br />Although WordPress "
1176
+ "does allow basic <a href='http://codex.wordpress.org/"
1177
+ "Customizing_the_Read_More#Having_a_custom_text_for_each_post' "
1178
+ "target='_blank'>custom &#8220;more&#8221; anchors</a>, the SEO Ultimate "
1179
+ "approach has several benefits:</p>\r\n"
1180
+ "\t\t<ul>\r\n"
1181
+ "\t\t\t<li>More Link Customizer (MLC) lets you set a custom default anchor "
1182
+ "text. WordPress, on the other hand, leaves this up to the currently-active "
1183
+ "theme.</li>\r\n"
1184
+ "\t\t\t<li>MLC lets you dynamically incorporate the post&#8217;s title into "
1185
+ "the anchor text.</li>\r\n"
1186
+ "\t\t\t<li>MLC lets you include HTML tags in your anchor, whereas WordPress "
1187
+ "strips these out.</li>\r\n"
1188
+ "\t\t\t<li>MLC&#8217;s functionality is much more prominent than "
1189
+ "WordPress&#8217;s unintuitive, barely-documented approach.</li>\r\n"
1190
+ "\t\t\t<li>Unlike WordPress's method, MLC doesn't require you to utilize the "
1191
+ "HTML editor.</li>\r\n"
1192
+ "\t\t</ul>\r\n"
1193
+ "\t\t<p>If you&#8217;ve already specified custom anchors via WordPress&#8217;"
1194
+ "s method, SEO Ultimate will import those anchors automatically into the More "
1195
+ "Link Customizer.</p>\r\n"
1196
+ "\t</li>\r\n"
1197
+ "</ul>\r\n"
1198
  msgstr ""
1199
 
1200
+ #: modules/import-aiosp/import-aiosp.php:12
1201
+ msgid "Import from All in One SEO Pack"
1202
  msgstr ""
1203
 
1204
+ #: modules/import-aiosp/import-aiosp.php:13
1205
+ msgid "AIOSP Import"
1206
  msgstr ""
1207
 
1208
+ #: modules/import-aiosp/import-aiosp.php:15
1209
+ msgid "All in One SEO Pack"
1210
  msgstr ""
1211
 
1212
+ #: modules/import-aiosp/import-aiosp.php:16
1213
+ msgid "AIOSP"
1214
  msgstr ""
1215
 
1216
+ #: modules/import-aiosp/import-aiosp.php:17
1217
+ msgid "Import post data (custom title tags and meta tags)."
1218
  msgstr ""
1219
 
1220
+ #: modules/import-aiosp/import-aiosp.php:21
1221
+ msgid ""
1222
+ "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
1223
+ "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
1224
+ "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
1225
+ "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
1226
+ "to be currently installed or activated for the import to take place."
1227
  msgstr ""
1228
 
1229
+ #: modules/import-aiosp/import-aiosp.php:23
1230
+ msgid ""
1231
+ "The import tool can only move over data from AIOSP version 1.6 or above. If "
1232
+ "you use an older version of AIOSP, you should update to the latest version "
1233
+ "first and run AIOSP&#8217;s upgrade process."
1234
  msgstr ""
1235
 
1236
+ #: modules/link-nofollow/link-nofollow.php:12
1237
+ msgid "Nofollow Manager"
1238
  msgstr ""
1239
 
1240
+ #: modules/link-nofollow/link-nofollow.php:53
1241
+ msgid "Add the nofollow attribute to..."
1242
  msgstr ""
1243
 
1244
+ #: modules/link-nofollow/link-nofollow.php:55
1245
+ msgid "Adjacent post links"
1246
  msgstr ""
1247
 
1248
+ #: modules/link-nofollow/link-nofollow.php:56
1249
+ msgid "Category links (after posts)"
1250
  msgstr ""
1251
 
1252
+ #: modules/link-nofollow/link-nofollow.php:57
1253
+ msgid "Category links (in lists)"
1254
  msgstr ""
1255
 
1256
+ #: modules/link-nofollow/link-nofollow.php:58
1257
+ msgid "Comment anchor links"
1258
  msgstr ""
1259
 
1260
+ #: modules/link-nofollow/link-nofollow.php:59
1261
+ msgid "Comment feed links"
1262
  msgstr ""
1263
 
1264
+ #: modules/link-nofollow/link-nofollow.php:60
1265
+ msgid "Date-based archive links"
1266
  msgstr ""
1267
 
1268
+ #: modules/link-nofollow/link-nofollow.php:61
1269
+ msgid "Pagination navigation links (all)"
1270
  msgstr ""
1271
 
1272
+ #: modules/link-nofollow/link-nofollow.php:62
1273
+ msgid "Pagination navigation links (on blog home only)"
1274
  msgstr ""
1275
 
1276
+ #: modules/link-nofollow/link-nofollow.php:63
1277
+ msgid "&#8220;Read more&#8221; links"
 
 
 
 
1278
  msgstr ""
1279
 
1280
+ #: modules/link-nofollow/link-nofollow.php:64
1281
+ msgid "Registration link"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1282
  msgstr ""
1283
 
1284
+ #: modules/link-nofollow/link-nofollow.php:65
1285
+ msgid "Login link"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1286
  msgstr ""
1287
 
1288
+ #: modules/link-nofollow/link-nofollow.php:66
1289
+ msgid "Tag links (after posts)"
 
 
 
 
 
 
 
 
 
 
1290
  msgstr ""
1291
 
1292
+ #: modules/link-nofollow/link-nofollow.php:67
1293
+ msgid "Tag links (in lists and clouds)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1294
  msgstr ""
1295
 
1296
+ #: modules/link-nofollow/link-nofollow.php:76
1297
+ msgid "When displaying page lists, nofollow links to this page"
1298
  msgstr ""
1299
 
1300
+ #: modules/link-nofollow/link-nofollow.php:76
1301
+ msgid "Nofollow:"
1302
  msgstr ""
1303
 
1304
+ #: modules/link-nofollow/link-nofollow.php:131
1305
+ msgid ""
1306
+ "\r\n"
1307
+ "<p>Nofollow Manager adds the <code>rel=&quot;nofollow&quot;</code> attribute "
1308
+ "to types of links that you specify. The <code>rel=&quot;nofollow&quot;</"
1309
+ "code> attribute prevents a link from passing PageRank.</p>\r\n"
1310
+ "<p>If you&#8217;re migrating to SEO Ultimate from another plugin, Nofollow "
1311
+ "Manager can help you maintain your existing settings (as part of an &#8220;"
1312
+ "if it ain&#8217;t broke don&#8217;t fix it&#8221; strategy). In other cases, "
1313
+ "however, we recommend not using the Nofollow Manager because in 2008 Google "
1314
+ "disabled the ability to use the <code>rel=&quot;nofollow&quot;</code> "
1315
+ "attribute for PageRank sculpting.</p>\r\n"
1316
  msgstr ""
1317
 
1318
+ #: modules/sharing-buttons/sharing-buttons.php:12
1319
+ #: modules/sharing-buttons/sharing-buttons.php:72
1320
+ msgid "Sharing Facilitator"
1321
  msgstr ""
1322
 
1323
+ #: modules/sharing-buttons/sharing-buttons.php:25
1324
+ msgid "Bookmark and Share"
1325
  msgstr ""
1326
 
1327
+ #: modules/sharing-buttons/sharing-buttons.php:39
1328
+ msgid "Which provider would you like to use for your sharing buttons?"
1329
  msgstr ""
1330
 
1331
+ #: modules/sharing-buttons/sharing-buttons.php:41
1332
+ msgid "None; disable sharing buttons"
1333
  msgstr ""
1334
 
1335
+ #: modules/sharing-buttons/sharing-buttons.php:42
1336
+ msgid "Use the ShareThis button"
 
 
 
 
1337
  msgstr ""
1338
 
1339
+ #: modules/sharing-buttons/sharing-buttons.php:43
1340
+ msgid "Use the AddThis button"
 
 
 
 
 
 
 
1341
  msgstr ""
1342
 
1343
+ #: modules/sharing-buttons/sharing-buttons.php:73
1344
  msgid ""
1345
  "\r\n"
1346
  "<ul>\r\n"
1347
+ "\t<li><strong>What it does:</strong> Sharing Facilitator adds buttons to "
1348
+ "your posts/pages that make it easy for visitors to share your content.</li>"
1349
+ "\r\n"
1350
+ "\t<li><strong>Why it helps:</strong> When visitors share your content on "
1351
+ "social networking sites, this can build links to your site. Sharing "
1352
+ "Facilitator makes it easy for visitors to do this.</li>\r\n"
1353
+ "\t<li><strong>How to use it:</strong> Pick which button type you&#8217;d "
1354
+ "like to use (ShareThis or AddThis) and click Save Changes. Try enabling each "
1355
+ "button on your site and see which one you like better.</li>\r\n"
 
1356
  "</ul>\r\n"
1357
  msgstr ""
1358
 
1359
+ #: modules/autolinks/content-autolinks.php:16
1360
+ msgid "Content Deeplink Juggernaut"
1361
+ msgstr ""
1362
+
1363
+ #: modules/autolinks/content-autolinks.php:17
1364
+ msgid "Content Links"
1365
+ msgstr ""
1366
+
1367
+ #: modules/autolinks/content-autolinks.php:281
1368
  msgid ""
1369
+ "The Content Links section of Deeplink Juggernaut lets you automatically link "
1370
+ "a certain word or phrase in your post/page content to a URL you specify."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1371
  msgstr ""
1372
 
1373
+ #: modules/autolinks/content-autolinks.php:337
1374
+ #: modules/autolinks/footer-autolinks.php:157
1375
+ msgid "Edit Existing Links"
1376
  msgstr ""
1377
 
1378
+ #: modules/autolinks/content-autolinks.php:341
1379
+ #: modules/autolinks/footer-autolinks.php:161
1380
+ msgid "Add a New Link"
1381
  msgstr ""
1382
 
1383
+ #: modules/autolinks/content-autolinks.php:352
1384
+ #: modules/autolinks/footer-autolinks.php:171
1385
+ msgid "Anchor Text"
1386
  msgstr ""
1387
 
1388
+ #: modules/autolinks/content-autolinks.php:353
1389
+ #: modules/autolinks/footer-autolinks.php:172
1390
+ msgid "Destination"
1391
  msgstr ""
1392
 
1393
+ #: modules/autolinks/content-autolinks.php:354
1394
+ #: modules/autolinks/footer-autolinks.php:173
1395
+ msgid "Title Attribute"
1396
  msgstr ""
1397
 
1398
+ #: modules/autolinks/content-autolinks.php:356
1399
+ msgid "Site Cap"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1400
  msgstr ""
1401
 
1402
+ #: modules/autolinks/content-autolinks.php:357
1403
+ #: modules/autolinks/footer-autolinks.php:174
1404
+ msgid "Options"
1405
  msgstr ""
1406
 
1407
+ #: modules/autolinks/content-autolinks.php:359
1408
+ #: modules/autolinks/footer-autolinks.php:176
1409
+ #: modules/internal-link-aliases/internal-link-aliases.php:91
1410
+ msgid "Delete"
1411
  msgstr ""
1412
 
1413
+ #: modules/autolinks/content-autolinks.php:394
1414
+ #: modules/autolinks/footer-autolinks.php:210 modules/noindex/noindex.php:54
1415
+ #: modules/noindex/noindex.php:78
1416
+ msgid "Nofollow"
1417
  msgstr ""
1418
 
1419
+ #: modules/autolinks/content-autolinks.php:396
1420
+ #: modules/autolinks/footer-autolinks.php:212
1421
+ msgid "New window"
1422
  msgstr ""
1423
 
1424
+ #: modules/autolinks/content-autolinks.php:461
1425
+ msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
 
1426
  msgstr ""
1427
 
1428
+ #: modules/autolinks/content-autolinks.php:464
1429
+ msgid "Don&#8217;t add autolinks to anchor texts found in this post."
 
 
1430
  msgstr ""
1431
 
1432
+ #: modules/autolinks/content-autolinks.php:464
1433
+ msgid "Autolink Exclusion:"
1434
  msgstr ""
1435
 
1436
+ #: modules/autolinks/content-autolinks.php:470
1437
  msgid ""
1438
+ "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
1439
+ "into this box, Deeplink Juggernaut will search for that anchor in all your "
1440
+ "other posts and link it to this post. For example, if the post you&#8217;re "
1441
+ "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
1442
+ "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
1443
+ "Deeplink Juggernaut will automatically build internal links to this post "
1444
+ "with that anchor text (assuming other posts contain that text)."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1445
  msgstr ""
1446
 
1447
+ #: modules/autolinks/autolinks.php:11
1448
+ msgid "Deeplink Juggernaut"
1449
+ msgstr ""
1450
+
1451
+ #: modules/autolinks/autolinks.php:18
1452
+ msgid ""
1453
+ "Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
1454
+ "(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
1455
+ "WordPress 3.2.) If you aren&#8217;t sure how to upgrade PHP, please ask your "
1456
+ "webhost. In the meantime, you can return to an older version of Deeplink "
1457
+ "Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
1458
+ "a> to SEO Ultimate 5.9."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1459
  msgstr ""
1460
 
1461
+ #: modules/autolinks/footer-autolinks-settings.php:16
1462
+ msgid "Footer Deeplink Juggernaut Settings"
1463
  msgstr ""
1464
 
1465
+ #: modules/autolinks/footer-autolinks-settings.php:17
1466
+ msgid "Footer Link Settings"
 
1467
  msgstr ""
1468
 
1469
+ #: modules/autolinks/footer-autolinks-settings.php:28
1470
+ msgid "HTML Formats"
1471
  msgstr ""
1472
 
1473
+ #: modules/autolinks/footer-autolinks-settings.php:31
1474
+ msgid "Link Section Format"
1475
  msgstr ""
1476
 
1477
+ #: modules/autolinks/footer-autolinks-settings.php:32
1478
+ msgid "Link Format"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1479
  msgstr ""
1480
 
1481
+ #: modules/autolinks/footer-autolinks-settings.php:34
1482
+ msgid "Link Separator"
1483
  msgstr ""
1484
 
1485
+ #: modules/autolinks/footer-autolinks.php:16
1486
+ msgid "Footer Deeplink Juggernaut"
1487
  msgstr ""
1488
 
1489
+ #: modules/autolinks/footer-autolinks.php:17 modules/widgets/widgets.php:164
1490
+ msgid "Footer Links"
1491
  msgstr ""
1492
 
1493
+ #: modules/autolinks/footer-autolinks.php:169
1494
+ msgid "Link Location (optional)"
1495
  msgstr ""
1496
 
1497
+ #: modules/autolinks/footer-autolinks.php:197
1498
+ msgid "Match child content"
1499
  msgstr ""
1500
 
1501
+ #: modules/autolinks/footer-autolinks.php:199
1502
+ msgid "Negative match"
1503
  msgstr ""
1504
 
1505
+ #: modules/autolinks/content-autolinks-settings.php:16
1506
+ msgid "Content Deeplink Juggernaut Settings"
1507
  msgstr ""
1508
 
1509
+ #: modules/autolinks/content-autolinks-settings.php:17
1510
+ msgid "Content Link Settings"
1511
  msgstr ""
1512
 
1513
+ #: modules/autolinks/content-autolinks-settings.php:40
1514
+ msgid "Add Autolinks to..."
1515
  msgstr ""
1516
 
1517
+ #: modules/autolinks/content-autolinks-settings.php:43
1518
+ msgid "Allow posts to link to themselves."
1519
  msgstr ""
1520
 
1521
+ #: modules/autolinks/content-autolinks-settings.php:44
1522
+ msgid ""
1523
+ "Allow posts to link to the URL by which the visitor is accessing the post."
1524
  msgstr ""
1525
 
1526
+ #: modules/autolinks/content-autolinks-settings.php:45
1527
+ msgid "Self-Linking"
1528
  msgstr ""
1529
 
1530
+ #: modules/autolinks/content-autolinks-settings.php:48
1531
+ msgid "Enable per-link customization of quantity limits."
1532
  msgstr ""
1533
 
1534
+ #: modules/autolinks/content-autolinks-settings.php:49
1535
+ msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1536
  msgstr ""
1537
 
1538
+ #: modules/autolinks/content-autolinks-settings.php:50
1539
+ msgid ""
1540
+ "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1541
+ "etc."
1542
  msgstr ""
1543
 
1544
+ #: modules/autolinks/content-autolinks-settings.php:51
1545
+ msgid ""
1546
+ "Don&#8217;t link the same anchor text any more than %d times across my "
1547
+ "entire site."
1548
  msgstr ""
1549
 
1550
+ #: modules/autolinks/content-autolinks-settings.php:52
1551
+ msgid ""
1552
+ "Don&#8217;t link to the same destination any more than %d times per post/"
1553
+ "page/etc."
1554
  msgstr ""
1555
 
1556
+ #: modules/autolinks/content-autolinks-settings.php:53
1557
+ msgid "Quantity Restrictions"
1558
+ msgstr ""
1559
+
1560
+ #: modules/autolinks/content-autolinks-settings.php:55
1561
  msgid ""
1562
+ "Don&#8217;t add autolinks to text within these HTML tags <em>(separate with "
1563
+ "commas)</em>:"
 
 
 
 
 
 
 
 
1564
  msgstr ""
1565
 
1566
+ #: modules/autolinks/content-autolinks-settings.php:55
1567
+ msgid "Tag Restrictions"
1568
  msgstr ""
1569
 
1570
+ #: modules/autolinks/content-autolinks-settings.php:63
1571
+ msgid "%s can only link to internal destinations that share at least one..."
1572
  msgstr ""
1573
 
1574
+ #: modules/autolinks/content-autolinks-settings.php:76
1575
+ msgid "Siloing"
1576
  msgstr ""
1577
 
1578
+ #: modules/noindex/noindex.php:12
1579
+ msgid "Noindex Manager"
1580
  msgstr ""
1581
 
1582
+ #: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
1583
+ #: modules/noindex/noindex.php:67
1584
+ msgid "Noindex"
1585
  msgstr ""
1586
 
1587
+ #: modules/noindex/noindex.php:43 modules/meta/meta-keywords.php:33
1588
+ msgid "Default Values"
1589
  msgstr ""
1590
 
1591
+ #: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
1592
+ msgid "Use default"
1593
  msgstr ""
1594
 
1595
+ #: modules/noindex/noindex.php:63
1596
+ msgid "noindex"
1597
+ msgstr ""
1598
+
1599
+ #: modules/noindex/noindex.php:64
1600
+ msgid "index"
1601
+ msgstr ""
1602
+
1603
+ #: modules/noindex/noindex.php:74
1604
+ msgid "nofollow"
1605
+ msgstr ""
1606
+
1607
+ #: modules/noindex/noindex.php:75
1608
+ msgid "follow"
1609
+ msgstr ""
1610
+
1611
+ #: modules/noindex/noindex.php:89
1612
  msgid ""
1613
+ "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
1614
+ "block indexing of the entire site, regardless of which options are set below."
1615
+ msgstr ""
1616
+
1617
+ #: modules/noindex/noindex.php:92
1618
+ msgid "Prevent indexing of..."
1619
+ msgstr ""
1620
+
1621
+ #: modules/noindex/noindex.php:93
1622
+ msgid "Administration back-end pages"
1623
+ msgstr ""
1624
+
1625
+ #: modules/noindex/noindex.php:94
1626
+ msgid "Author archives"
1627
+ msgstr ""
1628
+
1629
+ #: modules/noindex/noindex.php:95
1630
+ msgid "Blog search pages"
1631
+ msgstr ""
1632
+
1633
+ #: modules/noindex/noindex.php:96
1634
+ msgid "Category archives"
1635
+ msgstr ""
1636
+
1637
+ #: modules/noindex/noindex.php:97
1638
+ msgid "Comment feeds"
1639
+ msgstr ""
1640
+
1641
+ #: modules/noindex/noindex.php:98
1642
+ msgid "Comment subpages"
1643
+ msgstr ""
1644
+
1645
+ #: modules/noindex/noindex.php:99
1646
+ msgid "Date-based archives"
1647
+ msgstr ""
1648
+
1649
+ #: modules/noindex/noindex.php:100
1650
+ msgid "Subpages of the homepage"
1651
+ msgstr ""
1652
+
1653
+ #: modules/noindex/noindex.php:101
1654
+ msgid "Tag archives"
1655
  msgstr ""
1656
 
1657
+ #: modules/noindex/noindex.php:102
1658
+ msgid "User login/registration pages"
 
 
 
 
 
 
 
 
 
1659
  msgstr ""
1660
 
1661
+ #: modules/noindex/noindex.php:165
1662
+ msgid "Noindex: Tell search engines not to index this webpage."
1663
  msgstr ""
1664
 
1665
+ #: modules/noindex/noindex.php:166
1666
+ msgid "Nofollow: Tell search engines not to spider links on this webpage."
1667
  msgstr ""
1668
 
1669
+ #: modules/noindex/noindex.php:167
1670
+ msgid "Meta Robots Tag:"
 
 
 
 
 
1671
  msgstr ""
1672
 
1673
+ #: modules/class.su-module.php:622
1674
  msgid ""
1675
+ "All the modules on this page have been disabled. You can re-enable them "
1676
+ "using the <a href=\"%s\">Module Manager</a>."
1677
  msgstr ""
1678
 
1679
+ #: modules/class.su-module.php:971
1680
+ msgid "%1$s | %2$s %3$s by %4$s"
1681
  msgstr ""
1682
 
1683
+ #: modules/class.su-module.php:1050
1684
+ msgid "Your site currently doesn&#8217;t have any public items of this type."
1685
  msgstr ""
1686
 
1687
+ #: modules/class.su-module.php:1136
1688
+ msgid "&laquo;"
1689
  msgstr ""
1690
 
1691
+ #: modules/class.su-module.php:1137
1692
+ msgid "&raquo;"
1693
  msgstr ""
1694
 
1695
+ #: modules/class.su-module.php:1144
1696
+ msgid "Displaying %s&#8211;%s of %s"
1697
  msgstr ""
1698
 
1699
+ #: modules/class.su-module.php:1158
1700
+ msgid "ID"
1701
  msgstr ""
1702
 
1703
+ #: modules/class.su-module.php:1192
1704
+ msgid "View"
1705
  msgstr ""
1706
 
1707
+ #: modules/class.su-module.php:1194
1708
+ msgid "Edit"
1709
  msgstr ""
1710
 
1711
+ #: modules/class.su-module.php:1358
1712
+ msgid "Settings updated."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1713
  msgstr ""
1714
 
1715
+ #: modules/class.su-module.php:1379
1716
+ msgid "Save Changes"
1717
+ msgstr ""
1718
+
1719
+ #: modules/class.su-module.php:1919
1720
  msgid ""
1721
+ "Are you sure you want to replace the textbox contents with this default "
1722
+ "value?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1723
  msgstr ""
1724
 
1725
+ #: modules/class.su-module.php:2595
1726
+ msgid "Type a URL or start typing the name of the item you want to link to"
1727
  msgstr ""
1728
 
1729
+ #: modules/class.su-module.php:2607
1730
+ msgid "Remove this location from this textbox"
 
 
1731
  msgstr ""
1732
 
1733
+ #: modules/class.su-module.php:2607
1734
+ msgid "X"
1735
  msgstr ""
1736
 
1737
+ #: modules/meta/webmaster-verify.php:12 modules/meta/webmaster-verify.php:58
1738
+ msgid "Webmaster Verification Assistant"
1739
  msgstr ""
1740
 
1741
+ #: modules/meta/webmaster-verify.php:13
1742
+ msgid "W.M. Verification"
1743
  msgstr ""
1744
 
1745
+ #: modules/meta/webmaster-verify.php:47
1746
+ msgid "Google Webmaster Tools"
 
 
1747
  msgstr ""
1748
 
1749
+ #: modules/meta/webmaster-verify.php:48
1750
+ msgid "Yahoo! Site Explorer"
 
 
 
1751
  msgstr ""
1752
 
1753
+ #: modules/meta/webmaster-verify.php:49
1754
+ msgid "Bing Webmaster Center"
1755
  msgstr ""
1756
 
1757
+ #: modules/meta/webmaster-verify.php:59
1758
+ msgid ""
1759
+ "\r\n"
1760
+ "<ul>\r\n"
1761
+ "\t<li><strong>What it does:</strong> Webmaster Verification Assistant lets "
1762
+ "you enter in verification codes for the webmaster portals of the 3 leading "
1763
+ "search engines.</li>\r\n"
1764
+ "\t<li><strong>Why it helps:</strong> Webmaster Verification Assistant "
1765
+ "assists you in obtaining access to webmaster portals, which can provide you "
1766
+ "with valuable SEO tools.</li>\r\n"
1767
+ "\t<li><strong>How to use it:</strong> Use a search engine to locate the "
1768
+ "webmaster portal you&#8217;re interested in, sign up at the portal, and then "
1769
+ "obtain a verification code. Once you have the code, you can paste it in "
1770
+ "here, click Save Changes, then return to the portal to verify that you own "
1771
+ "the site. Once that&#8217;s done, you'll have access to the portal&#8217;s "
1772
+ "SEO tools.</li>\r\n"
1773
+ "</ul>\r\n"
1774
  msgstr ""
1775
 
1776
+ #: modules/meta/meta-robots.php:12
1777
+ msgid "Meta Robot Tags Editor"
1778
  msgstr ""
1779
 
1780
+ #: modules/meta/meta-robots.php:13
1781
+ msgid "Meta Robot Tags"
1782
  msgstr ""
1783
 
1784
+ #: modules/meta/meta-robots.php:22
1785
+ msgid "Global"
 
 
1786
  msgstr ""
1787
 
1788
+ #: modules/meta/meta-robots.php:28
1789
+ msgid "Spider Instructions"
1790
  msgstr ""
1791
 
1792
+ #: modules/meta/meta-robots.php:30
1793
  msgid ""
1794
+ "Don&#8217t use this site&#8217s Open Directory description in search results."
 
1795
  msgstr ""
1796
 
1797
+ #: modules/meta/meta-robots.php:31
1798
  msgid ""
1799
+ "Don&#8217t use this site&#8217s Yahoo! Directory description in search "
1800
+ "results."
1801
  msgstr ""
1802
 
1803
+ #: modules/meta/meta-robots.php:32
1804
+ msgid "Don&#8217t cache or archive this site."
1805
+ msgstr ""
1806
+
1807
+ #: modules/meta/meta-robots.php:54
1808
  msgid ""
1809
  "\r\n"
1810
  "<ul>\r\n"
1811
+ "\t<li><strong>What it does:</strong> Meta Robot Tags Editor lets you convey "
1812
+ "instructions to search engine spiders, as well as prohibit the spiders from "
1813
+ "indexing certain webpages on your blog using the <code>&lt;meta name=&quot;"
1814
+ "robots&quot; content=&quot;noindex&quot; /&gt;</code> tag.</li>\r\n"
1815
+ "\t<li><strong>Why it helps:</strong> The &#8220;Global&#8221; tab lets you "
1816
+ "stop DMOZ or Yahoo! Directory from overriding your custom meta descriptions, "
1817
+ "as well as prevent spiders from caching your site if you so desire. The "
1818
+ "&#8220;Default Values&#8221; tab lets you deindex entire sections of your "
1819
+ "site that contain content unimportant to visitors (e.g. the administration "
1820
+ "section), or sections of your site that mostly contain duplicate content (e."
1821
+ "g. date archives). The editor tabs can do something similar, but for "
1822
+ "individual content items. By removing webpages from search results that "
1823
+ "visitors find unhelpful, you can help increase the focus on your more useful "
1824
+ "content.</li>\r\n"
1825
+ "\t<li><strong>How to use it:</strong> Adjust the settings as desired, and "
1826
+ "then click Save Changes. You can refer to the &#8220;Settings Help&#8221; "
1827
+ "tab for information on the settings available. You can also use the editor "
1828
+ "tabs to deindex individual content items on your site as well as enable the "
1829
+ "&#8220;nofollow&#8221; meta parameter that will nullify all outgoing links "
1830
+ "on a specific webpage.</li>\r\n"
1831
  "</ul>\r\n"
1832
  msgstr ""
1833
 
1834
+ #: modules/meta/meta-robots.php:65
1835
  msgid ""
1836
  "\r\n"
1837
+ "<p>Here&#8217;s information on the various settings:</p>\r\n"
1838
+ "\r\n"
1839
+ "<ul>\r\n"
1840
+ "\t<li>\r\n"
1841
+ "\t\t<strong>Global: Spider Instructions</strong>\r\n"
1842
+ "\t\t<ul>\r\n"
1843
+ "\t\t\t<li><strong>Don't use this site's Open Directory / Yahoo! Directory "
1844
+ "description in search results.</strong> &mdash; If your site is listed in "
1845
+ "the <a href='http://www.dmoz.org/' target='_blank'>Open Directory (DMOZ)</a> "
1846
+ "or the <a href='http://dir.yahoo.com/' target='_blank'>Yahoo! Directory</a>, "
1847
+ "some search engines may use your directory listing as the meta description. "
1848
+ "These boxes tell search engines not to do that and will give you full "
1849
+ "control over your meta descriptions. These settings have no effect if your "
1850
+ "site isn&#8217;t listed in the Open Directory or Yahoo! Directory "
1851
+ "respectively.</li>\r\n"
1852
+ "\t\t\t<li>Don&#8217;t cache or archive this site.</li> &mdash; When you "
1853
+ "check this box, Meta Editor will ask search engines (Google, Yahoo!, Bing, "
1854
+ "etc.) and archivers (Archive.org, etc.) to <em>not</em> make cached or "
1855
+ "archived &#8220;copies&#8221; of your site.</li>\r\n"
1856
+ "\t\t</ul>\r\n"
1857
+ "\t</li>\r\n"
1858
+ "\t<li>\r\n"
1859
+ "\t\t<strong>Default Values: Prevent indexing of...</strong>\r\n"
1860
+ "\t\t<ul>\r\n"
1861
+ "\t\t\t<li><strong>Administration back-end pages</strong> &mdash; Tells "
1862
+ "spiders not to index the administration area (the part you&#8217;re in now), "
1863
+ "in the unlikely event a spider somehow gains access to the administration. "
1864
+ "Recommended.</li>\r\n"
1865
+ "\t\t\t<li><strong>Author archives</strong> &mdash; Tells spiders not to "
1866
+ "index author archives. Useful if your blog only has one author.</li>\r\n"
1867
+ "\t\t\t<li><strong>Blog search pages</strong> &mdash; Tells spiders not to "
1868
+ "index the result pages of WordPress's blog search function. Recommended.</li>"
1869
+ "\r\n"
1870
+ "\t\t\t<li><strong>Category archives</strong> &mdash; Tells spiders not to "
1871
+ "index category archives. Recommended only if you don't use categories.</li>"
1872
+ "\r\n"
1873
+ "\t\t\t<li><strong>Comment feeds</strong> &mdash; Tells spiders not to index "
1874
+ "the RSS feeds that exist for every post's comments. (These comment feeds are "
1875
+ "totally separate from your normal blog feeds.)</li>\r\n"
1876
+ "\t\t\t<li><strong>Comment subpages</strong> &mdash; Tells spiders not to "
1877
+ "index posts' comment subpages.</li>\r\n"
1878
+ "\t\t\t<li><strong>Date-based archives</strong> &mdash; Tells spiders not to "
1879
+ "index day/month/year archives. Recommended, since these pages have little "
1880
+ "keyword value.</li>\r\n"
1881
+ "\t\t\t<li><strong>Subpages of the homepage</strong> &mdash; Tells spiders "
1882
+ "not to index the homepage's subpages (page 2, page 3, etc). Recommended.</li>"
1883
+ "\r\n"
1884
+ "\t\t\t<li><strong>Tag archives</strong> &mdash; Tells spiders not to index "
1885
+ "tag archives. Recommended only if you don't use tags.</li>\r\n"
1886
+ "\t\t\t<li>User login/registration pages</strong> &mdash; Tells spiders not "
1887
+ "to index WordPress's user login and registration pages. Recommended.</li>\r\n"
1888
+ "\t\t</ul>\r\n"
1889
+ "\t</li>\r\n"
1890
+ "\t<li>\r\n"
1891
+ "\t\t<strong>Editor Tabs (Posts/Pages/etc.)</strong>\r\n"
1892
+ "\t\t<ul>\r\n"
1893
+ "\t\t\t<li><strong>Noindex</strong> &mdash; Checking this for an item will "
1894
+ "ask search engines to remove that item&#8217;s webpage from their indices. "
1895
+ "Use this to remove pages that you don&#8217;t want showing up in search "
1896
+ "results (such as a Privacy Policy page, for example).</li>\r\n"
1897
+ "\t\t\t<li><strong>Nofollow</strong> &mdash; Checking this for an item will "
1898
+ "tell search engines to ignore the links to other webpages that are on that "
1899
+ "item&#8217;s webpage. Note: this is page-level &#8220;meta nofollow,&#8221; "
1900
+ "not to be confused with link-level &#8220;rel nofollow.&#8221;</li>\r\n"
1901
+ "\t\t</ul>\r\n"
1902
+ "\t</li>\r\n"
1903
  "</ul>\r\n"
1904
  msgstr ""
1905
 
1906
+ #: modules/meta/meta-robots.php:104 modules/meta/meta-descriptions.php:207
1907
+ #: modules/meta/meta-keywords.php:197
1908
  msgid ""
1909
  "\r\n"
1910
  "<ul>\r\n"
1911
+ "\t<li>\r\n"
1912
+ "\t\t<p><strong>What do I do if my site has multiple meta tags?</strong><br /"
1913
+ ">First, try removing your theme&#8217;s built-in meta tags if it has them. "
1914
+ "Go to <a href='theme-editor.php' target='_blank'>Appearance &rArr; Editor</"
1915
+ "a> and edit <code>header.php</code>. Delete or comment-out any <code>&lt;"
1916
+ "meta&gt;</code> tags.</p>\r\n"
1917
+ "\t\t<p>If the problem persists, try disabling other SEO plugins that may be "
1918
+ "generating meta tags.</p>\r\n"
1919
+ "\t\t<p>Troubleshooting tip: Go to <a href='options-general.php?page=seo-"
1920
+ "ultimate'>Settings &rArr; SEO Ultimate</a> and enable the &#8220;Insert "
1921
+ "comments around HTML code insertions&#8221; option. This will mark SEO "
1922
+ "Ultimate&#8217;s meta tags with comments, allowing you to see which meta "
1923
+ "tags are generated by SEO Ultimate and which aren&#8217;t.</p>\r\n"
1924
+ "\t</li>\r\n"
1925
  "</ul>\r\n"
1926
  msgstr ""
1927
 
1928
+ #: modules/meta/meta-descriptions.php:12
1929
+ msgid "Meta Description Editor"
1930
  msgstr ""
1931
 
1932
+ #: modules/meta/meta-descriptions.php:13
1933
+ msgid "Meta Descriptions"
1934
  msgstr ""
1935
 
1936
+ #: modules/meta/meta-descriptions.php:24 modules/titles/titles.php:33
1937
+ msgid "Default Formats"
 
 
 
1938
  msgstr ""
1939
 
1940
+ #: modules/meta/meta-descriptions.php:31
1941
+ msgid "Meta Description"
1942
  msgstr ""
1943
 
1944
+ #: modules/meta/meta-descriptions.php:50
1945
+ msgid "Post Description Format"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1946
  msgstr ""
1947
 
1948
+ #: modules/meta/meta-descriptions.php:51
1949
+ msgid "Page Description Format"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1950
  msgstr ""
1951
 
1952
+ #: modules/meta/meta-descriptions.php:52
1953
+ msgid "Category Description Format"
1954
  msgstr ""
1955
 
1956
+ #: modules/meta/meta-descriptions.php:53
1957
+ msgid "Post Tag Description Format"
1958
  msgstr ""
1959
 
1960
+ #: modules/meta/meta-descriptions.php:54
1961
+ msgid "Pagination Description Format"
1962
  msgstr ""
1963
 
1964
+ #: modules/meta/meta-descriptions.php:62
1965
+ msgid "Blog Homepage Meta Description"
1966
  msgstr ""
1967
 
1968
+ #: modules/meta/meta-descriptions.php:64
1969
+ msgid "Use this blog&#8217s tagline as the default homepage description."
1970
  msgstr ""
1971
 
1972
+ #: modules/meta/meta-descriptions.php:65
1973
+ msgid "Default Value"
 
 
1974
  msgstr ""
1975
 
1976
+ #: modules/meta/meta-descriptions.php:155
1977
+ msgid "Meta Description:"
1978
  msgstr ""
1979
 
1980
+ #: modules/meta/meta-descriptions.php:158
1981
+ msgid "You&#8217;ve entered %s characters. Most search engines use up to 140."
 
 
1982
  msgstr ""
1983
 
1984
+ #: modules/meta/meta-descriptions.php:166
1985
  msgid ""
1986
+ "<strong>Description</strong> &mdash; The value of the meta description tag. "
1987
+ "The description will often appear underneath the title in search engine "
1988
+ "results. Writing an accurate, attention-grabbing description for every post "
1989
+ "is important to ensuring a good search results clickthrough rate."
 
1990
  msgstr ""
1991
 
1992
+ #: modules/meta/meta-descriptions.php:175
1993
+ msgid ""
1994
+ "\r\n"
1995
+ "<ul>\r\n"
1996
+ "\t<li><strong>What it does:</strong> Meta Descriptions Editor lets you "
1997
+ "customize the text that you want to appear under your webpages&#8217; titles "
1998
+ "in search results.</li>\r\n"
1999
+ "\t<li><strong>Why it helps:</strong> Getting ranked isn&#8217;t enough; once "
2000
+ "you're ranked, you need visitors to click on your site in the results. "
2001
+ "That&#8217;s where meta descriptions can help. When you provide text that "
2002
+ "makes searchers want to visit your site, you can increase your SERP "
2003
+ "clickthrough rate and thus increase search traffic.</li>\r\n"
2004
+ "\t<li><strong>How to use it:</strong> Enter meta descriptions for your "
2005
+ "homepage, posts, pages, etc. as desired, and then click Save Changes. You "
2006
+ "can also customize the meta data of an individual post or page by using the "
2007
+ "textboxes that Meta Editor adds to the post/page editors.</li>\r\n"
2008
+ "</ul>\r\n"
2009
  msgstr ""
2010
 
2011
+ #: modules/meta/meta-descriptions.php:186
2012
  msgid ""
2013
+ "\r\n"
2014
+ "<p>Here&#8217;s information on the various settings:</p>\r\n"
2015
+ "\r\n"
2016
+ "<ul>\r\n"
2017
+ "\t<li><strong>Blog Homepage Meta Description</strong> &mdash; When your blog "
2018
+ "homepage appears in search results, it&#8217;ll have a title and a "
2019
+ "description. When you insert content into the description field below, the "
2020
+ "Meta Editor will add code to your blog homepage (the <code>&lt;meta "
2021
+ "name=&quot;description&quot; /&gt;</code> tag) that asks search engines to "
2022
+ "use what you&#8217;ve entered as the homepage&#8217;s search results "
2023
+ "description.</li>\r\n"
2024
+ "\t<li><strong>Use this blog&#8217;s tagline as the default homepage "
2025
+ "description.</strong> &mdash; If this box is checked and if the Blog "
2026
+ "Homepage Meta Description field is empty, Meta Editor will use your "
2027
+ "blog&#8217;s tagline as the meta description. You can edit the blog&#8217;s "
2028
+ "tagline under <a href='options-general.php'>Settings &rArr; General</a>.</li>"
2029
+ "\r\n"
2030
+ "</ul>\r\n"
2031
  msgstr ""
2032
 
2033
+ #: modules/meta/meta-descriptions.php:198
2034
+ msgid ""
2035
+ "\r\n"
2036
+ "<ul>\r\n"
2037
+ "\t<li><strong>How do I edit the meta description of my homepage?</"
2038
+ "strong><br />If you are using a &#8220;blog homepage&#8221; (the default "
2039
+ "option of showing your blog posts on your homepage), just use the Blog "
2040
+ "Homepage field. If you have configured your <a href='options-reading."
2041
+ "php'>Settings &rArr; Reading</a> section to use a &#8220;frontpage&#8221; (i."
2042
+ "e. a Page as your homepage), just edit that Page&#8217;s meta description on "
2043
+ "the &#8220;Pages&#8221; tab.</li>\r\n"
2044
+ "</ul>\r\n"
2045
  msgstr ""
2046
 
2047
+ #: modules/meta/meta-keywords.php:12
2048
+ msgid "Meta Keywords Editor"
 
 
 
 
2049
  msgstr ""
2050
 
2051
+ #: modules/meta/meta-keywords.php:13 modules/meta/meta-keywords.php:40
2052
+ msgid "Meta Keywords"
 
 
2053
  msgstr ""
2054
 
2055
+ #: modules/meta/meta-keywords.php:56
2056
+ msgid "The %d most commonly-used words"
2057
  msgstr ""
2058
 
2059
+ #: modules/meta/meta-keywords.php:69
2060
+ msgid "Sitewide Keywords"
2061
  msgstr ""
2062
 
2063
+ #: modules/meta/meta-keywords.php:69
2064
+ msgid "(Separate with commas)"
 
 
 
 
2065
  msgstr ""
2066
 
2067
+ #: modules/meta/meta-keywords.php:76
2068
+ msgid "Blog Homepage Meta Keywords"
 
 
2069
  msgstr ""
2070
 
2071
+ #: modules/meta/meta-keywords.php:153
2072
+ msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
2073
  msgstr ""
2074
 
2075
+ #: modules/meta/meta-keywords.php:158
2076
+ msgid ""
2077
+ "<strong>Keywords</strong> &mdash; The value of the meta keywords tag. The "
2078
+ "keywords list gives search engines a hint as to what this post/page is "
2079
+ "about. Be sure to separate keywords with commas, like so: <samp>one,two,"
2080
+ "three</samp>."
2081
  msgstr ""
2082
 
2083
+ #: modules/meta/meta-keywords.php:167
2084
  msgid ""
2085
+ "\r\n"
2086
+ "<p>Meta Keywords Editor lets you tell search engines what keywords are "
2087
+ "associated with the various pages on your site. Modern search engines "
2088
+ "don&#8217;t give meta keywords much weight, but the option is there if you "
2089
+ "want to use it. You can customize the meta keywords of an individual post or "
2090
+ "page by using the textboxes that Meta Editor adds to the post/page editors.</"
2091
+ "p>\r\n"
2092
  msgstr ""
2093
 
2094
+ #: modules/meta/meta-keywords.php:174
2095
+ msgid ""
2096
+ "\r\n"
2097
+ "<ul>\r\n"
2098
+ "\t<li><strong>Sitewide Keywords</strong> &mdash; Here you can enter keywords "
2099
+ "that describe the overall subject matter of your entire blog. Use ommas to "
2100
+ "separate keywords. These keywords will be put in the <code>&gt;meta "
2101
+ "name=&quot;keywords&quot; /&gt;</code> tags of all webpages on the site "
2102
+ "(homepage, posts, pages, archives, etc.).</li>\r\n"
2103
+ "\t<li><strong>Blog Homepage Meta Keywords</strong> &mdash; These keywords "
2104
+ "will be applied only to the <em>blog</em> homepage. Note that if you&#8217;"
2105
+ "ve specified a &#8220;front page&#8221; under <a href='options-reading."
2106
+ "php'>Settings &rArr; Reading</a>, you&#8217;ll need to edit your frontpage "
2107
+ "and set your frontpage keywords there.</li>\r\n"
2108
+ "</ul>\r\n"
2109
  msgstr ""
2110
 
2111
+ #: modules/meta/meta-keywords.php:184
2112
  msgid ""
2113
+ "\r\n"
2114
+ "<ul>\r\n"
2115
+ "\t<li>\r\n"
2116
+ "\t\t<p><strong>How do I edit the meta keywords of my homepage?</strong><br /"
2117
+ ">If you are using a &#8220;blog homepage&#8221; (the default option of "
2118
+ "showing your blog posts on your homepage), just use the Blog Homepage field."
2119
+ "</p>\r\n"
2120
+ "\t\t<p>If you have configured your <a href='options-reading.php'>Settings "
2121
+ "&rArr; Reading</a> section to use a &#8220;frontpage&#8221; (i.e. a Page as "
2122
+ "your homepage), just edit that Page and use the &#8220;Meta Keywords&#8221; "
2123
+ "field in the &#8220;SEO Settings&#8221; box.</p>\r\n"
2124
+ "\t</li>\r\n"
2125
+ "\t<li><strong>What happens if I add a global keyword that I previously "
2126
+ "assigned to individual posts or pages?</strong><br />Don&#8217;t worry; Meta "
2127
+ "Keywords Editor will remove duplicate keywords automatically.</li>\r\n"
2128
+ "</ul>\r\n"
2129
  msgstr ""
2130
 
2131
+ #: modules/class.su-importmodule.php:49
2132
+ msgid "Import Post Fields"
 
 
 
 
2133
  msgstr ""
2134
 
2135
+ #: modules/class.su-importmodule.php:50
2136
+ msgid ""
2137
+ "Post fields store the SEO data for your posts/pages (i.e. your custom title "
2138
+ "tags, meta descriptions, and meta keywords). If you provided custom titles/"
2139
+ "descriptions/keywords to %s, this importer can move that data over to SEO "
2140
+ "Ultimate."
2141
  msgstr ""
2142
 
2143
+ #: modules/class.su-importmodule.php:53
2144
+ msgid "Conflict Resolution Mode"
2145
  msgstr ""
2146
 
2147
+ #: modules/class.su-importmodule.php:54
2148
  msgid ""
2149
+ "What should the import tool do if it tries to move over a post&#8217;s %s "
2150
+ "data, but different data already exists in the corresponding SEO Ultimate "
2151
+ "fields?"
 
 
2152
  msgstr ""
2153
 
2154
+ #: modules/class.su-importmodule.php:56
2155
+ msgid "Skip that post and leave all data as-is (default)."
2156
  msgstr ""
2157
 
2158
+ #: modules/class.su-importmodule.php:57
2159
+ msgid "Delete the SEO Ultimate data and replace it with the %s data."
2160
  msgstr ""
2161
 
2162
+ #: modules/class.su-importmodule.php:58
2163
+ msgid "Keep the SEO Ultimate data and delete the %s data."
 
 
2164
  msgstr ""
2165
 
2166
+ #: modules/class.su-importmodule.php:61
2167
+ msgid "Deletion Preference"
2168
+ msgstr ""
2169
+
2170
+ #: modules/class.su-importmodule.php:62
2171
  msgid ""
2172
+ "When the migration tool successfully copies a post&#8217;s %1$s data over to "
2173
+ "SEO Ultimate, what should it do with the old %1$s data?"
2174
  msgstr ""
2175
 
2176
+ #: modules/class.su-importmodule.php:64
2177
+ msgid "Delete the %s data."
2178
  msgstr ""
2179
 
2180
+ #: modules/class.su-importmodule.php:65
2181
+ msgid "Leave behind the duplicate %s data (default)."
2182
  msgstr ""
2183
 
2184
+ #: modules/class.su-importmodule.php:72
2185
+ msgid "Import Now"
 
 
2186
  msgstr ""
2187
 
2188
+ #: modules/class.su-importmodule.php:75
2189
  msgid ""
2190
+ "The import cannot be undone. It is your responsibility to <a href=\"%s\" "
2191
+ "target=\"_blank\">backup your database</a> before proceeding!"
2192
  msgstr ""
2193
 
2194
+ #: modules/class.su-importmodule.php:84
2195
+ msgid "Import complete."
2196
  msgstr ""
2197
 
2198
+ #: modules/class.su-importmodule.php:90
2199
+ msgid "Return to import page"
2200
  msgstr ""
2201
 
2202
+ #: modules/class.su-importmodule.php:93
2203
+ msgid "Return to settings page"
2204
  msgstr ""
2205
 
2206
+ #: modules/class.su-importmodule.php:96
2207
+ msgid "Return to SEO page"
2208
  msgstr ""
2209
 
2210
+ #: modules/class.su-importmodule.php:116
2211
+ msgid "Deactivated %s."
2212
  msgstr ""
2213
 
2214
+ #: modules/class.su-importmodule.php:174
2215
+ msgid "Imported a total of %d fields for one post/page/revision."
2216
+ msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
2217
+ msgstr[0] ""
2218
+ msgstr[1] ""
2219
 
2220
+ #: modules/class.su-importmodule.php:180
2221
+ msgid "Skipped one post with disabled %2$s data."
2222
+ msgid_plural "Skipped %1$d posts with disabled %2$s data."
2223
+ msgstr[0] ""
2224
+ msgstr[1] ""
2225
+
2226
+ #: modules/class.su-importmodule.php:186
2227
+ msgid ""
2228
+ "Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
2229
+ "settings you chose."
2230
+ msgid_plural ""
2231
+ "Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
2232
+ "settings you chose."
2233
+ msgstr[0] ""
2234
+ msgstr[1] ""
2235
+
2236
+ #: modules/class.su-importmodule.php:192
2237
+ msgid "Deleted one %2$s field, as instructed by the settings you chose."
2238
+ msgid_plural ""
2239
+ "Deleted %1$d %2$s fields, as instructed by the settings you chose."
2240
+ msgstr[0] ""
2241
+ msgstr[1] ""
2242
+
2243
+ #: modules/sds-blog/sds-blog.php:12
2244
+ msgid "Whitepapers"
2245
  msgstr ""
2246
 
2247
+ #: modules/sds-blog/sds-blog.php:13
2248
+ msgid "SEO Design Solutions Whitepapers"
2249
  msgstr ""
2250
 
2251
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 7.2) #-#-#-#-#
2252
+ #. Author of the plugin/theme
2253
+ #: modules/sds-blog/sds-blog.php:49
2254
+ msgid "SEO Design Solutions"
2255
  msgstr ""
2256
 
2257
+ #: modules/sds-blog/sds-blog.php:50
2258
+ msgid ""
2259
+ "The search engine optimization articles below are loaded from the website of "
2260
+ "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
2261
+ "an article&#8217;s title to read it."
2262
  msgstr ""
2263
 
2264
+ #: modules/internal-link-aliases/internal-link-aliases.php:24
2265
+ msgid "Link Mask Generator"
2266
  msgstr ""
2267
 
2268
+ #: modules/internal-link-aliases/internal-link-aliases.php:30
2269
+ msgid "Aliases"
2270
  msgstr ""
2271
 
2272
+ #: modules/internal-link-aliases/internal-link-aliases.php:75
2273
+ msgid "Edit Existing Aliases"
2274
  msgstr ""
2275
 
2276
+ #: modules/internal-link-aliases/internal-link-aliases.php:79
2277
+ msgid "Add a New Alias"
2278
  msgstr ""
2279
 
2280
+ #: modules/internal-link-aliases/internal-link-aliases.php:87
2281
+ msgid "Actual URL"
2282
  msgstr ""
2283
 
2284
+ #: modules/internal-link-aliases/internal-link-aliases.php:88
2285
+ msgid "Alias URL"
 
 
2286
  msgstr ""
2287
 
2288
+ #: modules/internal-link-aliases/internal-link-aliases.php:89
2289
+ msgid "Only on This Post&hellip; (optional)"
2290
  msgstr ""
2291
 
2292
+ #: modules/internal-link-aliases/internal-link-aliases.php:122
2293
+ msgid "Test"
 
 
 
2294
  msgstr ""
2295
 
2296
+ #: modules/internal-link-aliases/internal-link-aliases.php:139
2297
+ msgid "Alias Directory"
 
 
 
2298
  msgstr ""
2299
 
2300
+ #: modules/internal-link-aliases/internal-link-aliases.php:141
2301
+ msgid "Nofollow aliased links"
2302
+ msgstr ""
2303
+
2304
+ #: modules/internal-link-aliases/internal-link-aliases.php:141
2305
+ msgid "Link Attributes"
2306
  msgstr ""
2307
 
2308
+ #: modules/internal-link-aliases/internal-link-aliases.php:164
2309
+ msgid "Link Masks:"
 
 
2310
  msgstr ""
2311
 
2312
+ #: modules/internal-link-aliases/internal-link-aliases.php:167
2313
+ msgid "URL"
 
 
2314
  msgstr ""
2315
 
2316
+ #: modules/internal-link-aliases/internal-link-aliases.php:167
2317
+ msgid "Mask URL"
2318
+ msgstr ""
2319
+
2320
+ #: modules/internal-link-aliases/internal-link-aliases.php:204
2321
  msgid ""
2322
+ "You can stop search engines from following a link by typing in a mask for "
2323
+ "its URL."
2324
  msgstr ""
2325
 
2326
+ #: modules/internal-link-aliases/internal-link-aliases.php:291
2327
+ msgid "Added by SEO Ultimate's Link Mask Generator module"
2328
  msgstr ""
2329
 
2330
+ #: modules/internal-link-aliases/internal-link-aliases.php:302
2331
+ msgid "End Link Mask Generator output"
2332
  msgstr ""
2333
 
2334
+ #: modules/linkbox/linkbox.php:12
2335
+ msgid "Linkbox Inserter"
 
 
2336
  msgstr ""
2337
 
2338
+ #: modules/linkbox/linkbox.php:18
2339
+ msgid "Link to this post!"
2340
  msgstr ""
2341
 
2342
+ #: modules/linkbox/linkbox.php:45
2343
+ msgid "At the end of posts"
2344
  msgstr ""
2345
 
2346
+ #: modules/linkbox/linkbox.php:46
2347
+ msgid "At the end of pages"
2348
  msgstr ""
2349
 
2350
+ #: modules/linkbox/linkbox.php:47
2351
+ msgid "When called by the su_linkbox hook"
2352
  msgstr ""
2353
 
2354
+ #: modules/linkbox/linkbox.php:48
2355
+ msgid "Display linkboxes..."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2356
  msgstr ""
2357
 
2358
+ #: modules/linkbox/linkbox.php:49
2359
+ msgid "Linkbox HTML"
2360
  msgstr ""
2361
 
2362
+ #: modules/linkbox/linkbox.php:92
2363
  msgid ""
2364
  "\r\n"
 
 
2365
  "<ul>\r\n"
2366
+ "\t<li><strong>What it does:</strong> Linkbox Inserter can add linkboxes to "
2367
+ "your posts/pages.</li>\r\n"
2368
+ "\t<li><strong>Why it helps:</strong> Linkboxes contain HTML code that "
2369
+ "visitors can use to link to your site. This is a great way to encourage SEO-"
2370
+ "beneficial linking activity.</li>\r\n"
2371
+ "\t<li><strong>How to use it:</strong> Use the checkboxes to enable the "
2372
+ "Linkbox Inserter in various areas of your site. Customize the HTML if "
2373
+ "desired. Click &#8220;Save Changes&#8221; when finished.</li>\r\n"
2374
  "</ul>\r\n"
2375
  msgstr ""
2376
 
2377
+ #: modules/linkbox/linkbox.php:103
2378
  msgid ""
2379
  "\r\n"
2380
+ "<p>Here&#8217;s information on the various settings:</p>\r\n"
2381
  "\r\n"
2382
  "<ul>\r\n"
2383
  "\t<li>\r\n"
2384
+ "\t\t<strong>Display linkboxes...</strong>\r\n"
2385
  "\t\t<ul>\r\n"
2386
+ "\t\t\t<li><strong>At the end of posts</strong> &mdash; Adds the linkbox HTML "
2387
+ "to the end of all posts (whether they're displayed on the blog homepage, in "
2388
+ "archives, or by themselves).</li>\r\n"
2389
+ "\t\t\t<li><strong>At the end of pages</strong> &mdash; Adds the linkbox HTML "
2390
+ "to the end of all Pages.</li>\r\n"
2391
+ "\t\t\t<li><strong>When called by the su_linkbox hook</strong> &mdash; For "
2392
+ "more fine-tuned control over where linkboxes appear, enable this option and "
2393
+ "add <code>&lt;?php do_action('su_linkbox'); ?&gt;</code> to your theme. You "
2394
+ "can also add an ID parameter to display the linkbox of a particular post/"
2395
+ "page; for example: <code>&lt;?php do_action('su_linkbox', 123); ?&gt;</code>."
2396
+ "</li>\r\n"
2397
  "\t\t</ul>\r\n"
2398
  "\t</li>\r\n"
2399
  "\t<li>\r\n"
2400
+ "\t\t<strong>HTML</strong> &mdash; The HTML that will be outputted to display "
2401
+ "the linkboxes. The HTML field supports these variables:\r\n"
2402
  "\t\t<ul>\r\n"
2403
+ "\t\t\t<li>{id} &mdash; The ID of the current post/page, or the ID passed to "
2404
+ "the action hook call.</li>\r\n"
2405
+ "\t\t\t<li>{url} &mdash; The permalink URL of the post/page.</li>\r\n"
2406
+ "\t\t\t<li>{title} &mdash; The title of the post/page.</li>\r\n"
 
 
 
 
 
 
 
 
 
 
 
2407
  "\t\t</ul>\r\n"
2408
  "\t</li>\r\n"
 
 
 
 
 
 
 
 
2409
  "</ul>\r\n"
2410
  msgstr ""
2411
 
2412
+ #: modules/titles/titles.php:12
2413
+ msgid "Title Tag Rewriter"
 
 
 
 
 
 
 
 
 
 
 
 
 
2414
  msgstr ""
2415
 
2416
+ #: modules/titles/titles.php:40
2417
+ msgid "Title Tag"
2418
  msgstr ""
2419
 
2420
+ #: modules/titles/titles.php:53
2421
+ msgid ""
2422
+ "Convert lowercase category/tag names to title case when used in title tags."
2423
  msgstr ""
2424
 
2425
+ #: modules/titles/titles.php:53
2426
+ msgid "Title Tag Variables"
2427
  msgstr ""
2428
 
2429
+ #: modules/titles/titles.php:55
2430
+ msgid ""
2431
+ "Use output buffering &mdash; no configuration required, but slower (default)"
2432
  msgstr ""
2433
 
2434
+ #: modules/titles/titles.php:56
2435
+ msgid ""
2436
+ "Use filtering &mdash; faster, but configuration required (see the &#8220;"
2437
+ "Settings Help&#8221; dropdown for details)"
2438
  msgstr ""
2439
 
2440
+ #: modules/titles/titles.php:57
2441
+ msgid "Rewrite Method"
2442
  msgstr ""
2443
 
2444
+ #: modules/titles/titles.php:65
2445
+ msgid "{blog}"
2446
  msgstr ""
2447
 
2448
+ #: modules/titles/titles.php:66
2449
+ msgid "{post} | {blog}"
 
 
2450
  msgstr ""
2451
 
2452
+ #: modules/titles/titles.php:67
2453
+ msgid "{page} | {blog}"
2454
  msgstr ""
2455
 
2456
+ #: modules/titles/titles.php:68
2457
+ msgid "{category} | {blog}"
2458
  msgstr ""
2459
 
2460
+ #: modules/titles/titles.php:69
2461
+ msgid "{tag} | {blog}"
2462
  msgstr ""
2463
 
2464
+ #: modules/titles/titles.php:70
2465
+ msgid "Archives for {month} {day}, {year} | {blog}"
2466
  msgstr ""
2467
 
2468
+ #: modules/titles/titles.php:71
2469
+ msgid "Archives for {month} {year} | {blog}"
2470
  msgstr ""
2471
 
2472
+ #: modules/titles/titles.php:72
2473
+ msgid "Archives for {year} | {blog}"
2474
  msgstr ""
2475
 
2476
+ #: modules/titles/titles.php:73
2477
+ msgid "Posts by {author} | {blog}"
2478
  msgstr ""
2479
 
2480
+ #: modules/titles/titles.php:74
2481
+ msgid "Search Results for {query} | {blog}"
2482
  msgstr ""
2483
 
2484
+ #: modules/titles/titles.php:75
2485
+ msgid "404 Not Found | {blog}"
2486
  msgstr ""
2487
 
2488
+ #: modules/titles/titles.php:76
2489
+ msgid "{title} - Page {num}"
2490
  msgstr ""
2491
 
2492
+ #: modules/titles/titles.php:85
2493
+ msgid "Blog Homepage Title"
2494
  msgstr ""
2495
 
2496
+ #: modules/titles/titles.php:86
2497
+ msgid "Post Title Format"
2498
  msgstr ""
2499
 
2500
+ #: modules/titles/titles.php:87
2501
+ msgid "Page Title Format"
2502
  msgstr ""
2503
+
2504
+ #: modules/titles/titles.php:88
2505
+ msgid "Category Title Format"
2506
  msgstr ""
2507
 
2508
+ #: modules/titles/titles.php:89
2509
+ msgid "Tag Title Format"
2510
  msgstr ""
2511
 
2512
+ #: modules/titles/titles.php:90
2513
+ msgid "Day Archive Title Format"
2514
  msgstr ""
2515
 
2516
+ #: modules/titles/titles.php:91
2517
+ msgid "Month Archive Title Format"
2518
  msgstr ""
2519
 
2520
+ #: modules/titles/titles.php:92
2521
+ msgid "Year Archive Title Format"
2522
  msgstr ""
2523
 
2524
+ #: modules/titles/titles.php:93
2525
+ msgid "Author Archive Title Format"
2526
  msgstr ""
2527
 
2528
+ #: modules/titles/titles.php:94
2529
+ msgid "Search Title Format"
2530
  msgstr ""
2531
 
2532
+ #: modules/titles/titles.php:95
2533
+ msgid "404 Title Format"
2534
  msgstr ""
2535
 
2536
+ #: modules/titles/titles.php:96
2537
+ msgid "Pagination Title Format"
2538
  msgstr ""
2539
 
2540
+ #: modules/titles/titles.php:328
2541
+ msgid "Title Tag:"
2542
  msgstr ""
2543
 
2544
+ #: modules/titles/titles.php:333
2545
+ msgid ""
2546
+ "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
2547
+ "tag. The title appears in visitors&#8217; title bars and in search engine "
2548
+ "result titles. If this box is left blank, then the <a href=\"admin.php?"
2549
+ "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
2550
  msgstr ""
2551
 
2552
+ #: modules/titles/titles.php:342
2553
+ msgid ""
2554
+ "\r\n"
2555
+ "<ul>\r\n"
2556
+ "\t<li><strong>What it does:</strong> Title Tag Rewriter helps you customize "
2557
+ "the contents of your website&#8217;s <code>&lt;title&gt;</code> tags. The "
2558
+ "tag contents are displayed in web browser title bars and in search engine "
2559
+ "result pages.</li>\r\n"
2560
+ "\t<li><strong>Why it helps:</strong> Proper title rewriting ensures that the "
2561
+ "keywords in your post/Page titles have greater prominence for search engine "
2562
+ "spiders and users. This is an important foundation for WordPress SEO.</li>"
2563
+ "\r\n"
2564
+ "\t<li><strong>How to use it:</strong> Title Tag Rewriter enables recommended "
2565
+ "settings automatically, so you shouldn&#8217;t need to change anything. If "
2566
+ "you do wish to edit the rewriting formats, you can do so using the textboxes "
2567
+ "below (the &#8220;Formats & Variables&#8221; help tab includes additional "
2568
+ "information on this). You also have the option of overriding the <code>&lt;"
2569
+ "title&gt;</code> tag of an individual post/page/category/tag/etc. using the "
2570
+ "appropriate tabs below, or by using the &#8220;Title Tag&#8221; textbox that "
2571
+ "Title Tag Rewriter adds to the post/page editors.</li>\r\n"
2572
+ "</ul>\r\n"
2573
  msgstr ""
2574
 
2575
+ #: modules/titles/titles.php:352
2576
+ msgid "Formats &amp; Variables"
2577
  msgstr ""
2578
 
2579
+ #: modules/titles/titles.php:353
2580
  msgid ""
2581
  "\r\n"
2582
+ "<p>Various variables, surrounded in {curly brackets}, are provided for use "
2583
+ "in the title formats. All settings support the {blog} variable, which is "
2584
+ "replaced with the name of the blog, and the {tagline} variable, which is "
2585
+ "replaced with the blog tagline as set under <a href='options-general."
2586
+ "php'>Settings &rArr; General</a>.</p>\r\n"
2587
+ "\r\n"
2588
+ "<p>Here&#8217;s information on each of the settings and its supported "
2589
+ "variables:</p>\r\n"
2590
+ "\r\n"
2591
  "<ul>\r\n"
2592
+ "\t<li><strong>Blog Homepage Title</strong> &mdash; Displays on the main blog "
2593
+ "posts page.</li>\r\n"
2594
+ "\t<li>\r\n"
2595
+ "\t\t<p><strong>Post Title Format</strong> &mdash; Displays on single-post "
2596
+ "pages. Supports these variables:</p>\r\n"
2597
+ "\t\t<ul>\r\n"
2598
+ "\t\t\t<li>{post} &mdash; The post&#8217;s title.</li>\r\n"
2599
+ "\t\t\t<li>{category} &mdash; The title of the post category with the lowest "
2600
+ "ID number.</li>\r\n"
2601
+ "\t\t\t<li>{categories} &mdash; A natural-language list of the post&#8217;s "
2602
+ "categories (e.g. &#8220;Category A, Category B, and Category C&#8221;).</li>"
2603
+ "\r\n"
2604
+ "\t\t\t<li>{tags} &mdash; A natural-language list of the post's tags (e.g. "
2605
+ "&#8220;Tag A, Tag B, and Tag C&#8221;).</li>\r\n"
2606
+ "\t\t\t<li>{author} &mdash; The Display Name of the post's author.</li>\r\n"
2607
+ "\t\t\t<li>{author_username}, {author_firstname}, {author_lastname}, "
2608
+ "{author_nickname} &mdash; The username, first name, last name, and nickname "
2609
+ "of the post&#8217;s author, respectively, as set in his or her profile.</li>"
2610
+ "\r\n"
2611
+ "\t\t</ul>\r\n"
2612
+ "\t</li>\r\n"
2613
+ "\t<li>\r\n"
2614
+ "\t\t<p><strong>Page Title Format</strong> &mdash; Displays on WordPress "
2615
+ "Pages. Supports these variables:\r\n"
2616
+ "\t\t<ul>\r\n"
2617
+ "\t\t\t<li>{page} &mdash; The page&#8217;s title.</li>\r\n"
2618
+ "\t\t\t<li>{page_parent} &mdash; The title of the page&#8217;s parent page.</"
2619
  "li>\r\n"
2620
+ "\t\t\t<li>{author} &mdash; The Display Name of the page&#8217;s author.</li>"
2621
+ "\r\n"
2622
+ "\t\t\t<li>{author_username}, {author_firstname}, {author_lastname}, "
2623
+ "{author_nickname} &mdash; The username, first name, last name, and nickname "
2624
+ "of the page&#8217;s author, respectively, as set in his or her profile.</li>"
2625
+ "\r\n"
2626
+ "\t\t</ul>\r\n"
2627
+ "\t</li>\r\n"
2628
+ "\t<li><strong>Category Title Format</strong> &mdash; Displays on category "
2629
+ "archives. The {category} variable is replaced with the name of the category, "
2630
+ "and {category_description} is replaced with its description.</li>\r\n"
2631
+ "\t<li><strong>Tag Title Format</strong> &mdash; Displays on tag archives. "
2632
+ "The {tag} variable is replaced with the name of the tag, and "
2633
+ "{tag_description} is replaced with its description.</li>\r\n"
2634
+ "\t<li>\r\n"
2635
+ "\t\t<p><strong>Day Archive Title Format</strong> &mdash; Displays on day "
2636
+ "archives. Supports these variables:</p>\r\n"
2637
+ "\t\t<ul>\r\n"
2638
+ "\t\t\t<li>{day} &mdash; The day number, with ordinal suffix, e.g. 23rd</li>"
2639
+ "\r\n"
2640
+ "\t\t\t<li>{daynum} &mdash; The two-digit day number, e.g. 23</li>\r\n"
2641
+ "\t\t\t<li>{month} &mdash; The name of the month, e.g. April</li>\r\n"
2642
+ "\t\t\t<li>{monthnum} &mdash; The two-digit number of the month, e.g. 04</li>"
2643
+ "\r\n"
2644
+ "\t\t\t<li>{year} &mdash; The year, e.g. 2009</li>\r\n"
2645
+ "\t\t</ul>\r\n"
2646
+ "\t</li>\r\n"
2647
+ "\t<li><strong>Month Archive Title Format</strong> &mdash; Displays on month "
2648
+ "archives. Supports {month}, {monthnum}, and {year}.</li>\r\n"
2649
+ "\t<li><strong>Year Archive Title Format</strong> &mdash; Displays on year "
2650
+ "archives. Supports the {year} variable.</li>\r\n"
2651
+ "\t<li><strong>Author Archive Title Format</strong> &mdash; Displays on "
2652
+ "author archives. Supports the same author variables as the Post Title Format "
2653
+ "box, i.e. {author}, {author_username}, {author_firstname}, "
2654
+ "{author_lastname}, and {author_nickname}.</li>\r\n"
2655
+ "\t<li><strong>Search Title Format</strong> &mdash; Displays on the result "
2656
+ "pages for WordPress&#8217;s blog search function. The {query} variable is "
2657
+ "replaced with the search query as-is. The {ucwords} variable returns the "
2658
+ "search query with the first letter of each word capitalized.</li>\r\n"
2659
+ "\t<li>\r\n"
2660
+ "\t\t<p><strong>404 Title Format</strong> &mdash; Displays whenever a URL "
2661
+ "doesn&#8217;t go anywhere. Supports this variable:</p>\r\n"
2662
+ "\t\t<ul>\r\n"
2663
+ "\t\t\t<li>{url_words} &mdash; The words used in the error-generating URL. "
2664
+ "The first letter of each word will be capitalized.</li>\r\n"
2665
+ "\t\t</ul>\r\n"
2666
+ "\t</li>\r\n"
2667
+ "\t<li>\r\n"
2668
+ "\t\t<p><strong>Pagination Title Format</strong> &mdash; Displays whenever "
2669
+ "the visitor is on a subpage (page 2, page 3, etc.) of the homepage or of an "
2670
+ "archive. Supports these variables:</p>\r\n"
2671
+ "\t\t<ul>\r\n"
2672
+ "\t\t\t<li>{title} &mdash; The title that would normally be displayed on page "
2673
+ "1</li>\r\n"
2674
+ "\t\t\t<li>{num} &mdash; The current page number (2, 3, etc.)</li>\r\n"
2675
+ "\t\t\t<li>{max} &mdash; The total number of subpages available. Would "
2676
+ "usually be used like this: Page {num} of {max}</li>\r\n"
2677
+ "\t\t</ul>\r\n"
2678
+ "\t</li>\r\n"
2679
  "</ul>\r\n"
2680
  msgstr ""
2681
 
2682
+ #: modules/titles/titles.php:416
2683
  msgid ""
2684
  "\r\n"
2685
+ "<p>Here&#8217;s documentation for the options on the &#8220;Settings&#8221; "
2686
+ "tab.</p>\r\n"
2687
  "<ul>\r\n"
 
 
 
 
 
 
 
2688
  "\t<li>\r\n"
2689
+ "\t\t<p><strong>Rewrite Method</strong> &mdash; This setting controls the "
2690
+ "method by which Title Tag Rewriter edits your site&#8217;s <code>&lt;"
2691
+ "title&gt;</code> tags.</p>\r\n"
2692
+ "\t\t<ul>\r\n"
2693
+ "\t\t\t<li><strong>Use output buffering</strong> &mdash; This is the &#8220;"
2694
+ "traditional&#8221; method that most SEO plugins use. With this method, SEO "
2695
+ "Ultimate will intercept your site&#8217;s <code>&lt;head&gt;</code> tag "
2696
+ "section as it&#8217;s being outputted, locate the <code>&lt;title&gt;</code> "
2697
+ "tag, edit its value, and then output the edited <code>&lt;head&gt;</code> "
2698
+ "data. The good thing about this method is that you don&#8217;t have to edit "
2699
+ "your theme in any way, as SEO Ultimate will overwrite whatever your theme "
2700
+ "puts in your <code>&lt;title&gt;</code> tag. The bad thing is that this "
2701
+ "output interception takes a few extra milliseconds to complete. If you are "
2702
+ "concerned about performance, are comfortable editing your theme&#8217;s "
2703
+ "`header.php` file, and will remember to edit the `header.php` file of any "
2704
+ "new themes you activate, you may want to try the filtering rewrite method.</"
2705
+ "li>\r\n"
2706
+ "\t\t\t<li>\r\n"
2707
+ "\t\t\t\t<p><strong>Use filtering</strong> &mdash; With this method, SEO "
2708
+ "Ultimate will register itself with WordPress and will replace "
2709
+ "WordPress&#8217;s <code>&lt;title&gt;</code> tag output with its own. This "
2710
+ "method can only edit the text that WordPress itself generates for the "
2711
+ "<code>&lt;title&gt;</code> tag; the filtering method can&#8217;t edit "
2712
+ "anything extra your theme may add. For this reason, you need to edit your "
2713
+ "theme to make sure it&#8217;s only pulling <code>&lt;title&gt;</code> tag "
2714
+ "data from WordPress and is not adding anything else.</p>\r\n"
2715
+ "\t\t\t\t<p>Here&#8217;s how to set up filtering:</p>\r\n"
2716
+ "\t\t\t\t<ol>\r\n"
2717
+ "\t\t\t\t\t<li>Go to <a href='theme-editor.php'>Appearance &rArr; Editor</a> "
2718
+ "(if you get a permissions error, you may be on a WordPress multi-site "
2719
+ "environment and may not be able to use the filtering rewrite method)</li>\r\n"
2720
+ "\t\t\t\t\t<li>Click &#8220;Header (header.php)&#8221;</li>\r\n"
2721
+ "\t\t\t\t\t<li>Look for the <code>&lt;title&gt;</code> start tag and the "
2722
+ "<code>&lt;/title&gt;</code> end tag</li>\r\n"
2723
+ "\t\t\t\t\t<li>Edit the text in between those tags so that it looks like "
2724
+ "this: <code>&lt;title&gt;&lt;?php wp_title(''); ?&gt;&lt;/title&gt;</code></"
2725
+ "li>\r\n"
2726
+ "\t\t\t\t\t<li>Click &#8220;Update File&#8221;</li>\r\n"
2727
+ "\t\t\t\t\t<li>Return to the &#8220;Settings&#8221; tab of Title Tag "
2728
+ "Rewriter, select &#8220;Use filtering,&#8221; and click &#8220;Save "
2729
+ "Changes&#8221;</li>\r\n"
2730
+ "\t\t\t\t</ol>\r\n"
2731
+ "\t\t\t</li>\r\n"
2732
+ "\t\t</ul>\r\n"
2733
+ "\t</li>\r\n"
2734
  "</ul>\r\n"
2735
  msgstr ""
2736
 
2737
+ #: modules/titles/titles.php:443
2738
  msgid ""
2739
  "\r\n"
2740
  "<ul>\r\n"
2741
+ "\t<li><strong>Does the Title Tag Rewriter edit my post/page titles?</"
2742
+ "strong><br />No. The Title Tag Rewriter edits the <code>&lt;title&gt;</code> "
2743
+ "tags of your site, not your post/page titles.</li>\r\n"
2744
+ "\t<li><strong>Will rewriting the title tags of my posts change their "
2745
+ "permalinks/URLs?</strong><br />No.</li>\r\n"
2746
+ "\t<li><strong>What&#8217;s the difference between the &#8220;title&#8221; "
2747
+ "and the &#8220;title tag&#8221; of a post/page?</strong><br />The &#8220;"
2748
+ "title&#8221; is the title of your post or page that&#8217;s used in your "
2749
+ "site&#8217;s theme, in your site&#8217;s admin, in your site&#8217;s RSS "
2750
+ "feeds, and in your site&#8217;s <code>&lt;title&gt;</code> tags. A <code>&lt;"
2751
+ "title&gt;</code> tag is the title of a specific webpage, and it appears in "
2752
+ "your browser&#8217;s title bar and in search result listings. Title Tag "
2753
+ "Rewriter lets you edit your post&#8217;s <code>&lt;title&gt;</code> tags "
2754
+ "without editing their actual titles. This means you can edit a post&#8217;s "
2755
+ "title as it appears in search results, but not as it appears on your site.</"
2756
+ "li>\r\n"
2757
  "</ul>\r\n"
2758
  msgstr ""
2759
 
2760
+ #: modules/titles/titles.php:454
2761
+ msgid ""
2762
+ "\r\n"
2763
+ "<ul>\r\n"
2764
+ "\t<li><strong>Why isn&#8217;t Title Tag Rewriter changing my <code>&lt;"
2765
+ "title&gt;</code> tags?</strong><br />Try disabling other SEO plugins, as "
2766
+ "they may be conflicting with SEO Ultimate. If you&#8217;re using the default "
2767
+ "&#8220;output buffering&#8221; rewrite method, check to make sure your theme "
2768
+ "is <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' "
2769
+ "target='_blank'>plugin-friendly</a>. If you're using the &#8220;"
2770
+ "filtering&#8221; rewrite method, check your theme&#8217;s <code>header.php</"
2771
+ "code> file and make sure the <code>&lt;title&gt;</code> tag looks like this: "
2772
+ "<code>&lt;title&gt;&lt;?php wp_title(''); ?&gt;&lt;/title&gt;</code>.</li>"
2773
+ "\r\n"
2774
+ "</ul>\r\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2775
  msgstr ""
2776
 
2777
+ #: modules/user-code/user-code.php:12
2778
+ msgid "Code Inserter"
2779
  msgstr ""
2780
 
2781
+ #: modules/user-code/user-code.php:27
2782
+ msgid "Everywhere"
2783
  msgstr ""
2784
 
2785
+ #: modules/user-code/user-code.php:34
2786
+ msgid "&lt;head&gt; Tag"
2787
  msgstr ""
2788
 
2789
+ #: modules/user-code/user-code.php:35
2790
+ msgid "Before Item Content"
2791
  msgstr ""
2792
 
2793
+ #: modules/user-code/user-code.php:36
2794
+ msgid "After Item Content"
2795
  msgstr ""
2796
 
2797
+ #: modules/user-code/user-code.php:37
2798
+ msgid "Footer"
2799
  msgstr ""
2800
 
2801
+ #: modules/user-code/user-code.php:51
2802
+ msgid "Code Inserter module"
2803
  msgstr ""
2804
 
2805
+ #: modules/user-code/user-code.php:71
2806
  msgid ""
2807
+ "\r\n"
2808
+ "<ul>\r\n"
2809
+ "\t<li><strong>What it does:</strong> Code Inserter can add custom HTML code "
2810
+ "to various parts of your site.</li>\r\n"
2811
+ "\t<li>\r\n"
2812
+ "\t\t<p><strong>Why it helps:</strong> Code Inserter is useful for inserting "
2813
+ "third-party code that can improve the SEO or user experience of your site. "
2814
+ "For example, you can use Code Inserter to add Google Analytics code to your "
2815
+ "footer, Feedburner FeedFlares or social media widgets after your posts, or "
2816
+ "Google AdSense section targeting code before/after your content.</p>\r\n"
2817
+ "\t\t<p>Using Code Inserter is easier than editing your theme manually "
2818
+ "because your custom code is stored in one convenient location and will be "
2819
+ "added to your site even if you change your site&#8217;s theme.</p>\r\n"
2820
+ "\t</li>\r\n"
2821
+ "\t<li><strong>How to use it:</strong> Just paste the desired HTML code into "
2822
+ "the appropriate fields and then click Save Changes.</li>\r\n"
2823
+ "</ul>\r\n"
2824
  msgstr ""
2825
 
2826
+ #: modules/user-code/user-code.php:85
2827
+ msgid ""
2828
+ "\r\n"
2829
+ "<ul>\r\n"
2830
+ "\t<li><strong>Why doesn't my code appear on my site?</strong><br />It&#8217;"
2831
+ "s possible that your theme doesn't have the proper &#8220;hooks,&#8221; "
2832
+ "which are pieces of code that let WordPress plugins insert custom HTML into "
2833
+ "your theme. <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' "
2834
+ "target='_blank'>Click here</a> for information on how to check your theme "
2835
+ "and add the hooks if needed.</li>\r\n"
2836
+ "</ul>\r\n"
2837
  msgstr ""
2838
 
2839
  #: modules/rich-snippets/rich-snippets.php:12
2867
  msgstr ""
2868
 
2869
  #: modules/rich-snippets/rich-snippets.php:62
2870
+ #: modules/rich-snippets/rich-snippets.php:229
2871
  msgid "Review"
2872
  msgstr ""
2873
 
2875
  msgid "Item Reviewed"
2876
  msgstr ""
2877
 
2878
+ #: modules/rich-snippets/rich-snippets.php:82
2879
  msgid "Star Rating"
2880
  msgstr ""
2881
 
2882
+ #: modules/rich-snippets/rich-snippets.php:87
2883
  msgid "Review Author"
2884
  msgstr ""
2885
 
2886
+ #: modules/rich-snippets/rich-snippets.php:93
2887
  msgid "Date Reviewed"
2888
  msgstr ""
2889
 
2890
+ #: modules/rich-snippets/rich-snippets.php:228
2891
+ #: modules/rich-snippets/rich-snippets.php:237
2892
  msgid "None"
2893
  msgstr ""
2894
 
2895
+ #: modules/rich-snippets/rich-snippets.php:230
2896
  msgid "Rich Snippet Type:"
2897
  msgstr ""
2898
 
2899
+ #: modules/rich-snippets/rich-snippets.php:234
2900
  msgid "Name of Reviewed Item:"
2901
  msgstr ""
2902
 
2903
+ #: modules/rich-snippets/rich-snippets.php:238
2904
  msgid "0.5 stars"
2905
  msgstr ""
2906
 
2907
+ #: modules/rich-snippets/rich-snippets.php:239
2908
  msgid "1 star"
2909
  msgstr ""
2910
 
2911
+ #: modules/rich-snippets/rich-snippets.php:240
2912
  msgid "1.5 stars"
2913
  msgstr ""
2914
 
2915
+ #: modules/rich-snippets/rich-snippets.php:241
2916
  msgid "2 stars"
2917
  msgstr ""
2918
 
2919
+ #: modules/rich-snippets/rich-snippets.php:242
2920
  msgid "2.5 stars"
2921
  msgstr ""
2922
 
2923
+ #: modules/rich-snippets/rich-snippets.php:243
2924
  msgid "3 stars"
2925
  msgstr ""
2926
 
2927
+ #: modules/rich-snippets/rich-snippets.php:244
2928
  msgid "3.5 stars"
2929
  msgstr ""
2930
 
2931
+ #: modules/rich-snippets/rich-snippets.php:245
2932
  msgid "4 stars"
2933
  msgstr ""
2934
 
2935
+ #: modules/rich-snippets/rich-snippets.php:246
2936
  msgid "4.5 stars"
2937
  msgstr ""
2938
 
2939
+ #: modules/rich-snippets/rich-snippets.php:247
2940
  msgid "5 stars"
2941
  msgstr ""
2942
 
2943
+ #: modules/rich-snippets/rich-snippets.php:248
2944
  msgid "Star Rating for Reviewed Item:"
2945
  msgstr ""
2946
 
2947
+ #: modules/rich-snippets/rich-snippets.php:259
2948
  msgid ""
2949
  "\r\n"
2950
  "<ul>\r\n"
2972
  "</ul>\r\n"
2973
  msgstr ""
2974
 
2975
+ #: modules/rich-snippets/rich-snippets.php:270
2976
  msgid ""
2977
  "\r\n"
2978
  "<ul>\r\n"
2992
  "</ul>\r\n"
2993
  msgstr ""
2994
 
2995
+ #: modules/rich-snippets/rich-snippets.php:280
2996
  msgid ""
2997
  "\r\n"
2998
  "<ul>\r\n"
3011
  "</ul>\r\n"
3012
  msgstr ""
3013
 
3014
+ #: modules/permalinks/permalinks.php:15
3015
+ msgid "Permalink Tweaker"
 
 
 
 
 
 
 
 
 
 
 
 
 
3016
  msgstr ""
3017
 
3018
+ #: modules/permalinks/permalinks.php:50
3019
+ msgid ""
3020
+ "To use the Permalinks Tweaker, you must disable default (query-string) "
3021
+ "permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
3022
  msgstr ""
3023
 
3024
+ #: modules/permalinks/permalinks.php:75
3025
+ msgid "Remove the URL bases of..."
3026
  msgstr ""
3027
 
3028
+ #: modules/permalinks/permalinks.php:80
3029
+ msgid "Before"
 
 
 
 
 
 
 
 
 
 
 
 
3030
  msgstr ""
3031
 
3032
+ #: modules/permalinks/permalinks.php:82
3033
+ msgid "After"
3034
  msgstr ""
3035
 
3036
+ #: modules/permalinks/permalinks.php:102
3037
+ msgid "term archive"
3038
  msgstr ""
3039
 
3040
+ #: modules/permalinks/permalinks.php:103
3041
+ msgid "page"
3042
  msgstr ""
3043
 
3044
+ #: modules/permalinks/permalinks.php:104
3045
+ msgid "URL Conflict Resolution"
3046
  msgstr ""
3047
 
3048
+ #: modules/permalinks/permalinks.php:104
3049
+ msgid ""
3050
+ "If a term archive and a Page with the same slug end up having the same URL "
3051
+ "because of the term&#8217;s base being removed, the URL should be given to "
3052
+ "the %s."
3053
  msgstr ""
3054
 
3055
+ #: modules/wp-settings/wp-settings.php:14
3056
+ msgid "Settings Monitor (Beta)"
3057
  msgstr ""
3058
 
3059
+ #: modules/wp-settings/wp-settings.php:15
3060
+ msgid "Settings Monitor"
3061
  msgstr ""
3062
 
3063
+ #: modules/wp-settings/wp-settings.php:30
3064
+ msgid "Blog is visible to search engines"
 
3065
  msgstr ""
3066
 
3067
+ #: modules/wp-settings/wp-settings.php:31
3068
+ msgid "WordPress will allow search engines to visit your site."
 
3069
  msgstr ""
3070
 
3071
+ #: modules/wp-settings/wp-settings.php:33
3072
+ msgid "Blog is hidden from search engines"
3073
  msgstr ""
3074
 
3075
+ #: modules/wp-settings/wp-settings.php:34
3076
+ msgid ""
3077
+ "WordPress is configured to block search engines. This will nullify your "
3078
+ "site&#8217;s SEO and should be resolved immediately."
3079
  msgstr ""
3080
 
3081
+ #: modules/wp-settings/wp-settings.php:38
3082
+ msgid "Query-string permalinks enabled"
 
3083
  msgstr ""
3084
 
3085
+ #: modules/wp-settings/wp-settings.php:39
3086
+ msgid ""
3087
+ "It is highly recommended that you use a non-default and non-numeric "
3088
+ "permalink structure."
3089
  msgstr ""
3090
 
3091
+ #: modules/wp-settings/wp-settings.php:43
3092
+ msgid "Pathinfo permalinks enabled"
 
3093
  msgstr ""
3094
 
3095
+ #: modules/wp-settings/wp-settings.php:44
3096
+ msgid ""
3097
+ "Pathinfo permalinks add a keyword-less &#8220;index.php&#8221; prefix. This "
3098
+ "is not ideal, but it may be beyond your control (since it&#8217;s likely "
3099
+ "caused by your site&#8217;s web hosting setup)."
3100
  msgstr ""
3101
 
3102
+ #: modules/wp-settings/wp-settings.php:49
3103
+ msgid "Permalinks include the post slug"
3104
  msgstr ""
3105
 
3106
+ #: modules/wp-settings/wp-settings.php:50
3107
+ msgid ""
3108
+ "Including a version of the post&#8217;s title helps provide keyword-rich "
3109
+ "URLs."
3110
  msgstr ""
3111
 
3112
+ #: modules/wp-settings/wp-settings.php:52
3113
+ msgid "Permalinks do not include the post slug"
3114
  msgstr ""
3115
 
3116
+ #: modules/wp-settings/wp-settings.php:53
3117
  msgid ""
3118
+ "It is highly recommended that you include the %postname% variable in the "
3119
+ "permalink structure."
 
 
 
 
3120
  msgstr ""
3121
 
3122
+ #: modules/wp-settings/wp-settings.php:63
3123
+ msgid ""
3124
+ "Settings Monitor analyzes your blog&#8217;s settings and notifies you of any "
3125
+ "problems. If any issues are found, they will show up in red or yellow below."
3126
  msgstr ""
3127
 
3128
+ #: modules/wp-settings/wp-settings.php:75
3129
+ msgid "Go to setting &raquo;"
3130
  msgstr ""
3131
 
3132
+ #: modules/files/files.php:14
3133
+ msgid "File Editor"
3134
  msgstr ""
3135
 
3136
+ #: modules/files/files.php:53
3137
+ msgid ""
3138
+ "A .htaccess file exists, but it&#8217;s not writable. You can edit it here "
3139
+ "once the file permissions are corrected."
3140
  msgstr ""
3141
 
3142
+ #: modules/files/files.php:59
3143
  msgid ""
3144
+ "WordPress won&#8217;t be able to display your robots.txt file because the "
3145
+ "default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
3146
+ "structure</a> is in use."
3147
  msgstr ""
3148
 
3149
+ #: modules/files/files.php:66
3150
+ msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
3151
  msgstr ""
3152
 
3153
+ #: modules/files/files.php:70
3154
+ msgid "Enable this custom robots.txt file and disable the default file"
3155
  msgstr ""
3156
 
3157
+ #: modules/files/files.php:71
3158
+ msgid "Let other plugins add rules to my custom robots.txt file"
3159
  msgstr ""
3160
 
3161
+ #: modules/files/files.php:72
3162
+ msgid "robots.txt Settings"
 
 
3163
  msgstr ""
3164
 
3165
+ #: modules/files/files.php:75
3166
  msgid ""
3167
+ "Please realize that incorrectly editing your robots.txt file could block "
3168
+ "search engines from your site."
3169
  msgstr ""
3170
 
3171
+ #: modules/files/files.php:79
3172
+ msgid ".htaccess"
3173
+ msgstr ""
3174
+
3175
+ #: modules/files/files.php:82
3176
  msgid ""
3177
+ "Also, incorrectly editing your .htaccess file could disable your entire "
3178
+ "website. Edit with caution!"
3179
  msgstr ""
3180
 
3181
+ #: modules/files/files.php:134
3182
+ msgid ""
3183
+ "Please note that your privacy settings won&#8217;t have any effect on your "
3184
+ "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
3185
  msgstr ""
3186
 
3187
+ #: modules/files/files.php:145
3188
  msgid ""
3189
+ "\r\n"
3190
+ "<ul>\r\n"
3191
+ "\t<li><strong>What it does:</strong> The File Editor module lets you edit "
3192
+ "two important SEO-related files: robots.txt and .htaccess.</li>\r\n"
3193
+ "\t<li><strong>Why it helps:</strong> You can use the <a href='http://www."
3194
+ "robotstxt.org/robotstxt.html' target='_blank'>robots.txt file</a> to give "
3195
+ "instructions to search engine spiders. You can use the <a href='http://httpd."
3196
+ "apache.org/docs/2.2/howto/htaccess.html' target='_blank'>.htaccess file</a> "
3197
+ "to implement advanced SEO strategies (URL rewriting, regex redirects, etc.). "
3198
+ "SEO Ultimate makes editing these files easier than ever.</li>\r\n"
3199
+ "\t<li><strong>How to use it:</strong> Edit the files as desired, then click "
3200
+ "Save Changes. If you create a custom robots.txt file, be sure to enable it "
3201
+ "with the checkbox.</li>\r\n"
3202
+ "</ul>\r\n"
3203
  msgstr ""
3204
 
3205
+ #: modules/files/files.php:156
3206
+ msgid ""
3207
+ "\r\n"
3208
+ "<ul>\r\n"
3209
+ "\t<li><strong>Will my robots.txt edits remain if I disable the File Editor?</"
3210
+ "strong><br />No. On a WordPress blog, the robots.txt file is dynamically "
3211
+ "generated just like your posts and Pages. If you disable the File Editor "
3212
+ "module or the entire SEO Ultimate plugin, the File Editor won&#8217;t be "
3213
+ "able to insert your custom code into the robots.txt file anymore.</li>\r\n"
3214
+ "\t<li><strong>Will my .htaccess edits remain if I disable the File Editor?</"
3215
+ "strong><br />Yes. The .htaccess file is static. Your edits will remain even "
3216
+ "if you disable SEO Ultimate or its File Editor module.</li>\r\n"
3217
+ "</ul>\r\n"
3218
  msgstr ""
3219
 
3220
+ #: modules/files/files.php:166
3221
+ msgid ""
3222
+ "\r\n"
3223
+ "<ul>\r\n"
3224
+ "\t<li><strong>Why do I get a &#8220;500 Server Error&#8221; after using the "
3225
+ "File Editor?</strong><br />You may have inserted code into your .htaccess "
3226
+ "file that your web server can't understand. As the File Editor warns, "
3227
+ "incorrectly editing your .htaccess file can disable your entire website in "
3228
+ "this way. To restore your site, you'll need to use an FTP client (or your "
3229
+ "web host's File Manager) to edit or rename your .htaccess file. If you need "
3230
+ "help, please contact your web host.</li>\r\n"
3231
+ "\t<li><strong>Where did my .htaccess edits go?</strong><br />The .htaccess "
3232
+ "file is static, so SEO Ultimate doesn't have total control over it. It&#8217;"
3233
+ "s possible that WordPress, another plugin, or other software may overwrite "
3234
+ "your .htaccess file. If you have a backup of your blog&#8217;s files, you "
3235
+ "can try recovering your edits from there.</li>\r\n"
3236
+ "</ul>\r\n"
3237
  msgstr ""
3238
 
3239
+ #: modules/widgets/widgets.php:12
3240
+ msgid "SEO Ultimate Widgets"
3241
  msgstr ""
3242
 
3243
+ #: modules/widgets/widgets.php:36
3244
+ msgid ""
3245
+ "On category archives, displays a list of child categories and/or posts in "
3246
+ "the category. Displays a list of top-level categories everywhere else. "
3247
+ "Powered by the SEO Ultimate plugin."
3248
  msgstr ""
3249
 
3250
+ #: modules/widgets/widgets.php:37
3251
+ msgid "Siloed Categories"
3252
  msgstr ""
3253
 
3254
+ #: modules/widgets/widgets.php:51
3255
+ msgid "Tags"
 
 
3256
  msgstr ""
3257
 
3258
+ #: modules/widgets/widgets.php:130
3259
+ msgid "Title:"
3260
  msgstr ""
3261
 
3262
+ #: modules/widgets/widgets.php:134
3263
+ msgid "Show post counts"
3264
  msgstr ""
3265
 
3266
+ #: modules/widgets/widgets.php:136
3267
+ msgid "Use term descriptions in title attributes"
3268
  msgstr ""
3269
 
3270
+ #: modules/widgets/widgets.php:138
3271
+ msgid "Taxonomy:"
3272
  msgstr ""
3273
 
3274
+ #: modules/widgets/widgets.php:163
3275
  msgid ""
3276
+ "Add this widget to display Deeplink Juggernaut&#8217;s Footer Links in a "
3277
+ "widget area of your choosing rather than the default wp_footer section. "
3278
+ "Powered by the SEO Ultimate plugin."
 
 
 
 
3279
  msgstr ""
3280
 
3281
+ #: modules/widgets/widgets.php:217
3282
+ msgid "Title: <em>(optional)</em>"
3283
  msgstr ""
3284
 
3285
+ #: modules/widgets/widgets.php:221
3286
+ msgid "Display as a list"
3287
  msgstr ""
3288
 
3289
+ #: modules/widgets/widgets.php:224
3290
+ msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
3291
  msgstr ""
3292
 
3293
+ #: modules/misc/misc.php:11
3294
+ msgid "Miscellaneous"
3295
  msgstr ""
3296
 
3297
+ #: modules/misc/misc.php:14
3298
+ msgid ""
3299
+ "The Miscellaneous page contains modules that don&#8217;t have enough "
3300
+ "settings to warrant their own separate admin pages."
3301
  msgstr ""
3302
 
3303
+ #: modules/canonical/canonical.php:12 modules/canonical/canonical.php:201
3304
+ msgid "Canonicalizer"
3305
  msgstr ""
3306
 
3307
+ #: modules/canonical/canonical.php:39
3308
+ msgid ""
3309
+ "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> meta tags."
3310
  msgstr ""
3311
 
3312
+ #: modules/canonical/canonical.php:40
3313
+ msgid "Send <code>rel=&quot;canonical&quot;</code> HTTP headers."
3314
  msgstr ""
3315
 
3316
+ #: modules/canonical/canonical.php:41
3317
+ msgid "Redirect requests for nonexistent pagination."
3318
+ msgstr ""
3319
+
3320
+ #: modules/canonical/canonical.php:202
3321
+ msgid ""
3322
+ "\r\n"
3323
+ "<ul>\r\n"
3324
+ "\t<li>\r\n"
3325
+ "\t\t<p><strong>What it does:</strong> Canonicalizer improves on two "
3326
+ "WordPress features to minimize possible exact-content duplication penalties. "
3327
+ "The <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> tags setting "
3328
+ "improves on the canonical tags feature of WordPress 2.9 and above by "
3329
+ "encompassing much more of your site than just your posts and Pages.</p>\r\n"
3330
+ "\t\t<p>The nonexistent pagination redirect feature fills a gap in "
3331
+ "WordPress's built-in canonicalization functionality: for example, if a URL "
3332
+ "request is made for page 6 of a category archive, and that category doesn't "
3333
+ "have a page 6, then by default, depending on the context, WordPress will "
3334
+ "display a blank page, or it will display the content of the closest page "
3335
+ "number available, without issuing a 404 error or a 301 redirect (thus "
3336
+ "creating two or more identical webpages). This duplicate-content situation "
3337
+ "can happen when you, for example, remove many posts from a category, thus "
3338
+ "reducing the amount of pagination needed in the category's archive. The "
3339
+ "Canonicalizer's feature fixes that behavior by issuing 301 redirects to page "
3340
+ "1 of the paginated section in question.</p>\r\n"
3341
+ "\t</li>\r\n"
3342
+ "\t<li><strong>Why it helps:</strong> These features will point Google to the "
3343
+ "correct URL for your homepage and each of your posts, Pages, categories, "
3344
+ "tags, date archives, and author archives. That way, if Google comes across "
3345
+ "an alternate URL by which one of those items can be accessed, it will be "
3346
+ "able to find the correct URL and won't penalize you for having two identical "
3347
+ "pages on your site.</li>\r\n"
3348
+ "\t<li><strong>How to use it:</strong> Just check all three checkboxes and "
3349
+ "click Save Changes. SEO Ultimate will do the rest.</li>\r\n"
3350
+ "</ul>\r\n"
3351
  msgstr ""
3352
 
3353
  #. Plugin URI of the plugin/theme