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