SEO Ultimate - Version 4.6

Version Description

Download this release

Release Info

Developer SEO Design Solutions
Plugin Icon 128x128 SEO Ultimate
Version 4.6
Comparing to
See all releases

Code changes from version 4.5.4 to 4.6

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