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