Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 7.2.8 |
Comparing to | |
See all releases |
Code changes from version 7.2.7 to 7.2.8
- modules/autolinks/autolinks.php +0 -11
- modules/class.su-module.php +19 -2
- modules/meta/meta-keywords.php +1 -1
- modules/modules/modules.php +12 -3
- modules/permalinks/permalinks.php +23 -0
- plugin/class.seo-ultimate.php +12 -7
- readme.txt +12 -3
- seo-ultimate.php +5 -5
- translations/seo-ultimate.pot +83 -93
modules/autolinks/autolinks.php
CHANGED
@@ -9,17 +9,6 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_Autolinks extends SU_Module {
|
11 |
function get_module_title() { return __('Deeplink Juggernaut', 'seo-ultimate'); }
|
12 |
-
|
13 |
-
function admin_page_contents() {
|
14 |
-
|
15 |
-
if (function_exists('json_encode')) {
|
16 |
-
$this->children_admin_page_tabs_form();
|
17 |
-
} else {
|
18 |
-
$this->print_message('error', sprintf(__('Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. (Note that WordPress itself requires PHP 5.2 as well, starting with WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your webhost. In the meantime, you can return to an older version of Deeplink Juggernaut that supports your version of PHP by <a href="%s">downgrading</a> to SEO Ultimate 5.9.', 'seo-ultimate'), $this->get_admin_url('settings').'#su-downgrade'));
|
19 |
-
return;
|
20 |
-
}
|
21 |
-
|
22 |
-
}
|
23 |
}
|
24 |
|
25 |
}
|
9 |
|
10 |
class SU_Autolinks extends SU_Module {
|
11 |
function get_module_title() { return __('Deeplink Juggernaut', 'seo-ultimate'); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
}
|
13 |
|
14 |
}
|
modules/class.su-module.php
CHANGED
@@ -326,13 +326,30 @@ class SU_Module {
|
|
326 |
function init() {}
|
327 |
|
328 |
/**
|
329 |
-
* Called
|
330 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
*
|
332 |
* @since 0.1
|
333 |
*/
|
334 |
function activate() { }
|
335 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
/**
|
337 |
* Called when SEO Ultimate has just been upgraded to a new version.
|
338 |
*
|
326 |
function init() {}
|
327 |
|
328 |
/**
|
329 |
+
* Called under 3 circumstances:
|
330 |
+
* 1. When the SEO Ultimate plugin is activated
|
331 |
+
* 2. When a module is newly registered in the database, which can happen for two reasons:
|
332 |
+
* a. The plugin is activated for the first time
|
333 |
+
* b. The module has been newly added via a plugin upgrade
|
334 |
+
* 3. When the module is re-enabled in the Module Manager after being disabled.
|
335 |
+
*
|
336 |
+
* Note that this function will be called twice when the plugin is activated for the first time, since this will make #1 and #2 both true.
|
337 |
+
*
|
338 |
+
* WARNING: Do not use "$this" in the activate() function. It will not work under condition #3. Check for isset($this) and if false, use self:: instead.
|
339 |
*
|
340 |
* @since 0.1
|
341 |
*/
|
342 |
function activate() { }
|
343 |
|
344 |
+
/**
|
345 |
+
* Called under 2 circumstances:
|
346 |
+
* 1. When the SEO Ultimate plugin is deactivated or uninstalled.
|
347 |
+
* 2. When the module is disabled in the Module Manager.
|
348 |
+
*
|
349 |
+
* @since 7.2.8
|
350 |
+
*/
|
351 |
+
function deactivate() { }
|
352 |
+
|
353 |
/**
|
354 |
* Called when SEO Ultimate has just been upgraded to a new version.
|
355 |
*
|
modules/meta/meta-keywords.php
CHANGED
@@ -112,7 +112,7 @@ class SU_MetaKeywords extends SU_Module {
|
|
112 |
}
|
113 |
|
114 |
if ($this->get_setting("auto_keywords_posttype_{$posttypename}_words", false)) {
|
115 |
-
$words = preg_split("/[\
|
116 |
$words = array_count_values($words);
|
117 |
arsort($words);
|
118 |
$words = array_filter($words, array(&$this, 'filter_word_counts'));
|
112 |
}
|
113 |
|
114 |
if ($this->get_setting("auto_keywords_posttype_{$posttypename}_words", false)) {
|
115 |
+
$words = preg_split("/[\s+]/", strip_tags($post->post_content), null, PREG_SPLIT_NO_EMPTY);
|
116 |
$words = array_count_values($words);
|
117 |
arsort($words);
|
118 |
$words = array_filter($words, array(&$this, 'filter_word_counts'));
|
modules/modules/modules.php
CHANGED
@@ -20,12 +20,21 @@ class SU_Modules extends SU_Module {
|
|
20 |
|
21 |
$psdata = (array)get_option('seo_ultimate', array());
|
22 |
|
23 |
-
foreach ($_POST as $key => $
|
24 |
if (substr($key, 0, 3) == 'su-') {
|
25 |
$key = str_replace(array('su-', '-module-status'), '', $key);
|
26 |
-
$value = intval($value);
|
27 |
|
28 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
}
|
30 |
}
|
31 |
|
20 |
|
21 |
$psdata = (array)get_option('seo_ultimate', array());
|
22 |
|
23 |
+
foreach ($_POST as $key => $newvalue) {
|
24 |
if (substr($key, 0, 3) == 'su-') {
|
25 |
$key = str_replace(array('su-', '-module-status'), '', $key);
|
|
|
26 |
|
27 |
+
$newvalue = intval($newvalue);
|
28 |
+
$oldvalue = $psdata['modules'][$key];
|
29 |
+
|
30 |
+
if ($oldvalue != $newvalue) {
|
31 |
+
if ($oldvalue == SU_MODULE_DISABLED)
|
32 |
+
$this->plugin->call_module_func($key, 'activate');
|
33 |
+
if ($newvalue == SU_MODULE_DISABLED)
|
34 |
+
$this->plugin->call_module_func($key, 'deactivate');
|
35 |
+
}
|
36 |
+
|
37 |
+
$psdata['modules'][$key] = $newvalue;
|
38 |
}
|
39 |
}
|
40 |
|
modules/permalinks/permalinks.php
CHANGED
@@ -44,6 +44,29 @@ class SU_Permalinks extends SU_Module {
|
|
44 |
}
|
45 |
}
|
46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
function admin_page_contents() {
|
48 |
|
49 |
if (!suwp::permalink_mode()) {
|
44 |
}
|
45 |
}
|
46 |
|
47 |
+
function deactivate() {
|
48 |
+
if (suwp::permalink_mode()) {
|
49 |
+
$nobase_enabled = false;
|
50 |
+
$taxonomies = suwp::get_taxonomy_names();
|
51 |
+
foreach ($taxonomies as $taxonomy) {
|
52 |
+
if ($this->get_setting("nobase_$taxonomy", false)) {
|
53 |
+
remove_action("created_$taxonomy", array(&$this, 'flush_rewrite_rules'));
|
54 |
+
remove_action("edited_$taxonomy", array(&$this, 'flush_rewrite_rules'));
|
55 |
+
remove_action("delete_$taxonomy", array(&$this, 'flush_rewrite_rules'));
|
56 |
+
remove_filter("{$taxonomy}_rewrite_rules", array(&$this, 'nobase_rewrite_rules'));
|
57 |
+
$nobase_enabled = true;
|
58 |
+
}
|
59 |
+
}
|
60 |
+
if ($nobase_enabled) {
|
61 |
+
remove_filter('term_link', array(&$this, 'nobase_term_link'), 1000, 2);
|
62 |
+
remove_filter('query_vars', array(&$this, 'nobase_query_vars'));
|
63 |
+
remove_filter('request', array(&$this, 'nobase_old_base_redirect'));
|
64 |
+
}
|
65 |
+
}
|
66 |
+
|
67 |
+
$this->flush_rewrite_rules();
|
68 |
+
}
|
69 |
+
|
70 |
function admin_page_contents() {
|
71 |
|
72 |
if (!suwp::permalink_mode()) {
|
plugin/class.seo-ultimate.php
CHANGED
@@ -353,13 +353,13 @@ class SEO_Ultimate {
|
|
353 |
|
354 |
/**
|
355 |
* WordPress will call this when the plugin is activated, as instructed by the register_activation_hook() call in {@link __construct()}.
|
356 |
-
* Does activation tasks for the plugin itself, not modules.
|
357 |
*
|
358 |
* @since 0.1
|
359 |
*/
|
360 |
-
function activate() {
|
361 |
-
|
362 |
-
|
|
|
363 |
}
|
364 |
|
365 |
/**
|
@@ -368,9 +368,11 @@ class SEO_Ultimate {
|
|
368 |
* @since 0.1
|
369 |
*/
|
370 |
function deactivate() {
|
371 |
-
|
372 |
//Let modules run deactivation tasks
|
373 |
-
|
|
|
|
|
374 |
|
375 |
//Unschedule all cron jobs
|
376 |
$this->remove_cron_jobs(true);
|
@@ -502,6 +504,9 @@ class SEO_Ultimate {
|
|
502 |
else
|
503 |
$module_disabled = (isset($oldmodules[$module]) && $oldmodules[$module] == SU_MODULE_DISABLED);
|
504 |
|
|
|
|
|
|
|
505 |
if (in_array($module, $this->get_invincible_modules())) {
|
506 |
$module_disabled = false;
|
507 |
$oldmodules[$module] = SU_MODULE_ENABLED;
|
@@ -1448,7 +1453,7 @@ class SEO_Ultimate {
|
|
1448 |
* @param mixed $result Passed by reference. Set to the result of the function.
|
1449 |
* @return boolean Whether or not the function existed.
|
1450 |
*/
|
1451 |
-
function call_module_func($key, $function, &$result) {
|
1452 |
|
1453 |
//Wipe passed-by-reference variable clean
|
1454 |
$result = null;
|
353 |
|
354 |
/**
|
355 |
* WordPress will call this when the plugin is activated, as instructed by the register_activation_hook() call in {@link __construct()}.
|
|
|
356 |
*
|
357 |
* @since 0.1
|
358 |
*/
|
359 |
+
function activate() {
|
360 |
+
foreach ($this->modules as $key => $module) {
|
361 |
+
$this->modules[$key]->activate();
|
362 |
+
}
|
363 |
}
|
364 |
|
365 |
/**
|
368 |
* @since 0.1
|
369 |
*/
|
370 |
function deactivate() {
|
371 |
+
|
372 |
//Let modules run deactivation tasks
|
373 |
+
foreach ($this->modules as $key => $module) {
|
374 |
+
$this->modules[$key]->deactivate();
|
375 |
+
}
|
376 |
|
377 |
//Unschedule all cron jobs
|
378 |
$this->remove_cron_jobs(true);
|
504 |
else
|
505 |
$module_disabled = (isset($oldmodules[$module]) && $oldmodules[$module] == SU_MODULE_DISABLED);
|
506 |
|
507 |
+
if (!isset($oldmodules[$module]) && call_user_func(array($class, 'get_default_status')) == SU_MODULE_DISABLED)
|
508 |
+
$module_disabled = true;
|
509 |
+
|
510 |
if (in_array($module, $this->get_invincible_modules())) {
|
511 |
$module_disabled = false;
|
512 |
$oldmodules[$module] = SU_MODULE_ENABLED;
|
1453 |
* @param mixed $result Passed by reference. Set to the result of the function.
|
1454 |
* @return boolean Whether or not the function existed.
|
1455 |
*/
|
1456 |
+
function call_module_func($key, $function, &$result = null) {
|
1457 |
|
1458 |
//Wipe passed-by-reference variable clean
|
1459 |
$result = null;
|
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
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.4.1
|
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 |
|
@@ -185,7 +185,11 @@ To install the plugin manually:
|
|
185 |
= Compatibility =
|
186 |
|
187 |
* **What's the minimum version of WordPress required to run SEO Ultimate?**
|
188 |
-
|
|
|
|
|
|
|
|
|
189 |
|
190 |
= General FAQ =
|
191 |
|
@@ -225,7 +229,7 @@ To install the plugin manually:
|
|
225 |
|
226 |
= Module FAQ =
|
227 |
|
228 |
-
Frequently asked questions, settings help, and troubleshooting tips for SEO Ultimate's modules can be found by clicking the help tabs in the upper-right-hand corner of the module admin pages themselves.
|
229 |
|
230 |
|
231 |
|
@@ -259,6 +263,11 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
259 |
|
260 |
== Changelog ==
|
261 |
|
|
|
|
|
|
|
|
|
|
|
262 |
= Version 7.2.7 (July 5, 2012) =
|
263 |
* Feature: Canonicalizer now lets you force a URL scheme (`http://` or `https://`) across all canonical URLs
|
264 |
* Bugfix: Canonicalizer's "Redirect requests for nonexistent pagination" once again works for archive pages
|
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.1
|
6 |
+
Stable tag: 7.2.8
|
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 |
|
185 |
= Compatibility =
|
186 |
|
187 |
* **What's the minimum version of WordPress required to run SEO Ultimate?**
|
188 |
+
* WordPress 3.3 is required for all of the features to work properly.
|
189 |
+
* WordPress 3.2 is required for SEO Ultimate to run without crashing. (SEO Ultimate will refuse to activate under an older version of WordPress.)
|
190 |
+
|
191 |
+
* **Will SEO Ultimate work on multisite setups?**
|
192 |
+
Yes. SEO Ultimate versions 7.2.6 and later are designed to work on networks running WordPress 3.3 or later.
|
193 |
|
194 |
= General FAQ =
|
195 |
|
229 |
|
230 |
= Module FAQ =
|
231 |
|
232 |
+
Frequently asked questions, settings help, and troubleshooting tips for SEO Ultimate's modules can be found by clicking the help tabs in the upper-right-hand corner of the module admin pages themselves.
|
233 |
|
234 |
|
235 |
|
263 |
|
264 |
== Changelog ==
|
265 |
|
266 |
+
= Version 7.2.8 (July 7, 2012) =
|
267 |
+
* Bugfix: Permalink Tweaker now removes its changes to WordPress's rewrite rules when SEO Ultimate is deactivated/uninstalled or when Permalink Tweaker is disabled from the Module Manager
|
268 |
+
* Bugfix: International characters are no longer stripped from autogenerated meta keywords
|
269 |
+
* Compatibility: SEO Ultimate will now refuse to activate on versions of WordPress below 3.2
|
270 |
+
|
271 |
= Version 7.2.7 (July 5, 2012) =
|
272 |
* Feature: Canonicalizer now lets you force a URL scheme (`http://` or `https://`) across all canonical URLs
|
273 |
* Bugfix: Canonicalizer's "Redirect requests for nonexistent pagination" once again works for archive pages
|
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,7 +12,7 @@ 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 |
|
@@ -42,15 +42,15 @@ if (!defined('ABSPATH')) {
|
|
42 |
/********** CONSTANTS **********/
|
43 |
|
44 |
//The minimum version of WordPress required
|
45 |
-
define('SU_MINIMUM_WP_VER', '3.
|
46 |
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
-
define('SU_VERSION', '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.8
|
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.8
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
42 |
/********** CONSTANTS **********/
|
43 |
|
44 |
//The minimum version of WordPress required
|
45 |
+
define('SU_MINIMUM_WP_VER', '3.2');
|
46 |
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
+
define('SU_VERSION', '7.2.8');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/7.2.8');
|
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.2.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
-
"POT-Creation-Date: 2012-07-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -69,7 +69,7 @@ msgstr ""
|
|
69 |
msgid "Log"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: modules/404s/fofs-log.php:113 modules/class.su-module.php:
|
73 |
msgid "Actions"
|
74 |
msgstr ""
|
75 |
|
@@ -344,16 +344,6 @@ msgstr ""
|
|
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 requires 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 ""
|
@@ -751,108 +741,108 @@ msgid_plural ""
|
|
751 |
msgstr[0] ""
|
752 |
msgstr[1] ""
|
753 |
|
754 |
-
#: modules/class.su-module.php:
|
755 |
msgid ""
|
756 |
"All the modules on this page have been disabled. You can re-enable them "
|
757 |
"using the <a href=\"%s\">Module Manager</a>."
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: modules/class.su-module.php:
|
761 |
msgid "%1$s | %2$s %3$s by %4$s"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: modules/class.su-module.php:
|
765 |
msgid "Your site currently doesn’t have any public items of this type."
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: modules/class.su-module.php:
|
769 |
msgid "«"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: modules/class.su-module.php:
|
773 |
msgid "»"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: modules/class.su-module.php:
|
777 |
msgid "Displaying %s–%s of %s"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: modules/class.su-module.php:
|
781 |
msgid "ID"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: modules/class.su-module.php:
|
785 |
msgid "View"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: modules/class.su-module.php:
|
789 |
msgid "Edit"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: modules/class.su-module.php:
|
793 |
msgid "Settings updated."
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: modules/class.su-module.php:
|
797 |
msgid "Save Changes"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: modules/class.su-module.php:
|
801 |
msgid ""
|
802 |
"Are you sure you want to replace the textbox contents with this default "
|
803 |
"value?"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: modules/class.su-module.php:
|
807 |
msgid "Reset"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: modules/class.su-module.php:
|
811 |
msgid "A Deleted %s"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: modules/class.su-module.php:
|
815 |
msgid "A Deleted Post"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: modules/class.su-module.php:
|
819 |
msgid "A Deleted Term"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: modules/class.su-module.php:
|
823 |
-
#: modules/meta/meta-keywords.php:40 plugin/class.seo-ultimate.php:
|
824 |
msgid "Blog Homepage"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: modules/class.su-module.php:
|
828 |
msgid "Author"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: modules/class.su-module.php:
|
832 |
msgid "A Deleted User"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: modules/class.su-module.php:
|
836 |
msgid "Link Mask"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: modules/class.su-module.php:
|
840 |
msgid "Link Mask (Disabled)"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: modules/class.su-module.php:
|
844 |
msgid "A Deleted Link Mask"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: modules/class.su-module.php:
|
848 |
msgid "Type a URL or start typing the name of an item on your site"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: modules/class.su-module.php:
|
852 |
msgid "Remove this location from this textbox"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: modules/class.su-module.php:
|
856 |
msgid "X"
|
857 |
msgstr ""
|
858 |
|
@@ -930,7 +920,7 @@ msgid ""
|
|
930 |
msgstr ""
|
931 |
|
932 |
#: modules/files/files.php:155 modules/meta/meta-descriptions.php:203
|
933 |
-
#: modules/meta/meta-keywords.php:189 modules/modules/modules.php:
|
934 |
#: modules/more-links/more-links.php:105 modules/more-links/more-links.php:116
|
935 |
#: modules/settings/settings.php:82 modules/slugs/slugs.php:87
|
936 |
#: modules/titles/titles.php:448
|
@@ -1661,7 +1651,7 @@ msgstr ""
|
|
1661 |
msgid "Modules"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: modules/modules/modules.php:
|
1665 |
msgid ""
|
1666 |
"SEO Ultimate’s features are located in groups called “modules."
|
1667 |
"” By default, most of these modules are listed in the “"
|
@@ -1670,45 +1660,45 @@ msgid ""
|
|
1670 |
"corner of your administration screen."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: modules/modules/modules.php:
|
1674 |
msgid ""
|
1675 |
"The Module Manager lets you disable or hide modules you don’t use. "
|
1676 |
"You can also silence modules from displaying bubble alerts on the menu."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: modules/modules/modules.php:
|
1680 |
msgid "Modules updated."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: modules/modules/modules.php:
|
1684 |
msgid "Status"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: modules/modules/modules.php:
|
1688 |
msgid "Module"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: modules/modules/modules.php:
|
1692 |
msgid "Enabled"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: modules/modules/modules.php:
|
1696 |
msgid "Silenced"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: modules/modules/modules.php:
|
1700 |
msgid "Hidden"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: modules/modules/modules.php:
|
1704 |
msgid "Disabled"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: modules/modules/modules.php:
|
1708 |
msgid "Options Help"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: modules/modules/modules.php:
|
1712 |
msgid ""
|
1713 |
"\r\n"
|
1714 |
"<p>The Module Manager lets you customize the visibility and accessibility of "
|
@@ -1728,7 +1718,7 @@ msgid ""
|
|
1728 |
"</ul>\r\n"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: modules/modules/modules.php:
|
1732 |
msgid ""
|
1733 |
"\r\n"
|
1734 |
"<ul>\r\n"
|
@@ -1913,37 +1903,37 @@ msgstr ""
|
|
1913 |
msgid "Permalink Tweaker"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: modules/permalinks/permalinks.php:
|
1917 |
msgid ""
|
1918 |
"To use the Permalinks Tweaker, you must disable default (query-string) "
|
1919 |
"permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: modules/permalinks/permalinks.php:
|
1923 |
msgid "Remove the URL bases of..."
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: modules/permalinks/permalinks.php:
|
1927 |
msgid "Before"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: modules/permalinks/permalinks.php:
|
1931 |
msgid "After"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: modules/permalinks/permalinks.php:
|
1935 |
msgid "term archive"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: modules/permalinks/permalinks.php:
|
1939 |
msgid "page"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: modules/permalinks/permalinks.php:
|
1943 |
msgid "URL Conflict Resolution"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: modules/permalinks/permalinks.php:
|
1947 |
msgid ""
|
1948 |
"If a term archive and a Page with the same slug end up having the same URL "
|
1949 |
"because of the term’s base being removed, the URL should be given to "
|
@@ -2133,7 +2123,7 @@ msgstr ""
|
|
2133 |
msgid "SEO Design Solutions Whitepapers"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.2.
|
2137 |
#. Author of the plugin/theme
|
2138 |
#: modules/sds-blog/sds-blog.php:49
|
2139 |
msgid "SEO Design Solutions"
|
@@ -2453,9 +2443,9 @@ msgstr ""
|
|
2453 |
msgid "SEO Ultimate Plugin Settings"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.2.
|
2457 |
#. Plugin Name of the plugin/theme
|
2458 |
-
#: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:
|
2459 |
msgid "SEO Ultimate"
|
2460 |
msgstr ""
|
2461 |
|
@@ -2510,7 +2500,7 @@ msgid "Uninstaller"
|
|
2510 |
msgstr ""
|
2511 |
|
2512 |
#: modules/settings/uninstall.php:18 modules/settings/uninstall.php:22
|
2513 |
-
#: plugin/class.seo-ultimate.php:
|
2514 |
msgid "Uninstall"
|
2515 |
msgstr ""
|
2516 |
|
@@ -3253,107 +3243,107 @@ msgstr ""
|
|
3253 |
msgid "Go to setting »"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
-
#: plugin/class.seo-ultimate.php:
|
3257 |
msgid "SEO"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
-
#: plugin/class.seo-ultimate.php:
|
3261 |
msgid ""
|
3262 |
"It looks like you made changes to the settings of this SEO Ultimate module. "
|
3263 |
"If you leave before saving, those changes will be lost."
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: plugin/class.seo-ultimate.php:
|
3267 |
msgid "SEO Settings Help"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: plugin/class.seo-ultimate.php:
|
3271 |
msgid "The SEO Settings box lets you customize these settings:"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: plugin/class.seo-ultimate.php:
|
3275 |
msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: plugin/class.seo-ultimate.php:
|
3279 |
msgid ""
|
3280 |
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate "
|
3281 |
"%1$s to avoid plugin conflicts."
|
3282 |
msgstr ""
|
3283 |
|
3284 |
-
#: plugin/class.seo-ultimate.php:
|
3285 |
msgid "new module"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
-
#: plugin/class.seo-ultimate.php:
|
3289 |
msgid "new modules"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
-
#: plugin/class.seo-ultimate.php:
|
3293 |
msgid "new feature"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
-
#: plugin/class.seo-ultimate.php:
|
3297 |
msgid "new features"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
-
#: plugin/class.seo-ultimate.php:
|
3301 |
msgid "bugfix"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
-
#: plugin/class.seo-ultimate.php:
|
3305 |
msgid "bugfixes"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
-
#: plugin/class.seo-ultimate.php:
|
3309 |
msgid "improvement"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: plugin/class.seo-ultimate.php:
|
3313 |
msgid "improvements"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#: plugin/class.seo-ultimate.php:
|
3317 |
msgid "security fix"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: plugin/class.seo-ultimate.php:
|
3321 |
msgid "security fixes"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
#: plugin/class.seo-ultimate.php:
|
3325 |
msgid "new language pack"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
-
#: plugin/class.seo-ultimate.php:
|
3329 |
msgid "new language packs"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
-
#: plugin/class.seo-ultimate.php:
|
3333 |
msgid "language pack update"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
-
#: plugin/class.seo-ultimate.php:
|
3337 |
msgid "language pack updates"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
-
#: plugin/class.seo-ultimate.php:
|
3341 |
msgid "%d %s"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
-
#: plugin/class.seo-ultimate.php:
|
3345 |
msgid "Upgrade now to get %s. %s."
|
3346 |
msgstr ""
|
3347 |
|
3348 |
-
#: plugin/class.seo-ultimate.php:
|
3349 |
msgid "View changelog"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#: plugin/class.seo-ultimate.php:
|
3353 |
msgid "Active Modules: "
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: plugin/class.seo-ultimate.php:
|
3357 |
msgid ""
|
3358 |
"<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
|
3359 |
"search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
|
@@ -3361,19 +3351,19 @@ msgid ""
|
|
3361 |
"to everyone."
|
3362 |
msgstr ""
|
3363 |
|
3364 |
-
#: plugin/class.seo-ultimate.php:
|
3365 |
msgid "SEO Settings"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
-
#: plugin/class.seo-ultimate.php:
|
3369 |
msgid "Home"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
-
#: plugin/class.seo-ultimate.php:
|
3373 |
msgid "Author Archives"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
-
#: plugin/class.seo-ultimate.php:
|
3377 |
msgid "Link Masks"
|
3378 |
msgstr ""
|
3379 |
|
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.8\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2012-07-07 17:06:04+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
69 |
msgid "Log"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: modules/404s/fofs-log.php:113 modules/class.su-module.php:1231
|
73 |
msgid "Actions"
|
74 |
msgstr ""
|
75 |
|
344 |
msgid "Deeplink Juggernaut"
|
345 |
msgstr ""
|
346 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
#: modules/autolinks/content-autolinks-settings.php:16
|
348 |
msgid "Content Deeplink Juggernaut Settings"
|
349 |
msgstr ""
|
741 |
msgstr[0] ""
|
742 |
msgstr[1] ""
|
743 |
|
744 |
+
#: modules/class.su-module.php:696
|
745 |
msgid ""
|
746 |
"All the modules on this page have been disabled. You can re-enable them "
|
747 |
"using the <a href=\"%s\">Module Manager</a>."
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: modules/class.su-module.php:1045
|
751 |
msgid "%1$s | %2$s %3$s by %4$s"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: modules/class.su-module.php:1124
|
755 |
msgid "Your site currently doesn’t have any public items of this type."
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: modules/class.su-module.php:1210
|
759 |
msgid "«"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: modules/class.su-module.php:1211
|
763 |
msgid "»"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: modules/class.su-module.php:1218
|
767 |
msgid "Displaying %s–%s of %s"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: modules/class.su-module.php:1232
|
771 |
msgid "ID"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: modules/class.su-module.php:1266
|
775 |
msgid "View"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: modules/class.su-module.php:1268
|
779 |
msgid "Edit"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: modules/class.su-module.php:1438
|
783 |
msgid "Settings updated."
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: modules/class.su-module.php:1459
|
787 |
msgid "Save Changes"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: modules/class.su-module.php:2007
|
791 |
msgid ""
|
792 |
"Are you sure you want to replace the textbox contents with this default "
|
793 |
"value?"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: modules/class.su-module.php:2028 modules/settings/settings-data.php:23
|
797 |
msgid "Reset"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: modules/class.su-module.php:2750 modules/class.su-module.php:2762
|
801 |
msgid "A Deleted %s"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: modules/class.su-module.php:2752
|
805 |
msgid "A Deleted Post"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: modules/class.su-module.php:2767
|
809 |
msgid "A Deleted Term"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: modules/class.su-module.php:2773 modules/meta/meta-descriptions.php:31
|
813 |
+
#: modules/meta/meta-keywords.php:40 plugin/class.seo-ultimate.php:1740
|
814 |
msgid "Blog Homepage"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: modules/class.su-module.php:2778 plugin/class.seo-ultimate.php:1818
|
818 |
msgid "Author"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: modules/class.su-module.php:2780
|
822 |
msgid "A Deleted User"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: modules/class.su-module.php:2795 plugin/class.seo-ultimate.php:1848
|
826 |
msgid "Link Mask"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: modules/class.su-module.php:2797
|
830 |
msgid "Link Mask (Disabled)"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: modules/class.su-module.php:2802
|
834 |
msgid "A Deleted Link Mask"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: modules/class.su-module.php:2832
|
838 |
msgid "Type a URL or start typing the name of an item on your site"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: modules/class.su-module.php:2845
|
842 |
msgid "Remove this location from this textbox"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: modules/class.su-module.php:2845
|
846 |
msgid "X"
|
847 |
msgstr ""
|
848 |
|
920 |
msgstr ""
|
921 |
|
922 |
#: modules/files/files.php:155 modules/meta/meta-descriptions.php:203
|
923 |
+
#: modules/meta/meta-keywords.php:189 modules/modules/modules.php:183
|
924 |
#: modules/more-links/more-links.php:105 modules/more-links/more-links.php:116
|
925 |
#: modules/settings/settings.php:82 modules/slugs/slugs.php:87
|
926 |
#: modules/titles/titles.php:448
|
1651 |
msgid "Modules"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: modules/modules/modules.php:50
|
1655 |
msgid ""
|
1656 |
"SEO Ultimate’s features are located in groups called “modules."
|
1657 |
"” By default, most of these modules are listed in the “"
|
1660 |
"corner of your administration screen."
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: modules/modules/modules.php:52
|
1664 |
msgid ""
|
1665 |
"The Module Manager lets you disable or hide modules you don’t use. "
|
1666 |
"You can also silence modules from displaying bubble alerts on the menu."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: modules/modules/modules.php:56
|
1670 |
msgid "Modules updated."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: modules/modules/modules.php:61
|
1674 |
msgid "Status"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: modules/modules/modules.php:62
|
1678 |
msgid "Module"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: modules/modules/modules.php:75
|
1682 |
msgid "Enabled"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: modules/modules/modules.php:76
|
1686 |
msgid "Silenced"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: modules/modules/modules.php:77
|
1690 |
msgid "Hidden"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: modules/modules/modules.php:78
|
1694 |
msgid "Disabled"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: modules/modules/modules.php:170
|
1698 |
msgid "Options Help"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: modules/modules/modules.php:171
|
1702 |
msgid ""
|
1703 |
"\r\n"
|
1704 |
"<p>The Module Manager lets you customize the visibility and accessibility of "
|
1718 |
"</ul>\r\n"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: modules/modules/modules.php:184
|
1722 |
msgid ""
|
1723 |
"\r\n"
|
1724 |
"<ul>\r\n"
|
1903 |
msgid "Permalink Tweaker"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: modules/permalinks/permalinks.php:73
|
1907 |
msgid ""
|
1908 |
"To use the Permalinks Tweaker, you must disable default (query-string) "
|
1909 |
"permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: modules/permalinks/permalinks.php:98
|
1913 |
msgid "Remove the URL bases of..."
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: modules/permalinks/permalinks.php:103
|
1917 |
msgid "Before"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: modules/permalinks/permalinks.php:105
|
1921 |
msgid "After"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: modules/permalinks/permalinks.php:125
|
1925 |
msgid "term archive"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: modules/permalinks/permalinks.php:126
|
1929 |
msgid "page"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: modules/permalinks/permalinks.php:127
|
1933 |
msgid "URL Conflict Resolution"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: modules/permalinks/permalinks.php:127
|
1937 |
msgid ""
|
1938 |
"If a term archive and a Page with the same slug end up having the same URL "
|
1939 |
"because of the term’s base being removed, the URL should be given to "
|
2123 |
msgid "SEO Design Solutions Whitepapers"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.2.8) #-#-#-#-#
|
2127 |
#. Author of the plugin/theme
|
2128 |
#: modules/sds-blog/sds-blog.php:49
|
2129 |
msgid "SEO Design Solutions"
|
2443 |
msgid "SEO Ultimate Plugin Settings"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.2.8) #-#-#-#-#
|
2447 |
#. Plugin Name of the plugin/theme
|
2448 |
+
#: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:856
|
2449 |
msgid "SEO Ultimate"
|
2450 |
msgstr ""
|
2451 |
|
2500 |
msgstr ""
|
2501 |
|
2502 |
#: modules/settings/uninstall.php:18 modules/settings/uninstall.php:22
|
2503 |
+
#: plugin/class.seo-ultimate.php:1339
|
2504 |
msgid "Uninstall"
|
2505 |
msgstr ""
|
2506 |
|
3243 |
msgid "Go to setting »"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
+
#: plugin/class.seo-ultimate.php:856
|
3247 |
msgid "SEO"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
+
#: plugin/class.seo-ultimate.php:1041
|
3251 |
msgid ""
|
3252 |
"It looks like you made changes to the settings of this SEO Ultimate module. "
|
3253 |
"If you leave before saving, those changes will be lost."
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: plugin/class.seo-ultimate.php:1135
|
3257 |
msgid "SEO Settings Help"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: plugin/class.seo-ultimate.php:1137
|
3261 |
msgid "The SEO Settings box lets you customize these settings:"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: plugin/class.seo-ultimate.php:1139
|
3265 |
msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: plugin/class.seo-ultimate.php:1194
|
3269 |
msgid ""
|
3270 |
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate "
|
3271 |
"%1$s to avoid plugin conflicts."
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: plugin/class.seo-ultimate.php:1238
|
3275 |
msgid "new module"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: plugin/class.seo-ultimate.php:1238
|
3279 |
msgid "new modules"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: plugin/class.seo-ultimate.php:1239
|
3283 |
msgid "new feature"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
+
#: plugin/class.seo-ultimate.php:1239
|
3287 |
msgid "new features"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
+
#: plugin/class.seo-ultimate.php:1240
|
3291 |
msgid "bugfix"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
+
#: plugin/class.seo-ultimate.php:1240
|
3295 |
msgid "bugfixes"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: plugin/class.seo-ultimate.php:1241
|
3299 |
msgid "improvement"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
+
#: plugin/class.seo-ultimate.php:1241
|
3303 |
msgid "improvements"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: plugin/class.seo-ultimate.php:1242
|
3307 |
msgid "security fix"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
+
#: plugin/class.seo-ultimate.php:1242
|
3311 |
msgid "security fixes"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: plugin/class.seo-ultimate.php:1243
|
3315 |
msgid "new language pack"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: plugin/class.seo-ultimate.php:1243
|
3319 |
msgid "new language packs"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: plugin/class.seo-ultimate.php:1244
|
3323 |
msgid "language pack update"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: plugin/class.seo-ultimate.php:1244
|
3327 |
msgid "language pack updates"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: plugin/class.seo-ultimate.php:1275
|
3331 |
msgid "%d %s"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: plugin/class.seo-ultimate.php:1281
|
3335 |
msgid "Upgrade now to get %s. %s."
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
#: plugin/class.seo-ultimate.php:1283
|
3339 |
msgid "View changelog"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: plugin/class.seo-ultimate.php:1360
|
3343 |
msgid "Active Modules: "
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: plugin/class.seo-ultimate.php:1427
|
3347 |
msgid ""
|
3348 |
"<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
|
3349 |
"search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
|
3351 |
"to everyone."
|
3352 |
msgstr ""
|
3353 |
|
3354 |
+
#: plugin/class.seo-ultimate.php:1549
|
3355 |
msgid "SEO Settings"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: plugin/class.seo-ultimate.php:1739
|
3359 |
msgid "Home"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: plugin/class.seo-ultimate.php:1812
|
3363 |
msgid "Author Archives"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: plugin/class.seo-ultimate.php:1841
|
3367 |
msgid "Link Masks"
|
3368 |
msgstr ""
|
3369 |
|