Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 7.5.5 |
Comparing to | |
See all releases |
Code changes from version 7.5.4 to 7.5.5
- modules/meta/meta-keywords.php +0 -1
- modules/titles/titles.php +15 -5
- readme.txt +4 -1
- seo-ultimate.php +4 -4
- translations/seo-ultimate.pot +53 -47
modules/meta/meta-keywords.php
CHANGED
@@ -22,7 +22,6 @@ class SU_MetaKeywords extends SU_Module {
|
|
22 |
|
23 |
function init() {
|
24 |
add_action('su_head', array(&$this, 'head_tag_output'));
|
25 |
-
add_filter('su_postmeta_help', array(&$this, 'postmeta_help'), 20);
|
26 |
}
|
27 |
|
28 |
function get_default_settings() {
|
22 |
|
23 |
function init() {
|
24 |
add_action('su_head', array(&$this, 'head_tag_output'));
|
|
|
25 |
}
|
26 |
|
27 |
function get_default_settings() {
|
modules/titles/titles.php
CHANGED
@@ -59,7 +59,7 @@ class SU_Titles extends SU_Module {
|
|
59 |
$this->checkbox('terms_ucwords', __('Convert lowercase category/tag names to title case when used in title tags.', 'seo-ultimate'), __('Title Tag Variables', 'seo-ultimate'));
|
60 |
$this->radiobuttons('rewrite_method', array(
|
61 |
'ob' => __('Use output buffering — no configuration required, but slower (default)', 'seo-ultimate')
|
62 |
-
, 'filter' => __('Use filtering — faster, but configuration required (see the “Settings Help” dropdown for details)', 'seo-ultimate')
|
63 |
), __('Rewrite Method', 'seo-ultimate'));
|
64 |
$this->admin_form_table_end();
|
65 |
}
|
@@ -365,7 +365,7 @@ class SU_Titles extends SU_Module {
|
|
365 |
|
366 |
$screen->add_help_tab(array(
|
367 |
'id' => 'su-titles-vars'
|
368 |
-
, 'title' => __('Formats
|
369 |
, 'content' => __("
|
370 |
<p>Various variables, surrounded in {curly brackets}, are provided for use in the title formats. All settings support the {blog} variable, which is replaced with the name of the blog, and the {tagline} variable, which is replaced with the blog tagline as set under <a href='options-general.php'>Settings ⇒ General</a>.</p>
|
371 |
|
@@ -428,16 +428,26 @@ class SU_Titles extends SU_Module {
|
|
428 |
|
429 |
$screen->add_help_tab(array(
|
430 |
'id' => 'su-titles-settings'
|
431 |
-
, 'title' => __('Settings
|
432 |
, 'content' => __("
|
433 |
<p>Here’s documentation for the options on the “Settings” tab.</p>
|
434 |
<ul>
|
435 |
<li>
|
436 |
<p><strong>Rewrite Method</strong> — This setting controls the method by which Title Tag Rewriter edits your site’s <code><title></code> tags.</p>
|
437 |
<ul>
|
438 |
-
<li><strong>Use output buffering</strong> — This is the “traditional” method that most SEO plugins use.
|
|
|
|
|
|
|
|
|
|
|
|
|
439 |
<li>
|
440 |
-
<p><strong>Use filtering</strong> — With this method, SEO Ultimate will register itself with WordPress and will replace
|
|
|
|
|
|
|
|
|
441 |
<p>Here’s how to set up filtering:</p>
|
442 |
<ol>
|
443 |
<li>Go to <a href='theme-editor.php'>Appearance ⇒ Editor</a> (if you get a permissions error, you may be on a WordPress multi-site environment and may not be able to use the filtering rewrite method)</li>
|
59 |
$this->checkbox('terms_ucwords', __('Convert lowercase category/tag names to title case when used in title tags.', 'seo-ultimate'), __('Title Tag Variables', 'seo-ultimate'));
|
60 |
$this->radiobuttons('rewrite_method', array(
|
61 |
'ob' => __('Use output buffering — no configuration required, but slower (default)', 'seo-ultimate')
|
62 |
+
, 'filter' => __('Use filtering — faster, but configuration required (see the “Settings Tab” section of the “Help” dropdown for details)', 'seo-ultimate')
|
63 |
), __('Rewrite Method', 'seo-ultimate'));
|
64 |
$this->admin_form_table_end();
|
65 |
}
|
365 |
|
366 |
$screen->add_help_tab(array(
|
367 |
'id' => 'su-titles-vars'
|
368 |
+
, 'title' => __('Default Formats Tab', 'seo-ultimate')
|
369 |
, 'content' => __("
|
370 |
<p>Various variables, surrounded in {curly brackets}, are provided for use in the title formats. All settings support the {blog} variable, which is replaced with the name of the blog, and the {tagline} variable, which is replaced with the blog tagline as set under <a href='options-general.php'>Settings ⇒ General</a>.</p>
|
371 |
|
428 |
|
429 |
$screen->add_help_tab(array(
|
430 |
'id' => 'su-titles-settings'
|
431 |
+
, 'title' => __('Settings Tab', 'seo-ultimate')
|
432 |
, 'content' => __("
|
433 |
<p>Here’s documentation for the options on the “Settings” tab.</p>
|
434 |
<ul>
|
435 |
<li>
|
436 |
<p><strong>Rewrite Method</strong> — This setting controls the method by which Title Tag Rewriter edits your site’s <code><title></code> tags.</p>
|
437 |
<ul>
|
438 |
+
<li><strong>Use output buffering</strong> — This is the “traditional” method that most SEO plugins use.
|
439 |
+
With this method, SEO Ultimate will intercept your site’s <code><head></code> tag section as it’s being outputted,
|
440 |
+
locate the <code><title></code> tag, edit its value, and then output the edited <code><head></code> data.
|
441 |
+
The good thing about this method is that you don’t have to edit your theme in any way, as SEO Ultimate will overwrite
|
442 |
+
whatever your theme puts in your <code><title></code> tag. The bad thing is that this output interception takes a few extra
|
443 |
+
milliseconds to complete. If you are concerned about performance, are comfortable editing your theme’s header.php file,
|
444 |
+
and will remember to edit the header.php file of any new themes you activate, you may want to try the filtering rewrite method.</li>
|
445 |
<li>
|
446 |
+
<p><strong>Use filtering</strong> — With this method, SEO Ultimate will register itself with WordPress and will replace
|
447 |
+
WordPress’s <code><title></code> tag output with its own. This method can only edit the text that WordPress itself
|
448 |
+
generates for the <code><title></code> tag; the filtering method can’t edit anything extra your theme may add.
|
449 |
+
For this reason, you need to edit your theme to make sure it’s only pulling <code><title></code> tag data from WordPress
|
450 |
+
and is not adding anything else.</p>
|
451 |
<p>Here’s how to set up filtering:</p>
|
452 |
<ol>
|
453 |
<li>Go to <a href='theme-editor.php'>Appearance ⇒ Editor</a> (if you get a permissions error, you may be on a WordPress multi-site environment and may not be able to use the filtering rewrite method)</li>
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions, JohnLamansky
|
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate, Open Graph, og, microdata, Facebook, Twitter, Schema.org
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.4.1
|
6 |
-
Stable tag: 7.5.
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, Open Graph, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
@@ -277,6 +277,9 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
277 |
|
278 |
== Changelog ==
|
279 |
|
|
|
|
|
|
|
280 |
= Version 7.5.4 (August 11, 2012) =
|
281 |
* Bugfix: Fixed broken settings reset function (bug introduced in 5.0)
|
282 |
|
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, Open Graph, og, microdata, Facebook, Twitter, Schema.org
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.4.1
|
6 |
+
Stable tag: 7.5.5
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, Open Graph, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
277 |
|
278 |
== Changelog ==
|
279 |
|
280 |
+
= Version 7.5.5 (August 12, 2012) =
|
281 |
+
* Bugfix: Fixed PHP warning that appeared on the post editor screen with Meta Keywords Editor enabled (bug introduced in 7.5.3)
|
282 |
+
|
283 |
= Version 7.5.4 (August 11, 2012) =
|
284 |
* Bugfix: Fixed broken settings reset function (bug introduced in 5.0)
|
285 |
|
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.5.
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
|
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
-
* @version 7.5.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.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.5.
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/7.5.
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
+
Version: 7.5.5
|
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.5.5
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
+
define('SU_VERSION', '7.5.5');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/7.5.5');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
translations/seo-ultimate.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: SEO Ultimate 7.5.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
-
"POT-Creation-Date: 2012-08-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -208,7 +208,7 @@ msgstr ""
|
|
208 |
#: modules/404s/fofs.php:19 modules/canonical/canonical.php:212
|
209 |
#: modules/files/files.php:144 modules/link-nofollow/link-nofollow.php:132
|
210 |
#: modules/linkbox/linkbox.php:128 modules/linkbox/linkbox.php:135
|
211 |
-
#: modules/meta/meta-descriptions.php:193 modules/meta/meta-keywords.php:
|
212 |
#: modules/meta/meta-robots.php:52 modules/meta/webmaster-verify.php:84
|
213 |
#: modules/more-links/more-links.php:104 modules/more-links/more-links.php:111
|
214 |
#: modules/rich-snippets/rich-snippets.php:391
|
@@ -266,8 +266,8 @@ msgstr ""
|
|
266 |
|
267 |
#: modules/404s/fofs.php:45 modules/linkbox/linkbox.php:129
|
268 |
#: modules/linkbox/linkbox.php:140 modules/meta/meta-descriptions.php:204
|
269 |
-
#: modules/meta/meta-keywords.php:
|
270 |
-
#: modules/rich-snippets/rich-snippets.php:402
|
271 |
msgid "Settings Help"
|
272 |
msgstr ""
|
273 |
|
@@ -317,10 +317,10 @@ msgid ""
|
|
317 |
msgstr ""
|
318 |
|
319 |
#: modules/404s/fofs.php:74 modules/files/files.php:165
|
320 |
-
#: modules/meta/meta-descriptions.php:225 modules/meta/meta-keywords.php:
|
321 |
#: modules/meta/meta-robots.php:102
|
322 |
#: modules/rich-snippets/rich-snippets.php:411 modules/slugs/slugs.php:114
|
323 |
-
#: modules/slugs/slugs.php:130 modules/titles/titles.php:
|
324 |
#: modules/user-code/user-code.php:111
|
325 |
msgid "Troubleshooting"
|
326 |
msgstr ""
|
@@ -853,7 +853,7 @@ msgid "A Deleted Term"
|
|
853 |
msgstr ""
|
854 |
|
855 |
#: modules/class.su-module.php:2761 modules/meta/meta-descriptions.php:31
|
856 |
-
#: modules/meta/meta-keywords.php:
|
857 |
#: plugin/class.seo-ultimate.php:1770
|
858 |
msgid "Blog Homepage"
|
859 |
msgstr ""
|
@@ -964,10 +964,10 @@ msgid ""
|
|
964 |
msgstr ""
|
965 |
|
966 |
#: modules/files/files.php:155 modules/meta/meta-descriptions.php:216
|
967 |
-
#: modules/meta/meta-keywords.php:
|
968 |
#: modules/more-links/more-links.php:105 modules/more-links/more-links.php:116
|
969 |
#: modules/settings/settings.php:81 modules/slugs/slugs.php:113
|
970 |
-
#: modules/slugs/slugs.php:125 modules/titles/titles.php:
|
971 |
msgid "FAQ"
|
972 |
msgstr ""
|
973 |
|
@@ -1391,7 +1391,7 @@ msgid ""
|
|
1391 |
"</ul>\r\n"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: modules/meta/meta-descriptions.php:226 modules/meta/meta-keywords.php:
|
1395 |
#: modules/meta/meta-robots.php:103
|
1396 |
msgid ""
|
1397 |
"\r\n"
|
@@ -1417,41 +1417,41 @@ msgstr ""
|
|
1417 |
msgid "Meta Keywords Editor"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: modules/meta/meta-keywords.php:19 modules/meta/meta-keywords.php:
|
1421 |
msgid "Meta Keywords"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: modules/meta/meta-keywords.php:
|
1425 |
#: modules/opengraph/opengraph.php:264
|
1426 |
msgid "Sitewide Values"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: modules/meta/meta-keywords.php:
|
1430 |
#: modules/opengraph/opengraph.php:265
|
1431 |
msgid "Default Values"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: modules/meta/meta-keywords.php:
|
1435 |
msgid "Sitewide Keywords"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: modules/meta/meta-keywords.php:
|
1439 |
msgid "(Separate with commas)"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: modules/meta/meta-keywords.php:
|
1443 |
msgid "The %d most commonly-used words"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: modules/meta/meta-keywords.php:
|
1447 |
msgid "Blog Homepage Meta Keywords"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: modules/meta/meta-keywords.php:
|
1451 |
msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: modules/meta/meta-keywords.php:
|
1455 |
msgid ""
|
1456 |
"\r\n"
|
1457 |
"<p>Meta Keywords Editor lets you tell search engines what keywords are "
|
@@ -1462,7 +1462,7 @@ msgid ""
|
|
1462 |
"p>\r\n"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: modules/meta/meta-keywords.php:
|
1466 |
msgid ""
|
1467 |
"\r\n"
|
1468 |
"<ul>\r\n"
|
@@ -1479,7 +1479,7 @@ msgid ""
|
|
1479 |
"</ul>\r\n"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: modules/meta/meta-keywords.php:
|
1483 |
msgid ""
|
1484 |
"\r\n"
|
1485 |
"<ul>\r\n"
|
@@ -2408,7 +2408,7 @@ msgstr ""
|
|
2408 |
msgid "SEO Design Solutions Whitepapers"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.5.
|
2412 |
#. Author of the plugin/theme
|
2413 |
#: modules/sds-blog/sds-blog.php:49
|
2414 |
msgid "SEO Design Solutions"
|
@@ -2724,7 +2724,7 @@ msgstr ""
|
|
2724 |
msgid "SEO Ultimate Plugin Settings"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.5.
|
2728 |
#. Plugin Name of the plugin/theme
|
2729 |
#: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:861
|
2730 |
msgid "SEO Ultimate"
|
@@ -2964,7 +2964,7 @@ msgstr ""
|
|
2964 |
#: modules/titles/titles.php:62
|
2965 |
msgid ""
|
2966 |
"Use filtering — faster, but configuration required (see the “"
|
2967 |
-
"Settings Help” dropdown for details)"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
#: modules/titles/titles.php:63
|
@@ -3103,7 +3103,7 @@ msgid ""
|
|
3103 |
msgstr ""
|
3104 |
|
3105 |
#: modules/titles/titles.php:368
|
3106 |
-
msgid "Formats
|
3107 |
msgstr ""
|
3108 |
|
3109 |
#: modules/titles/titles.php:369
|
@@ -3209,6 +3209,10 @@ msgid ""
|
|
3209 |
"</ul>\r\n"
|
3210 |
msgstr ""
|
3211 |
|
|
|
|
|
|
|
|
|
3212 |
#: modules/titles/titles.php:432
|
3213 |
msgid ""
|
3214 |
"\r\n"
|
@@ -3221,27 +3225,29 @@ msgid ""
|
|
3221 |
"title></code> tags.</p>\r\n"
|
3222 |
"\t\t<ul>\r\n"
|
3223 |
"\t\t\t<li><strong>Use output buffering</strong> — This is the “"
|
3224 |
-
"traditional” method that most SEO plugins use
|
3225 |
-
"Ultimate will intercept your site’s
|
3226 |
-
"section as it’s being outputted,
|
3227 |
-
"tag, edit its value, and then
|
3228 |
-
"
|
3229 |
-
"
|
3230 |
-
"
|
3231 |
-
"
|
3232 |
-
"
|
3233 |
-
"
|
3234 |
-
"
|
3235 |
-
"
|
|
|
3236 |
"\t\t\t<li>\r\n"
|
3237 |
"\t\t\t\t<p><strong>Use filtering</strong> — With this method, SEO "
|
3238 |
-
"Ultimate will register itself with WordPress and will replace "
|
3239 |
-
"
|
3240 |
-
"method can only edit the text that WordPress itself
|
3241 |
-
"<code><title></code> tag; the filtering
|
3242 |
-
"anything extra your theme may add.
|
3243 |
-
"theme to make sure it’s
|
3244 |
-
"
|
|
|
3245 |
"\t\t\t\t<p>Here’s how to set up filtering:</p>\r\n"
|
3246 |
"\t\t\t\t<ol>\r\n"
|
3247 |
"\t\t\t\t\t<li>Go to <a href='theme-editor.php'>Appearance ⇒ Editor</a> "
|
@@ -3264,7 +3270,7 @@ msgid ""
|
|
3264 |
"</ul>\r\n"
|
3265 |
msgstr ""
|
3266 |
|
3267 |
-
#: modules/titles/titles.php:
|
3268 |
msgid ""
|
3269 |
"\r\n"
|
3270 |
"<ul>\r\n"
|
@@ -3287,7 +3293,7 @@ msgid ""
|
|
3287 |
"</ul>\r\n"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: modules/titles/titles.php:
|
3291 |
msgid ""
|
3292 |
"\r\n"
|
3293 |
"<ul>\r\n"
|
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.5.5\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2012-08-12 15:35:15+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
208 |
#: modules/404s/fofs.php:19 modules/canonical/canonical.php:212
|
209 |
#: modules/files/files.php:144 modules/link-nofollow/link-nofollow.php:132
|
210 |
#: modules/linkbox/linkbox.php:128 modules/linkbox/linkbox.php:135
|
211 |
+
#: modules/meta/meta-descriptions.php:193 modules/meta/meta-keywords.php:173
|
212 |
#: modules/meta/meta-robots.php:52 modules/meta/webmaster-verify.php:84
|
213 |
#: modules/more-links/more-links.php:104 modules/more-links/more-links.php:111
|
214 |
#: modules/rich-snippets/rich-snippets.php:391
|
266 |
|
267 |
#: modules/404s/fofs.php:45 modules/linkbox/linkbox.php:129
|
268 |
#: modules/linkbox/linkbox.php:140 modules/meta/meta-descriptions.php:204
|
269 |
+
#: modules/meta/meta-keywords.php:180 modules/meta/meta-robots.php:63
|
270 |
+
#: modules/rich-snippets/rich-snippets.php:402
|
271 |
msgid "Settings Help"
|
272 |
msgstr ""
|
273 |
|
317 |
msgstr ""
|
318 |
|
319 |
#: modules/404s/fofs.php:74 modules/files/files.php:165
|
320 |
+
#: modules/meta/meta-descriptions.php:225 modules/meta/meta-keywords.php:203
|
321 |
#: modules/meta/meta-robots.php:102
|
322 |
#: modules/rich-snippets/rich-snippets.php:411 modules/slugs/slugs.php:114
|
323 |
+
#: modules/slugs/slugs.php:130 modules/titles/titles.php:479
|
324 |
#: modules/user-code/user-code.php:111
|
325 |
msgid "Troubleshooting"
|
326 |
msgstr ""
|
853 |
msgstr ""
|
854 |
|
855 |
#: modules/class.su-module.php:2761 modules/meta/meta-descriptions.php:31
|
856 |
+
#: modules/meta/meta-keywords.php:40 modules/opengraph/opengraph.php:266
|
857 |
#: plugin/class.seo-ultimate.php:1770
|
858 |
msgid "Blog Homepage"
|
859 |
msgstr ""
|
964 |
msgstr ""
|
965 |
|
966 |
#: modules/files/files.php:155 modules/meta/meta-descriptions.php:216
|
967 |
+
#: modules/meta/meta-keywords.php:190 modules/modules/modules.php:190
|
968 |
#: modules/more-links/more-links.php:105 modules/more-links/more-links.php:116
|
969 |
#: modules/settings/settings.php:81 modules/slugs/slugs.php:113
|
970 |
+
#: modules/slugs/slugs.php:125 modules/titles/titles.php:468
|
971 |
msgid "FAQ"
|
972 |
msgstr ""
|
973 |
|
1391 |
"</ul>\r\n"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: modules/meta/meta-descriptions.php:226 modules/meta/meta-keywords.php:204
|
1395 |
#: modules/meta/meta-robots.php:103
|
1396 |
msgid ""
|
1397 |
"\r\n"
|
1417 |
msgid "Meta Keywords Editor"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: modules/meta/meta-keywords.php:19 modules/meta/meta-keywords.php:46
|
1421 |
msgid "Meta Keywords"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: modules/meta/meta-keywords.php:38 modules/meta/meta-robots.php:22
|
1425 |
#: modules/opengraph/opengraph.php:264
|
1426 |
msgid "Sitewide Values"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: modules/meta/meta-keywords.php:39 modules/noindex/noindex.php:50
|
1430 |
#: modules/opengraph/opengraph.php:265
|
1431 |
msgid "Default Values"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: modules/meta/meta-keywords.php:53
|
1435 |
msgid "Sitewide Keywords"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: modules/meta/meta-keywords.php:53
|
1439 |
msgid "(Separate with commas)"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: modules/meta/meta-keywords.php:68
|
1443 |
msgid "The %d most commonly-used words"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: modules/meta/meta-keywords.php:86
|
1447 |
msgid "Blog Homepage Meta Keywords"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: modules/meta/meta-keywords.php:165
|
1451 |
msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: modules/meta/meta-keywords.php:174
|
1455 |
msgid ""
|
1456 |
"\r\n"
|
1457 |
"<p>Meta Keywords Editor lets you tell search engines what keywords are "
|
1462 |
"p>\r\n"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: modules/meta/meta-keywords.php:181
|
1466 |
msgid ""
|
1467 |
"\r\n"
|
1468 |
"<ul>\r\n"
|
1479 |
"</ul>\r\n"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: modules/meta/meta-keywords.php:191
|
1483 |
msgid ""
|
1484 |
"\r\n"
|
1485 |
"<ul>\r\n"
|
2408 |
msgid "SEO Design Solutions Whitepapers"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.5.5) #-#-#-#-#
|
2412 |
#. Author of the plugin/theme
|
2413 |
#: modules/sds-blog/sds-blog.php:49
|
2414 |
msgid "SEO Design Solutions"
|
2724 |
msgid "SEO Ultimate Plugin Settings"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.5.5) #-#-#-#-#
|
2728 |
#. Plugin Name of the plugin/theme
|
2729 |
#: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:861
|
2730 |
msgid "SEO Ultimate"
|
2964 |
#: modules/titles/titles.php:62
|
2965 |
msgid ""
|
2966 |
"Use filtering — faster, but configuration required (see the “"
|
2967 |
+
"Settings Tab” section of the “Help” dropdown for details)"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
#: modules/titles/titles.php:63
|
3103 |
msgstr ""
|
3104 |
|
3105 |
#: modules/titles/titles.php:368
|
3106 |
+
msgid "Default Formats Tab"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
#: modules/titles/titles.php:369
|
3209 |
"</ul>\r\n"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: modules/titles/titles.php:431
|
3213 |
+
msgid "Settings Tab"
|
3214 |
+
msgstr ""
|
3215 |
+
|
3216 |
#: modules/titles/titles.php:432
|
3217 |
msgid ""
|
3218 |
"\r\n"
|
3225 |
"title></code> tags.</p>\r\n"
|
3226 |
"\t\t<ul>\r\n"
|
3227 |
"\t\t\t<li><strong>Use output buffering</strong> — This is the “"
|
3228 |
+
"traditional” method that most SEO plugins use.\r\n"
|
3229 |
+
"\t\t\t\tWith this method, SEO Ultimate will intercept your site’s "
|
3230 |
+
"<code><head></code> tag section as it’s being outputted, \r\n"
|
3231 |
+
"\t\t\t\tlocate the <code><title></code> tag, edit its value, and then "
|
3232 |
+
"output the edited <code><head></code> data. \r\n"
|
3233 |
+
"\t\t\t\tThe good thing about this method is that you don’t have to "
|
3234 |
+
"edit your theme in any way, as SEO Ultimate will overwrite \r\n"
|
3235 |
+
"\t\t\t\twhatever your theme puts in your <code><title></code> tag. The "
|
3236 |
+
"bad thing is that this output interception takes a few extra \r\n"
|
3237 |
+
"\t\t\t\tmilliseconds to complete. If you are concerned about performance, "
|
3238 |
+
"are comfortable editing your theme’s header.php file, \r\n"
|
3239 |
+
"\t\t\t\tand will remember to edit the header.php file of any new themes you "
|
3240 |
+
"activate, you may want to try the filtering rewrite method.</li>\r\n"
|
3241 |
"\t\t\t<li>\r\n"
|
3242 |
"\t\t\t\t<p><strong>Use filtering</strong> — With this method, SEO "
|
3243 |
+
"Ultimate will register itself with WordPress and will replace \r\n"
|
3244 |
+
"\t\t\t\tWordPress’s <code><title></code> tag output with its "
|
3245 |
+
"own. This method can only edit the text that WordPress itself \r\n"
|
3246 |
+
"\t\t\t\tgenerates for the <code><title></code> tag; the filtering "
|
3247 |
+
"method can’t edit anything extra your theme may add. \r\n"
|
3248 |
+
"\t\t\t\tFor this reason, you need to edit your theme to make sure it’s "
|
3249 |
+
"only pulling <code><title></code> tag data from WordPress \r\n"
|
3250 |
+
"\t\t\t\tand is not adding anything else.</p>\r\n"
|
3251 |
"\t\t\t\t<p>Here’s how to set up filtering:</p>\r\n"
|
3252 |
"\t\t\t\t<ol>\r\n"
|
3253 |
"\t\t\t\t\t<li>Go to <a href='theme-editor.php'>Appearance ⇒ Editor</a> "
|
3270 |
"</ul>\r\n"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
+
#: modules/titles/titles.php:469
|
3274 |
msgid ""
|
3275 |
"\r\n"
|
3276 |
"<ul>\r\n"
|
3293 |
"</ul>\r\n"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: modules/titles/titles.php:480
|
3297 |
msgid ""
|
3298 |
"\r\n"
|
3299 |
"<ul>\r\n"
|