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