Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 7.2.2 |
Comparing to | |
See all releases |
Code changes from version 7.2.1 to 7.2.2
modules/autolinks/content-autolinks-settings.php
CHANGED
@@ -75,6 +75,8 @@ class SU_ContentAutolinksSettings extends SU_Module {
|
|
75 |
|
76 |
$this->checkboxes($siloing_checkboxes, __('Siloing', 'seo-ultimate'));
|
77 |
|
|
|
|
|
78 |
$this->admin_form_table_end();
|
79 |
}
|
80 |
}
|
75 |
|
76 |
$this->checkboxes($siloing_checkboxes, __('Siloing', 'seo-ultimate'));
|
77 |
|
78 |
+
$this->textbox('autolink_class', __('CSS Class for Autolinks', 'seo-ultimate'));
|
79 |
+
|
80 |
$this->admin_form_table_end();
|
81 |
}
|
82 |
}
|
modules/autolinks/content-autolinks.php
CHANGED
@@ -90,6 +90,8 @@ class SU_ContentAutolinks extends SU_Module {
|
|
90 |
}
|
91 |
}
|
92 |
|
|
|
|
|
93 |
$post = get_post($id);
|
94 |
|
95 |
$i=0;
|
@@ -151,10 +153,11 @@ class SU_ContentAutolinks extends SU_Module {
|
|
151 |
$rel = $data['nofollow'] ? ' rel="nofollow"' : '';
|
152 |
$target = ($data['target'] == 'blank') ? ' target="_blank"' : '';
|
153 |
$title = strlen($titletext = su_esc_attr($data['title'])) ? " title=\"$titletext\"" : '';
|
|
|
154 |
$a_url = su_esc_attr($url);
|
155 |
$h_anchor = esc_html($anchor);
|
156 |
|
157 |
-
$link = "<a href=\"$a_url\"$title$rel$target>$1</a>";
|
158 |
|
159 |
$lpa_lpu_limits = array();
|
160 |
if ($lpa_limit_enabled) $lpa_lpu_limits[] = $lpa_limit;
|
90 |
}
|
91 |
}
|
92 |
|
93 |
+
$autolink_class = $this->get_setting('autolink_class', '');
|
94 |
+
|
95 |
$post = get_post($id);
|
96 |
|
97 |
$i=0;
|
153 |
$rel = $data['nofollow'] ? ' rel="nofollow"' : '';
|
154 |
$target = ($data['target'] == 'blank') ? ' target="_blank"' : '';
|
155 |
$title = strlen($titletext = su_esc_attr($data['title'])) ? " title=\"$titletext\"" : '';
|
156 |
+
$class = $autolink_class ? ' class="' . su_esc_attr($autolink_class) . '"' : '';
|
157 |
$a_url = su_esc_attr($url);
|
158 |
$h_anchor = esc_html($anchor);
|
159 |
|
160 |
+
$link = "<a href=\"$a_url\"$title$rel$target$class>$1</a>";
|
161 |
|
162 |
$lpa_lpu_limits = array();
|
163 |
if ($lpa_limit_enabled) $lpa_lpu_limits[] = $lpa_limit;
|
modules/class.su-module.php
CHANGED
@@ -1790,7 +1790,7 @@ class SU_Module {
|
|
1790 |
}
|
1791 |
|
1792 |
/**
|
1793 |
-
* Outputs a dropdown into an admin form and saves the
|
1794 |
*
|
1795 |
* @since 3.7
|
1796 |
* @uses is_action()
|
@@ -1800,9 +1800,10 @@ class SU_Module {
|
|
1800 |
* @uses su_esc_attr()
|
1801 |
* @uses get_setting()
|
1802 |
*
|
1803 |
-
* @param string $name The name of the
|
1804 |
-
* @param array $values The keys of this array are the
|
1805 |
-
* @param string|false $grouptext The text to display in a table cell to the left of the one containing the
|
|
|
1806 |
*/
|
1807 |
function dropdown($name, $values, $grouptext=false, $text='%s') {
|
1808 |
|
1790 |
}
|
1791 |
|
1792 |
/**
|
1793 |
+
* Outputs a dropdown into an admin form and saves the dropdown's value into the database after form submission.
|
1794 |
*
|
1795 |
* @since 3.7
|
1796 |
* @uses is_action()
|
1800 |
* @uses su_esc_attr()
|
1801 |
* @uses get_setting()
|
1802 |
*
|
1803 |
+
* @param string $name The name of the setting which the dropdown is supposed to set.
|
1804 |
+
* @param array $values The keys of this array are the possible dropdown option values, and the array values are the option label strings.
|
1805 |
+
* @param string|false $grouptext The text to display in a table cell to the left of the one containing the dropdown. Optional.
|
1806 |
+
* @param string $text A printf-style format string in which "%s" is replaced with the dropdown. Use this to put text before or after the dropdown.
|
1807 |
*/
|
1808 |
function dropdown($name, $values, $grouptext=false, $text='%s') {
|
1809 |
|
modules/internal-link-aliases/internal-link-aliases.php
CHANGED
@@ -270,7 +270,7 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
270 |
|
271 |
$attrs = "{$matches[1]}href={$matches[2]}{$new_url}{$matches[4]}{$matches[5]}";
|
272 |
|
273 |
-
if ($this->get_setting('nofollow_aliased_links', false) && $this->plugin->module_exists('link-nofollow'))
|
274 |
$this->plugin->call_module_func('link-nofollow', 'nofollow_attributes_string', $attrs, $attrs);
|
275 |
|
276 |
return "<a $attrs>";
|
270 |
|
271 |
$attrs = "{$matches[1]}href={$matches[2]}{$new_url}{$matches[4]}{$matches[5]}";
|
272 |
|
273 |
+
if ($old_url != $new_url && $this->get_setting('nofollow_aliased_links', false) && $this->plugin->module_exists('link-nofollow'))
|
274 |
$this->plugin->call_module_func('link-nofollow', 'nofollow_attributes_string', $attrs, $attrs);
|
275 |
|
276 |
return "<a $attrs>";
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
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, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.3
|
5 |
-
Tested up to: 3.
|
6 |
-
Stable tag: 7.2.
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
@@ -261,6 +261,10 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
261 |
|
262 |
== Changelog ==
|
263 |
|
|
|
|
|
|
|
|
|
264 |
= Version 7.2.1 (December 30, 2011) =
|
265 |
* Bugfix: Fixed malformed HTML that broke multiple module admin pages (bug introduced in 7.2)
|
266 |
* Bugfix: Deeplink Juggernaut's "Tag Restrictions" setting now takes effect even when the excluded tag has a `<br />` or other nested tag in it
|
2 |
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, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.3
|
5 |
+
Tested up to: 3.4
|
6 |
+
Stable tag: 7.2.2
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
261 |
|
262 |
== Changelog ==
|
263 |
|
264 |
+
= Version 7.2.2 (June 15, 2012) =
|
265 |
+
* Feature: You can now specify a CSS class for autolinks generated by Deeplink Juggernaut
|
266 |
+
* Bugfix: Link Mask Generator no longer nofollows all links in a post when the "Nofollow aliased links" option is checked (bug introduced in 6.1)
|
267 |
+
|
268 |
= Version 7.2.1 (December 30, 2011) =
|
269 |
* Bugfix: Fixed malformed HTML that broke multiple module admin pages (bug introduced in 7.2)
|
270 |
* Bugfix: Deeplink Juggernaut's "Tag Restrictions" setting now takes effect even when the excluded tag has a `<br />` or other nested tag in it
|
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: 7.2.
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
@@ -12,12 +12,12 @@ Text Domain: seo-ultimate
|
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
-
* @version 7.2.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
19 |
/*
|
20 |
-
Copyright (c) 2009-
|
21 |
|
22 |
This program is free software; you can redistribute it and/or modify
|
23 |
it under the terms of the GNU General Public License as published by
|
@@ -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', '7.2.
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/7.2.
|
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: 7.2.2
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
+
* @version 7.2.2
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
19 |
/*
|
20 |
+
Copyright (c) 2009-2012 John Lamansky
|
21 |
|
22 |
This program is free software; you can redistribute it and/or modify
|
23 |
it under the terms of the GNU General Public License as published by
|
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', '7.2.2');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/7.2.2');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
seo-ultimate.pot → translations/seo-ultimate.pot
RENAMED
@@ -1,1077 +1,1355 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: SEO Ultimate 7.2.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#:
|
16 |
-
msgid "
|
17 |
msgstr ""
|
18 |
|
19 |
-
#:
|
20 |
-
msgid "
|
21 |
msgstr ""
|
22 |
|
23 |
-
#:
|
24 |
-
msgid ""
|
25 |
-
"SEO Ultimate’s features are located in groups called “modules."
|
26 |
-
"” By default, most of these modules are listed in the “"
|
27 |
-
"SEO” menu on the left. Whenever you’re working with a module, "
|
28 |
-
"you can view documentation by clicking the tabs in the upper-right-hand "
|
29 |
-
"corner of your administration screen."
|
30 |
msgstr ""
|
31 |
|
32 |
-
#:
|
33 |
-
msgid ""
|
34 |
-
"The Module Manager lets you disable or hide modules you don’t use. "
|
35 |
-
"You can also silence modules from displaying bubble alerts on the menu."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#:
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#:
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#:
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#:
|
51 |
-
msgid "
|
52 |
msgstr ""
|
53 |
|
54 |
-
#:
|
55 |
-
msgid "
|
56 |
msgstr ""
|
57 |
|
58 |
-
#:
|
59 |
-
|
|
|
60 |
msgstr ""
|
61 |
|
62 |
-
#:
|
63 |
-
msgid "
|
64 |
msgstr ""
|
65 |
|
66 |
-
#:
|
67 |
-
msgid "
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: modules/
|
71 |
-
msgid ""
|
72 |
-
"\r\n"
|
73 |
-
"<p>The Module Manager lets you customize the visibility and accessibility of "
|
74 |
-
"each module; here are the options available:</p>\r\n"
|
75 |
-
"<ul>\r\n"
|
76 |
-
"\t<li><strong>Enabled</strong> — The default option. The module will "
|
77 |
-
"be fully enabled and accessible.</li>\r\n"
|
78 |
-
"\t<li><strong>Silenced</strong> — The module will be enabled and "
|
79 |
-
"accessible, but it won't be allowed to display numeric bubble alerts on the "
|
80 |
-
"menu.</li>\r\n"
|
81 |
-
"\t<li><strong>Hidden</strong> — The module's functionality will be "
|
82 |
-
"enabled, but the module won't be visible on the SEO menu. You will still be "
|
83 |
-
"able to access the module's admin page by clicking on its title in the "
|
84 |
-
"Module Manager table.</li>\r\n"
|
85 |
-
"\t<li><strong>Disabled</strong> — The module will be completely "
|
86 |
-
"disabled and inaccessible.</li>\r\n"
|
87 |
-
"</ul>\r\n"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: modules/
|
91 |
-
|
92 |
-
#: modules/more-links/more-links.php:105 modules/more-links/more-links.php:116
|
93 |
-
#: modules/settings/settings.php:41 modules/titles/titles.php:442
|
94 |
-
#: modules/files/files.php:155
|
95 |
-
msgid "FAQ"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: modules/modules/
|
99 |
-
msgid ""
|
100 |
-
"\r\n"
|
101 |
-
"<ul>\r\n"
|
102 |
-
"\t<li><strong>What are modules?</strong><br />SEO Ultimate’s features "
|
103 |
-
"are divided into groups called “modules.” SEO Ultimate’s "
|
104 |
-
"“Module Manager” lets you enable or disable each of these groups "
|
105 |
-
"of features. This way, you can pick-and-choose which SEO Ultimate features "
|
106 |
-
"you want.</li>\r\n"
|
107 |
-
"\t<li><strong>Can I access a module again after I’ve hidden it?</"
|
108 |
-
"strong><br />Yes. Just go to the Module Manager and click the module’s "
|
109 |
-
"title to open its admin page. If you’d like to put the module back in "
|
110 |
-
"the “SEO” menu, just re-enable the module in the Module Manager "
|
111 |
-
"and click “Save Changes.”</li>\r\n"
|
112 |
-
"\t<li><strong>How do I disable the number bubbles on the “SEO” "
|
113 |
-
"menu?</strong><br />Just go to the Module Manager and select the “"
|
114 |
-
"Silenced” option for any modules generating number bubbles. Then click "
|
115 |
-
"“Save Changes.”</li>\r\n"
|
116 |
-
"</ul>\r\n"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: modules/
|
120 |
-
msgid "
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: modules/
|
124 |
-
msgid "
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: modules/
|
128 |
-
msgid "
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: modules/
|
132 |
-
msgid "
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: modules/
|
136 |
-
msgid "
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: modules/
|
140 |
-
msgid "
|
|
|
|
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: modules/
|
144 |
-
msgid "
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: modules/
|
148 |
-
|
149 |
-
#: modules/sharing-buttons/sharing-buttons.php:72
|
150 |
-
#: modules/meta/meta-keywords.php:166 modules/meta/meta-robots.php:53
|
151 |
-
#: modules/meta/meta-descriptions.php:174 modules/meta/webmaster-verify.php:58
|
152 |
-
#: modules/rich-snippets/rich-snippets.php:258
|
153 |
-
#: modules/more-links/more-links.php:104 modules/more-links/more-links.php:111
|
154 |
-
#: modules/settings/settings.php:22 modules/404s/fofs.php:19
|
155 |
-
#: modules/titles/titles.php:341 modules/files/files.php:144
|
156 |
-
#: modules/canonical/canonical.php:201
|
157 |
-
msgid "Overview"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: modules/
|
161 |
-
msgid ""
|
162 |
-
"\r\n"
|
163 |
-
"<ul>\r\n"
|
164 |
-
"\t<li><strong>What it does:</strong> Linkbox Inserter can add linkboxes to "
|
165 |
-
"your posts/pages.</li>\r\n"
|
166 |
-
"\t<li><strong>Why it helps:</strong> Linkboxes contain HTML code that "
|
167 |
-
"visitors can use to link to your site. This is a great way to encourage SEO-"
|
168 |
-
"beneficial linking activity.</li>\r\n"
|
169 |
-
"\t<li><strong>How to use it:</strong> Use the checkboxes to enable the "
|
170 |
-
"Linkbox Inserter in various areas of your site. Customize the HTML if "
|
171 |
-
"desired. Click “Save Changes” when finished.</li>\r\n"
|
172 |
-
"</ul>\r\n"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: modules/
|
176 |
-
|
177 |
-
#: modules/rich-snippets/rich-snippets.php:269 modules/404s/fofs.php:45
|
178 |
-
#: modules/titles/titles.php:415
|
179 |
-
msgid "Settings Help"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: modules/
|
183 |
-
msgid ""
|
184 |
-
"\r\n"
|
185 |
-
"<p>Here’s information on the various settings:</p>\r\n"
|
186 |
-
"\r\n"
|
187 |
-
"<ul>\r\n"
|
188 |
-
"\t<li>\r\n"
|
189 |
-
"\t\t<strong>Display linkboxes...</strong>\r\n"
|
190 |
-
"\t\t<ul>\r\n"
|
191 |
-
"\t\t\t<li><strong>At the end of posts</strong> — Adds the linkbox HTML "
|
192 |
-
"to the end of all posts (whether they're displayed on the blog homepage, in "
|
193 |
-
"archives, or by themselves).</li>\r\n"
|
194 |
-
"\t\t\t<li><strong>At the end of pages</strong> — Adds the linkbox HTML "
|
195 |
-
"to the end of all Pages.</li>\r\n"
|
196 |
-
"\t\t\t<li><strong>When called by the su_linkbox hook</strong> — For "
|
197 |
-
"more fine-tuned control over where linkboxes appear, enable this option and "
|
198 |
-
"add <code><?php do_action('su_linkbox'); ?></code> to your theme. You "
|
199 |
-
"can also add an ID parameter to display the linkbox of a particular post/"
|
200 |
-
"page; for example: <code><?php do_action('su_linkbox', 123); ?></code>."
|
201 |
-
"</li>\r\n"
|
202 |
-
"\t\t</ul>\r\n"
|
203 |
-
"\t</li>\r\n"
|
204 |
-
"\t<li>\r\n"
|
205 |
-
"\t\t<strong>HTML</strong> — The HTML that will be outputted to display "
|
206 |
-
"the linkboxes. The HTML field supports these variables:\r\n"
|
207 |
-
"\t\t<ul>\r\n"
|
208 |
-
"\t\t\t<li>{id} — The ID of the current post/page, or the ID passed to "
|
209 |
-
"the action hook call.</li>\r\n"
|
210 |
-
"\t\t\t<li>{url} — The permalink URL of the post/page.</li>\r\n"
|
211 |
-
"\t\t\t<li>{title} — The title of the post/page.</li>\r\n"
|
212 |
-
"\t\t</ul>\r\n"
|
213 |
-
"\t</li>\r\n"
|
214 |
-
"</ul>\r\n"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: modules/
|
218 |
-
msgid "
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: modules/
|
222 |
-
msgid "
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: modules/
|
226 |
-
msgid "
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: modules/
|
230 |
-
msgid "
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: modules/
|
234 |
-
msgid "
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: modules/
|
238 |
-
msgid "
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: modules/
|
242 |
-
msgid "
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: modules/
|
246 |
-
msgid "
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: modules/
|
250 |
-
msgid "
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: modules/
|
254 |
-
msgid "
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: modules/
|
258 |
-
|
|
|
|
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: modules/
|
262 |
-
msgid "
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: modules/
|
266 |
-
msgid "
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: modules/
|
270 |
-
msgid "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: modules/
|
274 |
-
msgid "
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: modules/
|
278 |
-
msgid "
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: modules/
|
282 |
-
msgid "
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
msgid ""
|
287 |
"\r\n"
|
288 |
-
"<
|
289 |
-
"
|
290 |
-
"
|
291 |
-
"
|
292 |
-
"
|
293 |
-
"
|
294 |
-
"
|
295 |
-
"
|
296 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: modules/
|
300 |
-
msgid "
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: modules/
|
304 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: modules/
|
308 |
-
|
|
|
|
|
|
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: modules/
|
312 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: modules/
|
316 |
-
|
|
|
|
|
|
|
|
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: modules/
|
320 |
msgid ""
|
321 |
-
"
|
322 |
-
"
|
323 |
-
"
|
324 |
-
"
|
325 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: modules/
|
|
|
|
|
|
|
|
|
329 |
msgid ""
|
330 |
-
"
|
331 |
-
"
|
332 |
-
"
|
|
|
|
|
|
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: modules/
|
336 |
-
msgid "
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: modules/
|
340 |
-
msgid ""
|
341 |
-
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
342 |
-
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
343 |
-
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
344 |
-
"Ultimate."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: modules/
|
348 |
-
msgid "
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: modules/
|
|
|
|
|
|
|
|
|
352 |
msgid ""
|
353 |
-
"
|
354 |
-
"data, but different data already exists in the corresponding SEO Ultimate "
|
355 |
-
"fields?"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: modules/
|
359 |
-
msgid "
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: modules/
|
363 |
-
msgid "
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: modules/
|
367 |
-
msgid "
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: modules/
|
371 |
-
msgid "
|
|
|
|
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: modules/
|
375 |
msgid ""
|
376 |
-
"
|
377 |
-
"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: modules/
|
381 |
-
msgid "
|
|
|
|
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: modules/
|
385 |
-
msgid "
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: modules/
|
389 |
-
msgid "
|
|
|
|
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
393 |
msgid ""
|
394 |
-
"The
|
395 |
-
"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: modules/
|
399 |
-
|
|
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: modules/
|
403 |
-
|
|
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: modules/
|
407 |
-
|
|
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: modules/
|
411 |
-
|
|
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: modules/
|
415 |
-
|
|
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: modules/
|
419 |
-
msgid "
|
420 |
-
|
421 |
-
msgstr[0] ""
|
422 |
-
msgstr[1] ""
|
423 |
|
424 |
-
#: modules/
|
425 |
-
|
426 |
-
|
427 |
-
msgstr
|
428 |
-
msgstr[1] ""
|
429 |
|
430 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
msgid ""
|
432 |
-
"
|
433 |
-
"
|
434 |
-
|
435 |
-
"
|
436 |
-
"
|
437 |
-
|
438 |
-
|
|
|
439 |
|
440 |
-
#: modules/
|
441 |
-
msgid "
|
442 |
-
|
443 |
-
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
444 |
-
msgstr[0] ""
|
445 |
-
msgstr[1] ""
|
446 |
|
447 |
-
#: modules/
|
448 |
-
msgid "
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: modules/
|
452 |
-
msgid "
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: modules/
|
456 |
-
msgid "
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: modules/
|
460 |
-
msgid "
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: modules/
|
464 |
-
msgid "
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: modules/
|
468 |
-
msgid "Footer"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: modules/
|
472 |
-
msgid "
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
476 |
msgid ""
|
477 |
"\r\n"
|
478 |
"<ul>\r\n"
|
479 |
-
"\t<li><strong>What it does:</strong> Code Inserter can add custom HTML code "
|
480 |
-
"to various parts of your site.</li>\r\n"
|
481 |
"\t<li>\r\n"
|
482 |
-
"\t\t<p><strong>
|
483 |
-
"
|
484 |
-
"
|
485 |
-
"
|
486 |
-
"
|
487 |
-
"\t\t<p>
|
488 |
-
"
|
489 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
490 |
"\t</li>\r\n"
|
491 |
-
"\t<li><strong>
|
492 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
"</ul>\r\n"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: modules/
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
#: modules/
|
501 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: modules/
|
505 |
-
msgid ""
|
506 |
-
"\r\n"
|
507 |
-
"<ul>\r\n"
|
508 |
-
"\t<li><strong>Why doesn't my code appear on my site?</strong><br />It’"
|
509 |
-
"s possible that your theme doesn't have the proper “hooks,” "
|
510 |
-
"which are pieces of code that let WordPress plugins insert custom HTML into "
|
511 |
-
"your theme. <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' "
|
512 |
-
"target='_blank'>Click here</a> for information on how to check your theme "
|
513 |
-
"and add the hooks if needed.</li>\r\n"
|
514 |
-
"</ul>\r\n"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: modules/
|
518 |
-
msgid "
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: modules/
|
522 |
-
msgid "
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: modules/
|
526 |
-
msgid ""
|
527 |
-
"\r\n"
|
528 |
-
"<ul>\r\n"
|
529 |
-
"\t<li><strong>What it does:</strong> Slug Optimizer removes common words "
|
530 |
-
"from the portion of a post’s or Page’s URL that is based on its "
|
531 |
-
"title. (This portion is also known as the “slug.”)</li>\r\n"
|
532 |
-
"\t<li><strong>Why it helps:</strong> Slug Optimizer increases keyword "
|
533 |
-
"potency because there are fewer words in your URLs competing for relevance.</"
|
534 |
-
"li>\r\n"
|
535 |
-
"\t<li><strong>How to use it:</strong> Slug Optimizer works without any "
|
536 |
-
"action required on your part. When you add a new post in your WordPress "
|
537 |
-
"admin and specify a title for it, WordPress will generate a slug and the new "
|
538 |
-
"post’s future URL will appear below the title box. While WordPress is "
|
539 |
-
"generating the slug, Slug Optimizer takes common words out of it. You can "
|
540 |
-
"use the textbox on Slug Optimizer’s admin page to specify which common "
|
541 |
-
"words are removed.</li>\r\n"
|
542 |
-
"</ul>\r\n"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
546 |
msgid ""
|
547 |
-
"
|
548 |
-
"
|
549 |
-
|
550 |
-
"
|
551 |
-
"
|
552 |
-
|
553 |
-
|
554 |
-
">No. Slug Optimizer will not relocate your content by changing existing "
|
555 |
-
"URLs. Slug Optimizer only takes effect on new posts and pages.</li>\r\n"
|
556 |
-
"\t<li>\r\n"
|
557 |
-
"\t\t<p><strong>How do I see Slug Optimizer in action?</strong><br />Follow "
|
558 |
-
"these steps:</p>\r\n"
|
559 |
-
"\t\t<ol>\r\n"
|
560 |
-
"\t\t\t<li>Create a new post/Page in WordPress.</li>\r\n"
|
561 |
-
"\t\t\t<li>Type in a title containing some common and uncommon words.</li>\r\n"
|
562 |
-
"\t\t\t<li>Click outside the Title box. WordPress will insert a URL labeled "
|
563 |
-
"“Permalink” below the Title textbox. The Slug Optimizer will "
|
564 |
-
"have removed the common words from the URL.</li>\r\n"
|
565 |
-
"\t\t</ol>\r\n"
|
566 |
-
"\t</li>\r\n"
|
567 |
-
"\t<li><strong>What if I want to include a common word in my slug?</"
|
568 |
-
"strong><br />When editing the post or page in question, just click the "
|
569 |
-
"“Edit” button next to the permalink and change the slug as "
|
570 |
-
"desired. The Slug Optimizer won’t remove words from a manually-edited "
|
571 |
-
"slug.</li>\r\n"
|
572 |
-
"\t<li><strong>If I edit the optimized slug but then change my mind, how do I "
|
573 |
-
"revert back to the optimized slug?</strong><br />When editing the post or "
|
574 |
-
"page in question, just click the “Edit” button next to the "
|
575 |
-
"permalink; a “Save” button will appear in its place. Next erase "
|
576 |
-
"the contents of the textbox, and then click the aforementioned “"
|
577 |
-
"Save” button.</li>\r\n"
|
578 |
-
"</ul>\r\n"
|
579 |
-
msgstr ""
|
580 |
|
581 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
582 |
msgid ""
|
583 |
-
"
|
584 |
-
"<
|
585 |
-
"\t<li><strong>Why didn’t the Slug Optimizer remove common words from "
|
586 |
-
"my slug?</strong><br />It’s possible that every word in your post "
|
587 |
-
"title is in the list of words to remove. In this case, Slug Optimizer "
|
588 |
-
"doesn’t remove the words, because if it did, you’d end up with a "
|
589 |
-
"blank slug.</li>\r\n"
|
590 |
-
"</ul>\r\n"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: modules/
|
594 |
-
|
595 |
-
msgid "Sharing Facilitator"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: modules/
|
599 |
-
msgid "
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: modules/
|
603 |
-
msgid "
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: modules/
|
607 |
-
msgid "
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: modules/
|
611 |
-
msgid "
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: modules/
|
615 |
-
msgid "
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: modules/
|
619 |
-
msgid ""
|
620 |
-
"\r\n"
|
621 |
-
"<ul>\r\n"
|
622 |
-
"\t<li><strong>What it does:</strong> Sharing Facilitator adds buttons to "
|
623 |
-
"your posts/pages that make it easy for visitors to share your content.</li>"
|
624 |
-
"\r\n"
|
625 |
-
"\t<li><strong>Why it helps:</strong> When visitors share your content on "
|
626 |
-
"social networking sites, this can build links to your site. Sharing "
|
627 |
-
"Facilitator makes it easy for visitors to do this.</li>\r\n"
|
628 |
-
"\t<li><strong>How to use it:</strong> Pick which button type you’d "
|
629 |
-
"like to use (ShareThis or AddThis) and click Save Changes. Try enabling each "
|
630 |
-
"button on your site and see which one you like better.</li>\r\n"
|
631 |
-
"</ul>\r\n"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: modules/
|
635 |
-
msgid "
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: modules/
|
639 |
-
|
640 |
-
msgid "Noindex"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: modules/
|
644 |
-
msgid "
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: modules/
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: modules/
|
654 |
-
msgid "
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: modules/
|
658 |
-
msgid "
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: modules/
|
662 |
-
msgid "
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: modules/
|
666 |
-
msgid "
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: modules/
|
670 |
-
|
|
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: modules/
|
674 |
-
msgid ""
|
675 |
-
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
676 |
-
"block indexing of the entire site, regardless of which options are set below."
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: modules/
|
680 |
-
msgid "
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: modules/
|
684 |
-
msgid "
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: modules/
|
688 |
-
msgid "
|
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 |
-
msgid "
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: modules/
|
708 |
-
msgid "
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: modules/
|
712 |
-
msgid "
|
|
|
|
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: modules/
|
716 |
-
msgid "
|
|
|
|
|
|
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: modules/
|
720 |
-
msgid "
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: modules/
|
724 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: modules/
|
728 |
-
msgid "
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: modules/
|
732 |
-
msgid "
|
|
|
|
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: modules/
|
736 |
-
msgid "
|
|
|
|
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: modules/
|
740 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: modules/
|
744 |
-
|
|
|
|
|
|
|
|
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: modules/
|
748 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: modules/
|
752 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: modules/
|
756 |
-
msgid "
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: modules/
|
760 |
-
msgid "
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: modules/
|
764 |
-
msgid "
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: modules/
|
768 |
-
msgid ""
|
769 |
-
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
770 |
-
"a certain word or phrase in your post/page content to a URL you specify."
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: modules/
|
774 |
-
|
775 |
-
msgid "Edit Existing Links"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: modules/
|
779 |
-
|
780 |
-
|
|
|
|
|
|
|
|
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: modules/
|
784 |
-
|
785 |
-
|
|
|
|
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: modules/
|
789 |
-
|
790 |
-
msgid "Destination"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: modules/
|
794 |
-
|
795 |
-
msgid "Title Attribute"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: modules/
|
799 |
-
msgid "
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: modules/
|
803 |
-
|
804 |
-
msgid "Options"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: modules/
|
808 |
-
|
809 |
-
#: modules/internal-link-aliases/internal-link-aliases.php:91
|
810 |
-
msgid "Delete"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: modules/
|
814 |
-
|
815 |
-
msgid "New window"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: modules/
|
819 |
-
msgid "
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: modules/
|
823 |
-
msgid "
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: modules/
|
827 |
-
msgid "
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: modules/
|
831 |
-
msgid ""
|
832 |
-
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
833 |
-
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
834 |
-
"other posts and link it to this post. For example, if the post you’re "
|
835 |
-
"editing is about “blue widgets,” you could type “blue "
|
836 |
-
"widgets” into the “Incoming Autolink Anchors” box and "
|
837 |
-
"Deeplink Juggernaut will automatically build internal links to this post "
|
838 |
-
"with that anchor text (assuming other posts contain that text)."
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: modules/
|
842 |
-
msgid "
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: modules/
|
846 |
-
msgid ""
|
847 |
-
"Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
|
848 |
-
"(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
|
849 |
-
"WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your "
|
850 |
-
"webhost. In the meantime, you can return to an older version of Deeplink "
|
851 |
-
"Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
|
852 |
-
"a> to SEO Ultimate 5.9."
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: modules/
|
856 |
-
msgid "
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: modules/
|
860 |
-
msgid "
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: modules/
|
864 |
-
msgid "
|
|
|
|
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: modules/
|
868 |
-
msgid "
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: modules/
|
872 |
-
msgid "
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: modules/
|
876 |
-
msgid "
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: modules/
|
880 |
-
msgid "
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: modules/
|
884 |
-
msgid "
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: modules/
|
888 |
-
msgid "
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: modules/
|
892 |
-
msgid ""
|
893 |
-
"Allow posts to link to the URL by which the visitor is accessing the post."
|
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 |
-
"Don’t link the same anchor text any more than %d times per post/page/"
|
911 |
-
"etc."
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: modules/
|
915 |
-
msgid ""
|
916 |
-
"Don’t link the same anchor text any more than %d times across my "
|
917 |
-
"entire site."
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: modules/
|
921 |
-
msgid ""
|
922 |
-
"Don’t link to the same destination any more than %d times per post/"
|
923 |
-
"page/etc."
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: modules/
|
927 |
-
msgid "
|
928 |
msgstr ""
|
929 |
-
|
930 |
-
#: modules/
|
931 |
-
msgid ""
|
932 |
-
"Don’t add autolinks to text within these HTML tags <em>(separate with "
|
933 |
-
"commas)</em>:"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: modules/
|
937 |
-
msgid "Tag
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: modules/
|
941 |
-
msgid "
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: modules/
|
945 |
-
msgid "
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: modules/
|
949 |
-
msgid "
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: modules/
|
953 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: modules/
|
957 |
-
|
958 |
-
msgid "Settings"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: modules/
|
962 |
-
msgid "
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: modules/
|
966 |
-
msgid "
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: modules/
|
970 |
-
msgid "
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: modules/
|
974 |
-
msgid "
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: modules/
|
978 |
-
msgid "
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: modules/
|
982 |
-
msgid "
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: modules/
|
986 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: modules/
|
990 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: modules/
|
994 |
-
msgid "
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: modules/
|
998 |
-
msgid "
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: modules/
|
1002 |
-
msgid "
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: modules/
|
1006 |
-
msgid "
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: modules/
|
1010 |
-
msgid ""
|
1011 |
-
"You can stop search engines from following a link by typing in a mask for "
|
1012 |
-
"its URL."
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: modules/
|
1016 |
-
msgid "
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: modules/
|
1020 |
-
msgid "
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: modules/
|
1024 |
-
msgid "
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: modules/
|
1028 |
-
msgid ""
|
1029 |
-
"On category archives, displays a list of child categories and/or posts in "
|
1030 |
-
"the category. Displays a list of top-level categories everywhere else. "
|
1031 |
-
"Powered by the SEO Ultimate plugin."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: modules/
|
1035 |
-
msgid "
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: modules/
|
1039 |
-
msgid "
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: modules/
|
1043 |
-
msgid "
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: modules/
|
1047 |
-
msgid "
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: modules/
|
1051 |
-
msgid "
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: modules/
|
1055 |
-
msgid "
|
|
|
|
|
|
|
|
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: modules/
|
1059 |
msgid ""
|
1060 |
-
"
|
1061 |
-
"
|
1062 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: modules/
|
1066 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: modules/
|
1070 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: modules/
|
1074 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1075 |
msgstr ""
|
1076 |
|
1077 |
#: modules/meta/meta-keywords.php:12
|
@@ -1082,9 +1360,8 @@ msgstr ""
|
|
1082 |
msgid "Meta Keywords"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: modules/meta/meta-keywords.php:
|
1086 |
-
|
1087 |
-
msgid "Blog Homepage"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
#: modules/meta/meta-keywords.php:56
|
@@ -1163,28 +1440,6 @@ msgid ""
|
|
1163 |
"</ul>\r\n"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: modules/meta/meta-keywords.php:197 modules/meta/meta-robots.php:104
|
1167 |
-
#: modules/meta/meta-descriptions.php:207
|
1168 |
-
msgid ""
|
1169 |
-
"\r\n"
|
1170 |
-
"<ul>\r\n"
|
1171 |
-
"\t<li>\r\n"
|
1172 |
-
"\t\t<p><strong>What do I do if my site has multiple meta tags?</strong><br /"
|
1173 |
-
">First, try removing your theme’s built-in meta tags if it has them. "
|
1174 |
-
"Go to <a href='theme-editor.php' target='_blank'>Appearance ⇒ Editor</"
|
1175 |
-
"a> and edit <code>header.php</code>. Delete or comment-out any <code><"
|
1176 |
-
"meta></code> tags.</p>\r\n"
|
1177 |
-
"\t\t<p>If the problem persists, try disabling other SEO plugins that may be "
|
1178 |
-
"generating meta tags.</p>\r\n"
|
1179 |
-
"\t\t<p>Troubleshooting tip: Go to <a href='options-general.php?page=seo-"
|
1180 |
-
"ultimate'>Settings ⇒ SEO Ultimate</a> and enable the “Insert "
|
1181 |
-
"comments around HTML code insertions” option. This will mark SEO "
|
1182 |
-
"Ultimate’s meta tags with comments, allowing you to see which meta "
|
1183 |
-
"tags are generated by SEO Ultimate and which aren’t.</p>\r\n"
|
1184 |
-
"\t</li>\r\n"
|
1185 |
-
"</ul>\r\n"
|
1186 |
-
msgstr ""
|
1187 |
-
|
1188 |
#: modules/meta/meta-robots.php:12
|
1189 |
msgid "Meta Robot Tags Editor"
|
1190 |
msgstr ""
|
@@ -1315,287 +1570,350 @@ msgid ""
|
|
1315 |
"</ul>\r\n"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: modules/meta/meta-
|
1319 |
-
msgid "
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: modules/meta/
|
1323 |
-
msgid "
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: modules/meta/
|
1327 |
-
msgid "
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: modules/meta/
|
1331 |
-
msgid "
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: modules/meta/
|
1335 |
-
msgid "
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: modules/meta/
|
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 |
-
"<strong>Description</strong> — The value of the meta description tag. "
|
1377 |
-
"The description will often appear underneath the title in search engine "
|
1378 |
-
"results. Writing an accurate, attention-grabbing description for every post "
|
1379 |
-
"is important to ensuring a good search results clickthrough rate."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: modules/
|
1383 |
-
msgid ""
|
1384 |
-
"\r\n"
|
1385 |
-
"<ul>\r\n"
|
1386 |
-
"\t<li><strong>What it does:</strong> Meta Descriptions Editor lets you "
|
1387 |
-
"customize the text that you want to appear under your webpages’ titles "
|
1388 |
-
"in search results.</li>\r\n"
|
1389 |
-
"\t<li><strong>Why it helps:</strong> Getting ranked isn’t enough; once "
|
1390 |
-
"you're ranked, you need visitors to click on your site in the results. "
|
1391 |
-
"That’s where meta descriptions can help. When you provide text that "
|
1392 |
-
"makes searchers want to visit your site, you can increase your SERP "
|
1393 |
-
"clickthrough rate and thus increase search traffic.</li>\r\n"
|
1394 |
-
"\t<li><strong>How to use it:</strong> Enter meta descriptions for your "
|
1395 |
-
"homepage, posts, pages, etc. as desired, and then click Save Changes. You "
|
1396 |
-
"can also customize the meta data of an individual post or page by using the "
|
1397 |
-
"textboxes that Meta Editor adds to the post/page editors.</li>\r\n"
|
1398 |
-
"</ul>\r\n"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1402 |
msgid ""
|
1403 |
"\r\n"
|
1404 |
-
"<p>
|
1405 |
-
"
|
1406 |
"<ul>\r\n"
|
1407 |
-
"\t<li><strong>
|
1408 |
-
"
|
1409 |
-
"
|
1410 |
-
"
|
1411 |
-
"
|
1412 |
-
"
|
1413 |
-
"
|
1414 |
-
"
|
1415 |
-
"
|
1416 |
-
"
|
1417 |
-
"
|
1418 |
-
"tagline under <a href='options-general.php'>Settings ⇒ General</a>.</li>"
|
1419 |
-
"\r\n"
|
1420 |
"</ul>\r\n"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: modules/
|
1424 |
msgid ""
|
1425 |
"\r\n"
|
1426 |
"<ul>\r\n"
|
1427 |
-
"\t<li><strong>
|
1428 |
-
"
|
1429 |
-
"
|
1430 |
-
"
|
1431 |
-
"
|
1432 |
-
"
|
1433 |
-
"the &#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1434 |
"</ul>\r\n"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: modules/
|
1438 |
-
msgid "
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: modules/
|
1442 |
-
msgid "
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: modules/
|
1446 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: modules/
|
1450 |
-
msgid "
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: modules/
|
1454 |
-
|
|
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: modules/
|
1458 |
-
msgid ""
|
1459 |
-
"\r\n"
|
1460 |
-
"<ul>\r\n"
|
1461 |
-
"\t<li><strong>What it does:</strong> Webmaster Verification Assistant lets "
|
1462 |
-
"you enter in verification codes for the webmaster portals of the 3 leading "
|
1463 |
-
"search engines.</li>\r\n"
|
1464 |
-
"\t<li><strong>Why it helps:</strong> Webmaster Verification Assistant "
|
1465 |
-
"assists you in obtaining access to webmaster portals, which can provide you "
|
1466 |
-
"with valuable SEO tools.</li>\r\n"
|
1467 |
-
"\t<li><strong>How to use it:</strong> Use a search engine to locate the "
|
1468 |
-
"webmaster portal you’re interested in, sign up at the portal, and then "
|
1469 |
-
"obtain a verification code. Once you have the code, you can paste it in "
|
1470 |
-
"here, click Save Changes, then return to the portal to verify that you own "
|
1471 |
-
"the site. Once that’s done, you'll have access to the portal’s "
|
1472 |
-
"SEO tools.</li>\r\n"
|
1473 |
-
"</ul>\r\n"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: modules/
|
1477 |
-
msgid "
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: modules/
|
1481 |
-
msgid "
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
|
1485 |
-
|
1486 |
-
#: modules/sds-blog/sds-blog.php:49
|
1487 |
-
msgid "SEO Design Solutions"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: modules/
|
1491 |
-
msgid ""
|
1492 |
-
"The search engine optimization articles below are loaded from the website of "
|
1493 |
-
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
1494 |
-
"an article’s title to read it."
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: modules/
|
1498 |
msgid ""
|
1499 |
-
"
|
1500 |
-
"
|
1501 |
-
msgstr ""
|
1502 |
-
|
1503 |
-
#: modules/class.su-module.php:971
|
1504 |
-
msgid "%1$s | %2$s %3$s by %4$s"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: modules/
|
1508 |
-
msgid "
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: modules/
|
1512 |
-
msgid "
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: modules/
|
1516 |
-
msgid "
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: modules/
|
1520 |
-
msgid "
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: modules/
|
1524 |
-
msgid "
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: modules/
|
1528 |
-
msgid "
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: modules/
|
1532 |
-
msgid "
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: modules/
|
1536 |
-
msgid "
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: modules/
|
1540 |
-
msgid "
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: modules/
|
1544 |
-
msgid "
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: modules/
|
1548 |
-
msgid ""
|
1549 |
-
"Are you sure you want to replace the textbox contents with this default "
|
1550 |
-
"value?"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: modules/
|
1554 |
-
msgid "
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: modules/
|
1558 |
-
msgid "
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: modules/
|
1562 |
-
msgid "
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: modules/
|
1566 |
-
msgid "
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: modules/
|
1570 |
-
msgid "
|
|
|
|
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: modules/
|
1574 |
-
msgid "
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: modules/
|
1578 |
-
msgid "
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: modules/
|
1582 |
-
msgid "
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: modules/
|
1586 |
-
msgid "
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: modules/
|
1590 |
-
msgid "
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: modules/
|
1594 |
-
msgid "
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: modules/
|
1598 |
-
msgid "
|
|
|
|
|
|
|
1599 |
msgstr ""
|
1600 |
|
1601 |
#: modules/rich-snippets/rich-snippets.php:12
|
@@ -1754,102 +2072,159 @@ msgid ""
|
|
1754 |
"</ul>\r\n"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: modules/rich-snippets/rich-snippets.php:280
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1758 |
msgid ""
|
1759 |
-
"
|
1760 |
-
"
|
1761 |
-
"
|
1762 |
-
"results for my site?</strong><br />Enter the URL of your post/page into <a "
|
1763 |
-
"href='http://www.google.com/webmasters/tools/richsnippets' "
|
1764 |
-
"target='_blank'>Google’s testing tool</a> to make sure Google can find "
|
1765 |
-
"the rich snippet code on your site. If no code is found, check and make sure "
|
1766 |
-
"you've enabled rich snippets for that particular post/page.</p><p>Note that "
|
1767 |
-
"having the code on a post/page doesn’t guarantee that Google will "
|
1768 |
-
"actually use it to create a rich snippet. If Google is able to read your "
|
1769 |
-
"code but isn’t using it to generate rich snippets, you can ask Google "
|
1770 |
-
"to do so using <a href='http://www.google.com/support/webmasters/bin/request."
|
1771 |
-
"py?contact_type=rich_snippets_feedback' target='_blank'>this form</a>.</p></"
|
1772 |
-
"li>\r\n"
|
1773 |
-
"</ul>\r\n"
|
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 |
-
"\r\n"
|
1791 |
-
"<ul>\r\n"
|
1792 |
-
"\t<li><strong>What it does:</strong> More Link Customizer lets you modify "
|
1793 |
-
"the anchor text of your posts’ <a href='http://codex.wordpress.org/"
|
1794 |
-
"Customizing_the_Read_More' target='_blank'>“more” links</a>.</li>"
|
1795 |
-
"\r\n"
|
1796 |
-
"\t<li><strong>Why it helps:</strong> On the typical WordPress setup, the "
|
1797 |
-
"“more link” always has the same anchor text (e.g. “Read "
|
1798 |
-
"more of this entry”). Since internal anchor text conveys web page "
|
1799 |
-
"topicality to search engines, the “read more” phrase isn’t "
|
1800 |
-
"a desirable anchor phrase. More Link Customizer lets you replace the "
|
1801 |
-
"boilerplate text with a new anchor that, by default, integrates your post "
|
1802 |
-
"titles (which will ideally be keyword-oriented).</li>\r\n"
|
1803 |
-
"\t<li><strong>How to use it:</strong> On this page you can set the anchor "
|
1804 |
-
"text you’d like to use by default. The <code>{post}</code> variable "
|
1805 |
-
"will be replaced with the post’s title. HTML and encoded entities are "
|
1806 |
-
"supported. If instead you decide that you’d like to use the default "
|
1807 |
-
"anchor text specified by your currently-active theme, just erase the "
|
1808 |
-
"contents of the textbox. The anchor text can be overridden on a per-post "
|
1809 |
-
"basis via the “More Link Text” box in the “SEO "
|
1810 |
-
"Settings” section of the WordPress post editor.</li>\r\n"
|
1811 |
-
"</ul>\r\n"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: modules/
|
|
|
|
|
|
|
|
|
1815 |
msgid ""
|
1816 |
-
"
|
1817 |
-
"
|
1818 |
-
"\t<li>\r\n"
|
1819 |
-
"\t\t<p><strong>Why is the More Link Customizer an improvement over "
|
1820 |
-
"WordPress’s built-in functionality?</strong><br />Although WordPress "
|
1821 |
-
"does allow basic <a href='http://codex.wordpress.org/"
|
1822 |
-
"Customizing_the_Read_More#Having_a_custom_text_for_each_post' "
|
1823 |
-
"target='_blank'>custom “more” anchors</a>, the SEO Ultimate "
|
1824 |
-
"approach has several benefits:</p>\r\n"
|
1825 |
-
"\t\t<ul>\r\n"
|
1826 |
-
"\t\t\t<li>More Link Customizer (MLC) lets you set a custom default anchor "
|
1827 |
-
"text. WordPress, on the other hand, leaves this up to the currently-active "
|
1828 |
-
"theme.</li>\r\n"
|
1829 |
-
"\t\t\t<li>MLC lets you dynamically incorporate the post’s title into "
|
1830 |
-
"the anchor text.</li>\r\n"
|
1831 |
-
"\t\t\t<li>MLC lets you include HTML tags in your anchor, whereas WordPress "
|
1832 |
-
"strips these out.</li>\r\n"
|
1833 |
-
"\t\t\t<li>MLC’s functionality is much more prominent than "
|
1834 |
-
"WordPress’s unintuitive, barely-documented approach.</li>\r\n"
|
1835 |
-
"\t\t\t<li>Unlike WordPress's method, MLC doesn't require you to utilize the "
|
1836 |
-
"HTML editor.</li>\r\n"
|
1837 |
-
"\t\t</ul>\r\n"
|
1838 |
-
"\t\t<p>If you’ve already specified custom anchors via WordPress’"
|
1839 |
-
"s method, SEO Ultimate will import those anchors automatically into the More "
|
1840 |
-
"Link Customizer.</p>\r\n"
|
1841 |
-
"\t</li>\r\n"
|
1842 |
-
"</ul>\r\n"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#: modules/
|
1846 |
-
msgid "
|
1847 |
msgstr ""
|
1848 |
|
1849 |
-
#: modules/
|
1850 |
-
msgid ""
|
1851 |
-
|
1852 |
-
|
|
|
|
|
1853 |
msgstr ""
|
1854 |
|
1855 |
#: modules/settings/settings-data.php:16
|
@@ -2010,153 +2385,14 @@ msgid ""
|
|
2010 |
"You can erase all your SEO Ultimate settings and restore them to “"
|
2011 |
"factory defaults” by clicking the button below."
|
2012 |
msgstr ""
|
2013 |
-
|
2014 |
-
#: modules/settings/settings-data.php:274
|
2015 |
-
msgid ""
|
2016 |
-
"Are you sure you want to erase all module settings? This cannot be undone."
|
2017 |
-
msgstr ""
|
2018 |
-
|
2019 |
-
#: modules/settings/settings-data.php:275
|
2020 |
-
msgid "Restore Default Settings"
|
2021 |
-
msgstr ""
|
2022 |
-
|
2023 |
-
#: modules/settings/uninstall.php:17
|
2024 |
-
msgid "Uninstaller"
|
2025 |
-
msgstr ""
|
2026 |
-
|
2027 |
-
#: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1278
|
2028 |
-
msgid "Uninstall"
|
2029 |
-
msgstr ""
|
2030 |
-
|
2031 |
-
#: modules/settings/uninstall.php:27
|
2032 |
-
msgid ""
|
2033 |
-
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
2034 |
-
"files."
|
2035 |
-
msgstr ""
|
2036 |
-
|
2037 |
-
#: modules/settings/uninstall.php:30
|
2038 |
-
msgid ""
|
2039 |
-
"Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
|
2040 |
-
"your SEO Ultimate settings and cannot be undone."
|
2041 |
-
msgstr ""
|
2042 |
-
|
2043 |
-
#: modules/settings/uninstall.php:31
|
2044 |
-
msgid "Uninstall Now"
|
2045 |
-
msgstr ""
|
2046 |
-
|
2047 |
-
#: modules/settings/uninstall.php:35 modules/settings/uninstall.php:42
|
2048 |
-
msgid "Uninstall SEO Ultimate"
|
2049 |
-
msgstr ""
|
2050 |
-
|
2051 |
-
#: modules/settings/uninstall.php:46
|
2052 |
-
msgid "Deleted settings."
|
2053 |
-
msgstr ""
|
2054 |
-
|
2055 |
-
#: modules/settings/uninstall.php:53
|
2056 |
-
msgid "An error occurred while deleting files."
|
2057 |
-
msgstr ""
|
2058 |
-
|
2059 |
-
#: modules/settings/uninstall.php:55
|
2060 |
-
msgid "Deleted files."
|
2061 |
-
msgstr ""
|
2062 |
-
|
2063 |
-
#: modules/settings/uninstall.php:56
|
2064 |
-
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
2065 |
-
msgstr ""
|
2066 |
-
|
2067 |
-
#: modules/settings/install.php:18
|
2068 |
-
msgid "Upgrade/Downgrade/Reinstall"
|
2069 |
-
msgstr ""
|
2070 |
-
|
2071 |
-
#: modules/settings/install.php:19
|
2072 |
-
msgid "Installer"
|
2073 |
-
msgstr ""
|
2074 |
-
|
2075 |
-
#: modules/settings/install.php:23 modules/settings/install.php:48
|
2076 |
-
msgid "Upgrade"
|
2077 |
-
msgstr ""
|
2078 |
-
|
2079 |
-
#: modules/settings/install.php:24 modules/settings/install.php:71
|
2080 |
-
msgid "Downgrade"
|
2081 |
-
msgstr ""
|
2082 |
-
|
2083 |
-
#: modules/settings/install.php:25 modules/settings/install.php:86
|
2084 |
-
msgid "Reinstall"
|
2085 |
-
msgstr ""
|
2086 |
-
|
2087 |
-
#: modules/settings/install.php:42
|
2088 |
-
msgid ""
|
2089 |
-
"From the list below, select the version to which you would like to upgrade. "
|
2090 |
-
"Then click the “Upgrade” button at the bottom of the screen."
|
2091 |
-
msgstr ""
|
2092 |
-
|
2093 |
-
#: modules/settings/install.php:51
|
2094 |
-
msgid "You are already running the latest version."
|
2095 |
-
msgstr ""
|
2096 |
-
|
2097 |
-
#: modules/settings/install.php:53
|
2098 |
-
msgid ""
|
2099 |
-
"There was an error retrieving the list of available versions. Please try "
|
2100 |
-
"again later. You can also upgrade to the latest version of SEO Ultimate "
|
2101 |
-
"using the WordPress plugin upgrader."
|
2102 |
-
msgstr ""
|
2103 |
-
|
2104 |
-
#: modules/settings/install.php:62
|
2105 |
-
msgid ""
|
2106 |
-
"Downgrading is provided as a convenience only and is not officially "
|
2107 |
-
"supported. Although unlikely, you may lose data in the downgrading process. "
|
2108 |
-
"It is your responsibility to backup your database before proceeding."
|
2109 |
-
msgstr ""
|
2110 |
-
|
2111 |
-
#: modules/settings/install.php:65
|
2112 |
-
msgid ""
|
2113 |
-
"From the list below, select the version to which you would like to "
|
2114 |
-
"downgrade. Then click the “Downgrade” button at the bottom of "
|
2115 |
-
"the screen."
|
2116 |
-
msgstr ""
|
2117 |
-
|
2118 |
-
#: modules/settings/install.php:74
|
2119 |
-
msgid ""
|
2120 |
-
"Downgrading to versions earlier than %s is not supported because doing so "
|
2121 |
-
"will result in data loss."
|
2122 |
-
msgstr ""
|
2123 |
-
|
2124 |
-
#: modules/settings/install.php:76
|
2125 |
-
msgid ""
|
2126 |
-
"There was an error retrieving the list of available versions. Please try "
|
2127 |
-
"again later."
|
2128 |
-
msgstr ""
|
2129 |
-
|
2130 |
-
#: modules/settings/install.php:81
|
2131 |
-
msgid ""
|
2132 |
-
"To download and install a fresh copy of the SEO Ultimate version you are "
|
2133 |
-
"currently using, click the “Reinstall” button below."
|
2134 |
-
msgstr ""
|
2135 |
-
|
2136 |
-
#: modules/settings/install.php:108
|
2137 |
-
msgid "Your Current Version"
|
2138 |
-
msgstr ""
|
2139 |
-
|
2140 |
-
#: modules/settings/install.php:110
|
2141 |
-
msgid "Latest Version"
|
2142 |
-
msgstr ""
|
2143 |
-
|
2144 |
-
#: modules/settings/install.php:130
|
2145 |
-
msgid ""
|
2146 |
-
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
2147 |
-
"blog."
|
2148 |
-
msgstr ""
|
2149 |
-
|
2150 |
-
#: modules/settings/install.php:140
|
2151 |
-
msgid "Downgrade to SEO Ultimate %s"
|
2152 |
-
msgstr ""
|
2153 |
-
|
2154 |
-
#: modules/settings/install.php:143
|
2155 |
-
msgid "Reinstall SEO Ultimate %s"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: modules/settings/
|
2159 |
-
msgid "
|
2160 |
msgstr ""
|
2161 |
|
2162 |
#: modules/settings/settings.php:12
|
@@ -2167,7 +2403,7 @@ msgstr ""
|
|
2167 |
msgid "SEO Ultimate Plugin Settings"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.2.
|
2171 |
#. Plugin Name of the plugin/theme
|
2172 |
#: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:791
|
2173 |
msgid "SEO Ultimate"
|
@@ -2180,10 +2416,6 @@ msgid ""
|
|
2180 |
"plugin as a whole.</p>\r\n"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: modules/settings/settings.php:29 modules/settings/global-settings.php:18
|
2184 |
-
msgid "Global Settings"
|
2185 |
-
msgstr ""
|
2186 |
-
|
2187 |
#: modules/settings/settings.php:30
|
2188 |
msgid ""
|
2189 |
"\r\n"
|
@@ -2223,302 +2455,165 @@ msgid ""
|
|
2223 |
"</ul>\r\n"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: modules/settings/
|
2227 |
-
msgid "
|
2228 |
-
msgstr ""
|
2229 |
-
|
2230 |
-
#: modules/settings/global-settings.php:41
|
2231 |
-
msgid "Enable attribution link CSS styling"
|
2232 |
-
msgstr ""
|
2233 |
-
|
2234 |
-
#: modules/settings/global-settings.php:42
|
2235 |
-
msgid "Notify me about unnecessary active plugins"
|
2236 |
-
msgstr ""
|
2237 |
-
|
2238 |
-
#: modules/settings/global-settings.php:43
|
2239 |
-
msgid "Insert comments around HTML code insertions"
|
2240 |
-
msgstr ""
|
2241 |
-
|
2242 |
-
#: modules/404s/fofs-settings.php:16
|
2243 |
-
msgid "404 Monitor Settings"
|
2244 |
-
msgstr ""
|
2245 |
-
|
2246 |
-
#: modules/404s/fofs-settings.php:37
|
2247 |
-
msgid "Continue monitoring for new 404 errors"
|
2248 |
-
msgstr ""
|
2249 |
-
|
2250 |
-
#: modules/404s/fofs-settings.php:37
|
2251 |
-
msgid "Monitoring Settings"
|
2252 |
-
msgstr ""
|
2253 |
-
|
2254 |
-
#: modules/404s/fofs-settings.php:39
|
2255 |
-
msgid "Only log these types of 404 errors:"
|
2256 |
-
msgstr ""
|
2257 |
-
|
2258 |
-
#: modules/404s/fofs-settings.php:40
|
2259 |
-
msgid "404s generated by search engine spiders"
|
2260 |
-
msgstr ""
|
2261 |
-
|
2262 |
-
#: modules/404s/fofs-settings.php:41
|
2263 |
-
msgid "404s with referring URLs"
|
2264 |
-
msgstr ""
|
2265 |
-
|
2266 |
-
#: modules/404s/fofs-settings.php:42
|
2267 |
-
msgid "Log Restrictions"
|
2268 |
-
msgstr ""
|
2269 |
-
|
2270 |
-
#: modules/404s/fofs-settings.php:43
|
2271 |
-
msgid "Maximum Log Entries"
|
2272 |
-
msgstr ""
|
2273 |
-
|
2274 |
-
#: modules/404s/fofs-settings.php:44
|
2275 |
-
msgid "URLs to Ignore"
|
2276 |
-
msgstr ""
|
2277 |
-
|
2278 |
-
#: modules/404s/fofs-settings.php:44
|
2279 |
-
msgid "(Use * as wildcard)"
|
2280 |
-
msgstr ""
|
2281 |
-
|
2282 |
-
#: modules/404s/fofs.php:11
|
2283 |
-
msgid "404 Monitor"
|
2284 |
-
msgstr ""
|
2285 |
-
|
2286 |
-
#: modules/404s/fofs.php:20
|
2287 |
-
msgid ""
|
2288 |
-
"\r\n"
|
2289 |
-
"<ul>\r\n"
|
2290 |
-
"\t<li><strong>What it does:</strong> The 404 Monitor keeps track of non-"
|
2291 |
-
"existent URLs that generated 404 errors. 404 errors are when a search engine "
|
2292 |
-
"or visitor comes to a URL on your site but nothing exists at that URL.</li>"
|
2293 |
-
"\r\n"
|
2294 |
-
"\t<li><strong>Why it helps:</strong> The 404 Monitor helps you spot 404 "
|
2295 |
-
"errors; then you can take steps to correct them to reduce link-juice loss "
|
2296 |
-
"from broken links.</li>\r\n"
|
2297 |
-
"\t<li><strong>How to use it:</strong> Check the 404 Monitor occasionally for "
|
2298 |
-
"errors. (A numeric bubble will appear next to the “404 Monitor” "
|
2299 |
-
"item on the menu if there are any newly-logged URLs that you haven't seen "
|
2300 |
-
"yet. These new URLs will also be highlighted green in the table.) If a 404 "
|
2301 |
-
"error's referring URL is located on your site, try locating and fixing the "
|
2302 |
-
"broken URL. If moved content was previously located at the requested URL, "
|
2303 |
-
"try using a redirection plugin to point the old URL to the new one.</li>\r\n"
|
2304 |
-
"</ul>\r\n"
|
2305 |
-
"\r\n"
|
2306 |
-
"<p>If there are no 404 errors in the log, this is good and means there's no "
|
2307 |
-
"action required on your part.</p>\r\n"
|
2308 |
-
msgstr ""
|
2309 |
-
|
2310 |
-
#: modules/404s/fofs.php:32
|
2311 |
-
msgid "Log Help"
|
2312 |
-
msgstr ""
|
2313 |
-
|
2314 |
-
#: modules/404s/fofs.php:33
|
2315 |
-
msgid ""
|
2316 |
-
"\r\n"
|
2317 |
-
"<p>You can perform the following actions on each entry in the log:</p>\r\n"
|
2318 |
-
"\r\n"
|
2319 |
-
"<ul>\r\n"
|
2320 |
-
"\t<li>The “View” button will open the URL in a new window. This "
|
2321 |
-
"is useful for testing whether or not a redirect is working.</li>\r\n"
|
2322 |
-
"\t<li>The “Google Cache” button will open Google's archived "
|
2323 |
-
"version of the URL in a new window. This is useful for determining what "
|
2324 |
-
"content, if any, used to be located at that URL.</li>\r\n"
|
2325 |
-
"\t<li>Once you've taken care of a 404 error, you can click the “"
|
2326 |
-
"Remove” button to remove it from the list. The URL will reappear on "
|
2327 |
-
"the list if it triggers a 404 error in the future.</li>\r\n"
|
2328 |
-
"</ul>\r\n"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: modules/
|
2332 |
-
msgid ""
|
2333 |
-
"\r\n"
|
2334 |
-
"<p>The following options are available on the Settings tab:</p>\r\n"
|
2335 |
-
"\r\n"
|
2336 |
-
"<ul>\r\n"
|
2337 |
-
"\t<li>\r\n"
|
2338 |
-
"\t\t<strong>Monitoring Settings</strong>\r\n"
|
2339 |
-
"\t\t<ul>\r\n"
|
2340 |
-
"\t\t\t<li><strong>Continue monitoring for new 404 errors</strong> — If "
|
2341 |
-
"disabled, 404 Monitor will keep existing 404 errors in the log but won't add "
|
2342 |
-
"any new ones.</li>\r\n"
|
2343 |
-
"\t\t</ul>\r\n"
|
2344 |
-
"\t</li>\r\n"
|
2345 |
-
"\t<li>\r\n"
|
2346 |
-
"\t\t<strong>Log Restrictions</strong>\r\n"
|
2347 |
-
"\t\t<ul>\r\n"
|
2348 |
-
"\t\t\t<li><strong>Only log these types of 404 errors</strong> — Check "
|
2349 |
-
"this option to log a 404 error <em>only</em> if it meets at least one of the "
|
2350 |
-
"criteria you specify. If you don't enable any criteria, no 404 errors will "
|
2351 |
-
"be logged.\r\n"
|
2352 |
-
"\t\t\t\t<ul>\r\n"
|
2353 |
-
"\t\t\t\t\t<li><strong>404s generated by search engine spiders</strong> "
|
2354 |
-
"— When logging restriction is enabled, this option will make an "
|
2355 |
-
"exception for 404 errors generated by one of the top search engines (Google, "
|
2356 |
-
"Yahoo, Baidu, Bing, Yandex, Soso, Ask.com, Sogou, or AltaVista).</li>\r\n"
|
2357 |
-
"\t\t\t\t\t<li><strong>404s with referring URLs</strong> — When logging "
|
2358 |
-
"restriction is enabled, this option will make an exception for 404 errors "
|
2359 |
-
"generated by users who click a link on your site or another site first "
|
2360 |
-
"before ending up at a 404 page on your site.</li>\r\n"
|
2361 |
-
"\t\t\t\t</ul>\r\n"
|
2362 |
-
"\t\t\t</li>\r\n"
|
2363 |
-
"\t\t</ul>\r\n"
|
2364 |
-
"\t</li>\r\n"
|
2365 |
-
"\t<li><strong>Maximum Log Entries</strong> — Here you can set the "
|
2366 |
-
"maximum number of log entries that 404 Monitor will keep at a time. Setting "
|
2367 |
-
"this to a reasonable number will help keep database usage under control. If "
|
2368 |
-
"you change this setting, it will take effect the next time a 404 is logged.</"
|
2369 |
-
"li>\r\n"
|
2370 |
-
"\t<li><strong>URLs to Ignore</strong> — URLs entered here will be "
|
2371 |
-
"ignored whenever they generate 404 errors in the future. You can use "
|
2372 |
-
"asterisks (*) as wildcards.</li>\r\n"
|
2373 |
-
"</ul>\r\n"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: modules/
|
2377 |
msgid ""
|
2378 |
-
"
|
2379 |
-
"
|
2380 |
-
"p>\r\n"
|
2381 |
-
"\r\n"
|
2382 |
-
"<ul>\r\n"
|
2383 |
-
"\t<li>The 404 Monitor doesn't record 404 errors generated by logged-in users."
|
2384 |
-
"</li>\r\n"
|
2385 |
-
"\t<li>In order for the 404 Monitor to track 404 errors, you must have non-"
|
2386 |
-
"default permalinks enabled under <a href='options-permalink.php' "
|
2387 |
-
"target='_blank'>Settings ⇒ Permalinks</a>.</li>\r\n"
|
2388 |
-
"\t<li>Some parts of your website may not be under WordPress's control; the "
|
2389 |
-
"404 Monitor can't track 404 errors on non-WordPress website areas.</li>\r\n"
|
2390 |
-
"</ul>\r\n"
|
2391 |
-
msgstr ""
|
2392 |
-
|
2393 |
-
#: modules/404s/fofs-log.php:16
|
2394 |
-
msgid "404 Monitor Log"
|
2395 |
-
msgstr ""
|
2396 |
-
|
2397 |
-
#: modules/404s/fofs-log.php:17
|
2398 |
-
msgid "Log"
|
2399 |
-
msgstr ""
|
2400 |
-
|
2401 |
-
#: modules/404s/fofs-log.php:114
|
2402 |
-
msgid "Hits"
|
2403 |
-
msgstr ""
|
2404 |
-
|
2405 |
-
#: modules/404s/fofs-log.php:115
|
2406 |
-
msgid "URL with 404 Error"
|
2407 |
-
msgstr ""
|
2408 |
-
|
2409 |
-
#: modules/404s/fofs-log.php:116
|
2410 |
-
msgid "Date of Most Recent Hit"
|
2411 |
-
msgstr ""
|
2412 |
-
|
2413 |
-
#: modules/404s/fofs-log.php:117
|
2414 |
-
msgid "Referers"
|
2415 |
-
msgstr ""
|
2416 |
-
|
2417 |
-
#: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
|
2418 |
-
msgid "User Agents"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#: modules/
|
2422 |
msgid ""
|
2423 |
-
"
|
2424 |
-
"
|
2425 |
-
msgstr ""
|
2426 |
-
|
2427 |
-
#: modules/404s/fofs-log.php:141
|
2428 |
-
msgid "The log entry was successfully deleted."
|
2429 |
-
msgstr ""
|
2430 |
-
|
2431 |
-
#: modules/404s/fofs-log.php:143
|
2432 |
-
msgid "This log entry has already been deleted."
|
2433 |
-
msgstr ""
|
2434 |
-
|
2435 |
-
#: modules/404s/fofs-log.php:152
|
2436 |
-
msgid "The log was successfully cleared."
|
2437 |
-
msgstr ""
|
2438 |
-
|
2439 |
-
#: modules/404s/fofs-log.php:156
|
2440 |
-
msgid "No 404 errors in the log."
|
2441 |
-
msgstr ""
|
2442 |
-
|
2443 |
-
#: modules/404s/fofs-log.php:180
|
2444 |
-
msgid "Open URL in new window (will not be logged)"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: modules/
|
2448 |
-
msgid "
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: modules/
|
2452 |
-
msgid "
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: modules/
|
2456 |
-
msgid "
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: modules/
|
2460 |
-
msgid "
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: modules/
|
2464 |
-
msgid "
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: modules/
|
2468 |
-
msgid "
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: modules/
|
2472 |
-
|
|
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: modules/
|
2476 |
-
msgid "
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: modules/
|
2480 |
-
msgid "
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#: modules/
|
2484 |
-
msgid "
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: modules/
|
2488 |
-
msgid ""
|
2489 |
-
"To use the Permalinks Tweaker, you must disable default (query-string) "
|
2490 |
-
"permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#: modules/
|
2494 |
-
msgid "
|
2495 |
msgstr ""
|
2496 |
|
2497 |
-
#: modules/
|
2498 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2499 |
msgstr ""
|
2500 |
|
2501 |
-
#: modules/
|
2502 |
-
msgid "
|
2503 |
msgstr ""
|
2504 |
|
2505 |
-
#: modules/
|
2506 |
-
msgid "
|
2507 |
msgstr ""
|
2508 |
|
2509 |
-
#: modules/
|
2510 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2511 |
msgstr ""
|
2512 |
|
2513 |
-
#: modules/
|
2514 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#: modules/
|
2518 |
msgid ""
|
2519 |
-
"
|
2520 |
-
"
|
2521 |
-
"the
|
|
|
|
|
|
|
|
|
|
|
2522 |
msgstr ""
|
2523 |
|
2524 |
#: modules/titles/titles.php:12
|
@@ -2846,44 +2941,160 @@ msgid ""
|
|
2846 |
"</ul>\r\n"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
-
#: modules/titles/titles.php:443
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2850 |
msgid ""
|
2851 |
-
"
|
2852 |
-
"
|
2853 |
-
"
|
2854 |
-
"strong><br />No. The Title Tag Rewriter edits the <code><title></code> "
|
2855 |
-
"tags of your site, not your post/page titles.</li>\r\n"
|
2856 |
-
"\t<li><strong>Will rewriting the title tags of my posts change their "
|
2857 |
-
"permalinks/URLs?</strong><br />No.</li>\r\n"
|
2858 |
-
"\t<li><strong>What’s the difference between the “title” "
|
2859 |
-
"and the “title tag” of a post/page?</strong><br />The “"
|
2860 |
-
"title” is the title of your post or page that’s used in your "
|
2861 |
-
"site’s theme, in your site’s admin, in your site’s RSS "
|
2862 |
-
"feeds, and in your site’s <code><title></code> tags. A <code><"
|
2863 |
-
"title></code> tag is the title of a specific webpage, and it appears in "
|
2864 |
-
"your browser’s title bar and in search result listings. Title Tag "
|
2865 |
-
"Rewriter lets you edit your post’s <code><title></code> tags "
|
2866 |
-
"without editing their actual titles. This means you can edit a post’s "
|
2867 |
-
"title as it appears in search results, but not as it appears on your site.</"
|
2868 |
-
"li>\r\n"
|
2869 |
-
"</ul>\r\n"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
-
#: modules/
|
2873 |
-
msgid ""
|
2874 |
-
"
|
2875 |
-
|
2876 |
-
|
2877 |
-
"
|
2878 |
-
|
2879 |
-
|
2880 |
-
|
2881 |
-
"target
|
2882 |
-
"filtering” rewrite method, check your theme’s <code>header.php</"
|
2883 |
-
"code> file and make sure the <code><title></code> tag looks like this: "
|
2884 |
-
"<code><title><?php wp_title(''); ?></title></code>.</li>"
|
2885 |
-
"\r\n"
|
2886 |
-
"</ul>\r\n"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
#: modules/wp-settings/wp-settings.php:14
|
@@ -2963,212 +3174,6 @@ msgstr ""
|
|
2963 |
msgid "Go to setting »"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: modules/files/files.php:14
|
2967 |
-
msgid "File Editor"
|
2968 |
-
msgstr ""
|
2969 |
-
|
2970 |
-
#: modules/files/files.php:53
|
2971 |
-
msgid ""
|
2972 |
-
"A .htaccess file exists, but it’s not writable. You can edit it here "
|
2973 |
-
"once the file permissions are corrected."
|
2974 |
-
msgstr ""
|
2975 |
-
|
2976 |
-
#: modules/files/files.php:59
|
2977 |
-
msgid ""
|
2978 |
-
"WordPress won’t be able to display your robots.txt file because the "
|
2979 |
-
"default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
|
2980 |
-
"structure</a> is in use."
|
2981 |
-
msgstr ""
|
2982 |
-
|
2983 |
-
#: modules/files/files.php:66
|
2984 |
-
msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
|
2985 |
-
msgstr ""
|
2986 |
-
|
2987 |
-
#: modules/files/files.php:70
|
2988 |
-
msgid "Enable this custom robots.txt file and disable the default file"
|
2989 |
-
msgstr ""
|
2990 |
-
|
2991 |
-
#: modules/files/files.php:71
|
2992 |
-
msgid "Let other plugins add rules to my custom robots.txt file"
|
2993 |
-
msgstr ""
|
2994 |
-
|
2995 |
-
#: modules/files/files.php:72
|
2996 |
-
msgid "robots.txt Settings"
|
2997 |
-
msgstr ""
|
2998 |
-
|
2999 |
-
#: modules/files/files.php:75
|
3000 |
-
msgid ""
|
3001 |
-
"Please realize that incorrectly editing your robots.txt file could block "
|
3002 |
-
"search engines from your site."
|
3003 |
-
msgstr ""
|
3004 |
-
|
3005 |
-
#: modules/files/files.php:79
|
3006 |
-
msgid ".htaccess"
|
3007 |
-
msgstr ""
|
3008 |
-
|
3009 |
-
#: modules/files/files.php:82
|
3010 |
-
msgid ""
|
3011 |
-
"Also, incorrectly editing your .htaccess file could disable your entire "
|
3012 |
-
"website. Edit with caution!"
|
3013 |
-
msgstr ""
|
3014 |
-
|
3015 |
-
#: modules/files/files.php:134
|
3016 |
-
msgid ""
|
3017 |
-
"Please note that your privacy settings won’t have any effect on your "
|
3018 |
-
"robots.txt file, since you’re using <a href=\"%s\">a custom one</a>."
|
3019 |
-
msgstr ""
|
3020 |
-
|
3021 |
-
#: modules/files/files.php:145
|
3022 |
-
msgid ""
|
3023 |
-
"\r\n"
|
3024 |
-
"<ul>\r\n"
|
3025 |
-
"\t<li><strong>What it does:</strong> The File Editor module lets you edit "
|
3026 |
-
"two important SEO-related files: robots.txt and .htaccess.</li>\r\n"
|
3027 |
-
"\t<li><strong>Why it helps:</strong> You can use the <a href='http://www."
|
3028 |
-
"robotstxt.org/robotstxt.html' target='_blank'>robots.txt file</a> to give "
|
3029 |
-
"instructions to search engine spiders. You can use the <a href='http://httpd."
|
3030 |
-
"apache.org/docs/2.2/howto/htaccess.html' target='_blank'>.htaccess file</a> "
|
3031 |
-
"to implement advanced SEO strategies (URL rewriting, regex redirects, etc.). "
|
3032 |
-
"SEO Ultimate makes editing these files easier than ever.</li>\r\n"
|
3033 |
-
"\t<li><strong>How to use it:</strong> Edit the files as desired, then click "
|
3034 |
-
"Save Changes. If you create a custom robots.txt file, be sure to enable it "
|
3035 |
-
"with the checkbox.</li>\r\n"
|
3036 |
-
"</ul>\r\n"
|
3037 |
-
msgstr ""
|
3038 |
-
|
3039 |
-
#: modules/files/files.php:156
|
3040 |
-
msgid ""
|
3041 |
-
"\r\n"
|
3042 |
-
"<ul>\r\n"
|
3043 |
-
"\t<li><strong>Will my robots.txt edits remain if I disable the File Editor?</"
|
3044 |
-
"strong><br />No. On a WordPress blog, the robots.txt file is dynamically "
|
3045 |
-
"generated just like your posts and Pages. If you disable the File Editor "
|
3046 |
-
"module or the entire SEO Ultimate plugin, the File Editor won’t be "
|
3047 |
-
"able to insert your custom code into the robots.txt file anymore.</li>\r\n"
|
3048 |
-
"\t<li><strong>Will my .htaccess edits remain if I disable the File Editor?</"
|
3049 |
-
"strong><br />Yes. The .htaccess file is static. Your edits will remain even "
|
3050 |
-
"if you disable SEO Ultimate or its File Editor module.</li>\r\n"
|
3051 |
-
"</ul>\r\n"
|
3052 |
-
msgstr ""
|
3053 |
-
|
3054 |
-
#: modules/files/files.php:166
|
3055 |
-
msgid ""
|
3056 |
-
"\r\n"
|
3057 |
-
"<ul>\r\n"
|
3058 |
-
"\t<li><strong>Why do I get a “500 Server Error” after using the "
|
3059 |
-
"File Editor?</strong><br />You may have inserted code into your .htaccess "
|
3060 |
-
"file that your web server can't understand. As the File Editor warns, "
|
3061 |
-
"incorrectly editing your .htaccess file can disable your entire website in "
|
3062 |
-
"this way. To restore your site, you'll need to use an FTP client (or your "
|
3063 |
-
"web host's File Manager) to edit or rename your .htaccess file. If you need "
|
3064 |
-
"help, please contact your web host.</li>\r\n"
|
3065 |
-
"\t<li><strong>Where did my .htaccess edits go?</strong><br />The .htaccess "
|
3066 |
-
"file is static, so SEO Ultimate doesn't have total control over it. It’"
|
3067 |
-
"s possible that WordPress, another plugin, or other software may overwrite "
|
3068 |
-
"your .htaccess file. If you have a backup of your blog’s files, you "
|
3069 |
-
"can try recovering your edits from there.</li>\r\n"
|
3070 |
-
"</ul>\r\n"
|
3071 |
-
msgstr ""
|
3072 |
-
|
3073 |
-
#: modules/canonical/canonical.php:12 modules/canonical/canonical.php:201
|
3074 |
-
msgid "Canonicalizer"
|
3075 |
-
msgstr ""
|
3076 |
-
|
3077 |
-
#: modules/canonical/canonical.php:39
|
3078 |
-
msgid ""
|
3079 |
-
"Generate <code><link rel="canonical" /></code> meta tags."
|
3080 |
-
msgstr ""
|
3081 |
-
|
3082 |
-
#: modules/canonical/canonical.php:40
|
3083 |
-
msgid "Send <code>rel="canonical"</code> HTTP headers."
|
3084 |
-
msgstr ""
|
3085 |
-
|
3086 |
-
#: modules/canonical/canonical.php:41
|
3087 |
-
msgid "Redirect requests for nonexistent pagination."
|
3088 |
-
msgstr ""
|
3089 |
-
|
3090 |
-
#: modules/canonical/canonical.php:202
|
3091 |
-
msgid ""
|
3092 |
-
"\r\n"
|
3093 |
-
"<ul>\r\n"
|
3094 |
-
"\t<li>\r\n"
|
3095 |
-
"\t\t<p><strong>What it does:</strong> Canonicalizer improves on two "
|
3096 |
-
"WordPress features to minimize possible exact-content duplication penalties. "
|
3097 |
-
"The <code><link rel="canonical" /></code> tags setting "
|
3098 |
-
"improves on the canonical tags feature of WordPress 2.9 and above by "
|
3099 |
-
"encompassing much more of your site than just your posts and Pages.</p>\r\n"
|
3100 |
-
"\t\t<p>The nonexistent pagination redirect feature fills a gap in "
|
3101 |
-
"WordPress's built-in canonicalization functionality: for example, if a URL "
|
3102 |
-
"request is made for page 6 of a category archive, and that category doesn't "
|
3103 |
-
"have a page 6, then by default, depending on the context, WordPress will "
|
3104 |
-
"display a blank page, or it will display the content of the closest page "
|
3105 |
-
"number available, without issuing a 404 error or a 301 redirect (thus "
|
3106 |
-
"creating two or more identical webpages). This duplicate-content situation "
|
3107 |
-
"can happen when you, for example, remove many posts from a category, thus "
|
3108 |
-
"reducing the amount of pagination needed in the category's archive. The "
|
3109 |
-
"Canonicalizer's feature fixes that behavior by issuing 301 redirects to page "
|
3110 |
-
"1 of the paginated section in question.</p>\r\n"
|
3111 |
-
"\t</li>\r\n"
|
3112 |
-
"\t<li><strong>Why it helps:</strong> These features will point Google to the "
|
3113 |
-
"correct URL for your homepage and each of your posts, Pages, categories, "
|
3114 |
-
"tags, date archives, and author archives. That way, if Google comes across "
|
3115 |
-
"an alternate URL by which one of those items can be accessed, it will be "
|
3116 |
-
"able to find the correct URL and won't penalize you for having two identical "
|
3117 |
-
"pages on your site.</li>\r\n"
|
3118 |
-
"\t<li><strong>How to use it:</strong> Just check all three checkboxes and "
|
3119 |
-
"click Save Changes. SEO Ultimate will do the rest.</li>\r\n"
|
3120 |
-
"</ul>\r\n"
|
3121 |
-
msgstr ""
|
3122 |
-
|
3123 |
-
#: includes/jlwp/functions.php:65
|
3124 |
-
msgid "Posts"
|
3125 |
-
msgstr ""
|
3126 |
-
|
3127 |
-
#: includes/jlwp/functions.php:65
|
3128 |
-
msgid "Post"
|
3129 |
-
msgstr ""
|
3130 |
-
|
3131 |
-
#: includes/jlwp/functions.php:66
|
3132 |
-
msgid "Pages"
|
3133 |
-
msgstr ""
|
3134 |
-
|
3135 |
-
#: includes/jlwp/functions.php:66
|
3136 |
-
msgid "Page"
|
3137 |
-
msgstr ""
|
3138 |
-
|
3139 |
-
#: includes/jlwp/functions.php:67
|
3140 |
-
msgid "Attachments"
|
3141 |
-
msgstr ""
|
3142 |
-
|
3143 |
-
#: includes/jlwp/functions.php:67
|
3144 |
-
msgid "Attachment"
|
3145 |
-
msgstr ""
|
3146 |
-
|
3147 |
-
#: includes/jlwp/functions.php:96
|
3148 |
-
msgctxt "post format"
|
3149 |
-
msgid "Format"
|
3150 |
-
msgstr ""
|
3151 |
-
|
3152 |
-
#: includes/jlwp/functions.php:97
|
3153 |
-
msgid "Post Format Archives"
|
3154 |
-
msgstr ""
|
3155 |
-
|
3156 |
-
#: includes/jlwp/functions.php:165
|
3157 |
-
msgid "backup your database"
|
3158 |
-
msgstr ""
|
3159 |
-
|
3160 |
-
#: includes/jlfunctions/str.php:105 plugin/su-functions.php:77
|
3161 |
-
msgid "%s and %s"
|
3162 |
-
msgstr ""
|
3163 |
-
|
3164 |
-
#: includes/jlfunctions/str.php:108 plugin/su-functions.php:80
|
3165 |
-
msgid ", "
|
3166 |
-
msgstr ""
|
3167 |
-
|
3168 |
-
#: includes/jlfunctions/str.php:109 plugin/su-functions.php:81
|
3169 |
-
msgid "%s, and %s"
|
3170 |
-
msgstr ""
|
3171 |
-
|
3172 |
#: plugin/class.seo-ultimate.php:791
|
3173 |
msgid "SEO"
|
3174 |
msgstr ""
|
@@ -3193,8 +3198,8 @@ msgstr ""
|
|
3193 |
|
3194 |
#: plugin/class.seo-ultimate.php:1133
|
3195 |
msgid ""
|
3196 |
-
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate
|
3197 |
-
"1$s to avoid plugin conflicts."
|
3198 |
msgstr ""
|
3199 |
|
3200 |
#: plugin/class.seo-ultimate.php:1177
|
1 |
+
# Copyright (C) 2012 SEO Ultimate
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: SEO Ultimate 7.2.2\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2012-06-15 20:51:29+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2012-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: includes/jlfunctions/str.php:105 plugin/su-functions.php:77
|
16 |
+
msgid "%s and %s"
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: includes/jlfunctions/str.php:108 plugin/su-functions.php:80
|
20 |
+
msgid ", "
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: includes/jlfunctions/str.php:109 plugin/su-functions.php:81
|
24 |
+
msgid "%s, and %s"
|
|
|
|
|
|
|
|
|
|
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: includes/jlwp/functions.php:65
|
28 |
+
msgid "Posts"
|
|
|
|
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: includes/jlwp/functions.php:65
|
32 |
+
msgid "Post"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: includes/jlwp/functions.php:66
|
36 |
+
msgid "Pages"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: includes/jlwp/functions.php:66
|
40 |
+
msgid "Page"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: includes/jlwp/functions.php:67
|
44 |
+
msgid "Attachments"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: includes/jlwp/functions.php:67
|
48 |
+
msgid "Attachment"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: includes/jlwp/functions.php:96
|
52 |
+
msgctxt "post format"
|
53 |
+
msgid "Format"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: includes/jlwp/functions.php:97
|
57 |
+
msgid "Post Format Archives"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: includes/jlwp/functions.php:165
|
61 |
+
msgid "backup your database"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: modules/404s/fofs-log.php:16
|
65 |
+
msgid "404 Monitor Log"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: modules/404s/fofs-log.php:17
|
69 |
+
msgid "Log"
|
|
|
|
|
|
|
|
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: modules/404s/fofs-log.php:113 modules/class.su-module.php:1157
|
73 |
+
msgid "Actions"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: modules/404s/fofs-log.php:114
|
77 |
+
msgid "Hits"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: modules/404s/fofs-log.php:115
|
81 |
+
msgid "URL with 404 Error"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: modules/404s/fofs-log.php:116
|
85 |
+
msgid "Date of Most Recent Hit"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: modules/404s/fofs-log.php:117
|
89 |
+
msgid "Referers"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
|
93 |
+
msgid "User Agents"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: modules/404s/fofs-log.php:134
|
97 |
+
msgid ""
|
98 |
+
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
99 |
+
"Settings tab."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: modules/404s/fofs-log.php:141
|
103 |
+
msgid "The log entry was successfully deleted."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: modules/404s/fofs-log.php:143
|
107 |
+
msgid "This log entry has already been deleted."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: modules/404s/fofs-log.php:152
|
111 |
+
msgid "The log was successfully cleared."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: modules/404s/fofs-log.php:156
|
115 |
+
msgid "No 404 errors in the log."
|
|
|
|
|
|
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: modules/404s/fofs-log.php:180
|
119 |
+
msgid "Open URL in new window (will not be logged)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: modules/404s/fofs-log.php:181
|
123 |
+
msgid "Query Google for cached version of URL (opens in new window)"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: modules/404s/fofs-log.php:182
|
127 |
+
msgid "Remove this URL from the log"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: modules/404s/fofs-log.php:185
|
131 |
+
msgid "%s at %s"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: modules/404s/fofs-log.php:189
|
135 |
+
msgid "View list of referring URLs"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: modules/404s/fofs-log.php:190
|
139 |
+
msgid "View list of user agents"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: modules/404s/fofs-log.php:200
|
143 |
+
msgid "Referring URLs"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
|
147 |
+
msgid "Hide list"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: modules/404s/fofs-log.php:252
|
151 |
+
msgid "Are you sure you want to delete all 404 log entries?"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: modules/404s/fofs-log.php:254
|
155 |
+
msgid "Clear Log"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: modules/404s/fofs-settings.php:16
|
159 |
+
msgid "404 Monitor Settings"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: modules/404s/fofs-settings.php:17
|
163 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:31
|
164 |
+
#: modules/titles/titles.php:34
|
165 |
+
msgid "Settings"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: modules/404s/fofs-settings.php:37
|
169 |
+
msgid "Continue monitoring for new 404 errors"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: modules/404s/fofs-settings.php:37
|
173 |
+
msgid "Monitoring Settings"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: modules/404s/fofs-settings.php:39
|
177 |
+
msgid "Only log these types of 404 errors:"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: modules/404s/fofs-settings.php:40
|
181 |
+
msgid "404s generated by search engine spiders"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: modules/404s/fofs-settings.php:41
|
185 |
+
msgid "404s with referring URLs"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: modules/404s/fofs-settings.php:42
|
189 |
+
msgid "Log Restrictions"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: modules/404s/fofs-settings.php:43
|
193 |
+
msgid "Maximum Log Entries"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: modules/404s/fofs-settings.php:44
|
197 |
+
msgid "URLs to Ignore"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: modules/404s/fofs-settings.php:44
|
201 |
+
msgid "(Use * as wildcard)"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: modules/404s/fofs.php:11
|
205 |
+
msgid "404 Monitor"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: modules/404s/fofs.php:19 modules/canonical/canonical.php:201
|
209 |
+
#: modules/files/files.php:144 modules/link-nofollow/link-nofollow.php:130
|
210 |
+
#: modules/linkbox/linkbox.php:91 modules/meta/meta-descriptions.php:174
|
211 |
+
#: modules/meta/meta-keywords.php:166 modules/meta/meta-robots.php:53
|
212 |
+
#: modules/meta/webmaster-verify.php:58 modules/more-links/more-links.php:104
|
213 |
+
#: modules/more-links/more-links.php:111
|
214 |
+
#: modules/rich-snippets/rich-snippets.php:258
|
215 |
+
#: modules/settings/settings.php:22
|
216 |
+
#: modules/sharing-buttons/sharing-buttons.php:72 modules/slugs/slugs.php:76
|
217 |
+
#: modules/titles/titles.php:341 modules/user-code/user-code.php:70
|
218 |
+
msgid "Overview"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: modules/404s/fofs.php:20
|
222 |
msgid ""
|
223 |
"\r\n"
|
224 |
+
"<ul>\r\n"
|
225 |
+
"\t<li><strong>What it does:</strong> The 404 Monitor keeps track of non-"
|
226 |
+
"existent URLs that generated 404 errors. 404 errors are when a search engine "
|
227 |
+
"or visitor comes to a URL on your site but nothing exists at that URL.</li>"
|
228 |
+
"\r\n"
|
229 |
+
"\t<li><strong>Why it helps:</strong> The 404 Monitor helps you spot 404 "
|
230 |
+
"errors; then you can take steps to correct them to reduce link-juice loss "
|
231 |
+
"from broken links.</li>\r\n"
|
232 |
+
"\t<li><strong>How to use it:</strong> Check the 404 Monitor occasionally for "
|
233 |
+
"errors. (A numeric bubble will appear next to the “404 Monitor” "
|
234 |
+
"item on the menu if there are any newly-logged URLs that you haven't seen "
|
235 |
+
"yet. These new URLs will also be highlighted green in the table.) If a 404 "
|
236 |
+
"error's referring URL is located on your site, try locating and fixing the "
|
237 |
+
"broken URL. If moved content was previously located at the requested URL, "
|
238 |
+
"try using a redirection plugin to point the old URL to the new one.</li>\r\n"
|
239 |
+
"</ul>\r\n"
|
240 |
+
"\r\n"
|
241 |
+
"<p>If there are no 404 errors in the log, this is good and means there's no "
|
242 |
+
"action required on your part.</p>\r\n"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: modules/404s/fofs.php:32
|
246 |
+
msgid "Log Help"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: modules/404s/fofs.php:33
|
250 |
+
msgid ""
|
251 |
+
"\r\n"
|
252 |
+
"<p>You can perform the following actions on each entry in the log:</p>\r\n"
|
253 |
+
"\r\n"
|
254 |
+
"<ul>\r\n"
|
255 |
+
"\t<li>The “View” button will open the URL in a new window. This "
|
256 |
+
"is useful for testing whether or not a redirect is working.</li>\r\n"
|
257 |
+
"\t<li>The “Google Cache” button will open Google's archived "
|
258 |
+
"version of the URL in a new window. This is useful for determining what "
|
259 |
+
"content, if any, used to be located at that URL.</li>\r\n"
|
260 |
+
"\t<li>Once you've taken care of a 404 error, you can click the “"
|
261 |
+
"Remove” button to remove it from the list. The URL will reappear on "
|
262 |
+
"the list if it triggers a 404 error in the future.</li>\r\n"
|
263 |
+
"</ul>\r\n"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: modules/404s/fofs.php:45 modules/linkbox/linkbox.php:102
|
267 |
+
#: modules/meta/meta-descriptions.php:185 modules/meta/meta-keywords.php:173
|
268 |
+
#: modules/meta/meta-robots.php:64 modules/rich-snippets/rich-snippets.php:269
|
269 |
+
#: modules/titles/titles.php:415
|
270 |
+
msgid "Settings Help"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: modules/404s/fofs.php:46
|
274 |
+
msgid ""
|
275 |
+
"\r\n"
|
276 |
+
"<p>The following options are available on the Settings tab:</p>\r\n"
|
277 |
+
"\r\n"
|
278 |
+
"<ul>\r\n"
|
279 |
+
"\t<li>\r\n"
|
280 |
+
"\t\t<strong>Monitoring Settings</strong>\r\n"
|
281 |
+
"\t\t<ul>\r\n"
|
282 |
+
"\t\t\t<li><strong>Continue monitoring for new 404 errors</strong> — If "
|
283 |
+
"disabled, 404 Monitor will keep existing 404 errors in the log but won't add "
|
284 |
+
"any new ones.</li>\r\n"
|
285 |
+
"\t\t</ul>\r\n"
|
286 |
+
"\t</li>\r\n"
|
287 |
+
"\t<li>\r\n"
|
288 |
+
"\t\t<strong>Log Restrictions</strong>\r\n"
|
289 |
+
"\t\t<ul>\r\n"
|
290 |
+
"\t\t\t<li><strong>Only log these types of 404 errors</strong> — Check "
|
291 |
+
"this option to log a 404 error <em>only</em> if it meets at least one of the "
|
292 |
+
"criteria you specify. If you don't enable any criteria, no 404 errors will "
|
293 |
+
"be logged.\r\n"
|
294 |
+
"\t\t\t\t<ul>\r\n"
|
295 |
+
"\t\t\t\t\t<li><strong>404s generated by search engine spiders</strong> "
|
296 |
+
"— When logging restriction is enabled, this option will make an "
|
297 |
+
"exception for 404 errors generated by one of the top search engines (Google, "
|
298 |
+
"Yahoo, Baidu, Bing, Yandex, Soso, Ask.com, Sogou, or AltaVista).</li>\r\n"
|
299 |
+
"\t\t\t\t\t<li><strong>404s with referring URLs</strong> — When logging "
|
300 |
+
"restriction is enabled, this option will make an exception for 404 errors "
|
301 |
+
"generated by users who click a link on your site or another site first "
|
302 |
+
"before ending up at a 404 page on your site.</li>\r\n"
|
303 |
+
"\t\t\t\t</ul>\r\n"
|
304 |
+
"\t\t\t</li>\r\n"
|
305 |
+
"\t\t</ul>\r\n"
|
306 |
+
"\t</li>\r\n"
|
307 |
+
"\t<li><strong>Maximum Log Entries</strong> — Here you can set the "
|
308 |
+
"maximum number of log entries that 404 Monitor will keep at a time. Setting "
|
309 |
+
"this to a reasonable number will help keep database usage under control. If "
|
310 |
+
"you change this setting, it will take effect the next time a 404 is logged.</"
|
311 |
+
"li>\r\n"
|
312 |
+
"\t<li><strong>URLs to Ignore</strong> — URLs entered here will be "
|
313 |
+
"ignored whenever they generate 404 errors in the future. You can use "
|
314 |
+
"asterisks (*) as wildcards.</li>\r\n"
|
315 |
+
"</ul>\r\n"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: modules/404s/fofs.php:74 modules/files/files.php:165
|
319 |
+
#: modules/meta/meta-descriptions.php:206 modules/meta/meta-keywords.php:196
|
320 |
+
#: modules/meta/meta-robots.php:103
|
321 |
+
#: modules/rich-snippets/rich-snippets.php:279 modules/slugs/slugs.php:107
|
322 |
+
#: modules/titles/titles.php:453 modules/user-code/user-code.php:84
|
323 |
+
msgid "Troubleshooting"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: modules/404s/fofs.php:75
|
327 |
msgid ""
|
328 |
+
"\r\n"
|
329 |
+
"<p>404 Monitor doesn't appear to work? Take these notes into consideration:</"
|
330 |
+
"p>\r\n"
|
331 |
+
"\r\n"
|
332 |
+
"<ul>\r\n"
|
333 |
+
"\t<li>The 404 Monitor doesn't record 404 errors generated by logged-in users."
|
334 |
+
"</li>\r\n"
|
335 |
+
"\t<li>In order for the 404 Monitor to track 404 errors, you must have non-"
|
336 |
+
"default permalinks enabled under <a href='options-permalink.php' "
|
337 |
+
"target='_blank'>Settings ⇒ Permalinks</a>.</li>\r\n"
|
338 |
+
"\t<li>Some parts of your website may not be under WordPress's control; the "
|
339 |
+
"404 Monitor can't track 404 errors on non-WordPress website areas.</li>\r\n"
|
340 |
+
"</ul>\r\n"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: modules/autolinks/autolinks.php:11
|
344 |
+
msgid "Deeplink Juggernaut"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: modules/autolinks/autolinks.php:18
|
348 |
msgid ""
|
349 |
+
"Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
|
350 |
+
"(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
|
351 |
+
"WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your "
|
352 |
+
"webhost. In the meantime, you can return to an older version of Deeplink "
|
353 |
+
"Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
|
354 |
+
"a> to SEO Ultimate 5.9."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: modules/autolinks/content-autolinks-settings.php:16
|
358 |
+
msgid "Content Deeplink Juggernaut Settings"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: modules/autolinks/content-autolinks-settings.php:17
|
362 |
+
msgid "Content Link Settings"
|
|
|
|
|
|
|
|
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: modules/autolinks/content-autolinks-settings.php:40
|
366 |
+
msgid "Add Autolinks to..."
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: modules/autolinks/content-autolinks-settings.php:43
|
370 |
+
msgid "Allow posts to link to themselves."
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: modules/autolinks/content-autolinks-settings.php:44
|
374 |
msgid ""
|
375 |
+
"Allow posts to link to the URL by which the visitor is accessing the post."
|
|
|
|
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: modules/autolinks/content-autolinks-settings.php:45
|
379 |
+
msgid "Self-Linking"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: modules/autolinks/content-autolinks-settings.php:48
|
383 |
+
msgid "Enable per-link customization of quantity limits."
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: modules/autolinks/content-autolinks-settings.php:49
|
387 |
+
msgid "Don’t add any more than %d autolinks per post/page/etc."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: modules/autolinks/content-autolinks-settings.php:50
|
391 |
+
msgid ""
|
392 |
+
"Don’t link the same anchor text any more than %d times per post/page/"
|
393 |
+
"etc."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: modules/autolinks/content-autolinks-settings.php:51
|
397 |
msgid ""
|
398 |
+
"Don’t link the same anchor text any more than %d times across my "
|
399 |
+
"entire site."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: modules/autolinks/content-autolinks-settings.php:52
|
403 |
+
msgid ""
|
404 |
+
"Don’t link to the same destination any more than %d times per post/"
|
405 |
+
"page/etc."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: modules/autolinks/content-autolinks-settings.php:53
|
409 |
+
msgid "Quantity Restrictions"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: modules/autolinks/content-autolinks-settings.php:55
|
413 |
+
msgid ""
|
414 |
+
"Don’t add autolinks to text within these HTML tags <em>(separate with "
|
415 |
+
"commas)</em>:"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: modules/autolinks/content-autolinks-settings.php:55
|
419 |
+
msgid "Tag Restrictions"
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: modules/autolinks/content-autolinks-settings.php:63
|
423 |
+
msgid "%s can only link to internal destinations that share at least one..."
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: modules/autolinks/content-autolinks-settings.php:76
|
427 |
+
msgid "Siloing"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: modules/autolinks/content-autolinks-settings.php:78
|
431 |
+
msgid "CSS Class for Autolinks"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: modules/autolinks/content-autolinks.php:16
|
435 |
+
msgid "Content Deeplink Juggernaut"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: modules/autolinks/content-autolinks.php:17
|
439 |
+
msgid "Content Links"
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: modules/autolinks/content-autolinks.php:284
|
443 |
msgid ""
|
444 |
+
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
445 |
+
"a certain word or phrase in your post/page content to a URL you specify."
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: modules/autolinks/content-autolinks.php:340
|
449 |
+
#: modules/autolinks/footer-autolinks.php:157
|
450 |
+
msgid "Edit Existing Links"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: modules/autolinks/content-autolinks.php:344
|
454 |
+
#: modules/autolinks/footer-autolinks.php:161
|
455 |
+
msgid "Add a New Link"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: modules/autolinks/content-autolinks.php:355
|
459 |
+
#: modules/autolinks/footer-autolinks.php:171
|
460 |
+
msgid "Anchor Text"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: modules/autolinks/content-autolinks.php:356
|
464 |
+
#: modules/autolinks/footer-autolinks.php:172
|
465 |
+
msgid "Destination"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: modules/autolinks/content-autolinks.php:357
|
469 |
+
#: modules/autolinks/footer-autolinks.php:173
|
470 |
+
msgid "Title Attribute"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: modules/autolinks/content-autolinks.php:359
|
474 |
+
msgid "Site Cap"
|
475 |
+
msgstr ""
|
|
|
|
|
476 |
|
477 |
+
#: modules/autolinks/content-autolinks.php:360
|
478 |
+
#: modules/autolinks/footer-autolinks.php:174
|
479 |
+
msgid "Options"
|
480 |
+
msgstr ""
|
|
|
481 |
|
482 |
+
#: modules/autolinks/content-autolinks.php:362
|
483 |
+
#: modules/autolinks/footer-autolinks.php:176
|
484 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:91
|
485 |
+
msgid "Delete"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: modules/autolinks/content-autolinks.php:397
|
489 |
+
#: modules/autolinks/footer-autolinks.php:210 modules/noindex/noindex.php:54
|
490 |
+
#: modules/noindex/noindex.php:78
|
491 |
+
msgid "Nofollow"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: modules/autolinks/content-autolinks.php:399
|
495 |
+
#: modules/autolinks/footer-autolinks.php:212
|
496 |
+
msgid "New window"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: modules/autolinks/content-autolinks.php:464
|
500 |
+
msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: modules/autolinks/content-autolinks.php:467
|
504 |
+
msgid "Don’t add autolinks to anchor texts found in this post."
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: modules/autolinks/content-autolinks.php:467
|
508 |
+
msgid "Autolink Exclusion:"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: modules/autolinks/content-autolinks.php:473
|
512 |
msgid ""
|
513 |
+
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
514 |
+
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
515 |
+
"other posts and link it to this post. For example, if the post you’re "
|
516 |
+
"editing is about “blue widgets,” you could type “blue "
|
517 |
+
"widgets” into the “Incoming Autolink Anchors” box and "
|
518 |
+
"Deeplink Juggernaut will automatically build internal links to this post "
|
519 |
+
"with that anchor text (assuming other posts contain that text)."
|
520 |
+
msgstr ""
|
521 |
|
522 |
+
#: modules/autolinks/footer-autolinks-settings.php:16
|
523 |
+
msgid "Footer Deeplink Juggernaut Settings"
|
524 |
+
msgstr ""
|
|
|
|
|
|
|
525 |
|
526 |
+
#: modules/autolinks/footer-autolinks-settings.php:17
|
527 |
+
msgid "Footer Link Settings"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: modules/autolinks/footer-autolinks-settings.php:28
|
531 |
+
msgid "HTML Formats"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: modules/autolinks/footer-autolinks-settings.php:31
|
535 |
+
msgid "Link Section Format"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: modules/autolinks/footer-autolinks-settings.php:32
|
539 |
+
msgid "Link Format"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: modules/autolinks/footer-autolinks-settings.php:34
|
543 |
+
msgid "Link Separator"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: modules/autolinks/footer-autolinks.php:16
|
547 |
+
msgid "Footer Deeplink Juggernaut"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: modules/autolinks/footer-autolinks.php:17 modules/widgets/widgets.php:164
|
551 |
+
msgid "Footer Links"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: modules/autolinks/footer-autolinks.php:169
|
555 |
+
msgid "Link Location (optional)"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: modules/autolinks/footer-autolinks.php:197
|
559 |
+
msgid "Match child content"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: modules/autolinks/footer-autolinks.php:199
|
563 |
+
msgid "Negative match"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: modules/canonical/canonical.php:12 modules/canonical/canonical.php:201
|
567 |
+
msgid "Canonicalizer"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: modules/canonical/canonical.php:39
|
571 |
+
msgid ""
|
572 |
+
"Generate <code><link rel="canonical" /></code> meta tags."
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: modules/canonical/canonical.php:40
|
576 |
+
msgid "Send <code>rel="canonical"</code> HTTP headers."
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: modules/canonical/canonical.php:41
|
580 |
+
msgid "Redirect requests for nonexistent pagination."
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: modules/canonical/canonical.php:202
|
584 |
msgid ""
|
585 |
"\r\n"
|
586 |
"<ul>\r\n"
|
|
|
|
|
587 |
"\t<li>\r\n"
|
588 |
+
"\t\t<p><strong>What it does:</strong> Canonicalizer improves on two "
|
589 |
+
"WordPress features to minimize possible exact-content duplication penalties. "
|
590 |
+
"The <code><link rel="canonical" /></code> tags setting "
|
591 |
+
"improves on the canonical tags feature of WordPress 2.9 and above by "
|
592 |
+
"encompassing much more of your site than just your posts and Pages.</p>\r\n"
|
593 |
+
"\t\t<p>The nonexistent pagination redirect feature fills a gap in "
|
594 |
+
"WordPress's built-in canonicalization functionality: for example, if a URL "
|
595 |
+
"request is made for page 6 of a category archive, and that category doesn't "
|
596 |
+
"have a page 6, then by default, depending on the context, WordPress will "
|
597 |
+
"display a blank page, or it will display the content of the closest page "
|
598 |
+
"number available, without issuing a 404 error or a 301 redirect (thus "
|
599 |
+
"creating two or more identical webpages). This duplicate-content situation "
|
600 |
+
"can happen when you, for example, remove many posts from a category, thus "
|
601 |
+
"reducing the amount of pagination needed in the category's archive. The "
|
602 |
+
"Canonicalizer's feature fixes that behavior by issuing 301 redirects to page "
|
603 |
+
"1 of the paginated section in question.</p>\r\n"
|
604 |
"\t</li>\r\n"
|
605 |
+
"\t<li><strong>Why it helps:</strong> These features will point Google to the "
|
606 |
+
"correct URL for your homepage and each of your posts, Pages, categories, "
|
607 |
+
"tags, date archives, and author archives. That way, if Google comes across "
|
608 |
+
"an alternate URL by which one of those items can be accessed, it will be "
|
609 |
+
"able to find the correct URL and won't penalize you for having two identical "
|
610 |
+
"pages on your site.</li>\r\n"
|
611 |
+
"\t<li><strong>How to use it:</strong> Just check all three checkboxes and "
|
612 |
+
"click Save Changes. SEO Ultimate will do the rest.</li>\r\n"
|
613 |
"</ul>\r\n"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: modules/class.su-importmodule.php:49
|
617 |
+
msgid "Import Post Fields"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: modules/class.su-importmodule.php:50
|
621 |
+
msgid ""
|
622 |
+
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
623 |
+
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
624 |
+
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
625 |
+
"Ultimate."
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: modules/class.su-importmodule.php:53
|
629 |
+
msgid "Conflict Resolution Mode"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: modules/class.su-importmodule.php:54
|
633 |
+
msgid ""
|
634 |
+
"What should the import tool do if it tries to move over a post’s %s "
|
635 |
+
"data, but different data already exists in the corresponding SEO Ultimate "
|
636 |
+
"fields?"
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: modules/class.su-importmodule.php:56
|
640 |
+
msgid "Skip that post and leave all data as-is (default)."
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: modules/class.su-importmodule.php:57
|
644 |
+
msgid "Delete the SEO Ultimate data and replace it with the %s data."
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: modules/class.su-importmodule.php:58
|
648 |
+
msgid "Keep the SEO Ultimate data and delete the %s data."
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: modules/class.su-importmodule.php:61
|
652 |
+
msgid "Deletion Preference"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: modules/class.su-importmodule.php:62
|
656 |
+
msgid ""
|
657 |
+
"When the migration tool successfully copies a post’s %1$s data over to "
|
658 |
+
"SEO Ultimate, what should it do with the old %1$s data?"
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
#: modules/class.su-importmodule.php:64
|
662 |
+
msgid "Delete the %s data."
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: modules/class.su-importmodule.php:65
|
666 |
+
msgid "Leave behind the duplicate %s data (default)."
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: modules/class.su-importmodule.php:72
|
670 |
+
msgid "Import Now"
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: modules/class.su-importmodule.php:75
|
674 |
+
msgid ""
|
675 |
+
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
676 |
+
"target=\"_blank\">backup your database</a> before proceeding!"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: modules/class.su-importmodule.php:84
|
680 |
+
msgid "Import complete."
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: modules/class.su-importmodule.php:90
|
684 |
+
msgid "Return to import page"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: modules/class.su-importmodule.php:93
|
688 |
+
msgid "Return to settings page"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: modules/class.su-importmodule.php:96
|
692 |
+
msgid "Return to SEO page"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: modules/class.su-importmodule.php:116
|
696 |
+
msgid "Deactivated %s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: modules/class.su-importmodule.php:174
|
700 |
+
msgid "Imported a total of %d fields for one post/page/revision."
|
701 |
+
msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
|
702 |
+
msgstr[0] ""
|
703 |
+
msgstr[1] ""
|
704 |
+
|
705 |
+
#: modules/class.su-importmodule.php:180
|
706 |
+
msgid "Skipped one post with disabled %2$s data."
|
707 |
+
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
708 |
+
msgstr[0] ""
|
709 |
+
msgstr[1] ""
|
710 |
+
|
711 |
+
#: modules/class.su-importmodule.php:186
|
712 |
msgid ""
|
713 |
+
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
714 |
+
"settings you chose."
|
715 |
+
msgid_plural ""
|
716 |
+
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
717 |
+
"settings you chose."
|
718 |
+
msgstr[0] ""
|
719 |
+
msgstr[1] ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
720 |
|
721 |
+
#: modules/class.su-importmodule.php:192
|
722 |
+
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
723 |
+
msgid_plural ""
|
724 |
+
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
725 |
+
msgstr[0] ""
|
726 |
+
msgstr[1] ""
|
727 |
+
|
728 |
+
#: modules/class.su-module.php:622
|
729 |
msgid ""
|
730 |
+
"All the modules on this page have been disabled. You can re-enable them "
|
731 |
+
"using the <a href=\"%s\">Module Manager</a>."
|
|
|
|
|
|
|
|
|
|
|
|
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: modules/class.su-module.php:971
|
735 |
+
msgid "%1$s | %2$s %3$s by %4$s"
|
|
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: modules/class.su-module.php:1050
|
739 |
+
msgid "Your site currently doesn’t have any public items of this type."
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: modules/class.su-module.php:1136
|
743 |
+
msgid "«"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: modules/class.su-module.php:1137
|
747 |
+
msgid "»"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: modules/class.su-module.php:1144
|
751 |
+
msgid "Displaying %s–%s of %s"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: modules/class.su-module.php:1158
|
755 |
+
msgid "ID"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: modules/class.su-module.php:1192
|
759 |
+
msgid "View"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: modules/class.su-module.php:1194
|
763 |
+
msgid "Edit"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: modules/class.su-module.php:1358
|
767 |
+
msgid "Settings updated."
|
|
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: modules/class.su-module.php:1379
|
771 |
+
msgid "Save Changes"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: modules/class.su-module.php:1920
|
775 |
+
msgid ""
|
776 |
+
"Are you sure you want to replace the textbox contents with this default "
|
777 |
+
"value?"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: modules/class.su-module.php:1939 modules/settings/settings-data.php:23
|
781 |
+
msgid "Reset"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: modules/class.su-module.php:2557 modules/class.su-module.php:2569
|
785 |
+
msgid "A Deleted %s"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: modules/class.su-module.php:2559
|
789 |
+
msgid "A Deleted Post"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: modules/class.su-module.php:2574
|
793 |
+
msgid "A Deleted Term"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: modules/class.su-module.php:2580 modules/meta/meta-descriptions.php:25
|
797 |
+
#: modules/meta/meta-keywords.php:34 plugin/class.seo-ultimate.php:1671
|
798 |
+
msgid "Blog Homepage"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: modules/class.su-module.php:2585 plugin/class.seo-ultimate.php:1749
|
802 |
+
msgid "Author"
|
|
|
|
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: modules/class.su-module.php:2587
|
806 |
+
msgid "A Deleted User"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: modules/class.su-module.php:2602 plugin/class.seo-ultimate.php:1779
|
810 |
+
msgid "Link Mask"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: modules/class.su-module.php:2604
|
814 |
+
msgid "Link Mask (Disabled)"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: modules/class.su-module.php:2609
|
818 |
+
msgid "A Deleted Link Mask"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: modules/class.su-module.php:2634
|
822 |
+
msgid "Type a URL or start typing the name of an item on your site"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: modules/class.su-module.php:2647
|
826 |
+
msgid "Remove this location from this textbox"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: modules/class.su-module.php:2647
|
830 |
+
msgid "X"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: modules/files/files.php:14
|
834 |
+
msgid "File Editor"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: modules/files/files.php:53
|
838 |
+
msgid ""
|
839 |
+
"A .htaccess file exists, but it’s not writable. You can edit it here "
|
840 |
+
"once the file permissions are corrected."
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: modules/files/files.php:59
|
844 |
+
msgid ""
|
845 |
+
"WordPress won’t be able to display your robots.txt file because the "
|
846 |
+
"default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
|
847 |
+
"structure</a> is in use."
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: modules/files/files.php:66
|
851 |
+
msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: modules/files/files.php:70
|
855 |
+
msgid "Enable this custom robots.txt file and disable the default file"
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#: modules/files/files.php:71
|
859 |
+
msgid "Let other plugins add rules to my custom robots.txt file"
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: modules/files/files.php:72
|
863 |
+
msgid "robots.txt Settings"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
+
#: modules/files/files.php:75
|
867 |
+
msgid ""
|
868 |
+
"Please realize that incorrectly editing your robots.txt file could block "
|
869 |
+
"search engines from your site."
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: modules/files/files.php:79
|
873 |
+
msgid ".htaccess"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: modules/files/files.php:82
|
877 |
+
msgid ""
|
878 |
+
"Also, incorrectly editing your .htaccess file could disable your entire "
|
879 |
+
"website. Edit with caution!"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: modules/files/files.php:134
|
883 |
+
msgid ""
|
884 |
+
"Please note that your privacy settings won’t have any effect on your "
|
885 |
+
"robots.txt file, since you’re using <a href=\"%s\">a custom one</a>."
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: modules/files/files.php:145
|
889 |
+
msgid ""
|
890 |
+
"\r\n"
|
891 |
+
"<ul>\r\n"
|
892 |
+
"\t<li><strong>What it does:</strong> The File Editor module lets you edit "
|
893 |
+
"two important SEO-related files: robots.txt and .htaccess.</li>\r\n"
|
894 |
+
"\t<li><strong>Why it helps:</strong> You can use the <a href='http://www."
|
895 |
+
"robotstxt.org/robotstxt.html' target='_blank'>robots.txt file</a> to give "
|
896 |
+
"instructions to search engine spiders. You can use the <a href='http://httpd."
|
897 |
+
"apache.org/docs/2.2/howto/htaccess.html' target='_blank'>.htaccess file</a> "
|
898 |
+
"to implement advanced SEO strategies (URL rewriting, regex redirects, etc.). "
|
899 |
+
"SEO Ultimate makes editing these files easier than ever.</li>\r\n"
|
900 |
+
"\t<li><strong>How to use it:</strong> Edit the files as desired, then click "
|
901 |
+
"Save Changes. If you create a custom robots.txt file, be sure to enable it "
|
902 |
+
"with the checkbox.</li>\r\n"
|
903 |
+
"</ul>\r\n"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: modules/files/files.php:155 modules/meta/meta-descriptions.php:197
|
907 |
+
#: modules/meta/meta-keywords.php:183 modules/modules/modules.php:174
|
908 |
+
#: modules/more-links/more-links.php:105 modules/more-links/more-links.php:116
|
909 |
+
#: modules/settings/settings.php:41 modules/slugs/slugs.php:87
|
910 |
+
#: modules/titles/titles.php:442
|
911 |
+
msgid "FAQ"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: modules/files/files.php:156
|
915 |
+
msgid ""
|
916 |
+
"\r\n"
|
917 |
+
"<ul>\r\n"
|
918 |
+
"\t<li><strong>Will my robots.txt edits remain if I disable the File Editor?</"
|
919 |
+
"strong><br />No. On a WordPress blog, the robots.txt file is dynamically "
|
920 |
+
"generated just like your posts and Pages. If you disable the File Editor "
|
921 |
+
"module or the entire SEO Ultimate plugin, the File Editor won’t be "
|
922 |
+
"able to insert your custom code into the robots.txt file anymore.</li>\r\n"
|
923 |
+
"\t<li><strong>Will my .htaccess edits remain if I disable the File Editor?</"
|
924 |
+
"strong><br />Yes. The .htaccess file is static. Your edits will remain even "
|
925 |
+
"if you disable SEO Ultimate or its File Editor module.</li>\r\n"
|
926 |
+
"</ul>\r\n"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: modules/files/files.php:166
|
930 |
+
msgid ""
|
931 |
+
"\r\n"
|
932 |
+
"<ul>\r\n"
|
933 |
+
"\t<li><strong>Why do I get a “500 Server Error” after using the "
|
934 |
+
"File Editor?</strong><br />You may have inserted code into your .htaccess "
|
935 |
+
"file that your web server can't understand. As the File Editor warns, "
|
936 |
+
"incorrectly editing your .htaccess file can disable your entire website in "
|
937 |
+
"this way. To restore your site, you'll need to use an FTP client (or your "
|
938 |
+
"web host's File Manager) to edit or rename your .htaccess file. If you need "
|
939 |
+
"help, please contact your web host.</li>\r\n"
|
940 |
+
"\t<li><strong>Where did my .htaccess edits go?</strong><br />The .htaccess "
|
941 |
+
"file is static, so SEO Ultimate doesn't have total control over it. It’"
|
942 |
+
"s possible that WordPress, another plugin, or other software may overwrite "
|
943 |
+
"your .htaccess file. If you have a backup of your blog’s files, you "
|
944 |
+
"can try recovering your edits from there.</li>\r\n"
|
945 |
+
"</ul>\r\n"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: modules/import-aiosp/import-aiosp.php:12
|
949 |
+
msgid "Import from All in One SEO Pack"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: modules/import-aiosp/import-aiosp.php:13
|
953 |
+
msgid "AIOSP Import"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: modules/import-aiosp/import-aiosp.php:15
|
957 |
+
msgid "All in One SEO Pack"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: modules/import-aiosp/import-aiosp.php:16
|
961 |
+
msgid "AIOSP"
|
|
|
|
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: modules/import-aiosp/import-aiosp.php:17
|
965 |
+
msgid "Import post data (custom title tags and meta tags)."
|
|
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: modules/import-aiosp/import-aiosp.php:21
|
969 |
+
msgid ""
|
970 |
+
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
971 |
+
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
972 |
+
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
973 |
+
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
974 |
+
"to be currently installed or activated for the import to take place."
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: modules/import-aiosp/import-aiosp.php:23
|
978 |
+
msgid ""
|
979 |
+
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
980 |
+
"you use an older version of AIOSP, you should update to the latest version "
|
981 |
+
"first and run AIOSP’s upgrade process."
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:24
|
985 |
+
msgid "Link Mask Generator"
|
|
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:30
|
989 |
+
msgid "Aliases"
|
|
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:75
|
993 |
+
msgid "Edit Existing Aliases"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:79
|
997 |
+
msgid "Add a New Alias"
|
|
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:87
|
1001 |
+
msgid "Actual URL"
|
|
|
|
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:88
|
1005 |
+
msgid "Alias URL"
|
|
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:89
|
1009 |
+
msgid "Only on This Post… (optional)"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:122
|
1013 |
+
msgid "Test"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:139
|
1017 |
+
msgid "Alias Directory"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:141
|
1021 |
+
msgid "Nofollow aliased links"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:141
|
1025 |
+
msgid "Link Attributes"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:164
|
1029 |
+
msgid "Link Masks:"
|
|
|
|
|
|
|
|
|
|
|
|
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:167
|
1033 |
+
msgid "URL"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:167
|
1037 |
+
msgid "Mask URL"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:204
|
1041 |
+
msgid ""
|
1042 |
+
"You can stop search engines from following a link by typing in a mask for "
|
1043 |
+
"its URL."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:291
|
1047 |
+
msgid "Added by SEO Ultimate's Link Mask Generator module"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:302
|
1051 |
+
msgid "End Link Mask Generator output"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: modules/link-nofollow/link-nofollow.php:12
|
1055 |
+
msgid "Nofollow Manager"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: modules/link-nofollow/link-nofollow.php:53
|
1059 |
+
msgid "Add the nofollow attribute to..."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: modules/link-nofollow/link-nofollow.php:55
|
1063 |
+
msgid "Adjacent post links"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: modules/link-nofollow/link-nofollow.php:56
|
1067 |
+
msgid "Category links (after posts)"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: modules/link-nofollow/link-nofollow.php:57
|
1071 |
+
msgid "Category links (in lists)"
|
|
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: modules/link-nofollow/link-nofollow.php:58
|
1075 |
+
msgid "Comment anchor links"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: modules/link-nofollow/link-nofollow.php:59
|
1079 |
+
msgid "Comment feed links"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: modules/link-nofollow/link-nofollow.php:60
|
1083 |
+
msgid "Date-based archive links"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: modules/link-nofollow/link-nofollow.php:61
|
1087 |
+
msgid "Pagination navigation links (all)"
|
|
|
|
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: modules/link-nofollow/link-nofollow.php:62
|
1091 |
+
msgid "Pagination navigation links (on blog home only)"
|
|
|
|
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: modules/link-nofollow/link-nofollow.php:63
|
1095 |
+
msgid "“Read more” links"
|
|
|
|
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: modules/link-nofollow/link-nofollow.php:64
|
1099 |
+
msgid "Registration link"
|
1100 |
msgstr ""
|
1101 |
+
|
1102 |
+
#: modules/link-nofollow/link-nofollow.php:65
|
1103 |
+
msgid "Login link"
|
|
|
|
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: modules/link-nofollow/link-nofollow.php:66
|
1107 |
+
msgid "Tag links (after posts)"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: modules/link-nofollow/link-nofollow.php:67
|
1111 |
+
msgid "Tag links (in lists and clouds)"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
1115 |
+
msgid "When displaying page lists, nofollow links to this page"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
1119 |
+
msgid "Nofollow:"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: modules/link-nofollow/link-nofollow.php:131
|
1123 |
+
msgid ""
|
1124 |
+
"\r\n"
|
1125 |
+
"<p>Nofollow Manager adds the <code>rel="nofollow"</code> attribute "
|
1126 |
+
"to types of links that you specify. The <code>rel="nofollow"</"
|
1127 |
+
"code> attribute prevents a link from passing PageRank.</p>\r\n"
|
1128 |
+
"<p>If you’re migrating to SEO Ultimate from another plugin, Nofollow "
|
1129 |
+
"Manager can help you maintain your existing settings (as part of an “"
|
1130 |
+
"if it ain’t broke don’t fix it” strategy). In other cases, "
|
1131 |
+
"however, we recommend not using the Nofollow Manager because in 2008 Google "
|
1132 |
+
"disabled the ability to use the <code>rel="nofollow"</code> "
|
1133 |
+
"attribute for PageRank sculpting.</p>\r\n"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: modules/linkbox/linkbox.php:12
|
1137 |
+
msgid "Linkbox Inserter"
|
|
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: modules/linkbox/linkbox.php:18
|
1141 |
+
msgid "Link to this post!"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: modules/linkbox/linkbox.php:45
|
1145 |
+
msgid "At the end of posts"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: modules/linkbox/linkbox.php:46
|
1149 |
+
msgid "At the end of pages"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: modules/linkbox/linkbox.php:47
|
1153 |
+
msgid "When called by the su_linkbox hook"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: modules/linkbox/linkbox.php:48
|
1157 |
+
msgid "Display linkboxes..."
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: modules/linkbox/linkbox.php:49
|
1161 |
+
msgid "Linkbox HTML"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: modules/linkbox/linkbox.php:92
|
1165 |
+
msgid ""
|
1166 |
+
"\r\n"
|
1167 |
+
"<ul>\r\n"
|
1168 |
+
"\t<li><strong>What it does:</strong> Linkbox Inserter can add linkboxes to "
|
1169 |
+
"your posts/pages.</li>\r\n"
|
1170 |
+
"\t<li><strong>Why it helps:</strong> Linkboxes contain HTML code that "
|
1171 |
+
"visitors can use to link to your site. This is a great way to encourage SEO-"
|
1172 |
+
"beneficial linking activity.</li>\r\n"
|
1173 |
+
"\t<li><strong>How to use it:</strong> Use the checkboxes to enable the "
|
1174 |
+
"Linkbox Inserter in various areas of your site. Customize the HTML if "
|
1175 |
+
"desired. Click “Save Changes” when finished.</li>\r\n"
|
1176 |
+
"</ul>\r\n"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: modules/linkbox/linkbox.php:103
|
1180 |
+
msgid ""
|
1181 |
+
"\r\n"
|
1182 |
+
"<p>Here’s information on the various settings:</p>\r\n"
|
1183 |
+
"\r\n"
|
1184 |
+
"<ul>\r\n"
|
1185 |
+
"\t<li>\r\n"
|
1186 |
+
"\t\t<strong>Display linkboxes...</strong>\r\n"
|
1187 |
+
"\t\t<ul>\r\n"
|
1188 |
+
"\t\t\t<li><strong>At the end of posts</strong> — Adds the linkbox HTML "
|
1189 |
+
"to the end of all posts (whether they're displayed on the blog homepage, in "
|
1190 |
+
"archives, or by themselves).</li>\r\n"
|
1191 |
+
"\t\t\t<li><strong>At the end of pages</strong> — Adds the linkbox HTML "
|
1192 |
+
"to the end of all Pages.</li>\r\n"
|
1193 |
+
"\t\t\t<li><strong>When called by the su_linkbox hook</strong> — For "
|
1194 |
+
"more fine-tuned control over where linkboxes appear, enable this option and "
|
1195 |
+
"add <code><?php do_action('su_linkbox'); ?></code> to your theme. You "
|
1196 |
+
"can also add an ID parameter to display the linkbox of a particular post/"
|
1197 |
+
"page; for example: <code><?php do_action('su_linkbox', 123); ?></code>."
|
1198 |
+
"</li>\r\n"
|
1199 |
+
"\t\t</ul>\r\n"
|
1200 |
+
"\t</li>\r\n"
|
1201 |
+
"\t<li>\r\n"
|
1202 |
+
"\t\t<strong>HTML</strong> — The HTML that will be outputted to display "
|
1203 |
+
"the linkboxes. The HTML field supports these variables:\r\n"
|
1204 |
+
"\t\t<ul>\r\n"
|
1205 |
+
"\t\t\t<li>{id} — The ID of the current post/page, or the ID passed to "
|
1206 |
+
"the action hook call.</li>\r\n"
|
1207 |
+
"\t\t\t<li>{url} — The permalink URL of the post/page.</li>\r\n"
|
1208 |
+
"\t\t\t<li>{title} — The title of the post/page.</li>\r\n"
|
1209 |
+
"\t\t</ul>\r\n"
|
1210 |
+
"\t</li>\r\n"
|
1211 |
+
"</ul>\r\n"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: modules/meta/meta-descriptions.php:12
|
1215 |
+
msgid "Meta Description Editor"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: modules/meta/meta-descriptions.php:13
|
1219 |
+
msgid "Meta Descriptions"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: modules/meta/meta-descriptions.php:24 modules/titles/titles.php:33
|
1223 |
+
msgid "Default Formats"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: modules/meta/meta-descriptions.php:31
|
1227 |
+
msgid "Meta Description"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: modules/meta/meta-descriptions.php:50
|
1231 |
+
msgid "Post Description Format"
|
|
|
|
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: modules/meta/meta-descriptions.php:51
|
1235 |
+
msgid "Page Description Format"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: modules/meta/meta-descriptions.php:52
|
1239 |
+
msgid "Category Description Format"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: modules/meta/meta-descriptions.php:53
|
1243 |
+
msgid "Post Tag Description Format"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: modules/meta/meta-descriptions.php:54
|
1247 |
+
msgid "Pagination Description Format"
|
|
|
|
|
|
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: modules/meta/meta-descriptions.php:62
|
1251 |
+
msgid "Blog Homepage Meta Description"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: modules/meta/meta-descriptions.php:64
|
1255 |
+
msgid "Use this blog’s tagline as the default homepage description."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: modules/meta/meta-descriptions.php:65
|
1259 |
+
msgid "Default Value"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: modules/meta/meta-descriptions.php:155
|
1263 |
+
msgid "Meta Description:"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: modules/meta/meta-descriptions.php:158
|
1267 |
+
msgid "You’ve entered %s characters. Most search engines use up to 140."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: modules/meta/meta-descriptions.php:166
|
1271 |
+
msgid ""
|
1272 |
+
"<strong>Description</strong> — The value of the meta description tag. "
|
1273 |
+
"The description will often appear underneath the title in search engine "
|
1274 |
+
"results. Writing an accurate, attention-grabbing description for every post "
|
1275 |
+
"is important to ensuring a good search results clickthrough rate."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: modules/meta/meta-descriptions.php:175
|
1279 |
msgid ""
|
1280 |
+
"\r\n"
|
1281 |
+
"<ul>\r\n"
|
1282 |
+
"\t<li><strong>What it does:</strong> Meta Descriptions Editor lets you "
|
1283 |
+
"customize the text that you want to appear under your webpages’ titles "
|
1284 |
+
"in search results.</li>\r\n"
|
1285 |
+
"\t<li><strong>Why it helps:</strong> Getting ranked isn’t enough; once "
|
1286 |
+
"you're ranked, you need visitors to click on your site in the results. "
|
1287 |
+
"That’s where meta descriptions can help. When you provide text that "
|
1288 |
+
"makes searchers want to visit your site, you can increase your SERP "
|
1289 |
+
"clickthrough rate and thus increase search traffic.</li>\r\n"
|
1290 |
+
"\t<li><strong>How to use it:</strong> Enter meta descriptions for your "
|
1291 |
+
"homepage, posts, pages, etc. as desired, and then click Save Changes. You "
|
1292 |
+
"can also customize the meta data of an individual post or page by using the "
|
1293 |
+
"textboxes that Meta Editor adds to the post/page editors.</li>\r\n"
|
1294 |
+
"</ul>\r\n"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: modules/meta/meta-descriptions.php:186
|
1298 |
+
msgid ""
|
1299 |
+
"\r\n"
|
1300 |
+
"<p>Here’s information on the various settings:</p>\r\n"
|
1301 |
+
"\r\n"
|
1302 |
+
"<ul>\r\n"
|
1303 |
+
"\t<li><strong>Blog Homepage Meta Description</strong> — When your blog "
|
1304 |
+
"homepage appears in search results, it’ll have a title and a "
|
1305 |
+
"description. When you insert content into the description field below, the "
|
1306 |
+
"Meta Editor will add code to your blog homepage (the <code><meta "
|
1307 |
+
"name="description" /></code> tag) that asks search engines to "
|
1308 |
+
"use what you’ve entered as the homepage’s search results "
|
1309 |
+
"description.</li>\r\n"
|
1310 |
+
"\t<li><strong>Use this blog’s tagline as the default homepage "
|
1311 |
+
"description.</strong> — If this box is checked and if the Blog "
|
1312 |
+
"Homepage Meta Description field is empty, Meta Editor will use your "
|
1313 |
+
"blog’s tagline as the meta description. You can edit the blog’s "
|
1314 |
+
"tagline under <a href='options-general.php'>Settings ⇒ General</a>.</li>"
|
1315 |
+
"\r\n"
|
1316 |
+
"</ul>\r\n"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: modules/meta/meta-descriptions.php:198
|
1320 |
+
msgid ""
|
1321 |
+
"\r\n"
|
1322 |
+
"<ul>\r\n"
|
1323 |
+
"\t<li><strong>How do I edit the meta description of my homepage?</"
|
1324 |
+
"strong><br />If you are using a “blog homepage” (the default "
|
1325 |
+
"option of showing your blog posts on your homepage), just use the Blog "
|
1326 |
+
"Homepage field. If you have configured your <a href='options-reading."
|
1327 |
+
"php'>Settings ⇒ Reading</a> section to use a “frontpage” (i."
|
1328 |
+
"e. a Page as your homepage), just edit that Page’s meta description on "
|
1329 |
+
"the “Pages” tab.</li>\r\n"
|
1330 |
+
"</ul>\r\n"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: modules/meta/meta-descriptions.php:207 modules/meta/meta-keywords.php:197
|
1334 |
+
#: modules/meta/meta-robots.php:104
|
1335 |
+
msgid ""
|
1336 |
+
"\r\n"
|
1337 |
+
"<ul>\r\n"
|
1338 |
+
"\t<li>\r\n"
|
1339 |
+
"\t\t<p><strong>What do I do if my site has multiple meta tags?</strong><br /"
|
1340 |
+
">First, try removing your theme’s built-in meta tags if it has them. "
|
1341 |
+
"Go to <a href='theme-editor.php' target='_blank'>Appearance ⇒ Editor</"
|
1342 |
+
"a> and edit <code>header.php</code>. Delete or comment-out any <code><"
|
1343 |
+
"meta></code> tags.</p>\r\n"
|
1344 |
+
"\t\t<p>If the problem persists, try disabling other SEO plugins that may be "
|
1345 |
+
"generating meta tags.</p>\r\n"
|
1346 |
+
"\t\t<p>Troubleshooting tip: Go to <a href='options-general.php?page=seo-"
|
1347 |
+
"ultimate'>Settings ⇒ SEO Ultimate</a> and enable the “Insert "
|
1348 |
+
"comments around HTML code insertions” option. This will mark SEO "
|
1349 |
+
"Ultimate’s meta tags with comments, allowing you to see which meta "
|
1350 |
+
"tags are generated by SEO Ultimate and which aren’t.</p>\r\n"
|
1351 |
+
"\t</li>\r\n"
|
1352 |
+
"</ul>\r\n"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
#: modules/meta/meta-keywords.php:12
|
1360 |
msgid "Meta Keywords"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: modules/meta/meta-keywords.php:33 modules/noindex/noindex.php:43
|
1364 |
+
msgid "Default Values"
|
|
|
1365 |
msgstr ""
|
1366 |
|
1367 |
#: modules/meta/meta-keywords.php:56
|
1440 |
"</ul>\r\n"
|
1441 |
msgstr ""
|
1442 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1443 |
#: modules/meta/meta-robots.php:12
|
1444 |
msgid "Meta Robot Tags Editor"
|
1445 |
msgstr ""
|
1570 |
"</ul>\r\n"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: modules/meta/webmaster-verify.php:12 modules/meta/webmaster-verify.php:58
|
1574 |
+
msgid "Webmaster Verification Assistant"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: modules/meta/webmaster-verify.php:13
|
1578 |
+
msgid "W.M. Verification"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: modules/meta/webmaster-verify.php:47
|
1582 |
+
msgid "Google Webmaster Tools"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: modules/meta/webmaster-verify.php:48
|
1586 |
+
msgid "Yahoo! Site Explorer"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: modules/meta/webmaster-verify.php:49
|
1590 |
+
msgid "Bing Webmaster Center"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: modules/meta/webmaster-verify.php:59
|
1594 |
+
msgid ""
|
1595 |
+
"\r\n"
|
1596 |
+
"<ul>\r\n"
|
1597 |
+
"\t<li><strong>What it does:</strong> Webmaster Verification Assistant lets "
|
1598 |
+
"you enter in verification codes for the webmaster portals of the 3 leading "
|
1599 |
+
"search engines.</li>\r\n"
|
1600 |
+
"\t<li><strong>Why it helps:</strong> Webmaster Verification Assistant "
|
1601 |
+
"assists you in obtaining access to webmaster portals, which can provide you "
|
1602 |
+
"with valuable SEO tools.</li>\r\n"
|
1603 |
+
"\t<li><strong>How to use it:</strong> Use a search engine to locate the "
|
1604 |
+
"webmaster portal you’re interested in, sign up at the portal, and then "
|
1605 |
+
"obtain a verification code. Once you have the code, you can paste it in "
|
1606 |
+
"here, click Save Changes, then return to the portal to verify that you own "
|
1607 |
+
"the site. Once that’s done, you'll have access to the portal’s "
|
1608 |
+
"SEO tools.</li>\r\n"
|
1609 |
+
"</ul>\r\n"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: modules/misc/misc.php:11
|
1613 |
+
msgid "Miscellaneous"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: modules/misc/misc.php:14
|
1617 |
+
msgid ""
|
1618 |
+
"The Miscellaneous page contains modules that don’t have enough "
|
1619 |
+
"settings to warrant their own separate admin pages."
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: modules/modules/modules.php:12
|
1623 |
+
msgid "Module Manager"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: modules/modules/modules.php:13
|
1627 |
+
msgid "Modules"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: modules/modules/modules.php:41
|
1631 |
+
msgid ""
|
1632 |
+
"SEO Ultimate’s features are located in groups called “modules."
|
1633 |
+
"” By default, most of these modules are listed in the “"
|
1634 |
+
"SEO” menu on the left. Whenever you’re working with a module, "
|
1635 |
+
"you can view documentation by clicking the tabs in the upper-right-hand "
|
1636 |
+
"corner of your administration screen."
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: modules/modules/modules.php:43
|
1640 |
+
msgid ""
|
1641 |
+
"The Module Manager lets you disable or hide modules you don’t use. "
|
1642 |
+
"You can also silence modules from displaying bubble alerts on the menu."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: modules/modules/modules.php:47
|
1646 |
+
msgid "Modules updated."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: modules/modules/modules.php:52
|
1650 |
+
msgid "Status"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: modules/modules/modules.php:53
|
1654 |
+
msgid "Module"
|
|
|
|
|
|
|
|
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: modules/modules/modules.php:66
|
1658 |
+
msgid "Enabled"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: modules/modules/modules.php:67
|
1662 |
+
msgid "Silenced"
|
1663 |
+
msgstr ""
|
1664 |
+
|
1665 |
+
#: modules/modules/modules.php:68
|
1666 |
+
msgid "Hidden"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: modules/modules/modules.php:69
|
1670 |
+
msgid "Disabled"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: modules/modules/modules.php:161
|
1674 |
+
msgid "Options Help"
|
1675 |
+
msgstr ""
|
1676 |
+
|
1677 |
+
#: modules/modules/modules.php:162
|
1678 |
msgid ""
|
1679 |
"\r\n"
|
1680 |
+
"<p>The Module Manager lets you customize the visibility and accessibility of "
|
1681 |
+
"each module; here are the options available:</p>\r\n"
|
1682 |
"<ul>\r\n"
|
1683 |
+
"\t<li><strong>Enabled</strong> — The default option. The module will "
|
1684 |
+
"be fully enabled and accessible.</li>\r\n"
|
1685 |
+
"\t<li><strong>Silenced</strong> — The module will be enabled and "
|
1686 |
+
"accessible, but it won't be allowed to display numeric bubble alerts on the "
|
1687 |
+
"menu.</li>\r\n"
|
1688 |
+
"\t<li><strong>Hidden</strong> — The module's functionality will be "
|
1689 |
+
"enabled, but the module won't be visible on the SEO menu. You will still be "
|
1690 |
+
"able to access the module's admin page by clicking on its title in the "
|
1691 |
+
"Module Manager table.</li>\r\n"
|
1692 |
+
"\t<li><strong>Disabled</strong> — The module will be completely "
|
1693 |
+
"disabled and inaccessible.</li>\r\n"
|
|
|
|
|
1694 |
"</ul>\r\n"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: modules/modules/modules.php:175
|
1698 |
msgid ""
|
1699 |
"\r\n"
|
1700 |
"<ul>\r\n"
|
1701 |
+
"\t<li><strong>What are modules?</strong><br />SEO Ultimate’s features "
|
1702 |
+
"are divided into groups called “modules.” SEO Ultimate’s "
|
1703 |
+
"“Module Manager” lets you enable or disable each of these groups "
|
1704 |
+
"of features. This way, you can pick-and-choose which SEO Ultimate features "
|
1705 |
+
"you want.</li>\r\n"
|
1706 |
+
"\t<li><strong>Can I access a module again after I’ve hidden it?</"
|
1707 |
+
"strong><br />Yes. Just go to the Module Manager and click the module’s "
|
1708 |
+
"title to open its admin page. If you’d like to put the module back in "
|
1709 |
+
"the “SEO” menu, just re-enable the module in the Module Manager "
|
1710 |
+
"and click “Save Changes.”</li>\r\n"
|
1711 |
+
"\t<li><strong>How do I disable the number bubbles on the “SEO” "
|
1712 |
+
"menu?</strong><br />Just go to the Module Manager and select the “"
|
1713 |
+
"Silenced” option for any modules generating number bubbles. Then click "
|
1714 |
+
"“Save Changes.”</li>\r\n"
|
1715 |
"</ul>\r\n"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: modules/more-links/more-links.php:12 modules/more-links/more-links.php:102
|
1719 |
+
msgid "More Link Customizer"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: modules/more-links/more-links.php:30
|
1723 |
+
msgid "Default More Link Text"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: modules/more-links/more-links.php:51
|
1727 |
+
msgid "More Link Text:"
|
1728 |
+
msgstr ""
|
1729 |
+
|
1730 |
+
#: modules/more-links/more-links.php:75
|
1731 |
+
msgid ""
|
1732 |
+
"\r\n"
|
1733 |
+
"<ul>\r\n"
|
1734 |
+
"\t<li><strong>What it does:</strong> More Link Customizer lets you modify "
|
1735 |
+
"the anchor text of your posts’ <a href='http://codex.wordpress.org/"
|
1736 |
+
"Customizing_the_Read_More' target='_blank'>“more” links</a>.</li>"
|
1737 |
+
"\r\n"
|
1738 |
+
"\t<li><strong>Why it helps:</strong> On the typical WordPress setup, the "
|
1739 |
+
"“more link” always has the same anchor text (e.g. “Read "
|
1740 |
+
"more of this entry”). Since internal anchor text conveys web page "
|
1741 |
+
"topicality to search engines, the “read more” phrase isn’t "
|
1742 |
+
"a desirable anchor phrase. More Link Customizer lets you replace the "
|
1743 |
+
"boilerplate text with a new anchor that, by default, integrates your post "
|
1744 |
+
"titles (which will ideally be keyword-oriented).</li>\r\n"
|
1745 |
+
"\t<li><strong>How to use it:</strong> On this page you can set the anchor "
|
1746 |
+
"text you’d like to use by default. The <code>{post}</code> variable "
|
1747 |
+
"will be replaced with the post’s title. HTML and encoded entities are "
|
1748 |
+
"supported. If instead you decide that you’d like to use the default "
|
1749 |
+
"anchor text specified by your currently-active theme, just erase the "
|
1750 |
+
"contents of the textbox. The anchor text can be overridden on a per-post "
|
1751 |
+
"basis via the “More Link Text” box in the “SEO "
|
1752 |
+
"Settings” section of the WordPress post editor.</li>\r\n"
|
1753 |
+
"</ul>\r\n"
|
1754 |
+
msgstr ""
|
1755 |
+
|
1756 |
+
#: modules/more-links/more-links.php:83
|
1757 |
+
msgid ""
|
1758 |
+
"\r\n"
|
1759 |
+
"<ul>\r\n"
|
1760 |
+
"\t<li>\r\n"
|
1761 |
+
"\t\t<p><strong>Why is the More Link Customizer an improvement over "
|
1762 |
+
"WordPress’s built-in functionality?</strong><br />Although WordPress "
|
1763 |
+
"does allow basic <a href='http://codex.wordpress.org/"
|
1764 |
+
"Customizing_the_Read_More#Having_a_custom_text_for_each_post' "
|
1765 |
+
"target='_blank'>custom “more” anchors</a>, the SEO Ultimate "
|
1766 |
+
"approach has several benefits:</p>\r\n"
|
1767 |
+
"\t\t<ul>\r\n"
|
1768 |
+
"\t\t\t<li>More Link Customizer (MLC) lets you set a custom default anchor "
|
1769 |
+
"text. WordPress, on the other hand, leaves this up to the currently-active "
|
1770 |
+
"theme.</li>\r\n"
|
1771 |
+
"\t\t\t<li>MLC lets you dynamically incorporate the post’s title into "
|
1772 |
+
"the anchor text.</li>\r\n"
|
1773 |
+
"\t\t\t<li>MLC lets you include HTML tags in your anchor, whereas WordPress "
|
1774 |
+
"strips these out.</li>\r\n"
|
1775 |
+
"\t\t\t<li>MLC’s functionality is much more prominent than "
|
1776 |
+
"WordPress’s unintuitive, barely-documented approach.</li>\r\n"
|
1777 |
+
"\t\t\t<li>Unlike WordPress's method, MLC doesn't require you to utilize the "
|
1778 |
+
"HTML editor.</li>\r\n"
|
1779 |
+
"\t\t</ul>\r\n"
|
1780 |
+
"\t\t<p>If you’ve already specified custom anchors via WordPress’"
|
1781 |
+
"s method, SEO Ultimate will import those anchors automatically into the More "
|
1782 |
+
"Link Customizer.</p>\r\n"
|
1783 |
+
"\t</li>\r\n"
|
1784 |
+
"</ul>\r\n"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: modules/noindex/noindex.php:12
|
1788 |
+
msgid "Noindex Manager"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
|
1792 |
+
#: modules/noindex/noindex.php:67
|
1793 |
+
msgid "Noindex"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
|
1797 |
+
msgid "Use default"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: modules/noindex/noindex.php:63
|
1801 |
+
msgid "noindex"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: modules/noindex/noindex.php:64
|
1805 |
+
msgid "index"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: modules/noindex/noindex.php:74
|
1809 |
+
msgid "nofollow"
|
|
|
|
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: modules/noindex/noindex.php:75
|
1813 |
+
msgid "follow"
|
|
|
|
|
|
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: modules/noindex/noindex.php:89
|
1817 |
msgid ""
|
1818 |
+
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
1819 |
+
"block indexing of the entire site, regardless of which options are set below."
|
|
|
|
|
|
|
|
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: modules/noindex/noindex.php:92
|
1823 |
+
msgid "Prevent indexing of..."
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: modules/noindex/noindex.php:93
|
1827 |
+
msgid "Administration back-end pages"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: modules/noindex/noindex.php:94
|
1831 |
+
msgid "Author archives"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: modules/noindex/noindex.php:95
|
1835 |
+
msgid "Blog search pages"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: modules/noindex/noindex.php:96
|
1839 |
+
msgid "Category archives"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: modules/noindex/noindex.php:97
|
1843 |
+
msgid "Comment feeds"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: modules/noindex/noindex.php:98
|
1847 |
+
msgid "Comment subpages"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: modules/noindex/noindex.php:99
|
1851 |
+
msgid "Date-based archives"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: modules/noindex/noindex.php:100
|
1855 |
+
msgid "Subpages of the homepage"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: modules/noindex/noindex.php:101
|
1859 |
+
msgid "Tag archives"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: modules/noindex/noindex.php:102
|
1863 |
+
msgid "User login/registration pages"
|
|
|
|
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: modules/noindex/noindex.php:165
|
1867 |
+
msgid "Noindex: Tell search engines not to index this webpage."
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: modules/noindex/noindex.php:166
|
1871 |
+
msgid "Nofollow: Tell search engines not to spider links on this webpage."
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: modules/noindex/noindex.php:167
|
1875 |
+
msgid "Meta Robots Tag:"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: modules/permalinks/permalinks.php:15
|
1879 |
+
msgid "Permalink Tweaker"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: modules/permalinks/permalinks.php:50
|
1883 |
+
msgid ""
|
1884 |
+
"To use the Permalinks Tweaker, you must disable default (query-string) "
|
1885 |
+
"permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: modules/permalinks/permalinks.php:75
|
1889 |
+
msgid "Remove the URL bases of..."
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: modules/permalinks/permalinks.php:80
|
1893 |
+
msgid "Before"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: modules/permalinks/permalinks.php:82
|
1897 |
+
msgid "After"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: modules/permalinks/permalinks.php:102
|
1901 |
+
msgid "term archive"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: modules/permalinks/permalinks.php:103
|
1905 |
+
msgid "page"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: modules/permalinks/permalinks.php:104
|
1909 |
+
msgid "URL Conflict Resolution"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: modules/permalinks/permalinks.php:104
|
1913 |
+
msgid ""
|
1914 |
+
"If a term archive and a Page with the same slug end up having the same URL "
|
1915 |
+
"because of the term’s base being removed, the URL should be given to "
|
1916 |
+
"the %s."
|
1917 |
msgstr ""
|
1918 |
|
1919 |
#: modules/rich-snippets/rich-snippets.php:12
|
2072 |
"</ul>\r\n"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: modules/rich-snippets/rich-snippets.php:280
|
2076 |
+
msgid ""
|
2077 |
+
"\r\n"
|
2078 |
+
"<ul>\r\n"
|
2079 |
+
"\t<li><p><strong>Why aren’t rich snippets showing up in Google search "
|
2080 |
+
"results for my site?</strong><br />Enter the URL of your post/page into <a "
|
2081 |
+
"href='http://www.google.com/webmasters/tools/richsnippets' "
|
2082 |
+
"target='_blank'>Google’s testing tool</a> to make sure Google can find "
|
2083 |
+
"the rich snippet code on your site. If no code is found, check and make sure "
|
2084 |
+
"you've enabled rich snippets for that particular post/page.</p><p>Note that "
|
2085 |
+
"having the code on a post/page doesn’t guarantee that Google will "
|
2086 |
+
"actually use it to create a rich snippet. If Google is able to read your "
|
2087 |
+
"code but isn’t using it to generate rich snippets, you can ask Google "
|
2088 |
+
"to do so using <a href='http://www.google.com/support/webmasters/bin/request."
|
2089 |
+
"py?contact_type=rich_snippets_feedback' target='_blank'>this form</a>.</p></"
|
2090 |
+
"li>\r\n"
|
2091 |
+
"</ul>\r\n"
|
2092 |
+
msgstr ""
|
2093 |
+
|
2094 |
+
#: modules/sds-blog/sds-blog.php:12
|
2095 |
+
msgid "Whitepapers"
|
2096 |
+
msgstr ""
|
2097 |
+
|
2098 |
+
#: modules/sds-blog/sds-blog.php:13
|
2099 |
+
msgid "SEO Design Solutions Whitepapers"
|
2100 |
+
msgstr ""
|
2101 |
+
|
2102 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.2.2) #-#-#-#-#
|
2103 |
+
#. Author of the plugin/theme
|
2104 |
+
#: modules/sds-blog/sds-blog.php:49
|
2105 |
+
msgid "SEO Design Solutions"
|
2106 |
+
msgstr ""
|
2107 |
+
|
2108 |
+
#: modules/sds-blog/sds-blog.php:50
|
2109 |
+
msgid ""
|
2110 |
+
"The search engine optimization articles below are loaded from the website of "
|
2111 |
+
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
2112 |
+
"an article’s title to read it."
|
2113 |
+
msgstr ""
|
2114 |
+
|
2115 |
+
#: modules/settings/global-settings.php:18 modules/settings/settings.php:29
|
2116 |
+
msgid "Global Settings"
|
2117 |
+
msgstr ""
|
2118 |
+
|
2119 |
+
#: modules/settings/global-settings.php:40
|
2120 |
+
msgid "Enable nofollow’d attribution link"
|
2121 |
+
msgstr ""
|
2122 |
+
|
2123 |
+
#: modules/settings/global-settings.php:41
|
2124 |
+
msgid "Enable attribution link CSS styling"
|
2125 |
+
msgstr ""
|
2126 |
+
|
2127 |
+
#: modules/settings/global-settings.php:42
|
2128 |
+
msgid "Notify me about unnecessary active plugins"
|
2129 |
+
msgstr ""
|
2130 |
+
|
2131 |
+
#: modules/settings/global-settings.php:43
|
2132 |
+
msgid "Insert comments around HTML code insertions"
|
2133 |
+
msgstr ""
|
2134 |
+
|
2135 |
+
#: modules/settings/install.php:18
|
2136 |
+
msgid "Upgrade/Downgrade/Reinstall"
|
2137 |
+
msgstr ""
|
2138 |
+
|
2139 |
+
#: modules/settings/install.php:19
|
2140 |
+
msgid "Installer"
|
2141 |
+
msgstr ""
|
2142 |
+
|
2143 |
+
#: modules/settings/install.php:23 modules/settings/install.php:48
|
2144 |
+
msgid "Upgrade"
|
2145 |
+
msgstr ""
|
2146 |
+
|
2147 |
+
#: modules/settings/install.php:24 modules/settings/install.php:71
|
2148 |
+
msgid "Downgrade"
|
2149 |
+
msgstr ""
|
2150 |
+
|
2151 |
+
#: modules/settings/install.php:25 modules/settings/install.php:86
|
2152 |
+
msgid "Reinstall"
|
2153 |
+
msgstr ""
|
2154 |
+
|
2155 |
+
#: modules/settings/install.php:42
|
2156 |
+
msgid ""
|
2157 |
+
"From the list below, select the version to which you would like to upgrade. "
|
2158 |
+
"Then click the “Upgrade” button at the bottom of the screen."
|
2159 |
+
msgstr ""
|
2160 |
+
|
2161 |
+
#: modules/settings/install.php:51
|
2162 |
+
msgid "You are already running the latest version."
|
2163 |
+
msgstr ""
|
2164 |
+
|
2165 |
+
#: modules/settings/install.php:53
|
2166 |
+
msgid ""
|
2167 |
+
"There was an error retrieving the list of available versions. Please try "
|
2168 |
+
"again later. You can also upgrade to the latest version of SEO Ultimate "
|
2169 |
+
"using the WordPress plugin upgrader."
|
2170 |
+
msgstr ""
|
2171 |
+
|
2172 |
+
#: modules/settings/install.php:62
|
2173 |
+
msgid ""
|
2174 |
+
"Downgrading is provided as a convenience only and is not officially "
|
2175 |
+
"supported. Although unlikely, you may lose data in the downgrading process. "
|
2176 |
+
"It is your responsibility to backup your database before proceeding."
|
2177 |
+
msgstr ""
|
2178 |
+
|
2179 |
+
#: modules/settings/install.php:65
|
2180 |
msgid ""
|
2181 |
+
"From the list below, select the version to which you would like to "
|
2182 |
+
"downgrade. Then click the “Downgrade” button at the bottom of "
|
2183 |
+
"the screen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: modules/settings/install.php:74
|
2187 |
+
msgid ""
|
2188 |
+
"Downgrading to versions earlier than %s is not supported because doing so "
|
2189 |
+
"will result in data loss."
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: modules/settings/install.php:76
|
2193 |
+
msgid ""
|
2194 |
+
"There was an error retrieving the list of available versions. Please try "
|
2195 |
+
"again later."
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: modules/settings/install.php:81
|
2199 |
+
msgid ""
|
2200 |
+
"To download and install a fresh copy of the SEO Ultimate version you are "
|
2201 |
+
"currently using, click the “Reinstall” button below."
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: modules/settings/install.php:108
|
2205 |
+
msgid "Your Current Version"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: modules/settings/install.php:110
|
2209 |
+
msgid "Latest Version"
|
2210 |
+
msgstr ""
|
2211 |
+
|
2212 |
+
#: modules/settings/install.php:130
|
2213 |
msgid ""
|
2214 |
+
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
2215 |
+
"blog."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: modules/settings/install.php:140
|
2219 |
+
msgid "Downgrade to SEO Ultimate %s"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: modules/settings/install.php:143
|
2223 |
+
msgid "Reinstall SEO Ultimate %s"
|
2224 |
+
msgstr ""
|
2225 |
+
|
2226 |
+
#: modules/settings/install.php:146
|
2227 |
+
msgid "Upgrade to SEO Ultimate %s"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
#: modules/settings/settings-data.php:16
|
2385 |
"You can erase all your SEO Ultimate settings and restore them to “"
|
2386 |
"factory defaults” by clicking the button below."
|
2387 |
msgstr ""
|
2388 |
+
|
2389 |
+
#: modules/settings/settings-data.php:274
|
2390 |
+
msgid ""
|
2391 |
+
"Are you sure you want to erase all module settings? This cannot be undone."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: modules/settings/settings-data.php:275
|
2395 |
+
msgid "Restore Default Settings"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
#: modules/settings/settings.php:12
|
2403 |
msgid "SEO Ultimate Plugin Settings"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.2.2) #-#-#-#-#
|
2407 |
#. Plugin Name of the plugin/theme
|
2408 |
#: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:791
|
2409 |
msgid "SEO Ultimate"
|
2416 |
"plugin as a whole.</p>\r\n"
|
2417 |
msgstr ""
|
2418 |
|
|
|
|
|
|
|
|
|
2419 |
#: modules/settings/settings.php:30
|
2420 |
msgid ""
|
2421 |
"\r\n"
|
2455 |
"</ul>\r\n"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: modules/settings/uninstall.php:17
|
2459 |
+
msgid "Uninstaller"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1278
|
2463 |
+
msgid "Uninstall"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: modules/settings/uninstall.php:27
|
2467 |
msgid ""
|
2468 |
+
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
2469 |
+
"files."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: modules/settings/uninstall.php:30
|
2473 |
msgid ""
|
2474 |
+
"Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
|
2475 |
+
"your SEO Ultimate settings and cannot be undone."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: modules/settings/uninstall.php:31
|
2479 |
+
msgid "Uninstall Now"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: modules/settings/uninstall.php:35 modules/settings/uninstall.php:42
|
2483 |
+
msgid "Uninstall SEO Ultimate"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: modules/settings/uninstall.php:46
|
2487 |
+
msgid "Deleted settings."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: modules/settings/uninstall.php:53
|
2491 |
+
msgid "An error occurred while deleting files."
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: modules/settings/uninstall.php:55
|
2495 |
+
msgid "Deleted files."
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: modules/settings/uninstall.php:56
|
2499 |
+
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: modules/sharing-buttons/sharing-buttons.php:12
|
2503 |
+
#: modules/sharing-buttons/sharing-buttons.php:72
|
2504 |
+
msgid "Sharing Facilitator"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: modules/sharing-buttons/sharing-buttons.php:25
|
2508 |
+
msgid "Bookmark and Share"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: modules/sharing-buttons/sharing-buttons.php:39
|
2512 |
+
msgid "Which provider would you like to use for your sharing buttons?"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: modules/sharing-buttons/sharing-buttons.php:41
|
2516 |
+
msgid "None; disable sharing buttons"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: modules/sharing-buttons/sharing-buttons.php:42
|
2520 |
+
msgid "Use the ShareThis button"
|
|
|
|
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: modules/sharing-buttons/sharing-buttons.php:43
|
2524 |
+
msgid "Use the AddThis button"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: modules/sharing-buttons/sharing-buttons.php:73
|
2528 |
+
msgid ""
|
2529 |
+
"\r\n"
|
2530 |
+
"<ul>\r\n"
|
2531 |
+
"\t<li><strong>What it does:</strong> Sharing Facilitator adds buttons to "
|
2532 |
+
"your posts/pages that make it easy for visitors to share your content.</li>"
|
2533 |
+
"\r\n"
|
2534 |
+
"\t<li><strong>Why it helps:</strong> When visitors share your content on "
|
2535 |
+
"social networking sites, this can build links to your site. Sharing "
|
2536 |
+
"Facilitator makes it easy for visitors to do this.</li>\r\n"
|
2537 |
+
"\t<li><strong>How to use it:</strong> Pick which button type you’d "
|
2538 |
+
"like to use (ShareThis or AddThis) and click Save Changes. Try enabling each "
|
2539 |
+
"button on your site and see which one you like better.</li>\r\n"
|
2540 |
+
"</ul>\r\n"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: modules/slugs/slugs.php:12
|
2544 |
+
msgid "Slug Optimizer"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: modules/slugs/slugs.php:16
|
2548 |
+
msgid "Words to Remove"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: modules/slugs/slugs.php:77
|
2552 |
+
msgid ""
|
2553 |
+
"\r\n"
|
2554 |
+
"<ul>\r\n"
|
2555 |
+
"\t<li><strong>What it does:</strong> Slug Optimizer removes common words "
|
2556 |
+
"from the portion of a post’s or Page’s URL that is based on its "
|
2557 |
+
"title. (This portion is also known as the “slug.”)</li>\r\n"
|
2558 |
+
"\t<li><strong>Why it helps:</strong> Slug Optimizer increases keyword "
|
2559 |
+
"potency because there are fewer words in your URLs competing for relevance.</"
|
2560 |
+
"li>\r\n"
|
2561 |
+
"\t<li><strong>How to use it:</strong> Slug Optimizer works without any "
|
2562 |
+
"action required on your part. When you add a new post in your WordPress "
|
2563 |
+
"admin and specify a title for it, WordPress will generate a slug and the new "
|
2564 |
+
"post’s future URL will appear below the title box. While WordPress is "
|
2565 |
+
"generating the slug, Slug Optimizer takes common words out of it. You can "
|
2566 |
+
"use the textbox on Slug Optimizer’s admin page to specify which common "
|
2567 |
+
"words are removed.</li>\r\n"
|
2568 |
+
"</ul>\r\n"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
+
#: modules/slugs/slugs.php:88
|
2572 |
+
msgid ""
|
2573 |
+
"\r\n"
|
2574 |
+
"<ul>\r\n"
|
2575 |
+
"\t<li><strong>What’s a slug?</strong><br />The slug of a post or page "
|
2576 |
+
"is the portion of its URL that is based on its title. When you edit a post "
|
2577 |
+
"or Page in WordPress, the slug is the yellow-highlighted portion of the "
|
2578 |
+
"Permalink beneath the Title textbox.</li>\r\n"
|
2579 |
+
"\t<li><strong>Does the Slug Optimizer change my existing URLs?</strong><br /"
|
2580 |
+
">No. Slug Optimizer will not relocate your content by changing existing "
|
2581 |
+
"URLs. Slug Optimizer only takes effect on new posts and pages.</li>\r\n"
|
2582 |
+
"\t<li>\r\n"
|
2583 |
+
"\t\t<p><strong>How do I see Slug Optimizer in action?</strong><br />Follow "
|
2584 |
+
"these steps:</p>\r\n"
|
2585 |
+
"\t\t<ol>\r\n"
|
2586 |
+
"\t\t\t<li>Create a new post/Page in WordPress.</li>\r\n"
|
2587 |
+
"\t\t\t<li>Type in a title containing some common and uncommon words.</li>\r\n"
|
2588 |
+
"\t\t\t<li>Click outside the Title box. WordPress will insert a URL labeled "
|
2589 |
+
"“Permalink” below the Title textbox. The Slug Optimizer will "
|
2590 |
+
"have removed the common words from the URL.</li>\r\n"
|
2591 |
+
"\t\t</ol>\r\n"
|
2592 |
+
"\t</li>\r\n"
|
2593 |
+
"\t<li><strong>What if I want to include a common word in my slug?</"
|
2594 |
+
"strong><br />When editing the post or page in question, just click the "
|
2595 |
+
"“Edit” button next to the permalink and change the slug as "
|
2596 |
+
"desired. The Slug Optimizer won’t remove words from a manually-edited "
|
2597 |
+
"slug.</li>\r\n"
|
2598 |
+
"\t<li><strong>If I edit the optimized slug but then change my mind, how do I "
|
2599 |
+
"revert back to the optimized slug?</strong><br />When editing the post or "
|
2600 |
+
"page in question, just click the “Edit” button next to the "
|
2601 |
+
"permalink; a “Save” button will appear in its place. Next erase "
|
2602 |
+
"the contents of the textbox, and then click the aforementioned “"
|
2603 |
+
"Save” button.</li>\r\n"
|
2604 |
+
"</ul>\r\n"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: modules/slugs/slugs.php:108
|
2608 |
msgid ""
|
2609 |
+
"\r\n"
|
2610 |
+
"<ul>\r\n"
|
2611 |
+
"\t<li><strong>Why didn’t the Slug Optimizer remove common words from "
|
2612 |
+
"my slug?</strong><br />It’s possible that every word in your post "
|
2613 |
+
"title is in the list of words to remove. In this case, Slug Optimizer "
|
2614 |
+
"doesn’t remove the words, because if it did, you’d end up with a "
|
2615 |
+
"blank slug.</li>\r\n"
|
2616 |
+
"</ul>\r\n"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
#: modules/titles/titles.php:12
|
2941 |
"</ul>\r\n"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: modules/titles/titles.php:443
|
2945 |
+
msgid ""
|
2946 |
+
"\r\n"
|
2947 |
+
"<ul>\r\n"
|
2948 |
+
"\t<li><strong>Does the Title Tag Rewriter edit my post/page titles?</"
|
2949 |
+
"strong><br />No. The Title Tag Rewriter edits the <code><title></code> "
|
2950 |
+
"tags of your site, not your post/page titles.</li>\r\n"
|
2951 |
+
"\t<li><strong>Will rewriting the title tags of my posts change their "
|
2952 |
+
"permalinks/URLs?</strong><br />No.</li>\r\n"
|
2953 |
+
"\t<li><strong>What’s the difference between the “title” "
|
2954 |
+
"and the “title tag” of a post/page?</strong><br />The “"
|
2955 |
+
"title” is the title of your post or page that’s used in your "
|
2956 |
+
"site’s theme, in your site’s admin, in your site’s RSS "
|
2957 |
+
"feeds, and in your site’s <code><title></code> tags. A <code><"
|
2958 |
+
"title></code> tag is the title of a specific webpage, and it appears in "
|
2959 |
+
"your browser’s title bar and in search result listings. Title Tag "
|
2960 |
+
"Rewriter lets you edit your post’s <code><title></code> tags "
|
2961 |
+
"without editing their actual titles. This means you can edit a post’s "
|
2962 |
+
"title as it appears in search results, but not as it appears on your site.</"
|
2963 |
+
"li>\r\n"
|
2964 |
+
"</ul>\r\n"
|
2965 |
+
msgstr ""
|
2966 |
+
|
2967 |
+
#: modules/titles/titles.php:454
|
2968 |
+
msgid ""
|
2969 |
+
"\r\n"
|
2970 |
+
"<ul>\r\n"
|
2971 |
+
"\t<li><strong>Why isn’t Title Tag Rewriter changing my <code><"
|
2972 |
+
"title></code> tags?</strong><br />Try disabling other SEO plugins, as "
|
2973 |
+
"they may be conflicting with SEO Ultimate. If you’re using the default "
|
2974 |
+
"“output buffering” rewrite method, check to make sure your theme "
|
2975 |
+
"is <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' "
|
2976 |
+
"target='_blank'>plugin-friendly</a>. If you're using the “"
|
2977 |
+
"filtering” rewrite method, check your theme’s <code>header.php</"
|
2978 |
+
"code> file and make sure the <code><title></code> tag looks like this: "
|
2979 |
+
"<code><title><?php wp_title(''); ?></title></code>.</li>"
|
2980 |
+
"\r\n"
|
2981 |
+
"</ul>\r\n"
|
2982 |
+
msgstr ""
|
2983 |
+
|
2984 |
+
#: modules/user-code/user-code.php:12
|
2985 |
+
msgid "Code Inserter"
|
2986 |
+
msgstr ""
|
2987 |
+
|
2988 |
+
#: modules/user-code/user-code.php:27
|
2989 |
+
msgid "Everywhere"
|
2990 |
+
msgstr ""
|
2991 |
+
|
2992 |
+
#: modules/user-code/user-code.php:34
|
2993 |
+
msgid "<head> Tag"
|
2994 |
+
msgstr ""
|
2995 |
+
|
2996 |
+
#: modules/user-code/user-code.php:35
|
2997 |
+
msgid "Before Item Content"
|
2998 |
+
msgstr ""
|
2999 |
+
|
3000 |
+
#: modules/user-code/user-code.php:36
|
3001 |
+
msgid "After Item Content"
|
3002 |
+
msgstr ""
|
3003 |
+
|
3004 |
+
#: modules/user-code/user-code.php:37
|
3005 |
+
msgid "Footer"
|
3006 |
+
msgstr ""
|
3007 |
+
|
3008 |
+
#: modules/user-code/user-code.php:51
|
3009 |
+
msgid "Code Inserter module"
|
3010 |
+
msgstr ""
|
3011 |
+
|
3012 |
+
#: modules/user-code/user-code.php:71
|
3013 |
+
msgid ""
|
3014 |
+
"\r\n"
|
3015 |
+
"<ul>\r\n"
|
3016 |
+
"\t<li><strong>What it does:</strong> Code Inserter can add custom HTML code "
|
3017 |
+
"to various parts of your site.</li>\r\n"
|
3018 |
+
"\t<li>\r\n"
|
3019 |
+
"\t\t<p><strong>Why it helps:</strong> Code Inserter is useful for inserting "
|
3020 |
+
"third-party code that can improve the SEO or user experience of your site. "
|
3021 |
+
"For example, you can use Code Inserter to add Google Analytics code to your "
|
3022 |
+
"footer, Feedburner FeedFlares or social media widgets after your posts, or "
|
3023 |
+
"Google AdSense section targeting code before/after your content.</p>\r\n"
|
3024 |
+
"\t\t<p>Using Code Inserter is easier than editing your theme manually "
|
3025 |
+
"because your custom code is stored in one convenient location and will be "
|
3026 |
+
"added to your site even if you change your site’s theme.</p>\r\n"
|
3027 |
+
"\t</li>\r\n"
|
3028 |
+
"\t<li><strong>How to use it:</strong> Just paste the desired HTML code into "
|
3029 |
+
"the appropriate fields and then click Save Changes.</li>\r\n"
|
3030 |
+
"</ul>\r\n"
|
3031 |
+
msgstr ""
|
3032 |
+
|
3033 |
+
#: modules/user-code/user-code.php:85
|
3034 |
+
msgid ""
|
3035 |
+
"\r\n"
|
3036 |
+
"<ul>\r\n"
|
3037 |
+
"\t<li><strong>Why doesn't my code appear on my site?</strong><br />It’"
|
3038 |
+
"s possible that your theme doesn't have the proper “hooks,” "
|
3039 |
+
"which are pieces of code that let WordPress plugins insert custom HTML into "
|
3040 |
+
"your theme. <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' "
|
3041 |
+
"target='_blank'>Click here</a> for information on how to check your theme "
|
3042 |
+
"and add the hooks if needed.</li>\r\n"
|
3043 |
+
"</ul>\r\n"
|
3044 |
+
msgstr ""
|
3045 |
+
|
3046 |
+
#: modules/widgets/widgets.php:12
|
3047 |
+
msgid "SEO Ultimate Widgets"
|
3048 |
+
msgstr ""
|
3049 |
+
|
3050 |
+
#: modules/widgets/widgets.php:36
|
3051 |
+
msgid ""
|
3052 |
+
"On category archives, displays a list of child categories and/or posts in "
|
3053 |
+
"the category. Displays a list of top-level categories everywhere else. "
|
3054 |
+
"Powered by the SEO Ultimate plugin."
|
3055 |
+
msgstr ""
|
3056 |
+
|
3057 |
+
#: modules/widgets/widgets.php:37
|
3058 |
+
msgid "Siloed Categories"
|
3059 |
+
msgstr ""
|
3060 |
+
|
3061 |
+
#: modules/widgets/widgets.php:51
|
3062 |
+
msgid "Tags"
|
3063 |
+
msgstr ""
|
3064 |
+
|
3065 |
+
#: modules/widgets/widgets.php:130
|
3066 |
+
msgid "Title:"
|
3067 |
+
msgstr ""
|
3068 |
+
|
3069 |
+
#: modules/widgets/widgets.php:134
|
3070 |
+
msgid "Show post counts"
|
3071 |
+
msgstr ""
|
3072 |
+
|
3073 |
+
#: modules/widgets/widgets.php:136
|
3074 |
+
msgid "Use term descriptions in title attributes"
|
3075 |
+
msgstr ""
|
3076 |
+
|
3077 |
+
#: modules/widgets/widgets.php:138
|
3078 |
+
msgid "Taxonomy:"
|
3079 |
+
msgstr ""
|
3080 |
+
|
3081 |
+
#: modules/widgets/widgets.php:163
|
3082 |
msgid ""
|
3083 |
+
"Add this widget to display Deeplink Juggernaut’s Footer Links in a "
|
3084 |
+
"widget area of your choosing rather than the default wp_footer section. "
|
3085 |
+
"Powered by the SEO Ultimate plugin."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: modules/widgets/widgets.php:217
|
3089 |
+
msgid "Title: <em>(optional)</em>"
|
3090 |
+
msgstr ""
|
3091 |
+
|
3092 |
+
#: modules/widgets/widgets.php:221
|
3093 |
+
msgid "Display as a list"
|
3094 |
+
msgstr ""
|
3095 |
+
|
3096 |
+
#: modules/widgets/widgets.php:224
|
3097 |
+
msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
|
|
|
|
|
|
|
|
|
|
|
3098 |
msgstr ""
|
3099 |
|
3100 |
#: modules/wp-settings/wp-settings.php:14
|
3174 |
msgid "Go to setting »"
|
3175 |
msgstr ""
|
3176 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3177 |
#: plugin/class.seo-ultimate.php:791
|
3178 |
msgid "SEO"
|
3179 |
msgstr ""
|
3198 |
|
3199 |
#: plugin/class.seo-ultimate.php:1133
|
3200 |
msgid ""
|
3201 |
+
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate "
|
3202 |
+
"%1$s to avoid plugin conflicts."
|
3203 |
msgstr ""
|
3204 |
|
3205 |
#: plugin/class.seo-ultimate.php:1177
|