SEO Ultimate - Version 6.9

Version Description

Download this release

Release Info

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

Code changes from version 6.8 to 6.9

modules/settings/settings-data.php CHANGED
@@ -107,16 +107,22 @@ class SU_SettingsData extends SU_Module {
107
  , 'to_type' => 'Destination Type'
108
  , 'to_id' => 'Destination'
109
  , 'title' => 'Title'
 
110
  , 'nofollow' => 'Nofollow'
111
  , 'target' => 'Target'
112
  );
113
  if (is_array($djlinks) && count($djlinks)) {
114
  $djlinks = suarr::key_replace($djlinks, $csv_headers, true, true);
115
- $djlinks = suarr::value_replace($djlinks, array(
 
 
 
 
 
116
  0 => 'No'
117
  , 1 => 'Yes'
118
- , 'url' => 'URL'
119
- ), true, false);
120
  } else
121
  $djlinks = array(array_fill_keys($csv_headers, ''));
122
 
@@ -139,6 +145,7 @@ class SU_SettingsData extends SU_Module {
139
  , 'Destination' => 'to_id'
140
  , 'URL' => 'to_id'
141
  , 'Title' => 'title'
 
142
  , 'Nofollow' => 'nofollow'
143
  , 'Target' => 'target'
144
  ), true, true);
107
  , 'to_type' => 'Destination Type'
108
  , 'to_id' => 'Destination'
109
  , 'title' => 'Title'
110
+ , 'sitewide_lpa' => 'Site Cap'
111
  , 'nofollow' => 'Nofollow'
112
  , 'target' => 'Target'
113
  );
114
  if (is_array($djlinks) && count($djlinks)) {
115
  $djlinks = suarr::key_replace($djlinks, $csv_headers, true, true);
116
+
117
+ $djlinks['to_type'] = suarr::value_replace($djlinks['to_type'], array(
118
+ 'url' => 'URL'
119
+ ), false, false);
120
+
121
+ $djlinks['nofollow'] = suarr::value_replace($djlinks['nofollow'], array(
122
  0 => 'No'
123
  , 1 => 'Yes'
124
+ ), false, false);
125
+
126
  } else
127
  $djlinks = array(array_fill_keys($csv_headers, ''));
128
 
145
  , 'Destination' => 'to_id'
146
  , 'URL' => 'to_id'
147
  , 'Title' => 'title'
148
+ , 'Site Cap' => 'sidewide_lpa'
149
  , 'Nofollow' => 'nofollow'
150
  , 'Target' => 'target'
151
  ), true, true);
modules/wp-settings/index.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ header('Status: 403 Forbidden');
3
+ header('HTTP/1.1 403 Forbidden');
4
+ ?>
modules/wp-settings/wp-settings.php ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Settings Monitor Module
4
+ *
5
+ * @since 6.9
6
+ */
7
+
8
+ if (class_exists('SU_Module')) {
9
+
10
+ class SU_WpSettings extends SU_Module {
11
+
12
+ var $results = array();
13
+
14
+ function get_module_title() { return __('Settings Monitor (Beta)', 'seo-ultimate'); }
15
+ function get_menu_title() { return __('Settings Monitor', 'seo-ultimate'); }
16
+
17
+ function has_menu_count() { return true; }
18
+ function get_menu_count() {
19
+ $count = 0;
20
+ foreach ($this->results as $data) {
21
+ if ($data[0] == SU_RESULT_ERROR) $count++;
22
+ }
23
+ return $count;
24
+ }
25
+
26
+ function init() {
27
+
28
+ if (is_admin()) {
29
+ if (get_option('blog_public'))
30
+ $this->results[] = array(SU_RESULT_OK, __('Blog is visible to search engines', 'seo-ultimate'),
31
+ __('WordPress will allow search engines to visit your site.', 'seo-ultimate'));
32
+ else
33
+ $this->results[] = array(SU_RESULT_ERROR, __('Blog is hidden from search engines', 'seo-ultimate'),
34
+ __('WordPress is configured to block search engines. This will nullify your site&#8217;s SEO and should be resolved immediately.', 'seo-ultimate'), 'options-privacy.php');
35
+
36
+ switch (suwp::permalink_mode()) {
37
+ case SUWP_QUERY_PERMALINKS:
38
+ $this->results[] = array(SU_RESULT_ERROR, __('Query-string permalinks enabled', 'seo-ultimate'),
39
+ __('It is highly recommended that you use a non-default and non-numeric permalink structure.', 'seo-ultimate'), 'options-permalink.php');
40
+ break;
41
+
42
+ case SUWP_INDEX_PERMALINKS:
43
+ $this->results[] = array(SU_RESULT_WARNING, __('Pathinfo permalinks enabled', 'seo-ultimate'),
44
+ __('Pathinfo permalinks add a keyword-less &#8220;index.php&#8221; prefix. This is not ideal, but it may be beyond your control (since it&#8217;s likely caused by your site&#8217;s web hosting setup).', 'seo-ultimate'), 'options-permalink.php');
45
+
46
+ case SUWP_PRETTY_PERMALINKS:
47
+
48
+ if (strpos(get_option('permalink_structure'), '%postname%') !== false)
49
+ $this->results[] = array(SU_RESULT_OK, __('Permalinks include the post slug', 'seo-ultimate'),
50
+ __('Including a version of the post&#8217;s title helps provide keyword-rich URLs.', 'seo-ultimate'));
51
+ else
52
+ $this->results[] = array(SU_RESULT_ERROR, __('Permalinks do not include the post slug', 'seo-ultimate'),
53
+ __('It is highly recommended that you include the %postname% variable in the permalink structure.', 'seo-ultimate'), 'options-permalink.php');
54
+
55
+ break;
56
+ }
57
+ }
58
+ }
59
+
60
+ function admin_page_contents() {
61
+
62
+ echo "\n<p>";
63
+ _e("Settings Monitor analyzes your blog&#8217;s settings and notifies you of any problems. If any issues are found, they will show up in red or yellow below.", 'seo-ultimate');
64
+ echo "</p>\n";
65
+
66
+ echo "<table class='report'>\n";
67
+
68
+ $first = true;
69
+ foreach ($this->results as $data) {
70
+
71
+ $result = $data[0];
72
+ $title = $data[1];
73
+ $desc = $data[2];
74
+ $url = isset($data[3]) ? $data[3] : false;
75
+ $action = isset($data[4]) ? $data[4] : __('Go to setting &raquo;', 'seo-ultimate');
76
+
77
+ switch ($result) {
78
+ case SU_RESULT_OK: $class='success'; break;
79
+ case SU_RESULT_ERROR: $class='error'; break;
80
+ default: $class='warning'; break;
81
+ }
82
+
83
+ if ($result == SU_RESULT_OK || !$url)
84
+ $link='';
85
+ else {
86
+ if (substr($url, 0, 7) == 'http://') $target = " target='_blank'"; else $target='';
87
+ $link = "<a href='$url'$target>$action</a>";
88
+ }
89
+
90
+ if ($first) { $firstclass = " class='first'"; $first = false; } else $firstclass='';
91
+ echo "\t<tr$firstclass>\n\t\t<td><div class='su-$class'><strong>$title</strong></div><div>$desc</div><div>$link</div></td>\n\t</tr>\n";
92
+ }
93
+
94
+ echo "</table>\n\n";
95
+ }
96
+ }
97
+
98
+ }
99
+ ?>
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions, JohnLamansky
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.2
5
  Tested up to: 3.2
6
- Stable tag: 6.8
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
@@ -11,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.8 adds rewrite method selection for Title Tag Rewriter
15
  * Version 6.7 adds 3 more features to Deeplink Juggernaut
16
  * Version 6.6 adds the SEO Ultimate Widgets module
17
  * Version 6.5 features Deeplink Juggernaut 3.0
18
- * Version 6.4 adds 3 more features to Deeplink Juggernaut
19
 
20
  = Features =
21
 
@@ -136,6 +136,9 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
136
  * Lets you output your Deeplink Juggernaut Footer Links in a widget
137
  * The Siloed Categories widget makes it drag-and-drop-easy to construct siloed navigation on your site
138
 
 
 
 
139
  * **Settings Manager**
140
  * Export your SEO Ultimate settings to a file and re-import later if desired.
141
  * Move SEO Ultimate settings between blogs using the export/import functionality.
@@ -254,6 +257,10 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
254
 
255
  == Changelog ==
256
 
 
 
 
 
257
  = Version 6.8 (July 18, 2011) =
258
  * Feature: Title Tag Rewriter now supports `wp_title` filtering in addition to output buffering. A new Settings field lets you choose between the two rewrite methods.
259
  * Feature: Deeplink Juggernaut now lets you control which post types have autolinks added to them
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.2
5
  Tested up to: 3.2
6
+ Stable tag: 6.9
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.9 adds the Settings Monitor module
15
  * Version 6.8 adds rewrite method selection for Title Tag Rewriter
16
  * Version 6.7 adds 3 more features to Deeplink Juggernaut
17
  * Version 6.6 adds the SEO Ultimate Widgets module
18
  * Version 6.5 features Deeplink Juggernaut 3.0
 
19
 
20
  = Features =
21
 
136
  * Lets you output your Deeplink Juggernaut Footer Links in a widget
137
  * The Siloed Categories widget makes it drag-and-drop-easy to construct siloed navigation on your site
138
 
139
+ * **Settings Monitor** - NEW in Version 6.9
140
+ * Keep tabs on the SEO-friendliness of your site's settings with a dashboard of green/yellow/red indicators
141
+
142
  * **Settings Manager**
143
  * Export your SEO Ultimate settings to a file and re-import later if desired.
144
  * Move SEO Ultimate settings between blogs using the export/import functionality.
257
 
258
  == Changelog ==
259
 
260
+ = Version 6.9 (July 20, 2011) =
261
+ * New Module: Settings Monitor
262
+ * Bugfix: Deeplink Juggernaut CSV import/export now maintains Site Cap values
263
+
264
  = Version 6.8 (July 18, 2011) =
265
  * Feature: Title Tag Rewriter now supports `wp_title` filtering in addition to output buffering. A new Settings field lets you choose between the two rewrite methods.
266
  * Feature: Deeplink Juggernaut now lets you control which post types have autolinks added to them
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.8
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.8
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.1.3');
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
- define('SU_VERSION', '6.8');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/6.8');
54
 
55
  /********** INCLUDES **********/
56
 
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.9
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.9
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
+ define('SU_VERSION', '6.9');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/6.9');
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.8\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
- "POT-Creation-Date: 2011-07-18 16:38:37+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -19,2240 +19,2317 @@ msgid ""
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
- #: modules/class.su-module.php:375
23
- msgid ""
24
- "(Note: This translated documentation was designed for an older version of "
25
- "SEO Ultimate and may be outdated.)"
26
  msgstr ""
27
 
28
- #: modules/class.su-module.php:658
29
- msgid ""
30
- "All the modules on this page have been disabled. You can re-enable them "
31
- "using the <a href=\"%s\">Module Manager</a>."
32
  msgstr ""
33
 
34
- #: modules/class.su-module.php:1017
35
- msgctxt "Dropdown Title"
36
- msgid "%s &mdash; %s"
 
37
  msgstr ""
38
 
39
- #: modules/class.su-module.php:1045
40
- msgid "%1$s | %2$s %3$s by %4$s"
41
  msgstr ""
42
 
43
- #: modules/class.su-module.php:1124
44
- msgid "Your site currently doesn&#8217;t have any public items of this type."
45
  msgstr ""
46
 
47
- #: modules/class.su-module.php:1208
48
- msgid "&laquo;"
49
  msgstr ""
50
 
51
- #: modules/class.su-module.php:1209
52
- msgid "&raquo;"
 
 
53
  msgstr ""
54
 
55
- #: modules/class.su-module.php:1216
56
- msgid "Displaying %s&#8211;%s of %s"
57
  msgstr ""
58
 
59
- #: modules/class.su-module.php:1229 modules/404s/fofs-log.php:113
60
- msgid "Actions"
61
  msgstr ""
62
 
63
- #: modules/class.su-module.php:1230
64
- msgid "ID"
65
  msgstr ""
66
 
67
- #: modules/class.su-module.php:1264
68
- msgid "View"
69
  msgstr ""
70
 
71
- #: modules/class.su-module.php:1266
72
- msgid "Edit"
73
  msgstr ""
74
 
75
- #: modules/class.su-module.php:1430
76
- msgid "Settings updated."
77
  msgstr ""
78
 
79
- #: modules/class.su-module.php:1451
80
- msgid "Save Changes"
81
  msgstr ""
82
 
83
- #: modules/class.su-module.php:1962
84
- msgid ""
85
- "Are you sure you want to replace the textbox contents with this default "
86
- "value?"
87
  msgstr ""
88
 
89
- #: modules/class.su-module.php:1978 modules/settings/settings-data.php:23
90
- msgid "Reset"
91
  msgstr ""
92
 
93
- #: modules/class.su-module.php:2588 modules/meta/meta-keywords.php:34
94
- #: modules/meta/meta-descriptions.php:25 plugin/class.seo-ultimate.php:1672
95
- msgid "Blog Homepage"
96
  msgstr ""
97
 
98
- #: modules/class.su-module.php:2592 plugin/class.seo-ultimate.php:1746
99
- msgid "Author"
100
  msgstr ""
101
 
102
- #: modules/class.su-module.php:2612
103
- msgid "Type a URL or start typing the name of the item you want to link to"
104
  msgstr ""
105
 
106
- #: modules/class.su-module.php:2624
107
- msgid "Remove this destination"
108
  msgstr ""
109
 
110
- #: modules/class.su-module.php:2624
111
- msgid "X"
112
  msgstr ""
113
 
114
- #: modules/class.su-importmodule.php:49
115
- msgid "Import Post Fields"
116
  msgstr ""
117
 
118
- #: modules/class.su-importmodule.php:50
119
  msgid ""
120
- "Post fields store the SEO data for your posts/pages (i.e. your custom title "
121
- "tags, meta descriptions, and meta keywords). If you provided custom titles/"
122
- "descriptions/keywords to %s, this importer can move that data over to SEO "
123
- "Ultimate."
124
  msgstr ""
125
 
126
- #: modules/class.su-importmodule.php:53
127
- msgid "Conflict Resolution Mode"
128
  msgstr ""
129
 
130
- #: modules/class.su-importmodule.php:54
131
- msgid ""
132
- "What should the import tool do if it tries to move over a post&#8217;s %s "
133
- "data, but different data already exists in the corresponding SEO Ultimate "
134
- "fields?"
135
  msgstr ""
136
 
137
- #: modules/class.su-importmodule.php:56
138
- msgid "Skip that post and leave all data as-is (default)."
 
139
  msgstr ""
140
 
141
- #: modules/class.su-importmodule.php:57
142
- msgid "Delete the SEO Ultimate data and replace it with the %s data."
143
  msgstr ""
144
 
145
- #: modules/class.su-importmodule.php:58
146
- msgid "Keep the SEO Ultimate data and delete the %s data."
147
  msgstr ""
148
 
149
- #: modules/class.su-importmodule.php:61
150
- msgid "Deletion Preference"
151
  msgstr ""
152
 
153
- #: modules/class.su-importmodule.php:62
154
- msgid ""
155
- "When the migration tool successfully copies a post&#8217;s %1$s data over to "
156
- "SEO Ultimate, what should it do with the old %1$s data?"
157
  msgstr ""
158
 
159
- #: modules/class.su-importmodule.php:64
160
- msgid "Delete the %s data."
161
  msgstr ""
162
 
163
- #: modules/class.su-importmodule.php:65
164
- msgid "Leave behind the duplicate %s data (default)."
165
  msgstr ""
166
 
167
- #: modules/class.su-importmodule.php:72
168
- msgid "Import Now"
169
  msgstr ""
170
 
171
- #: modules/class.su-importmodule.php:75
172
- msgid ""
173
- "The import cannot be undone. It is your responsibility to <a href=\"%s\" "
174
- "target=\"_blank\">backup your database</a> before proceeding!"
175
  msgstr ""
176
 
177
- #: modules/class.su-importmodule.php:84
178
- msgid "Import complete."
179
  msgstr ""
180
 
181
- #: modules/class.su-importmodule.php:90
182
- msgid "Return to import page"
183
  msgstr ""
184
 
185
- #: modules/class.su-importmodule.php:93
186
- msgid "Return to settings page"
187
  msgstr ""
188
 
189
- #: modules/class.su-importmodule.php:96
190
- msgid "Return to SEO page"
191
  msgstr ""
192
 
193
- #: modules/class.su-importmodule.php:116
194
- msgid "Deactivated %s."
195
  msgstr ""
196
 
197
- #: modules/class.su-importmodule.php:174
198
- msgid "Imported a total of %d fields for one post/page/revision."
199
- msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
200
- msgstr[0] ""
201
- msgstr[1] ""
202
-
203
- #: modules/class.su-importmodule.php:180
204
- msgid "Skipped one post with disabled %2$s data."
205
- msgid_plural "Skipped %1$d posts with disabled %2$s data."
206
- msgstr[0] ""
207
- msgstr[1] ""
208
-
209
- #: modules/class.su-importmodule.php:186
210
- msgid ""
211
- "Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
212
- "settings you chose."
213
- msgid_plural ""
214
- "Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
215
- "settings you chose."
216
- msgstr[0] ""
217
- msgstr[1] ""
218
-
219
- #: modules/class.su-importmodule.php:192
220
- msgid "Deleted one %2$s field, as instructed by the settings you chose."
221
- msgid_plural ""
222
- "Deleted %1$d %2$s fields, as instructed by the settings you chose."
223
- msgstr[0] ""
224
- msgstr[1] ""
225
 
226
- #: modules/rich-snippets/rich-snippets.php:12
227
- msgid "Rich Snippet Creator"
228
  msgstr ""
229
 
230
- #: modules/rich-snippets/rich-snippets.php:17
231
- msgid ""
232
- "Reviews\n"
233
- "Review"
234
  msgstr ""
235
 
236
- #: modules/rich-snippets/rich-snippets.php:28
237
- msgid "Data Format"
238
  msgstr ""
239
 
240
- #: modules/rich-snippets/rich-snippets.php:29
241
- msgid "Categories/Tags That Indicate Reviews"
242
  msgstr ""
243
 
244
- #: modules/rich-snippets/rich-snippets.php:37
245
- msgid "Microformats (recommended)"
246
  msgstr ""
247
 
248
- #: modules/rich-snippets/rich-snippets.php:43
249
- msgid "HTML5 Microdata"
250
  msgstr ""
251
 
252
- #: modules/rich-snippets/rich-snippets.php:49
253
- msgid "RDFa"
254
  msgstr ""
255
 
256
- #: modules/rich-snippets/rich-snippets.php:62
257
- #: modules/rich-snippets/rich-snippets.php:224
258
- msgid "Review"
259
  msgstr ""
260
 
261
- #: modules/rich-snippets/rich-snippets.php:70
262
- msgid "Item Reviewed"
263
  msgstr ""
264
 
265
- #: modules/rich-snippets/rich-snippets.php:78
266
- msgid "Star Rating"
267
  msgstr ""
268
 
269
- #: modules/rich-snippets/rich-snippets.php:83
270
- msgid "Review Author"
271
  msgstr ""
272
 
273
- #: modules/rich-snippets/rich-snippets.php:89
274
- msgid "Date Reviewed"
275
  msgstr ""
276
 
277
- #: modules/rich-snippets/rich-snippets.php:223
278
- #: modules/rich-snippets/rich-snippets.php:232
279
- msgid "None"
280
  msgstr ""
281
 
282
- #: modules/rich-snippets/rich-snippets.php:225
283
- msgid "Rich Snippet Type:"
284
  msgstr ""
285
 
286
- #: modules/rich-snippets/rich-snippets.php:229
287
- msgid "Name of Reviewed Item:"
288
  msgstr ""
289
 
290
- #: modules/rich-snippets/rich-snippets.php:233
291
- msgid "0.5 stars"
 
292
  msgstr ""
293
 
294
- #: modules/rich-snippets/rich-snippets.php:234
295
- msgid "1 star"
296
  msgstr ""
297
 
298
- #: modules/rich-snippets/rich-snippets.php:235
299
- msgid "1.5 stars"
300
  msgstr ""
301
 
302
- #: modules/rich-snippets/rich-snippets.php:236
303
- msgid "2 stars"
304
  msgstr ""
305
 
306
- #: modules/rich-snippets/rich-snippets.php:237
307
- msgid "2.5 stars"
308
  msgstr ""
309
 
310
- #: modules/rich-snippets/rich-snippets.php:238
311
- msgid "3 stars"
312
  msgstr ""
313
 
314
- #: modules/rich-snippets/rich-snippets.php:239
315
- msgid "3.5 stars"
316
  msgstr ""
317
 
318
- #: modules/rich-snippets/rich-snippets.php:240
319
- msgid "4 stars"
320
  msgstr ""
321
 
322
- #: modules/rich-snippets/rich-snippets.php:241
323
- msgid "4.5 stars"
324
  msgstr ""
325
 
326
- #: modules/rich-snippets/rich-snippets.php:242
327
- msgid "5 stars"
328
  msgstr ""
329
 
330
- #: modules/rich-snippets/rich-snippets.php:243
331
- msgid "Star Rating for Reviewed Item:"
332
  msgstr ""
333
 
334
- #: modules/site-keyword-queries/site-keyword-queries.php:12
335
- msgid "Internal Relevance Researcher"
 
 
336
  msgstr ""
337
 
