SEO Ultimate - Version 6.2

Version Description

Download this release

Release Info

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

Code changes from version 6.1 to 6.2

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