SEO Ultimate - Version 5.1

Version Description

Download this release

Release Info

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

Code changes from version 5.0.1 to 5.1

Files changed (4) hide show
  1. modules/meta/meta-keywords.php +36 -2
  2. readme.txt +6 -3
  3. seo-ultimate.php +5 -5
  4. seo-ultimate.pot +807 -807
modules/meta/meta-keywords.php CHANGED
@@ -35,7 +35,26 @@ class SU_MetaKeywords extends SU_Module {
35
 
36
  function defaults_tab() {
37
  $this->admin_form_table_start();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  $this->textarea('global_keywords', __('Sitewide Keywords', 'seo-ultimate') . '<br /><small><em>' . __('(Separate with commas)', 'seo-ultimate') . '</em></small>');
 
39
  $this->admin_form_table_end();
40
  }
41
 
@@ -53,10 +72,25 @@ class SU_MetaKeywords extends SU_Module {
53
  if (is_home()) {
54
  $kw = $this->get_setting('home_keywords');
55
 
56
- //If we're viewing a post or page, look for its meta data.
57
  } elseif (is_singular()) {
 
 
58
  $kw = $this->get_postmeta('keywords');
59
-
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  //If we're viewing a term, look for its meta data.
61
  } elseif (is_category() || is_tag() || is_tax()) {
62
  global $wp_query;
35
 
36
  function defaults_tab() {
37
  $this->admin_form_table_start();
38
+
39
+ $posttypenames = suwp::get_post_type_names();
40
+ foreach ($posttypenames as $posttypename) {
41
+ $posttype = get_post_type_object($posttypename);
42
+ $posttypelabel = $posttype->labels->name;
43
+
44
+ $checkboxes = array();
45
+ $taxnames = get_object_taxonomies($posttypename);
46
+
47
+ foreach ($taxnames as $taxname) {
48
+ $taxonomy = get_taxonomy($taxname);
49
+ $checkboxes["auto_keywords_posttype_{$posttypename}_tax_{$taxname}"] = $taxonomy->labels->name;
50
+ }
51
+
52
+ if ($checkboxes)
53
+ $this->checkboxes($checkboxes, $posttypelabel);
54
+ }
55
+
56
  $this->textarea('global_keywords', __('Sitewide Keywords', 'seo-ultimate') . '<br /><small><em>' . __('(Separate with commas)', 'seo-ultimate') . '</em></small>');
57
+
58
  $this->admin_form_table_end();
59
  }
60
 
72
  if (is_home()) {
73
  $kw = $this->get_setting('home_keywords');
74
 
75
+ //If we're viewing a post or page...
76
  } elseif (is_singular()) {
77
+
78
+ //...look for its meta data
79
  $kw = $this->get_postmeta('keywords');
80
+
81
+ //...and add default values
82
+ if ($posttypename = get_post_type()) {
83
+ $taxnames = get_object_taxonomies($posttypename);
84
+
85
+ foreach ($taxnames as $taxname)
86
+ if ($this->get_setting("auto_keywords_posttype_{$posttypename}_tax_{$taxname}", false)) {
87
+ $terms = get_the_terms(0, $taxname);
88
+ $terms = suarr::flatten_values($terms, 'name');
89
+ $terms = implode(',', $terms);
90
+ $kw .= ',' . $terms;
91
+ }
92
+ }
93
+
94
  //If we're viewing a term, look for its meta data.
95
  } elseif (is_category() || is_tag() || is_tax()) {
96
  global $wp_query;
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.0
5
  Tested up to: 3.1
6
- Stable tag: 5.0.1
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
@@ -11,11 +11,11 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
11
 
12
  = Recent Releases =
13
 
 
14
  * Version 5.0 increases database usage efficiency
15
  * Version 4.9 adds autogenerated meta descriptions
16
  * Version 4.8 adds Deeplink Juggernaut features
17
  * Version 4.7 adds the Link Mask Generator module
18
- * Version 4.6 adds a meta keywords mass-editor
19
 
20
  = Features =
21
 
@@ -33,7 +33,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
33
  * Mass-editor makes it a cinch to go back and add descriptions to old posts.
34
  * Use the `{excerpt::autogen}` variable to auto-generate meta descriptions if desired.
35
 
36
- * **Meta Keywords Editor** -- UPDATED in Version 4.6
37
  * Edit the `<meta>` keyword tags for posts, pages, and the homepage.
38
  * Easily specify global keywords that are applied across the entire site.
39
  * Go back and edit old posts' keywords with the mass-editor.
@@ -226,6 +226,9 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
226
 
227
  == Changelog ==
228
 
 
 
 
229
  = Version 5.0.1 (May 14, 2011) =
230
  * Bugfix: Meta Description Editor no longer calls the `the_content` filter, since doing so broke some plugins that would add their content to that filter only once per page load
231
  * Bugfix: Added additional input filtering to 404 Monitor settings
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.0
5
  Tested up to: 3.1
6
+ Stable tag: 5.1
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
11
 
12
  = Recent Releases =
13
 
14
+ * Version 5.1 adds meta keyword auto-generation
15
  * Version 5.0 increases database usage efficiency
16
  * Version 4.9 adds autogenerated meta descriptions
17
  * Version 4.8 adds Deeplink Juggernaut features
18
  * Version 4.7 adds the Link Mask Generator module
 
19
 
20
  = Features =
21
 
33
  * Mass-editor makes it a cinch to go back and add descriptions to old posts.
34
  * Use the `{excerpt::autogen}` variable to auto-generate meta descriptions if desired.
35
 
36
+ * **Meta Keywords Editor** -- UPDATED in Version 5.1
37
  * Edit the `<meta>` keyword tags for posts, pages, and the homepage.
38
  * Easily specify global keywords that are applied across the entire site.
39
  * Go back and edit old posts' keywords with the mass-editor.
226
 
227
  == Changelog ==
228
 
229
+ = Version 5.1 (May 16, 2011) =
230
+ * Feature: Meta Keywords Editor can now auto-generate keywords for posts and custom post types using categories, tags, and custom taxonomy terms
231
+
232
  = Version 5.0.1 (May 14, 2011) =
233
  * Bugfix: Meta Description Editor no longer calls the `the_content` filter, since doing so broke some plugins that would add their content to that filter only once per page load
234
  * Bugfix: Added additional input filtering to 404 Monitor settings
seo-ultimate.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
- Version: 5.0.1
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
- * @version 5.0.1
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -42,15 +42,15 @@ if (!defined('ABSPATH')) {
42
  /********** CONSTANTS **********/
43
 
44
  //The minimum version of WordPress required
45
- define('SU_MINIMUM_WP_VER', '2.8');
46
 
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
- define('SU_VERSION', '5.0.1');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/5.0.1');
54
 
55
  /********** INCLUDES **********/
56
 
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
+ Version: 5.1
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
+ * @version 5.1
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
42
  /********** CONSTANTS **********/
43
 
44
  //The minimum version of WordPress required
45
+ define('SU_MINIMUM_WP_VER', '3.0');
46
 
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
+ define('SU_VERSION', '5.1');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/5.1');
54
 
55
  /********** INCLUDES **********/
56
 
seo-ultimate.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: SEO Ultimate 5.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
- "POT-Creation-Date: 2011-05-13 21:55:20+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -19,360 +19,391 @@ msgid ""
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
- #: modules/class.su-module.php:368
23
- msgid ""
24
- "(Note: This translated documentation was designed for an older version of "
25
- "SEO Ultimate and may be outdated.)"
26
  msgstr ""
27
 
28
- #: modules/class.su-module.php:971
29
- msgid "%s %s|Dropdown Title"
30
  msgstr ""
31
 
32
- #: modules/class.su-module.php:999
33
- msgid "%1$s | %2$s %3$s by %4$s"
34
  msgstr ""
35
 
36
- #: modules/class.su-module.php:1056
37
- msgid "Name"
38
  msgstr ""
39
 
40
- #: modules/class.su-module.php:1067
41
- msgid "Your site currently doesn&#8217;t have any public items of this type."
42
  msgstr ""
43
 
44
- #: modules/class.su-module.php:1150
45
- msgid "&laquo;"
 
 
46
  msgstr ""
47
 
48
- #: modules/class.su-module.php:1151
49
- msgid "&raquo;"
50
  msgstr ""
51
 
52
- #: modules/class.su-module.php:1158
53
- msgid "Displaying %s&#8211;%s of %s"
54
  msgstr ""
55
 
56
- #: modules/class.su-module.php:1171 modules/404s/fofs-log.php:115
57
- msgid "Actions"
58
  msgstr ""
59
 
60
- #: modules/class.su-module.php:1172
61
- msgid "ID"
62
  msgstr ""
63
 
64
- #: modules/class.su-module.php:1205
65
- msgid "View"
66
  msgstr ""
67
 
68
- #: modules/class.su-module.php:1205
69
- msgid "Edit"
70
  msgstr ""
71
 
72
- #: modules/class.su-module.php:1360
73
- msgid "Settings updated."
74
  msgstr ""
75
 
76
- #: modules/class.su-module.php:1381
77
- msgid "Save Changes"
78
  msgstr ""
79
 
80
- #: modules/class.su-module.php:1869
81
- msgid ""
82
- "Are you sure you want to replace the textbox contents with this default "
83
- "value?"
84
  msgstr ""
85
 
86
- #: modules/class.su-module.php:1884 modules/settings/settings-data.php:23
87
- msgid "Reset"
88
  msgstr ""
89
 
90
- #: modules/class.su-importmodule.php:49
91
- msgid "Import Post Fields"
92
  msgstr ""
93
 
94
- #: modules/class.su-importmodule.php:50
95
- msgid ""
96
- "Post fields store the SEO data for your posts/pages (i.e. your custom title "
97
- "tags, meta descriptions, and meta keywords). If you provided custom titles/"
98
- "descriptions/keywords to %s, this importer can move that data over to SEO "
99
- "Ultimate."
100
  msgstr ""
101
 
102
- #: modules/class.su-importmodule.php:53
103
- msgid "Conflict Resolution Mode"
104
  msgstr ""
105
 
106
- #: modules/class.su-importmodule.php:54
107
  msgid ""
108
- "What should the import tool do if it tries to move over a post&#8217;s %s "
109
- "data, but different data already exists in the corresponding SEO Ultimate "
110
- "fields?"
 
111
  msgstr ""
112
 
113
- #: modules/class.su-importmodule.php:56
114
- msgid "Skip that post and leave all data as-is (default)."
115
  msgstr ""
116
 
117
- #: modules/class.su-importmodule.php:57
118
- msgid "Delete the SEO Ultimate data and replace it with the %s data."
119
  msgstr ""
120
 
121
- #: modules/class.su-importmodule.php:58
122
- msgid "Keep the SEO Ultimate data and delete the %s data."
123
  msgstr ""
124
 
125
- #: modules/class.su-importmodule.php:61
126
- msgid "Deletion Preference"
127
  msgstr ""
128
 
129
- #: modules/class.su-importmodule.php:62
130
- msgid ""
131
- "When the migration tool successfully copies a post&#8217;s %1$s data over to "
132
- "SEO Ultimate, what should it do with the old %1$s data?"
133
  msgstr ""
134
 
135
- #: modules/class.su-importmodule.php:64
136
- msgid "Delete the %s data."
137
  msgstr ""
138
 
139
- #: modules/class.su-importmodule.php:65
140
- msgid "Leave behind the duplicate %s data (default)."
141
  msgstr ""
142
 
143
- #: modules/class.su-importmodule.php:72
144
- msgid "Import Now"
145
  msgstr ""
146
 
147
- #: modules/class.su-importmodule.php:75
148
- msgid ""
149
- "The import cannot be undone. It is your responsibility to <a href=\"%s\" "
150
- "target=\"_blank\">backup your database</a> before proceeding!"
151
  msgstr ""
152
 
153
- #: modules/class.su-importmodule.php:84
154
- msgid "Import complete."
155
  msgstr ""
156
 
157
- #: modules/class.su-importmodule.php:90
158
- msgid "Return to import page"
159
  msgstr ""
160
 
161
- #: modules/class.su-importmodule.php:93
162
- msgid "Return to settings page"
163
  msgstr ""
164
 
165
- #: modules/class.su-importmodule.php:96
166
- msgid "Return to SEO page"
167
  msgstr ""
168
 
169
- #: modules/class.su-importmodule.php:116
170
- msgid "Deactivated %s."
171
  msgstr ""
172
 
173
- #: modules/class.su-importmodule.php:174
174
- msgid "Imported a total of %d fields for one post/page/revision."
175
- msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
176
- msgstr[0] ""
177
- msgstr[1] ""
178
 
179
- #: modules/class.su-importmodule.php:180
180
- msgid "Skipped one post with disabled %2$s data."
181
- msgid_plural "Skipped %1$d posts with disabled %2$s data."
182
- msgstr[0] ""
183
- msgstr[1] ""
184
 
185
- #: modules/class.su-importmodule.php:186
186
- msgid ""
187
- "Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
188
- "settings you chose."
189
- msgid_plural ""
190
- "Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
191
- "settings you chose."
192
- msgstr[0] ""
193
- msgstr[1] ""
194
 
195
- #: modules/class.su-importmodule.php:192
196
- msgid "Deleted one %2$s field, as instructed by the settings you chose."
197
- msgid_plural ""
198
- "Deleted %1$d %2$s fields, as instructed by the settings you chose."
199
- msgstr[0] ""
200
- msgstr[1] ""
201
 
202
- #: modules/rich-snippets/rich-snippets.php:12
203
- msgid "Rich Snippet Creator"
204
  msgstr ""
205
 
206
- #: modules/rich-snippets/rich-snippets.php:17
207
- msgid ""
208
- "Reviews\n"
209
- "Review"
210
  msgstr ""
211
 
212
- #: modules/rich-snippets/rich-snippets.php:28
213
- msgid "Data Format"
214
  msgstr ""
215
 
216
- #: modules/rich-snippets/rich-snippets.php:29
217
- msgid "Categories/Tags That Indicate Reviews"
218
  msgstr ""
219
 
220
- #: modules/rich-snippets/rich-snippets.php:37
221
- msgid "Microformats (recommended)"
222
  msgstr ""
223
 
224
- #: modules/rich-snippets/rich-snippets.php:43
225
- msgid "HTML5 Microdata"
226
  msgstr ""
227
 
228
- #: modules/rich-snippets/rich-snippets.php:49
229
- msgid "RDFa"
230
  msgstr ""
231
 
232
- #: modules/rich-snippets/rich-snippets.php:62
233
- #: modules/rich-snippets/rich-snippets.php:218
234
- msgid "Review"
235
  msgstr ""
236
 
237
- #: modules/rich-snippets/rich-snippets.php:70
238
- msgid "Star Rating"
239
  msgstr ""
240
 
241
- #: modules/rich-snippets/rich-snippets.php:79
242
- msgid "Review Author"
 
 
243
  msgstr ""
244
 
245
- #: modules/rich-snippets/rich-snippets.php:85
246
- msgid "Date Reviewed"
 
 
 
247
  msgstr ""
248
 
249
- #: modules/rich-snippets/rich-snippets.php:217
250
- #: modules/rich-snippets/rich-snippets.php:223
251
- msgid "None"
252
  msgstr ""
253
 
254
- #: modules/rich-snippets/rich-snippets.php:219
255
- msgid "Rich Snippet Type:"
256
  msgstr ""
257
 
258
- #: modules/rich-snippets/rich-snippets.php:224
259
- msgid "0.5 stars"
 
 
 
 
 
 
 
 
260
  msgstr ""
261
 
262
- #: modules/rich-snippets/rich-snippets.php:225
263
- msgid "1 star"
264
  msgstr ""
265
 
266
- #: modules/rich-snippets/rich-snippets.php:226
267
- msgid "1.5 stars"
268
  msgstr ""
269
 
270
- #: modules/rich-snippets/rich-snippets.php:227
271
- msgid "2 stars"
272
  msgstr ""
273
 
274
- #: modules/rich-snippets/rich-snippets.php:228
275
- msgid "2.5 stars"
276
  msgstr ""
277
 
278
- #: modules/rich-snippets/rich-snippets.php:229
279
- msgid "3 stars"
280
  msgstr ""
281
 
282
- #: modules/rich-snippets/rich-snippets.php:230
283
- msgid "3.5 stars"
284
  msgstr ""
285
 
286
- #: modules/rich-snippets/rich-snippets.php:231
287
- msgid "4 stars"
288
  msgstr ""
289
 
290
- #: modules/rich-snippets/rich-snippets.php:232
291
- msgid "4.5 stars"
 
 
 
 
 
292
  msgstr ""
293
 
294
- #: modules/rich-snippets/rich-snippets.php:233
295
- msgid "5 stars"
 
 
 
296
  msgstr ""
297
 
298
- #: modules/rich-snippets/rich-snippets.php:234
299
- msgid "Star Rating for Reviewed Item:"
300
  msgstr ""
301
 
302
- #: modules/site-keyword-queries/site-keyword-queries.php:12
303
- msgid "Internal Relevance Researcher"
 
 
 
 
304
  msgstr ""
305
 
306
- #: modules/site-keyword-queries/site-keyword-queries.php:13
307
- msgid "Int. Rel. Researcher"
308
  msgstr ""
309
 
310
- #: modules/site-keyword-queries/site-keyword-queries.php:21
311
- msgid "Step 1: Enter Keywords"
 
 
 
312
  msgstr ""
313
 
314
- #: modules/site-keyword-queries/site-keyword-queries.php:23
315
- msgid "(Type one keyword per line)"
316
  msgstr ""
317
 
318
- #: modules/site-keyword-queries/site-keyword-queries.php:25
319
- msgid "Step 2: Set Options and Submit"
320
  msgstr ""
321
 
322
- #: modules/site-keyword-queries/site-keyword-queries.php:27
323
- msgid "Put keywords in quotes"
324
  msgstr ""
325
 
326
- #: modules/site-keyword-queries/site-keyword-queries.php:28
327
- #: modules/competition-queries/competition-queries.php:62
328
- msgid "Show 100 results per page"
329
  msgstr ""
330
 
331
- #: modules/site-keyword-queries/site-keyword-queries.php:30
332
- #: modules/competition-queries/competition-queries.php:64
333
- msgid "Use Google&#8217;s minimal mode"
 
334
  msgstr ""
335
 
336
- #: modules/site-keyword-queries/site-keyword-queries.php:33
337
- #: modules/competition-queries/competition-queries.php:70
338
- msgid "Submit"
339
  msgstr ""
340
 
341
- #: modules/internal-link-aliases/internal-link-aliases.php:20
342
- msgid "Link Mask Generator"
343
  msgstr ""
344
 
345
- #: modules/internal-link-aliases/internal-link-aliases.php:24
346
- msgid "Alias Directory"
347
  msgstr ""
348
 
349
- #: modules/internal-link-aliases/internal-link-aliases.php:43
350
- msgid "Link Masks"
 
 
351
  msgstr ""
352
 
353
- #: modules/internal-link-aliases/internal-link-aliases.php:46
354
- #: modules/autolinks/content-autolinks.php:196
355
- msgid "URL"
356
  msgstr ""
357
 
358
- #: modules/internal-link-aliases/internal-link-aliases.php:46
359
- msgid "Mask URL"
360
  msgstr ""
361
 
362
- #: modules/internal-link-aliases/internal-link-aliases.php:66
363
- msgid ""
364
- "You can stop search engines from following a link by typing in a mask for "
365
- "its URL."
366
  msgstr ""
367
 
368
- #: modules/internal-link-aliases/internal-link-aliases.php:122
369
- msgid "Added by Link Alias Generator (LAG) module"
370
  msgstr ""
371
 
372
- #: modules/internal-link-aliases/internal-link-aliases.php:133
373
- msgid "End LAG"
374
  msgstr ""
375
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
376
  #: modules/titles/titles.php:12
377
  msgid "Title Tag Rewriter"
378
  msgstr ""
@@ -506,120 +537,190 @@ msgid ""
506
  "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
507
  msgstr ""
508
 
509
- #: modules/competition-queries/competition-queries.php:12
510
- msgid "Competition Researcher"
 
 
511
  msgstr ""
512
 
513
- #: modules/competition-queries/competition-queries.php:13
514
- msgid "Comp. Researcher"
515
  msgstr ""
516
 
517
- #: modules/competition-queries/competition-queries.php:17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
518
  msgid ""
519
- "The Competition Researcher provides you with easy access to various search "
520
- "engine tools which you can use to research multiple search queries or URLs."
521
  msgstr ""
522
 
523
- #: modules/competition-queries/competition-queries.php:21
524
- msgid "Step 1: Choose Your Research Tool"
525
  msgstr ""
526
 
527
- #: modules/competition-queries/competition-queries.php:25
528
- msgid "Keywords"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
529
  msgstr ""
530
 
531
- #: modules/competition-queries/competition-queries.php:25
532
- msgid "Normal Search"
533
  msgstr ""
534
 
535
- #: modules/competition-queries/competition-queries.php:25
536
- msgid "Find out how many pages contain the words in each query"
537
  msgstr ""
538
 
539
- #: modules/competition-queries/competition-queries.php:26
540
- msgid "Phrase Match"
541
  msgstr ""
542
 
543
- #: modules/competition-queries/competition-queries.php:26
544
- msgid ""
545
- "Find out how many &#8220;actual&#8221; pages are competing for each query"
546
  msgstr ""
547
 
548
- #: modules/competition-queries/competition-queries.php:27
549
- msgid "Allinanchor"
550
  msgstr ""
551
 
552
- #: modules/competition-queries/competition-queries.php:27
553
- msgid "Find out which sites have the most links for each query"
554
  msgstr ""
555
 
556
- #: modules/competition-queries/competition-queries.php:28
557
- msgid "Allintitle"
558
  msgstr ""
559
 
560
- #: modules/competition-queries/competition-queries.php:28
561
- msgid ""
562
- "Find out which sites have the highest relevance in the title for each query"
563
  msgstr ""
564
 
565
- #: modules/competition-queries/competition-queries.php:29
566
- msgid "Allintext"
567
  msgstr ""
568
 
569
- #: modules/competition-queries/competition-queries.php:29
570
- msgid "Find out which sites have the most relevant content/text on their pages"
571
  msgstr ""
572
 
573
- #: modules/competition-queries/competition-queries.php:30
574
- msgid "Allinurl"
575
  msgstr ""
576
 
577
- #: modules/competition-queries/competition-queries.php:30
578
- msgid ""
579
- "Find out which sites have the most relevant naming conventions for each "
580
- "keyword"
581
  msgstr ""
582
 
583
- #: modules/competition-queries/competition-queries.php:32
584
- msgid "URLs"
585
  msgstr ""
586
 
587
- #: modules/competition-queries/competition-queries.php:32
588
- msgid "Site"
589
  msgstr ""
590
 
591
- #: modules/competition-queries/competition-queries.php:32
592
- msgid "Find out how many pages are indexed for each domain"
593
  msgstr ""
594
 
595
- #: modules/competition-queries/competition-queries.php:33
596
- #: modules/competition-queries/competition-queries.php:38
597
- msgid "Inbound Links"
598
  msgstr ""
599
 
600
- #: modules/competition-queries/competition-queries.php:33
601
- msgid "Find out how many sites link to the domains"
602
  msgstr ""
603
 
604
- #: modules/competition-queries/competition-queries.php:34
605
- #: modules/competition-queries/competition-queries.php:38
606
- msgid "Outbound Links"
607
  msgstr ""
608
 
609
- #: modules/competition-queries/competition-queries.php:34
610
- msgid "Find out how many sites the domains link to"
611
  msgstr ""
612
 
613
- #: modules/competition-queries/competition-queries.php:56
614
- msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
615
  msgstr ""
616
 
617
- #: modules/competition-queries/competition-queries.php:58
618
- msgid "(Type in one per line)"
619
  msgstr ""
620
 
621
- #: modules/competition-queries/competition-queries.php:60
622
- msgid "Step 3: Set Options and Submit"
 
 
 
 
623
  msgstr ""
624
 
625
  #: modules/meta/meta-keywords.php:12
@@ -634,27 +735,23 @@ msgstr ""
634
  msgid "Default Values"
635
  msgstr ""
636
 
637
- #: modules/meta/meta-keywords.php:25 modules/meta/meta-descriptions.php:25
638
- msgid "Blog Homepage"
639
- msgstr ""
640
-
641
- #: modules/meta/meta-keywords.php:38
642
  msgid "Sitewide Keywords"
643
  msgstr ""
644
 
645
- #: modules/meta/meta-keywords.php:38
646
  msgid "(Separate with commas)"
647
  msgstr ""
648
 
649
- #: modules/meta/meta-keywords.php:44
650
  msgid "Blog Homepage Meta Keywords"
651
  msgstr ""
652
 
653
- #: modules/meta/meta-keywords.php:87
654
  msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
655
  msgstr ""
656
 
657
- #: modules/meta/meta-keywords.php:92
658
  msgid ""
659
  "<strong>Keywords</strong> &mdash; The value of the meta keywords tag. The "
660
  "keywords list gives search engines a hint as to what this post/page is "
@@ -709,334 +806,246 @@ msgstr ""
709
  msgid "Don&#8217t cache or archive this site."
710
  msgstr ""
711
 
712
- #: modules/meta/meta-descriptions.php:12
713
- msgid "Meta Description Editor"
714
- msgstr ""
715
-
716
- #: modules/meta/meta-descriptions.php:13
717
- msgid "Meta Descriptions"
718
- msgstr ""
719
-
720
- #: modules/meta/meta-descriptions.php:31
721
- msgid "Meta Description"
722
- msgstr ""
723
-
724
- #: modules/meta/meta-descriptions.php:46
725
- msgid "Post Description Format"
726
- msgstr ""
727
-
728
- #: modules/meta/meta-descriptions.php:53
729
- msgid "Blog Homepage Meta Description"
730
- msgstr ""
731
-
732
- #: modules/meta/meta-descriptions.php:55
733
- msgid "Use this blog&#8217s tagline as the default homepage description."
734
- msgstr ""
735
-
736
- #: modules/meta/meta-descriptions.php:56
737
- msgid "Default Value"
738
- msgstr ""
739
-
740
- #: modules/meta/meta-descriptions.php:112
741
- msgid "Meta Description:"
742
- msgstr ""
743
-
744
- #: modules/meta/meta-descriptions.php:115
745
- msgid "You&#8217;ve entered %s characters. Most search engines use up to 160."
746
- msgstr ""
747
-
748
- #: modules/meta/meta-descriptions.php:123
749
- msgid ""
750
- "<strong>Description</strong> &mdash; The value of the meta description tag. "
751
- "The description will often appear underneath the title in search engine "
752
- "results. Writing an accurate, attention-grabbing description for every post "
753
- "is important to ensuring a good search results clickthrough rate."
754
- msgstr ""
755
-
756
- #: modules/import-aiosp/import-aiosp.php:12
757
- msgid "Import from All in One SEO Pack"
758
- msgstr ""
759
-
760
- #: modules/import-aiosp/import-aiosp.php:13
761
- msgid "AIOSP Import"
762
  msgstr ""
763
 
764
- #: modules/import-aiosp/import-aiosp.php:15
765
- msgid "All in One SEO Pack"
766
  msgstr ""
767
 
768
- #: modules/import-aiosp/import-aiosp.php:16
769
- msgid "AIOSP"
770
  msgstr ""
771
 
772
- #: modules/import-aiosp/import-aiosp.php:17
773
- msgid "Import post data (custom title tags and meta tags)."
774
  msgstr ""
775
 
776
- #: modules/import-aiosp/import-aiosp.php:21
777
- msgid ""
778
- "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
779
- "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
780
- "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
781
- "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
782
- "to be currently installed or activated for the import to take place."
783
  msgstr ""
784
 
785
- #: modules/import-aiosp/import-aiosp.php:23
786
  msgid ""
787
- "The import tool can only move over data from AIOSP version 1.6 or above. If "
788
- "you use an older version of AIOSP, you should update to the latest version "
789
- "first and run AIOSP&#8217;s upgrade process."
790
- msgstr ""
791
-
792
- #: modules/sds-blog/sds-blog.php:12
793
- msgid "Whitepapers"
794
- msgstr ""
795
-
796
- #: modules/sds-blog/sds-blog.php:13
797
- msgid "SEO Design Solutions Whitepapers"
798
  msgstr ""
799
 
800
- #. #-#-#-#-# plugin.pot (SEO Ultimate 5.0) #-#-#-#-#
801
- #. Author of the plugin/theme
802
- #: modules/sds-blog/sds-blog.php:49
803
- msgid "SEO Design Solutions"
804
  msgstr ""
805
 
806
- #: modules/sds-blog/sds-blog.php:50
807
- msgid ""
808
- "The search engine optimization articles below are loaded from the website of "
809
- "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
810
- "an article&#8217;s title to read it."
811
  msgstr ""
812
 
813
- #: modules/modules/modules.php:12
814
- msgid "Module Manager"
815
  msgstr ""
816
 
817
- #: modules/modules/modules.php:13
818
- msgid "Modules"
819
  msgstr ""
820
 
821
- #: modules/modules/modules.php:37
822
- msgid ""
823
- "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
824
- "&#8221; By default, most of these modules are listed in the &#8220;"
825
- "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
826
- "you can view documentation by clicking the tabs in the upper-right-hand "
827
- "corner of your administration screen."
828
  msgstr ""
829
 
830
- #: modules/modules/modules.php:39
831
  msgid ""
832
- "The Module Manager lets you disable or hide modules you don&#8217;t use. "
833
- "You can also silence modules from displaying bubble alerts on the menu."
834
- msgstr ""
835
-
836
- #: modules/modules/modules.php:45
837
- msgid "Status"
838
- msgstr ""
839
-
840
- #: modules/modules/modules.php:46
841
- msgid "Module"
842
- msgstr ""
843
-
844
- #: modules/modules/modules.php:59
845
- msgid "Enabled"
846
- msgstr ""
847
-
848
- #: modules/modules/modules.php:60
849
- msgid "Silenced"
850
- msgstr ""
851
-
852
- #: modules/modules/modules.php:61
853
- msgid "Hidden"
854
- msgstr ""
855
-
856
- #: modules/modules/modules.php:62
857
- msgid "Disabled"
858
- msgstr ""
859
-
860
- #: modules/slugs/slugs.php:12
861
- msgid "Slug Optimizer"
862
  msgstr ""
863
 
864
- #: modules/slugs/slugs.php:16
865
- msgid "Words to Remove"
866
  msgstr ""
867
 
868
- #: modules/404s/fofs.php:11
869
- msgid "404 Monitor"
870
  msgstr ""
871
 
872
- #: modules/404s/fofs-settings.php:16
873
- msgid "404 Monitor Settings"
874
  msgstr ""
875
 
876
- #: modules/404s/fofs-settings.php:33
877
- msgid "Continue monitoring for new 404 errors"
 
878
  msgstr ""
879
 
880
- #: modules/404s/fofs-settings.php:33
881
- msgid "Monitoring Settings"
882
  msgstr ""
883
 
884
- #: modules/404s/fofs-settings.php:35
885
- msgid "Only log these types of 404 errors:"
886
  msgstr ""
887
 
888
- #: modules/404s/fofs-settings.php:36
889
- msgid "404s generated by search engine spiders"
890
  msgstr ""
891
 
892
- #: modules/404s/fofs-settings.php:37
893
- msgid "404s with referring URLs"
 
 
894
  msgstr ""
895
 
896
- #: modules/404s/fofs-settings.php:38
897
- msgid "Log Restrictions"
898
  msgstr ""
899
 
900
- #: modules/404s/fofs-settings.php:39
901
- msgid "Maximum Log Entries"
902
  msgstr ""
903
 
904
- #: modules/404s/fofs-settings.php:40
905
- msgid "URLs to Ignore"
906
  msgstr ""
907
 
908
- #: modules/404s/fofs-settings.php:40
909
- msgid "(Use * as wildcard)"
 
910
  msgstr ""
911
 
912
- #: modules/404s/fofs-log.php:16
913
- msgid "404 Monitor Log"
914
  msgstr ""
915
 
916
- #: modules/404s/fofs-log.php:17
917
- msgid "Log"
 
918
  msgstr ""
919
 
920
- #: modules/404s/fofs-log.php:116
921
- msgid "Hits"
922
  msgstr ""
923
 
924
- #: modules/404s/fofs-log.php:117
925
- msgid "URL with 404 Error"
926
  msgstr ""
927
 
928
- #: modules/404s/fofs-log.php:118
929
- msgid "Date of Most Recent Hit"
930
  msgstr ""
931
 
932
- #: modules/404s/fofs-log.php:119
933
- msgid "Referers"
934
  msgstr ""
935
 
936
- #: modules/404s/fofs-log.php:120 modules/404s/fofs-log.php:223
937
- msgid "User Agents"
 
938
  msgstr ""
939
 
940
- #: modules/404s/fofs-log.php:136
941
- msgid ""
942
- "New 404 errors will not be recorded because 404 logging is disabled on the "
943
- "Settings tab."
944
  msgstr ""
945
 
946
- #: modules/404s/fofs-log.php:143
947
- msgid "The log entry was successfully deleted."
 
948
  msgstr ""
949
 
950
- #: modules/404s/fofs-log.php:145
951
- msgid "This log entry has already been deleted."
952
  msgstr ""
953
 
954
- #: modules/404s/fofs-log.php:154
955
- msgid "The log was successfully cleared."
956
  msgstr ""
957
 
958
- #: modules/404s/fofs-log.php:158
959
- msgid "No 404 errors in the log."
960
  msgstr ""
961
 
962
- #: modules/404s/fofs-log.php:182
963
- msgid "Open URL in new window (will not be logged)"
964
  msgstr ""
965
 
966
- #: modules/404s/fofs-log.php:183
967
- msgid "Query Google for cached version of URL (opens in new window)"
968
  msgstr ""
969
 
970
- #: modules/404s/fofs-log.php:184
971
- msgid "Remove this URL from the log"
972
  msgstr ""
973
 
974
- #: modules/404s/fofs-log.php:187
975
- msgid "%s at %s"
976
  msgstr ""
977
 
978
- #: modules/404s/fofs-log.php:191
979
- msgid "View list of referring URLs"
980
  msgstr ""
981
 
982
- #: modules/404s/fofs-log.php:192
983
- msgid "View list of user agents"
984
  msgstr ""
985
 
986
- #: modules/404s/fofs-log.php:202
987
- msgid "Referring URLs"
988
  msgstr ""
989
 
990
- #: modules/404s/fofs-log.php:203 modules/404s/fofs-log.php:224
991
- msgid "Hide list"
992
  msgstr ""
993
 
994
- #: modules/404s/fofs-log.php:254
995
- msgid "Are you sure you want to delete all 404 log entries?"
996
  msgstr ""
997
 
998
- #: modules/404s/fofs-log.php:256
999
- msgid "Clear Log"
1000
  msgstr ""
1001
 
1002
- #: modules/linkbox/linkbox.php:12
1003
- msgid "Linkbox Inserter"
1004
  msgstr ""
1005
 
1006
- #: modules/linkbox/linkbox.php:18
1007
- msgid "Link to this post!"
1008
  msgstr ""
1009
 
1010
- #: modules/linkbox/linkbox.php:45
1011
- msgid "At the end of posts"
 
 
 
 
 
1012
  msgstr ""
1013
 
1014
- #: modules/linkbox/linkbox.php:46
1015
- msgid "At the end of pages"
 
 
1016
  msgstr ""
1017
 
1018
- #: modules/linkbox/linkbox.php:47
1019
- msgid "When called by the su_linkbox hook"
1020
  msgstr ""
1021
 
1022
- #: modules/linkbox/linkbox.php:48
1023
- msgid "Display linkboxes..."
1024
  msgstr ""
1025
 
1026
- #: modules/linkbox/linkbox.php:49
1027
- msgid "Linkbox HTML"
1028
  msgstr ""
1029
 
1030
- #: modules/more-links/more-links.php:12
1031
- msgid "More Link Customizer"
1032
  msgstr ""
1033
 
1034
- #: modules/more-links/more-links.php:27
1035
- msgid "Default More Link Text"
1036
  msgstr ""
1037
 
1038
- #: modules/more-links/more-links.php:48
1039
- msgid "More Link Text:"
1040
  msgstr ""
1041
 
1042
  #: modules/files/files.php:14
@@ -1094,44 +1103,12 @@ msgid ""
1094
  "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1095
  msgstr ""
1096
 
1097
- #: modules/canonical/canonical.php:12
1098
- msgid "Canonicalizer"
1099
- msgstr ""
1100
-
1101
- #: modules/canonical/canonical.php:33
1102
- msgid "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> tags."
1103
- msgstr ""
1104
-
1105
- #: modules/canonical/canonical.php:34
1106
- msgid "Redirect requests for nonexistent pagination."
1107
- msgstr ""
1108
-
1109
- #: modules/user-code/user-code.php:12
1110
- msgid "Code Inserter"
1111
- msgstr ""
1112
-
1113
- #: modules/user-code/user-code.php:27
1114
- msgid "Everywhere"
1115
- msgstr ""
1116
-
1117
- #: modules/user-code/user-code.php:34
1118
- msgid "&lt;head&gt; Tag"
1119
- msgstr ""
1120
-
1121
- #: modules/user-code/user-code.php:35
1122
- msgid "Before Item Content"
1123
- msgstr ""
1124
-
1125
- #: modules/user-code/user-code.php:36
1126
- msgid "After Item Content"
1127
- msgstr ""
1128
-
1129
- #: modules/user-code/user-code.php:37
1130
- msgid "Footer"
1131
  msgstr ""
1132
 
1133
- #: modules/user-code/user-code.php:51
1134
- msgid "Code Inserter module"
1135
  msgstr ""
1136
 
1137
  #: modules/settings/settings-data.php:16
@@ -1302,48 +1279,10 @@ msgstr ""
1302
  msgid "Restore Default Settings"
1303
  msgstr ""
1304
 
1305
- #: modules/settings/global-settings.php:18
1306
- msgid "Global Settings"
1307
- msgstr ""
1308
-
1309
- #: modules/settings/global-settings.php:40
1310
- msgid "Enable nofollow&#8217;d attribution link"
1311
- msgstr ""
1312
-
1313
- #: modules/settings/global-settings.php:41
1314
- msgid "Enable attribution link CSS styling"
1315
- msgstr ""
1316
-
1317
- #: modules/settings/global-settings.php:42
1318
- msgid "Notify me about unnecessary active plugins"
1319
- msgstr ""
1320
-
1321
- #: modules/settings/global-settings.php:43
1322
- msgid "Insert comments around HTML code insertions"
1323
- msgstr ""
1324
-
1325
- #: modules/settings/settings.php:12
1326
- msgid "Plugin Settings"
1327
- msgstr ""
1328
-
1329
- #: modules/settings/settings.php:13
1330
- msgid "SEO Ultimate Plugin Settings"
1331
- msgstr ""
1332
-
1333
- #. #-#-#-#-# plugin.pot (SEO Ultimate 5.0) #-#-#-#-#
1334
- #. Plugin Name of the plugin/theme
1335
- #: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:741
1336
- msgid "SEO Ultimate"
1337
- msgstr ""
1338
-
1339
  #: modules/settings/uninstall.php:17
1340
  msgid "Uninstaller"
1341
  msgstr ""
1342
 
1343
- #: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1228
1344
- msgid "Uninstall"
1345
- msgstr ""
1346
-
1347
  #: modules/settings/uninstall.php:27
1348
  msgid ""
1349
  "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
@@ -1368,16 +1307,36 @@ msgstr ""
1368
  msgid "Deleted settings."
1369
  msgstr ""
1370
 
1371
- #: modules/settings/uninstall.php:53
1372
- msgid "An error occurred while deleting files."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1373
  msgstr ""
1374
 
1375
- #: modules/settings/uninstall.php:55
1376
- msgid "Deleted files."
1377
  msgstr ""
1378
 
1379
- #: modules/settings/uninstall.php:56
1380
- msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1381
  msgstr ""
1382
 
1383
  #: modules/settings/install.php:18
@@ -1475,106 +1434,335 @@ msgstr ""
1475
  msgid "Upgrade to SEO Ultimate %s"
1476
  msgstr ""
1477
 
1478
- #: modules/sharing-buttons/sharing-buttons.php:12
1479
- msgid "Sharing Facilitator"
1480
  msgstr ""
1481
 
1482
- #: modules/sharing-buttons/sharing-buttons.php:22
1483
- msgid "Bookmark and Share"
1484
  msgstr ""
1485
 
1486
- #: modules/sharing-buttons/sharing-buttons.php:28
1487
- msgid "Providers"
1488
  msgstr ""
1489
 
1490
- #: modules/sharing-buttons/sharing-buttons.php:34
1491
- msgid "Which provider would you like to use for your sharing buttons?"
1492
  msgstr ""
1493
 
1494
- #: modules/sharing-buttons/sharing-buttons.php:36
1495
- msgid "None; disable sharing buttons"
1496
  msgstr ""
1497
 
1498
- #: modules/sharing-buttons/sharing-buttons.php:37
1499
- msgid "Use the ShareThis button"
1500
  msgstr ""
1501
 
1502
- #: modules/sharing-buttons/sharing-buttons.php:38
1503
- msgid "Use the AddThis button"
1504
  msgstr ""
1505
 
1506
- #: modules/noindex/noindex.php:12
1507
- msgid "Noindex Manager"
1508
  msgstr ""
1509
 
1510
- #: modules/noindex/noindex.php:13
1511
- msgid "Noindex"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1512
  msgstr ""
1513
 
1514
- #: modules/noindex/noindex.php:44
1515
- msgid ""
1516
- "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
1517
- "block indexing of the entire site, regardless of which options are set below."
1518
  msgstr ""
1519
 
1520
- #: modules/noindex/noindex.php:47
1521
- msgid "Prevent indexing of..."
1522
  msgstr ""
1523
 
1524
- #: modules/noindex/noindex.php:48
1525
- msgid "Administration back-end pages"
1526
  msgstr ""
1527
 
1528
- #: modules/noindex/noindex.php:49
1529
- msgid "Author archives"
1530
  msgstr ""
1531
 
1532
- #: modules/noindex/noindex.php:50
1533
- msgid "Blog search pages"
1534
  msgstr ""
1535
 
1536
- #: modules/noindex/noindex.php:51
1537
- msgid "Category archives"
1538
  msgstr ""
1539
 
1540
- #: modules/noindex/noindex.php:52
1541
- msgid "Comment feeds"
1542
  msgstr ""
1543
 
1544
- #: modules/noindex/noindex.php:53
1545
- msgid "Comment subpages"
1546
  msgstr ""
1547
 
1548
- #: modules/noindex/noindex.php:54
1549
- msgid "Date-based archives"
1550
  msgstr ""
1551
 
1552
- #: modules/noindex/noindex.php:55
1553
- msgid "Subpages of the homepage"
1554
  msgstr ""
1555
 
1556
- #: modules/noindex/noindex.php:56
1557
- msgid "Tag archives"
1558
  msgstr ""
1559
 
1560
- #: modules/noindex/noindex.php:57
1561
- msgid "User login/registration pages"
1562
  msgstr ""
1563
 
1564
- #: modules/noindex/noindex.php:110
1565
- msgid "Noindex: Tell search engines not to index this webpage."
1566
  msgstr ""
1567
 
1568
- #: modules/noindex/noindex.php:111
1569
- msgid "Nofollow: Tell search engines not to spider links on this webpage."
1570
  msgstr ""
1571
 
1572
- #: modules/noindex/noindex.php:112
1573
- msgid "Meta Robots Tag:"
1574
  msgstr ""
1575
 
1576
- #: modules/autolinks/autolinks.php:11
1577
- msgid "Deeplink Juggernaut"
 
 
1578
  msgstr ""
1579
 
1580
  #: modules/autolinks/content-autolinks.php:16
@@ -1662,194 +1850,6 @@ msgid ""
1662
  "with that anchor text (assuming other posts contain that text)."
1663
  msgstr ""
1664
 
1665
- #: modules/autolinks/content-autolinks-settings.php:16
1666
- msgid "Content Deeplink Juggernaut Settings"
1667
- msgstr ""
1668
-
1669
- #: modules/autolinks/content-autolinks-settings.php:17
1670
- msgid "Content Link Settings"
1671
- msgstr ""
1672
-
1673
- #: modules/autolinks/content-autolinks-settings.php:21
1674
- msgid "Allow posts to link to themselves."
1675
- msgstr ""
1676
-
1677
- #: modules/autolinks/content-autolinks-settings.php:22
1678
- msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1679
- msgstr ""
1680
-
1681
- #: modules/autolinks/content-autolinks-settings.php:23
1682
- msgid ""
1683
- "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1684
- "etc."
1685
- msgstr ""
1686
-
1687
- #: plugin/class.su-installer.php:9
1688
- msgid "Package not available."
1689
- msgstr ""
1690
-
1691
- #: plugin/class.su-installer.php:12
1692
- msgid "Removing the current version of the plugin&#8230;"
1693
- msgstr ""
1694
-
1695
- #: plugin/class.su-installer.php:13
1696
- msgid "Could not remove the current version of the plugin."
1697
- msgstr ""
1698
-
1699
- #: plugin/class.su-installer.php:17
1700
- msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
1701
- msgstr ""
1702
-
1703
- #: plugin/class.su-installer.php:18
1704
- msgid "Unpacking the downgrade&#8230;"
1705
- msgstr ""
1706
-
1707
- #: plugin/class.su-installer.php:19
1708
- msgid "Installing the downgrade&#8230;"
1709
- msgstr ""
1710
-
1711
- #: plugin/class.su-installer.php:20
1712
- msgid "Plugin downgrade failed."
1713
- msgstr ""
1714
-
1715
- #: plugin/class.su-installer.php:21
1716
- msgid "Plugin downgraded successfully."
1717
- msgstr ""
1718
-
1719
- #: plugin/class.su-installer.php:24
1720
- msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
1721
- msgstr ""
1722
-
1723
- #: plugin/class.su-installer.php:25
1724
- msgid "Unpacking the reinstall&#8230;"
1725
- msgstr ""
1726
-
1727
- #: plugin/class.su-installer.php:26
1728
- msgid "Reinstalling the current version&#8230;"
1729
- msgstr ""
1730
-
1731
- #: plugin/class.su-installer.php:27
1732
- msgid "Plugin reinstallation failed."
1733
- msgstr ""
1734
-
1735
- #: plugin/class.su-installer.php:28
1736
- msgid "Plugin reinstalled successfully."
1737
- msgstr ""
1738
-
1739
- #: plugin/class.su-installer.php:32
1740
- msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
1741
- msgstr ""
1742
-
1743
- #: plugin/class.su-installer.php:33
1744
- msgid "Unpacking the upgrade&#8230;"
1745
- msgstr ""
1746
-
1747
- #: plugin/class.su-installer.php:34
1748
- msgid "Installing the upgrade&#8230;"
1749
- msgstr ""
1750
-
1751
- #: plugin/class.su-installer.php:35
1752
- msgid "Plugin upgrade failed."
1753
- msgstr ""
1754
-
1755
- #: plugin/class.su-installer.php:36
1756
- msgid "Plugin upgraded successfully."
1757
- msgstr ""
1758
-
1759
- #: plugin/su-functions.php:77 includes/jlfunctions/str.php:94
1760
- msgid "%s and %s"
1761
- msgstr ""
1762
-
1763
- #: plugin/su-functions.php:80 includes/jlfunctions/str.php:97
1764
- msgid ", "
1765
- msgstr ""
1766
-
1767
- #: plugin/su-functions.php:81 includes/jlfunctions/str.php:98
1768
- msgid "%s, and %s"
1769
- msgstr ""
1770
-
1771
- #: plugin/class.seo-ultimate.php:741
1772
- msgid "SEO"
1773
- msgstr ""
1774
-
1775
- #: plugin/class.seo-ultimate.php:1019
1776
- msgid "SEO Settings Help"
1777
- msgstr ""
1778
-
1779
- #: plugin/class.seo-ultimate.php:1021
1780
- msgid "The SEO Settings box lets you customize these settings:"
1781
- msgstr ""
1782
-
1783
- #: plugin/class.seo-ultimate.php:1023
1784
- msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
1785
- msgstr ""
1786
-
1787
- #: plugin/class.seo-ultimate.php:1078
1788
- msgid ""
1789
- "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
1790
- "1$s to avoid plugin conflicts."
1791
- msgstr ""
1792
-
1793
- #: plugin/class.seo-ultimate.php:1119
1794
- msgid "new feature"
1795
- msgstr ""
1796
-
1797
- #: plugin/class.seo-ultimate.php:1119
1798
- msgid "new features"
1799
- msgstr ""
1800
-
1801
- #: plugin/class.seo-ultimate.php:1120
1802
- msgid "bugfix"
1803
- msgstr ""
1804
-
1805
- #: plugin/class.seo-ultimate.php:1120
1806
- msgid "bugfixes"
1807
- msgstr ""
1808
-
1809
- #: plugin/class.seo-ultimate.php:1121
1810
- msgid "improvement"
1811
- msgstr ""
1812
-
1813
- #: plugin/class.seo-ultimate.php:1121
1814
- msgid "improvements"
1815
- msgstr ""
1816
-
1817
- #: plugin/class.seo-ultimate.php:1122
1818
- msgid "security fix"
1819
- msgstr ""
1820
-
1821
- #: plugin/class.seo-ultimate.php:1122
1822
- msgid "security fixes"
1823
- msgstr ""
1824
-
1825
- #: plugin/class.seo-ultimate.php:1153
1826
- msgid "%d %s"
1827
- msgstr ""
1828
-
1829
- #: plugin/class.seo-ultimate.php:1159
1830
- msgid "Upgrade now to get %s. %s."
1831
- msgstr ""
1832
-
1833
- #: plugin/class.seo-ultimate.php:1161
1834
- msgid "View changelog"
1835
- msgstr ""
1836
-
1837
- #: plugin/class.seo-ultimate.php:1248
1838
- msgid "Active Modules: "
1839
- msgstr ""
1840
-
1841
- #: plugin/class.seo-ultimate.php:1309
1842
- msgid ""
1843
- "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
1844
- "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
1845
- "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
1846
- "to everyone."
1847
- msgstr ""
1848
-
1849
- #: plugin/class.seo-ultimate.php:1419
1850
- msgid "SEO Settings"
1851
- msgstr ""
1852
-
1853
  #: includes/jlwp/functions.php:56
1854
  msgid "Posts"
1855
  msgstr ""
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEO Ultimate 5.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
+ "POT-Creation-Date: 2011-05-16 15:38:32+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 5.1) #-#-#-#-#
23
+ #. Plugin Name of the plugin/theme
24
+ #: plugin/class.seo-ultimate.php:741 modules/settings/settings.php:14
25
+ msgid "SEO Ultimate"
26
  msgstr ""
27
 
28
+ #: plugin/class.seo-ultimate.php:741
29
+ msgid "SEO"
30
  msgstr ""
31
 
32
+ #: plugin/class.seo-ultimate.php:1019
33
+ msgid "SEO Settings Help"
34
  msgstr ""
35
 
36
+ #: plugin/class.seo-ultimate.php:1021
37
+ msgid "The SEO Settings box lets you customize these settings:"
38
  msgstr ""
39
 
40
+ #: plugin/class.seo-ultimate.php:1023
41
+ msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
42
  msgstr ""
43
 
44
+ #: plugin/class.seo-ultimate.php:1078
45
+ msgid ""
46
+ "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
47
+ "1$s to avoid plugin conflicts."
48
  msgstr ""
49
 
50
+ #: plugin/class.seo-ultimate.php:1119
51
+ msgid "new feature"
52
  msgstr ""
53
 
54
+ #: plugin/class.seo-ultimate.php:1119
55
+ msgid "new features"
56
  msgstr ""
57
 
58
+ #: plugin/class.seo-ultimate.php:1120
59
+ msgid "bugfix"
60
  msgstr ""
61
 
62
+ #: plugin/class.seo-ultimate.php:1120
63
+ msgid "bugfixes"
64
  msgstr ""
65
 
66
+ #: plugin/class.seo-ultimate.php:1121
67
+ msgid "improvement"
68
  msgstr ""
69
 
70
+ #: plugin/class.seo-ultimate.php:1121
71
+ msgid "improvements"
72
  msgstr ""
73
 
74
+ #: plugin/class.seo-ultimate.php:1122
75
+ msgid "security fix"
76
  msgstr ""
77
 
78
+ #: plugin/class.seo-ultimate.php:1122
79
+ msgid "security fixes"
80
  msgstr ""
81
 
82
+ #: plugin/class.seo-ultimate.php:1153
83
+ msgid "%d %s"
 
 
84
  msgstr ""
85
 
86
+ #: plugin/class.seo-ultimate.php:1159
87
+ msgid "Upgrade now to get %s. %s."
88
  msgstr ""
89
 
90
+ #: plugin/class.seo-ultimate.php:1161
91
+ msgid "View changelog"
92
  msgstr ""
93
 
94
+ #: plugin/class.seo-ultimate.php:1228 modules/settings/uninstall.php:18
95
+ msgid "Uninstall"
 
 
 
 
96
  msgstr ""
97
 
98
+ #: plugin/class.seo-ultimate.php:1248
99
+ msgid "Active Modules: "
100
  msgstr ""
101
 
102
+ #: plugin/class.seo-ultimate.php:1309
103
  msgid ""
104
+ "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
105
+ "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
106
+ "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
107
+ "to everyone."
108
  msgstr ""
109
 
110
+ #: plugin/class.seo-ultimate.php:1419
111
+ msgid "SEO Settings"
112
  msgstr ""
113
 
114
+ #: plugin/su-functions.php:77 includes/jlfunctions/str.php:98
115
+ msgid "%s and %s"
116
  msgstr ""
117
 
118
+ #: plugin/su-functions.php:80 includes/jlfunctions/str.php:101
119
+ msgid ", "
120
  msgstr ""
121
 
122
+ #: plugin/su-functions.php:81 includes/jlfunctions/str.php:102
123
+ msgid "%s, and %s"
124
  msgstr ""
125
 
126
+ #: plugin/class.su-installer.php:9
127
+ msgid "Package not available."
 
 
128
  msgstr ""
129
 
130
+ #: plugin/class.su-installer.php:12
131
+ msgid "Removing the current version of the plugin&#8230;"
132
  msgstr ""
133
 
134
+ #: plugin/class.su-installer.php:13
135
+ msgid "Could not remove the current version of the plugin."
136
  msgstr ""
137
 
138
+ #: plugin/class.su-installer.php:17
139
+ msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
140
  msgstr ""
141
 
142
+ #: plugin/class.su-installer.php:18
143
+ msgid "Unpacking the downgrade&#8230;"
 
 
144
  msgstr ""
145
 
146
+ #: plugin/class.su-installer.php:19
147
+ msgid "Installing the downgrade&#8230;"
148
  msgstr ""
149
 
150
+ #: plugin/class.su-installer.php:20
151
+ msgid "Plugin downgrade failed."
152
  msgstr ""
153
 
154
+ #: plugin/class.su-installer.php:21
155
+ msgid "Plugin downgraded successfully."
156
  msgstr ""
157
 
158
+ #: plugin/class.su-installer.php:24
159
+ msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
160
  msgstr ""
161
 
162
+ #: plugin/class.su-installer.php:25
163
+ msgid "Unpacking the reinstall&#8230;"
164
  msgstr ""
165
 
166
+ #: plugin/class.su-installer.php:26
167
+ msgid "Reinstalling the current version&#8230;"
168
+ msgstr ""
 
 
169
 
170
+ #: plugin/class.su-installer.php:27
171
+ msgid "Plugin reinstallation failed."
172
+ msgstr ""
 
 
173
 
174
+ #: plugin/class.su-installer.php:28
175
+ msgid "Plugin reinstalled successfully."
176
+ msgstr ""
 
 
 
 
 
 
177
 
178
+ #: plugin/class.su-installer.php:32
179
+ msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
180
+ msgstr ""
 
 
 
181
 
182
+ #: plugin/class.su-installer.php:33
183
+ msgid "Unpacking the upgrade&#8230;"
184
  msgstr ""
185
 
186
+ #: plugin/class.su-installer.php:34
187
+ msgid "Installing the upgrade&#8230;"
 
 
188
  msgstr ""
189
 
190
+ #: plugin/class.su-installer.php:35
191
+ msgid "Plugin upgrade failed."
192
  msgstr ""
193
 
194
+ #: plugin/class.su-installer.php:36
195
+ msgid "Plugin upgraded successfully."
196
  msgstr ""
197
 
198
+ #: modules/more-links/more-links.php:12
199
+ msgid "More Link Customizer"
200
  msgstr ""
201
 
202
+ #: modules/more-links/more-links.php:27
203
+ msgid "Default More Link Text"
204
  msgstr ""
205
 
206
+ #: modules/more-links/more-links.php:48
207
+ msgid "More Link Text:"
208
  msgstr ""
209
 
210
+ #: modules/sds-blog/sds-blog.php:12
211
+ msgid "Whitepapers"
 
212
  msgstr ""
213
 
214
+ #: modules/sds-blog/sds-blog.php:13
215
+ msgid "SEO Design Solutions Whitepapers"
216
  msgstr ""
217
 
218
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 5.1) #-#-#-#-#
219
+ #. Author of the plugin/theme
220
+ #: modules/sds-blog/sds-blog.php:49
221
+ msgid "SEO Design Solutions"
222
  msgstr ""
223
 
224
+ #: modules/sds-blog/sds-blog.php:50
225
+ msgid ""
226
+ "The search engine optimization articles below are loaded from the website of "
227
+ "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
228
+ "an article&#8217;s title to read it."
229
  msgstr ""
230
 
231
+ #: modules/linkbox/linkbox.php:12
232
+ msgid "Linkbox Inserter"
 
233
  msgstr ""
234
 
235
+ #: modules/linkbox/linkbox.php:18
236
+ msgid "Link to this post!"
237
  msgstr ""
238
 
239
+ #: modules/linkbox/linkbox.php:45
240
+ msgid "At the end of posts"
241
+ msgstr ""
242
+
243
+ #: modules/linkbox/linkbox.php:46
244
+ msgid "At the end of pages"
245
+ msgstr ""
246
+
247
+ #: modules/linkbox/linkbox.php:47
248
+ msgid "When called by the su_linkbox hook"
249
  msgstr ""
250
 
251
+ #: modules/linkbox/linkbox.php:48
252
+ msgid "Display linkboxes..."
253
  msgstr ""
254
 
255
+ #: modules/linkbox/linkbox.php:49
256
+ msgid "Linkbox HTML"
257
  msgstr ""
258
 
259
+ #: modules/import-aiosp/import-aiosp.php:12
260
+ msgid "Import from All in One SEO Pack"
261
  msgstr ""
262
 
263
+ #: modules/import-aiosp/import-aiosp.php:13
264
+ msgid "AIOSP Import"
265
  msgstr ""
266
 
267
+ #: modules/import-aiosp/import-aiosp.php:15
268
+ msgid "All in One SEO Pack"
269
  msgstr ""
270
 
271
+ #: modules/import-aiosp/import-aiosp.php:16
272
+ msgid "AIOSP"
273
  msgstr ""
274
 
275
+ #: modules/import-aiosp/import-aiosp.php:17
276
+ msgid "Import post data (custom title tags and meta tags)."
277
  msgstr ""
278
 
279
+ #: modules/import-aiosp/import-aiosp.php:21
280
+ msgid ""
281
+ "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
282
+ "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
283
+ "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
284
+ "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
285
+ "to be currently installed or activated for the import to take place."
286
  msgstr ""
287
 
288
+ #: modules/import-aiosp/import-aiosp.php:23
289
+ msgid ""
290
+ "The import tool can only move over data from AIOSP version 1.6 or above. If "
291
+ "you use an older version of AIOSP, you should update to the latest version "
292
+ "first and run AIOSP&#8217;s upgrade process."
293
  msgstr ""
294
 
295
+ #: modules/class.su-importmodule.php:49
296
+ msgid "Import Post Fields"
297
  msgstr ""
298
 
299
+ #: modules/class.su-importmodule.php:50
300
+ msgid ""
301
+ "Post fields store the SEO data for your posts/pages (i.e. your custom title "
302
+ "tags, meta descriptions, and meta keywords). If you provided custom titles/"
303
+ "descriptions/keywords to %s, this importer can move that data over to SEO "
304
+ "Ultimate."
305
  msgstr ""
306
 
307
+ #: modules/class.su-importmodule.php:53
308
+ msgid "Conflict Resolution Mode"
309
  msgstr ""
310
 
311
+ #: modules/class.su-importmodule.php:54
312
+ msgid ""
313
+ "What should the import tool do if it tries to move over a post&#8217;s %s "
314
+ "data, but different data already exists in the corresponding SEO Ultimate "
315
+ "fields?"
316
  msgstr ""
317
 
318
+ #: modules/class.su-importmodule.php:56
319
+ msgid "Skip that post and leave all data as-is (default)."
320
  msgstr ""
321
 
322
+ #: modules/class.su-importmodule.php:57
323
+ msgid "Delete the SEO Ultimate data and replace it with the %s data."
324
  msgstr ""
325
 
326
+ #: modules/class.su-importmodule.php:58
327
+ msgid "Keep the SEO Ultimate data and delete the %s data."
328
  msgstr ""
329
 
330
+ #: modules/class.su-importmodule.php:61
331
+ msgid "Deletion Preference"
 
332
  msgstr ""
333
 
334
+ #: modules/class.su-importmodule.php:62
335
+ msgid ""
336
+ "When the migration tool successfully copies a post&#8217;s %1$s data over to "
337
+ "SEO Ultimate, what should it do with the old %1$s data?"
338
  msgstr ""
339
 
340
+ #: modules/class.su-importmodule.php:64
341
+ msgid "Delete the %s data."
 
342
  msgstr ""
343
 
344
+ #: modules/class.su-importmodule.php:65
345
+ msgid "Leave behind the duplicate %s data (default)."
346
  msgstr ""
347
 
348
+ #: modules/class.su-importmodule.php:72
349
+ msgid "Import Now"
350
  msgstr ""
351
 
352
+ #: modules/class.su-importmodule.php:75
353
+ msgid ""
354
+ "The import cannot be undone. It is your responsibility to <a href=\"%s\" "
355
+ "target=\"_blank\">backup your database</a> before proceeding!"
356
  msgstr ""
357
 
358
+ #: modules/class.su-importmodule.php:84
359
+ msgid "Import complete."
 
360
  msgstr ""
361
 
362
+ #: modules/class.su-importmodule.php:90
363
+ msgid "Return to import page"
364
  msgstr ""
365
 
366
+ #: modules/class.su-importmodule.php:93
367
+ msgid "Return to settings page"
 
 
368
  msgstr ""
369
 
370
+ #: modules/class.su-importmodule.php:96
371
+ msgid "Return to SEO page"
372
  msgstr ""
373
 
374
+ #: modules/class.su-importmodule.php:116
375
+ msgid "Deactivated %s."
376
  msgstr ""
377
 
378
+ #: modules/class.su-importmodule.php:174
379
+ msgid "Imported a total of %d fields for one post/page/revision."
380
+ msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
381
+ msgstr[0] ""
382
+ msgstr[1] ""
383
+
384
+ #: modules/class.su-importmodule.php:180
385
+ msgid "Skipped one post with disabled %2$s data."
386
+ msgid_plural "Skipped %1$d posts with disabled %2$s data."
387
+ msgstr[0] ""
388
+ msgstr[1] ""
389
+
390
+ #: modules/class.su-importmodule.php:186
391
+ msgid ""
392
+ "Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
393
+ "settings you chose."
394
+ msgid_plural ""
395
+ "Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
396
+ "settings you chose."
397
+ msgstr[0] ""
398
+ msgstr[1] ""
399
+
400
+ #: modules/class.su-importmodule.php:192
401
+ msgid "Deleted one %2$s field, as instructed by the settings you chose."
402
+ msgid_plural ""
403
+ "Deleted %1$d %2$s fields, as instructed by the settings you chose."
404
+ msgstr[0] ""
405
+ msgstr[1] ""
406
+
407
  #: modules/titles/titles.php:12
408
  msgid "Title Tag Rewriter"
409
  msgstr ""
537
  "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
538
  msgstr ""
539
 
540
+ #: modules/class.su-module.php:368
541
+ msgid ""
542
+ "(Note: This translated documentation was designed for an older version of "
543
+ "SEO Ultimate and may be outdated.)"
544
  msgstr ""
545
 
546
+ #: modules/class.su-module.php:971
547
+ msgid "%s %s|Dropdown Title"
548
  msgstr ""
549
 
550
+ #: modules/class.su-module.php:999
551
+ msgid "%1$s | %2$s %3$s by %4$s"
552
+ msgstr ""
553
+
554
+ #: modules/class.su-module.php:1056
555
+ msgid "Name"
556
+ msgstr ""
557
+
558
+ #: modules/class.su-module.php:1067
559
+ msgid "Your site currently doesn&#8217;t have any public items of this type."
560
+ msgstr ""
561
+
562
+ #: modules/class.su-module.php:1150
563
+ msgid "&laquo;"
564
+ msgstr ""
565
+
566
+ #: modules/class.su-module.php:1151
567
+ msgid "&raquo;"
568
+ msgstr ""
569
+
570
+ #: modules/class.su-module.php:1158
571
+ msgid "Displaying %s&#8211;%s of %s"
572
+ msgstr ""
573
+
574
+ #: modules/class.su-module.php:1171 modules/404s/fofs-log.php:116
575
+ msgid "Actions"
576
+ msgstr ""
577
+
578
+ #: modules/class.su-module.php:1172
579
+ msgid "ID"
580
+ msgstr ""
581
+
582
+ #: modules/class.su-module.php:1205
583
+ msgid "View"
584
+ msgstr ""
585
+
586
+ #: modules/class.su-module.php:1205
587
+ msgid "Edit"
588
+ msgstr ""
589
+
590
+ #: modules/class.su-module.php:1360
591
+ msgid "Settings updated."
592
+ msgstr ""
593
+
594
+ #: modules/class.su-module.php:1381
595
+ msgid "Save Changes"
596
+ msgstr ""
597
+
598
+ #: modules/class.su-module.php:1869
599
  msgid ""
600
+ "Are you sure you want to replace the textbox contents with this default "
601
+ "value?"
602
  msgstr ""
603
 
604
+ #: modules/class.su-module.php:1884 modules/settings/settings-data.php:23
605
+ msgid "Reset"
606
  msgstr ""
607
 
608
+ #: modules/noindex/noindex.php:12
609
+ msgid "Noindex Manager"
610
+ msgstr ""
611
+
612
+ #: modules/noindex/noindex.php:13
613
+ msgid "Noindex"
614
+ msgstr ""
615
+
616
+ #: modules/noindex/noindex.php:44
617
+ msgid ""
618
+ "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
619
+ "block indexing of the entire site, regardless of which options are set below."
620
+ msgstr ""
621
+
622
+ #: modules/noindex/noindex.php:47
623
+ msgid "Prevent indexing of..."
624
+ msgstr ""
625
+
626
+ #: modules/noindex/noindex.php:48
627
+ msgid "Administration back-end pages"
628
+ msgstr ""
629
+
630
+ #: modules/noindex/noindex.php:49
631
+ msgid "Author archives"
632
  msgstr ""
633
 
634
+ #: modules/noindex/noindex.php:50
635
+ msgid "Blog search pages"
636
  msgstr ""
637
 
638
+ #: modules/noindex/noindex.php:51
639
+ msgid "Category archives"
640
  msgstr ""
641
 
642
+ #: modules/noindex/noindex.php:52
643
+ msgid "Comment feeds"
644
  msgstr ""
645
 
646
+ #: modules/noindex/noindex.php:53
647
+ msgid "Comment subpages"
 
648
  msgstr ""
649
 
650
+ #: modules/noindex/noindex.php:54
651
+ msgid "Date-based archives"
652
  msgstr ""
653
 
654
+ #: modules/noindex/noindex.php:55
655
+ msgid "Subpages of the homepage"
656
  msgstr ""
657
 
658
+ #: modules/noindex/noindex.php:56
659
+ msgid "Tag archives"
660
  msgstr ""
661
 
662
+ #: modules/noindex/noindex.php:57
663
+ msgid "User login/registration pages"
 
664
  msgstr ""
665
 
666
+ #: modules/noindex/noindex.php:110
667
+ msgid "Noindex: Tell search engines not to index this webpage."
668
  msgstr ""
669
 
670
+ #: modules/noindex/noindex.php:111
671
+ msgid "Nofollow: Tell search engines not to spider links on this webpage."
672
  msgstr ""
673
 
674
+ #: modules/noindex/noindex.php:112
675
+ msgid "Meta Robots Tag:"
676
  msgstr ""
677
 
678
+ #: modules/meta/meta-descriptions.php:12
679
+ msgid "Meta Description Editor"
 
 
680
  msgstr ""
681
 
682
+ #: modules/meta/meta-descriptions.php:13
683
+ msgid "Meta Descriptions"
684
  msgstr ""
685
 
686
+ #: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:25
687
+ msgid "Blog Homepage"
688
  msgstr ""
689
 
690
+ #: modules/meta/meta-descriptions.php:31
691
+ msgid "Meta Description"
692
  msgstr ""
693
 
694
+ #: modules/meta/meta-descriptions.php:46
695
+ msgid "Post Description Format"
 
696
  msgstr ""
697
 
698
+ #: modules/meta/meta-descriptions.php:53
699
+ msgid "Blog Homepage Meta Description"
700
  msgstr ""
701
 
702
+ #: modules/meta/meta-descriptions.php:55
703
+ msgid "Use this blog&#8217s tagline as the default homepage description."
 
704
  msgstr ""
705
 
706
+ #: modules/meta/meta-descriptions.php:56
707
+ msgid "Default Value"
708
  msgstr ""
709
 
710
+ #: modules/meta/meta-descriptions.php:108
711
+ msgid "Meta Description:"
712
  msgstr ""
713
 
714
+ #: modules/meta/meta-descriptions.php:111
715
+ msgid "You&#8217;ve entered %s characters. Most search engines use up to 160."
716
  msgstr ""
717
 
718
+ #: modules/meta/meta-descriptions.php:119
719
+ msgid ""
720
+ "<strong>Description</strong> &mdash; The value of the meta description tag. "
721
+ "The description will often appear underneath the title in search engine "
722
+ "results. Writing an accurate, attention-grabbing description for every post "
723
+ "is important to ensuring a good search results clickthrough rate."
724
  msgstr ""
725
 
726
  #: modules/meta/meta-keywords.php:12
735
  msgid "Default Values"
736
  msgstr ""
737
 
738
+ #: modules/meta/meta-keywords.php:56
 
 
 
 
739
  msgid "Sitewide Keywords"
740
  msgstr ""
741
 
742
+ #: modules/meta/meta-keywords.php:56
743
  msgid "(Separate with commas)"
744
  msgstr ""
745
 
746
+ #: modules/meta/meta-keywords.php:63
747
  msgid "Blog Homepage Meta Keywords"
748
  msgstr ""
749
 
750
+ #: modules/meta/meta-keywords.php:121
751
  msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
752
  msgstr ""
753
 
754
+ #: modules/meta/meta-keywords.php:126
755
  msgid ""
756
  "<strong>Keywords</strong> &mdash; The value of the meta keywords tag. The "
757
  "keywords list gives search engines a hint as to what this post/page is "
806
  msgid "Don&#8217t cache or archive this site."
807
  msgstr ""
808
 
809
+ #: modules/canonical/canonical.php:12
810
+ msgid "Canonicalizer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
811
  msgstr ""
812
 
813
+ #: modules/canonical/canonical.php:33
814
+ msgid "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> tags."
815
  msgstr ""
816
 
817
+ #: modules/canonical/canonical.php:34
818
+ msgid "Redirect requests for nonexistent pagination."
819
  msgstr ""
820
 
821
+ #: modules/competition-queries/competition-queries.php:12
822
+ msgid "Competition Researcher"
823
  msgstr ""
824
 
825
+ #: modules/competition-queries/competition-queries.php:13
826
+ msgid "Comp. Researcher"
 
 
 
 
 
827
  msgstr ""
828
 
829
+ #: modules/competition-queries/competition-queries.php:17
830
  msgid ""
831
+ "The Competition Researcher provides you with easy access to various search "
832
+ "engine tools which you can use to research multiple search queries or URLs."
 
 
 
 
 
 
 
 
 
833
  msgstr ""
834
 
835
+ #: modules/competition-queries/competition-queries.php:21
836
+ msgid "Step 1: Choose Your Research Tool"
 
 
837
  msgstr ""
838
 
839
+ #: modules/competition-queries/competition-queries.php:25
840
+ msgid "Keywords"
 
 
 
841
  msgstr ""
842
 
843
+ #: modules/competition-queries/competition-queries.php:25
844
+ msgid "Normal Search"
845
  msgstr ""
846
 
847
+ #: modules/competition-queries/competition-queries.php:25
848
+ msgid "Find out how many pages contain the words in each query"
849
  msgstr ""
850
 
851
+ #: modules/competition-queries/competition-queries.php:26
852
+ msgid "Phrase Match"
 
 
 
 
 
853
  msgstr ""
854
 
855
+ #: modules/competition-queries/competition-queries.php:26
856
  msgid ""
857
+ "Find out how many &#8220;actual&#8221; pages are competing for each query"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
858
  msgstr ""
859
 
860
+ #: modules/competition-queries/competition-queries.php:27
861
+ msgid "Allinanchor"
862
  msgstr ""
863
 
864
+ #: modules/competition-queries/competition-queries.php:27
865
+ msgid "Find out which sites have the most links for each query"
866
  msgstr ""
867
 
868
+ #: modules/competition-queries/competition-queries.php:28
869
+ msgid "Allintitle"
870
  msgstr ""
871
 
872
+ #: modules/competition-queries/competition-queries.php:28
873
+ msgid ""
874
+ "Find out which sites have the highest relevance in the title for each query"
875
  msgstr ""
876
 
877
+ #: modules/competition-queries/competition-queries.php:29
878
+ msgid "Allintext"
879
  msgstr ""
880
 
881
+ #: modules/competition-queries/competition-queries.php:29
882
+ msgid "Find out which sites have the most relevant content/text on their pages"
883
  msgstr ""
884
 
885
+ #: modules/competition-queries/competition-queries.php:30
886
+ msgid "Allinurl"
887
  msgstr ""
888
 
889
+ #: modules/competition-queries/competition-queries.php:30
890
+ msgid ""
891
+ "Find out which sites have the most relevant naming conventions for each "
892
+ "keyword"
893
  msgstr ""
894
 
895
+ #: modules/competition-queries/competition-queries.php:32
896
+ msgid "URLs"
897
  msgstr ""
898
 
899
+ #: modules/competition-queries/competition-queries.php:32
900
+ msgid "Site"
901
  msgstr ""
902
 
903
+ #: modules/competition-queries/competition-queries.php:32
904
+ msgid "Find out how many pages are indexed for each domain"
905
  msgstr ""
906
 
907
+ #: modules/competition-queries/competition-queries.php:33
908
+ #: modules/competition-queries/competition-queries.php:38
909
+ msgid "Inbound Links"
910
  msgstr ""
911
 
912
+ #: modules/competition-queries/competition-queries.php:33
913
+ msgid "Find out how many sites link to the domains"
914
  msgstr ""
915
 
916
+ #: modules/competition-queries/competition-queries.php:34
917
+ #: modules/competition-queries/competition-queries.php:38
918
+ msgid "Outbound Links"
919
  msgstr ""
920
 
921
+ #: modules/competition-queries/competition-queries.php:34
922
+ msgid "Find out how many sites the domains link to"
923
  msgstr ""
924
 
925
+ #: modules/competition-queries/competition-queries.php:56
926
+ msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
927
  msgstr ""
928
 
929
+ #: modules/competition-queries/competition-queries.php:58
930
+ msgid "(Type in one per line)"
931
  msgstr ""
932
 
933
+ #: modules/competition-queries/competition-queries.php:60
934
+ msgid "Step 3: Set Options and Submit"
935
  msgstr ""
936
 
937
+ #: modules/competition-queries/competition-queries.php:62
938
+ #: modules/site-keyword-queries/site-keyword-queries.php:28
939
+ msgid "Show 100 results per page"
940
  msgstr ""
941
 
942
+ #: modules/competition-queries/competition-queries.php:64
943
+ #: modules/site-keyword-queries/site-keyword-queries.php:30
944
+ msgid "Use Google&#8217;s minimal mode"
 
945
  msgstr ""
946
 
947
+ #: modules/competition-queries/competition-queries.php:70
948
+ #: modules/site-keyword-queries/site-keyword-queries.php:33
949
+ msgid "Submit"
950
  msgstr ""
951
 
952
+ #: modules/site-keyword-queries/site-keyword-queries.php:12
953
+ msgid "Internal Relevance Researcher"
954
  msgstr ""
955
 
956
+ #: modules/site-keyword-queries/site-keyword-queries.php:13
957
+ msgid "Int. Rel. Researcher"
958
  msgstr ""
959
 
960
+ #: modules/site-keyword-queries/site-keyword-queries.php:21
961
+ msgid "Step 1: Enter Keywords"
962
  msgstr ""
963
 
964
+ #: modules/site-keyword-queries/site-keyword-queries.php:23
965
+ msgid "(Type one keyword per line)"
966
  msgstr ""
967
 
968
+ #: modules/site-keyword-queries/site-keyword-queries.php:25
969
+ msgid "Step 2: Set Options and Submit"
970
  msgstr ""
971
 
972
+ #: modules/site-keyword-queries/site-keyword-queries.php:27
973
+ msgid "Put keywords in quotes"
974
  msgstr ""
975
 
976
+ #: modules/user-code/user-code.php:12
977
+ msgid "Code Inserter"
978
  msgstr ""
979
 
980
+ #: modules/user-code/user-code.php:27
981
+ msgid "Everywhere"
982
  msgstr ""
983
 
984
+ #: modules/user-code/user-code.php:34
985
+ msgid "&lt;head&gt; Tag"
986
  msgstr ""
987
 
988
+ #: modules/user-code/user-code.php:35
989
+ msgid "Before Item Content"
990
  msgstr ""
991
 
992
+ #: modules/user-code/user-code.php:36
993
+ msgid "After Item Content"
994
  msgstr ""
995
 
996
+ #: modules/user-code/user-code.php:37
997
+ msgid "Footer"
998
  msgstr ""
999
 
1000
+ #: modules/user-code/user-code.php:51
1001
+ msgid "Code Inserter module"
1002
  msgstr ""
1003
 
1004
+ #: modules/modules/modules.php:12
1005
+ msgid "Module Manager"
1006
  msgstr ""
1007
 
1008
+ #: modules/modules/modules.php:13
1009
+ msgid "Modules"
1010
  msgstr ""
1011
 
1012
+ #: modules/modules/modules.php:37
1013
+ msgid ""
1014
+ "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
1015
+ "&#8221; By default, most of these modules are listed in the &#8220;"
1016
+ "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
1017
+ "you can view documentation by clicking the tabs in the upper-right-hand "
1018
+ "corner of your administration screen."
1019
  msgstr ""
1020
 
1021
+ #: modules/modules/modules.php:39
1022
+ msgid ""
1023
+ "The Module Manager lets you disable or hide modules you don&#8217;t use. "
1024
+ "You can also silence modules from displaying bubble alerts on the menu."
1025
  msgstr ""
1026
 
1027
+ #: modules/modules/modules.php:45
1028
+ msgid "Status"
1029
  msgstr ""
1030
 
1031
+ #: modules/modules/modules.php:46
1032
+ msgid "Module"
1033
  msgstr ""
1034
 
1035
+ #: modules/modules/modules.php:59
1036
+ msgid "Enabled"
1037
  msgstr ""
1038
 
1039
+ #: modules/modules/modules.php:60
1040
+ msgid "Silenced"
1041
  msgstr ""
1042
 
1043
+ #: modules/modules/modules.php:61
1044
+ msgid "Hidden"
1045
  msgstr ""
1046
 
1047
+ #: modules/modules/modules.php:62
1048
+ msgid "Disabled"
1049
  msgstr ""
1050
 
1051
  #: modules/files/files.php:14
1103
  "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1104
  msgstr ""
1105
 
1106
+ #: modules/settings/settings.php:12
1107
+ msgid "Plugin Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1108
  msgstr ""
1109
 
1110
+ #: modules/settings/settings.php:13
1111
+ msgid "SEO Ultimate Plugin Settings"
1112
  msgstr ""
1113
 
1114
  #: modules/settings/settings-data.php:16
1279
  msgid "Restore Default Settings"
1280
  msgstr ""
1281
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1282
  #: modules/settings/uninstall.php:17
1283
  msgid "Uninstaller"
1284
  msgstr ""
1285
 
 
 
 
 
1286
  #: modules/settings/uninstall.php:27
1287
  msgid ""
1288
  "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
1307
  msgid "Deleted settings."
1308
  msgstr ""
1309
 
1310
+ #: modules/settings/uninstall.php:53
1311
+ msgid "An error occurred while deleting files."
1312
+ msgstr ""
1313
+
1314
+ #: modules/settings/uninstall.php:55
1315
+ msgid "Deleted files."
1316
+ msgstr ""
1317
+
1318
+ #: modules/settings/uninstall.php:56
1319
+ msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1320
+ msgstr ""
1321
+
1322
+ #: modules/settings/global-settings.php:18
1323
+ msgid "Global Settings"
1324
+ msgstr ""
1325
+
1326
+ #: modules/settings/global-settings.php:40
1327
+ msgid "Enable nofollow&#8217;d attribution link"
1328
+ msgstr ""
1329
+
1330
+ #: modules/settings/global-settings.php:41
1331
+ msgid "Enable attribution link CSS styling"
1332
  msgstr ""
1333
 
1334
+ #: modules/settings/global-settings.php:42
1335
+ msgid "Notify me about unnecessary active plugins"
1336
  msgstr ""
1337
 
1338
+ #: modules/settings/global-settings.php:43
1339
+ msgid "Insert comments around HTML code insertions"
1340
  msgstr ""
1341
 
1342
  #: modules/settings/install.php:18
1434
  msgid "Upgrade to SEO Ultimate %s"
1435
  msgstr ""
1436
 
1437
+ #: modules/404s/fofs.php:11
1438
+ msgid "404 Monitor"
1439
  msgstr ""
1440
 
1441
+ #: modules/404s/fofs-log.php:16
1442
+ msgid "404 Monitor Log"
1443
  msgstr ""
1444
 
1445
+ #: modules/404s/fofs-log.php:17
1446
+ msgid "Log"
1447
  msgstr ""
1448
 
1449
+ #: modules/404s/fofs-log.php:117
1450
+ msgid "Hits"
1451
  msgstr ""
1452
 
1453
+ #: modules/404s/fofs-log.php:118
1454
+ msgid "URL with 404 Error"
1455
  msgstr ""
1456
 
1457
+ #: modules/404s/fofs-log.php:119
1458
+ msgid "Date of Most Recent Hit"
1459
  msgstr ""
1460
 
1461
+ #: modules/404s/fofs-log.php:120
1462
+ msgid "Referers"
1463
  msgstr ""
1464
 
1465
+ #: modules/404s/fofs-log.php:121 modules/404s/fofs-log.php:224
1466
+ msgid "User Agents"
1467
  msgstr ""
1468
 
1469
+ #: modules/404s/fofs-log.php:137
1470
+ msgid ""
1471
+ "New 404 errors will not be recorded because 404 logging is disabled on the "
1472
+ "Settings tab."
1473
+ msgstr ""
1474
+
1475
+ #: modules/404s/fofs-log.php:144
1476
+ msgid "The log entry was successfully deleted."
1477
+ msgstr ""
1478
+
1479
+ #: modules/404s/fofs-log.php:146
1480
+ msgid "This log entry has already been deleted."
1481
+ msgstr ""
1482
+
1483
+ #: modules/404s/fofs-log.php:155
1484
+ msgid "The log was successfully cleared."
1485
+ msgstr ""
1486
+
1487
+ #: modules/404s/fofs-log.php:159
1488
+ msgid "No 404 errors in the log."
1489
+ msgstr ""
1490
+
1491
+ #: modules/404s/fofs-log.php:183
1492
+ msgid "Open URL in new window (will not be logged)"
1493
+ msgstr ""
1494
+
1495
+ #: modules/404s/fofs-log.php:184
1496
+ msgid "Query Google for cached version of URL (opens in new window)"
1497
+ msgstr ""
1498
+
1499
+ #: modules/404s/fofs-log.php:185
1500
+ msgid "Remove this URL from the log"
1501
+ msgstr ""
1502
+
1503
+ #: modules/404s/fofs-log.php:188
1504
+ msgid "%s at %s"
1505
+ msgstr ""
1506
+
1507
+ #: modules/404s/fofs-log.php:192
1508
+ msgid "View list of referring URLs"
1509
+ msgstr ""
1510
+
1511
+ #: modules/404s/fofs-log.php:193
1512
+ msgid "View list of user agents"
1513
+ msgstr ""
1514
+
1515
+ #: modules/404s/fofs-log.php:203
1516
+ msgid "Referring URLs"
1517
+ msgstr ""
1518
+
1519
+ #: modules/404s/fofs-log.php:204 modules/404s/fofs-log.php:225
1520
+ msgid "Hide list"
1521
+ msgstr ""
1522
+
1523
+ #: modules/404s/fofs-log.php:255
1524
+ msgid "Are you sure you want to delete all 404 log entries?"
1525
+ msgstr ""
1526
+
1527
+ #: modules/404s/fofs-log.php:257
1528
+ msgid "Clear Log"
1529
+ msgstr ""
1530
+
1531
+ #: modules/404s/fofs-settings.php:16
1532
+ msgid "404 Monitor Settings"
1533
+ msgstr ""
1534
+
1535
+ #: modules/404s/fofs-settings.php:37
1536
+ msgid "Continue monitoring for new 404 errors"
1537
+ msgstr ""
1538
+
1539
+ #: modules/404s/fofs-settings.php:37
1540
+ msgid "Monitoring Settings"
1541
+ msgstr ""
1542
+
1543
+ #: modules/404s/fofs-settings.php:39
1544
+ msgid "Only log these types of 404 errors:"
1545
+ msgstr ""
1546
+
1547
+ #: modules/404s/fofs-settings.php:40
1548
+ msgid "404s generated by search engine spiders"
1549
+ msgstr ""
1550
+
1551
+ #: modules/404s/fofs-settings.php:41
1552
+ msgid "404s with referring URLs"
1553
+ msgstr ""
1554
+
1555
+ #: modules/404s/fofs-settings.php:42
1556
+ msgid "Log Restrictions"
1557
+ msgstr ""
1558
+
1559
+ #: modules/404s/fofs-settings.php:43
1560
+ msgid "Maximum Log Entries"
1561
+ msgstr ""
1562
+
1563
+ #: modules/404s/fofs-settings.php:44
1564
+ msgid "URLs to Ignore"
1565
+ msgstr ""
1566
+
1567
+ #: modules/404s/fofs-settings.php:44
1568
+ msgid "(Use * as wildcard)"
1569
+ msgstr ""
1570
+
1571
+ #: modules/slugs/slugs.php:12
1572
+ msgid "Slug Optimizer"
1573
+ msgstr ""
1574
+
1575
+ #: modules/slugs/slugs.php:16
1576
+ msgid "Words to Remove"
1577
+ msgstr ""
1578
+
1579
+ #: modules/internal-link-aliases/internal-link-aliases.php:20
1580
+ msgid "Link Mask Generator"
1581
+ msgstr ""
1582
+
1583
+ #: modules/internal-link-aliases/internal-link-aliases.php:24
1584
+ msgid "Alias Directory"
1585
+ msgstr ""
1586
+
1587
+ #: modules/internal-link-aliases/internal-link-aliases.php:43
1588
+ msgid "Link Masks"
1589
+ msgstr ""
1590
+
1591
+ #: modules/internal-link-aliases/internal-link-aliases.php:46
1592
+ #: modules/autolinks/content-autolinks.php:196
1593
+ msgid "URL"
1594
+ msgstr ""
1595
+
1596
+ #: modules/internal-link-aliases/internal-link-aliases.php:46
1597
+ msgid "Mask URL"
1598
+ msgstr ""
1599
+
1600
+ #: modules/internal-link-aliases/internal-link-aliases.php:66
1601
+ msgid ""
1602
+ "You can stop search engines from following a link by typing in a mask for "
1603
+ "its URL."
1604
+ msgstr ""
1605
+
1606
+ #: modules/internal-link-aliases/internal-link-aliases.php:122
1607
+ msgid "Added by Link Alias Generator (LAG) module"
1608
+ msgstr ""
1609
+
1610
+ #: modules/internal-link-aliases/internal-link-aliases.php:133
1611
+ msgid "End LAG"
1612
+ msgstr ""
1613
+
1614
+ #: modules/rich-snippets/rich-snippets.php:12
1615
+ msgid "Rich Snippet Creator"
1616
+ msgstr ""
1617
+
1618
+ #: modules/rich-snippets/rich-snippets.php:17
1619
+ msgid ""
1620
+ "Reviews\n"
1621
+ "Review"
1622
+ msgstr ""
1623
+
1624
+ #: modules/rich-snippets/rich-snippets.php:28
1625
+ msgid "Data Format"
1626
+ msgstr ""
1627
+
1628
+ #: modules/rich-snippets/rich-snippets.php:29
1629
+ msgid "Categories/Tags That Indicate Reviews"
1630
+ msgstr ""
1631
+
1632
+ #: modules/rich-snippets/rich-snippets.php:37
1633
+ msgid "Microformats (recommended)"
1634
+ msgstr ""
1635
+
1636
+ #: modules/rich-snippets/rich-snippets.php:43
1637
+ msgid "HTML5 Microdata"
1638
+ msgstr ""
1639
+
1640
+ #: modules/rich-snippets/rich-snippets.php:49
1641
+ msgid "RDFa"
1642
+ msgstr ""
1643
+
1644
+ #: modules/rich-snippets/rich-snippets.php:62
1645
+ #: modules/rich-snippets/rich-snippets.php:218
1646
+ msgid "Review"
1647
+ msgstr ""
1648
+
1649
+ #: modules/rich-snippets/rich-snippets.php:70
1650
+ msgid "Star Rating"
1651
+ msgstr ""
1652
+
1653
+ #: modules/rich-snippets/rich-snippets.php:79
1654
+ msgid "Review Author"
1655
+ msgstr ""
1656
+
1657
+ #: modules/rich-snippets/rich-snippets.php:85
1658
+ msgid "Date Reviewed"
1659
+ msgstr ""
1660
+
1661
+ #: modules/rich-snippets/rich-snippets.php:217
1662
+ #: modules/rich-snippets/rich-snippets.php:223
1663
+ msgid "None"
1664
+ msgstr ""
1665
+
1666
+ #: modules/rich-snippets/rich-snippets.php:219
1667
+ msgid "Rich Snippet Type:"
1668
+ msgstr ""
1669
+
1670
+ #: modules/rich-snippets/rich-snippets.php:224
1671
+ msgid "0.5 stars"
1672
+ msgstr ""
1673
+
1674
+ #: modules/rich-snippets/rich-snippets.php:225
1675
+ msgid "1 star"
1676
+ msgstr ""
1677
+
1678
+ #: modules/rich-snippets/rich-snippets.php:226
1679
+ msgid "1.5 stars"
1680
+ msgstr ""
1681
+
1682
+ #: modules/rich-snippets/rich-snippets.php:227
1683
+ msgid "2 stars"
1684
+ msgstr ""
1685
+
1686
+ #: modules/rich-snippets/rich-snippets.php:228
1687
+ msgid "2.5 stars"
1688
+ msgstr ""
1689
+
1690
+ #: modules/rich-snippets/rich-snippets.php:229
1691
+ msgid "3 stars"
1692
+ msgstr ""
1693
+
1694
+ #: modules/rich-snippets/rich-snippets.php:230
1695
+ msgid "3.5 stars"
1696
+ msgstr ""
1697
+
1698
+ #: modules/rich-snippets/rich-snippets.php:231
1699
+ msgid "4 stars"
1700
  msgstr ""
1701
 
1702
+ #: modules/rich-snippets/rich-snippets.php:232
1703
+ msgid "4.5 stars"
 
 
1704
  msgstr ""
1705
 
1706
+ #: modules/rich-snippets/rich-snippets.php:233
1707
+ msgid "5 stars"
1708
  msgstr ""
1709
 
1710
+ #: modules/rich-snippets/rich-snippets.php:234
1711
+ msgid "Star Rating for Reviewed Item:"
1712
  msgstr ""
1713
 
1714
+ #: modules/sharing-buttons/sharing-buttons.php:12
1715
+ msgid "Sharing Facilitator"
1716
  msgstr ""
1717
 
1718
+ #: modules/sharing-buttons/sharing-buttons.php:22
1719
+ msgid "Bookmark and Share"
1720
  msgstr ""
1721
 
1722
+ #: modules/sharing-buttons/sharing-buttons.php:28
1723
+ msgid "Providers"
1724
  msgstr ""
1725
 
1726
+ #: modules/sharing-buttons/sharing-buttons.php:34
1727
+ msgid "Which provider would you like to use for your sharing buttons?"
1728
  msgstr ""
1729
 
1730
+ #: modules/sharing-buttons/sharing-buttons.php:36
1731
+ msgid "None; disable sharing buttons"
1732
  msgstr ""
1733
 
1734
+ #: modules/sharing-buttons/sharing-buttons.php:37
1735
+ msgid "Use the ShareThis button"
1736
  msgstr ""
1737
 
1738
+ #: modules/sharing-buttons/sharing-buttons.php:38
1739
+ msgid "Use the AddThis button"
1740
  msgstr ""
1741
 
1742
+ #: modules/autolinks/autolinks.php:11
1743
+ msgid "Deeplink Juggernaut"
1744
  msgstr ""
1745
 
1746
+ #: modules/autolinks/content-autolinks-settings.php:16
1747
+ msgid "Content Deeplink Juggernaut Settings"
1748
  msgstr ""
1749
 
1750
+ #: modules/autolinks/content-autolinks-settings.php:17
1751
+ msgid "Content Link Settings"
1752
  msgstr ""
1753
 
1754
+ #: modules/autolinks/content-autolinks-settings.php:21
1755
+ msgid "Allow posts to link to themselves."
1756
  msgstr ""
1757
 
1758
+ #: modules/autolinks/content-autolinks-settings.php:22
1759
+ msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1760
  msgstr ""
1761
 
1762
+ #: modules/autolinks/content-autolinks-settings.php:23
1763
+ msgid ""
1764
+ "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1765
+ "etc."
1766
  msgstr ""
1767
 
1768
  #: modules/autolinks/content-autolinks.php:16
1850
  "with that anchor text (assuming other posts contain that text)."
1851
  msgstr ""
1852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1853
  #: includes/jlwp/functions.php:56
1854
  msgid "Posts"
1855
  msgstr ""