338
- #: modules/site-keyword-queries/site-keyword-queries.php:13
339
- msgid "Int. Rel. Researcher"
340
  msgstr ""
341
 
342
- #: modules/site-keyword-queries/site-keyword-queries.php:21
343
- msgid "Step 1: Enter Keywords"
344
  msgstr ""
345
 
346
- #: modules/site-keyword-queries/site-keyword-queries.php:23
347
- msgid "(Type one keyword per line)"
348
  msgstr ""
349
 
350
- #: modules/site-keyword-queries/site-keyword-queries.php:25
351
- msgid "Step 2: Set Options and Submit"
352
  msgstr ""
353
 
354
- #: modules/site-keyword-queries/site-keyword-queries.php:27
355
- msgid "Put keywords in quotes"
356
  msgstr ""
357
 
358
- #: modules/site-keyword-queries/site-keyword-queries.php:28
359
- #: modules/competition-queries/competition-queries.php:63
360
- msgid "Show 100 results per page"
361
  msgstr ""
362
 
363
- #: modules/site-keyword-queries/site-keyword-queries.php:30
364
- #: modules/competition-queries/competition-queries.php:65
365
- msgid "Use Google&#8217;s minimal mode"
366
  msgstr ""
367
 
368
- #: modules/site-keyword-queries/site-keyword-queries.php:33
369
- #: modules/competition-queries/competition-queries.php:71
370
- msgid "Submit"
371
  msgstr ""
372
 
373
- #: modules/widgets/widgets.php:12
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"
471
  msgstr ""
472
 
473
- #: modules/titles/titles.php:33 modules/meta/meta-descriptions.php:24
474
- msgid "Default Formats"
475
  msgstr ""
476
 
477
- #: modules/titles/titles.php:34 modules/404s/fofs-settings.php:17
478
- msgid "Settings"
479
  msgstr ""
480
 
481
- #: modules/titles/titles.php:40
482
- msgid "Title Tag"
483
  msgstr ""
484
 
485
- #: modules/titles/titles.php:53
486
  msgid ""
487
- "Convert lowercase category/tag names to title case when used in title tags."
 
488
  msgstr ""
489
 
490
- #: modules/titles/titles.php:53
491
- msgid "Title Tag Variables"
492
  msgstr ""
493
 
494
- #: modules/titles/titles.php:55
495
  msgid ""
496
- "Use output buffering &mdash; no configuration required, but slower (default)"
 
497
  msgstr ""
498
 
499
- #: modules/titles/titles.php:56
500
  msgid ""
501
- "Use filtering &mdash; faster, but configuration required (see the &#8220;"
502
- "Settings Help&#8221; dropdown for details)"
503
  msgstr ""
504
 
505
- #: modules/titles/titles.php:57
506
- msgid "Rewrite Method"
507
  msgstr ""
508
 
509
- #: modules/titles/titles.php:65
510
- msgid "{blog}"
511
  msgstr ""
512
 
513
- #: modules/titles/titles.php:66
514
- msgid "{post} | {blog}"
 
 
515
  msgstr ""
516
 
517
- #: modules/titles/titles.php:67
518
- msgid "{page} | {blog}"
519
  msgstr ""
520
 
521
- #: modules/titles/titles.php:68
522
- msgid "{category} | {blog}"
 
 
 
 
523
  msgstr ""
524
 
525
- #: modules/titles/titles.php:69
526
- msgid "{tag} | {blog}"
 
 
527
  msgstr ""
528
 
529
- #: modules/titles/titles.php:70
530
- msgid "Archives for {month} {day}, {year} | {blog}"
531
  msgstr ""
532
 
533
- #: modules/titles/titles.php:71
534
- msgid "Archives for {month} {year} | {blog}"
535
- msgstr ""
536
-
537
- #: modules/titles/titles.php:72
538
- msgid "Archives for {year} | {blog}"
539
- msgstr ""
540
-
541
- #: modules/titles/titles.php:73
542
- msgid "Posts by {author} | {blog}"
543
  msgstr ""
544
 
545
- #: modules/titles/titles.php:74
546
- msgid "Search Results for {query} | {blog}"
 
 
 
 
547
  msgstr ""
548
 
549
- #: modules/titles/titles.php:75
550
- msgid "404 Not Found | {blog}"
 
 
551
  msgstr ""
552
 
553
- #: modules/titles/titles.php:76
554
- msgid "{title} - Page {num}"
555
  msgstr ""
556
 
557
- #: modules/titles/titles.php:85
558
- msgid "Blog Homepage Title"
559
  msgstr ""
560
 
561
- #: modules/titles/titles.php:86
562
- msgid "Post Title Format"
 
 
 
563
  msgstr ""
564
 
565
- #: modules/titles/titles.php:87
566
- msgid "Page Title Format"
567
  msgstr ""
568
 
569
- #: modules/titles/titles.php:88
570
- msgid "Category Title Format"
 
 
571
  msgstr ""
572
 
573
- #: modules/titles/titles.php:89
574
- msgid "Tag Title Format"
 
 
 
 
575
  msgstr ""
576
 
577
- #: modules/titles/titles.php:90
578
- msgid "Day Archive Title Format"
579
  msgstr ""
580
 
581
- #: modules/titles/titles.php:91
582
- msgid "Month Archive Title Format"
583
  msgstr ""
584
 
585
- #: modules/titles/titles.php:92
586
- msgid "Year Archive Title Format"
 
 
 
 
 
587
  msgstr ""
588
 
589
- #: modules/titles/titles.php:93
590
- msgid "Author Archive Title Format"
591
  msgstr ""
592
 
593
- #: modules/titles/titles.php:94
594
- msgid "Search Title Format"
595
  msgstr ""
596
 
597
- #: modules/titles/titles.php:95
598
- msgid "404 Title Format"
 
 
599
  msgstr ""
600
 
601
- #: modules/titles/titles.php:96
602
- msgid "Pagination Title Format"
 
603
  msgstr ""
604
 
605
- #: modules/titles/titles.php:328
606
- msgid "Title Tag:"
607
  msgstr ""
608
 
609
- #: modules/titles/titles.php:333
610
- msgid ""
611
- "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
612
- "tag. The title appears in visitors&#8217; title bars and in search engine "
613
- "result titles. If this box is left blank, then the <a href=\"admin.php?"
614
- "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
615
  msgstr ""
616
 
617
- #: modules/competition-queries/competition-queries.php:12
618
- msgid "Competition Researcher"
619
  msgstr ""
620
 
621
- #: modules/competition-queries/competition-queries.php:13
622
- msgid "Comp. Researcher"
623
  msgstr ""
624
 
625
- #: modules/competition-queries/competition-queries.php:17
626
- msgid ""
627
- "The Competition Researcher provides you with easy access to various search "
628
- "engine tools which you can use to research multiple search queries or URLs."
629
  msgstr ""
630
 
631
- #: modules/competition-queries/competition-queries.php:21
632
- msgid "Step 1: Choose Your Research Tool"
633
  msgstr ""
634
 
635
- #: modules/competition-queries/competition-queries.php:25
636
- msgid "Keywords"
637
  msgstr ""
638
 
639
- #: modules/competition-queries/competition-queries.php:25
640
- msgid "Normal Search"
641
  msgstr ""
642
 
643
- #: modules/competition-queries/competition-queries.php:25
644
- msgid "Find out how many pages contain the words in each query"
 
 
645
  msgstr ""
646
 
647
- #: modules/competition-queries/competition-queries.php:26
648
- msgid "Phrase Match"
649
  msgstr ""
650
 
651
- #: modules/competition-queries/competition-queries.php:26
652
  msgid ""
653
- "Find out how many &#8220;actual&#8221; pages are competing for each query"
 
 
654
  msgstr ""
655
 
656
- #: modules/competition-queries/competition-queries.php:27
657
- msgid "Allinanchor"
 
 
 
658
  msgstr ""
659
 
660
- #: modules/competition-queries/competition-queries.php:27
661
- msgid "Find out which sites have the most links for each query"
 
 
 
662
  msgstr ""
663
 
664
- #: modules/competition-queries/competition-queries.php:28
665
- msgid "Allintitle"
 
 
666
  msgstr ""
667
 
668
- #: modules/competition-queries/competition-queries.php:28
669
  msgid ""
670
- "Find out which sites have the highest relevance in the title for each query"
 
671
  msgstr ""
672
 
673
- #: modules/competition-queries/competition-queries.php:29
674
- msgid "Allintext"
 
 
675
  msgstr ""
676
 
677
- #: modules/competition-queries/competition-queries.php:29
678
- msgid "Find out which sites have the most relevant content/text on their pages"
679
  msgstr ""
680
 
681
- #: modules/competition-queries/competition-queries.php:30
682
- msgid "Allinurl"
683
  msgstr ""
684
 
685
- #: modules/competition-queries/competition-queries.php:30
686
  msgid ""
687
- "Find out which sites have the most relevant naming conventions for each "
688
- "keyword"
689
  msgstr ""
690
 
691
- #: modules/competition-queries/competition-queries.php:32
692
- msgid "URLs"
693
  msgstr ""
694
 
695
- #: modules/competition-queries/competition-queries.php:32
696
- msgid "Site"
697
  msgstr ""
698
 
699
- #: modules/competition-queries/competition-queries.php:32
700
- msgid "Find out how many pages are indexed for each domain"
701
  msgstr ""
702
 
703
- #: modules/competition-queries/competition-queries.php:33
704
- #: modules/competition-queries/competition-queries.php:38
705
- msgid "Inbound Links"
706
  msgstr ""
707
 
708
- #: modules/competition-queries/competition-queries.php:33
709
- msgid "Find out how many sites link to the domains"
710
  msgstr ""
711
 
712
- #: modules/competition-queries/competition-queries.php:34
713
- #: modules/competition-queries/competition-queries.php:38
714
- msgid "Outbound Links"
715
  msgstr ""
716
 
717
- #: modules/competition-queries/competition-queries.php:34
718
- msgid "Find out how many sites the domains link to"
719
  msgstr ""
720
 
721
- #: modules/competition-queries/competition-queries.php:57
722
- msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
723
  msgstr ""
724
 
725
- #: modules/competition-queries/competition-queries.php:59
726
- msgid "(Type in one per line)"
727
  msgstr ""
728
 
729
- #: modules/competition-queries/competition-queries.php:61
730
- msgid "Step 3: Set Options and Submit"
 
 
731
  msgstr ""
732
 
733
- #: modules/link-nofollow/link-nofollow.php:12
734
- msgid "Nofollow Manager"
 
 
735
  msgstr ""
736
 
737
- #: modules/link-nofollow/link-nofollow.php:53
738
- msgid "Add the nofollow attribute to..."
739
  msgstr ""
740
 
741
- #: modules/link-nofollow/link-nofollow.php:55
742
- msgid "Adjacent post links"
743
  msgstr ""
744
 
745
- #: modules/link-nofollow/link-nofollow.php:56
746
- msgid "Category links (after posts)"
747
  msgstr ""
748
 
749
- #: modules/link-nofollow/link-nofollow.php:57
750
- msgid "Category links (in lists)"
751
  msgstr ""
752
 
753
- #: modules/link-nofollow/link-nofollow.php:58
754
- msgid "Comment anchor links"
755
  msgstr ""
756
 
757
- #: modules/link-nofollow/link-nofollow.php:59
758
- msgid "Comment feed links"
759
  msgstr ""
760
 
761
- #: modules/link-nofollow/link-nofollow.php:60
762
- msgid "Date-based archive links"
763
  msgstr ""
764
 
765
- #: modules/link-nofollow/link-nofollow.php:61
766
- msgid "Pagination navigation links (all)"
767
  msgstr ""
768
 
769
- #: modules/link-nofollow/link-nofollow.php:62
770
- msgid "Pagination navigation links (on blog home only)"
 
 
 
 
 
771
  msgstr ""
772
 
773
- #: modules/link-nofollow/link-nofollow.php:63
774
- msgid "&#8220;Read more&#8221; links"
 
 
775
  msgstr ""
776
 
777
- #: modules/link-nofollow/link-nofollow.php:64
778
- msgid "Registration link"
779
  msgstr ""
780
 
781
- #: modules/link-nofollow/link-nofollow.php:65
782
- msgid "Login link"
783
  msgstr ""
784
 
785
- #: modules/link-nofollow/link-nofollow.php:66
786
- msgid "Tag links (after posts)"
787
  msgstr ""
788
 
789
- #: modules/link-nofollow/link-nofollow.php:67
790
- msgid "Tag links (in lists and clouds)"
791
  msgstr ""
792
 
793
- #: modules/link-nofollow/link-nofollow.php:76
794
- msgid "When displaying page lists, nofollow links to this page"
795
  msgstr ""
796
 
797
- #: modules/link-nofollow/link-nofollow.php:76
798
- msgid "Nofollow:"
799
  msgstr ""
800
 
801
- #: modules/meta/meta-keywords.php:12
802
- msgid "Meta Keywords Editor"
803
  msgstr ""
804
 
805
- #: modules/meta/meta-keywords.php:13 modules/meta/meta-keywords.php:40
806
- msgid "Meta Keywords"
807
  msgstr ""
808
 
809
- #: modules/meta/meta-keywords.php:33 modules/noindex/noindex.php:43
810
- msgid "Default Values"
811
  msgstr ""
812
 
813
- #: modules/meta/meta-keywords.php:56
814
- msgid "The %d most commonly-used words"
815
  msgstr ""
816
 
817
- #: modules/meta/meta-keywords.php:69
818
- msgid "Sitewide Keywords"
819
  msgstr ""
820
 
821
- #: modules/meta/meta-keywords.php:69
822
- msgid "(Separate with commas)"
823
  msgstr ""
824
 
825
- #: modules/meta/meta-keywords.php:76
826
- msgid "Blog Homepage Meta Keywords"
827
  msgstr ""
828
 
829
- #: modules/meta/meta-keywords.php:153
830
- msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
831
  msgstr ""
832
 
833
- #: modules/meta/meta-keywords.php:158
 
 
 
 
834
  msgid ""
835
- "<strong>Keywords</strong> &mdash; The value of the meta keywords tag. The "
836
- "keywords list gives search engines a hint as to what this post/page is "
837
- "about. Be sure to separate keywords with commas, like so: <samp>one,two,"
838
- "three</samp>."
 
839
  msgstr ""
840
 
841
- #: modules/meta/webmaster-verify.php:12
842
- msgid "Webmaster Verification Assistant"
 
 
 
843
  msgstr ""
844
 
845
- #: modules/meta/webmaster-verify.php:13
846
- msgid "W.M. Verification"
847
  msgstr ""
848
 
849
- #: modules/meta/webmaster-verify.php:47
850
- msgid "Google Webmaster Tools"
851
  msgstr ""
852
 
853
- #: modules/meta/webmaster-verify.php:48
854
- msgid "Yahoo! Site Explorer"
855
  msgstr ""
856
 
857
- #: modules/meta/webmaster-verify.php:49
858
- msgid "Bing Webmaster Center"
859
  msgstr ""
860
 
861
- #: modules/meta/meta-robots.php:12
862
- msgid "Meta Robot Tags Editor"
863
  msgstr ""
864
 
865
- #: modules/meta/meta-robots.php:13
866
- msgid "Meta Robot Tags"
867
  msgstr ""
868
 
869
- #: modules/meta/meta-robots.php:22
870
- msgid "Global"
871
  msgstr ""
872
 
873
- #: modules/meta/meta-robots.php:28
874
- msgid "Spider Instructions"
875
  msgstr ""
876
 
877
- #: modules/meta/meta-robots.php:30
878
- msgid ""
879
- "Don&#8217t use this site&#8217s Open Directory description in search results."
880
  msgstr ""
881
 
882
- #: modules/meta/meta-robots.php:31
883
- msgid ""
884
- "Don&#8217t use this site&#8217s Yahoo! Directory description in search "
885
- "results."
886
  msgstr ""
887
 
888
- #: modules/meta/meta-robots.php:32
889
- msgid "Don&#8217t cache or archive this site."
890
  msgstr ""
891
 
892
- #: modules/meta/meta-descriptions.php:12
893
- msgid "Meta Description Editor"
894
  msgstr ""
895
 
896
- #: modules/meta/meta-descriptions.php:13
897
- msgid "Meta Descriptions"
898
  msgstr ""
899
 
900
- #: modules/meta/meta-descriptions.php:31
901
- msgid "Meta Description"
902
  msgstr ""
903
 
904
- #: modules/meta/meta-descriptions.php:48
905
- msgid "Post Description Format"
906
  msgstr ""
907
 
908
- #: modules/meta/meta-descriptions.php:49
909
- msgid "Category Description Format"
910
  msgstr ""
911
 
912
- #: modules/meta/meta-descriptions.php:50
913
- msgid "Post Tag Description Format"
914
  msgstr ""
915
 
916
- #: modules/meta/meta-descriptions.php:57
917
- msgid "Blog Homepage Meta Description"
918
  msgstr ""
919
 
920
- #: modules/meta/meta-descriptions.php:59
921
- msgid "Use this blog&#8217s tagline as the default homepage description."
922
  msgstr ""
923
 
924
- #: modules/meta/meta-descriptions.php:60
925
- msgid "Default Value"
926
  msgstr ""
927
 
928
- #: modules/meta/meta-descriptions.php:122
929
- msgid "Meta Description:"
930
  msgstr ""
931
 
932
- #: modules/meta/meta-descriptions.php:125
933
- msgid "You&#8217;ve entered %s characters. Most search engines use up to 140."
934
  msgstr ""
935
 
936
- #: modules/meta/meta-descriptions.php:133
937
- msgid ""
938
- "<strong>Description</strong> &mdash; The value of the meta description tag. "
939
- "The description will often appear underneath the title in search engine "
940
- "results. Writing an accurate, attention-grabbing description for every post "
941
- "is important to ensuring a good search results clickthrough rate."
942
  msgstr ""
943
 
944
- #: modules/import-aiosp/import-aiosp.php:12
945
- msgid "Import from All in One SEO Pack"
946
  msgstr ""
947
 
948
- #: modules/import-aiosp/import-aiosp.php:13
949
- msgid "AIOSP Import"
950
  msgstr ""
951
 
952
- #: modules/import-aiosp/import-aiosp.php:15
953
- msgid "All in One SEO Pack"
 
 
 
954
  msgstr ""
955
 
956
- #: modules/import-aiosp/import-aiosp.php:16
957
- msgid "AIOSP"
 
958
  msgstr ""
959
 
960
- #: modules/import-aiosp/import-aiosp.php:17
961
- msgid "Import post data (custom title tags and meta tags)."
 
962
  msgstr ""
963
 
964
- #: modules/import-aiosp/import-aiosp.php:21
965
- msgid ""
966
- "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
967
- "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
968
- "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
969
- "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
970
- "to be currently installed or activated for the import to take place."
971
  msgstr ""
972
 
973
- #: modules/import-aiosp/import-aiosp.php:23
974
- msgid ""
975
- "The import tool can only move over data from AIOSP version 1.6 or above. If "
976
- "you use an older version of AIOSP, you should update to the latest version "
977
- "first and run AIOSP&#8217;s upgrade process."
978
  msgstr ""
979
 
980
- #: modules/sds-blog/sds-blog.php:12
981
- msgid "Whitepapers"
 
982
  msgstr ""
983
 
984
- #: modules/sds-blog/sds-blog.php:13
985
- msgid "SEO Design Solutions Whitepapers"
986
  msgstr ""
987
 
988
- #. #-#-#-#-# plugin.pot (SEO Ultimate 6.8) #-#-#-#-#
989
- #. Author of the plugin/theme
990
- #: modules/sds-blog/sds-blog.php:49
991
- msgid "SEO Design Solutions"
992
  msgstr ""
993
 
994
- #: modules/sds-blog/sds-blog.php:50
995
- msgid ""
996
- "The search engine optimization articles below are loaded from the website of "
997
- "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
998
- "an article&#8217;s title to read it."
999
  msgstr ""
1000
 
1001
- #: modules/modules/modules.php:12
1002
- msgid "Module Manager"
 
 
1003
  msgstr ""
1004
 
1005
- #: modules/modules/modules.php:13
1006
- msgid "Modules"
 
1007
  msgstr ""
1008
 
1009
- #: modules/modules/modules.php:41
1010
- msgid ""
1011
- "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
1012
- "&#8221; By default, most of these modules are listed in the &#8220;"
1013
- "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
1014
- "you can view documentation by clicking the tabs in the upper-right-hand "
1015
- "corner of your administration screen."
1016
  msgstr ""
1017
 
1018
- #: modules/modules/modules.php:43
1019
- msgid ""
1020
- "The Module Manager lets you disable or hide modules you don&#8217;t use. "
1021
- "You can also silence modules from displaying bubble alerts on the menu."
1022
  msgstr ""
1023
 
1024
- #: modules/modules/modules.php:47
1025
- msgid "Modules updated."
1026
  msgstr ""
1027
 
1028
- #: modules/modules/modules.php:52
1029
- msgid "Status"
 
 
 
 
 
 
 
1030
  msgstr ""
1031
 
1032
- #: modules/modules/modules.php:53
1033
- msgid "Module"
1034
  msgstr ""
1035
 
1036
- #: modules/modules/modules.php:66
1037
- msgid "Enabled"
 
 
 
 
 
 
1038
  msgstr ""
1039
 
1040
- #: modules/modules/modules.php:67
1041
- msgid "Silenced"
1042
  msgstr ""
1043
 
1044
- #: modules/modules/modules.php:68
1045
- msgid "Hidden"
1046
  msgstr ""
1047
 
