Version Description
Download this release
Release Info
Developer | SEO Design Solutions |
Plugin | SEO Ultimate |
Version | 4.4 |
Comparing to | |
See all releases |
Code changes from version 4.3 to 4.4
- modules/documentation.txt +7 -1
- modules/meta/meta-keywords.php +22 -1
- modules/titles/titles.php +2 -2
- plugin/class.seo-ultimate.php +1 -0
- readme.txt +12 -3
- seo-ultimate.php +4 -4
- seo-ultimate.pot +42 -30
modules/documentation.txt
CHANGED
@@ -214,7 +214,9 @@ Meta Keywords Editor lets you tell search engines what keywords are associated w
|
|
214 |
|
215 |
= Settings Help =
|
216 |
|
217 |
-
* **
|
|
|
|
|
218 |
|
219 |
= FAQ =
|
220 |
|
@@ -223,6 +225,10 @@ Meta Keywords Editor lets you tell search engines what keywords are associated w
|
|
223 |
|
224 |
If you have configured your `Settings > Reading` section to use a "frontpage" (i.e. a Page as your homepage), just edit that Page under `Pages > Edit` and use the "Meta Keywords" field in the "SEO Settings" box.
|
225 |
|
|
|
|
|
|
|
|
|
226 |
= Troubleshooting =
|
227 |
|
228 |
* **What do I do if my site has multiple meta tags?**
|
214 |
|
215 |
= Settings Help =
|
216 |
|
217 |
+
* **Sitewide Keywords** -- Here you can enter keywords that describe the overall subject matter of your entire blog. Use commas to separate keywords. These keywords will be put in the `<meta name="keywords" />` tags of all webpages on the site (homepage, posts, pages, archives, etc.).
|
218 |
+
|
219 |
+
* **Blog Homepage Meta Keywords** -- These keywords will be applied only to the _blog_ homepage. Note that if you've specified a "front page" under `Settings > Reading`, you'll need to edit your frontpage and set your frontpage keywords there.
|
220 |
|
221 |
= FAQ =
|
222 |
|
225 |
|
226 |
If you have configured your `Settings > Reading` section to use a "frontpage" (i.e. a Page as your homepage), just edit that Page under `Pages > Edit` and use the "Meta Keywords" field in the "SEO Settings" box.
|
227 |
|
228 |
+
* **What happens if I add a global keyword that I previously assigned to individual posts or pages?**
|
229 |
+
Don't worry; Meta Keywords Editor will remove duplicate keywords automatically.
|
230 |
+
|
231 |
+
|
232 |
= Troubleshooting =
|
233 |
|
234 |
* **What do I do if my site has multiple meta tags?**
|
modules/meta/meta-keywords.php
CHANGED
@@ -19,7 +19,16 @@ class SU_MetaKeywords extends SU_Module {
|
|
19 |
}
|
20 |
|
21 |
function get_admin_page_tabs() {
|
22 |
-
return array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
}
|
24 |
|
25 |
function home_tab() {
|
@@ -47,6 +56,18 @@ class SU_MetaKeywords extends SU_Module {
|
|
47 |
$kw = $tax_keywords[$wp_query->get_queried_object_id()];
|
48 |
}
|
49 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
//Do we have keywords? If so, output them.
|
51 |
if ($kw) {
|
52 |
$kw = su_esc_attr($kw);
|
19 |
}
|
20 |
|
21 |
function get_admin_page_tabs() {
|
22 |
+
return array(
|
23 |
+
__('Default Values', 'seo-ultimate') => 'defaults_tab'
|
24 |
+
, __('Blog Homepage', 'seo-ultimate') => 'home_tab'
|
25 |
+
);
|
26 |
+
}
|
27 |
+
|
28 |
+
function defaults_tab() {
|
29 |
+
$this->admin_form_table_start();
|
30 |
+
$this->textarea('global_keywords', __('Sitewide Keywords', 'seo-ultimate') . '<br /><small><em>' . __('(Separate with commas)', 'seo-ultimate') . '</em></small>');
|
31 |
+
$this->admin_form_table_end();
|
32 |
}
|
33 |
|
34 |
function home_tab() {
|
56 |
$kw = $tax_keywords[$wp_query->get_queried_object_id()];
|
57 |
}
|
58 |
|
59 |
+
if ($globals = $this->get_setting('global_keywords')) {
|
60 |
+
if (strlen($kw)) $kw .= ',';
|
61 |
+
$kw .= $globals;
|
62 |
+
}
|
63 |
+
|
64 |
+
$kw = str_replace(array("\r\n", "\n"), ',', $kw);
|
65 |
+
$kw = explode(',', $kw);
|
66 |
+
$kw = array_map('trim', $kw); //Remove extra spaces from beginning/end of keywords
|
67 |
+
$kw = array_filter($kw); //Remove blank keywords
|
68 |
+
$kw = array_unique($kw); //Remove duplicate keywords
|
69 |
+
$kw = implode(',', $kw);
|
70 |
+
|
71 |
//Do we have keywords? If so, output them.
|
72 |
if ($kw) {
|
73 |
$kw = su_esc_attr($kw);
|
modules/titles/titles.php
CHANGED
@@ -102,7 +102,7 @@ class SU_Titles extends SU_Module {
|
|
102 |
}
|
103 |
|
104 |
function should_rewrite_title() {
|
105 |
-
return (!is_feed() && strlen(strval($this->get_title_format())) > 0);
|
106 |
}
|
107 |
|
108 |
function before_header() {
|
@@ -126,7 +126,7 @@ class SU_Titles extends SU_Module {
|
|
126 |
if (!$title) return $head;
|
127 |
|
128 |
//Replace the old title with the new and return
|
129 |
-
return eregi_replace('<title>[^<]
|
130 |
}
|
131 |
|
132 |
function get_title() {
|
102 |
}
|
103 |
|
104 |
function should_rewrite_title() {
|
105 |
+
return (!is_admin() && !is_feed() && strlen(strval($this->get_title_format())) > 0);
|
106 |
}
|
107 |
|
108 |
function before_header() {
|
126 |
if (!$title) return $head;
|
127 |
|
128 |
//Replace the old title with the new and return
|
129 |
+
return eregi_replace('<title>[^<]*</title>', '<title>'.$title.'</title>', $head);
|
130 |
}
|
131 |
|
132 |
function get_title() {
|
plugin/class.seo-ultimate.php
CHANGED
@@ -747,6 +747,7 @@ class SEO_Ultimate {
|
|
747 |
if ( ($this->dbdata['modules'][$key] > SU_MODULE_SILENCED || !count($this->dbdata['modules']))
|
748 |
&& $module->get_menu_count() > 0
|
749 |
&& $module->get_menu_parent() == 'seo'
|
|
|
750 |
)
|
751 |
$count += $module->get_menu_count();
|
752 |
}
|
747 |
if ( ($this->dbdata['modules'][$key] > SU_MODULE_SILENCED || !count($this->dbdata['modules']))
|
748 |
&& $module->get_menu_count() > 0
|
749 |
&& $module->get_menu_parent() == 'seo'
|
750 |
+
&& $module->is_independent_module()
|
751 |
)
|
752 |
$count += $module->get_menu_count();
|
753 |
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions
|
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
-
Stable tag: 4.
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
@@ -11,11 +11,11 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
|
|
11 |
|
12 |
= Recent Releases =
|
13 |
|
|
|
14 |
* Version 4.3 adds the ability to use the post's excerpt as its default meta description
|
15 |
* Version 4.2 adds the option to exclude specific posts/pages from being autolinked
|
16 |
* Version 4.1 adds tag title capitalization for title tags
|
17 |
* Version 4.0 adds meta description mass-editor for posts, pages, attachments, and custom post types
|
18 |
-
* Version 3.9 adds the ability to build internal links to posts from within the WordPress post editor (as well as other Deeplink Juggernaut improvements)
|
19 |
|
20 |
= Features =
|
21 |
|
@@ -32,8 +32,9 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
32 |
* Increase SERP clickthrough rates by influence search engine result snippets.
|
33 |
* Mass-editor makes it a cinch to go back and add descriptions to old posts.
|
34 |
|
35 |
-
* **Meta Keywords Editor** -- UPDATED in Version 4.
|
36 |
* Edit the `<meta>` keyword tags for posts, pages, and the homepage.
|
|
|
37 |
|
38 |
* **Meta Robot Tags Editor** -- UPDATED in Version 4.0
|
39 |
* Add the `<meta name="robots" content="noindex,follow" />` tag to archives, comment feeds, the login page, and more.
|
@@ -214,6 +215,14 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
214 |
|
215 |
== Changelog ==
|
216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
= Version 4.3 (August 6, 2010) =
|
218 |
* Feature: Added new meta description format field for posts (allows you to set a default post meta description incorporating the post's excerpt)
|
219 |
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
+
Stable tag: 4.4
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
11 |
|
12 |
= Recent Releases =
|
13 |
|
14 |
+
* Version 4.4 adds a new field for entering sitewide meta keywords
|
15 |
* Version 4.3 adds the ability to use the post's excerpt as its default meta description
|
16 |
* Version 4.2 adds the option to exclude specific posts/pages from being autolinked
|
17 |
* Version 4.1 adds tag title capitalization for title tags
|
18 |
* Version 4.0 adds meta description mass-editor for posts, pages, attachments, and custom post types
|
|
|
19 |
|
20 |
= Features =
|
21 |
|
32 |
* Increase SERP clickthrough rates by influence search engine result snippets.
|
33 |
* Mass-editor makes it a cinch to go back and add descriptions to old posts.
|
34 |
|
35 |
+
* **Meta Keywords Editor** -- UPDATED in Version 4.4
|
36 |
* Edit the `<meta>` keyword tags for posts, pages, and the homepage.
|
37 |
+
* Easily specify global keywords that are applied across the entire site.
|
38 |
|
39 |
* **Meta Robot Tags Editor** -- UPDATED in Version 4.0
|
40 |
* Add the `<meta name="robots" content="noindex,follow" />` tag to archives, comment feeds, the login page, and more.
|
215 |
|
216 |
== Changelog ==
|
217 |
|
218 |
+
= Version 4.4 (August 7, 2010) =
|
219 |
+
* Feature: Added new "Global Keywords" textbox to Meta Keywords Editor, which allows sitewide keywords to be specified
|
220 |
+
* Improvement: Meta Keywords Editor now removes duplicate keywords from the meta keywords tag
|
221 |
+
* Improvement: Meta Keywords Editor now fixes keywords that are incorrectly separated with newlines instead of commas
|
222 |
+
* Improvement: Meta Keywords Editor now removes extra spaces from the keywords list
|
223 |
+
* Improvement: Title Tag Rewriter can now rewrite empty `<title></title>` tags
|
224 |
+
* Bugfix: The SEO menu no longer doubles the alert count of modules
|
225 |
+
|
226 |
= Version 4.3 (August 6, 2010) =
|
227 |
* Feature: Added new meta description format field for posts (allows you to set a default post meta description incorporating the post's excerpt)
|
228 |
|
seo-ultimate.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
-
Version: 4.
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
|
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
-
* @version 4.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '2.8');
|
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
-
define('SU_VERSION', '4.
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/4.
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
+
Version: 4.4
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
+
* @version 4.4
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
+
define('SU_VERSION', '4.4');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/4.4');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
seo-ultimate.pot
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Translation of the WordPress plugin SEO Ultimate 4.
|
2 |
# Copyright (C) 2010 SEO Design Solutions
|
3 |
# This file is distributed under the same license as the SEO Ultimate package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
@@ -6,9 +6,9 @@
|
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
-
"Project-Id-Version: SEO Ultimate 4.
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
11 |
-
"POT-Creation-Date: 2010-08-
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -764,7 +764,7 @@ msgstr ""
|
|
764 |
msgid "Default Formats"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:
|
768 |
msgid "Blog Homepage"
|
769 |
msgstr ""
|
770 |
|
@@ -813,15 +813,27 @@ msgstr ""
|
|
813 |
msgid "Meta Keywords"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: modules/meta/meta-keywords.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
817 |
msgid "Blog Homepage Meta Keywords"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: modules/meta/meta-keywords.php:
|
821 |
msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: modules/meta/meta-keywords.php:
|
825 |
msgid ""
|
826 |
"<strong>Keywords</strong> — The value of the meta keywords tag. The "
|
827 |
"keywords list gives search engines a hint as to what this post/page is "
|
@@ -1113,7 +1125,7 @@ msgstr ""
|
|
1113 |
msgid "SEO Design Solutions Whitepapers"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 4.
|
1117 |
#. Author of the plugin/theme
|
1118 |
#: modules/sds-blog/sds-blog.php:49
|
1119 |
msgid "SEO Design Solutions"
|
@@ -1419,9 +1431,9 @@ msgstr ""
|
|
1419 |
msgid "SEO Ultimate Plugin Settings"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 4.
|
1423 |
#. Plugin Name of the plugin/theme
|
1424 |
-
#: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:
|
1425 |
msgid "SEO Ultimate"
|
1426 |
msgstr ""
|
1427 |
|
@@ -1429,7 +1441,7 @@ msgstr ""
|
|
1429 |
msgid "Uninstaller"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:
|
1433 |
msgid "Uninstall"
|
1434 |
msgstr ""
|
1435 |
|
@@ -1682,80 +1694,80 @@ msgstr ""
|
|
1682 |
msgid "Code Inserter module"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: plugin/class.seo-ultimate.php:
|
1686 |
msgid "SEO"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: plugin/class.seo-ultimate.php:
|
1690 |
msgid "SEO Settings Help"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: plugin/class.seo-ultimate.php:
|
1694 |
msgid "The SEO Settings box lets you customize these settings:"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: plugin/class.seo-ultimate.php:
|
1698 |
msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: plugin/class.seo-ultimate.php:
|
1702 |
#, php-format
|
1703 |
msgid ""
|
1704 |
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
|
1705 |
"1$s to avoid plugin conflicts."
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: plugin/class.seo-ultimate.php:
|
1709 |
msgid "new feature"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: plugin/class.seo-ultimate.php:
|
1713 |
msgid "new features"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: plugin/class.seo-ultimate.php:
|
1717 |
msgid "bugfix"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: plugin/class.seo-ultimate.php:
|
1721 |
msgid "bugfixes"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: plugin/class.seo-ultimate.php:
|
1725 |
msgid "improvement"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: plugin/class.seo-ultimate.php:
|
1729 |
msgid "improvements"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: plugin/class.seo-ultimate.php:
|
1733 |
msgid "security fix"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: plugin/class.seo-ultimate.php:
|
1737 |
msgid "security fixes"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: plugin/class.seo-ultimate.php:
|
1741 |
#, php-format
|
1742 |
msgid "%d %s"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: plugin/class.seo-ultimate.php:
|
1746 |
#, php-format
|
1747 |
msgid "Upgrade now to get %s. %s."
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: plugin/class.seo-ultimate.php:
|
1751 |
msgid "View changelog"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: plugin/class.seo-ultimate.php:
|
1755 |
msgid "Active Modules: "
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: plugin/class.seo-ultimate.php:
|
1759 |
msgid ""
|
1760 |
"<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
|
1761 |
"search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
|
@@ -1763,7 +1775,7 @@ msgid ""
|
|
1763 |
"to everyone."
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: plugin/class.seo-ultimate.php:
|
1767 |
msgid "SEO Settings"
|
1768 |
msgstr ""
|
1769 |
|
1 |
+
# Translation of the WordPress plugin SEO Ultimate 4.4 by SEO Design Solutions.
|
2 |
# Copyright (C) 2010 SEO Design Solutions
|
3 |
# This file is distributed under the same license as the SEO Ultimate package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
+
"Project-Id-Version: SEO Ultimate 4.4\n"
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
11 |
+
"POT-Creation-Date: 2010-08-07 15:38+0000\n"
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
764 |
msgid "Default Formats"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:24
|
768 |
msgid "Blog Homepage"
|
769 |
msgstr ""
|
770 |
|
813 |
msgid "Meta Keywords"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: modules/meta/meta-keywords.php:23
|
817 |
+
msgid "Default Values"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: modules/meta/meta-keywords.php:30
|
821 |
+
msgid "Sitewide Keywords"
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: modules/meta/meta-keywords.php:30
|
825 |
+
msgid "(Separate with commas)"
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: modules/meta/meta-keywords.php:36
|
829 |
msgid "Blog Homepage Meta Keywords"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: modules/meta/meta-keywords.php:79
|
833 |
msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: modules/meta/meta-keywords.php:84
|
837 |
msgid ""
|
838 |
"<strong>Keywords</strong> — The value of the meta keywords tag. The "
|
839 |
"keywords list gives search engines a hint as to what this post/page is "
|
1125 |
msgid "SEO Design Solutions Whitepapers"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 4.4) #-#-#-#-#
|
1129 |
#. Author of the plugin/theme
|
1130 |
#: modules/sds-blog/sds-blog.php:49
|
1131 |
msgid "SEO Design Solutions"
|
1431 |
msgid "SEO Ultimate Plugin Settings"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 4.4) #-#-#-#-#
|
1435 |
#. Plugin Name of the plugin/theme
|
1436 |
+
#: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:757
|
1437 |
msgid "SEO Ultimate"
|
1438 |
msgstr ""
|
1439 |
|
1441 |
msgid "Uninstaller"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1244
|
1445 |
msgid "Uninstall"
|
1446 |
msgstr ""
|
1447 |
|
1694 |
msgid "Code Inserter module"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: plugin/class.seo-ultimate.php:757
|
1698 |
msgid "SEO"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: plugin/class.seo-ultimate.php:1035
|
1702 |
msgid "SEO Settings Help"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: plugin/class.seo-ultimate.php:1037
|
1706 |
msgid "The SEO Settings box lets you customize these settings:"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: plugin/class.seo-ultimate.php:1039
|
1710 |
msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: plugin/class.seo-ultimate.php:1094
|
1714 |
#, php-format
|
1715 |
msgid ""
|
1716 |
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
|
1717 |
"1$s to avoid plugin conflicts."
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: plugin/class.seo-ultimate.php:1135
|
1721 |
msgid "new feature"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: plugin/class.seo-ultimate.php:1135
|
1725 |
msgid "new features"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: plugin/class.seo-ultimate.php:1136
|
1729 |
msgid "bugfix"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: plugin/class.seo-ultimate.php:1136
|
1733 |
msgid "bugfixes"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: plugin/class.seo-ultimate.php:1137
|
1737 |
msgid "improvement"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: plugin/class.seo-ultimate.php:1137
|
1741 |
msgid "improvements"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: plugin/class.seo-ultimate.php:1138
|
1745 |
msgid "security fix"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: plugin/class.seo-ultimate.php:1138
|
1749 |
msgid "security fixes"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: plugin/class.seo-ultimate.php:1169
|
1753 |
#, php-format
|
1754 |
msgid "%d %s"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: plugin/class.seo-ultimate.php:1175
|
1758 |
#, php-format
|
1759 |
msgid "Upgrade now to get %s. %s."
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: plugin/class.seo-ultimate.php:1177
|
1763 |
msgid "View changelog"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
+
#: plugin/class.seo-ultimate.php:1264
|
1767 |
msgid "Active Modules: "
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: plugin/class.seo-ultimate.php:1325
|
1771 |
msgid ""
|
1772 |
"<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
|
1773 |
"search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
|
1775 |
"to everyone."
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: plugin/class.seo-ultimate.php:1435
|
1779 |
msgid "SEO Settings"
|
1780 |
msgstr ""
|
1781 |
|