SEO Ultimate - Version 6.6

Version Description

Download this release

Release Info

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

Code changes from version 6.5.2 to 6.6

modules/widgets/index.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ header('Status: 403 Forbidden');
3
+ header('HTTP/1.1 403 Forbidden');
4
+ ?>
modules/widgets/widgets.php ADDED
@@ -0,0 +1,223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Widgets Module
4
+ *
5
+ * @since 6.6
6
+ */
7
+
8
+ if (class_exists('SU_Module')) {
9
+
10
+ class SU_Widgets extends SU_Module {
11
+
12
+ function get_module_title() { return __('SEO Ultimate Widgets', 'seo-ultimate'); }
13
+ function get_menu_title() { return false; }
14
+ function get_admin_url() { return 'widgets.php'; }
15
+
16
+ function __construct() {
17
+ add_action('widgets_init', array(&$this, 'register_widgets'));
18
+ }
19
+
20
+ function register_widgets() {
21
+ register_widget('SU_Widget_SiloedTerms');
22
+
23
+ if ($this->plugin->module_exists('footer-autolinks'))
24
+ register_widget('SU_Widget_FooterLinks');
25
+ }
26
+ }
27
+
28
+ }
29
+
30
+ if (class_exists('WP_Widget')) {
31
+
32
+ //Based on WordPress' WP_Widget_Categories & WP_Widget_Tag_Cloud
33
+ class SU_Widget_SiloedTerms extends WP_Widget {
34
+
35
+ function __construct() {
36
+ $widget_ops = array( 'description' => __( "On category archives, displays a list of child categories and/or posts in the category. Displays a list of top-level categories everywhere else. Powered by the SEO Ultimate plugin.", 'seo-ultimate' ) );
37
+ parent::__construct('su_siloed_terms', __('Siloed Categories', 'seo-ultimate'), $widget_ops);
38
+ }
39
+
40
+ function widget( $args, $instance ) {
41
+ global $wp_query;
42
+
43
+ extract( $args );
44
+
45
+ $current_taxonomy = $this->_get_current_taxonomy($instance);
46
+
47
+ if ( !empty($instance['title']) ) {
48
+ $title = $instance['title'];
49
+ } else {
50
+ if ( 'post_tag' == $current_taxonomy ) {
51
+ $title = __('Tags');
52
+ } else {
53
+ $tax = get_taxonomy($current_taxonomy);
54
+ $title = $tax->labels->name;
55
+ }
56
+ }
57
+
58
+ $title = apply_filters('widget_title', $title, $instance, $this->id_base);
59
+ $current_term = false;
60
+ $current_term_id = $current_post_id = 0;
61
+
62
+ if (suwp::is_tax($current_taxonomy)) {
63
+ $current_term = $wp_query->get_queried_object();
64
+ $current_term_id = $wp_query->get_queried_object_id();
65
+ $title = $current_term->name;
66
+ } elseif (is_singular()) {
67
+ $current_post_id = $wp_query->get_queried_object_id();
68
+ $post_terms = get_the_terms($current_post_id, $current_taxonomy);
69
+ if (is_array($post_terms) && count($post_terms)) {
70
+ $current_term = reset($post_terms);
71
+ $current_term_id = $current_term->term_id;
72
+ $title = $current_term->name;
73
+ }
74
+ }
75
+
76
+ echo $before_widget;
77
+ if ( $title )
78
+ echo $before_title . $title . $after_title;
79
+
80
+ $term_args = array('taxonomy' => $current_taxonomy, 'orderby' => 'name', 'show_count' => $instance['count'] ? '1' : '0', 'hierarchical' => '0', 'title_li' => '', 'parent' => $current_term_id, 'show_option_none' => false);
81
+
82
+ echo "\n\t\t<ul>\n";
83
+
84
+ if (!$current_term || is_taxonomy_hierarchical($current_taxonomy))
85
+ wp_list_categories($term_args);
86
+
87
+ if ($current_term) {
88
+ $child_posts = get_posts(array('taxonomy' => $current_taxonomy, 'term' => $current_term->slug, 'numberposts' => 5));
89
+
90
+ foreach ($child_posts as $child_post) {
91
+
92
+ $css_class = '';
93
+ if ($child_post->ID == $current_post_id)
94
+ $css_class = 'current_post_item';
95
+
96
+ echo "\n\t\t\t<li class=\"" . $css_class . '"><a href="' . get_permalink($child_post->ID) . '" title="' . esc_attr( wp_strip_all_tags( apply_filters( 'the_title', $child_post->post_title, $child_post->ID ) ) ) . '">' . apply_filters( 'the_title', $child_post->post_title, $child_post->ID ) . "</a></li>\n";
97
+ }
98
+ }
99
+
100
+ echo "\n\t\t</ul>\n";
101
+
102
+ echo $after_widget;
103
+ }
104
+
105
+ function update( $new_instance, $old_instance ) {
106
+ $instance = $old_instance;
107
+ $instance['title'] = strip_tags(stripslashes($new_instance['title']));
108
+ $instance['taxonomy'] = stripslashes($new_instance['taxonomy']);
109
+ $instance['count'] = !empty($new_instance['count']) ? 1 : 0;
110
+
111
+ return $instance;
112
+ }
113
+
114
+ function form( $instance ) {
115
+ $current_taxonomy = $this->_get_current_taxonomy($instance);
116
+
117
+ //Defaults
118
+ $instance = wp_parse_args( (array) $instance, array( 'title' => '') );
119
+ $title = esc_attr( $instance['title'] );
120
+ $count = isset($instance['count']) ? (bool) $instance['count'] :false;
121
+ ?>
122
+ <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title:' ); ?></label>
123
+ <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
124
+
125
+ <p><input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>"<?php checked( $count ); ?> />
126
+ <label for="<?php echo $this->get_field_id('count'); ?>"><?php _e( 'Show post counts' ); ?></label></p>
127
+
128
+ <p><label for="<?php echo $this->get_field_id('taxonomy'); ?>"><?php _e('Taxonomy:') ?></label>
129
+ <select class="widefat" id="<?php echo $this->get_field_id('taxonomy'); ?>" name="<?php echo $this->get_field_name('taxonomy'); ?>">
130
+ <?php foreach ( get_object_taxonomies('post') as $taxonomy ) :
131
+ $tax = get_taxonomy($taxonomy);
132
+ if ( !$tax->show_tagcloud || empty($tax->labels->name) )
133
+ continue;
134
+ ?>
135
+ <option value="<?php echo esc_attr($taxonomy) ?>" <?php selected($taxonomy, $current_taxonomy) ?>><?php echo $tax->labels->name; ?></option>
136
+ <?php endforeach; ?>
137
+ </select></p>
138
+ <?php
139
+ }
140
+
141
+ function _get_current_taxonomy($instance) {
142
+ if ( !empty($instance['taxonomy']) && taxonomy_exists($instance['taxonomy']) )
143
+ return $instance['taxonomy'];
144
+
145
+ return 'category';
146
+ }
147
+
148
+ }
149
+
150
+ class SU_Widget_FooterLinks extends WP_Widget {
151
+
152
+ function __construct() {
153
+ $widget_ops = array( 'description' => __( "Add this widget to display Deeplink Juggernaut&#8217;s Footer Links in a widget area of your choosing rather than the default wp_footer section. Powered by the SEO Ultimate plugin.", 'seo-ultimate' ) );
154
+ parent::__construct('su_footer_autolinks', __('Footer Links', 'seo-ultimate'), $widget_ops);
155
+ }
156
+
157
+ function widget( $args, $instance ) {
158
+
159
+ extract( $args );
160
+
161
+ global $seo_ultimate;
162
+ $display = empty($instance['display']) ? 'list' : $instance['display'];
163
+
164
+ $title = empty($instance['title']) ? false : $instance['title'];
165
+ $title = apply_filters('widget_title', $title, $instance, $this->id_base);
166
+
167
+ echo $before_widget;
168
+ if ( $title )
169
+ echo $before_title . $title . $after_title;
170
+
171
+ switch ($display) {
172
+ case 'list':
173
+ $args = array(
174
+ 'footer_link_section_format' => "\n\t\t<ul>{links}\n\t\t</ul>\n"
175
+ , 'footer_link_format' => "\n\t\t\t<li>{link}</li>"
176
+ , 'footer_link_sep' => ''
177
+ );
178
+ break;
179
+
180
+ default:
181
+ $args = array();
182
+ break;
183
+ }
184
+
185
+ if ($seo_ultimate->call_module_func('footer-autolinks', 'autolink_footer', $unused, $args))
186
+ $seo_ultimate->set_module_var('footer-autolinks', 'already_outputted', true);
187
+
188
+ echo $after_widget;
189
+ }
190
+
191
+ function update( $new_instance, $old_instance ) {
192
+ $instance = $old_instance;
193
+ $instance['title'] = strip_tags(stripslashes($new_instance['title']));
194
+ $instance['display'] = stripslashes($new_instance['display']);
195
+
196
+ return $instance;
197
+ }
198
+
199
+ function form( $instance ) {
200
+ global $seo_ultimate;
201
+
202
+ //Defaults
203
+ $instance = wp_parse_args( (array) $instance, array( 'title' => '') );
204
+ $title = esc_attr( $instance['title'] );
205
+ $display = empty($instance['display']) ? 'list' : $instance['display'];
206
+ ?>
207
+ <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title: <em>(optional)</em>' ); ?></label>
208
+ <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
209
+
210
+ <p>
211
+ <label><input type="radio" name="<?php echo $this->get_field_name('display'); ?>" value="list" <?php checked('list', $display); ?>/> <?php _e('Display as a list', 'seo-ultimate'); ?></label><br />
212
+ <label><input type="radio" name="<?php echo $this->get_field_name('display'); ?>" value="usersettings" <?php checked('usersettings', $display); ?>/> <?php
213
+ $seo_ultimate->call_module_func('footer-autolinks-settings', 'get_admin_url', $formats_url);
214
+ printf(__('Use my <a href="%s" target="_blank">footer link HTML formats</a>', 'seo-ultimate'), $formats_url);
215
+ ?></label>
216
+ </p>
217
+ <?php
218
+ }
219
+ }
220
+
221
+ }
222
+
223
+ ?>
plugin/class.seo-ultimate.php CHANGED
@@ -1712,7 +1712,7 @@ class SEO_Ultimate {
1712
  continue;
1713
 
1714
  $terms = get_terms($taxonomyobj->name, array(
1715
- 'search' => esc_sql($_GET['q']) //The esc_sql() is very important: get_terms does NOT sanitize the "search" variable for SQL queries prior to 3.1.3
1716
  ));
1717
 
1718
  if (count($terms)) {
1712
  continue;
1713
 
1714
  $terms = get_terms($taxonomyobj->name, array(
1715
+ 'search' => $_GET['q'] //NOTE: get_terms does NOT sanitize the "search" variable for SQL queries prior to WordPress 3.1.3, which is why this plugin will refuse to run on versions prior to 3.1.3
1716
  ));
1717
 
1718
  if (count($terms)) {
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, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.2
5
  Tested up to: 3.2
6
- Stable tag: 6.5.2
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
@@ -11,11 +11,11 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
11
 
12
  = Recent Releases =
13
 
 
14
  * Version 6.5 features Deeplink Juggernaut 3.0
15
  * Version 6.4 adds 3 more features to Deeplink Juggernaut
16
  * Version 6.3 adds support for the new `rel="canonical"` HTTP headers
17
  * Version 6.2 adds Silo Linking to Deeplink Juggernaut
18
- * Version 6.1 fixes Link Mask Generator issues
19
 
20
  = Features =
21
 
@@ -129,6 +129,10 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
129
  * **Permalink Tweaker**
130
  * 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.
131
 
 
 
 
 
132
  * **Settings Manager**
133
  * Export your SEO Ultimate settings to a file and re-import later if desired.
134
  * Move SEO Ultimate settings between blogs using the export/import functionality.
@@ -247,11 +251,16 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
247
 
248
  == Changelog ==
249
 
 
 
 
 
 
250
  = Version 6.5.2 (July 13, 2011) =
251
- * Bugfix: Restored access to the "Global" tab of Meta Robot Tags Editor
252
 
253
  = Version 6.5.1 (July 11, 2011) =
254
- * Bugfix: Restored Deeplink Juggernaut's ability to link to arbitrary URLs
255
 
256
  = Version 6.5 (July 9, 2011) =
257
  * Feature: Added "Footer Links" functionality to Deeplink Juggernaut
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.2
5
  Tested up to: 3.2
6
+ Stable tag: 6.6
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
11
 
12
  = Recent Releases =
13
 
14
+ * Version 6.6 adds the SEO Ultimate Widgets module
15
  * Version 6.5 features Deeplink Juggernaut 3.0
16
  * Version 6.4 adds 3 more features to Deeplink Juggernaut
17
  * Version 6.3 adds support for the new `rel="canonical"` HTTP headers
18
  * Version 6.2 adds Silo Linking to Deeplink Juggernaut
 
19
 
20
  = Features =
21
 
129
  * **Permalink Tweaker**
130
  * 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.
131
 
132
+ * **SEO Ultimate Widgets** -- NEW in Version 6.6
133
+ * Lets you output your Deeplink Juggernaut Footer Links in a widget
134
+ * The Siloed Categories widget makes it drag-and-drop-easy to construct siloed navigation on your site
135
+
136
  * **Settings Manager**
137
  * Export your SEO Ultimate settings to a file and re-import later if desired.
138
  * Move SEO Ultimate settings between blogs using the export/import functionality.
251
 
252
  == Changelog ==
253
 
254
+ = Version 6.6 (July 15, 2011) =
255
+ * New Module: SEO Ultimate Widgets
256
+ * Feature: The new "Footer Links" widget lets you display your Deeplink Juggernaut Footer Links in a widgetized footer or sidebar
257
+ * Feature: The new "Siloed Categories" widget lets you create a navigation section that's siloed around a taxonomy of your choosing
258
+
259
  = Version 6.5.2 (July 13, 2011) =
260
+ * Bugfix: Restored access to the "Global" tab of Meta Robot Tags Editor (broke in 6.4)
261
 
262
  = Version 6.5.1 (July 11, 2011) =
263
+ * Bugfix: Restored Deeplink Juggernaut's ability to link to arbitrary URLs (broke in 6.5)
264
 
265
  = Version 6.5 (July 9, 2011) =
266
  * Feature: Added "Footer Links" functionality to Deeplink Juggernaut
seo-ultimate.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
- Version: 6.5.2
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
- * @version 6.5.2
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -42,15 +42,15 @@ if (!defined('ABSPATH')) {
42
  /********** CONSTANTS **********/
43
 
44
  //The minimum version of WordPress required
45
- define('SU_MINIMUM_WP_VER', '3.1');
46
 
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
- define('SU_VERSION', '6.5.2');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/6.5.2');
54
 
55
  /********** INCLUDES **********/
56
 
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
+ Version: 6.6
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
+ * @version 6.6
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
42
  /********** CONSTANTS **********/
43
 
44
  //The minimum version of WordPress required
45
+ define('SU_MINIMUM_WP_VER', '3.1.3');
46
 
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
+ define('SU_VERSION', '6.6');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/6.6');
54
 
55
  /********** INCLUDES **********/
56
 
seo-ultimate.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: SEO Ultimate 6.5\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
- "POT-Creation-Date: 2011-07-09 15:14:31+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,431 +19,452 @@ msgid ""
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
- #. #-#-#-#-# plugin.pot (SEO Ultimate 6.5) #-#-#-#-#
23
- #. Plugin Name of the plugin/theme
24
- #: plugin/class.seo-ultimate.php:767 modules/settings/settings.php:14
25
- msgid "SEO Ultimate"
26
  msgstr ""
27
 
28
- #: plugin/class.seo-ultimate.php:767
29
- msgid "SEO"
 
 
30
  msgstr ""
31
 
32
- #: plugin/class.seo-ultimate.php:956
33
- msgid ""
34
- "It looks like you made changes to the settings of this SEO Ultimate module. "
35
- "If you leave before saving, those changes will be lost."
36
  msgstr ""
37
 
38
- #: plugin/class.seo-ultimate.php:1050
39
- msgid "SEO Settings Help"
40
  msgstr ""
41
 
42
- #: plugin/class.seo-ultimate.php:1052
43
- msgid "The SEO Settings box lets you customize these settings:"
44
  msgstr ""
45
 
46
- #: plugin/class.seo-ultimate.php:1054
47
- msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
48
  msgstr ""
49
 
50
- #: plugin/class.seo-ultimate.php:1109
51
- msgid ""
52
- "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
53
- "1$s to avoid plugin conflicts."
54
  msgstr ""
55
 
56
- #: plugin/class.seo-ultimate.php:1151
57
- msgid "new module"
58
  msgstr ""
59
 
60
- #: plugin/class.seo-ultimate.php:1151
61
- msgid "new modules"
62
  msgstr ""
63
 
64
- #: plugin/class.seo-ultimate.php:1152
65
- msgid "new feature"
66
  msgstr ""
67
 
68
- #: plugin/class.seo-ultimate.php:1152
69
- msgid "new features"
70
  msgstr ""
71
 
72
- #: plugin/class.seo-ultimate.php:1153
73
- msgid "bugfix"
74
  msgstr ""
75
 
76
- #: plugin/class.seo-ultimate.php:1153
77
- msgid "bugfixes"
78
  msgstr ""
79
 
80
- #: plugin/class.seo-ultimate.php:1154
81
- msgid "improvement"
82
  msgstr ""
83
 
84
- #: plugin/class.seo-ultimate.php:1154
85
- msgid "improvements"
 
 
86
  msgstr ""
87
 
88
- #: plugin/class.seo-ultimate.php:1155
89
- msgid "security fix"
90
  msgstr ""
91
 
92
- #: plugin/class.seo-ultimate.php:1155
93
- msgid "security fixes"
 
94
  msgstr ""
95
 
96
- #: plugin/class.seo-ultimate.php:1186
97
- msgid "%d %s"
98
  msgstr ""
99
 
100
- #: plugin/class.seo-ultimate.php:1192
101
- msgid "Upgrade now to get %s. %s."
102
  msgstr ""
103
 
104
- #: plugin/class.seo-ultimate.php:1194
105
- msgid "View changelog"
106
  msgstr ""
107
 
108
- #: plugin/class.seo-ultimate.php:1250 modules/settings/uninstall.php:18
109
- msgid "Uninstall"
110
  msgstr ""
111
 
112
- #: plugin/class.seo-ultimate.php:1270
113
- msgid "Active Modules: "
114
  msgstr ""
115
 
116
- #: plugin/class.seo-ultimate.php:1331
117
  msgid ""
118
- "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
119
- "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
120
- "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
121
- "to everyone."
122
  msgstr ""
123
 
124
- #: plugin/class.seo-ultimate.php:1453
125
- msgid "SEO Settings"
126
  msgstr ""
127
 
128
- #: plugin/class.seo-ultimate.php:1671
129
- msgid "Home"
 
 
 
130
  msgstr ""
131
 
132
- #: plugin/class.seo-ultimate.php:1672 modules/class.su-module.php:2585
133
- #: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:34
134
- msgid "Blog Homepage"
135
  msgstr ""
136
 
137
- #: plugin/class.seo-ultimate.php:1740
138
- msgid "Author Archives"
139
  msgstr ""
140
 
141
- #: plugin/class.seo-ultimate.php:1746 modules/class.su-module.php:2589
142
- msgid "Author"
143
  msgstr ""
144
 
145
- #: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
146
- msgid "%s and %s"
147
  msgstr ""
148
 
149
- #: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
150
- msgid ", "
 
 
151
  msgstr ""
152
 
153
- #: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
154
- msgid "%s, and %s"
155
  msgstr ""
156
 
157
- #: plugin/class.su-installer.php:9
158
- msgid "Package not available."
159
  msgstr ""
160
 
161
- #: plugin/class.su-installer.php:12
162
- msgid "Removing the current version of the plugin&#8230;"
163
  msgstr ""
164
 
165
- #: plugin/class.su-installer.php:13
166
- msgid "Could not remove the current version of the plugin."
 
 
167
  msgstr ""
168
 
169
- #: plugin/class.su-installer.php:17
170
- msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
171
  msgstr ""
172
 
173
- #: plugin/class.su-installer.php:18
174
- msgid "Unpacking the downgrade&#8230;"
175
  msgstr ""
176
 
177
- #: plugin/class.su-installer.php:19
178
- msgid "Installing the downgrade&#8230;"
179
  msgstr ""
180
 
181
- #: plugin/class.su-installer.php:20
182
- msgid "Plugin downgrade failed."
183
  msgstr ""
184
 
185
- #: plugin/class.su-installer.php:21
186
- msgid "Plugin downgraded successfully."
187
  msgstr ""
188
 
189
- #: plugin/class.su-installer.php:24
190
- msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
  msgstr ""
192
 
193
- #: plugin/class.su-installer.php:25
194
- msgid "Unpacking the reinstall&#8230;"
 
 
195
  msgstr ""
196
 
197
- #: plugin/class.su-installer.php:26
198
- msgid "Reinstalling the current version&#8230;"
199
  msgstr ""
200
 
201
- #: plugin/class.su-installer.php:27
202
- msgid "Plugin reinstallation failed."
203
  msgstr ""
204
 
205
- #: plugin/class.su-installer.php:28
206
- msgid "Plugin reinstalled successfully."
207
  msgstr ""
208
 
209
- #: plugin/class.su-installer.php:32
210
- msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
211
  msgstr ""
212
 
213
- #: plugin/class.su-installer.php:33
214
- msgid "Unpacking the upgrade&#8230;"
215
  msgstr ""
216
 
217
- #: plugin/class.su-installer.php:34
218
- msgid "Installing the upgrade&#8230;"
 
219
  msgstr ""
220
 
221
- #: plugin/class.su-installer.php:35
222
- msgid "Plugin upgrade failed."
223
  msgstr ""
224
 
225
- #: plugin/class.su-installer.php:36
226
- msgid "Plugin upgraded successfully."
227
  msgstr ""
228
 
229
- #: modules/more-links/more-links.php:12
230
- msgid "More Link Customizer"
231
  msgstr ""
232
 
233
- #: modules/more-links/more-links.php:30
234
- msgid "Default More Link Text"
235
  msgstr ""
236
 
237
- #: modules/more-links/more-links.php:51
238
- msgid "More Link Text:"
 
239
  msgstr ""
240
 
241
- #: modules/misc/misc.php:11
242
- msgid "Miscellaneous"
243
  msgstr ""
244
 
245
- #: modules/misc/misc.php:14
246
- msgid ""
247
- "The Miscellaneous page contains modules that don&#8217;t have enough "
248
- "settings to warrant their own separate admin pages."
249
  msgstr ""
250
 
251
- #: modules/sds-blog/sds-blog.php:12
252
- msgid "Whitepapers"
253
  msgstr ""
254
 
255
- #: modules/sds-blog/sds-blog.php:13
256
- msgid "SEO Design Solutions Whitepapers"
257
  msgstr ""
258
 
259
- #. #-#-#-#-# plugin.pot (SEO Ultimate 6.5) #-#-#-#-#
260
- #. Author of the plugin/theme
261
- #: modules/sds-blog/sds-blog.php:49
262
- msgid "SEO Design Solutions"
263
  msgstr ""
264
 
265
- #: modules/sds-blog/sds-blog.php:50
266
- msgid ""
267
- "The search engine optimization articles below are loaded from the website of "
268
- "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
269
- "an article&#8217;s title to read it."
270
  msgstr ""
271
 
272
- #: modules/linkbox/linkbox.php:12
273
- msgid "Linkbox Inserter"
274
  msgstr ""
275
 
276
- #: modules/linkbox/linkbox.php:18
277
- msgid "Link to this post!"
278
  msgstr ""
279
 
280
- #: modules/linkbox/linkbox.php:45
281
- msgid "At the end of posts"
282
  msgstr ""
283
 
284
- #: modules/linkbox/linkbox.php:46
285
- msgid "At the end of pages"
286
  msgstr ""
287
 
288
- #: modules/linkbox/linkbox.php:47
289
- msgid "When called by the su_linkbox hook"
290
  msgstr ""
291
 
292
- #: modules/linkbox/linkbox.php:48
293
- msgid "Display linkboxes..."
294
  msgstr ""
295
 
296
- #: modules/linkbox/linkbox.php:49
297
- msgid "Linkbox HTML"
298
  msgstr ""
299
 
300
- #: modules/import-aiosp/import-aiosp.php:12
301
- msgid "Import from All in One SEO Pack"
302
  msgstr ""
303
 
304
- #: modules/import-aiosp/import-aiosp.php:13
305
- msgid "AIOSP Import"
306
  msgstr ""
307
 
308
- #: modules/import-aiosp/import-aiosp.php:15
309
- msgid "All in One SEO Pack"
310
  msgstr ""
311
 
312
- #: modules/import-aiosp/import-aiosp.php:16
313
- msgid "AIOSP"
314
  msgstr ""
315
 
316
- #: modules/import-aiosp/import-aiosp.php:17
317
- msgid "Import post data (custom title tags and meta tags)."
318
  msgstr ""
319
 
320
- #: modules/import-aiosp/import-aiosp.php:21
321
- msgid ""
322
- "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
323
- "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
324
- "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
325
- "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
326
- "to be currently installed or activated for the import to take place."
327
  msgstr ""
328
 
329
- #: modules/import-aiosp/import-aiosp.php:23
330
- msgid ""
331
- "The import tool can only move over data from AIOSP version 1.6 or above. If "
332
- "you use an older version of AIOSP, you should update to the latest version "
333
- "first and run AIOSP&#8217;s upgrade process."
334
  msgstr ""
335
 
336
- #: modules/class.su-importmodule.php:49
337
- msgid "Import Post Fields"
 
338
  msgstr ""
339
 
340
- #: modules/class.su-importmodule.php:50
341
- msgid ""
342
- "Post fields store the SEO data for your posts/pages (i.e. your custom title "
343
- "tags, meta descriptions, and meta keywords). If you provided custom titles/"
344
- "descriptions/keywords to %s, this importer can move that data over to SEO "
345
- "Ultimate."
346
  msgstr ""
347
 
348
- #: modules/class.su-importmodule.php:53
349
- msgid "Conflict Resolution Mode"
350
  msgstr ""
351
 
352
- #: modules/class.su-importmodule.php:54
353
  msgid ""
354
- "What should the import tool do if it tries to move over a post&#8217;s %s "
355
- "data, but different data already exists in the corresponding SEO Ultimate "
356
- "fields?"
357
  msgstr ""
358
 
359
- #: modules/class.su-importmodule.php:56
360
- msgid "Skip that post and leave all data as-is (default)."
361
  msgstr ""
362
 
363
- #: modules/class.su-importmodule.php:57
364
- msgid "Delete the SEO Ultimate data and replace it with the %s data."
365
  msgstr ""
366
 
367
- #: modules/class.su-importmodule.php:58
368
- msgid "Keep the SEO Ultimate data and delete the %s data."
369
  msgstr ""
370
 
371
- #: modules/class.su-importmodule.php:61
372
- msgid "Deletion Preference"
373
  msgstr ""
374
 
375
- #: modules/class.su-importmodule.php:62
 
 
 
 
376
  msgid ""
377
- "When the migration tool successfully copies a post&#8217;s %1$s data over to "
378
- "SEO Ultimate, what should it do with the old %1$s data?"
 
379
  msgstr ""
380
 
381
- #: modules/class.su-importmodule.php:64
382
- msgid "Delete the %s data."
383
  msgstr ""
384
 
385
- #: modules/class.su-importmodule.php:65
386
- msgid "Leave behind the duplicate %s data (default)."
387
  msgstr ""
388
 
389
- #: modules/class.su-importmodule.php:72
390
- msgid "Import Now"
391
  msgstr ""
392
 
393
- #: modules/class.su-importmodule.php:75
394
- msgid ""
395
- "The import cannot be undone. It is your responsibility to <a href=\"%s\" "
396
- "target=\"_blank\">backup your database</a> before proceeding!"
397
  msgstr ""
398
 
399
- #: modules/class.su-importmodule.php:84
400
- msgid "Import complete."
401
  msgstr ""
402
 
403
- #: modules/class.su-importmodule.php:90
404
- msgid "Return to import page"
405
  msgstr ""
406
 
407
- #: modules/class.su-importmodule.php:93
408
- msgid "Return to settings page"
409
  msgstr ""
410
 
411
- #: modules/class.su-importmodule.php:96
412
- msgid "Return to SEO page"
413
  msgstr ""
414
 
415
- #: modules/class.su-importmodule.php:116
416
- msgid "Deactivated %s."
417
  msgstr ""
418
 
419
- #: modules/class.su-importmodule.php:174
420
- msgid "Imported a total of %d fields for one post/page/revision."
421
- msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
422
- msgstr[0] ""
423
- msgstr[1] ""
424
 
425
- #: modules/class.su-importmodule.php:180
426
- msgid "Skipped one post with disabled %2$s data."
427
- msgid_plural "Skipped %1$d posts with disabled %2$s data."
428
- msgstr[0] ""
429
- msgstr[1] ""
430
 
431
- #: modules/class.su-importmodule.php:186
432
  msgid ""
433
- "Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
434
- "settings you chose."
435
- msgid_plural ""
436
- "Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
437
- "settings you chose."
438
- msgstr[0] ""
439
- msgstr[1] ""
440
 
441
- #: modules/class.su-importmodule.php:192
442
- msgid "Deleted one %2$s field, as instructed by the settings you chose."
443
- msgid_plural ""
444
- "Deleted %1$d %2$s fields, as instructed by the settings you chose."
445
- msgstr[0] ""
446
- msgstr[1] ""
 
447
 
448
  #: modules/titles/titles.php:12
449
  msgid "Title Tag Rewriter"
@@ -545,273 +566,221 @@ msgstr ""
545
  #: modules/titles/titles.php:76
546
  msgid "Month Archive Title Format"
547
  msgstr ""
548
-
549
- #: modules/titles/titles.php:77
550
- msgid "Year Archive Title Format"
551
- msgstr ""
552
-
553
- #: modules/titles/titles.php:78
554
- msgid "Author Archive Title Format"
555
- msgstr ""
556
-
557
- #: modules/titles/titles.php:79
558
- msgid "Search Title Format"
559
- msgstr ""
560
-
561
- #: modules/titles/titles.php:80
562
- msgid "404 Title Format"
563
- msgstr ""
564
-
565
- #: modules/titles/titles.php:81
566
- msgid "Pagination Title Format"
567
- msgstr ""
568
-
569
- #: modules/titles/titles.php:307
570
- msgid "Title Tag:"
571
- msgstr ""
572
-
573
- #: modules/titles/titles.php:312
574
- msgid ""
575
- "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
576
- "tag. The title appears in visitors&#8217; title bars and in search engine "
577
- "result titles. If this box is left blank, then the <a href=\"admin.php?"
578
- "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
579
- msgstr ""
580
-
581
- #: modules/class.su-module.php:375
582
- msgid ""
583
- "(Note: This translated documentation was designed for an older version of "
584
- "SEO Ultimate and may be outdated.)"
585
- msgstr ""
586
-
587
- #: modules/class.su-module.php:658
588
- msgid ""
589
- "All the modules on this page have been disabled. You can re-enable them "
590
- "using the <a href=\"%s\">Module Manager</a>."
591
- msgstr ""
592
-
593
- #: modules/class.su-module.php:1015
594
- msgctxt "Dropdown Title"
595
- msgid "%s &mdash; %s"
596
- msgstr ""
597
-
598
- #: modules/class.su-module.php:1043
599
- msgid "%1$s | %2$s %3$s by %4$s"
600
- msgstr ""
601
-
602
- #: modules/class.su-module.php:1122
603
- msgid "Your site currently doesn&#8217;t have any public items of this type."
604
- msgstr ""
605
-
606
- #: modules/class.su-module.php:1206
607
- msgid "&laquo;"
608
  msgstr ""
609
 
610
- #: modules/class.su-module.php:1207
611
- msgid "&raquo;"
612
  msgstr ""
613
 
614
- #: modules/class.su-module.php:1214
615
- msgid "Displaying %s&#8211;%s of %s"
616
  msgstr ""
617
 
618
- #: modules/class.su-module.php:1227 modules/404s/fofs-log.php:113
619
- msgid "Actions"
620
  msgstr ""
621
 
622
- #: modules/class.su-module.php:1228
623
- msgid "ID"
624
  msgstr ""
625
 
626
- #: modules/class.su-module.php:1262
627
- msgid "View"
628
  msgstr ""
629
 
630
- #: modules/class.su-module.php:1264
631
- msgid "Edit"
 
 
 
 
632
  msgstr ""
633
 
634
- #: modules/class.su-module.php:1427
635
- msgid "Settings updated."
636
  msgstr ""
637
 
638
- #: modules/class.su-module.php:1448
639
- msgid "Save Changes"
640
  msgstr ""
641
 
642
- #: modules/class.su-module.php:1959
643
  msgid ""
644
- "Are you sure you want to replace the textbox contents with this default "
645
- "value?"
646
  msgstr ""
647
 
648
- #: modules/class.su-module.php:1975 modules/settings/settings-data.php:23
649
- msgid "Reset"
650
  msgstr ""
651
 
652
- #: modules/class.su-module.php:2609
653
- msgid "Type a URL or start typing the name of the item you want to link to"
654
  msgstr ""
655
 
656
- #: modules/class.su-module.php:2621
657
- msgid "Remove this destination"
658
  msgstr ""
659
 
660
- #: modules/class.su-module.php:2621
661
- msgid "X"
662
  msgstr ""
663
 
664
- #: modules/noindex/noindex.php:12
665
- msgid "Noindex Manager"
666
  msgstr ""
667
 
668
- #: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
669
- #: modules/noindex/noindex.php:67
670
- msgid "Noindex"
671
  msgstr ""
672
 
673
- #: modules/noindex/noindex.php:43 modules/meta/meta-keywords.php:33
674
- msgid "Default Values"
675
  msgstr ""
676
 
677
- #: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
678
- #: modules/autolinks/footer-autolinks.php:218
679
- #: modules/autolinks/content-autolinks.php:293
680
- msgid "Nofollow"
681
  msgstr ""
682
 
683
- #: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
684
- msgid "Use default"
685
  msgstr ""
686
 
687
- #: modules/noindex/noindex.php:63
688
- msgid "noindex"
 
689
  msgstr ""
690
 
691
- #: modules/noindex/noindex.php:64
692
- msgid "index"
693
  msgstr ""
694
 
695
- #: modules/noindex/noindex.php:74
696
- msgid "nofollow"
697
  msgstr ""
698
 
699
- #: modules/noindex/noindex.php:75
700
- msgid "follow"
701
  msgstr ""
702
 
703
- #: modules/noindex/noindex.php:89
704
  msgid ""
705
- "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
706
- "block indexing of the entire site, regardless of which options are set below."
707
  msgstr ""
708
 
709
- #: modules/noindex/noindex.php:92
710
- msgid "Prevent indexing of..."
711
  msgstr ""
712
 
713
- #: modules/noindex/noindex.php:93
714
- msgid "Administration back-end pages"
715
  msgstr ""
716
 
717
- #: modules/noindex/noindex.php:94
718
- msgid "Author archives"
719
  msgstr ""
720
 
721
- #: modules/noindex/noindex.php:95
722
- msgid "Blog search pages"
 
723
  msgstr ""
724
 
725
- #: modules/noindex/noindex.php:96
726
- msgid "Category archives"
727
  msgstr ""
728
 
729
- #: modules/noindex/noindex.php:97
730
- msgid "Comment feeds"
 
731
  msgstr ""
732
 
733
- #: modules/noindex/noindex.php:98
734
- msgid "Comment subpages"
735
  msgstr ""
736
 
737
- #: modules/noindex/noindex.php:99
738
- msgid "Date-based archives"
739
  msgstr ""
740
 
741
- #: modules/noindex/noindex.php:100
742
- msgid "Subpages of the homepage"
743
  msgstr ""
744
 
745
- #: modules/noindex/noindex.php:101
746
- msgid "Tag archives"
747
  msgstr ""
748
 
749
- #: modules/noindex/noindex.php:102
750
- msgid "User login/registration pages"
751
  msgstr ""
752
 
753
- #: modules/noindex/noindex.php:165
754
- msgid "Noindex: Tell search engines not to index this webpage."
755
  msgstr ""
756
 
757
- #: modules/noindex/noindex.php:166
758
- msgid "Nofollow: Tell search engines not to spider links on this webpage."
759
  msgstr ""
760
 
761
- #: modules/noindex/noindex.php:167
762
- msgid "Meta Robots Tag:"
763
  msgstr ""
764
 
765
- #: modules/meta/meta-descriptions.php:12
766
- msgid "Meta Description Editor"
767
  msgstr ""
768
 
769
- #: modules/meta/meta-descriptions.php:13
770
- msgid "Meta Descriptions"
771
  msgstr ""
772
 
773
- #: modules/meta/meta-descriptions.php:31
774
- msgid "Meta Description"
775
  msgstr ""
776
 
777
- #: modules/meta/meta-descriptions.php:48
778
- msgid "Post Description Format"
779
  msgstr ""
780
 
781
- #: modules/meta/meta-descriptions.php:49
782
- msgid "Category Description Format"
783
  msgstr ""
784
 
785
- #: modules/meta/meta-descriptions.php:50
786
- msgid "Post Tag Description Format"
787
  msgstr ""
788
 
789
- #: modules/meta/meta-descriptions.php:57
790
- msgid "Blog Homepage Meta Description"
791
  msgstr ""
792
 
793
- #: modules/meta/meta-descriptions.php:59
794
- msgid "Use this blog&#8217s tagline as the default homepage description."
795
  msgstr ""
796
 
797
- #: modules/meta/meta-descriptions.php:60
798
- msgid "Default Value"
799
  msgstr ""
800
 
801
- #: modules/meta/meta-descriptions.php:122
802
- msgid "Meta Description:"
803
  msgstr ""
804
 
805
- #: modules/meta/meta-descriptions.php:125
806
- msgid "You&#8217;ve entered %s characters. Most search engines use up to 140."
807
  msgstr ""
808
 
809
- #: modules/meta/meta-descriptions.php:133
810
- msgid ""
811
- "<strong>Description</strong> &mdash; The value of the meta description tag. "
812
- "The description will often appear underneath the title in search engine "
813
- "results. Writing an accurate, attention-grabbing description for every post "
814
- "is important to ensuring a good search results clickthrough rate."
815
  msgstr ""
816
 
817
  #: modules/meta/meta-keywords.php:12
@@ -822,6 +791,10 @@ msgstr ""
822
  msgid "Meta Keywords"
823
  msgstr ""
824
 
 
 
 
 
825
  #: modules/meta/meta-keywords.php:56
826
  msgid "The %d most commonly-used words"
827
  msgstr ""
@@ -878,346 +851,369 @@ msgstr ""
878
  msgid "Meta Robot Tags"
879
  msgstr ""
880
 
881
- #: modules/meta/meta-robots.php:21
882
  msgid "Global"
883
  msgstr ""
884
 
885
- #: modules/meta/meta-robots.php:26
886
  msgid "Spider Instructions"
887
  msgstr ""
888
 
889
- #: modules/meta/meta-robots.php:28
890
  msgid ""
891
  "Don&#8217t use this site&#8217s Open Directory description in search results."
892
  msgstr ""
893
 
894
- #: modules/meta/meta-robots.php:29
895
  msgid ""
896
  "Don&#8217t use this site&#8217s Yahoo! Directory description in search "
897
  "results."
898
  msgstr ""
899
 
900
- #: modules/meta/meta-robots.php:30
901
  msgid "Don&#8217t cache or archive this site."
902
  msgstr ""
903
 
904
- #: modules/canonical/canonical.php:12
905
- msgid "Canonicalizer"
906
  msgstr ""
907
 
908
- #: modules/canonical/canonical.php:39
909
- msgid ""
910
- "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> meta tags."
911
  msgstr ""
912
 
913
- #: modules/canonical/canonical.php:40
914
- msgid "Send <code>rel=&quot;canonical&quot;</code> HTTP headers."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
915
  msgstr ""
916
 
917
- #: modules/canonical/canonical.php:41
918
- msgid "Redirect requests for nonexistent pagination."
919
  msgstr ""
920
 
921
- #: modules/link-nofollow/link-nofollow.php:12
922
- msgid "Nofollow Manager"
923
  msgstr ""
924
 
925
- #: modules/link-nofollow/link-nofollow.php:53
926
- msgid "Add the nofollow attribute to..."
927
  msgstr ""
928
 
929
- #: modules/link-nofollow/link-nofollow.php:55
930
- msgid "Adjacent post links"
931
  msgstr ""
932
 
933
- #: modules/link-nofollow/link-nofollow.php:56
934
- msgid "Category links (after posts)"
 
 
 
 
935
  msgstr ""
936
 
937
- #: modules/link-nofollow/link-nofollow.php:57
938
- msgid "Category links (in lists)"
939
  msgstr ""
940
 
941
- #: modules/link-nofollow/link-nofollow.php:58
942
- msgid "Comment anchor links"
943
  msgstr ""
944
 
945
- #: modules/link-nofollow/link-nofollow.php:59
946
- msgid "Comment feed links"
947
  msgstr ""
948
 
949
- #: modules/link-nofollow/link-nofollow.php:60
950
- msgid "Date-based archive links"
951
  msgstr ""
952
 
953
- #: modules/link-nofollow/link-nofollow.php:61
954
- msgid "Pagination navigation links (all)"
955
  msgstr ""
956
 
957
- #: modules/link-nofollow/link-nofollow.php:62
958
- msgid "Pagination navigation links (on blog home only)"
 
 
 
 
 
959
  msgstr ""
960
 
961
- #: modules/link-nofollow/link-nofollow.php:63
962
- msgid "&#8220;Read more&#8221; links"
 
 
 
963
  msgstr ""
964
 
965
- #: modules/link-nofollow/link-nofollow.php:64
966
- msgid "Registration link"
967
  msgstr ""
968
 
969
- #: modules/link-nofollow/link-nofollow.php:65
970
- msgid "Login link"
971
  msgstr ""
972
 
973
- #: modules/link-nofollow/link-nofollow.php:66
974
- msgid "Tag links (after posts)"
 
 
975
  msgstr ""
976
 
977
- #: modules/link-nofollow/link-nofollow.php:67
978
- msgid "Tag links (in lists and clouds)"
 
 
 
979
  msgstr ""
980
 
981
- #: modules/link-nofollow/link-nofollow.php:76
982
- msgid "When displaying page lists, nofollow links to this page"
983
  msgstr ""
984
 
985
- #: modules/link-nofollow/link-nofollow.php:76
986
- msgid "Nofollow:"
987
  msgstr ""
988
 
989
- #: modules/competition-queries/competition-queries.php:12
990
- msgid "Competition Researcher"
 
 
 
 
 
991
  msgstr ""
992
 
993
- #: modules/competition-queries/competition-queries.php:13
994
- msgid "Comp. Researcher"
 
 
995
  msgstr ""
996
 
997
- #: modules/competition-queries/competition-queries.php:17
998
- msgid ""
999
- "The Competition Researcher provides you with easy access to various search "
1000
- "engine tools which you can use to research multiple search queries or URLs."
1001
  msgstr ""
1002
 
1003
- #: modules/competition-queries/competition-queries.php:21
1004
- msgid "Step 1: Choose Your Research Tool"
1005
  msgstr ""
1006
 
1007
- #: modules/competition-queries/competition-queries.php:25
1008
- msgid "Keywords"
1009
  msgstr ""
1010
 
1011
- #: modules/competition-queries/competition-queries.php:25
1012
- msgid "Normal Search"
1013
  msgstr ""
1014
 
1015
- #: modules/competition-queries/competition-queries.php:25
1016
- msgid "Find out how many pages contain the words in each query"
1017
  msgstr ""
1018
 
1019
- #: modules/competition-queries/competition-queries.php:26
1020
- msgid "Phrase Match"
1021
  msgstr ""
1022
 
1023
- #: modules/competition-queries/competition-queries.php:26
1024
- msgid ""
1025
- "Find out how many &#8220;actual&#8221; pages are competing for each query"
1026
  msgstr ""
1027
 
1028
- #: modules/competition-queries/competition-queries.php:27
1029
- msgid "Allinanchor"
1030
  msgstr ""
1031
 
1032
- #: modules/competition-queries/competition-queries.php:27
1033
- msgid "Find out which sites have the most links for each query"
1034
  msgstr ""
1035
 
1036
- #: modules/competition-queries/competition-queries.php:28
1037
- msgid "Allintitle"
1038
  msgstr ""
1039
 
1040
- #: modules/competition-queries/competition-queries.php:28
1041
- msgid ""
1042
- "Find out which sites have the highest relevance in the title for each query"
1043
  msgstr ""
1044
 
1045
- #: modules/competition-queries/competition-queries.php:29
1046
- msgid "Allintext"
1047
  msgstr ""
1048
 
1049
- #: modules/competition-queries/competition-queries.php:29
1050
- msgid "Find out which sites have the most relevant content/text on their pages"
1051
  msgstr ""
1052
 
1053
- #: modules/competition-queries/competition-queries.php:30
1054
- msgid "Allinurl"
1055
  msgstr ""
1056
 
1057
- #: modules/competition-queries/competition-queries.php:30
1058
- msgid ""
1059
- "Find out which sites have the most relevant naming conventions for each "
1060
- "keyword"
1061
  msgstr ""
1062
 
1063
- #: modules/competition-queries/competition-queries.php:32
1064
- msgid "URLs"
1065
  msgstr ""
1066
 
1067
- #: modules/competition-queries/competition-queries.php:32
1068
- msgid "Site"
1069
  msgstr ""
1070
 
1071
- #: modules/competition-queries/competition-queries.php:32
1072
- msgid "Find out how many pages are indexed for each domain"
1073
  msgstr ""
1074
 
1075
- #: modules/competition-queries/competition-queries.php:33
1076
- #: modules/competition-queries/competition-queries.php:38
1077
- msgid "Inbound Links"
1078
  msgstr ""
1079
 
1080
- #: modules/competition-queries/competition-queries.php:33
1081
- msgid "Find out how many sites link to the domains"
1082
  msgstr ""
1083
 
1084
- #: modules/competition-queries/competition-queries.php:34
1085
- #: modules/competition-queries/competition-queries.php:38
1086
- msgid "Outbound Links"
1087
  msgstr ""
1088
 
1089
- #: modules/competition-queries/competition-queries.php:34
1090
- msgid "Find out how many sites the domains link to"
1091
  msgstr ""
1092
 
1093
- #: modules/competition-queries/competition-queries.php:57
1094
- msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
1095
  msgstr ""
1096
 
1097
- #: modules/competition-queries/competition-queries.php:59
1098
- msgid "(Type in one per line)"
1099
  msgstr ""
1100
 
1101
- #: modules/competition-queries/competition-queries.php:61
1102
- msgid "Step 3: Set Options and Submit"
1103
  msgstr ""
1104
 
1105
- #: modules/competition-queries/competition-queries.php:63
1106
- #: modules/site-keyword-queries/site-keyword-queries.php:28
1107
- msgid "Show 100 results per page"
1108
  msgstr ""
1109
 
1110
- #: modules/competition-queries/competition-queries.php:65
1111
- #: modules/site-keyword-queries/site-keyword-queries.php:30
1112
- msgid "Use Google&#8217;s minimal mode"
1113
  msgstr ""
1114
 
1115
- #: modules/competition-queries/competition-queries.php:71
1116
- #: modules/site-keyword-queries/site-keyword-queries.php:33
1117
- msgid "Submit"
 
1118
  msgstr ""
1119
 
1120
- #: modules/site-keyword-queries/site-keyword-queries.php:12
1121
- msgid "Internal Relevance Researcher"
1122
  msgstr ""
1123
 
1124
- #: modules/site-keyword-queries/site-keyword-queries.php:13
1125
- msgid "Int. Rel. Researcher"
1126
  msgstr ""
1127
 
1128
- #: modules/site-keyword-queries/site-keyword-queries.php:21
1129
- msgid "Step 1: Enter Keywords"
1130
  msgstr ""
1131
 
1132
- #: modules/site-keyword-queries/site-keyword-queries.php:23
1133
- msgid "(Type one keyword per line)"
1134
  msgstr ""
1135
 
1136
- #: modules/site-keyword-queries/site-keyword-queries.php:25
1137
- msgid "Step 2: Set Options and Submit"
1138
  msgstr ""
1139
 
1140
- #: modules/site-keyword-queries/site-keyword-queries.php:27
1141
- msgid "Put keywords in quotes"
1142
  msgstr ""
1143
 
1144
- #: modules/user-code/user-code.php:12
1145
- msgid "Code Inserter"
1146
  msgstr ""
1147
 
1148
- #: modules/user-code/user-code.php:27
1149
- msgid "Everywhere"
1150
  msgstr ""
1151
 
1152
- #: modules/user-code/user-code.php:34
1153
- msgid "&lt;head&gt; Tag"
1154
  msgstr ""
1155
 
1156
- #: modules/user-code/user-code.php:35
1157
- msgid "Before Item Content"
1158
  msgstr ""
1159
 
1160
- #: modules/user-code/user-code.php:36
1161
- msgid "After Item Content"
1162
  msgstr ""
1163
 
1164
- #: modules/user-code/user-code.php:37
1165
- msgid "Footer"
1166
  msgstr ""
1167
 
1168
- #: modules/user-code/user-code.php:51
1169
- msgid "Code Inserter module"
1170
  msgstr ""
1171
 
1172
- #: modules/modules/modules.php:12
1173
- msgid "Module Manager"
1174
  msgstr ""
1175
 
1176
- #: modules/modules/modules.php:13
1177
- msgid "Modules"
1178
  msgstr ""
1179
 
1180
- #: modules/modules/modules.php:41
1181
- msgid ""
1182
- "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
1183
- "&#8221; By default, most of these modules are listed in the &#8220;"
1184
- "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
1185
- "you can view documentation by clicking the tabs in the upper-right-hand "
1186
- "corner of your administration screen."
1187
  msgstr ""
1188
 
1189
- #: modules/modules/modules.php:43
1190
- msgid ""
1191
- "The Module Manager lets you disable or hide modules you don&#8217;t use. "
1192
- "You can also silence modules from displaying bubble alerts on the menu."
1193
  msgstr ""
1194
 
1195
- #: modules/modules/modules.php:47
1196
- msgid "Modules updated."
1197
  msgstr ""
1198
 
1199
- #: modules/modules/modules.php:52
1200
- msgid "Status"
1201
  msgstr ""
1202
 
1203
- #: modules/modules/modules.php:53
1204
- msgid "Module"
1205
  msgstr ""
1206
 
1207
- #: modules/modules/modules.php:66
1208
- msgid "Enabled"
1209
  msgstr ""
1210
 
1211
- #: modules/modules/modules.php:67
1212
- msgid "Silenced"
1213
  msgstr ""
1214
 
1215
- #: modules/modules/modules.php:68
1216
- msgid "Hidden"
1217
  msgstr ""
1218
 
1219
- #: modules/modules/modules.php:69
1220
- msgid "Disabled"
1221
  msgstr ""
1222
 
1223
  #: modules/permalinks/permalinks.php:15
@@ -1238,6 +1234,16 @@ msgstr ""
1238
  msgid "Remove the URL bases of..."
1239
  msgstr ""
1240
 
 
 
 
 
 
 
 
 
 
 
1241
  #: modules/files/files.php:14
1242
  msgid "File Editor"
1243
  msgstr ""
@@ -1293,12 +1299,49 @@ msgid ""
1293
  "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1294
  msgstr ""
1295
 
1296
- #: modules/settings/settings.php:12
1297
- msgid "Plugin Settings"
1298
  msgstr ""
1299
 
1300
- #: modules/settings/settings.php:13
1301
- msgid "SEO Ultimate Plugin Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1302
  msgstr ""
1303
 
1304
  #: modules/settings/settings-data.php:16
@@ -1469,10 +1512,48 @@ msgstr ""
1469
  msgid "Restore Default Settings"
1470
  msgstr ""
1471
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1472
  #: modules/settings/uninstall.php:17
1473
  msgid "Uninstaller"
1474
  msgstr ""
1475
 
 
 
 
 
1476
  #: modules/settings/uninstall.php:27
1477
  msgid ""
1478
  "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
@@ -1509,26 +1590,6 @@ msgstr ""
1509
  msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1510
  msgstr ""
1511
 
1512
- #: modules/settings/global-settings.php:18
1513
- msgid "Global Settings"
1514
- msgstr ""
1515
-
1516
- #: modules/settings/global-settings.php:40
1517
- msgid "Enable nofollow&#8217;d attribution link"
1518
- msgstr ""
1519
-
1520
- #: modules/settings/global-settings.php:41
1521
- msgid "Enable attribution link CSS styling"
1522
- msgstr ""
1523
-
1524
- #: modules/settings/global-settings.php:42
1525
- msgid "Notify me about unnecessary active plugins"
1526
- msgstr ""
1527
-
1528
- #: modules/settings/global-settings.php:43
1529
- msgid "Insert comments around HTML code insertions"
1530
- msgstr ""
1531
-
1532
  #: modules/settings/install.php:18
1533
  msgid "Upgrade/Downgrade/Reinstall"
1534
  msgstr ""
@@ -1589,355 +1650,322 @@ msgstr ""
1589
  #: modules/settings/install.php:76
1590
  msgid ""
1591
  "There was an error retrieving the list of available versions. Please try "
1592
- "again later."
1593
- msgstr ""
1594
-
1595
- #: modules/settings/install.php:81
1596
- msgid ""
1597
- "To download and install a fresh copy of the SEO Ultimate version you are "
1598
- "currently using, click the &#8220;Reinstall&#8221; button below."
1599
- msgstr ""
1600
-
1601
- #: modules/settings/install.php:108
1602
- msgid "Your Current Version"
1603
- msgstr ""
1604
-
1605
- #: modules/settings/install.php:110
1606
- msgid "Latest Version"
1607
- msgstr ""
1608
-
1609
- #: modules/settings/install.php:130
1610
- msgid ""
1611
- "You do not have sufficient permissions to upgrade/downgrade plugins for this "
1612
- "blog."
1613
- msgstr ""
1614
-
1615
- #: modules/settings/install.php:140
1616
- msgid "Downgrade to SEO Ultimate %s"
1617
- msgstr ""
1618
-
1619
- #: modules/settings/install.php:143
1620
- msgid "Reinstall SEO Ultimate %s"
1621
- msgstr ""
1622
-
1623
- #: modules/settings/install.php:146
1624
- msgid "Upgrade to SEO Ultimate %s"
1625
- msgstr ""
1626
-
1627
- #: modules/404s/fofs.php:11
1628
- msgid "404 Monitor"
1629
- msgstr ""
1630
-
1631
- #: modules/404s/fofs-log.php:16
1632
- msgid "404 Monitor Log"
1633
- msgstr ""
1634
-
1635
- #: modules/404s/fofs-log.php:17
1636
- msgid "Log"
1637
- msgstr ""
1638
-
1639
- #: modules/404s/fofs-log.php:114
1640
- msgid "Hits"
1641
- msgstr ""
1642
-
1643
- #: modules/404s/fofs-log.php:115
1644
- msgid "URL with 404 Error"
1645
- msgstr ""
1646
-
1647
- #: modules/404s/fofs-log.php:116
1648
- msgid "Date of Most Recent Hit"
1649
- msgstr ""
1650
-
1651
- #: modules/404s/fofs-log.php:117
1652
- msgid "Referers"
1653
- msgstr ""
1654
-
1655
- #: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
1656
- msgid "User Agents"
1657
- msgstr ""
1658
-
1659
- #: modules/404s/fofs-log.php:134
1660
- msgid ""
1661
- "New 404 errors will not be recorded because 404 logging is disabled on the "
1662
- "Settings tab."
1663
  msgstr ""
1664
 
1665
- #: modules/404s/fofs-log.php:141
1666
- msgid "The log entry was successfully deleted."
 
 
1667
  msgstr ""
1668
 
1669
- #: modules/404s/fofs-log.php:143
1670
- msgid "This log entry has already been deleted."
1671
  msgstr ""
1672
 
1673
- #: modules/404s/fofs-log.php:152
1674
- msgid "The log was successfully cleared."
1675
  msgstr ""
1676
 
1677
- #: modules/404s/fofs-log.php:156
1678
- msgid "No 404 errors in the log."
 
 
1679
  msgstr ""
1680
 
1681
- #: modules/404s/fofs-log.php:180
1682
- msgid "Open URL in new window (will not be logged)"
1683
  msgstr ""
1684
 
1685
- #: modules/404s/fofs-log.php:181
1686
- msgid "Query Google for cached version of URL (opens in new window)"
1687
  msgstr ""
1688
 
1689
- #: modules/404s/fofs-log.php:182
1690
- msgid "Remove this URL from the log"
1691
  msgstr ""
1692
 
1693
- #: modules/404s/fofs-log.php:185
1694
- msgid "%s at %s"
1695
  msgstr ""
1696
 
1697
- #: modules/404s/fofs-log.php:189
1698
- msgid "View list of referring URLs"
1699
  msgstr ""
1700
 
1701
- #: modules/404s/fofs-log.php:190
1702
- msgid "View list of user agents"
1703
  msgstr ""
1704
 
1705
- #: modules/404s/fofs-log.php:200
1706
- msgid "Referring URLs"
1707
  msgstr ""
1708
 
1709
- #: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
1710
- msgid "Hide list"
1711
  msgstr ""
1712
 
1713
- #: modules/404s/fofs-log.php:252
1714
- msgid "Are you sure you want to delete all 404 log entries?"
1715
  msgstr ""
1716
 
1717
- #: modules/404s/fofs-log.php:254
1718
- msgid "Clear Log"
1719
  msgstr ""
1720
 
1721
- #: modules/404s/fofs-settings.php:16
1722
- msgid "404 Monitor Settings"
 
1723
  msgstr ""
1724
 
1725
- #: modules/404s/fofs-settings.php:37
1726
- msgid "Continue monitoring for new 404 errors"
 
 
1727
  msgstr ""
1728
 
1729
- #: modules/404s/fofs-settings.php:37
1730
- msgid "Monitoring Settings"
1731
  msgstr ""
1732
 
1733
- #: modules/404s/fofs-settings.php:39
1734
- msgid "Only log these types of 404 errors:"
1735
  msgstr ""
1736
 
1737
- #: modules/404s/fofs-settings.php:40
1738
- msgid "404s generated by search engine spiders"
1739
  msgstr ""
1740
 
1741
- #: modules/404s/fofs-settings.php:41
1742
- msgid "404s with referring URLs"
1743
  msgstr ""
1744
 
1745
- #: modules/404s/fofs-settings.php:42
1746
- msgid "Log Restrictions"
1747
  msgstr ""
1748
 
1749
- #: modules/404s/fofs-settings.php:43
1750
- msgid "Maximum Log Entries"
 
 
1751
  msgstr ""
1752
 
1753
- #: modules/404s/fofs-settings.php:44
1754
- msgid "URLs to Ignore"
1755
  msgstr ""
1756
 
1757
- #: modules/404s/fofs-settings.php:44
1758
- msgid "(Use * as wildcard)"
1759
  msgstr ""
1760
 
1761
- #: modules/slugs/slugs.php:12
1762
- msgid "Slug Optimizer"
1763
  msgstr ""
1764
 
1765
- #: modules/slugs/slugs.php:16
1766
- msgid "Words to Remove"
1767
  msgstr ""
1768
 
1769
- #: modules/internal-link-aliases/internal-link-aliases.php:20
1770
- msgid "Link Mask Generator"
1771
  msgstr ""
1772
 
1773
- #: modules/internal-link-aliases/internal-link-aliases.php:27
1774
- msgid "Alias Directory"
1775
  msgstr ""
1776
 
1777
- #: modules/internal-link-aliases/internal-link-aliases.php:29
1778
- msgid "Nofollow aliased links"
1779
  msgstr ""
1780
 
1781
- #: modules/internal-link-aliases/internal-link-aliases.php:29
1782
- msgid "Link Attributes"
1783
  msgstr ""
1784
 
1785
- #: modules/internal-link-aliases/internal-link-aliases.php:49
1786
- msgid "Link Masks:"
1787
  msgstr ""
1788
 
1789
- #: modules/internal-link-aliases/internal-link-aliases.php:52
1790
- msgid "URL"
1791
  msgstr ""
1792
 
1793
- #: modules/internal-link-aliases/internal-link-aliases.php:52
1794
- msgid "Mask URL"
1795
  msgstr ""
1796
 
1797
- #: modules/internal-link-aliases/internal-link-aliases.php:83
1798
- msgid ""
1799
- "You can stop search engines from following a link by typing in a mask for "
1800
- "its URL."
1801
  msgstr ""
1802
 
1803
- #: modules/internal-link-aliases/internal-link-aliases.php:160
1804
- msgid "Added by Link Alias Generator (LAG) module"
1805
  msgstr ""
1806
 
1807
- #: modules/internal-link-aliases/internal-link-aliases.php:171
1808
- msgid "End LAG"
1809
  msgstr ""
1810
 
1811
- #: modules/rich-snippets/rich-snippets.php:12
1812
- msgid "Rich Snippet Creator"
1813
  msgstr ""
1814
 
1815
- #: modules/rich-snippets/rich-snippets.php:17
1816
  msgid ""
1817
- "Reviews\n"
1818
- "Review"
 
 
 
 
1819
  msgstr ""
1820
 
1821
- #: modules/rich-snippets/rich-snippets.php:28
1822
- msgid "Data Format"
1823
  msgstr ""
1824
 
1825
- #: modules/rich-snippets/rich-snippets.php:29
1826
- msgid "Categories/Tags That Indicate Reviews"
1827
  msgstr ""
1828
 
1829
- #: modules/rich-snippets/rich-snippets.php:37
1830
- msgid "Microformats (recommended)"
 
 
 
1831
  msgstr ""
1832
 
1833
- #: modules/rich-snippets/rich-snippets.php:43
1834
- msgid "HTML5 Microdata"
 
1835
  msgstr ""
1836
 
1837
- #: modules/rich-snippets/rich-snippets.php:49
1838
- msgid "RDFa"
 
1839
  msgstr ""
1840
 
1841
- #: modules/rich-snippets/rich-snippets.php:62
1842
- #: modules/rich-snippets/rich-snippets.php:224
1843
- msgid "Review"
1844
  msgstr ""
1845
 
1846
- #: modules/rich-snippets/rich-snippets.php:70
1847
- msgid "Item Reviewed"
 
1848
  msgstr ""
1849
 
1850
- #: modules/rich-snippets/rich-snippets.php:78
1851
- msgid "Star Rating"
 
1852
  msgstr ""
1853
 
1854
- #: modules/rich-snippets/rich-snippets.php:83
1855
- msgid "Review Author"
 
1856
  msgstr ""
1857
 
1858
- #: modules/rich-snippets/rich-snippets.php:89
1859
- msgid "Date Reviewed"
 
1860
  msgstr ""
1861
 
1862
- #: modules/rich-snippets/rich-snippets.php:223
1863
- #: modules/rich-snippets/rich-snippets.php:232
1864
- msgid "None"
1865
  msgstr ""
1866
 
1867
- #: modules/rich-snippets/rich-snippets.php:225
1868
- msgid "Rich Snippet Type:"
1869
  msgstr ""
1870
 
1871
- #: modules/rich-snippets/rich-snippets.php:229
1872
- msgid "Name of Reviewed Item:"
1873
  msgstr ""
1874
 
1875
- #: modules/rich-snippets/rich-snippets.php:233
1876
- msgid "0.5 stars"
1877
  msgstr ""
1878
 
1879
- #: modules/rich-snippets/rich-snippets.php:234
1880
- msgid "1 star"
 
 
 
 
 
 
 
1881
  msgstr ""
1882
 
1883
- #: modules/rich-snippets/rich-snippets.php:235
1884
- msgid "1.5 stars"
1885
  msgstr ""
1886
 
1887
- #: modules/rich-snippets/rich-snippets.php:236
1888
- msgid "2 stars"
1889
  msgstr ""
1890
 
1891
- #: modules/rich-snippets/rich-snippets.php:237
1892
- msgid "2.5 stars"
 
 
 
 
1893
  msgstr ""
1894
 
1895
- #: modules/rich-snippets/rich-snippets.php:238
1896
- msgid "3 stars"
1897
  msgstr ""
1898
 
1899
- #: modules/rich-snippets/rich-snippets.php:239
1900
- msgid "3.5 stars"
 
 
1901
  msgstr ""
1902
 
1903
- #: modules/rich-snippets/rich-snippets.php:240
1904
- msgid "4 stars"
 
 
1905
  msgstr ""
1906
 
1907
- #: modules/rich-snippets/rich-snippets.php:241
1908
- msgid "4.5 stars"
1909
  msgstr ""
1910
 
1911
- #: modules/rich-snippets/rich-snippets.php:242
1912
- msgid "5 stars"
 
 
1913
  msgstr ""
1914
 
1915
- #: modules/rich-snippets/rich-snippets.php:243
1916
- msgid "Star Rating for Reviewed Item:"
1917
  msgstr ""
1918
 
1919
- #: modules/sharing-buttons/sharing-buttons.php:12
1920
- msgid "Sharing Facilitator"
1921
  msgstr ""
1922
 
1923
- #: modules/sharing-buttons/sharing-buttons.php:25
1924
- msgid "Bookmark and Share"
1925
  msgstr ""
1926
 
1927
- #: modules/sharing-buttons/sharing-buttons.php:39
1928
- msgid "Which provider would you like to use for your sharing buttons?"
1929
  msgstr ""
1930
 
1931
- #: modules/sharing-buttons/sharing-buttons.php:41
1932
- msgid "None; disable sharing buttons"
1933
  msgstr ""
1934
 
1935
- #: modules/sharing-buttons/sharing-buttons.php:42
1936
- msgid "Use the ShareThis button"
1937
  msgstr ""
1938
 
1939
- #: modules/sharing-buttons/sharing-buttons.php:43
1940
- msgid "Use the AddThis button"
1941
  msgstr ""
1942
 
1943
  #: modules/autolinks/footer-autolinks-settings.php:16
@@ -1964,170 +1992,192 @@ msgstr ""
1964
  msgid "Link Separator"
1965
  msgstr ""
1966
 
1967
- #: modules/autolinks/footer-autolinks.php:16
1968
- msgid "Footer Deeplink Juggernaut"
1969
  msgstr ""
1970
 
1971
- #: modules/autolinks/footer-autolinks.php:17
1972
- msgid "Footer Links"
1973
  msgstr ""
1974
 
1975
- #: modules/autolinks/footer-autolinks.php:133
1976
- #: modules/autolinks/content-autolinks.php:201
1977
- msgid ""
1978
- "The Content Links section of Deeplink Juggernaut lets you automatically link "
1979
- "a certain word or phrase in your post/page content to a URL you specify."
1980
  msgstr ""
1981
 
1982
- #: modules/autolinks/footer-autolinks.php:165
1983
- #: modules/autolinks/content-autolinks.php:252
1984
- msgid "Edit Existing Links"
1985
  msgstr ""
1986
 
1987
- #: modules/autolinks/footer-autolinks.php:169
1988
- #: modules/autolinks/content-autolinks.php:256
1989
- msgid "Add a New Link"
1990
  msgstr ""
1991
 
1992
- #: modules/autolinks/footer-autolinks.php:177
1993
- msgid "Link Location (optional)"
1994
  msgstr ""
1995
 
1996
- #: modules/autolinks/footer-autolinks.php:179
1997
- #: modules/autolinks/content-autolinks.php:264
1998
- msgid "Anchor Text"
1999
  msgstr ""
2000
 
2001
- #: modules/autolinks/footer-autolinks.php:180
2002
- #: modules/autolinks/content-autolinks.php:265
2003
- msgid "Destination"
2004
  msgstr ""
2005
 
2006
- #: modules/autolinks/footer-autolinks.php:181
2007
- #: modules/autolinks/content-autolinks.php:266
2008
- msgid "Title Attribute"
2009
  msgstr ""
2010
 
2011
- #: modules/autolinks/footer-autolinks.php:182
2012
- #: modules/autolinks/content-autolinks.php:267
2013
- msgid "Options"
2014
  msgstr ""
2015
 
2016
- #: modules/autolinks/footer-autolinks.php:184
2017
- #: modules/autolinks/content-autolinks.php:269
2018
- msgid "Delete"
2019
  msgstr ""
2020
 
2021
- #: modules/autolinks/footer-autolinks.php:205
2022
- msgid "Match child content"
2023
  msgstr ""
2024
 
2025
- #: modules/autolinks/footer-autolinks.php:207
2026
- msgid "Negative match"
2027
  msgstr ""
2028
 
2029
- #: modules/autolinks/footer-autolinks.php:220
2030
- #: modules/autolinks/content-autolinks.php:295
2031
- msgid "New window"
2032
  msgstr ""
2033
 
2034
- #: modules/autolinks/autolinks.php:11
2035
- msgid "Deeplink Juggernaut"
2036
  msgstr ""
2037
 
2038
- #: modules/autolinks/autolinks.php:18
2039
- msgid ""
2040
- "Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
2041
- "(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
2042
- "WordPress 3.2.) If you aren&#8217;t sure how to upgrade PHP, please ask your "
2043
- "webhost. In the meantime, you can return to an older version of Deeplink "
2044
- "Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
2045
- "a> to SEO Ultimate 5.9."
2046
  msgstr ""
2047
 
2048
- #: modules/autolinks/content-autolinks-settings.php:16
2049
- msgid "Content Deeplink Juggernaut Settings"
2050
  msgstr ""
2051
 
2052
- #: modules/autolinks/content-autolinks-settings.php:17
2053
- msgid "Content Link Settings"
2054
  msgstr ""
2055
 
2056
- #: modules/autolinks/content-autolinks-settings.php:32
2057
- msgid "Allow posts to link to themselves."
2058
  msgstr ""
2059
 
2060
- #: modules/autolinks/content-autolinks-settings.php:32
2061
- msgid "Self-Linking"
2062
  msgstr ""
2063
 
2064
- #: modules/autolinks/content-autolinks-settings.php:35
2065
- msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
2066
  msgstr ""
2067
 
2068
- #: modules/autolinks/content-autolinks-settings.php:36
2069
- msgid ""
2070
- "Don&#8217;t link the same anchor text any more than %d times per post/page/"
2071
- "etc."
2072
  msgstr ""
2073
 
2074
- #: modules/autolinks/content-autolinks-settings.php:37
2075
  msgid ""
2076
- "Don&#8217;t link the same anchor text any more than %d times across my "
2077
- "entire site."
2078
  msgstr ""
2079
 
2080
- #: modules/autolinks/content-autolinks-settings.php:38
2081
- msgid "Quantity Restrictions"
2082
  msgstr ""
2083
 
2084
- #: modules/autolinks/content-autolinks-settings.php:40
 
 
 
 
 
 
 
 
2085
  msgid ""
2086
- "Don&#8217;t add autolinks to text within these HTML tags <em>(separate with "
2087
- "commas)</em>:"
2088
  msgstr ""
2089
 
2090
- #: modules/autolinks/content-autolinks-settings.php:40
2091
- msgid "Tag Restrictions"
2092
  msgstr ""
2093
 
2094
- #: modules/autolinks/content-autolinks-settings.php:48
2095
- msgid "%s can only link to internal destinations that share at least one..."
2096
  msgstr ""
2097
 
2098
- #: modules/autolinks/content-autolinks-settings.php:61
2099
- msgid "Siloing"
2100
  msgstr ""
2101
 
2102
- #: modules/autolinks/content-autolinks.php:16
2103
- msgid "Content Deeplink Juggernaut"
2104
  msgstr ""
2105
 
2106
- #: modules/autolinks/content-autolinks.php:17
2107
- msgid "Content Links"
2108
  msgstr ""
2109
 
2110
- #: modules/autolinks/content-autolinks.php:359
2111
- msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
2112
  msgstr ""
2113
 
2114
- #: modules/autolinks/content-autolinks.php:360
2115
- msgid "Don&#8217;t add autolinks to anchor texts found in this post."
2116
  msgstr ""
2117
 
2118
- #: modules/autolinks/content-autolinks.php:360
2119
- msgid "Autolink Exclusion:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2120
  msgstr ""
2121
 
2122
- #: modules/autolinks/content-autolinks.php:365
 
 
 
 
 
 
 
 
2123
  msgid ""
2124
- "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
2125
- "into this box, Deeplink Juggernaut will search for that anchor in all your "
2126
- "other posts and link it to this post. For example, if the post you&#8217;re "
2127
- "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
2128
- "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
2129
- "Deeplink Juggernaut will automatically build internal links to this post "
2130
- "with that anchor text (assuming other posts contain that text)."
 
 
 
 
 
 
 
 
 
2131
  msgstr ""
2132
 
2133
  #: includes/jlwp/functions.php:60
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEO Ultimate 6.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
+ "POT-Creation-Date: 2011-07-15 16:02:03+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
+ #: modules/class.su-module.php:375
23
+ msgid ""
24
+ "(Note: This translated documentation was designed for an older version of "
25
+ "SEO Ultimate and may be outdated.)"
26
  msgstr ""
27
 
28
+ #: modules/class.su-module.php:658
29
+ msgid ""
30
+ "All the modules on this page have been disabled. You can re-enable them "
31
+ "using the <a href=\"%s\">Module Manager</a>."
32
  msgstr ""
33
 
34
+ #: modules/class.su-module.php:1015
35
+ msgctxt "Dropdown Title"
36
+ msgid "%s &mdash; %s"
 
37
  msgstr ""
38
 
39
+ #: modules/class.su-module.php:1043
40
+ msgid "%1$s | %2$s %3$s by %4$s"
41
  msgstr ""
42
 
43
+ #: modules/class.su-module.php:1122
44
+ msgid "Your site currently doesn&#8217;t have any public items of this type."
45
  msgstr ""
46
 
47
+ #: modules/class.su-module.php:1206
48
+ msgid "&laquo;"
49
  msgstr ""
50
 
51
+ #: modules/class.su-module.php:1207
52
+ msgid "&raquo;"
 
 
53
  msgstr ""
54
 
55
+ #: modules/class.su-module.php:1214
56
+ msgid "Displaying %s&#8211;%s of %s"
57
  msgstr ""
58
 
59
+ #: modules/class.su-module.php:1227 modules/404s/fofs-log.php:113
60
+ msgid "Actions"
61
  msgstr ""
62
 
63
+ #: modules/class.su-module.php:1228
64
+ msgid "ID"
65
  msgstr ""
66
 
67
+ #: modules/class.su-module.php:1262
68
+ msgid "View"
69
  msgstr ""
70
 
71
+ #: modules/class.su-module.php:1264
72
+ msgid "Edit"
73
  msgstr ""
74
 
75
+ #: modules/class.su-module.php:1427
76
+ msgid "Settings updated."
77
  msgstr ""
78
 
79
+ #: modules/class.su-module.php:1448
80
+ msgid "Save Changes"
81
  msgstr ""
82
 
83
+ #: modules/class.su-module.php:1959
84
+ msgid ""
85
+ "Are you sure you want to replace the textbox contents with this default "
86
+ "value?"
87
  msgstr ""
88
 
89
+ #: modules/class.su-module.php:1975 modules/settings/settings-data.php:23
90
+ msgid "Reset"
91
  msgstr ""
92
 
93
+ #: modules/class.su-module.php:2585 modules/meta/meta-keywords.php:34
94
+ #: modules/meta/meta-descriptions.php:25 plugin/class.seo-ultimate.php:1672
95
+ msgid "Blog Homepage"
96
  msgstr ""
97
 
98
+ #: modules/class.su-module.php:2589 plugin/class.seo-ultimate.php:1746
99
+ msgid "Author"
100
  msgstr ""
101
 
102
+ #: modules/class.su-module.php:2609
103
+ msgid "Type a URL or start typing the name of the item you want to link to"
104
  msgstr ""
105
 
106
+ #: modules/class.su-module.php:2621
107
+ msgid "Remove this destination"
108
  msgstr ""
109
 
110
+ #: modules/class.su-module.php:2621
111
+ msgid "X"
112
  msgstr ""
113
 
114
+ #: modules/class.su-importmodule.php:49
115
+ msgid "Import Post Fields"
116
  msgstr ""
117
 
118
+ #: modules/class.su-importmodule.php:50
119
  msgid ""
120
+ "Post fields store the SEO data for your posts/pages (i.e. your custom title "
121
+ "tags, meta descriptions, and meta keywords). If you provided custom titles/"
122
+ "descriptions/keywords to %s, this importer can move that data over to SEO "
123
+ "Ultimate."
124
  msgstr ""
125
 
126
+ #: modules/class.su-importmodule.php:53
127
+ msgid "Conflict Resolution Mode"
128
  msgstr ""
129
 
130
+ #: modules/class.su-importmodule.php:54
131
+ msgid ""
132
+ "What should the import tool do if it tries to move over a post&#8217;s %s "
133
+ "data, but different data already exists in the corresponding SEO Ultimate "
134
+ "fields?"
135
  msgstr ""
136
 
137
+ #: modules/class.su-importmodule.php:56
138
+ msgid "Skip that post and leave all data as-is (default)."
 
139
  msgstr ""
140
 
141
+ #: modules/class.su-importmodule.php:57
142
+ msgid "Delete the SEO Ultimate data and replace it with the %s data."
143
  msgstr ""
144
 
145
+ #: modules/class.su-importmodule.php:58
146
+ msgid "Keep the SEO Ultimate data and delete the %s data."
147
  msgstr ""
148
 
149
+ #: modules/class.su-importmodule.php:61
150
+ msgid "Deletion Preference"
151
  msgstr ""
152
 
153
+ #: modules/class.su-importmodule.php:62
154
+ msgid ""
155
+ "When the migration tool successfully copies a post&#8217;s %1$s data over to "
156
+ "SEO Ultimate, what should it do with the old %1$s data?"
157
  msgstr ""
158
 
159
+ #: modules/class.su-importmodule.php:64
160
+ msgid "Delete the %s data."
161
  msgstr ""
162
 
163
+ #: modules/class.su-importmodule.php:65
164
+ msgid "Leave behind the duplicate %s data (default)."
165
  msgstr ""
166
 
167
+ #: modules/class.su-importmodule.php:72
168
+ msgid "Import Now"
169
  msgstr ""
170
 
171
+ #: modules/class.su-importmodule.php:75
172
+ msgid ""
173
+ "The import cannot be undone. It is your responsibility to <a href=\"%s\" "
174
+ "target=\"_blank\">backup your database</a> before proceeding!"
175
  msgstr ""
176
 
177
+ #: modules/class.su-importmodule.php:84
178
+ msgid "Import complete."
179
  msgstr ""
180
 
181
+ #: modules/class.su-importmodule.php:90
182
+ msgid "Return to import page"
183
  msgstr ""
184
 
185
+ #: modules/class.su-importmodule.php:93
186
+ msgid "Return to settings page"
187
  msgstr ""
188
 
189
+ #: modules/class.su-importmodule.php:96
190
+ msgid "Return to SEO page"
191
  msgstr ""
192
 
193
+ #: modules/class.su-importmodule.php:116
194
+ msgid "Deactivated %s."
195
  msgstr ""
196
 
197
+ #: modules/class.su-importmodule.php:174
198
+ msgid "Imported a total of %d fields for one post/page/revision."
199
+ msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
200
+ msgstr[0] ""
201
+ msgstr[1] ""
202
+
203
+ #: modules/class.su-importmodule.php:180
204
+ msgid "Skipped one post with disabled %2$s data."
205
+ msgid_plural "Skipped %1$d posts with disabled %2$s data."
206
+ msgstr[0] ""
207
+ msgstr[1] ""
208
+
209
+ #: modules/class.su-importmodule.php:186
210
+ msgid ""
211
+ "Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
212
+ "settings you chose."
213
+ msgid_plural ""
214
+ "Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
215
+ "settings you chose."
216
+ msgstr[0] ""
217
+ msgstr[1] ""
218
+
219
+ #: modules/class.su-importmodule.php:192
220
+ msgid "Deleted one %2$s field, as instructed by the settings you chose."
221
+ msgid_plural ""
222
+ "Deleted %1$d %2$s fields, as instructed by the settings you chose."
223
+ msgstr[0] ""
224
+ msgstr[1] ""
225
+
226
+ #: modules/rich-snippets/rich-snippets.php:12
227
+ msgid "Rich Snippet Creator"
228
  msgstr ""
229
 
230
+ #: modules/rich-snippets/rich-snippets.php:17
231
+ msgid ""
232
+ "Reviews\n"
233
+ "Review"
234
  msgstr ""
235
 
236
+ #: modules/rich-snippets/rich-snippets.php:28
237
+ msgid "Data Format"
238
  msgstr ""
239
 
240
+ #: modules/rich-snippets/rich-snippets.php:29
241
+ msgid "Categories/Tags That Indicate Reviews"
242
  msgstr ""
243
 
244
+ #: modules/rich-snippets/rich-snippets.php:37
245
+ msgid "Microformats (recommended)"
246
  msgstr ""
247
 
248
+ #: modules/rich-snippets/rich-snippets.php:43
249
+ msgid "HTML5 Microdata"
250
  msgstr ""
251
 
252
+ #: modules/rich-snippets/rich-snippets.php:49
253
+ msgid "RDFa"
254
  msgstr ""
255
 
256
+ #: modules/rich-snippets/rich-snippets.php:62
257
+ #: modules/rich-snippets/rich-snippets.php:224
258
+ msgid "Review"
259
  msgstr ""
260
 
261
+ #: modules/rich-snippets/rich-snippets.php:70
262
+ msgid "Item Reviewed"
263
  msgstr ""
264
 
265
+ #: modules/rich-snippets/rich-snippets.php:78
266
+ msgid "Star Rating"
267
  msgstr ""
268
 
269
+ #: modules/rich-snippets/rich-snippets.php:83
270
+ msgid "Review Author"
271
  msgstr ""
272
 
273
+ #: modules/rich-snippets/rich-snippets.php:89
274
+ msgid "Date Reviewed"
275
  msgstr ""
276
 
277
+ #: modules/rich-snippets/rich-snippets.php:223
278
+ #: modules/rich-snippets/rich-snippets.php:232
279
+ msgid "None"
280
  msgstr ""
281
 
282
+ #: modules/rich-snippets/rich-snippets.php:225
283
+ msgid "Rich Snippet Type:"
284
  msgstr ""
285
 
286
+ #: modules/rich-snippets/rich-snippets.php:229
287
+ msgid "Name of Reviewed Item:"
 
 
288
  msgstr ""
289
 
290
+ #: modules/rich-snippets/rich-snippets.php:233
291
+ msgid "0.5 stars"
292
  msgstr ""
293
 
294
+ #: modules/rich-snippets/rich-snippets.php:234
295
+ msgid "1 star"
296
  msgstr ""
297
 
298
+ #: modules/rich-snippets/rich-snippets.php:235
299
+ msgid "1.5 stars"
 
 
300
  msgstr ""
301
 
302
+ #: modules/rich-snippets/rich-snippets.php:236
303
+ msgid "2 stars"
 
 
 
304
  msgstr ""
305
 
306
+ #: modules/rich-snippets/rich-snippets.php:237
307
+ msgid "2.5 stars"
308
  msgstr ""
309
 
310
+ #: modules/rich-snippets/rich-snippets.php:238
311
+ msgid "3 stars"
312
  msgstr ""
313
 
314
+ #: modules/rich-snippets/rich-snippets.php:239
315
+ msgid "3.5 stars"
316
  msgstr ""
317
 
318
+ #: modules/rich-snippets/rich-snippets.php:240
319
+ msgid "4 stars"
320
  msgstr ""
321
 
322
+ #: modules/rich-snippets/rich-snippets.php:241
323
+ msgid "4.5 stars"
324
  msgstr ""
325
 
326
+ #: modules/rich-snippets/rich-snippets.php:242
327
+ msgid "5 stars"
328
  msgstr ""
329
 
330
+ #: modules/rich-snippets/rich-snippets.php:243
331
+ msgid "Star Rating for Reviewed Item:"
332
  msgstr ""
333
 
334
+ #: modules/site-keyword-queries/site-keyword-queries.php:12
335
+ msgid "Internal Relevance Researcher"
336
  msgstr ""
337
 
338
+ #: modules/site-keyword-queries/site-keyword-queries.php:13
339
+ msgid "Int. Rel. Researcher"
340
  msgstr ""
341
 
342
+ #: modules/site-keyword-queries/site-keyword-queries.php:21
343
+ msgid "Step 1: Enter Keywords"
344
  msgstr ""
345
 
346
+ #: modules/site-keyword-queries/site-keyword-queries.php:23
347
+ msgid "(Type one keyword per line)"
348
  msgstr ""
349
 
350
+ #: modules/site-keyword-queries/site-keyword-queries.php:25
351
+ msgid "Step 2: Set Options and Submit"
352
  msgstr ""
353
 
354
+ #: modules/site-keyword-queries/site-keyword-queries.php:27
355
+ msgid "Put keywords in quotes"
 
 
 
 
 
356
  msgstr ""
357
 
358
+ #: modules/site-keyword-queries/site-keyword-queries.php:28
359
+ #: modules/competition-queries/competition-queries.php:63
360
+ msgid "Show 100 results per page"
 
 
361
  msgstr ""
362
 
363
+ #: modules/site-keyword-queries/site-keyword-queries.php:30
364
+ #: modules/competition-queries/competition-queries.php:65
365
+ msgid "Use Google&#8217;s minimal mode"
366
  msgstr ""
367
 
368
+ #: modules/site-keyword-queries/site-keyword-queries.php:33
369
+ #: modules/competition-queries/competition-queries.php:71
370
+ msgid "Submit"
 
 
 
371
  msgstr ""
372
 
373
+ #: modules/widgets/widgets.php:12
374
+ msgid "SEO Ultimate Widgets"
375
  msgstr ""
376
 
377
+ #: modules/widgets/widgets.php:36
378
  msgid ""
379
+ "On category archives, displays a list of child categories and/or posts in "
380
+ "the category. Displays a list of top-level categories everywhere else. "
381
+ "Powered by the SEO Ultimate plugin."
382
  msgstr ""
383
 
384
+ #: modules/widgets/widgets.php:37
385
+ msgid "Siloed Categories"
386
  msgstr ""
387
 
388
+ #: modules/widgets/widgets.php:51
389
+ msgid "Tags"
390
  msgstr ""
391
 
392
+ #: modules/widgets/widgets.php:122
393
+ msgid "Title:"
394
  msgstr ""
395
 
396
+ #: modules/widgets/widgets.php:126
397
+ msgid "Show post counts"
398
  msgstr ""
399
 
400
+ #: modules/widgets/widgets.php:128
401
+ msgid "Taxonomy:"
402
+ msgstr ""
403
+
404
+ #: modules/widgets/widgets.php:153
405
  msgid ""
406
+ "Add this widget to display Deeplink Juggernaut&#8217;s Footer Links in a "
407
+ "widget area of your choosing rather than the default wp_footer section. "
408
+ "Powered by the SEO Ultimate plugin."
409
  msgstr ""
410
 
411
+ #: modules/widgets/widgets.php:154 modules/autolinks/footer-autolinks.php:17
412
+ msgid "Footer Links"
413
  msgstr ""
414
 
415
+ #: modules/widgets/widgets.php:207
416
+ msgid "Title: <em>(optional)</em>"
417
  msgstr ""
418
 
419
+ #: modules/widgets/widgets.php:211
420
+ msgid "Display as a list"
421
  msgstr ""
422
 
423
+ #: modules/widgets/widgets.php:214
424
+ msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
 
 
425
  msgstr ""
426
 
427
+ #: modules/internal-link-aliases/internal-link-aliases.php:20
428
+ msgid "Link Mask Generator"
429
  msgstr ""
430
 
431
+ #: modules/internal-link-aliases/internal-link-aliases.php:27
432
+ msgid "Alias Directory"
433
  msgstr ""
434
 
435
+ #: modules/internal-link-aliases/internal-link-aliases.php:29
436
+ msgid "Nofollow aliased links"
437
  msgstr ""
438
 
439
+ #: modules/internal-link-aliases/internal-link-aliases.php:29
440
+ msgid "Link Attributes"
441
  msgstr ""
442
 
443
+ #: modules/internal-link-aliases/internal-link-aliases.php:49
444
+ msgid "Link Masks:"
445
  msgstr ""
446
 
447
+ #: modules/internal-link-aliases/internal-link-aliases.php:52
448
+ msgid "URL"
449
+ msgstr ""
 
 
450
 
451
+ #: modules/internal-link-aliases/internal-link-aliases.php:52
452
+ msgid "Mask URL"
453
+ msgstr ""
 
 
454
 
455
+ #: modules/internal-link-aliases/internal-link-aliases.php:83
456
  msgid ""
457
+ "You can stop search engines from following a link by typing in a mask for "
458
+ "its URL."
459
+ msgstr ""
 
 
 
 
460
 
461
+ #: modules/internal-link-aliases/internal-link-aliases.php:160
462
+ msgid "Added by Link Alias Generator (LAG) module"
463
+ msgstr ""
464
+
465
+ #: modules/internal-link-aliases/internal-link-aliases.php:171
466
+ msgid "End LAG"
467
+ msgstr ""
468
 
469
  #: modules/titles/titles.php:12
470
  msgid "Title Tag Rewriter"
566
  #: modules/titles/titles.php:76
567
  msgid "Month Archive Title Format"
568
  msgstr ""
569
+
570
+ #: modules/titles/titles.php:77
571
+ msgid "Year Archive Title Format"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
572
  msgstr ""
573
 
574
+ #: modules/titles/titles.php:78
575
+ msgid "Author Archive Title Format"
576
  msgstr ""
577
 
578
+ #: modules/titles/titles.php:79
579
+ msgid "Search Title Format"
580
  msgstr ""
581
 
582
+ #: modules/titles/titles.php:80
583
+ msgid "404 Title Format"
584
  msgstr ""
585
 
586
+ #: modules/titles/titles.php:81
587
+ msgid "Pagination Title Format"
588
  msgstr ""
589
 
590
+ #: modules/titles/titles.php:307
591
+ msgid "Title Tag:"
592
  msgstr ""
593
 
594
+ #: modules/titles/titles.php:312
595
+ msgid ""
596
+ "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
597
+ "tag. The title appears in visitors&#8217; title bars and in search engine "
598
+ "result titles. If this box is left blank, then the <a href=\"admin.php?"
599
+ "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
600
  msgstr ""
601
 
602
+ #: modules/competition-queries/competition-queries.php:12
603
+ msgid "Competition Researcher"
604
  msgstr ""
605
 
606
+ #: modules/competition-queries/competition-queries.php:13
607
+ msgid "Comp. Researcher"
608
  msgstr ""
609
 
610
+ #: modules/competition-queries/competition-queries.php:17
611
  msgid ""
612
+ "The Competition Researcher provides you with easy access to various search "
613
+ "engine tools which you can use to research multiple search queries or URLs."
614
  msgstr ""
615
 
616
+ #: modules/competition-queries/competition-queries.php:21
617
+ msgid "Step 1: Choose Your Research Tool"
618
  msgstr ""
619
 
620
+ #: modules/competition-queries/competition-queries.php:25
621
+ msgid "Keywords"
622
  msgstr ""
623
 
624
+ #: modules/competition-queries/competition-queries.php:25
625
+ msgid "Normal Search"
626
  msgstr ""
627
 
628
+ #: modules/competition-queries/competition-queries.php:25
629
+ msgid "Find out how many pages contain the words in each query"
630
  msgstr ""
631
 
632
+ #: modules/competition-queries/competition-queries.php:26
633
+ msgid "Phrase Match"
634
  msgstr ""
635
 
636
+ #: modules/competition-queries/competition-queries.php:26
637
+ msgid ""
638
+ "Find out how many &#8220;actual&#8221; pages are competing for each query"
639
  msgstr ""
640
 
641
+ #: modules/competition-queries/competition-queries.php:27
642
+ msgid "Allinanchor"
643
  msgstr ""
644
 
645
+ #: modules/competition-queries/competition-queries.php:27
646
+ msgid "Find out which sites have the most links for each query"
 
 
647
  msgstr ""
648
 
649
+ #: modules/competition-queries/competition-queries.php:28
650
+ msgid "Allintitle"
651
  msgstr ""
652
 
653
+ #: modules/competition-queries/competition-queries.php:28
654
+ msgid ""
655
+ "Find out which sites have the highest relevance in the title for each query"
656
  msgstr ""
657
 
658
+ #: modules/competition-queries/competition-queries.php:29
659
+ msgid "Allintext"
660
  msgstr ""
661
 
662
+ #: modules/competition-queries/competition-queries.php:29
663
+ msgid "Find out which sites have the most relevant content/text on their pages"
664
  msgstr ""
665
 
666
+ #: modules/competition-queries/competition-queries.php:30
667
+ msgid "Allinurl"
668
  msgstr ""
669
 
670
+ #: modules/competition-queries/competition-queries.php:30
671
  msgid ""
672
+ "Find out which sites have the most relevant naming conventions for each "
673
+ "keyword"
674
  msgstr ""
675
 
676
+ #: modules/competition-queries/competition-queries.php:32
677
+ msgid "URLs"
678
  msgstr ""
679
 
680
+ #: modules/competition-queries/competition-queries.php:32
681
+ msgid "Site"
682
  msgstr ""
683
 
684
+ #: modules/competition-queries/competition-queries.php:32
685
+ msgid "Find out how many pages are indexed for each domain"
686
  msgstr ""
687
 
688
+ #: modules/competition-queries/competition-queries.php:33
689
+ #: modules/competition-queries/competition-queries.php:38
690
+ msgid "Inbound Links"
691
  msgstr ""
692
 
693
+ #: modules/competition-queries/competition-queries.php:33
694
+ msgid "Find out how many sites link to the domains"
695
  msgstr ""
696
 
697
+ #: modules/competition-queries/competition-queries.php:34
698
+ #: modules/competition-queries/competition-queries.php:38
699
+ msgid "Outbound Links"
700
  msgstr ""
701
 
702
+ #: modules/competition-queries/competition-queries.php:34
703
+ msgid "Find out how many sites the domains link to"
704
  msgstr ""
705
 
706
+ #: modules/competition-queries/competition-queries.php:57
707
+ msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
708
  msgstr ""
709
 
710
+ #: modules/competition-queries/competition-queries.php:59
711
+ msgid "(Type in one per line)"
712
  msgstr ""
713
 
714
+ #: modules/competition-queries/competition-queries.php:61
715
+ msgid "Step 3: Set Options and Submit"
716
  msgstr ""
717
 
718
+ #: modules/link-nofollow/link-nofollow.php:12
719
+ msgid "Nofollow Manager"
720
  msgstr ""
721
 
722
+ #: modules/link-nofollow/link-nofollow.php:53
723
+ msgid "Add the nofollow attribute to..."
724
  msgstr ""
725
 
726
+ #: modules/link-nofollow/link-nofollow.php:55
727
+ msgid "Adjacent post links"
728
  msgstr ""
729
 
730
+ #: modules/link-nofollow/link-nofollow.php:56
731
+ msgid "Category links (after posts)"
732
  msgstr ""
733
 
734
+ #: modules/link-nofollow/link-nofollow.php:57
735
+ msgid "Category links (in lists)"
736
  msgstr ""
737
 
738
+ #: modules/link-nofollow/link-nofollow.php:58
739
+ msgid "Comment anchor links"
740
  msgstr ""
741
 
742
+ #: modules/link-nofollow/link-nofollow.php:59
743
+ msgid "Comment feed links"
744
  msgstr ""
745
 
746
+ #: modules/link-nofollow/link-nofollow.php:60
747
+ msgid "Date-based archive links"
748
  msgstr ""
749
 
750
+ #: modules/link-nofollow/link-nofollow.php:61
751
+ msgid "Pagination navigation links (all)"
752
  msgstr ""
753
 
754
+ #: modules/link-nofollow/link-nofollow.php:62
755
+ msgid "Pagination navigation links (on blog home only)"
756
  msgstr ""
757
 
758
+ #: modules/link-nofollow/link-nofollow.php:63
759
+ msgid "&#8220;Read more&#8221; links"
760
  msgstr ""
761
 
762
+ #: modules/link-nofollow/link-nofollow.php:64
763
+ msgid "Registration link"
764
  msgstr ""
765
 
766
+ #: modules/link-nofollow/link-nofollow.php:65
767
+ msgid "Login link"
768
  msgstr ""
769
 
770
+ #: modules/link-nofollow/link-nofollow.php:66
771
+ msgid "Tag links (after posts)"
772
  msgstr ""
773
 
774
+ #: modules/link-nofollow/link-nofollow.php:67
775
+ msgid "Tag links (in lists and clouds)"
776
  msgstr ""
777
 
778
+ #: modules/link-nofollow/link-nofollow.php:76
779
+ msgid "When displaying page lists, nofollow links to this page"
780
+ msgstr ""
781
+
782
+ #: modules/link-nofollow/link-nofollow.php:76
783
+ msgid "Nofollow:"
784
  msgstr ""
785
 
786
  #: modules/meta/meta-keywords.php:12
791
  msgid "Meta Keywords"
792
  msgstr ""
793
 
794
+ #: modules/meta/meta-keywords.php:33 modules/noindex/noindex.php:43
795
+ msgid "Default Values"
796
+ msgstr ""
797
+
798
  #: modules/meta/meta-keywords.php:56
799
  msgid "The %d most commonly-used words"
800
  msgstr ""
851
  msgid "Meta Robot Tags"
852
  msgstr ""
853
 
854
+ #: modules/meta/meta-robots.php:22
855
  msgid "Global"
856
  msgstr ""
857
 
858
+ #: modules/meta/meta-robots.php:28
859
  msgid "Spider Instructions"
860
  msgstr ""
861
 
862
+ #: modules/meta/meta-robots.php:30
863
  msgid ""
864
  "Don&#8217t use this site&#8217s Open Directory description in search results."
865
  msgstr ""
866
 
867
+ #: modules/meta/meta-robots.php:31
868
  msgid ""
869
  "Don&#8217t use this site&#8217s Yahoo! Directory description in search "
870
  "results."
871
  msgstr ""
872
 
873
+ #: modules/meta/meta-robots.php:32
874
  msgid "Don&#8217t cache or archive this site."
875
  msgstr ""
876
 
877
+ #: modules/meta/meta-descriptions.php:12
878
+ msgid "Meta Description Editor"
879
  msgstr ""
880
 
881
+ #: modules/meta/meta-descriptions.php:13
882
+ msgid "Meta Descriptions"
 
883
  msgstr ""
884
 
885
+ #: modules/meta/meta-descriptions.php:31
886
+ msgid "Meta Description"
887
+ msgstr ""
888
+
889
+ #: modules/meta/meta-descriptions.php:48
890
+ msgid "Post Description Format"
891
+ msgstr ""
892
+
893
+ #: modules/meta/meta-descriptions.php:49
894
+ msgid "Category Description Format"
895
+ msgstr ""
896
+
897
+ #: modules/meta/meta-descriptions.php:50
898
+ msgid "Post Tag Description Format"
899
+ msgstr ""
900
+
901
+ #: modules/meta/meta-descriptions.php:57
902
+ msgid "Blog Homepage Meta Description"
903
  msgstr ""
904
 
905
+ #: modules/meta/meta-descriptions.php:59
906
+ msgid "Use this blog&#8217s tagline as the default homepage description."
907
  msgstr ""
908
 
909
+ #: modules/meta/meta-descriptions.php:60
910
+ msgid "Default Value"
911
  msgstr ""
912
 
913
+ #: modules/meta/meta-descriptions.php:122
914
+ msgid "Meta Description:"
915
  msgstr ""
916
 
917
+ #: modules/meta/meta-descriptions.php:125
918
+ msgid "You&#8217;ve entered %s characters. Most search engines use up to 140."
919
  msgstr ""
920
 
921
+ #: modules/meta/meta-descriptions.php:133
922
+ msgid ""
923
+ "<strong>Description</strong> &mdash; The value of the meta description tag. "
924
+ "The description will often appear underneath the title in search engine "
925
+ "results. Writing an accurate, attention-grabbing description for every post "
926
+ "is important to ensuring a good search results clickthrough rate."
927
  msgstr ""
928
 
929
+ #: modules/import-aiosp/import-aiosp.php:12
930
+ msgid "Import from All in One SEO Pack"
931
  msgstr ""
932
 
933
+ #: modules/import-aiosp/import-aiosp.php:13
934
+ msgid "AIOSP Import"
935
  msgstr ""
936
 
937
+ #: modules/import-aiosp/import-aiosp.php:15
938
+ msgid "All in One SEO Pack"
939
  msgstr ""
940
 
941
+ #: modules/import-aiosp/import-aiosp.php:16
942
+ msgid "AIOSP"
943
  msgstr ""
944
 
945
+ #: modules/import-aiosp/import-aiosp.php:17
946
+ msgid "Import post data (custom title tags and meta tags)."
947
  msgstr ""
948
 
949
+ #: modules/import-aiosp/import-aiosp.php:21
950
+ msgid ""
951
+ "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
952
+ "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
953
+ "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
954
+ "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
955
+ "to be currently installed or activated for the import to take place."
956
  msgstr ""
957
 
958
+ #: modules/import-aiosp/import-aiosp.php:23
959
+ msgid ""
960
+ "The import tool can only move over data from AIOSP version 1.6 or above. If "
961
+ "you use an older version of AIOSP, you should update to the latest version "
962
+ "first and run AIOSP&#8217;s upgrade process."
963
  msgstr ""
964
 
965
+ #: modules/sds-blog/sds-blog.php:12
966
+ msgid "Whitepapers"
967
  msgstr ""
968
 
969
+ #: modules/sds-blog/sds-blog.php:13
970
+ msgid "SEO Design Solutions Whitepapers"
971
  msgstr ""
972
 
973
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 6.6) #-#-#-#-#
974
+ #. Author of the plugin/theme
975
+ #: modules/sds-blog/sds-blog.php:49
976
+ msgid "SEO Design Solutions"
977
  msgstr ""
978
 
979
+ #: modules/sds-blog/sds-blog.php:50
980
+ msgid ""
981
+ "The search engine optimization articles below are loaded from the website of "
982
+ "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
983
+ "an article&#8217;s title to read it."
984
  msgstr ""
985
 
986
+ #: modules/modules/modules.php:12
987
+ msgid "Module Manager"
988
  msgstr ""
989
 
990
+ #: modules/modules/modules.php:13
991
+ msgid "Modules"
992
  msgstr ""
993
 
994
+ #: modules/modules/modules.php:41
995
+ msgid ""
996
+ "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
997
+ "&#8221; By default, most of these modules are listed in the &#8220;"
998
+ "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
999
+ "you can view documentation by clicking the tabs in the upper-right-hand "
1000
+ "corner of your administration screen."
1001
  msgstr ""
1002
 
1003
+ #: modules/modules/modules.php:43
1004
+ msgid ""
1005
+ "The Module Manager lets you disable or hide modules you don&#8217;t use. "
1006
+ "You can also silence modules from displaying bubble alerts on the menu."
1007
  msgstr ""
1008
 
1009
+ #: modules/modules/modules.php:47
1010
+ msgid "Modules updated."
 
 
1011
  msgstr ""
1012
 
1013
+ #: modules/modules/modules.php:52
1014
+ msgid "Status"
1015
  msgstr ""
1016
 
1017
+ #: modules/modules/modules.php:53
1018
+ msgid "Module"
1019
  msgstr ""
1020
 
1021
+ #: modules/modules/modules.php:66
1022
+ msgid "Enabled"
1023
  msgstr ""
1024
 
1025
+ #: modules/modules/modules.php:67
1026
+ msgid "Silenced"
1027
  msgstr ""
1028
 
1029
+ #: modules/modules/modules.php:68
1030
+ msgid "Hidden"
1031
  msgstr ""
1032
 
1033
+ #: modules/modules/modules.php:69
1034
+ msgid "Disabled"
 
1035
  msgstr ""
1036
 
1037
+ #: modules/slugs/slugs.php:12
1038
+ msgid "Slug Optimizer"
1039
  msgstr ""
1040
 
1041
+ #: modules/slugs/slugs.php:16
1042
+ msgid "Words to Remove"
1043
  msgstr ""
1044
 
1045
+ #: modules/404s/fofs.php:11
1046
+ msgid "404 Monitor"
1047
  msgstr ""
1048
 
1049
+ #: modules/404s/fofs-settings.php:16
1050
+ msgid "404 Monitor Settings"
 
1051
  msgstr ""
1052
 
1053
+ #: modules/404s/fofs-settings.php:37
1054
+ msgid "Continue monitoring for new 404 errors"
1055
  msgstr ""
1056
 
1057
+ #: modules/404s/fofs-settings.php:37
1058
+ msgid "Monitoring Settings"
1059
  msgstr ""
1060
 
1061
+ #: modules/404s/fofs-settings.php:39
1062
+ msgid "Only log these types of 404 errors:"
1063
  msgstr ""
1064
 
1065
+ #: modules/404s/fofs-settings.php:40
1066
+ msgid "404s generated by search engine spiders"
 
 
1067
  msgstr ""
1068
 
1069
+ #: modules/404s/fofs-settings.php:41
1070
+ msgid "404s with referring URLs"
1071
  msgstr ""
1072
 
1073
+ #: modules/404s/fofs-settings.php:42
1074
+ msgid "Log Restrictions"
1075
  msgstr ""
1076
 
1077
+ #: modules/404s/fofs-settings.php:43
1078
+ msgid "Maximum Log Entries"
1079
  msgstr ""
1080
 
1081
+ #: modules/404s/fofs-settings.php:44
1082
+ msgid "URLs to Ignore"
 
1083
  msgstr ""
1084
 
1085
+ #: modules/404s/fofs-settings.php:44
1086
+ msgid "(Use * as wildcard)"
1087
  msgstr ""
1088
 
1089
+ #: modules/404s/fofs-log.php:16
1090
+ msgid "404 Monitor Log"
 
1091
  msgstr ""
1092
 
1093
+ #: modules/404s/fofs-log.php:17
1094
+ msgid "Log"
1095
  msgstr ""
1096
 
1097
+ #: modules/404s/fofs-log.php:114
1098
+ msgid "Hits"
1099
  msgstr ""
1100
 
1101
+ #: modules/404s/fofs-log.php:115
1102
+ msgid "URL with 404 Error"
1103
  msgstr ""
1104
 
1105
+ #: modules/404s/fofs-log.php:116
1106
+ msgid "Date of Most Recent Hit"
1107
  msgstr ""
1108
 
1109
+ #: modules/404s/fofs-log.php:117
1110
+ msgid "Referers"
 
1111
  msgstr ""
1112
 
1113
+ #: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
1114
+ msgid "User Agents"
 
1115
  msgstr ""
1116
 
1117
+ #: modules/404s/fofs-log.php:134
1118
+ msgid ""
1119
+ "New 404 errors will not be recorded because 404 logging is disabled on the "
1120
+ "Settings tab."
1121
  msgstr ""
1122
 
1123
+ #: modules/404s/fofs-log.php:141
1124
+ msgid "The log entry was successfully deleted."
1125
  msgstr ""
1126
 
1127
+ #: modules/404s/fofs-log.php:143
1128
+ msgid "This log entry has already been deleted."
1129
  msgstr ""
1130
 
1131
+ #: modules/404s/fofs-log.php:152
1132
+ msgid "The log was successfully cleared."
1133
  msgstr ""
1134
 
1135
+ #: modules/404s/fofs-log.php:156
1136
+ msgid "No 404 errors in the log."
1137
  msgstr ""
1138
 
1139
+ #: modules/404s/fofs-log.php:180
1140
+ msgid "Open URL in new window (will not be logged)"
1141
  msgstr ""
1142
 
1143
+ #: modules/404s/fofs-log.php:181
1144
+ msgid "Query Google for cached version of URL (opens in new window)"
1145
  msgstr ""
1146
 
1147
+ #: modules/404s/fofs-log.php:182
1148
+ msgid "Remove this URL from the log"
1149
  msgstr ""
1150
 
1151
+ #: modules/404s/fofs-log.php:185
1152
+ msgid "%s at %s"
1153
  msgstr ""
1154
 
1155
+ #: modules/404s/fofs-log.php:189
1156
+ msgid "View list of referring URLs"
1157
  msgstr ""
1158
 
1159
+ #: modules/404s/fofs-log.php:190
1160
+ msgid "View list of user agents"
1161
  msgstr ""
1162
 
1163
+ #: modules/404s/fofs-log.php:200
1164
+ msgid "Referring URLs"
1165
  msgstr ""
1166
 
1167
+ #: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
1168
+ msgid "Hide list"
1169
  msgstr ""
1170
 
1171
+ #: modules/404s/fofs-log.php:252
1172
+ msgid "Are you sure you want to delete all 404 log entries?"
1173
  msgstr ""
1174
 
1175
+ #: modules/404s/fofs-log.php:254
1176
+ msgid "Clear Log"
1177
  msgstr ""
1178
 
1179
+ #: modules/linkbox/linkbox.php:12
1180
+ msgid "Linkbox Inserter"
1181
  msgstr ""
1182
 
1183
+ #: modules/linkbox/linkbox.php:18
1184
+ msgid "Link to this post!"
 
 
 
 
 
1185
  msgstr ""
1186
 
1187
+ #: modules/linkbox/linkbox.php:45
1188
+ msgid "At the end of posts"
 
 
1189
  msgstr ""
1190
 
1191
+ #: modules/linkbox/linkbox.php:46
1192
+ msgid "At the end of pages"
1193
  msgstr ""
1194
 
1195
+ #: modules/linkbox/linkbox.php:47
1196
+ msgid "When called by the su_linkbox hook"
1197
  msgstr ""
1198
 
1199
+ #: modules/linkbox/linkbox.php:48
1200
+ msgid "Display linkboxes..."
1201
  msgstr ""
1202
 
1203
+ #: modules/linkbox/linkbox.php:49
1204
+ msgid "Linkbox HTML"
1205
  msgstr ""
1206
 
1207
+ #: modules/more-links/more-links.php:12
1208
+ msgid "More Link Customizer"
1209
  msgstr ""
1210
 
1211
+ #: modules/more-links/more-links.php:30
1212
+ msgid "Default More Link Text"
1213
  msgstr ""
1214
 
1215
+ #: modules/more-links/more-links.php:51
1216
+ msgid "More Link Text:"
1217
  msgstr ""
1218
 
1219
  #: modules/permalinks/permalinks.php:15
1234
  msgid "Remove the URL bases of..."
1235
  msgstr ""
1236
 
1237
+ #: modules/misc/misc.php:11
1238
+ msgid "Miscellaneous"
1239
+ msgstr ""
1240
+
1241
+ #: modules/misc/misc.php:14
1242
+ msgid ""
1243
+ "The Miscellaneous page contains modules that don&#8217;t have enough "
1244
+ "settings to warrant their own separate admin pages."
1245
+ msgstr ""
1246
+
1247
  #: modules/files/files.php:14
1248
  msgid "File Editor"
1249
  msgstr ""
1299
  "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1300
  msgstr ""
1301
 
1302
+ #: modules/canonical/canonical.php:12
1303
+ msgid "Canonicalizer"
1304
  msgstr ""
1305
 
1306
+ #: modules/canonical/canonical.php:39
1307
+ msgid ""
1308
+ "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> meta tags."
1309
+ msgstr ""
1310
+
1311
+ #: modules/canonical/canonical.php:40
1312
+ msgid "Send <code>rel=&quot;canonical&quot;</code> HTTP headers."
1313
+ msgstr ""
1314
+
1315
+ #: modules/canonical/canonical.php:41
1316
+ msgid "Redirect requests for nonexistent pagination."
1317
+ msgstr ""
1318
+
1319
+ #: modules/user-code/user-code.php:12
1320
+ msgid "Code Inserter"
1321
+ msgstr ""
1322
+
1323
+ #: modules/user-code/user-code.php:27
1324
+ msgid "Everywhere"
1325
+ msgstr ""
1326
+
1327
+ #: modules/user-code/user-code.php:34
1328
+ msgid "&lt;head&gt; Tag"
1329
+ msgstr ""
1330
+
1331
+ #: modules/user-code/user-code.php:35
1332
+ msgid "Before Item Content"
1333
+ msgstr ""
1334
+
1335
+ #: modules/user-code/user-code.php:36
1336
+ msgid "After Item Content"
1337
+ msgstr ""
1338
+
1339
+ #: modules/user-code/user-code.php:37
1340
+ msgid "Footer"
1341
+ msgstr ""
1342
+
1343
+ #: modules/user-code/user-code.php:51
1344
+ msgid "Code Inserter module"
1345
  msgstr ""
1346
 
1347
  #: modules/settings/settings-data.php:16
1512
  msgid "Restore Default Settings"
1513
  msgstr ""
1514
 
1515
+ #: modules/settings/global-settings.php:18
1516
+ msgid "Global Settings"
1517
+ msgstr ""
1518
+
1519
+ #: modules/settings/global-settings.php:40
1520
+ msgid "Enable nofollow&#8217;d attribution link"
1521
+ msgstr ""
1522
+
1523
+ #: modules/settings/global-settings.php:41
1524
+ msgid "Enable attribution link CSS styling"
1525
+ msgstr ""
1526
+
1527
+ #: modules/settings/global-settings.php:42
1528
+ msgid "Notify me about unnecessary active plugins"
1529
+ msgstr ""
1530
+
1531
+ #: modules/settings/global-settings.php:43
1532
+ msgid "Insert comments around HTML code insertions"
1533
+ msgstr ""
1534
+
1535
+ #: modules/settings/settings.php:12
1536
+ msgid "Plugin Settings"
1537
+ msgstr ""
1538
+
1539
+ #: modules/settings/settings.php:13
1540
+ msgid "SEO Ultimate Plugin Settings"
1541
+ msgstr ""
1542
+
1543
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 6.6) #-#-#-#-#
1544
+ #. Plugin Name of the plugin/theme
1545
+ #: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:767
1546
+ msgid "SEO Ultimate"
1547
+ msgstr ""
1548
+
1549
  #: modules/settings/uninstall.php:17
1550
  msgid "Uninstaller"
1551
  msgstr ""
1552
 
1553
+ #: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1250
1554
+ msgid "Uninstall"
1555
+ msgstr ""
1556
+
1557
  #: modules/settings/uninstall.php:27
1558
  msgid ""
1559
  "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
1590
  msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1591
  msgstr ""
1592
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1593
  #: modules/settings/install.php:18
1594
  msgid "Upgrade/Downgrade/Reinstall"
1595
  msgstr ""
1650
  #: modules/settings/install.php:76
1651
  msgid ""
1652
  "There was an error retrieving the list of available versions. Please try "
1653
+ "again later."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1654
  msgstr ""
1655
 
1656
+ #: modules/settings/install.php:81
1657
+ msgid ""
1658
+ "To download and install a fresh copy of the SEO Ultimate version you are "
1659
+ "currently using, click the &#8220;Reinstall&#8221; button below."
1660
  msgstr ""
1661
 
1662
+ #: modules/settings/install.php:108
1663
+ msgid "Your Current Version"
1664
  msgstr ""
1665
 
1666
+ #: modules/settings/install.php:110
1667
+ msgid "Latest Version"
1668
  msgstr ""
1669
 
1670
+ #: modules/settings/install.php:130
1671
+ msgid ""
1672
+ "You do not have sufficient permissions to upgrade/downgrade plugins for this "
1673
+ "blog."
1674
  msgstr ""
1675
 
1676
+ #: modules/settings/install.php:140
1677
+ msgid "Downgrade to SEO Ultimate %s"
1678
  msgstr ""
1679
 
1680
+ #: modules/settings/install.php:143
1681
+ msgid "Reinstall SEO Ultimate %s"
1682
  msgstr ""
1683
 
1684
+ #: modules/settings/install.php:146
1685
+ msgid "Upgrade to SEO Ultimate %s"
1686
  msgstr ""
1687
 
1688
+ #: modules/sharing-buttons/sharing-buttons.php:12
1689
+ msgid "Sharing Facilitator"
1690
  msgstr ""
1691
 
1692
+ #: modules/sharing-buttons/sharing-buttons.php:25
1693
+ msgid "Bookmark and Share"
1694
  msgstr ""
1695
 
1696
+ #: modules/sharing-buttons/sharing-buttons.php:39
1697
+ msgid "Which provider would you like to use for your sharing buttons?"
1698
  msgstr ""
1699
 
1700
+ #: modules/sharing-buttons/sharing-buttons.php:41
1701
+ msgid "None; disable sharing buttons"
1702
  msgstr ""
1703
 
1704
+ #: modules/sharing-buttons/sharing-buttons.php:42
1705
+ msgid "Use the ShareThis button"
1706
  msgstr ""
1707
 
1708
+ #: modules/sharing-buttons/sharing-buttons.php:43
1709
+ msgid "Use the AddThis button"
1710
  msgstr ""
1711
 
1712
+ #: modules/noindex/noindex.php:12
1713
+ msgid "Noindex Manager"
1714
  msgstr ""
1715
 
1716
+ #: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
1717
+ #: modules/noindex/noindex.php:67
1718
+ msgid "Noindex"
1719
  msgstr ""
1720
 
1721
+ #: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
1722
+ #: modules/autolinks/content-autolinks.php:295
1723
+ #: modules/autolinks/footer-autolinks.php:218
1724
+ msgid "Nofollow"
1725
  msgstr ""
1726
 
1727
+ #: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
1728
+ msgid "Use default"
1729
  msgstr ""
1730
 
1731
+ #: modules/noindex/noindex.php:63
1732
+ msgid "noindex"
1733
  msgstr ""
1734
 
1735
+ #: modules/noindex/noindex.php:64
1736
+ msgid "index"
1737
  msgstr ""
1738
 
1739
+ #: modules/noindex/noindex.php:74
1740
+ msgid "nofollow"
1741
  msgstr ""
1742
 
1743
+ #: modules/noindex/noindex.php:75
1744
+ msgid "follow"
1745
  msgstr ""
1746
 
1747
+ #: modules/noindex/noindex.php:89
1748
+ msgid ""
1749
+ "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
1750
+ "block indexing of the entire site, regardless of which options are set below."
1751
  msgstr ""
1752
 
1753
+ #: modules/noindex/noindex.php:92
1754
+ msgid "Prevent indexing of..."
1755
  msgstr ""
1756
 
1757
+ #: modules/noindex/noindex.php:93
1758
+ msgid "Administration back-end pages"
1759
  msgstr ""
1760
 
1761
+ #: modules/noindex/noindex.php:94
1762
+ msgid "Author archives"
1763
  msgstr ""
1764
 
1765
+ #: modules/noindex/noindex.php:95
1766
+ msgid "Blog search pages"
1767
  msgstr ""
1768
 
1769
+ #: modules/noindex/noindex.php:96
1770
+ msgid "Category archives"
1771
  msgstr ""
1772
 
1773
+ #: modules/noindex/noindex.php:97
1774
+ msgid "Comment feeds"
1775
  msgstr ""
1776
 
1777
+ #: modules/noindex/noindex.php:98
1778
+ msgid "Comment subpages"
1779
  msgstr ""
1780
 
1781
+ #: modules/noindex/noindex.php:99
1782
+ msgid "Date-based archives"
1783
  msgstr ""
1784
 
1785
+ #: modules/noindex/noindex.php:100
1786
+ msgid "Subpages of the homepage"
1787
  msgstr ""
1788
 
1789
+ #: modules/noindex/noindex.php:101
1790
+ msgid "Tag archives"
1791
  msgstr ""
1792
 
1793
+ #: modules/noindex/noindex.php:102
1794
+ msgid "User login/registration pages"
1795
  msgstr ""
1796
 
1797
+ #: modules/noindex/noindex.php:165
1798
+ msgid "Noindex: Tell search engines not to index this webpage."
 
 
1799
  msgstr ""
1800
 
1801
+ #: modules/noindex/noindex.php:166
1802
+ msgid "Nofollow: Tell search engines not to spider links on this webpage."
1803
  msgstr ""
1804
 
1805
+ #: modules/noindex/noindex.php:167
1806
+ msgid "Meta Robots Tag:"
1807
  msgstr ""
1808
 
1809
+ #: modules/autolinks/autolinks.php:11
1810
+ msgid "Deeplink Juggernaut"
1811
  msgstr ""
1812
 
1813
+ #: modules/autolinks/autolinks.php:18
1814
  msgid ""
1815
+ "Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
1816
+ "(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
1817
+ "WordPress 3.2.) If you aren&#8217;t sure how to upgrade PHP, please ask your "
1818
+ "webhost. In the meantime, you can return to an older version of Deeplink "
1819
+ "Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
1820
+ "a> to SEO Ultimate 5.9."
1821
  msgstr ""
1822
 
1823
+ #: modules/autolinks/content-autolinks.php:16
1824
+ msgid "Content Deeplink Juggernaut"
1825
  msgstr ""
1826
 
1827
+ #: modules/autolinks/content-autolinks.php:17
1828
+ msgid "Content Links"
1829
  msgstr ""
1830
 
1831
+ #: modules/autolinks/content-autolinks.php:203
1832
+ #: modules/autolinks/footer-autolinks.php:133
1833
+ msgid ""
1834
+ "The Content Links section of Deeplink Juggernaut lets you automatically link "
1835
+ "a certain word or phrase in your post/page content to a URL you specify."
1836
  msgstr ""
1837
 
1838
+ #: modules/autolinks/content-autolinks.php:254
1839
+ #: modules/autolinks/footer-autolinks.php:165
1840
+ msgid "Edit Existing Links"
1841
  msgstr ""
1842
 
1843
+ #: modules/autolinks/content-autolinks.php:258
1844
+ #: modules/autolinks/footer-autolinks.php:169
1845
+ msgid "Add a New Link"
1846
  msgstr ""
1847
 
1848
+ #: modules/autolinks/content-autolinks.php:266
1849
+ #: modules/autolinks/footer-autolinks.php:179
1850
+ msgid "Anchor Text"
1851
  msgstr ""
1852
 
1853
+ #: modules/autolinks/content-autolinks.php:267
1854
+ #: modules/autolinks/footer-autolinks.php:180
1855
+ msgid "Destination"
1856
  msgstr ""
1857
 
1858
+ #: modules/autolinks/content-autolinks.php:268
1859
+ #: modules/autolinks/footer-autolinks.php:181
1860
+ msgid "Title Attribute"
1861
  msgstr ""
1862
 
1863
+ #: modules/autolinks/content-autolinks.php:269
1864
+ #: modules/autolinks/footer-autolinks.php:182
1865
+ msgid "Options"
1866
  msgstr ""
1867
 
1868
+ #: modules/autolinks/content-autolinks.php:271
1869
+ #: modules/autolinks/footer-autolinks.php:184
1870
+ msgid "Delete"
1871
  msgstr ""
1872
 
1873
+ #: modules/autolinks/content-autolinks.php:297
1874
+ #: modules/autolinks/footer-autolinks.php:220
1875
+ msgid "New window"
1876
  msgstr ""
1877
 
1878
+ #: modules/autolinks/content-autolinks.php:361
1879
+ msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
1880
  msgstr ""
1881
 
1882
+ #: modules/autolinks/content-autolinks.php:362
1883
+ msgid "Don&#8217;t add autolinks to anchor texts found in this post."
1884
  msgstr ""
1885
 
1886
+ #: modules/autolinks/content-autolinks.php:362
1887
+ msgid "Autolink Exclusion:"
1888
  msgstr ""
1889
 
1890
+ #: modules/autolinks/content-autolinks.php:367
1891
+ msgid ""
1892
+ "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
1893
+ "into this box, Deeplink Juggernaut will search for that anchor in all your "
1894
+ "other posts and link it to this post. For example, if the post you&#8217;re "
1895
+ "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
1896
+ "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
1897
+ "Deeplink Juggernaut will automatically build internal links to this post "
1898
+ "with that anchor text (assuming other posts contain that text)."
1899
  msgstr ""
1900
 
1901
+ #: modules/autolinks/content-autolinks-settings.php:16
1902
+ msgid "Content Deeplink Juggernaut Settings"
1903
  msgstr ""
1904
 
1905
+ #: modules/autolinks/content-autolinks-settings.php:17
1906
+ msgid "Content Link Settings"
1907
  msgstr ""
1908
 
1909
+ #: modules/autolinks/content-autolinks-settings.php:32
1910
+ msgid "Allow posts to link to themselves."
1911
+ msgstr ""
1912
+
1913
+ #: modules/autolinks/content-autolinks-settings.php:32
1914
+ msgid "Self-Linking"
1915
  msgstr ""
1916
 
1917
+ #: modules/autolinks/content-autolinks-settings.php:35
1918
+ msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1919
  msgstr ""
1920
 
1921
+ #: modules/autolinks/content-autolinks-settings.php:36
1922
+ msgid ""
1923
+ "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1924
+ "etc."
1925
  msgstr ""
1926
 
1927
+ #: modules/autolinks/content-autolinks-settings.php:37
1928
+ msgid ""
1929
+ "Don&#8217;t link the same anchor text any more than %d times across my "
1930
+ "entire site."
1931
  msgstr ""
1932
 
1933
+ #: modules/autolinks/content-autolinks-settings.php:38
1934
+ msgid "Quantity Restrictions"
1935
  msgstr ""
1936
 
1937
+ #: modules/autolinks/content-autolinks-settings.php:40
1938
+ msgid ""
1939
+ "Don&#8217;t add autolinks to text within these HTML tags <em>(separate with "
1940
+ "commas)</em>:"
1941
  msgstr ""
1942
 
1943
+ #: modules/autolinks/content-autolinks-settings.php:40
1944
+ msgid "Tag Restrictions"
1945
  msgstr ""
1946
 
1947
+ #: modules/autolinks/content-autolinks-settings.php:48
1948
+ msgid "%s can only link to internal destinations that share at least one..."
1949
  msgstr ""
1950
 
1951
+ #: modules/autolinks/content-autolinks-settings.php:61
1952
+ msgid "Siloing"
1953
  msgstr ""
1954
 
1955
+ #: modules/autolinks/footer-autolinks.php:16
1956
+ msgid "Footer Deeplink Juggernaut"
1957
  msgstr ""
1958
 
1959
+ #: modules/autolinks/footer-autolinks.php:177
1960
+ msgid "Link Location (optional)"
1961
  msgstr ""
1962
 
1963
+ #: modules/autolinks/footer-autolinks.php:205
1964
+ msgid "Match child content"
1965
  msgstr ""
1966
 
1967
+ #: modules/autolinks/footer-autolinks.php:207
1968
+ msgid "Negative match"
1969
  msgstr ""
1970
 
1971
  #: modules/autolinks/footer-autolinks-settings.php:16
1992
  msgid "Link Separator"
1993
  msgstr ""
1994
 
1995
+ #: plugin/class.su-installer.php:9
1996
+ msgid "Package not available."
1997
  msgstr ""
1998
 
1999
+ #: plugin/class.su-installer.php:12
2000
+ msgid "Removing the current version of the plugin&#8230;"
2001
  msgstr ""
2002
 
2003
+ #: plugin/class.su-installer.php:13
2004
+ msgid "Could not remove the current version of the plugin."
 
 
 
2005
  msgstr ""
2006
 
2007
+ #: plugin/class.su-installer.php:17
2008
+ msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
 
2009
  msgstr ""
2010
 
2011
+ #: plugin/class.su-installer.php:18
2012
+ msgid "Unpacking the downgrade&#8230;"
 
2013
  msgstr ""
2014
 
2015
+ #: plugin/class.su-installer.php:19
2016
+ msgid "Installing the downgrade&#8230;"
2017
  msgstr ""
2018
 
2019
+ #: plugin/class.su-installer.php:20
2020
+ msgid "Plugin downgrade failed."
 
2021
  msgstr ""
2022
 
2023
+ #: plugin/class.su-installer.php:21
2024
+ msgid "Plugin downgraded successfully."
 
2025
  msgstr ""
2026
 
2027
+ #: plugin/class.su-installer.php:24
2028
+ msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
 
2029
  msgstr ""
2030
 
2031
+ #: plugin/class.su-installer.php:25
2032
+ msgid "Unpacking the reinstall&#8230;"
 
2033
  msgstr ""
2034
 
2035
+ #: plugin/class.su-installer.php:26
2036
+ msgid "Reinstalling the current version&#8230;"
 
2037
  msgstr ""
2038
 
2039
+ #: plugin/class.su-installer.php:27
2040
+ msgid "Plugin reinstallation failed."
2041
  msgstr ""
2042
 
2043
+ #: plugin/class.su-installer.php:28
2044
+ msgid "Plugin reinstalled successfully."
2045
  msgstr ""
2046
 
2047
+ #: plugin/class.su-installer.php:32
2048
+ msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
 
2049
  msgstr ""
2050
 
2051
+ #: plugin/class.su-installer.php:33
2052
+ msgid "Unpacking the upgrade&#8230;"
2053
  msgstr ""
2054
 
2055
+ #: plugin/class.su-installer.php:34
2056
+ msgid "Installing the upgrade&#8230;"
 
 
 
 
 
 
2057
  msgstr ""
2058
 
2059
+ #: plugin/class.su-installer.php:35
2060
+ msgid "Plugin upgrade failed."
2061
  msgstr ""
2062
 
2063
+ #: plugin/class.su-installer.php:36
2064
+ msgid "Plugin upgraded successfully."
2065
  msgstr ""
2066
 
2067
+ #: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
2068
+ msgid "%s and %s"
2069
  msgstr ""
2070
 
2071
+ #: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
2072
+ msgid ", "
2073
  msgstr ""
2074
 
2075
+ #: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
2076
+ msgid "%s, and %s"
2077
  msgstr ""
2078
 
2079
+ #: plugin/class.seo-ultimate.php:767
2080
+ msgid "SEO"
 
 
2081
  msgstr ""
2082
 
2083
+ #: plugin/class.seo-ultimate.php:956
2084
  msgid ""
2085
+ "It looks like you made changes to the settings of this SEO Ultimate module. "
2086
+ "If you leave before saving, those changes will be lost."
2087
  msgstr ""
2088
 
2089
+ #: plugin/class.seo-ultimate.php:1050
2090
+ msgid "SEO Settings Help"
2091
  msgstr ""
2092
 
2093
+ #: plugin/class.seo-ultimate.php:1052
2094
+ msgid "The SEO Settings box lets you customize these settings:"
2095
+ msgstr ""
2096
+
2097
+ #: plugin/class.seo-ultimate.php:1054
2098
+ msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
2099
+ msgstr ""
2100
+
2101
+ #: plugin/class.seo-ultimate.php:1109
2102
  msgid ""
2103
+ "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
2104
+ "1$s to avoid plugin conflicts."
2105
  msgstr ""
2106
 
2107
+ #: plugin/class.seo-ultimate.php:1151
2108
+ msgid "new module"
2109
  msgstr ""
2110
 
2111
+ #: plugin/class.seo-ultimate.php:1151
2112
+ msgid "new modules"
2113
  msgstr ""
2114
 
2115
+ #: plugin/class.seo-ultimate.php:1152
2116
+ msgid "new feature"
2117
  msgstr ""
2118
 
2119
+ #: plugin/class.seo-ultimate.php:1152
2120
+ msgid "new features"
2121
  msgstr ""
2122
 
2123
+ #: plugin/class.seo-ultimate.php:1153
2124
+ msgid "bugfix"
2125
  msgstr ""
2126
 
2127
+ #: plugin/class.seo-ultimate.php:1153
2128
+ msgid "bugfixes"
2129
  msgstr ""
2130
 
2131
+ #: plugin/class.seo-ultimate.php:1154
2132
+ msgid "improvement"
2133
  msgstr ""
2134
 
2135
+ #: plugin/class.seo-ultimate.php:1154
2136
+ msgid "improvements"
2137
+ msgstr ""
2138
+
2139
+ #: plugin/class.seo-ultimate.php:1155
2140
+ msgid "security fix"
2141
+ msgstr ""
2142
+
2143
+ #: plugin/class.seo-ultimate.php:1155
2144
+ msgid "security fixes"
2145
+ msgstr ""
2146
+
2147
+ #: plugin/class.seo-ultimate.php:1186
2148
+ msgid "%d %s"
2149
+ msgstr ""
2150
+
2151
+ #: plugin/class.seo-ultimate.php:1192
2152
+ msgid "Upgrade now to get %s. %s."
2153
  msgstr ""
2154
 
2155
+ #: plugin/class.seo-ultimate.php:1194
2156
+ msgid "View changelog"
2157
+ msgstr ""
2158
+
2159
+ #: plugin/class.seo-ultimate.php:1270
2160
+ msgid "Active Modules: "
2161
+ msgstr ""
2162
+
2163
+ #: plugin/class.seo-ultimate.php:1331
2164
  msgid ""
2165
+ "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
2166
+ "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
2167
+ "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
2168
+ "to everyone."
2169
+ msgstr ""
2170
+
2171
+ #: plugin/class.seo-ultimate.php:1453
2172
+ msgid "SEO Settings"
2173
+ msgstr ""
2174
+
2175
+ #: plugin/class.seo-ultimate.php:1671
2176
+ msgid "Home"
2177
+ msgstr ""
2178
+
2179
+ #: plugin/class.seo-ultimate.php:1740
2180
+ msgid "Author Archives"
2181
  msgstr ""
2182
 
2183
  #: includes/jlwp/functions.php:60