1048
- #: modules/modules/modules.php:69
1049
- msgid "Disabled"
1050
  msgstr ""
1051
 
1052
- #: modules/slugs/slugs.php:12
1053
- msgid "Slug Optimizer"
1054
  msgstr ""
1055
 
1056
- #: modules/slugs/slugs.php:16
1057
- msgid "Words to Remove"
1058
  msgstr ""
1059
 
1060
- #: modules/404s/fofs.php:11
1061
- msgid "404 Monitor"
1062
  msgstr ""
1063
 
1064
- #: modules/404s/fofs-settings.php:16
1065
- msgid "404 Monitor Settings"
1066
  msgstr ""
1067
 
1068
- #: modules/404s/fofs-settings.php:37
1069
- msgid "Continue monitoring for new 404 errors"
1070
  msgstr ""
1071
 
1072
- #: modules/404s/fofs-settings.php:37
1073
- msgid "Monitoring Settings"
1074
  msgstr ""
1075
 
1076
- #: modules/404s/fofs-settings.php:39
1077
- msgid "Only log these types of 404 errors:"
1078
  msgstr ""
1079
 
1080
- #: modules/404s/fofs-settings.php:40
1081
- msgid "404s generated by search engine spiders"
1082
  msgstr ""
1083
 
1084
- #: modules/404s/fofs-settings.php:41
1085
- msgid "404s with referring URLs"
1086
  msgstr ""
1087
 
1088
- #: modules/404s/fofs-settings.php:42
1089
- msgid "Log Restrictions"
1090
  msgstr ""
1091
 
1092
- #: modules/404s/fofs-settings.php:43
1093
- msgid "Maximum Log Entries"
1094
  msgstr ""
1095
 
1096
- #: modules/404s/fofs-settings.php:44
1097
- msgid "URLs to Ignore"
1098
  msgstr ""
1099
 
1100
- #: modules/404s/fofs-settings.php:44
1101
- msgid "(Use * as wildcard)"
 
1102
  msgstr ""
1103
 
1104
- #: modules/404s/fofs-log.php:16
1105
- msgid "404 Monitor Log"
1106
  msgstr ""
1107
 
1108
- #: modules/404s/fofs-log.php:17
1109
- msgid "Log"
1110
  msgstr ""
1111
 
1112
- #: modules/404s/fofs-log.php:114
1113
- msgid "Hits"
1114
  msgstr ""
1115
 
1116
- #: modules/404s/fofs-log.php:115
1117
- msgid "URL with 404 Error"
 
 
1118
  msgstr ""
1119
 
1120
- #: modules/404s/fofs-log.php:116
1121
- msgid "Date of Most Recent Hit"
 
 
1122
  msgstr ""
1123
 
1124
- #: modules/404s/fofs-log.php:117
1125
- msgid "Referers"
 
 
1126
  msgstr ""
1127
 
1128
- #: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
1129
- msgid "User Agents"
1130
  msgstr ""
1131
 
1132
- #: modules/404s/fofs-log.php:134
1133
  msgid ""
1134
- "New 404 errors will not be recorded because 404 logging is disabled on the "
1135
- "Settings tab."
1136
  msgstr ""
1137
 
1138
- #: modules/404s/fofs-log.php:141
1139
- msgid "The log entry was successfully deleted."
1140
  msgstr ""
1141
 
1142
- #: modules/404s/fofs-log.php:143
1143
- msgid "This log entry has already been deleted."
1144
  msgstr ""
1145
 
1146
- #: modules/404s/fofs-log.php:152
1147
- msgid "The log was successfully cleared."
1148
  msgstr ""
1149
 
1150
- #: modules/404s/fofs-log.php:156
1151
- msgid "No 404 errors in the log."
1152
  msgstr ""
1153
 
1154
- #: modules/404s/fofs-log.php:180
1155
- msgid "Open URL in new window (will not be logged)"
 
1156
  msgstr ""
1157
 
1158
- #: modules/404s/fofs-log.php:181
1159
- msgid "Query Google for cached version of URL (opens in new window)"
1160
  msgstr ""
1161
 
1162
- #: modules/404s/fofs-log.php:182
1163
- msgid "Remove this URL from the log"
1164
  msgstr ""
1165
 
1166
- #: modules/404s/fofs-log.php:185
1167
- msgid "%s at %s"
1168
  msgstr ""
1169
 
1170
- #: modules/404s/fofs-log.php:189
1171
- msgid "View list of referring URLs"
1172
  msgstr ""
1173
 
1174
- #: modules/404s/fofs-log.php:190
1175
- msgid "View list of user agents"
1176
  msgstr ""
1177
 
1178
- #: modules/404s/fofs-log.php:200
1179
- msgid "Referring URLs"
1180
  msgstr ""
1181
 
1182
- #: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
1183
- msgid "Hide list"
 
 
1184
  msgstr ""
1185
 
1186
- #: modules/404s/fofs-log.php:252
1187
- msgid "Are you sure you want to delete all 404 log entries?"
1188
  msgstr ""
1189
 
1190
- #: modules/404s/fofs-log.php:254
1191
- msgid "Clear Log"
1192
  msgstr ""
1193
 
1194
- #: modules/linkbox/linkbox.php:12
1195
- msgid "Linkbox Inserter"
1196
  msgstr ""
1197
 
1198
- #: modules/linkbox/linkbox.php:18
1199
- msgid "Link to this post!"
1200
  msgstr ""
1201
 
1202
- #: modules/linkbox/linkbox.php:45
1203
- msgid "At the end of posts"
1204
  msgstr ""
1205
 
1206
- #: modules/linkbox/linkbox.php:46
1207
- msgid "At the end of pages"
1208
  msgstr ""
1209
 
1210
- #: modules/linkbox/linkbox.php:47
1211
- msgid "When called by the su_linkbox hook"
1212
  msgstr ""
1213
 
1214
- #: modules/linkbox/linkbox.php:48
1215
- msgid "Display linkboxes..."
1216
  msgstr ""
1217
 
1218
- #: modules/linkbox/linkbox.php:49
1219
- msgid "Linkbox HTML"
1220
  msgstr ""
1221
 
1222
- #: modules/more-links/more-links.php:12
1223
- msgid "More Link Customizer"
1224
  msgstr ""
1225
 
1226
- #: modules/more-links/more-links.php:30
1227
- msgid "Default More Link Text"
1228
  msgstr ""
1229
 
1230
- #: modules/more-links/more-links.php:51
1231
- msgid "More Link Text:"
1232
  msgstr ""
1233
 
1234
- #: modules/permalinks/permalinks.php:15
1235
- msgid "Permalink Tweaker"
1236
  msgstr ""
1237
 
1238
- #: modules/permalinks/permalinks.php:44
 
 
 
 
1239
  msgid ""
1240
- "To use the Permalinks Tweaker, you must disable default (query-string) "
1241
- "permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
1242
  msgstr ""
1243
 
1244
- #: modules/permalinks/permalinks.php:62
1245
- msgid "%1$s (turn <code>%2$s</code> into <code>%3$s</code>)"
 
 
1246
  msgstr ""
1247
 
1248
- #: modules/permalinks/permalinks.php:69
1249
- msgid "Remove the URL bases of..."
 
1250
  msgstr ""
1251
 
1252
- #: modules/misc/misc.php:11
1253
- msgid "Miscellaneous"
1254
  msgstr ""
1255
 
1256
- #: modules/misc/misc.php:14
1257
- msgid ""
1258
- "The Miscellaneous page contains modules that don&#8217;t have enough "
1259
- "settings to warrant their own separate admin pages."
1260
  msgstr ""
1261
 
1262
- #: modules/files/files.php:14
1263
- msgid "File Editor"
1264
  msgstr ""
1265
 
1266
- #: modules/files/files.php:53
1267
- msgid ""
1268
- "A .htaccess file exists, but it&#8217;s not writable. You can edit it here "
1269
- "once the file permissions are corrected."
1270
  msgstr ""
1271
 
1272
- #: modules/files/files.php:59
1273
- msgid ""
1274
- "WordPress won&#8217;t be able to display your robots.txt file because the "
1275
- "default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
1276
- "structure</a> is in use."
1277
  msgstr ""
1278
 
1279
- #: modules/files/files.php:66
1280
- msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
1281
  msgstr ""
1282
 
1283
- #: modules/files/files.php:70
1284
- msgid "Enable this custom robots.txt file and disable the default file"
1285
  msgstr ""
1286
 
1287
- #: modules/files/files.php:71
1288
- msgid "Let other plugins add rules to my custom robots.txt file"
1289
  msgstr ""
1290
 
1291
- #: modules/files/files.php:72
1292
- msgid "robots.txt Settings"
1293
  msgstr ""
1294
 
1295
- #: modules/files/files.php:75
 
 
 
 
1296
  msgid ""
1297
- "Please realize that incorrectly editing your robots.txt file could block "
1298
- "search engines from your site."
1299
  msgstr ""
1300
 
1301
- #: modules/files/files.php:79
1302
- msgid ".htaccess"
1303
  msgstr ""
1304
 
1305
- #: modules/files/files.php:82
1306
- msgid ""
1307
- "Also, incorrectly editing your .htaccess file could disable your entire "
1308
- "website. Edit with caution!"
1309
  msgstr ""
1310
 
1311
- #: modules/files/files.php:134
1312
- msgid ""
1313
- "Please note that your privacy settings won&#8217;t have any effect on your "
1314
- "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1315
  msgstr ""
1316
 
1317
- #: modules/canonical/canonical.php:12
1318
- msgid "Canonicalizer"
1319
  msgstr ""
1320
 
1321
- #: modules/canonical/canonical.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1322
  msgid ""
1323
- "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> meta tags."
1324
  msgstr ""
1325
 
1326
- #: modules/canonical/canonical.php:40
1327
- msgid "Send <code>rel=&quot;canonical&quot;</code> HTTP headers."
 
 
1328
  msgstr ""
1329
 
1330
- #: modules/canonical/canonical.php:41
1331
- msgid "Redirect requests for nonexistent pagination."
1332
  msgstr ""
1333
 
1334
- #: modules/user-code/user-code.php:12
1335
- msgid "Code Inserter"
1336
  msgstr ""
1337
 
1338
- #: modules/user-code/user-code.php:27
1339
- msgid "Everywhere"
1340
  msgstr ""
1341
 
1342
- #: modules/user-code/user-code.php:34
1343
- msgid "&lt;head&gt; Tag"
1344
  msgstr ""
1345
 
1346
- #: modules/user-code/user-code.php:35
1347
- msgid "Before Item Content"
1348
  msgstr ""
1349
 
1350
- #: modules/user-code/user-code.php:36
1351
- msgid "After Item Content"
1352
  msgstr ""
1353
 
1354
- #: modules/user-code/user-code.php:37
1355
- msgid "Footer"
1356
  msgstr ""
1357
 
1358
- #: modules/user-code/user-code.php:51
1359
- msgid "Code Inserter module"
1360
  msgstr ""
1361
 
1362
- #: modules/settings/settings-data.php:16
1363
- msgid "Settings Data Manager"
1364
  msgstr ""
1365
 
1366
- #: modules/settings/settings-data.php:17
1367
- msgid "Manage Settings Data"
1368
  msgstr ""
1369
 
1370
- #: modules/settings/settings-data.php:21
1371
- msgid "Import"
1372
  msgstr ""
1373
 
1374
- #: modules/settings/settings-data.php:22
1375
- msgid "Export"
1376
  msgstr ""
1377
 
1378
- #: modules/settings/settings-data.php:82
1379
- msgid "Settings successfully imported."
1380
  msgstr ""
1381
 
1382
- #: modules/settings/settings-data.php:84
1383
  msgid ""
1384
- "The uploaded file is not in the proper format. Settings could not be "
1385
- "imported."
 
 
1386
  msgstr ""
1387
 
1388
- #: modules/settings/settings-data.php:86
1389
- msgid "The settings file could not be uploaded successfully."
1390
  msgstr ""
1391
 
1392
- #: modules/settings/settings-data.php:89
1393
- msgid ""
1394
- "Settings could not be imported because no settings file was selected. Please "
1395
- "click the &#8220;Browse&#8221; button and select a file to import."
1396
  msgstr ""
1397
 
1398
- #: modules/settings/settings-data.php:134
1399
- msgid ""
1400
- "The uploaded file is not in the proper format. Links could not be imported."
1401
  msgstr ""
1402
 
1403
- #: modules/settings/settings-data.php:175
1404
- msgid "Links successfully imported."
1405
  msgstr ""
1406
 
1407
- #: modules/settings/settings-data.php:178
1408
- msgid "The CSV file could not be uploaded successfully."
1409
  msgstr ""
1410
 
1411
- #: modules/settings/settings-data.php:181
 
 
 
 
 
 
 
 
1412
  msgid ""
1413
- "Links could not be imported because no CSV file was selected. Please click "
1414
- "the &#8220;Browse&#8221; button and select a file to import."
 
 
1415
  msgstr ""
1416
 
1417
- #: modules/settings/settings-data.php:191
1418
- msgid "Import SEO Ultimate Settings File"
1419
  msgstr ""
1420
 
1421
- #: modules/settings/settings-data.php:193
1422
  msgid ""
1423
- "You can use this form to upload and import an SEO Ultimate settings file "
1424
- "stored on your computer. (These files can be created using the Export tool.) "
1425
- "Note that importing a file will overwrite your existing settings with those "
1426
- "in the file."
1427
  msgstr ""
1428
 
1429
- #: modules/settings/settings-data.php:197
 
 
 
 
1430
  msgid ""
1431
- "Are you sure you want to import this settings file? This will overwrite your "
1432
- "current settings and cannot be undone."
 
1433
  msgstr ""
1434
 
1435
- #: modules/settings/settings-data.php:198
1436
- msgid "Import Settings File"
1437
  msgstr ""
1438
 
1439
- #: modules/settings/settings-data.php:204
1440
- msgid "Import Deeplink Juggernaut CSV File"
1441
  msgstr ""
1442
 
1443
- #: modules/settings/settings-data.php:206
1444
- msgid ""
1445
- "You can use this form to upload and import a Deeplink Juggernaut CSV file "
1446
- "stored on your computer. (These files can be created using the Export tool.) "
1447
- "Note that importing a file will overwrite your existing links with those in "
1448
- "the file."
1449
  msgstr ""
1450
 
1451
- #: modules/settings/settings-data.php:210
1452
  msgid ""
1453
- "Are you sure you want to import this CSV file? This will overwrite your "
1454
- "current Deeplink Juggernaut links and cannot be undone."
1455
  msgstr ""
1456
 
1457
- #: modules/settings/settings-data.php:211
1458
- msgid "Import CSV File"
1459
  msgstr ""
1460
 
1461
- #: modules/settings/settings-data.php:226
1462
- msgid "Import from Other Plugins"
 
 
 
 
1463
  msgstr ""
1464
 
1465
- #: modules/settings/settings-data.php:228
1466
  msgid ""
1467
- "You can import settings and data from these plugins. Clicking a plugin&#8217;"
1468
- "s name will take you to the importer page, where you can customize "
1469
- "parameters and start the import."
1470
  msgstr ""
1471
 
1472
- #: modules/settings/settings-data.php:248
1473
- msgid "Export SEO Ultimate Settings File"
1474
  msgstr ""
1475
 
1476
- #: modules/settings/settings-data.php:250
1477
- msgid ""
1478
- "You can use this export tool to download an SEO Ultimate settings file to "
1479
- "your computer."
1480
  msgstr ""
1481
 
1482
- #: modules/settings/settings-data.php:252
1483
- msgid ""
1484
- "A settings file includes the data of every checkbox and textbox of every "
1485
- "installed module. It does NOT include site-specific data like logged 404s or "
1486
- "post/page title/meta data (this data would be included in a standard "
1487
- "database backup, however)."
1488
  msgstr ""
1489
 
1490
- #: modules/settings/settings-data.php:255
1491
- msgid "Download Settings File"
1492
  msgstr ""
1493
 
1494
- #: modules/settings/settings-data.php:260
1495
- msgid "Export Deeplink Juggernaut CSV File"
1496
  msgstr ""
1497
 
1498
- #: modules/settings/settings-data.php:262
 
 
 
 
 
 
 
 
 
 
 
 
1499
  msgid ""
1500
- "You can use this export tool to download a CSV file (comma-separated values "
1501
- "file) that contains your Deeplink Juggernaut links. Once you download this "
1502
- "file to your computer, you can edit it using your favorite spreadsheet "
1503
- "program. When you&#8217;re done editing, you can re-upload the file using "
1504
- "the Import tool."
 
 
 
 
 
 
 
 
 
 
 
 
1505
  msgstr ""
1506
 
1507
- #: modules/settings/settings-data.php:265
1508
- msgid "Download CSV File"
1509
  msgstr ""
1510
 
1511
- #: modules/settings/settings-data.php:272
1512
- msgid "All settings have been erased and defaults have been restored."
 
 
1513
  msgstr ""
1514
 
1515
- #: modules/settings/settings-data.php:274
1516
  msgid ""
1517
- "You can erase all your SEO Ultimate settings and restore them to &#8220;"
1518
- "factory defaults&#8221; by clicking the button below."
 
1519
  msgstr ""
1520
 
1521
- #: modules/settings/settings-data.php:277
1522
- msgid ""
1523
- "Are you sure you want to erase all module settings? This cannot be undone."
1524
  msgstr ""
1525
 
1526
- #: modules/settings/settings-data.php:278
1527
- msgid "Restore Default Settings"
1528
  msgstr ""
1529
 
1530
- #: modules/settings/global-settings.php:18
1531
- msgid "Global Settings"
1532
  msgstr ""
1533
 
1534
- #: modules/settings/global-settings.php:40
1535
- msgid "Enable nofollow&#8217;d attribution link"
1536
  msgstr ""
1537
 
1538
- #: modules/settings/global-settings.php:41
1539
- msgid "Enable attribution link CSS styling"
1540
  msgstr ""
1541
 
1542
- #: modules/settings/global-settings.php:42
1543
- msgid "Notify me about unnecessary active plugins"
1544
  msgstr ""
1545
 
1546
- #: modules/settings/global-settings.php:43
1547
- msgid "Insert comments around HTML code insertions"
1548
  msgstr ""
1549
 
1550
- #: modules/settings/settings.php:12
1551
- msgid "Plugin Settings"
 
 
1552
  msgstr ""
1553
 
1554
- #: modules/settings/settings.php:13
1555
- msgid "SEO Ultimate Plugin Settings"
1556
  msgstr ""
1557
 
1558
- #. #-#-#-#-# plugin.pot (SEO Ultimate 6.8) #-#-#-#-#
1559
- #. Plugin Name of the plugin/theme
1560
- #: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:767
1561
- msgid "SEO Ultimate"
1562
  msgstr ""
1563
 
1564
- #: modules/settings/uninstall.php:17
1565
- msgid "Uninstaller"
1566
  msgstr ""
1567
 
1568
- #: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1250
1569
- msgid "Uninstall"
1570
  msgstr ""
1571
 
1572
- #: modules/settings/uninstall.php:27
1573
- msgid ""
1574
- "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
1575
- "files."
1576
  msgstr ""
1577
 
1578
- #: modules/settings/uninstall.php:30
1579
- msgid ""
1580
- "Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
1581
- "your SEO Ultimate settings and cannot be undone."
1582
  msgstr ""
1583
 
1584
- #: modules/settings/uninstall.php:31
1585
- msgid "Uninstall Now"
1586
  msgstr ""
1587
 
1588
- #: modules/settings/uninstall.php:35 modules/settings/uninstall.php:42
1589
- msgid "Uninstall SEO Ultimate"
1590
  msgstr ""
1591
 
1592
- #: modules/settings/uninstall.php:46
1593
- msgid "Deleted settings."
1594
  msgstr ""
1595
 
1596
- #: modules/settings/uninstall.php:53
1597
- msgid "An error occurred while deleting files."
1598
  msgstr ""
1599
 
1600
- #: modules/settings/uninstall.php:55
1601
- msgid "Deleted files."
1602
  msgstr ""
1603
 
1604
- #: modules/settings/uninstall.php:56
1605
- msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
 
 
1606
  msgstr ""
1607
 
1608
- #: modules/settings/install.php:18
1609
- msgid "Upgrade/Downgrade/Reinstall"
1610
  msgstr ""
1611
 
1612
- #: modules/settings/install.php:19
1613
- msgid "Installer"
1614
  msgstr ""
1615
 
1616
- #: modules/settings/install.php:23 modules/settings/install.php:48
1617
- msgid "Upgrade"
1618
  msgstr ""
1619
 
1620
- #: modules/settings/install.php:24 modules/settings/install.php:71
1621
- msgid "Downgrade"
1622
  msgstr ""
1623
 
1624
- #: modules/settings/install.php:25 modules/settings/install.php:86
1625
- msgid "Reinstall"
1626
  msgstr ""
1627
 
1628
- #: modules/settings/install.php:42
1629
  msgid ""
1630
- "From the list below, select the version to which you would like to upgrade. "
1631
- "Then click the &#8220;Upgrade&#8221; button at the bottom of the screen."
1632
  msgstr ""
1633
 
1634
- #: modules/settings/install.php:51
1635
- msgid "You are already running the latest version."
1636
  msgstr ""
1637
 
1638
- #: modules/settings/install.php:53
1639
- msgid ""
1640
- "There was an error retrieving the list of available versions. Please try "
1641
- "again later. You can also upgrade to the latest version of SEO Ultimate "
1642
- "using the WordPress plugin upgrader."
1643
  msgstr ""
1644
 
1645
- #: modules/settings/install.php:62
1646
- msgid ""
1647
- "Downgrading is provided as a convenience only and is not officially "
1648
- "supported. Although unlikely, you may lose data in the downgrading process. "
1649
- "It is your responsibility to backup your database before proceeding."
1650
  msgstr ""
1651
 
1652
- #: modules/settings/install.php:65
1653
  msgid ""
1654
- "From the list below, select the version to which you would like to "
1655
- "downgrade. Then click the &#8220;Downgrade&#8221; button at the bottom of "
1656
- "the screen."
1657
  msgstr ""
1658
 
1659
- #: modules/settings/install.php:74
1660
- msgid ""
1661
- "Downgrading to versions earlier than %s is not supported because doing so "
1662
- "will result in data loss."
1663
  msgstr ""
1664
 
1665
- #: modules/settings/install.php:76
1666
- msgid ""
1667
- "There was an error retrieving the list of available versions. Please try "
1668
- "again later."
1669
  msgstr ""
1670
 
1671
- #: modules/settings/install.php:81
 
 
 
 
1672
  msgid ""
1673
- "To download and install a fresh copy of the SEO Ultimate version you are "
1674
- "currently using, click the &#8220;Reinstall&#8221; button below."
1675
  msgstr ""
1676
 
1677
- #: modules/settings/install.php:108
1678
- msgid "Your Current Version"
1679
  msgstr ""
1680
 
1681
- #: modules/settings/install.php:110
1682
- msgid "Latest Version"
1683
  msgstr ""
1684
 
1685
- #: modules/settings/install.php:130
1686
- msgid ""
1687
- "You do not have sufficient permissions to upgrade/downgrade plugins for this "
1688
- "blog."
1689
  msgstr ""
1690
 
1691
- #: modules/settings/install.php:140
1692
- msgid "Downgrade to SEO Ultimate %s"
 
1693
  msgstr ""
1694
 
1695
- #: modules/settings/install.php:143
1696
- msgid "Reinstall SEO Ultimate %s"
1697
  msgstr ""
1698
 
1699
- #: modules/settings/install.php:146
1700
- msgid "Upgrade to SEO Ultimate %s"
 
1701
  msgstr ""
1702
 
1703
- #: modules/sharing-buttons/sharing-buttons.php:12
1704
- msgid "Sharing Facilitator"
1705
  msgstr ""
1706
 
1707
- #: modules/sharing-buttons/sharing-buttons.php:25
1708
- msgid "Bookmark and Share"
1709
  msgstr ""
1710
 
1711
- #: modules/sharing-buttons/sharing-buttons.php:39
1712
- msgid "Which provider would you like to use for your sharing buttons?"
1713
  msgstr ""
1714
 
1715
- #: modules/sharing-buttons/sharing-buttons.php:41
1716
- msgid "None; disable sharing buttons"
1717
  msgstr ""
1718
 
1719
- #: modules/sharing-buttons/sharing-buttons.php:42
1720
- msgid "Use the ShareThis button"
 
1721
  msgstr ""
1722
 
1723
- #: modules/sharing-buttons/sharing-buttons.php:43
1724
- msgid "Use the AddThis button"
 
1725
  msgstr ""
1726
 
1727
- #: modules/noindex/noindex.php:12
1728
- msgid "Noindex Manager"
 
1729
  msgstr ""
1730
 
1731
- #: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
1732
- #: modules/noindex/noindex.php:67
1733
- msgid "Noindex"
1734
  msgstr ""
1735
 
1736
- #: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
1737
- #: modules/autolinks/content-autolinks.php:367
1738
- #: modules/autolinks/footer-autolinks.php:218
1739
- msgid "Nofollow"
1740
  msgstr ""
1741
 
1742
- #: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
1743
- msgid "Use default"
 
1744
  msgstr ""
1745
 
1746
- #: modules/noindex/noindex.php:63
1747
- msgid "noindex"
 
 
 
 
 
1748
  msgstr ""
1749
 
1750
- #: modules/noindex/noindex.php:64
1751
- msgid "index"
 
 
1752
  msgstr ""
1753
 
1754
- #: modules/noindex/noindex.php:74
1755
- msgid "nofollow"
1756
  msgstr ""
1757
 
1758
- #: modules/noindex/noindex.php:75
1759
- msgid "follow"
1760
  msgstr ""
1761
 
1762
- #: modules/noindex/noindex.php:89
1763
- msgid ""
1764
- "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
1765
- "block indexing of the entire site, regardless of which options are set below."
1766
  msgstr ""
1767
 
1768
- #: modules/noindex/noindex.php:92
1769
- msgid "Prevent indexing of..."
1770
  msgstr ""
1771
 
1772
- #: modules/noindex/noindex.php:93
1773
- msgid "Administration back-end pages"
1774
  msgstr ""
1775
 
1776
- #: modules/noindex/noindex.php:94
1777
- msgid "Author archives"
1778
  msgstr ""
1779
 
1780
- #: modules/noindex/noindex.php:95
1781
- msgid "Blog search pages"
1782
  msgstr ""
1783
 
1784
- #: modules/noindex/noindex.php:96
1785
- msgid "Category archives"
1786
  msgstr ""
1787
 
1788
- #: modules/noindex/noindex.php:97
1789
- msgid "Comment feeds"
1790
  msgstr ""
1791
 
1792
- #: modules/noindex/noindex.php:98
1793
- msgid "Comment subpages"
1794
  msgstr ""
1795
 
1796
- #: modules/noindex/noindex.php:99
1797
- msgid "Date-based archives"
1798
  msgstr ""
1799
 
1800
- #: modules/noindex/noindex.php:100
1801
- msgid "Subpages of the homepage"
1802
  msgstr ""
1803
 
1804
- #: modules/noindex/noindex.php:101
1805
- msgid "Tag archives"
1806
  msgstr ""
1807
 
1808
- #: modules/noindex/noindex.php:102
1809
- msgid "User login/registration pages"
1810
  msgstr ""
1811
 
1812
- #: modules/noindex/noindex.php:165
1813
- msgid "Noindex: Tell search engines not to index this webpage."
1814
  msgstr ""
1815
 
1816
- #: modules/noindex/noindex.php:166
1817
- msgid "Nofollow: Tell search engines not to spider links on this webpage."
1818
  msgstr ""
1819
 
1820
- #: modules/noindex/noindex.php:167
1821
- msgid "Meta Robots Tag:"
1822
  msgstr ""
1823
 
1824
- #: modules/autolinks/autolinks.php:11
1825
- msgid "Deeplink Juggernaut"
1826
  msgstr ""
1827
 
1828
- #: modules/autolinks/autolinks.php:18
1829
- msgid ""
1830
- "Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
1831
- "(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
1832
- "WordPress 3.2.) If you aren&#8217;t sure how to upgrade PHP, please ask your "
1833
- "webhost. In the meantime, you can return to an older version of Deeplink "
1834
- "Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
1835
- "a> to SEO Ultimate 5.9."
1836
  msgstr ""
1837
 
1838
- #: modules/autolinks/content-autolinks.php:16
1839
- msgid "Content Deeplink Juggernaut"
1840
  msgstr ""
1841
 
1842
- #: modules/autolinks/content-autolinks.php:17
1843
- msgid "Content Links"
1844
  msgstr ""
1845
 
1846
- #: modules/autolinks/content-autolinks.php:259
1847
- #: modules/autolinks/footer-autolinks.php:133
1848
- msgid ""
1849
- "The Content Links section of Deeplink Juggernaut lets you automatically link "
1850
- "a certain word or phrase in your post/page content to a URL you specify."
1851
  msgstr ""
1852
 
1853
- #: modules/autolinks/content-autolinks.php:313
1854
- #: modules/autolinks/footer-autolinks.php:165
1855
- msgid "Edit Existing Links"
1856
  msgstr ""
1857
 
1858
- #: modules/autolinks/content-autolinks.php:317
1859
- #: modules/autolinks/footer-autolinks.php:169
1860
- msgid "Add a New Link"
1861
  msgstr ""
1862
 
1863
- #: modules/autolinks/content-autolinks.php:328
1864
- #: modules/autolinks/footer-autolinks.php:179
1865
- msgid "Anchor Text"
1866
  msgstr ""
1867
 
1868
- #: modules/autolinks/content-autolinks.php:329
1869
- #: modules/autolinks/footer-autolinks.php:180
1870
- msgid "Destination"
1871
  msgstr ""
1872
 
1873
- #: modules/autolinks/content-autolinks.php:330
1874
- #: modules/autolinks/footer-autolinks.php:181
1875
- msgid "Title Attribute"
 
 
 
1876
  msgstr ""
1877
 
1878
- #: modules/autolinks/content-autolinks.php:332
1879
- msgid "Site Cap"
1880
  msgstr ""
1881
 
1882
- #: modules/autolinks/content-autolinks.php:333
1883
- #: modules/autolinks/footer-autolinks.php:182
1884
- msgid "Options"
1885
  msgstr ""
1886
 
1887
- #: modules/autolinks/content-autolinks.php:335
1888
- #: modules/autolinks/footer-autolinks.php:184
1889
- msgid "Delete"
1890
  msgstr ""
1891
 
1892
- #: modules/autolinks/content-autolinks.php:369
1893
- #: modules/autolinks/footer-autolinks.php:220
1894
- msgid "New window"
1895
  msgstr ""
1896
 
1897
- #: modules/autolinks/content-autolinks.php:434
1898
- msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
1899
  msgstr ""
1900
 
1901
- #: modules/autolinks/content-autolinks.php:437
1902
- msgid "Don&#8217;t add autolinks to anchor texts found in this post."
1903
  msgstr ""
1904
 
1905
- #: modules/autolinks/content-autolinks.php:437
1906
- msgid "Autolink Exclusion:"
1907
  msgstr ""
1908
 
1909
- #: modules/autolinks/content-autolinks.php:443
1910
- msgid ""
1911
- "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
1912
- "into this box, Deeplink Juggernaut will search for that anchor in all your "
1913
- "other posts and link it to this post. For example, if the post you&#8217;re "
1914
- "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
1915
- "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
1916
- "Deeplink Juggernaut will automatically build internal links to this post "
1917
- "with that anchor text (assuming other posts contain that text)."
1918
  msgstr ""
1919
 
1920
- #: modules/autolinks/content-autolinks-settings.php:16
1921
- msgid "Content Deeplink Juggernaut Settings"
 
 
1922
  msgstr ""
1923
 
1924
- #: modules/autolinks/content-autolinks-settings.php:17
1925
- msgid "Content Link Settings"
1926
  msgstr ""
1927
 
1928
- #: modules/autolinks/content-autolinks-settings.php:40
1929
- msgid "Add Autolinks to..."
1930
  msgstr ""
1931
 
1932
- #: modules/autolinks/content-autolinks-settings.php:43
1933
- msgid "Allow posts to link to themselves."
1934
  msgstr ""
1935
 
1936
- #: modules/autolinks/content-autolinks-settings.php:44
1937
- msgid ""
1938
- "Allow posts to link to the URL by which the visitor is accessing the post."
1939
  msgstr ""
1940
 
1941
- #: modules/autolinks/content-autolinks-settings.php:45
1942
- msgid "Self-Linking"
1943
  msgstr ""
1944
 
1945
- #: modules/autolinks/content-autolinks-settings.php:48
1946
- msgid "Enable per-link customization of quantity limits."
 
1947
  msgstr ""
1948
 
1949
- #: modules/autolinks/content-autolinks-settings.php:49
1950
- msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1951
  msgstr ""
1952
 
1953
- #: modules/autolinks/content-autolinks-settings.php:50
1954
- msgid ""
1955
- "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1956
- "etc."
1957
  msgstr ""
1958
 
1959
- #: modules/autolinks/content-autolinks-settings.php:51
1960
- msgid ""
1961
- "Don&#8217;t link the same anchor text any more than %d times across my "
1962
- "entire site."
1963
  msgstr ""
1964
 
1965
- #: modules/autolinks/content-autolinks-settings.php:52
1966
- msgid ""
1967
- "Don&#8217;t link to the same destination any more than %d times per post/"
1968
- "page/etc."
1969
  msgstr ""
1970
 
1971
- #: modules/autolinks/content-autolinks-settings.php:53
1972
- msgid "Quantity Restrictions"
 
1973
  msgstr ""
1974
 
1975
- #: modules/autolinks/content-autolinks-settings.php:55
1976
- msgid ""
1977
- "Don&#8217;t add autolinks to text within these HTML tags <em>(separate with "
1978
- "commas)</em>:"
1979
  msgstr ""
1980
 
1981
- #: modules/autolinks/content-autolinks-settings.php:55
1982
- msgid "Tag Restrictions"
1983
  msgstr ""
1984
 
1985
- #: modules/autolinks/content-autolinks-settings.php:63
1986
- msgid "%s can only link to internal destinations that share at least one..."
1987
  msgstr ""
1988
 
1989
- #: modules/autolinks/content-autolinks-settings.php:76
1990
- msgid "Siloing"
1991
  msgstr ""
1992
-
1993
- #: modules/autolinks/footer-autolinks.php:16
1994
- msgid "Footer Deeplink Juggernaut"
1995
  msgstr ""
1996
 
1997
- #: modules/autolinks/footer-autolinks.php:177
1998
- msgid "Link Location (optional)"
1999
  msgstr ""
2000
 
2001
- #: modules/autolinks/footer-autolinks.php:205
2002
- msgid "Match child content"
2003
  msgstr ""
2004
 
2005
- #: modules/autolinks/footer-autolinks.php:207
2006
- msgid "Negative match"
2007
  msgstr ""
2008
 
2009
- #: modules/autolinks/footer-autolinks-settings.php:16
2010
- msgid "Footer Deeplink Juggernaut Settings"
2011
  msgstr ""
2012
 
2013
- #: modules/autolinks/footer-autolinks-settings.php:17
2014
- msgid "Footer Link Settings"
2015
  msgstr ""
2016
 
2017
- #: modules/autolinks/footer-autolinks-settings.php:28
2018
- msgid "HTML Formats"
2019
  msgstr ""
2020
 
2021
- #: modules/autolinks/footer-autolinks-settings.php:31
2022
- msgid "Link Section Format"
2023
  msgstr ""
2024
 
2025
- #: modules/autolinks/footer-autolinks-settings.php:32
2026
- msgid "Link Format"
2027
  msgstr ""
2028
 
2029
- #: modules/autolinks/footer-autolinks-settings.php:34
2030
- msgid "Link Separator"
2031
  msgstr ""
2032
 
2033
- #: plugin/class.su-installer.php:9
2034
- msgid "Package not available."
2035
  msgstr ""
2036
 
2037
- #: plugin/class.su-installer.php:12
2038
- msgid "Removing the current version of the plugin&#8230;"
2039
  msgstr ""
2040
 
2041
- #: plugin/class.su-installer.php:13
2042
- msgid "Could not remove the current version of the plugin."
2043
  msgstr ""
2044
 
2045
- #: plugin/class.su-installer.php:17
2046
- msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
2047
  msgstr ""
2048
 
2049
- #: plugin/class.su-installer.php:18
2050
- msgid "Unpacking the downgrade&#8230;"
2051
  msgstr ""
2052
 
2053
- #: plugin/class.su-installer.php:19
2054
- msgid "Installing the downgrade&#8230;"
2055
  msgstr ""
2056
 
2057
- #: plugin/class.su-installer.php:20
2058
- msgid "Plugin downgrade failed."
 
 
2059
  msgstr ""
2060
 
2061
- #: plugin/class.su-installer.php:21
2062
- msgid "Plugin downgraded successfully."
2063
  msgstr ""
2064
 
2065
- #: plugin/class.su-installer.php:24
2066
- msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
2067
  msgstr ""
2068
 
2069
- #: plugin/class.su-installer.php:25
2070
- msgid "Unpacking the reinstall&#8230;"
2071
  msgstr ""
2072
 
2073
- #: plugin/class.su-installer.php:26
2074
- msgid "Reinstalling the current version&#8230;"
2075
  msgstr ""
2076
 
2077
- #: plugin/class.su-installer.php:27
2078
- msgid "Plugin reinstallation failed."
2079
  msgstr ""
2080
 
2081
- #: plugin/class.su-installer.php:28
2082
- msgid "Plugin reinstalled successfully."
2083
  msgstr ""
2084
 
2085
- #: plugin/class.su-installer.php:32
2086
- msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
2087
  msgstr ""
2088
 
2089
- #: plugin/class.su-installer.php:33
2090
- msgid "Unpacking the upgrade&#8230;"
 
 
2091
  msgstr ""
2092
 
2093
- #: plugin/class.su-installer.php:34
2094
- msgid "Installing the upgrade&#8230;"
2095
  msgstr ""
2096
 
2097
- #: plugin/class.su-installer.php:35
2098
- msgid "Plugin upgrade failed."
 
 
2099
  msgstr ""
2100
 
2101
- #: plugin/class.su-installer.php:36
2102
- msgid "Plugin upgraded successfully."
2103
  msgstr ""
2104
 
2105
- #: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
2106
- msgid "%s and %s"
 
 
 
2107
  msgstr ""
2108
 
2109
- #: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
2110
- msgid ", "
2111
  msgstr ""
2112
 
2113
- #: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
2114
- msgid "%s, and %s"
 
 
2115
  msgstr ""
2116
 
2117
- #: plugin/class.seo-ultimate.php:767
2118
- msgid "SEO"
2119
  msgstr ""
2120
 
2121
- #: plugin/class.seo-ultimate.php:956
2122
  msgid ""
2123
- "It looks like you made changes to the settings of this SEO Ultimate module. "
2124
- "If you leave before saving, those changes will be lost."
2125
  msgstr ""
2126
 
2127
- #: plugin/class.seo-ultimate.php:1050
2128
- msgid "SEO Settings Help"
 
 
2129
  msgstr ""
2130
 
2131
- #: plugin/class.seo-ultimate.php:1052
2132
- msgid "The SEO Settings box lets you customize these settings:"
2133
  msgstr ""
2134
 
2135
- #: plugin/class.seo-ultimate.php:1054
2136
- msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
2137
  msgstr ""
2138
 
2139
- #: plugin/class.seo-ultimate.php:1109
2140
  msgid ""
2141
- "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
2142
- "1$s to avoid plugin conflicts."
2143
- msgstr ""
2144
-
2145
- #: plugin/class.seo-ultimate.php:1151
2146
- msgid "new module"
2147
  msgstr ""
2148
 
2149
- #: plugin/class.seo-ultimate.php:1151
2150
- msgid "new modules"
 
 
 
2151
  msgstr ""
2152
 
2153
- #: plugin/class.seo-ultimate.php:1152
2154
- msgid "new feature"
2155
  msgstr ""
2156
 
2157
- #: plugin/class.seo-ultimate.php:1152
2158
- msgid "new features"
2159
  msgstr ""
2160
 
2161
- #: plugin/class.seo-ultimate.php:1153
2162
- msgid "bugfix"
2163
  msgstr ""
2164
 
2165
- #: plugin/class.seo-ultimate.php:1153
2166
- msgid "bugfixes"
2167
  msgstr ""
2168
 
2169
- #: plugin/class.seo-ultimate.php:1154
2170
- msgid "improvement"
 
 
2171
  msgstr ""
2172
 
2173
- #: plugin/class.seo-ultimate.php:1154
2174
- msgid "improvements"
2175
  msgstr ""
2176
 
2177
- #: plugin/class.seo-ultimate.php:1155
2178
- msgid "security fix"
 
 
2179
  msgstr ""
2180
 
2181
- #: plugin/class.seo-ultimate.php:1155
2182
- msgid "security fixes"
 
 
2183
  msgstr ""
2184
 
2185
- #: plugin/class.seo-ultimate.php:1186
2186
- msgid "%d %s"
2187
  msgstr ""
2188
 
2189
- #: plugin/class.seo-ultimate.php:1192
2190
- msgid "Upgrade now to get %s. %s."
 
 
 
2191
  msgstr ""
2192
 
2193
- #: plugin/class.seo-ultimate.php:1194
2194
- msgid "View changelog"
2195
  msgstr ""
2196
 
2197
- #: plugin/class.seo-ultimate.php:1270
2198
- msgid "Active Modules: "
2199
  msgstr ""
2200
 
2201
- #: plugin/class.seo-ultimate.php:1331
2202
- msgid ""
2203
- "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
2204
- "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
2205
- "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
2206
- "to everyone."
2207
  msgstr ""
2208
 
2209
- #: plugin/class.seo-ultimate.php:1453
2210
- msgid "SEO Settings"
2211
  msgstr ""
2212
 
2213
- #: plugin/class.seo-ultimate.php:1671
2214
- msgid "Home"
2215
  msgstr ""
2216
 
2217
- #: plugin/class.seo-ultimate.php:1740
2218
- msgid "Author Archives"
 
 
 
2219
  msgstr ""
2220
 
2221
- #: includes/jlwp/functions.php:60
2222
- msgid "Posts"
2223
  msgstr ""
2224
 
2225
- #: includes/jlwp/functions.php:60
2226
- msgid "Post"
2227
  msgstr ""
2228
 
2229
- #: includes/jlwp/functions.php:61
2230
- msgid "Pages"
2231
  msgstr ""
2232
 
2233
- #: includes/jlwp/functions.php:61
2234
- msgid "Page"
2235
  msgstr ""
2236
 
2237
- #: includes/jlwp/functions.php:62
2238
- msgid "Attachments"
 
 
2239
  msgstr ""
2240
 
2241
- #: includes/jlwp/functions.php:62
2242
- msgid "Attachment"
2243
  msgstr ""
2244
 
2245
- #: includes/jlwp/functions.php:87
2246
- msgctxt "post format"
2247
- msgid "Format"
2248
  msgstr ""
2249
 
2250
- #: includes/jlwp/functions.php:88
2251
- msgid "Post Format Archives"
2252
  msgstr ""
2253
 
2254
- #: includes/jlwp/functions.php:156
2255
- msgid "backup your database"
2256
  msgstr ""
2257
 
2258
  #. Plugin URI of the plugin/theme
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEO Ultimate 6.9\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
+ "POT-Creation-Date: 2011-07-20 16:22:17+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 6.9) #-#-#-#-#
23
+ #. Plugin Name of the plugin/theme
24
+ #: plugin/class.seo-ultimate.php:767 modules/settings/settings.php:14
25
+ msgid "SEO Ultimate"
26
  msgstr ""
27
 
28
+ #: plugin/class.seo-ultimate.php:767
29
+ msgid "SEO"
 
 
30
  msgstr ""
31
 
32
+ #: plugin/class.seo-ultimate.php:956
33
+ msgid ""
34
+ "It looks like you made changes to the settings of this SEO Ultimate module. "
35
+ "If you leave before saving, those changes will be lost."
36
  msgstr ""
37
 
38
+ #: plugin/class.seo-ultimate.php:1050
39
+ msgid "SEO Settings Help"
40
  msgstr ""
41
 
42
+ #: plugin/class.seo-ultimate.php:1052
43
+ msgid "The SEO Settings box lets you customize these settings:"
44
  msgstr ""
45
 
46
+ #: plugin/class.seo-ultimate.php:1054
47
+ msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
48
  msgstr ""
49
 
50
+ #: plugin/class.seo-ultimate.php:1109
51
+ msgid ""
52
+ "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
53
+ "1$s to avoid plugin conflicts."
54
  msgstr ""
55
 
56
+ #: plugin/class.seo-ultimate.php:1151
57
+ msgid "new module"
58
  msgstr ""
59
 
60
+ #: plugin/class.seo-ultimate.php:1151
61
+ msgid "new modules"
62
  msgstr ""
63
 
64
+ #: plugin/class.seo-ultimate.php:1152
65
+ msgid "new feature"
66
  msgstr ""
67
 
68
+ #: plugin/class.seo-ultimate.php:1152
69
+ msgid "new features"
70
  msgstr ""
71
 
72
+ #: plugin/class.seo-ultimate.php:1153
73
+ msgid "bugfix"
74
  msgstr ""
75
 
76
+ #: plugin/class.seo-ultimate.php:1153
77
+ msgid "bugfixes"
78
  msgstr ""
79
 
80
+ #: plugin/class.seo-ultimate.php:1154
81
+ msgid "improvement"
82
  msgstr ""
83
 
84
+ #: plugin/class.seo-ultimate.php:1154
85
+ msgid "improvements"
 
 
86
  msgstr ""
87
 
88
+ #: plugin/class.seo-ultimate.php:1155
89
+ msgid "security fix"
90
  msgstr ""
91
 
92
+ #: plugin/class.seo-ultimate.php:1155
93
+ msgid "security fixes"
 
94
  msgstr ""
95
 
96
+ #: plugin/class.seo-ultimate.php:1186
97
+ msgid "%d %s"
98
  msgstr ""
99
 
100
+ #: plugin/class.seo-ultimate.php:1192
101
+ msgid "Upgrade now to get %s. %s."
102
  msgstr ""
103
 
104
+ #: plugin/class.seo-ultimate.php:1194
105
+ msgid "View changelog"
106
  msgstr ""
107
 
108
+ #: plugin/class.seo-ultimate.php:1250 modules/settings/uninstall.php:18
109
+ msgid "Uninstall"
110
  msgstr ""
111
 
112
+ #: plugin/class.seo-ultimate.php:1270
113
+ msgid "Active Modules: "
114
  msgstr ""
115
 
116
+ #: plugin/class.seo-ultimate.php:1331
117
  msgid ""
118
+ "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
119
+ "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
120
+ "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
121
+ "to everyone."
122
  msgstr ""
123
 
124
+ #: plugin/class.seo-ultimate.php:1453
125
+ msgid "SEO Settings"
126
  msgstr ""
127
 
128
+ #: plugin/class.seo-ultimate.php:1671
129
+ msgid "Home"
 
 
 
130
  msgstr ""
131
 
132
+ #: plugin/class.seo-ultimate.php:1672 modules/class.su-module.php:2588
133
+ #: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:34
134
+ msgid "Blog Homepage"
135
  msgstr ""
136
 
137
+ #: plugin/class.seo-ultimate.php:1740
138
+ msgid "Author Archives"
139
  msgstr ""
140
 
141
+ #: plugin/class.seo-ultimate.php:1746 modules/class.su-module.php:2592
142
+ msgid "Author"
143
  msgstr ""
144
 
145
+ #: plugin/class.su-installer.php:9
146
+ msgid "Package not available."
147
  msgstr ""
148
 
149
+ #: plugin/class.su-installer.php:12
150
+ msgid "Removing the current version of the plugin&#8230;"
 
 
151
  msgstr ""
152
 
153
+ #: plugin/class.su-installer.php:13
154
+ msgid "Could not remove the current version of the plugin."
155
  msgstr ""
156
 
157
+ #: plugin/class.su-installer.php:17
158
+ msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
159
  msgstr ""
160
 
161
+ #: plugin/class.su-installer.php:18
162
+ msgid "Unpacking the downgrade&#8230;"
163
  msgstr ""
164
 
165
+ #: plugin/class.su-installer.php:19
166
+ msgid "Installing the downgrade&#8230;"
 
 
167
  msgstr ""
168
 
169
+ #: plugin/class.su-installer.php:20
170
+ msgid "Plugin downgrade failed."
171
  msgstr ""
172
 
173
+ #: plugin/class.su-installer.php:21
174
+ msgid "Plugin downgraded successfully."
175
  msgstr ""
176
 
177
+ #: plugin/class.su-installer.php:24
178
+ msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
179
  msgstr ""
180
 
181
+ #: plugin/class.su-installer.php:25
182
+ msgid "Unpacking the reinstall&#8230;"
183
  msgstr ""
184
 
185
+ #: plugin/class.su-installer.php:26
186
+ msgid "Reinstalling the current version&#8230;"
187
  msgstr ""
188
 
189
+ #: plugin/class.su-installer.php:27
190
+ msgid "Plugin reinstallation failed."
191
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
 
193
+ #: plugin/class.su-installer.php:28
194
+ msgid "Plugin reinstalled successfully."
195
  msgstr ""
196
 
197
+ #: plugin/class.su-installer.php:32
198
+ msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
 
 
199
  msgstr ""
200
 
201
+ #: plugin/class.su-installer.php:33
202
+ msgid "Unpacking the upgrade&#8230;"
203
  msgstr ""
204
 
205
+ #: plugin/class.su-installer.php:34
206
+ msgid "Installing the upgrade&#8230;"
207
  msgstr ""
208
 
209
+ #: plugin/class.su-installer.php:35
210
+ msgid "Plugin upgrade failed."
211
  msgstr ""
212
 
213
+ #: plugin/class.su-installer.php:36
214
+ msgid "Plugin upgraded successfully."
215
  msgstr ""
216
 
217
+ #: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
218
+ msgid "%s and %s"
219
  msgstr ""
220
 
221
+ #: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
222
+ msgid ", "
 
223
  msgstr ""
224
 
225
+ #: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
226
+ msgid "%s, and %s"
227
  msgstr ""
228
 
229
+ #: includes/jlwp/functions.php:60
230
+ msgid "Posts"
231
  msgstr ""
232
 
233
+ #: includes/jlwp/functions.php:60
234
+ msgid "Post"
235
  msgstr ""
236
 
237
+ #: includes/jlwp/functions.php:61
238
+ msgid "Pages"
239
  msgstr ""
240
 
241
+ #: includes/jlwp/functions.php:61
242
+ msgid "Page"
 
243
  msgstr ""
244
 
245
+ #: includes/jlwp/functions.php:62
246
+ msgid "Attachments"
247
  msgstr ""
248
 
249
+ #: includes/jlwp/functions.php:62
250
+ msgid "Attachment"
251
  msgstr ""
252
 
253
+ #: includes/jlwp/functions.php:87
254
+ msgctxt "post format"
255
+ msgid "Format"
256
  msgstr ""
257
 
258
+ #: includes/jlwp/functions.php:88
259
+ msgid "Post Format Archives"
260
  msgstr ""
261
 
262
+ #: includes/jlwp/functions.php:156
263
+ msgid "backup your database"
264
  msgstr ""
265
 
266
+ #: modules/404s/fofs-log.php:16
267
+ msgid "404 Monitor Log"
268
  msgstr ""
269
 
270
+ #: modules/404s/fofs-log.php:17
271
+ msgid "Log"
272
  msgstr ""
273
 
274
+ #: modules/404s/fofs-log.php:113 modules/class.su-module.php:1229
275
+ msgid "Actions"
276
  msgstr ""
277
 
278
+ #: modules/404s/fofs-log.php:114
279
+ msgid "Hits"
280
  msgstr ""
281
 
282
+ #: modules/404s/fofs-log.php:115
283
+ msgid "URL with 404 Error"
284
  msgstr ""
285
 
286
+ #: modules/404s/fofs-log.php:116
287
+ msgid "Date of Most Recent Hit"
288
  msgstr ""
289
 
290
+ #: modules/404s/fofs-log.php:117
291
+ msgid "Referers"
292
  msgstr ""
293
 
294
+ #: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
295
+ msgid "User Agents"
296
  msgstr ""
297
 
298
+ #: modules/404s/fofs-log.php:134
299
+ msgid ""
300
+ "New 404 errors will not be recorded because 404 logging is disabled on the "
301
+ "Settings tab."
302
  msgstr ""
303
 
304
+ #: modules/404s/fofs-log.php:141
305
+ msgid "The log entry was successfully deleted."
306
  msgstr ""
307
 
308
+ #: modules/404s/fofs-log.php:143
309
+ msgid "This log entry has already been deleted."
310
  msgstr ""
311
 
312
+ #: modules/404s/fofs-log.php:152
313
+ msgid "The log was successfully cleared."
314
  msgstr ""
315
 
316
+ #: modules/404s/fofs-log.php:156
317
+ msgid "No 404 errors in the log."
318
  msgstr ""
319
 
320
+ #: modules/404s/fofs-log.php:180
321
+ msgid "Open URL in new window (will not be logged)"
322
  msgstr ""
323
 
324
+ #: modules/404s/fofs-log.php:181
325
+ msgid "Query Google for cached version of URL (opens in new window)"
 
326
  msgstr ""
327
 
328
+ #: modules/404s/fofs-log.php:182
329
+ msgid "Remove this URL from the log"
 
330
  msgstr ""
331
 
332
+ #: modules/404s/fofs-log.php:185
333
+ msgid "%s at %s"
 
334
  msgstr ""
335
 
336
+ #: modules/404s/fofs-log.php:189
337
+ msgid "View list of referring URLs"
338
  msgstr ""
339
 
340
+ #: modules/404s/fofs-log.php:190
341
+ msgid "View list of user agents"
 
 
 
342
  msgstr ""
343
 
344
+ #: modules/404s/fofs-log.php:200
345
+ msgid "Referring URLs"
346
  msgstr ""
347
 
348
+ #: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
349
+ msgid "Hide list"
350
  msgstr ""
351
 
352
+ #: modules/404s/fofs-log.php:252
353
+ msgid "Are you sure you want to delete all 404 log entries?"
354
  msgstr ""
355
 
356
+ #: modules/404s/fofs-log.php:254
357
+ msgid "Clear Log"
358
  msgstr ""
359
 
360
+ #: modules/404s/fofs.php:11
361
+ msgid "404 Monitor"
362
  msgstr ""
363
 
364
+ #: modules/404s/fofs-settings.php:16
365
+ msgid "404 Monitor Settings"
 
 
 
366
  msgstr ""
367
 
368
+ #: modules/404s/fofs-settings.php:17 modules/titles/titles.php:34
369
+ msgid "Settings"
370
  msgstr ""
371
 
372
+ #: modules/404s/fofs-settings.php:37
373
+ msgid "Continue monitoring for new 404 errors"
374
  msgstr ""
375
 
376
+ #: modules/404s/fofs-settings.php:37
377
+ msgid "Monitoring Settings"
378
  msgstr ""
379
 
380
+ #: modules/404s/fofs-settings.php:39
381
+ msgid "Only log these types of 404 errors:"
382
  msgstr ""
383
 
384
+ #: modules/404s/fofs-settings.php:40
385
+ msgid "404s generated by search engine spiders"
386
  msgstr ""
387
 
388
+ #: modules/404s/fofs-settings.php:41
389
+ msgid "404s with referring URLs"
390
  msgstr ""
391
 
392
+ #: modules/404s/fofs-settings.php:42
393
+ msgid "Log Restrictions"
394
  msgstr ""
395
 
396
+ #: modules/404s/fofs-settings.php:43
397
+ msgid "Maximum Log Entries"
398
  msgstr ""
399
 
400
+ #: modules/404s/fofs-settings.php:44
401
+ msgid "URLs to Ignore"
402
  msgstr ""
403
 
404
+ #: modules/404s/fofs-settings.php:44
405
+ msgid "(Use * as wildcard)"
406
  msgstr ""
407
 
408
+ #: modules/slugs/slugs.php:12
409
+ msgid "Slug Optimizer"
410
  msgstr ""
411
 
412
+ #: modules/slugs/slugs.php:16
413
+ msgid "Words to Remove"
 
 
414
  msgstr ""
415
 
416
+ #: modules/settings/settings-data.php:16
417
+ msgid "Settings Data Manager"
418
  msgstr ""
419
 
420
+ #: modules/settings/settings-data.php:17
421
+ msgid "Manage Settings Data"
422
  msgstr ""
423
 
424
+ #: modules/settings/settings-data.php:21
425
+ msgid "Import"
426
  msgstr ""
427
 
428
+ #: modules/settings/settings-data.php:22
429
+ msgid "Export"
430
  msgstr ""
431
 
432
+ #: modules/settings/settings-data.php:23 modules/class.su-module.php:1978
433
+ msgid "Reset"
434
  msgstr ""
435
 
436
+ #: modules/settings/settings-data.php:82
437
+ msgid "Settings successfully imported."
438
  msgstr ""
439
 
440
+ #: modules/settings/settings-data.php:84
441
  msgid ""
442
+ "The uploaded file is not in the proper format. Settings could not be "
443
+ "imported."
444
  msgstr ""
445
 
446
+ #: modules/settings/settings-data.php:86
447
+ msgid "The settings file could not be uploaded successfully."
448
  msgstr ""
449
 
450
+ #: modules/settings/settings-data.php:89
451
  msgid ""
452
+ "Settings could not be imported because no settings file was selected. Please "
453
+ "click the &#8220;Browse&#8221; button and select a file to import."
454
  msgstr ""
455
 
456
+ #: modules/settings/settings-data.php:140
457
  msgid ""
458
+ "The uploaded file is not in the proper format. Links could not be imported."
 
459
  msgstr ""
460
 
461
+ #: modules/settings/settings-data.php:182
462
+ msgid "Links successfully imported."
463
  msgstr ""
464
 
465
+ #: modules/settings/settings-data.php:185
466
+ msgid "The CSV file could not be uploaded successfully."
467
  msgstr ""
468
 
469
+ #: modules/settings/settings-data.php:188
470
+ msgid ""
471
+ "Links could not be imported because no CSV file was selected. Please click "
472
+ "the &#8220;Browse&#8221; button and select a file to import."
473
  msgstr ""
474
 
475
+ #: modules/settings/settings-data.php:198
476
+ msgid "Import SEO Ultimate Settings File"
477
  msgstr ""
478
 
479
+ #: modules/settings/settings-data.php:200
480
+ msgid ""
481
+ "You can use this form to upload and import an SEO Ultimate settings file "
482
+ "stored on your computer. (These files can be created using the Export tool.) "
483
+ "Note that importing a file will overwrite your existing settings with those "
484
+ "in the file."
485
  msgstr ""
486
 
487
+ #: modules/settings/settings-data.php:204
488
+ msgid ""
489
+ "Are you sure you want to import this settings file? This will overwrite your "
490
+ "current settings and cannot be undone."
491
  msgstr ""
492
 
493
+ #: modules/settings/settings-data.php:205
494
+ msgid "Import Settings File"
495
  msgstr ""
496
 
497
+ #: modules/settings/settings-data.php:211
498
+ msgid "Import Deeplink Juggernaut CSV File"
 
 
 
 
 
 
 
 
499
  msgstr ""
500
 
501
+ #: modules/settings/settings-data.php:213
502
+ msgid ""
503
+ "You can use this form to upload and import a Deeplink Juggernaut CSV file "
504
+ "stored on your computer. (These files can be created using the Export tool.) "
505
+ "Note that importing a file will overwrite your existing links with those in "
506
+ "the file."
507
  msgstr ""
508
 
509
+ #: modules/settings/settings-data.php:217
510
+ msgid ""
511
+ "Are you sure you want to import this CSV file? This will overwrite your "
512
+ "current Deeplink Juggernaut links and cannot be undone."
513
  msgstr ""
514
 
515
+ #: modules/settings/settings-data.php:218
516
+ msgid "Import CSV File"
517
  msgstr ""
518
 
519
+ #: modules/settings/settings-data.php:233
520
+ msgid "Import from Other Plugins"
521
  msgstr ""
522
 
523
+ #: modules/settings/settings-data.php:235
524
+ msgid ""
525
+ "You can import settings and data from these plugins. Clicking a plugin&#8217;"
526
+ "s name will take you to the importer page, where you can customize "
527
+ "parameters and start the import."
528
  msgstr ""
529
 
530
+ #: modules/settings/settings-data.php:255
531
+ msgid "Export SEO Ultimate Settings File"
532
  msgstr ""
533
 
534
+ #: modules/settings/settings-data.php:257
535
+ msgid ""
536
+ "You can use this export tool to download an SEO Ultimate settings file to "
537
+ "your computer."
538
  msgstr ""
539
 
540
+ #: modules/settings/settings-data.php:259
541
+ msgid ""
542
+ "A settings file includes the data of every checkbox and textbox of every "
543
+ "installed module. It does NOT include site-specific data like logged 404s or "
544
+ "post/page title/meta data (this data would be included in a standard "
545
+ "database backup, however)."
546
  msgstr ""
547
 
548
+ #: modules/settings/settings-data.php:262
549
+ msgid "Download Settings File"
550
  msgstr ""
551
 
552
+ #: modules/settings/settings-data.php:267
553
+ msgid "Export Deeplink Juggernaut CSV File"
554
  msgstr ""
555
 
556
+ #: modules/settings/settings-data.php:269
557
+ msgid ""
558
+ "You can use this export tool to download a CSV file (comma-separated values "
559
+ "file) that contains your Deeplink Juggernaut links. Once you download this "
560
+ "file to your computer, you can edit it using your favorite spreadsheet "
561
+ "program. When you&#8217;re done editing, you can re-upload the file using "
562
+ "the Import tool."
563
  msgstr ""
564
 
565
+ #: modules/settings/settings-data.php:272
566
+ msgid "Download CSV File"
567
  msgstr ""
568
 
569
+ #: modules/settings/settings-data.php:279
570
+ msgid "All settings have been erased and defaults have been restored."
571
  msgstr ""
572
 
573
+ #: modules/settings/settings-data.php:281
574
+ msgid ""
575
+ "You can erase all your SEO Ultimate settings and restore them to &#8220;"
576
+ "factory defaults&#8221; by clicking the button below."
577
  msgstr ""
578
 
579
+ #: modules/settings/settings-data.php:284
580
+ msgid ""
581
+ "Are you sure you want to erase all module settings? This cannot be undone."
582
  msgstr ""
583
 
584
+ #: modules/settings/settings-data.php:285
585
+ msgid "Restore Default Settings"
586
  msgstr ""
587
 
588
+ #: modules/settings/settings.php:12
589
+ msgid "Plugin Settings"
 
 
 
 
590
  msgstr ""
591
 
592
+ #: modules/settings/settings.php:13
593
+ msgid "SEO Ultimate Plugin Settings"
594
  msgstr ""
595
 
596
+ #: modules/settings/install.php:18
597
+ msgid "Upgrade/Downgrade/Reinstall"
598
  msgstr ""
599
 
600
+ #: modules/settings/install.php:19
601
+ msgid "Installer"
 
 
602
  msgstr ""
603
 
604
+ #: modules/settings/install.php:23 modules/settings/install.php:48
605
+ msgid "Upgrade"
606
  msgstr ""
607
 
608
+ #: modules/settings/install.php:24 modules/settings/install.php:71
609
+ msgid "Downgrade"
610
  msgstr ""
611
 
612
+ #: modules/settings/install.php:25 modules/settings/install.php:86
613
+ msgid "Reinstall"
614
  msgstr ""
615
 
616
+ #: modules/settings/install.php:42
617
+ msgid ""
618
+ "From the list below, select the version to which you would like to upgrade. "
619
+ "Then click the &#8220;Upgrade&#8221; button at the bottom of the screen."
620
  msgstr ""
621
 
622
+ #: modules/settings/install.php:51
623
+ msgid "You are already running the latest version."
624
  msgstr ""
625
 
626
+ #: modules/settings/install.php:53
627
  msgid ""
628
+ "There was an error retrieving the list of available versions. Please try "
629
+ "again later. You can also upgrade to the latest version of SEO Ultimate "
630
+ "using the WordPress plugin upgrader."
631
  msgstr ""
632
 
633
+ #: modules/settings/install.php:62
634
+ msgid ""
635
+ "Downgrading is provided as a convenience only and is not officially "
636
+ "supported. Although unlikely, you may lose data in the downgrading process. "
637
+ "It is your responsibility to backup your database before proceeding."
638
  msgstr ""
639
 
640
+ #: modules/settings/install.php:65
641
+ msgid ""
642
+ "From the list below, select the version to which you would like to "
643
+ "downgrade. Then click the &#8220;Downgrade&#8221; button at the bottom of "
644
+ "the screen."
645
  msgstr ""
646
 
647
+ #: modules/settings/install.php:74
648
+ msgid ""
649
+ "Downgrading to versions earlier than %s is not supported because doing so "
650
+ "will result in data loss."
651
  msgstr ""
652
 
653
+ #: modules/settings/install.php:76
654
  msgid ""
655
+ "There was an error retrieving the list of available versions. Please try "
656
+ "again later."
657
  msgstr ""
658
 
659
+ #: modules/settings/install.php:81
660
+ msgid ""
661
+ "To download and install a fresh copy of the SEO Ultimate version you are "
662
+ "currently using, click the &#8220;Reinstall&#8221; button below."
663
  msgstr ""
664
 
665
+ #: modules/settings/install.php:108
666
+ msgid "Your Current Version"
667
  msgstr ""
668
 
669
+ #: modules/settings/install.php:110
670
+ msgid "Latest Version"
671
  msgstr ""
672
 
673
+ #: modules/settings/install.php:130
674
  msgid ""
675
+ "You do not have sufficient permissions to upgrade/downgrade plugins for this "
676
+ "blog."
677
  msgstr ""
678
 
679
+ #: modules/settings/install.php:140
680
+ msgid "Downgrade to SEO Ultimate %s"
681
  msgstr ""
682
 
683
+ #: modules/settings/install.php:143
684
+ msgid "Reinstall SEO Ultimate %s"
685
  msgstr ""
686
 
687
+ #: modules/settings/install.php:146
688
+ msgid "Upgrade to SEO Ultimate %s"
689
  msgstr ""
690
 
691
+ #: modules/settings/global-settings.php:18
692
+ msgid "Global Settings"
 
693
  msgstr ""
694
 
695
+ #: modules/settings/global-settings.php:40
696
+ msgid "Enable nofollow&#8217;d attribution link"
697
  msgstr ""
698
 
699
+ #: modules/settings/global-settings.php:41
700
+ msgid "Enable attribution link CSS styling"
 
701
  msgstr ""
702
 
703
+ #: modules/settings/global-settings.php:42
704
+ msgid "Notify me about unnecessary active plugins"
705
  msgstr ""
706
 
707
+ #: modules/settings/global-settings.php:43
708
+ msgid "Insert comments around HTML code insertions"
709
  msgstr ""
710
 
711
+ #: modules/settings/uninstall.php:17
712
+ msgid "Uninstaller"
713
  msgstr ""
714
 
715
+ #: modules/settings/uninstall.php:27
716
+ msgid ""
717
+ "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
718
+ "files."
719
  msgstr ""
720
 
721
+ #: modules/settings/uninstall.php:30
722
+ msgid ""
723
+ "Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
724
+ "your SEO Ultimate settings and cannot be undone."
725
  msgstr ""
726
 
727
+ #: modules/settings/uninstall.php:31
728
+ msgid "Uninstall Now"
729
  msgstr ""
730
 
731
+ #: modules/settings/uninstall.php:35 modules/settings/uninstall.php:42
732
+ msgid "Uninstall SEO Ultimate"
733
  msgstr ""
734
 
735
+ #: modules/settings/uninstall.php:46
736
+ msgid "Deleted settings."
737
  msgstr ""
738
 
739
+ #: modules/settings/uninstall.php:53
740
+ msgid "An error occurred while deleting files."
741
  msgstr ""
742
 
743
+ #: modules/settings/uninstall.php:55
744
+ msgid "Deleted files."
745
  msgstr ""
746
 
747
+ #: modules/settings/uninstall.php:56
748
+ msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
749
  msgstr ""
750
 
751
+ #: modules/modules/modules.php:12
752
+ msgid "Module Manager"
753
  msgstr ""
754
 
755
+ #: modules/modules/modules.php:13
756
+ msgid "Modules"
757
  msgstr ""
758
 
759
+ #: modules/modules/modules.php:41
760
+ msgid ""
761
+ "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
762
+ "&#8221; By default, most of these modules are listed in the &#8220;"
763
+ "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
764
+ "you can view documentation by clicking the tabs in the upper-right-hand "
765
+ "corner of your administration screen."
766
  msgstr ""
767
 
768
+ #: modules/modules/modules.php:43
769
+ msgid ""
770
+ "The Module Manager lets you disable or hide modules you don&#8217;t use. "
771
+ "You can also silence modules from displaying bubble alerts on the menu."
772
  msgstr ""
773
 
774
+ #: modules/modules/modules.php:47
775
+ msgid "Modules updated."
776
  msgstr ""
777
 
778
+ #: modules/modules/modules.php:52
779
+ msgid "Status"
780
  msgstr ""
781
 
782
+ #: modules/modules/modules.php:53
783
+ msgid "Module"
784
  msgstr ""
785
 
786
+ #: modules/modules/modules.php:66
787
+ msgid "Enabled"
788
  msgstr ""
789
 
790
+ #: modules/modules/modules.php:67
791
+ msgid "Silenced"
792
  msgstr ""
793
 
794
+ #: modules/modules/modules.php:68
795
+ msgid "Hidden"
796
  msgstr ""
797
 
798
+ #: modules/modules/modules.php:69
799
+ msgid "Disabled"
800
  msgstr ""
801
 
802
+ #: modules/more-links/more-links.php:12
803
+ msgid "More Link Customizer"
804
  msgstr ""
805
 
806
+ #: modules/more-links/more-links.php:30
807
+ msgid "Default More Link Text"
808
  msgstr ""
809
 
810
+ #: modules/more-links/more-links.php:51
811
+ msgid "More Link Text:"
812
  msgstr ""
813
 
814
+ #: modules/import-aiosp/import-aiosp.php:12
815
+ msgid "Import from All in One SEO Pack"
816
  msgstr ""
817
 
818
+ #: modules/import-aiosp/import-aiosp.php:13
819
+ msgid "AIOSP Import"
820
  msgstr ""
821
 
822
+ #: modules/import-aiosp/import-aiosp.php:15
823
+ msgid "All in One SEO Pack"
824
  msgstr ""
825
 
826
+ #: modules/import-aiosp/import-aiosp.php:16
827
+ msgid "AIOSP"
828
  msgstr ""
829
 
830
+ #: modules/import-aiosp/import-aiosp.php:17
831
+ msgid "Import post data (custom title tags and meta tags)."
832
+ msgstr ""
833
+
834
+ #: modules/import-aiosp/import-aiosp.php:21
835
  msgid ""
836
+ "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
837
+ "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
838
+ "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
839
+ "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
840
+ "to be currently installed or activated for the import to take place."
841
  msgstr ""
842
 
843
+ #: modules/import-aiosp/import-aiosp.php:23
844
+ msgid ""
845
+ "The import tool can only move over data from AIOSP version 1.6 or above. If "
846
+ "you use an older version of AIOSP, you should update to the latest version "
847
+ "first and run AIOSP&#8217;s upgrade process."
848
  msgstr ""
849
 
850
+ #: modules/link-nofollow/link-nofollow.php:12
851
+ msgid "Nofollow Manager"
852
  msgstr ""
853
 
854
+ #: modules/link-nofollow/link-nofollow.php:53
855
+ msgid "Add the nofollow attribute to..."
856
  msgstr ""
857
 
858
+ #: modules/link-nofollow/link-nofollow.php:55
859
+ msgid "Adjacent post links"
860
  msgstr ""
861
 
862
+ #: modules/link-nofollow/link-nofollow.php:56
863
+ msgid "Category links (after posts)"
864
  msgstr ""
865
 
866
+ #: modules/link-nofollow/link-nofollow.php:57
867
+ msgid "Category links (in lists)"
868
  msgstr ""
869
 
870
+ #: modules/link-nofollow/link-nofollow.php:58
871
+ msgid "Comment anchor links"
872
  msgstr ""
873
 
874
+ #: modules/link-nofollow/link-nofollow.php:59
875
+ msgid "Comment feed links"
876
  msgstr ""
877
 
878
+ #: modules/link-nofollow/link-nofollow.php:60
879
+ msgid "Date-based archive links"
880
  msgstr ""
881
 
882
+ #: modules/link-nofollow/link-nofollow.php:61
883
+ msgid "Pagination navigation links (all)"
 
884
  msgstr ""
885
 
886
+ #: modules/link-nofollow/link-nofollow.php:62
887
+ msgid "Pagination navigation links (on blog home only)"
 
 
888
  msgstr ""
889
 
890
+ #: modules/link-nofollow/link-nofollow.php:63
891
+ msgid "&#8220;Read more&#8221; links"
892
  msgstr ""
893
 
894
+ #: modules/link-nofollow/link-nofollow.php:64
895
+ msgid "Registration link"
896
  msgstr ""
897
 
898
+ #: modules/link-nofollow/link-nofollow.php:65
899
+ msgid "Login link"
900
  msgstr ""
901
 
902
+ #: modules/link-nofollow/link-nofollow.php:66
903
+ msgid "Tag links (after posts)"
904
  msgstr ""
905
 
906
+ #: modules/link-nofollow/link-nofollow.php:67
907
+ msgid "Tag links (in lists and clouds)"
908
  msgstr ""
909
 
910
+ #: modules/link-nofollow/link-nofollow.php:76
911
+ msgid "When displaying page lists, nofollow links to this page"
912
  msgstr ""
913
 
914
+ #: modules/link-nofollow/link-nofollow.php:76
915
+ msgid "Nofollow:"
916
  msgstr ""
917
 
918
+ #: modules/sharing-buttons/sharing-buttons.php:12
919
+ msgid "Sharing Facilitator"
920
  msgstr ""
921
 
922
+ #: modules/sharing-buttons/sharing-buttons.php:25
923
+ msgid "Bookmark and Share"
924
  msgstr ""
925
 
926
+ #: modules/sharing-buttons/sharing-buttons.php:39
927
+ msgid "Which provider would you like to use for your sharing buttons?"
928
  msgstr ""
929
 
930
+ #: modules/sharing-buttons/sharing-buttons.php:41
931
+ msgid "None; disable sharing buttons"
932
  msgstr ""
933
 
934
+ #: modules/sharing-buttons/sharing-buttons.php:42
935
+ msgid "Use the ShareThis button"
936
  msgstr ""
937
 
938
+ #: modules/sharing-buttons/sharing-buttons.php:43
939
+ msgid "Use the AddThis button"
 
 
 
 
940
  msgstr ""
941
 
942
+ #: modules/autolinks/content-autolinks.php:16
943
+ msgid "Content Deeplink Juggernaut"
944
  msgstr ""
945
 
946
+ #: modules/autolinks/content-autolinks.php:17
947
+ msgid "Content Links"
948
  msgstr ""
949
 
950
+ #: modules/autolinks/content-autolinks.php:259
951
+ #: modules/autolinks/footer-autolinks.php:133
952
+ msgid ""
953
+ "The Content Links section of Deeplink Juggernaut lets you automatically link "
954
+ "a certain word or phrase in your post/page content to a URL you specify."
955
  msgstr ""
956
 
957
+ #: modules/autolinks/content-autolinks.php:313
958
+ #: modules/autolinks/footer-autolinks.php:165
959
+ msgid "Edit Existing Links"
960
  msgstr ""
961
 
962
+ #: modules/autolinks/content-autolinks.php:317
963
+ #: modules/autolinks/footer-autolinks.php:169
964
+ msgid "Add a New Link"
965
  msgstr ""
966
 
967
+ #: modules/autolinks/content-autolinks.php:328
968
+ #: modules/autolinks/footer-autolinks.php:179
969
+ msgid "Anchor Text"
 
 
 
 
970
  msgstr ""
971
 
972
+ #: modules/autolinks/content-autolinks.php:329
973
+ #: modules/autolinks/footer-autolinks.php:180
974
+ msgid "Destination"
 
 
975
  msgstr ""
976
 
977
+ #: modules/autolinks/content-autolinks.php:330
978
+ #: modules/autolinks/footer-autolinks.php:181
979
+ msgid "Title Attribute"
980
  msgstr ""
981
 
982
+ #: modules/autolinks/content-autolinks.php:332
983
+ msgid "Site Cap"
984
  msgstr ""
985
 
986
+ #: modules/autolinks/content-autolinks.php:333
987
+ #: modules/autolinks/footer-autolinks.php:182
988
+ msgid "Options"
 
989
  msgstr ""
990
 
991
+ #: modules/autolinks/content-autolinks.php:335
992
+ #: modules/autolinks/footer-autolinks.php:184
993
+ msgid "Delete"
 
 
994
  msgstr ""
995
 
996
+ #: modules/autolinks/content-autolinks.php:367
997
+ #: modules/autolinks/footer-autolinks.php:218 modules/noindex/noindex.php:54
998
+ #: modules/noindex/noindex.php:78
999
+ msgid "Nofollow"
1000
  msgstr ""
1001
 
1002
+ #: modules/autolinks/content-autolinks.php:369
1003
+ #: modules/autolinks/footer-autolinks.php:220
1004
+ msgid "New window"
1005
  msgstr ""
1006
 
1007
+ #: modules/autolinks/content-autolinks.php:434
1008
+ msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
 
 
 
 
 
1009
  msgstr ""
1010
 
1011
+ #: modules/autolinks/content-autolinks.php:437
1012
+ msgid "Don&#8217;t add autolinks to anchor texts found in this post."
 
 
1013
  msgstr ""
1014
 
1015
+ #: modules/autolinks/content-autolinks.php:437
1016
+ msgid "Autolink Exclusion:"
1017
  msgstr ""
1018
 
1019
+ #: modules/autolinks/content-autolinks.php:443
1020
+ msgid ""
1021
+ "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
1022
+ "into this box, Deeplink Juggernaut will search for that anchor in all your "
1023
+ "other posts and link it to this post. For example, if the post you&#8217;re "
1024
+ "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
1025
+ "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
1026
+ "Deeplink Juggernaut will automatically build internal links to this post "
1027
+ "with that anchor text (assuming other posts contain that text)."
1028
  msgstr ""
1029
 
1030
+ #: modules/autolinks/autolinks.php:11
1031
+ msgid "Deeplink Juggernaut"
1032
  msgstr ""
1033
 
1034
+ #: modules/autolinks/autolinks.php:18
1035
+ msgid ""
1036
+ "Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
1037
+ "(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
1038
+ "WordPress 3.2.) If you aren&#8217;t sure how to upgrade PHP, please ask your "
1039
+ "webhost. In the meantime, you can return to an older version of Deeplink "
1040
+ "Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
1041
+ "a> to SEO Ultimate 5.9."
1042
  msgstr ""
1043
 
1044
+ #: modules/autolinks/footer-autolinks-settings.php:16
1045
+ msgid "Footer Deeplink Juggernaut Settings"
1046
  msgstr ""
1047
 
1048
+ #: modules/autolinks/footer-autolinks-settings.php:17
1049
+ msgid "Footer Link Settings"
1050
  msgstr ""
1051
 
1052
+ #: modules/autolinks/footer-autolinks-settings.php:28
1053
+ msgid "HTML Formats"
1054
  msgstr ""
1055
 
1056
+ #: modules/autolinks/footer-autolinks-settings.php:31
1057
+ msgid "Link Section Format"
1058
  msgstr ""
1059
 
1060
+ #: modules/autolinks/footer-autolinks-settings.php:32
1061
+ msgid "Link Format"
1062
  msgstr ""
1063
 
1064
+ #: modules/autolinks/footer-autolinks-settings.php:34
1065
+ msgid "Link Separator"
1066
  msgstr ""
1067
 
1068
+ #: modules/autolinks/footer-autolinks.php:16
1069
+ msgid "Footer Deeplink Juggernaut"
1070
  msgstr ""
1071
 
1072
+ #: modules/autolinks/footer-autolinks.php:17 modules/widgets/widgets.php:154
1073
+ msgid "Footer Links"
1074
  msgstr ""
1075
 
1076
+ #: modules/autolinks/footer-autolinks.php:177
1077
+ msgid "Link Location (optional)"
1078
  msgstr ""
1079
 
1080
+ #: modules/autolinks/footer-autolinks.php:205
1081
+ msgid "Match child content"
1082
  msgstr ""
1083
 
1084
+ #: modules/autolinks/footer-autolinks.php:207
1085
+ msgid "Negative match"
1086
  msgstr ""
1087
 
1088
+ #: modules/autolinks/content-autolinks-settings.php:16
1089
+ msgid "Content Deeplink Juggernaut Settings"
1090
  msgstr ""
1091
 
1092
+ #: modules/autolinks/content-autolinks-settings.php:17
1093
+ msgid "Content Link Settings"
1094
  msgstr ""
1095
 
1096
+ #: modules/autolinks/content-autolinks-settings.php:40
1097
+ msgid "Add Autolinks to..."
1098
  msgstr ""
1099
 
1100
+ #: modules/autolinks/content-autolinks-settings.php:43
1101
+ msgid "Allow posts to link to themselves."
1102
  msgstr ""
1103
 
1104
+ #: modules/autolinks/content-autolinks-settings.php:44
1105
+ msgid ""
1106
+ "Allow posts to link to the URL by which the visitor is accessing the post."
1107
  msgstr ""
1108
 
1109
+ #: modules/autolinks/content-autolinks-settings.php:45
1110
+ msgid "Self-Linking"
1111
  msgstr ""
1112
 
1113
+ #: modules/autolinks/content-autolinks-settings.php:48
1114
+ msgid "Enable per-link customization of quantity limits."
1115
  msgstr ""
1116
 
1117
+ #: modules/autolinks/content-autolinks-settings.php:49
1118
+ msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1119
  msgstr ""
1120
 
1121
+ #: modules/autolinks/content-autolinks-settings.php:50
1122
+ msgid ""
1123
+ "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1124
+ "etc."
1125
  msgstr ""
1126
 
1127
+ #: modules/autolinks/content-autolinks-settings.php:51
1128
+ msgid ""
1129
+ "Don&#8217;t link the same anchor text any more than %d times across my "
1130
+ "entire site."
1131
  msgstr ""
1132
 
1133
+ #: modules/autolinks/content-autolinks-settings.php:52
1134
+ msgid ""
1135
+ "Don&#8217;t link to the same destination any more than %d times per post/"
1136
+ "page/etc."
1137
  msgstr ""
1138
 
1139
+ #: modules/autolinks/content-autolinks-settings.php:53
1140
+ msgid "Quantity Restrictions"
1141
  msgstr ""
1142
 
1143
+ #: modules/autolinks/content-autolinks-settings.php:55
1144
  msgid ""
1145
+ "Don&#8217;t add autolinks to text within these HTML tags <em>(separate with "
1146
+ "commas)</em>:"
1147
  msgstr ""
1148
 
1149
+ #: modules/autolinks/content-autolinks-settings.php:55
1150
+ msgid "Tag Restrictions"
1151
  msgstr ""
1152
 
1153
+ #: modules/autolinks/content-autolinks-settings.php:63
1154
+ msgid "%s can only link to internal destinations that share at least one..."
1155
  msgstr ""
1156
 
1157
+ #: modules/autolinks/content-autolinks-settings.php:76
1158
+ msgid "Siloing"
1159
  msgstr ""
1160
 
1161
+ #: modules/noindex/noindex.php:12
1162
+ msgid "Noindex Manager"
1163
  msgstr ""
1164
 
1165
+ #: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
1166
+ #: modules/noindex/noindex.php:67
1167
+ msgid "Noindex"
1168
  msgstr ""
1169
 
1170
+ #: modules/noindex/noindex.php:43 modules/meta/meta-keywords.php:33
1171
+ msgid "Default Values"
1172
  msgstr ""
1173
 
1174
+ #: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
1175
+ msgid "Use default"
1176
  msgstr ""
1177
 
1178
+ #: modules/noindex/noindex.php:63
1179
+ msgid "noindex"
1180
  msgstr ""
1181
 
1182
+ #: modules/noindex/noindex.php:64
1183
+ msgid "index"
1184
  msgstr ""
1185
 
1186
+ #: modules/noindex/noindex.php:74
1187
+ msgid "nofollow"
1188
  msgstr ""
1189
 
1190
+ #: modules/noindex/noindex.php:75
1191
+ msgid "follow"
1192
  msgstr ""
1193
 
1194
+ #: modules/noindex/noindex.php:89
1195
+ msgid ""
1196
+ "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
1197
+ "block indexing of the entire site, regardless of which options are set below."
1198
  msgstr ""
1199
 
1200
+ #: modules/noindex/noindex.php:92
1201
+ msgid "Prevent indexing of..."
1202
  msgstr ""
1203
 
1204
+ #: modules/noindex/noindex.php:93
1205
+ msgid "Administration back-end pages"
1206
  msgstr ""
1207
 
1208
+ #: modules/noindex/noindex.php:94
1209
+ msgid "Author archives"
1210
  msgstr ""
1211
 
1212
+ #: modules/noindex/noindex.php:95
1213
+ msgid "Blog search pages"
1214
  msgstr ""
1215
 
1216
+ #: modules/noindex/noindex.php:96
1217
+ msgid "Category archives"
1218
  msgstr ""
1219
 
1220
+ #: modules/noindex/noindex.php:97
1221
+ msgid "Comment feeds"
1222
  msgstr ""
1223
 
1224
+ #: modules/noindex/noindex.php:98
1225
+ msgid "Comment subpages"
1226
  msgstr ""
1227
 
1228
+ #: modules/noindex/noindex.php:99
1229
+ msgid "Date-based archives"
1230
  msgstr ""
1231
 
1232
+ #: modules/noindex/noindex.php:100
1233
+ msgid "Subpages of the homepage"
1234
  msgstr ""
1235
 
1236
+ #: modules/noindex/noindex.php:101
1237
+ msgid "Tag archives"
1238
  msgstr ""
1239
 
1240
+ #: modules/noindex/noindex.php:102
1241
+ msgid "User login/registration pages"
1242
  msgstr ""
1243
 
1244
+ #: modules/noindex/noindex.php:165
1245
+ msgid "Noindex: Tell search engines not to index this webpage."
1246
  msgstr ""
1247
 
1248
+ #: modules/noindex/noindex.php:166
1249
+ msgid "Nofollow: Tell search engines not to spider links on this webpage."
1250
  msgstr ""
1251
 
1252
+ #: modules/noindex/noindex.php:167
1253
+ msgid "Meta Robots Tag:"
1254
+ msgstr ""
1255
+
1256
+ #: modules/class.su-module.php:375
1257
  msgid ""
1258
+ "(Note: This translated documentation was designed for an older version of "
1259
+ "SEO Ultimate and may be outdated.)"
1260
  msgstr ""
1261
 
1262
+ #: modules/class.su-module.php:658
1263
+ msgid ""
1264
+ "All the modules on this page have been disabled. You can re-enable them "
1265
+ "using the <a href=\"%s\">Module Manager</a>."
1266
  msgstr ""
1267
 
1268
+ #: modules/class.su-module.php:1017
1269
+ msgctxt "Dropdown Title"
1270
+ msgid "%s &mdash; %s"
1271
  msgstr ""
1272
 
1273
+ #: modules/class.su-module.php:1045
1274
+ msgid "%1$s | %2$s %3$s by %4$s"
1275
  msgstr ""
1276
 
1277
+ #: modules/class.su-module.php:1124
1278
+ msgid "Your site currently doesn&#8217;t have any public items of this type."
 
 
1279
  msgstr ""
1280
 
1281
+ #: modules/class.su-module.php:1208
1282
+ msgid "&laquo;"
1283
  msgstr ""
1284
 
1285
+ #: modules/class.su-module.php:1209
1286
+ msgid "&raquo;"
 
 
1287
  msgstr ""
1288
 
1289
+ #: modules/class.su-module.php:1216
1290
+ msgid "Displaying %s&#8211;%s of %s"
 
 
 
1291
  msgstr ""
1292
 
1293
+ #: modules/class.su-module.php:1230
1294
+ msgid "ID"
1295
  msgstr ""
1296
 
1297
+ #: modules/class.su-module.php:1264
1298
+ msgid "View"
1299
  msgstr ""
1300
 
1301
+ #: modules/class.su-module.php:1266
1302
+ msgid "Edit"
1303
  msgstr ""
1304
 
1305
+ #: modules/class.su-module.php:1430
1306
+ msgid "Settings updated."
1307
  msgstr ""
1308
 
1309
+ #: modules/class.su-module.php:1451
1310
+ msgid "Save Changes"
1311
+ msgstr ""
1312
+
1313
+ #: modules/class.su-module.php:1962
1314
  msgid ""
1315
+ "Are you sure you want to replace the textbox contents with this default "
1316
+ "value?"
1317
  msgstr ""
1318
 
1319
+ #: modules/class.su-module.php:2612
1320
+ msgid "Type a URL or start typing the name of the item you want to link to"
1321
  msgstr ""
1322
 
1323
+ #: modules/class.su-module.php:2624
1324
+ msgid "Remove this destination"
 
 
1325
  msgstr ""
1326
 
1327
+ #: modules/class.su-module.php:2624
1328
+ msgid "X"
 
 
1329
  msgstr ""
1330
 
1331
+ #: modules/meta/webmaster-verify.php:12
1332
+ msgid "Webmaster Verification Assistant"
1333
  msgstr ""
1334
 
1335
+ #: modules/meta/webmaster-verify.php:13
1336
+ msgid "W.M. Verification"
1337
+ msgstr ""
1338
+
1339
+ #: modules/meta/webmaster-verify.php:47
1340
+ msgid "Google Webmaster Tools"
1341
+ msgstr ""
1342
+
1343
+ #: modules/meta/webmaster-verify.php:48
1344
+ msgid "Yahoo! Site Explorer"
1345
+ msgstr ""
1346
+
1347
+ #: modules/meta/webmaster-verify.php:49
1348
+ msgid "Bing Webmaster Center"
1349
+ msgstr ""
1350
+
1351
+ #: modules/meta/meta-robots.php:12
1352
+ msgid "Meta Robot Tags Editor"
1353
+ msgstr ""
1354
+
1355
+ #: modules/meta/meta-robots.php:13
1356
+ msgid "Meta Robot Tags"
1357
+ msgstr ""
1358
+
1359
+ #: modules/meta/meta-robots.php:22
1360
+ msgid "Global"
1361
+ msgstr ""
1362
+
1363
+ #: modules/meta/meta-robots.php:28
1364
+ msgid "Spider Instructions"
1365
+ msgstr ""
1366
+
1367
+ #: modules/meta/meta-robots.php:30
1368
  msgid ""
1369
+ "Don&#8217t use this site&#8217s Open Directory description in search results."
1370
  msgstr ""
1371
 
1372
+ #: modules/meta/meta-robots.php:31
1373
+ msgid ""
1374
+ "Don&#8217t use this site&#8217s Yahoo! Directory description in search "
1375
+ "results."
1376
  msgstr ""
1377
 
1378
+ #: modules/meta/meta-robots.php:32
1379
+ msgid "Don&#8217t cache or archive this site."
1380
  msgstr ""
1381
 
1382
+ #: modules/meta/meta-descriptions.php:12
1383
+ msgid "Meta Description Editor"
1384
  msgstr ""
1385
 
1386
+ #: modules/meta/meta-descriptions.php:13
1387
+ msgid "Meta Descriptions"
1388
  msgstr ""
1389
 
1390
+ #: modules/meta/meta-descriptions.php:24 modules/titles/titles.php:33
1391
+ msgid "Default Formats"
1392
  msgstr ""
1393
 
1394
+ #: modules/meta/meta-descriptions.php:31
1395
+ msgid "Meta Description"
1396
  msgstr ""
1397
 
1398
+ #: modules/meta/meta-descriptions.php:48
1399
+ msgid "Post Description Format"
1400
  msgstr ""
1401
 
1402
+ #: modules/meta/meta-descriptions.php:49
1403
+ msgid "Category Description Format"
1404
  msgstr ""
1405
 
1406
+ #: modules/meta/meta-descriptions.php:50
1407
+ msgid "Post Tag Description Format"
1408
  msgstr ""
1409
 
1410
+ #: modules/meta/meta-descriptions.php:57
1411
+ msgid "Blog Homepage Meta Description"
1412
  msgstr ""
1413
 
1414
+ #: modules/meta/meta-descriptions.php:59
1415
+ msgid "Use this blog&#8217s tagline as the default homepage description."
1416
  msgstr ""
1417
 
1418
+ #: modules/meta/meta-descriptions.php:60
1419
+ msgid "Default Value"
1420
  msgstr ""
1421
 
1422
+ #: modules/meta/meta-descriptions.php:122
1423
+ msgid "Meta Description:"
1424
  msgstr ""
1425
 
1426
+ #: modules/meta/meta-descriptions.php:125
1427
+ msgid "You&#8217;ve entered %s characters. Most search engines use up to 140."
1428
  msgstr ""
1429
 
1430
+ #: modules/meta/meta-descriptions.php:133
1431
  msgid ""
1432
+ "<strong>Description</strong> &mdash; The value of the meta description tag. "
1433
+ "The description will often appear underneath the title in search engine "
1434
+ "results. Writing an accurate, attention-grabbing description for every post "
1435
+ "is important to ensuring a good search results clickthrough rate."
1436
  msgstr ""
1437
 
1438
+ #: modules/meta/meta-keywords.php:12
1439
+ msgid "Meta Keywords Editor"
1440
  msgstr ""
1441
 
1442
+ #: modules/meta/meta-keywords.php:13 modules/meta/meta-keywords.php:40
1443
+ msgid "Meta Keywords"
 
 
1444
  msgstr ""
1445
 
1446
+ #: modules/meta/meta-keywords.php:56
1447
+ msgid "The %d most commonly-used words"
 
1448
  msgstr ""
1449
 
1450
+ #: modules/meta/meta-keywords.php:69
1451
+ msgid "Sitewide Keywords"
1452
  msgstr ""
1453
 
1454
+ #: modules/meta/meta-keywords.php:69
1455
+ msgid "(Separate with commas)"
1456
  msgstr ""
1457
 
1458
+ #: modules/meta/meta-keywords.php:76
1459
+ msgid "Blog Homepage Meta Keywords"
1460
+ msgstr ""
1461
+
1462
+ #: modules/meta/meta-keywords.php:153
1463
+ msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
1464
+ msgstr ""
1465
+
1466
+ #: modules/meta/meta-keywords.php:158
1467
  msgid ""
1468
+ "<strong>Keywords</strong> &mdash; The value of the meta keywords tag. The "
1469
+ "keywords list gives search engines a hint as to what this post/page is "
1470
+ "about. Be sure to separate keywords with commas, like so: <samp>one,two,"
1471
+ "three</samp>."
1472
  msgstr ""
1473
 
1474
+ #: modules/class.su-importmodule.php:49
1475
+ msgid "Import Post Fields"
1476
  msgstr ""
1477
 
1478
+ #: modules/class.su-importmodule.php:50
1479
  msgid ""
1480
+ "Post fields store the SEO data for your posts/pages (i.e. your custom title "
1481
+ "tags, meta descriptions, and meta keywords). If you provided custom titles/"
1482
+ "descriptions/keywords to %s, this importer can move that data over to SEO "
1483
+ "Ultimate."
1484
  msgstr ""
1485
 
1486
+ #: modules/class.su-importmodule.php:53
1487
+ msgid "Conflict Resolution Mode"
1488
+ msgstr ""
1489
+
1490
+ #: modules/class.su-importmodule.php:54
1491
  msgid ""
1492
+ "What should the import tool do if it tries to move over a post&#8217;s %s "
1493
+ "data, but different data already exists in the corresponding SEO Ultimate "
1494
+ "fields?"
1495
  msgstr ""
1496
 
1497
+ #: modules/class.su-importmodule.php:56
1498
+ msgid "Skip that post and leave all data as-is (default)."
1499
  msgstr ""
1500
 
1501
+ #: modules/class.su-importmodule.php:57
1502
+ msgid "Delete the SEO Ultimate data and replace it with the %s data."
1503
  msgstr ""
1504
 
1505
+ #: modules/class.su-importmodule.php:58
1506
+ msgid "Keep the SEO Ultimate data and delete the %s data."
1507
+ msgstr ""
1508
+
1509
+ #: modules/class.su-importmodule.php:61
1510
+ msgid "Deletion Preference"
1511
  msgstr ""
1512
 
1513
+ #: modules/class.su-importmodule.php:62
1514
  msgid ""
1515
+ "When the migration tool successfully copies a post&#8217;s %1$s data over to "
1516
+ "SEO Ultimate, what should it do with the old %1$s data?"
1517
  msgstr ""
1518
 
1519
+ #: modules/class.su-importmodule.php:64
1520
+ msgid "Delete the %s data."
1521
  msgstr ""
1522
 
1523
+ #: modules/class.su-importmodule.php:65
1524
+ msgid "Leave behind the duplicate %s data (default)."
1525
+ msgstr ""
1526
+
1527
+ #: modules/class.su-importmodule.php:72
1528
+ msgid "Import Now"
1529
  msgstr ""
1530
 
1531
+ #: modules/class.su-importmodule.php:75
1532
  msgid ""
1533
+ "The import cannot be undone. It is your responsibility to <a href=\"%s\" "
1534
+ "target=\"_blank\">backup your database</a> before proceeding!"
 
1535
  msgstr ""
1536
 
1537
+ #: modules/class.su-importmodule.php:84
1538
+ msgid "Import complete."
1539
  msgstr ""
1540
 
1541
+ #: modules/class.su-importmodule.php:90
1542
+ msgid "Return to import page"
 
 
1543
  msgstr ""
1544
 
1545
+ #: modules/class.su-importmodule.php:93
1546
+ msgid "Return to settings page"
 
 
 
 
1547
  msgstr ""
1548
 
1549
+ #: modules/class.su-importmodule.php:96
1550
+ msgid "Return to SEO page"
1551
  msgstr ""
1552
 
1553
+ #: modules/class.su-importmodule.php:116
1554
+ msgid "Deactivated %s."
1555
  msgstr ""
1556
 
1557
+ #: modules/class.su-importmodule.php:174
1558
+ msgid "Imported a total of %d fields for one post/page/revision."
1559
+ msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
1560
+ msgstr[0] ""
1561
+ msgstr[1] ""
1562
+
1563
+ #: modules/class.su-importmodule.php:180
1564
+ msgid "Skipped one post with disabled %2$s data."
1565
+ msgid_plural "Skipped %1$d posts with disabled %2$s data."
1566
+ msgstr[0] ""
1567
+ msgstr[1] ""
1568
+
1569
+ #: modules/class.su-importmodule.php:186
1570
  msgid ""
1571
+ "Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
1572
+ "settings you chose."
1573
+ msgid_plural ""
1574
+ "Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
1575
+ "settings you chose."
1576
+ msgstr[0] ""
1577
+ msgstr[1] ""
1578
+
1579
+ #: modules/class.su-importmodule.php:192
1580
+ msgid "Deleted one %2$s field, as instructed by the settings you chose."
1581
+ msgid_plural ""
1582
+ "Deleted %1$d %2$s fields, as instructed by the settings you chose."
1583
+ msgstr[0] ""
1584
+ msgstr[1] ""
1585
+
1586
+ #: modules/sds-blog/sds-blog.php:12
1587
+ msgid "Whitepapers"
1588
  msgstr ""
1589
 
1590
+ #: modules/sds-blog/sds-blog.php:13
1591
+ msgid "SEO Design Solutions Whitepapers"
1592
  msgstr ""
1593
 
1594
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 6.9) #-#-#-#-#
1595
+ #. Author of the plugin/theme
1596
+ #: modules/sds-blog/sds-blog.php:49
1597
+ msgid "SEO Design Solutions"
1598
  msgstr ""
1599
 
1600
+ #: modules/sds-blog/sds-blog.php:50
1601
  msgid ""
1602
+ "The search engine optimization articles below are loaded from the website of "
1603
+ "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
1604
+ "an article&#8217;s title to read it."
1605
  msgstr ""
1606
 
1607
+ #: modules/internal-link-aliases/internal-link-aliases.php:20
1608
+ msgid "Link Mask Generator"
 
1609
  msgstr ""
1610
 
1611
+ #: modules/internal-link-aliases/internal-link-aliases.php:27
1612
+ msgid "Alias Directory"
1613
  msgstr ""
1614
 
1615
+ #: modules/internal-link-aliases/internal-link-aliases.php:29
1616
+ msgid "Nofollow aliased links"
1617
  msgstr ""
1618
 
1619
+ #: modules/internal-link-aliases/internal-link-aliases.php:29
1620
+ msgid "Link Attributes"
1621
  msgstr ""
1622
 
1623
+ #: modules/internal-link-aliases/internal-link-aliases.php:49
1624
+ msgid "Link Masks:"
1625
  msgstr ""
1626
 
1627
+ #: modules/internal-link-aliases/internal-link-aliases.php:52
1628
+ msgid "URL"
1629
  msgstr ""
1630
 
1631
+ #: modules/internal-link-aliases/internal-link-aliases.php:52
1632
+ msgid "Mask URL"
1633
  msgstr ""
1634
 
1635
+ #: modules/internal-link-aliases/internal-link-aliases.php:83
1636
+ msgid ""
1637
+ "You can stop search engines from following a link by typing in a mask for "
1638
+ "its URL."
1639
  msgstr ""
1640
 
1641
+ #: modules/internal-link-aliases/internal-link-aliases.php:160
1642
+ msgid "Added by Link Alias Generator (LAG) module"
1643
  msgstr ""
1644
 
1645
+ #: modules/internal-link-aliases/internal-link-aliases.php:171
1646
+ msgid "End LAG"
 
 
1647
  msgstr ""
1648
 
1649
+ #: modules/linkbox/linkbox.php:12
1650
+ msgid "Linkbox Inserter"
1651
  msgstr ""
1652
 
1653
+ #: modules/linkbox/linkbox.php:18
1654
+ msgid "Link to this post!"
1655
  msgstr ""
1656
 
1657
+ #: modules/linkbox/linkbox.php:45
1658
+ msgid "At the end of posts"
 
 
1659
  msgstr ""
1660
 
1661
+ #: modules/linkbox/linkbox.php:46
1662
+ msgid "At the end of pages"
 
 
1663
  msgstr ""
1664
 
1665
+ #: modules/linkbox/linkbox.php:47
1666
+ msgid "When called by the su_linkbox hook"
1667
  msgstr ""
1668
 
1669
+ #: modules/linkbox/linkbox.php:48
1670
+ msgid "Display linkboxes..."
1671
  msgstr ""
1672
 
1673
+ #: modules/linkbox/linkbox.php:49
1674
+ msgid "Linkbox HTML"
1675
  msgstr ""
1676
 
1677
+ #: modules/competition-queries/competition-queries.php:12
1678
+ msgid "Competition Researcher"
1679
  msgstr ""
1680
 
1681
+ #: modules/competition-queries/competition-queries.php:13
1682
+ msgid "Comp. Researcher"
1683
  msgstr ""
1684
 
1685
+ #: modules/competition-queries/competition-queries.php:17
1686
+ msgid ""
1687
+ "The Competition Researcher provides you with easy access to various search "
1688
+ "engine tools which you can use to research multiple search queries or URLs."
1689
  msgstr ""
1690
 
1691
+ #: modules/competition-queries/competition-queries.php:21
1692
+ msgid "Step 1: Choose Your Research Tool"
1693
  msgstr ""
1694
 
1695
+ #: modules/competition-queries/competition-queries.php:25
1696
+ msgid "Keywords"
1697
  msgstr ""
1698
 
1699
+ #: modules/competition-queries/competition-queries.php:25
1700
+ msgid "Normal Search"
1701
  msgstr ""
1702
 
1703
+ #: modules/competition-queries/competition-queries.php:25
1704
+ msgid "Find out how many pages contain the words in each query"
1705
  msgstr ""
1706
 
1707
+ #: modules/competition-queries/competition-queries.php:26
1708
+ msgid "Phrase Match"
1709
  msgstr ""
1710
 
1711
+ #: modules/competition-queries/competition-queries.php:26
1712
  msgid ""
1713
+ "Find out how many &#8220;actual&#8221; pages are competing for each query"
 
1714
  msgstr ""
1715
 
1716
+ #: modules/competition-queries/competition-queries.php:27
1717
+ msgid "Allinanchor"
1718
  msgstr ""
1719
 
1720
+ #: modules/competition-queries/competition-queries.php:27
1721
+ msgid "Find out which sites have the most links for each query"
 
 
 
1722
  msgstr ""
1723
 
1724
+ #: modules/competition-queries/competition-queries.php:28
1725
+ msgid "Allintitle"
 
 
 
1726
  msgstr ""
1727
 
1728
+ #: modules/competition-queries/competition-queries.php:28
1729
  msgid ""
1730
+ "Find out which sites have the highest relevance in the title for each query"
 
 
1731
  msgstr ""
1732
 
1733
+ #: modules/competition-queries/competition-queries.php:29
1734
+ msgid "Allintext"
 
 
1735
  msgstr ""
1736
 
1737
+ #: modules/competition-queries/competition-queries.php:29
1738
+ msgid "Find out which sites have the most relevant content/text on their pages"
 
 
1739
  msgstr ""
1740
 
1741
+ #: modules/competition-queries/competition-queries.php:30
1742
+ msgid "Allinurl"
1743
+ msgstr ""
1744
+
1745
+ #: modules/competition-queries/competition-queries.php:30
1746
  msgid ""
1747
+ "Find out which sites have the most relevant naming conventions for each "
1748
+ "keyword"
1749
  msgstr ""
1750
 
1751
+ #: modules/competition-queries/competition-queries.php:32
1752
+ msgid "URLs"
1753
  msgstr ""
1754
 
1755
+ #: modules/competition-queries/competition-queries.php:32
1756
+ msgid "Site"
1757
  msgstr ""
1758
 
1759
+ #: modules/competition-queries/competition-queries.php:32
1760
+ msgid "Find out how many pages are indexed for each domain"
 
 
1761
  msgstr ""
1762
 
1763
+ #: modules/competition-queries/competition-queries.php:33
1764
+ #: modules/competition-queries/competition-queries.php:38
1765
+ msgid "Inbound Links"
1766
  msgstr ""
1767
 
1768
+ #: modules/competition-queries/competition-queries.php:33
1769
+ msgid "Find out how many sites link to the domains"
1770
  msgstr ""
1771
 
1772
+ #: modules/competition-queries/competition-queries.php:34
1773
+ #: modules/competition-queries/competition-queries.php:38
1774
+ msgid "Outbound Links"
1775
  msgstr ""
1776
 
1777
+ #: modules/competition-queries/competition-queries.php:34
1778
+ msgid "Find out how many sites the domains link to"
1779
  msgstr ""
1780
 
1781
+ #: modules/competition-queries/competition-queries.php:57
1782
+ msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
1783
  msgstr ""
1784
 
1785
+ #: modules/competition-queries/competition-queries.php:59
1786
+ msgid "(Type in one per line)"
1787
  msgstr ""
1788
 
1789
+ #: modules/competition-queries/competition-queries.php:61
1790
+ msgid "Step 3: Set Options and Submit"
1791
  msgstr ""
1792
 
1793
+ #: modules/competition-queries/competition-queries.php:63
1794
+ #: modules/site-keyword-queries/site-keyword-queries.php:28
1795
+ msgid "Show 100 results per page"
1796
  msgstr ""
1797
 
1798
+ #: modules/competition-queries/competition-queries.php:65
1799
+ #: modules/site-keyword-queries/site-keyword-queries.php:30
1800
+ msgid "Use Google&#8217;s minimal mode"
1801
  msgstr ""
1802
 
1803
+ #: modules/competition-queries/competition-queries.php:71
1804
+ #: modules/site-keyword-queries/site-keyword-queries.php:33
1805
+ msgid "Submit"
1806
  msgstr ""
1807
 
1808
+ #: modules/titles/titles.php:12
1809
+ msgid "Title Tag Rewriter"
 
1810
  msgstr ""
1811
 
1812
+ #: modules/titles/titles.php:40
1813
+ msgid "Title Tag"
 
 
1814
  msgstr ""
1815
 
1816
+ #: modules/titles/titles.php:53
1817
+ msgid ""
1818
+ "Convert lowercase category/tag names to title case when used in title tags."
1819
  msgstr ""
1820
 
1821
+ #: modules/titles/titles.php:53
1822
+ msgid "Title Tag Variables"
1823
+ msgstr ""
1824
+
1825
+ #: modules/titles/titles.php:55
1826
+ msgid ""
1827
+ "Use output buffering &mdash; no configuration required, but slower (default)"
1828
  msgstr ""
1829
 
1830
+ #: modules/titles/titles.php:56
1831
+ msgid ""
1832
+ "Use filtering &mdash; faster, but configuration required (see the &#8220;"
1833
+ "Settings Help&#8221; dropdown for details)"
1834
  msgstr ""
1835
 
1836
+ #: modules/titles/titles.php:57
1837
+ msgid "Rewrite Method"
1838
  msgstr ""
1839
 
1840
+ #: modules/titles/titles.php:65
1841
+ msgid "{blog}"
1842
  msgstr ""
1843
 
1844
+ #: modules/titles/titles.php:66
1845
+ msgid "{post} | {blog}"
 
 
1846
  msgstr ""
1847
 
1848
+ #: modules/titles/titles.php:67
1849
+ msgid "{page} | {blog}"
1850
  msgstr ""
1851
 
1852
+ #: modules/titles/titles.php:68
1853
+ msgid "{category} | {blog}"
1854
  msgstr ""
1855
 
1856
+ #: modules/titles/titles.php:69
1857
+ msgid "{tag} | {blog}"
1858
  msgstr ""
1859
 
1860
+ #: modules/titles/titles.php:70
1861
+ msgid "Archives for {month} {day}, {year} | {blog}"
1862
  msgstr ""
1863
 
1864
+ #: modules/titles/titles.php:71
1865
+ msgid "Archives for {month} {year} | {blog}"
1866
  msgstr ""
1867
 
1868
+ #: modules/titles/titles.php:72
1869
+ msgid "Archives for {year} | {blog}"
1870
  msgstr ""
1871
 
1872
+ #: modules/titles/titles.php:73
1873
+ msgid "Posts by {author} | {blog}"
1874
  msgstr ""
1875
 
1876
+ #: modules/titles/titles.php:74
1877
+ msgid "Search Results for {query} | {blog}"
1878
  msgstr ""
1879
 
1880
+ #: modules/titles/titles.php:75
1881
+ msgid "404 Not Found | {blog}"
1882
  msgstr ""
1883
 
1884
+ #: modules/titles/titles.php:76
1885
+ msgid "{title} - Page {num}"
1886
  msgstr ""
1887
 
1888
+ #: modules/titles/titles.php:85
1889
+ msgid "Blog Homepage Title"
1890
  msgstr ""
1891
 
1892
+ #: modules/titles/titles.php:86
1893
+ msgid "Post Title Format"
1894
  msgstr ""
1895
 
1896
+ #: modules/titles/titles.php:87
1897
+ msgid "Page Title Format"
1898
  msgstr ""
1899
 
1900
+ #: modules/titles/titles.php:88
1901
+ msgid "Category Title Format"
1902
  msgstr ""
1903
 
1904
+ #: modules/titles/titles.php:89
1905
+ msgid "Tag Title Format"
1906
  msgstr ""
1907
 
1908
+ #: modules/titles/titles.php:90
1909
+ msgid "Day Archive Title Format"
 
 
 
 
 
 
1910
  msgstr ""
1911
 
1912
+ #: modules/titles/titles.php:91
1913
+ msgid "Month Archive Title Format"
1914
  msgstr ""
1915
 
1916
+ #: modules/titles/titles.php:92
1917
+ msgid "Year Archive Title Format"
1918
  msgstr ""
1919
 
1920
+ #: modules/titles/titles.php:93
1921
+ msgid "Author Archive Title Format"
 
 
 
1922
  msgstr ""
1923
 
1924
+ #: modules/titles/titles.php:94
1925
+ msgid "Search Title Format"
 
1926
  msgstr ""
1927
 
1928
+ #: modules/titles/titles.php:95
1929
+ msgid "404 Title Format"
 
1930
  msgstr ""
1931
 
1932
+ #: modules/titles/titles.php:96
1933
+ msgid "Pagination Title Format"
 
1934
  msgstr ""
1935
 
1936
+ #: modules/titles/titles.php:328
1937
+ msgid "Title Tag:"
 
1938
  msgstr ""
1939
 
1940
+ #: modules/titles/titles.php:333
1941
+ msgid ""
1942
+ "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
1943
+ "tag. The title appears in visitors&#8217; title bars and in search engine "
1944
+ "result titles. If this box is left blank, then the <a href=\"admin.php?"
1945
+ "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
1946
  msgstr ""
1947
 
1948
+ #: modules/user-code/user-code.php:12
1949
+ msgid "Code Inserter"
1950
  msgstr ""
1951
 
1952
+ #: modules/user-code/user-code.php:27
1953
+ msgid "Everywhere"
 
1954
  msgstr ""
1955
 
1956
+ #: modules/user-code/user-code.php:34
1957
+ msgid "&lt;head&gt; Tag"
 
1958
  msgstr ""
1959
 
1960
+ #: modules/user-code/user-code.php:35
1961
+ msgid "Before Item Content"
 
1962
  msgstr ""
1963
 
1964
+ #: modules/user-code/user-code.php:36
1965
+ msgid "After Item Content"
1966
  msgstr ""
1967
 
1968
+ #: modules/user-code/user-code.php:37
1969
+ msgid "Footer"
1970
  msgstr ""
1971
 
1972
+ #: modules/user-code/user-code.php:51
1973
+ msgid "Code Inserter module"
1974
  msgstr ""
1975
 
1976
+ #: modules/rich-snippets/rich-snippets.php:12
1977
+ msgid "Rich Snippet Creator"
 
 
 
 
 
 
 
1978
  msgstr ""
1979
 
1980
+ #: modules/rich-snippets/rich-snippets.php:17
1981
+ msgid ""
1982
+ "Reviews\n"
1983
+ "Review"
1984
  msgstr ""
1985
 
1986
+ #: modules/rich-snippets/rich-snippets.php:28
1987
+ msgid "Data Format"
1988
  msgstr ""
1989
 
1990
+ #: modules/rich-snippets/rich-snippets.php:29
1991
+ msgid "Categories/Tags That Indicate Reviews"
1992
  msgstr ""
1993
 
1994
+ #: modules/rich-snippets/rich-snippets.php:37
1995
+ msgid "Microformats (recommended)"
1996
  msgstr ""
1997
 
1998
+ #: modules/rich-snippets/rich-snippets.php:43
1999
+ msgid "HTML5 Microdata"
 
2000
  msgstr ""
2001
 
2002
+ #: modules/rich-snippets/rich-snippets.php:49
2003
+ msgid "RDFa"
2004
  msgstr ""
2005
 
2006
+ #: modules/rich-snippets/rich-snippets.php:62
2007
+ #: modules/rich-snippets/rich-snippets.php:224
2008
+ msgid "Review"
2009
  msgstr ""
2010
 
2011
+ #: modules/rich-snippets/rich-snippets.php:70
2012
+ msgid "Item Reviewed"
2013
  msgstr ""
2014
 
2015
+ #: modules/rich-snippets/rich-snippets.php:78
2016
+ msgid "Star Rating"
 
 
2017
  msgstr ""
2018
 
2019
+ #: modules/rich-snippets/rich-snippets.php:83
2020
+ msgid "Review Author"
 
 
2021
  msgstr ""
2022
 
2023
+ #: modules/rich-snippets/rich-snippets.php:89
2024
+ msgid "Date Reviewed"
 
 
2025
  msgstr ""
2026
 
2027
+ #: modules/rich-snippets/rich-snippets.php:223
2028
+ #: modules/rich-snippets/rich-snippets.php:232
2029
+ msgid "None"
2030
  msgstr ""
2031
 
2032
+ #: modules/rich-snippets/rich-snippets.php:225
2033
+ msgid "Rich Snippet Type:"
 
 
2034
  msgstr ""
2035
 
2036
+ #: modules/rich-snippets/rich-snippets.php:229
2037
+ msgid "Name of Reviewed Item:"
2038
  msgstr ""
2039
 
2040
+ #: modules/rich-snippets/rich-snippets.php:233
2041
+ msgid "0.5 stars"
2042
  msgstr ""
2043
 
2044
+ #: modules/rich-snippets/rich-snippets.php:234
2045
+ msgid "1 star"
2046
  msgstr ""
2047
+
2048
+ #: modules/rich-snippets/rich-snippets.php:235
2049
+ msgid "1.5 stars"
2050
  msgstr ""
2051
 
2052
+ #: modules/rich-snippets/rich-snippets.php:236
2053
+ msgid "2 stars"
2054
  msgstr ""
2055
 
2056
+ #: modules/rich-snippets/rich-snippets.php:237
2057
+ msgid "2.5 stars"
2058
  msgstr ""
2059
 
2060
+ #: modules/rich-snippets/rich-snippets.php:238
2061
+ msgid "3 stars"
2062
  msgstr ""
2063
 
2064
+ #: modules/rich-snippets/rich-snippets.php:239
2065
+ msgid "3.5 stars"
2066
  msgstr ""
2067
 
2068
+ #: modules/rich-snippets/rich-snippets.php:240
2069
+ msgid "4 stars"
2070
  msgstr ""
2071
 
2072
+ #: modules/rich-snippets/rich-snippets.php:241
2073
+ msgid "4.5 stars"
2074
  msgstr ""
2075
 
2076
+ #: modules/rich-snippets/rich-snippets.php:242
2077
+ msgid "5 stars"
2078
  msgstr ""
2079
 
2080
+ #: modules/rich-snippets/rich-snippets.php:243
2081
+ msgid "Star Rating for Reviewed Item:"
2082
  msgstr ""
2083
 
2084
+ #: modules/site-keyword-queries/site-keyword-queries.php:12
2085
+ msgid "Internal Relevance Researcher"
2086
  msgstr ""
2087
 
2088
+ #: modules/site-keyword-queries/site-keyword-queries.php:13
2089
+ msgid "Int. Rel. Researcher"
2090
  msgstr ""
2091
 
2092
+ #: modules/site-keyword-queries/site-keyword-queries.php:21
2093
+ msgid "Step 1: Enter Keywords"
2094
  msgstr ""
2095
 
2096
+ #: modules/site-keyword-queries/site-keyword-queries.php:23
2097
+ msgid "(Type one keyword per line)"
2098
  msgstr ""
2099
 
2100
+ #: modules/site-keyword-queries/site-keyword-queries.php:25
2101
+ msgid "Step 2: Set Options and Submit"
2102
  msgstr ""
2103
 
2104
+ #: modules/site-keyword-queries/site-keyword-queries.php:27
2105
+ msgid "Put keywords in quotes"
2106
  msgstr ""
2107
 
2108
+ #: modules/permalinks/permalinks.php:15
2109
+ msgid "Permalink Tweaker"
2110
  msgstr ""
2111
 
2112
+ #: modules/permalinks/permalinks.php:44
2113
+ msgid ""
2114
+ "To use the Permalinks Tweaker, you must disable default (query-string) "
2115
+ "permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
2116
  msgstr ""
2117
 
2118
+ #: modules/permalinks/permalinks.php:62
2119
+ msgid "%1$s (turn <code>%2$s</code> into <code>%3$s</code>)"
2120
  msgstr ""
2121
 
2122
+ #: modules/permalinks/permalinks.php:69
2123
+ msgid "Remove the URL bases of..."
2124
  msgstr ""
2125
 
2126
+ #: modules/wp-settings/wp-settings.php:14
2127
+ msgid "Settings Monitor (Beta)"
2128
  msgstr ""
2129
 
2130
+ #: modules/wp-settings/wp-settings.php:15
2131
+ msgid "Settings Monitor"
2132
  msgstr ""
2133
 
2134
+ #: modules/wp-settings/wp-settings.php:30
2135
+ msgid "Blog is visible to search engines"
2136
  msgstr ""
2137
 
2138
+ #: modules/wp-settings/wp-settings.php:31
2139
+ msgid "WordPress will allow search engines to visit your site."
2140
  msgstr ""
2141
 
2142
+ #: modules/wp-settings/wp-settings.php:33
2143
+ msgid "Blog is hidden from search engines"
2144
  msgstr ""
2145
 
2146
+ #: modules/wp-settings/wp-settings.php:34
2147
+ msgid ""
2148
+ "WordPress is configured to block search engines. This will nullify your "
2149
+ "site&#8217;s SEO and should be resolved immediately."
2150
  msgstr ""
2151
 
2152
+ #: modules/wp-settings/wp-settings.php:38
2153
+ msgid "Query-string permalinks enabled"
2154
  msgstr ""
2155
 
2156
+ #: modules/wp-settings/wp-settings.php:39
2157
+ msgid ""
2158
+ "It is highly recommended that you use a non-default and non-numeric "
2159
+ "permalink structure."
2160
  msgstr ""
2161
 
2162
+ #: modules/wp-settings/wp-settings.php:43
2163
+ msgid "Pathinfo permalinks enabled"
2164
  msgstr ""
2165
 
2166
+ #: modules/wp-settings/wp-settings.php:44
2167
+ msgid ""
2168
+ "Pathinfo permalinks add a keyword-less &#8220;index.php&#8221; prefix. This "
2169
+ "is not ideal, but it may be beyond your control (since it&#8217;s likely "
2170
+ "caused by your site&#8217;s web hosting setup)."
2171
  msgstr ""
2172
 
2173
+ #: modules/wp-settings/wp-settings.php:49
2174
+ msgid "Permalinks include the post slug"
2175
  msgstr ""
2176
 
2177
+ #: modules/wp-settings/wp-settings.php:50
2178
+ msgid ""
2179
+ "Including a version of the post&#8217;s title helps provide keyword-rich "
2180
+ "URLs."
2181
  msgstr ""
2182
 
2183
+ #: modules/wp-settings/wp-settings.php:52
2184
+ msgid "Permalinks do not include the post slug"
2185
  msgstr ""
2186
 
2187
+ #: modules/wp-settings/wp-settings.php:53
2188
  msgid ""
2189
+ "It is highly recommended that you include the %postname% variable in the "
2190
+ "permalink structure."
2191
  msgstr ""
2192
 
2193
+ #: modules/wp-settings/wp-settings.php:63
2194
+ msgid ""
2195
+ "Settings Monitor analyzes your blog&#8217;s settings and notifies you of any "
2196
+ "problems. If any issues are found, they will show up in red or yellow below."
2197
  msgstr ""
2198
 
2199
+ #: modules/wp-settings/wp-settings.php:75
2200
+ msgid "Go to setting &raquo;"
2201
  msgstr ""
2202
 
2203
+ #: modules/files/files.php:14
2204
+ msgid "File Editor"
2205
  msgstr ""
2206
 
2207
+ #: modules/files/files.php:53
2208
  msgid ""
2209
+ "A .htaccess file exists, but it&#8217;s not writable. You can edit it here "
2210
+ "once the file permissions are corrected."
 
 
 
 
2211
  msgstr ""
2212
 
2213
+ #: modules/files/files.php:59
2214
+ msgid ""
2215
+ "WordPress won&#8217;t be able to display your robots.txt file because the "
2216
+ "default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
2217
+ "structure</a> is in use."
2218
  msgstr ""
2219
 
2220
+ #: modules/files/files.php:66
2221
+ msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
2222
  msgstr ""
2223
 
2224
+ #: modules/files/files.php:70
2225
+ msgid "Enable this custom robots.txt file and disable the default file"
2226
  msgstr ""
2227
 
2228
+ #: modules/files/files.php:71
2229
+ msgid "Let other plugins add rules to my custom robots.txt file"
2230
  msgstr ""
2231
 
2232
+ #: modules/files/files.php:72
2233
+ msgid "robots.txt Settings"
2234
  msgstr ""
2235
 
2236
+ #: modules/files/files.php:75
2237
+ msgid ""
2238
+ "Please realize that incorrectly editing your robots.txt file could block "
2239
+ "search engines from your site."
2240
  msgstr ""
2241
 
2242
+ #: modules/files/files.php:79
2243
+ msgid ".htaccess"
2244
  msgstr ""
2245
 
2246
+ #: modules/files/files.php:82
2247
+ msgid ""
2248
+ "Also, incorrectly editing your .htaccess file could disable your entire "
2249
+ "website. Edit with caution!"
2250
  msgstr ""
2251
 
2252
+ #: modules/files/files.php:134
2253
+ msgid ""
2254
+ "Please note that your privacy settings won&#8217;t have any effect on your "
2255
+ "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
2256
  msgstr ""
2257
 
2258
+ #: modules/widgets/widgets.php:12
2259
+ msgid "SEO Ultimate Widgets"
2260
  msgstr ""
2261
 
2262
+ #: modules/widgets/widgets.php:36
2263
+ msgid ""
2264
+ "On category archives, displays a list of child categories and/or posts in "
2265
+ "the category. Displays a list of top-level categories everywhere else. "
2266
+ "Powered by the SEO Ultimate plugin."
2267
  msgstr ""
2268
 
2269
+ #: modules/widgets/widgets.php:37
2270
+ msgid "Siloed Categories"
2271
  msgstr ""
2272
 
2273
+ #: modules/widgets/widgets.php:51
2274
+ msgid "Tags"
2275
  msgstr ""
2276
 
2277
+ #: modules/widgets/widgets.php:122
2278
+ msgid "Title:"
 
 
 
 
2279
  msgstr ""
2280
 
2281
+ #: modules/widgets/widgets.php:126
2282
+ msgid "Show post counts"
2283
  msgstr ""
2284
 
2285
+ #: modules/widgets/widgets.php:128
2286
+ msgid "Taxonomy:"
2287
  msgstr ""
2288
 
2289
+ #: modules/widgets/widgets.php:153
2290
+ msgid ""
2291
+ "Add this widget to display Deeplink Juggernaut&#8217;s Footer Links in a "
2292
+ "widget area of your choosing rather than the default wp_footer section. "
2293
+ "Powered by the SEO Ultimate plugin."
2294
  msgstr ""
2295
 
2296
+ #: modules/widgets/widgets.php:207
2297
+ msgid "Title: <em>(optional)</em>"
2298
  msgstr ""
2299
 
2300
+ #: modules/widgets/widgets.php:211
2301
+ msgid "Display as a list"
2302
  msgstr ""
2303
 
2304
+ #: modules/widgets/widgets.php:214
2305
+ msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
2306
  msgstr ""
2307
 
2308
+ #: modules/misc/misc.php:11
2309
+ msgid "Miscellaneous"
2310
  msgstr ""
2311
 
2312
+ #: modules/misc/misc.php:14
2313
+ msgid ""
2314
+ "The Miscellaneous page contains modules that don&#8217;t have enough "
2315
+ "settings to warrant their own separate admin pages."
2316
  msgstr ""
2317
 
2318
+ #: modules/canonical/canonical.php:12
2319
+ msgid "Canonicalizer"
2320
  msgstr ""
2321
 
2322
+ #: modules/canonical/canonical.php:39
2323
+ msgid ""
2324
+ "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> meta tags."
2325
  msgstr ""
2326
 
2327
+ #: modules/canonical/canonical.php:40
2328
+ msgid "Send <code>rel=&quot;canonical&quot;</code> HTTP headers."
2329
  msgstr ""
2330
 
2331
+ #: modules/canonical/canonical.php:41
2332
+ msgid "Redirect requests for nonexistent pagination."
2333
  msgstr ""
2334
 
2335
  #. Plugin URI of the plugin/theme