Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 7.2.6 |
Comparing to | |
See all releases |
Code changes from version 7.2.5 to 7.2.6
- modules/404s/fofs-log.php +6 -6
- modules/class.su-module.php +47 -22
- modules/meta/meta-descriptions.php +6 -0
- modules/meta/meta-keywords.php +6 -0
- modules/meta/webmaster-verify.css +21 -0
- modules/meta/webmaster-verify.php +47 -18
- modules/modules.css +6 -1
- modules/modules.js +1 -1
- modules/noindex/noindex.php +7 -0
- modules/settings/settings-data.php +10 -6
- modules/titles/titles.php +6 -0
- modules/user-code/user-code.php +29 -1
- readme.txt +11 -1
- seo-ultimate.php +4 -4
- translations/seo-ultimate.pot +214 -182
modules/404s/fofs-log.php
CHANGED
@@ -7,6 +7,12 @@
|
|
7 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
class SU_FofsLog extends SU_Module {
|
11 |
|
12 |
function get_parent_module() { return 'fofs'; }
|
@@ -33,12 +39,6 @@ class SU_FofsLog extends SU_Module {
|
|
33 |
function init() {
|
34 |
add_action('admin_enqueue_scripts', array(&$this, 'queue_admin_scripts'));
|
35 |
add_action('su_save_hit', array(&$this, 'log_hit'));
|
36 |
-
add_filter('su_settings_export_array', array(&$this, 'filter_export_array'));
|
37 |
-
}
|
38 |
-
|
39 |
-
function filter_export_array($settings) {
|
40 |
-
unset($settings[$this->get_module_key()]['log']);
|
41 |
-
return $settings;
|
42 |
}
|
43 |
|
44 |
//Upgrade to new wp_options-only system if needed
|
7 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
10 |
+
function su_fofs_log_export_filter($all_settings) {
|
11 |
+
unset($all_settings['404s']['log']);
|
12 |
+
return $all_settings;
|
13 |
+
}
|
14 |
+
add_filter('su_settings_export_array', 'su_fofs_log_export_filter');
|
15 |
+
|
16 |
class SU_FofsLog extends SU_Module {
|
17 |
|
18 |
function get_parent_module() { return 'fofs'; }
|
39 |
function init() {
|
40 |
add_action('admin_enqueue_scripts', array(&$this, 'queue_admin_scripts'));
|
41 |
add_action('su_save_hit', array(&$this, 'log_hit'));
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
}
|
43 |
|
44 |
//Upgrade to new wp_options-only system if needed
|
modules/class.su-module.php
CHANGED
@@ -288,10 +288,19 @@ class SU_Module {
|
|
288 |
* @return string
|
289 |
*/
|
290 |
function get_settings_key() {
|
291 |
-
if (
|
292 |
-
|
293 |
-
|
294 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
}
|
296 |
|
297 |
/**
|
@@ -1464,21 +1473,23 @@ class SU_Module {
|
|
1464 |
/**
|
1465 |
* @since 5.8
|
1466 |
*/
|
1467 |
-
function child_admin_form_start() {
|
1468 |
-
if ($this->get_parent_module() && $this->plugin->module_exists($this->get_parent_module()))
|
1469 |
-
$this->admin_form_table_start();
|
1470 |
-
else
|
1471 |
-
$this->admin_form_start();
|
|
|
1472 |
}
|
1473 |
|
1474 |
/**
|
1475 |
* @since 5.8
|
1476 |
*/
|
1477 |
-
function child_admin_form_end() {
|
1478 |
-
if ($this->get_parent_module() && $this->plugin->module_exists($this->get_parent_module()))
|
1479 |
-
$this->admin_form_table_end();
|
1480 |
-
else
|
1481 |
-
$this->admin_form_end();
|
|
|
1482 |
}
|
1483 |
|
1484 |
/**
|
@@ -1937,14 +1948,15 @@ class SU_Module {
|
|
1937 |
* @param array $defaults An array of default textbox values that trigger "Reset" links. (The field/setting ID is the key, and the default value is the value.) Optional.
|
1938 |
* @param mixed $grouptext The text to display in a table cell to the left of the one containing the textboxes. Optional.
|
1939 |
*/
|
1940 |
-
function textboxes($textboxes, $defaults=array(), $grouptext=false, $args=array()) {
|
1941 |
|
1942 |
$is_tree_parent = isset($args['is_tree_parent']) ? $args['is_tree_parent'] : false;
|
1943 |
$is_ec_tree = isset($args['is_ec_tree']) ? $args['is_ec_tree'] : false;
|
1944 |
$tree_level = isset($args['tree_level']) ? $args['tree_level'] : false;
|
1945 |
$disabled = isset($args['disabled']) ? $args['disabled'] : false;
|
|
|
1946 |
|
1947 |
-
if ($this->is_action('update')) {
|
1948 |
foreach ($textboxes as $id => $title) {
|
1949 |
if (isset($_POST[$id]))
|
1950 |
$this->update_setting($id, stripslashes($_POST[$id]));
|
@@ -1968,6 +1980,10 @@ class SU_Module {
|
|
1968 |
if ($grouptext) $this->admin_form_group_start($grouptext, false);
|
1969 |
|
1970 |
foreach ($textboxes as $id => $title) {
|
|
|
|
|
|
|
|
|
1971 |
register_setting($this->get_module_key(), $id);
|
1972 |
$value = su_esc_editable_html($this->get_setting($id));
|
1973 |
$id = su_esc_attr($id);
|
@@ -1975,11 +1991,13 @@ class SU_Module {
|
|
1975 |
|
1976 |
if ($grouptext)
|
1977 |
echo "<div class='field'><label for='$id'>$title</label><br />\n";
|
1978 |
-
elseif (strpos($title, '</a>') === false)
|
1979 |
echo "<tr valign='top'$indentattrs$hidden>\n<th scope='row' class='su-field-label'>$indenttoggle<label for='$id'><span class='su-field-label-text'>$title</span></label></th>\n<td>";
|
1980 |
-
|
1981 |
echo "<tr valign='top'$indentattrs$hidden>\n<td class='su-field-label'>$indenttoggle<span class='su-field-label-text'>$title</span></td>\n<td>";
|
1982 |
|
|
|
|
|
1983 |
echo "<input name='$id' id='$id' type='text' value='$value' class='regular-text' ";
|
1984 |
|
1985 |
if ($disabled)
|
@@ -2005,9 +2023,11 @@ class SU_Module {
|
|
2005 |
echo '</a>';
|
2006 |
}
|
2007 |
|
|
|
|
|
2008 |
if ($grouptext)
|
2009 |
echo "</div>\n";
|
2010 |
-
|
2011 |
echo "</td>\n</tr>\n";
|
2012 |
}
|
2013 |
|
@@ -2043,9 +2063,11 @@ class SU_Module {
|
|
2043 |
* @param int $rows The value of the textareas' rows attribute.
|
2044 |
* @param int $cols The value of the textareas' cols attribute.
|
2045 |
*/
|
2046 |
-
function textareas($textareas, $rows = 5, $cols = 30) {
|
2047 |
|
2048 |
-
|
|
|
|
|
2049 |
foreach ($textareas as $id => $title) {
|
2050 |
if (isset($_POST[$id]))
|
2051 |
$this->update_setting($id, stripslashes($_POST[$id]));
|
@@ -2059,7 +2081,10 @@ class SU_Module {
|
|
2059 |
|
2060 |
echo "<tr valign='top'>\n";
|
2061 |
if ($title) echo "<th scope='row'><label for='$id'>$title</label></th>\n";
|
2062 |
-
echo
|
|
|
|
|
|
|
2063 |
echo "</td>\n</tr>\n";
|
2064 |
}
|
2065 |
}
|
288 |
* @return string
|
289 |
*/
|
290 |
function get_settings_key() {
|
291 |
+
if (isset($this)) {
|
292 |
+
if (strlen($parent = $this->get_parent_module()) && !$this->is_independent_module())
|
293 |
+
return $this->plugin->modules[$parent]->get_settings_key();
|
294 |
+
else
|
295 |
+
return $this->get_module_key();
|
296 |
+
} else {
|
297 |
+
if (strlen($parent = self::get_parent_module()) && !self::is_independent_module()) {
|
298 |
+
global $seo_ultimate;
|
299 |
+
return $seo_ultimate->modules[$parent]->get_settings_key();
|
300 |
+
} else {
|
301 |
+
return false;
|
302 |
+
}
|
303 |
+
}
|
304 |
}
|
305 |
|
306 |
/**
|
1473 |
/**
|
1474 |
* @since 5.8
|
1475 |
*/
|
1476 |
+
function child_admin_form_start($table=true) {
|
1477 |
+
if ($this->get_parent_module() && $this->plugin->module_exists($this->get_parent_module())) {
|
1478 |
+
if ($table) $this->admin_form_table_start();
|
1479 |
+
} else {
|
1480 |
+
$this->admin_form_start(false, $table);
|
1481 |
+
}
|
1482 |
}
|
1483 |
|
1484 |
/**
|
1485 |
* @since 5.8
|
1486 |
*/
|
1487 |
+
function child_admin_form_end($table=true) {
|
1488 |
+
if ($this->get_parent_module() && $this->plugin->module_exists($this->get_parent_module())) {
|
1489 |
+
if ($table) $this->admin_form_table_end();
|
1490 |
+
} else {
|
1491 |
+
$this->admin_form_end(null, $table);
|
1492 |
+
}
|
1493 |
}
|
1494 |
|
1495 |
/**
|
1948 |
* @param array $defaults An array of default textbox values that trigger "Reset" links. (The field/setting ID is the key, and the default value is the value.) Optional.
|
1949 |
* @param mixed $grouptext The text to display in a table cell to the left of the one containing the textboxes. Optional.
|
1950 |
*/
|
1951 |
+
function textboxes($textboxes, $defaults=array(), $grouptext=false, $args=array(), $textbox_args=array()) {
|
1952 |
|
1953 |
$is_tree_parent = isset($args['is_tree_parent']) ? $args['is_tree_parent'] : false;
|
1954 |
$is_ec_tree = isset($args['is_ec_tree']) ? $args['is_ec_tree'] : false;
|
1955 |
$tree_level = isset($args['tree_level']) ? $args['tree_level'] : false;
|
1956 |
$disabled = isset($args['disabled']) ? $args['disabled'] : false;
|
1957 |
+
$in_table = isset($args['in_table']) ? $args['in_table'] : true;
|
1958 |
|
1959 |
+
if (!$disabled && $this->is_action('update')) {
|
1960 |
foreach ($textboxes as $id => $title) {
|
1961 |
if (isset($_POST[$id]))
|
1962 |
$this->update_setting($id, stripslashes($_POST[$id]));
|
1980 |
if ($grouptext) $this->admin_form_group_start($grouptext, false);
|
1981 |
|
1982 |
foreach ($textboxes as $id => $title) {
|
1983 |
+
|
1984 |
+
$before = isset($textbox_args[$id]['before']) ? $textbox_args[$id]['before'] : '';
|
1985 |
+
$after = isset($textbox_args[$id]['after']) ? $textbox_args[$id]['after'] : '';
|
1986 |
+
|
1987 |
register_setting($this->get_module_key(), $id);
|
1988 |
$value = su_esc_editable_html($this->get_setting($id));
|
1989 |
$id = su_esc_attr($id);
|
1991 |
|
1992 |
if ($grouptext)
|
1993 |
echo "<div class='field'><label for='$id'>$title</label><br />\n";
|
1994 |
+
elseif ($in_table && strpos($title, '</a>') === false)
|
1995 |
echo "<tr valign='top'$indentattrs$hidden>\n<th scope='row' class='su-field-label'>$indenttoggle<label for='$id'><span class='su-field-label-text'>$title</span></label></th>\n<td>";
|
1996 |
+
elseif ($in_table)
|
1997 |
echo "<tr valign='top'$indentattrs$hidden>\n<td class='su-field-label'>$indenttoggle<span class='su-field-label-text'>$title</span></td>\n<td>";
|
1998 |
|
1999 |
+
echo $before;
|
2000 |
+
|
2001 |
echo "<input name='$id' id='$id' type='text' value='$value' class='regular-text' ";
|
2002 |
|
2003 |
if ($disabled)
|
2023 |
echo '</a>';
|
2024 |
}
|
2025 |
|
2026 |
+
echo $after;
|
2027 |
+
|
2028 |
if ($grouptext)
|
2029 |
echo "</div>\n";
|
2030 |
+
elseif ($in_table)
|
2031 |
echo "</td>\n</tr>\n";
|
2032 |
}
|
2033 |
|
2063 |
* @param int $rows The value of the textareas' rows attribute.
|
2064 |
* @param int $cols The value of the textareas' cols attribute.
|
2065 |
*/
|
2066 |
+
function textareas($textareas, $rows = 5, $cols = 30, $args=array()) {
|
2067 |
|
2068 |
+
$disabled = isset($args['disabled']) ? $args['disabled'] : false;
|
2069 |
+
|
2070 |
+
if (!$disabled && $this->is_action('update')) {
|
2071 |
foreach ($textareas as $id => $title) {
|
2072 |
if (isset($_POST[$id]))
|
2073 |
$this->update_setting($id, stripslashes($_POST[$id]));
|
2081 |
|
2082 |
echo "<tr valign='top'>\n";
|
2083 |
if ($title) echo "<th scope='row'><label for='$id'>$title</label></th>\n";
|
2084 |
+
echo '<td>';
|
2085 |
+
echo "<textarea name='$id' id='$id' type='text' class='regular-text' cols='$cols' rows='$rows'";
|
2086 |
+
if ($disabled) echo " disabled='disabled'";
|
2087 |
+
echo ">$value</textarea>";
|
2088 |
echo "</td>\n</tr>\n";
|
2089 |
}
|
2090 |
}
|
modules/meta/meta-descriptions.php
CHANGED
@@ -7,6 +7,12 @@
|
|
7 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
class SU_MetaDescriptions extends SU_Module {
|
11 |
|
12 |
function get_module_title() { return __('Meta Description Editor', 'seo-ultimate'); }
|
7 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
10 |
+
function su_meta_descriptions_export_filter($all_settings) {
|
11 |
+
unset($all_settings['meta']['taxonomy_descriptions']);
|
12 |
+
return $all_settings;
|
13 |
+
}
|
14 |
+
add_filter('su_settings_export_array', 'su_meta_descriptions_export_filter');
|
15 |
+
|
16 |
class SU_MetaDescriptions extends SU_Module {
|
17 |
|
18 |
function get_module_title() { return __('Meta Description Editor', 'seo-ultimate'); }
|
modules/meta/meta-keywords.php
CHANGED
@@ -7,6 +7,12 @@
|
|
7 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
class SU_MetaKeywords extends SU_Module {
|
11 |
|
12 |
function get_module_title() { return __('Meta Keywords Editor', 'seo-ultimate'); }
|
7 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
10 |
+
function su_meta_keywords_export_filter($all_settings) {
|
11 |
+
unset($all_settings['meta']['taxonomy_keywords']);
|
12 |
+
return $all_settings;
|
13 |
+
}
|
14 |
+
add_filter('su_settings_export_array', 'su_meta_keywords_export_filter');
|
15 |
+
|
16 |
class SU_MetaKeywords extends SU_Module {
|
17 |
|
18 |
function get_module_title() { return __('Meta Keywords Editor', 'seo-ultimate'); }
|
modules/meta/webmaster-verify.css
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
#su-webmaster-verify td {
|
3 |
+
vertical-align: middle;
|
4 |
+
}
|
5 |
+
|
6 |
+
#su-webmaster-verify .su-webmaster-verify-meta_tag_before {
|
7 |
+
padding-right: 0;
|
8 |
+
}
|
9 |
+
|
10 |
+
#su-webmaster-verify td.su-webmaster-verify-meta_tag_before {
|
11 |
+
text-align: right;
|
12 |
+
}
|
13 |
+
|
14 |
+
#su-webmaster-verify .su-webmaster-verify-meta_tag {
|
15 |
+
padding-left: 0;
|
16 |
+
padding-right: 0;
|
17 |
+
}
|
18 |
+
|
19 |
+
#su-webmaster-verify .su-webmaster-verify-meta_tag_after {
|
20 |
+
padding-left: 0;
|
21 |
+
}
|
modules/meta/webmaster-verify.php
CHANGED
@@ -19,19 +19,28 @@ class SU_WebmasterVerify extends SU_Module {
|
|
19 |
add_action('su_head', array(&$this, 'head_tag_output'));
|
20 |
}
|
21 |
|
22 |
-
function
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
,
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
29 |
);
|
30 |
-
|
31 |
-
|
32 |
-
|
|
|
|
|
|
|
|
|
33 |
if ($value = $this->get_setting($site.'_verify')) {
|
34 |
-
if (sustr::startswith(trim($value), '<meta ') && sustr::endswith(trim($value), '/>'))
|
35 |
echo "\t".trim($value)."\n";
|
36 |
else {
|
37 |
$value = su_esc_attr($value);
|
@@ -42,13 +51,33 @@ class SU_WebmasterVerify extends SU_Module {
|
|
42 |
}
|
43 |
|
44 |
function admin_page_contents() {
|
45 |
-
|
46 |
-
$this->
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
)
|
51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
}
|
53 |
|
54 |
function add_help_tabs($screen) {
|
19 |
add_action('su_head', array(&$this, 'head_tag_output'));
|
20 |
}
|
21 |
|
22 |
+
function get_supported_search_engines() {
|
23 |
+
return array(
|
24 |
+
'google' => array(
|
25 |
+
'title' => __('Google Webmaster Tools', 'seo-ultimate')
|
26 |
+
, 'meta_name' => 'google-site-verification'
|
27 |
+
),'yahoo' => array(
|
28 |
+
'title' => __('Yahoo! Site Explorer', 'seo-ultimate')
|
29 |
+
, 'meta_name' => 'y_key'
|
30 |
+
), 'microsoft' => array(
|
31 |
+
'title' => __('Bing Webmaster Center', 'seo-ultimate')
|
32 |
+
, 'meta_name' => 'msvalidate.01'
|
33 |
+
)
|
34 |
);
|
35 |
+
}
|
36 |
+
|
37 |
+
function head_tag_output() {
|
38 |
+
$verify = $this->get_supported_search_engines();
|
39 |
+
foreach ($verify as $site => $site_data) {
|
40 |
+
$name = $site_data['meta_name'];
|
41 |
+
//Do we have verification tags? If so, output them.
|
42 |
if ($value = $this->get_setting($site.'_verify')) {
|
43 |
+
if (current_user_can('unfiltered_html') && sustr::startswith(trim($value), '<meta ') && sustr::endswith(trim($value), '/>'))
|
44 |
echo "\t".trim($value)."\n";
|
45 |
else {
|
46 |
$value = su_esc_attr($value);
|
51 |
}
|
52 |
|
53 |
function admin_page_contents() {
|
54 |
+
|
55 |
+
$this->child_admin_form_start(false);
|
56 |
+
|
57 |
+
$this->admin_wftable_start(array(
|
58 |
+
'portal' => __('Webmaster Portal', 'seo-ultimate')
|
59 |
+
, 'meta_tag_before' => __('Meta Tag', 'seo-ultimate')
|
60 |
+
, 'meta_tag' => ' '
|
61 |
+
, 'meta_tag_after' => ' '
|
62 |
+
));
|
63 |
+
|
64 |
+
$sites = $this->get_supported_search_engines();
|
65 |
+
|
66 |
+
foreach ($sites as $site => $site_data) {
|
67 |
+
echo "<tr>\n";
|
68 |
+
echo "<td class='su-webmaster-verify-portal'>" . esc_html($site_data['title']) . "</td>\n";
|
69 |
+
echo "<td class='su-webmaster-verify-meta_tag_before'><meta name=""
|
70 |
+
. esc_html($site_data['meta_name']) . "" content="</td>\n";
|
71 |
+
echo "<td class='su-webmaster-verify-meta_tag'>";
|
72 |
+
$this->textbox("{$site}_verify", '', false, false, array('in_table' => false));
|
73 |
+
echo "</td>\n";
|
74 |
+
echo "<td class='su-webmaster-verify-meta_tag_after'>" /></td>\n";
|
75 |
+
echo "</tr>\n";
|
76 |
+
}
|
77 |
+
|
78 |
+
$this->admin_wftable_end();
|
79 |
+
|
80 |
+
$this->child_admin_form_end(false);
|
81 |
}
|
82 |
|
83 |
function add_help_tabs($screen) {
|
modules/modules.css
CHANGED
@@ -34,7 +34,8 @@ div.su-module table.widefat td ul {
|
|
34 |
padding-left: 1em;
|
35 |
}
|
36 |
|
37 |
-
div.su-module .form-table .regular-text
|
|
|
38 |
width: 325px;
|
39 |
}
|
40 |
|
@@ -121,6 +122,10 @@ div.su-importmodule #import-status {
|
|
121 |
padding: 1em 0;
|
122 |
}
|
123 |
|
|
|
|
|
|
|
|
|
124 |
/* TABS (Heavily based on CSS from the Breadcrumbs NavXT plugin) */
|
125 |
|
126 |
div.su-module .su-tabs ul.ui-tabs-nav {
|
34 |
padding-left: 1em;
|
35 |
}
|
36 |
|
37 |
+
div.su-module .form-table .regular-text,
|
38 |
+
div.su-module .form-table .jls_text_dest {
|
39 |
width: 325px;
|
40 |
}
|
41 |
|
122 |
padding: 1em 0;
|
123 |
}
|
124 |
|
125 |
+
div.su-module textarea[disabled] {
|
126 |
+
background-color: #eee;
|
127 |
+
}
|
128 |
+
|
129 |
/* TABS (Heavily based on CSS from the Breadcrumbs NavXT plugin) */
|
130 |
|
131 |
div.su-module .su-tabs ul.ui-tabs-nav {
|
modules/modules.js
CHANGED
@@ -38,5 +38,5 @@ function su_confirm_unload_message() {
|
|
38 |
|
39 |
jQuery(document).ready(function() {
|
40 |
jQuery('input, textarea, select', 'div.su-module').change(su_enable_unload_confirm);
|
41 |
-
jQuery('form
|
42 |
});
|
38 |
|
39 |
jQuery(document).ready(function() {
|
40 |
jQuery('input, textarea, select', 'div.su-module').change(su_enable_unload_confirm);
|
41 |
+
jQuery('form', 'div.su-module').submit(su_disable_unload_confirm);
|
42 |
});
|
modules/noindex/noindex.php
CHANGED
@@ -7,6 +7,13 @@
|
|
7 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
class SU_Noindex extends SU_Module {
|
11 |
|
12 |
function get_module_title() { return __('Noindex Manager', 'seo-ultimate'); }
|
7 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
10 |
+
function su_noindex_export_filter($all_settings) {
|
11 |
+
unset($all_settings['meta']['taxonomy_meta_robots_noindex']);
|
12 |
+
unset($all_settings['meta']['taxonomy_meta_robots_nofollow']);
|
13 |
+
return $all_settings;
|
14 |
+
}
|
15 |
+
add_filter('su_settings_export_array', 'su_noindex_export_filter');
|
16 |
+
|
17 |
class SU_Noindex extends SU_Module {
|
18 |
|
19 |
function get_module_title() { return __('Noindex Manager', 'seo-ultimate'); }
|
modules/settings/settings-data.php
CHANGED
@@ -39,16 +39,19 @@ class SU_SettingsData extends SU_Module {
|
|
39 |
$psdata = (array)get_option('seo_ultimate', array());
|
40 |
|
41 |
//Module statuses
|
42 |
-
$export['modules'] = apply_filters(
|
43 |
|
44 |
//Module settings
|
45 |
$modules = array_keys($psdata['modules']);
|
46 |
$module_settings = array();
|
47 |
foreach($modules as $module) {
|
48 |
-
|
49 |
-
|
|
|
|
|
|
|
50 |
}
|
51 |
-
$export['settings'] = apply_filters(
|
52 |
|
53 |
//Encode
|
54 |
$export = base64_encode(serialize($export));
|
@@ -73,10 +76,11 @@ class SU_SettingsData extends SU_Module {
|
|
73 |
update_option('seo_ultimate', $psdata);
|
74 |
|
75 |
//Module settings
|
76 |
-
|
|
|
77 |
$msdata = (array)get_option("seo_ultimate_module_$module", array());
|
78 |
$msdata = array_merge($msdata, $module_settings);
|
79 |
-
update_option("seo_ultimate_module_$module", $msdata);
|
80 |
}
|
81 |
|
82 |
$this->queue_message('success', __('Settings successfully imported.', 'seo-ultimate'));
|
39 |
$psdata = (array)get_option('seo_ultimate', array());
|
40 |
|
41 |
//Module statuses
|
42 |
+
$export['modules'] = apply_filters('su_modules_export_array', $psdata['modules']);
|
43 |
|
44 |
//Module settings
|
45 |
$modules = array_keys($psdata['modules']);
|
46 |
$module_settings = array();
|
47 |
foreach($modules as $module) {
|
48 |
+
if (!$this->plugin->call_module_func($module, 'get_settings_key', $key) || !$key)
|
49 |
+
$key = $module;
|
50 |
+
|
51 |
+
$msdata = (array)get_option("seo_ultimate_module_$key", array());
|
52 |
+
if ($msdata) $module_settings[$key] = $msdata;
|
53 |
}
|
54 |
+
$export['settings'] = apply_filters('su_settings_export_array', $module_settings);
|
55 |
|
56 |
//Encode
|
57 |
$export = base64_encode(serialize($export));
|
76 |
update_option('seo_ultimate', $psdata);
|
77 |
|
78 |
//Module settings
|
79 |
+
$module_settings = apply_filters('su_settings_import_array', $import['settings']);
|
80 |
+
foreach ($module_settings as $module => $module_settings) {
|
81 |
$msdata = (array)get_option("seo_ultimate_module_$module", array());
|
82 |
$msdata = array_merge($msdata, $module_settings);
|
83 |
+
update_option("seo_ultimate_module_$module", $msdata);
|
84 |
}
|
85 |
|
86 |
$this->queue_message('success', __('Settings successfully imported.', 'seo-ultimate'));
|
modules/titles/titles.php
CHANGED
@@ -7,6 +7,12 @@
|
|
7 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
class SU_Titles extends SU_Module {
|
11 |
|
12 |
function get_module_title() { return __('Title Tag Rewriter', 'seo-ultimate'); }
|
7 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
10 |
+
function su_titles_export_filter($all_settings) {
|
11 |
+
unset($all_settings['titles']['taxonomy_titles']);
|
12 |
+
return $all_settings;
|
13 |
+
}
|
14 |
+
add_filter('su_settings_export_array', 'su_titles_export_filter');
|
15 |
+
|
16 |
class SU_Titles extends SU_Module {
|
17 |
|
18 |
function get_module_title() { return __('Title Tag Rewriter', 'seo-ultimate'); }
|
modules/user-code/user-code.php
CHANGED
@@ -7,6 +7,15 @@
|
|
7 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
class SU_UserCode extends SU_Module {
|
11 |
|
12 |
function get_module_title() { return __('Code Inserter', 'seo-ultimate'); }
|
@@ -17,6 +26,17 @@ class SU_UserCode extends SU_Module {
|
|
17 |
);
|
18 |
}
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
function init() {
|
21 |
$hooks = array('su_head', 'the_content', 'wp_footer');
|
22 |
foreach ($hooks as $hook) add_filter($hook, array(&$this, "{$hook}_code"));
|
@@ -28,6 +48,13 @@ class SU_UserCode extends SU_Module {
|
|
28 |
);
|
29 |
}
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
function usercode_admin_tab($section) {
|
32 |
|
33 |
$textareas = array(
|
@@ -39,7 +66,7 @@ class SU_UserCode extends SU_Module {
|
|
39 |
$textareas = suarr::aprintf("{$section}_%s", false, $textareas);
|
40 |
|
41 |
$this->admin_form_table_start();
|
42 |
-
$this->textareas($textareas);
|
43 |
$this->admin_form_table_end();
|
44 |
}
|
45 |
|
@@ -84,6 +111,7 @@ class SU_UserCode extends SU_Module {
|
|
84 |
, 'title' => __('Troubleshooting', 'seo-ultimate')
|
85 |
, 'content' => __("
|
86 |
<ul>
|
|
|
87 |
<li><strong>Why doesn't my code appear on my site?</strong><br />It’s possible that your theme doesn't have the proper “hooks,” which are pieces of code that let WordPress plugins insert custom HTML into your theme. <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' target='_blank'>Click here</a> for information on how to check your theme and add the hooks if needed.</li>
|
88 |
</ul>
|
89 |
", 'seo-ultimate')));
|
7 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
10 |
+
function su_user_code_import_filter($all_settings) {
|
11 |
+
|
12 |
+
if (!SU_UserCode::user_authorized())
|
13 |
+
unset($all_settings['user-code']);
|
14 |
+
|
15 |
+
return $all_settings;
|
16 |
+
}
|
17 |
+
add_filter('su_settings_import_array', 'su_user_code_import_filter');
|
18 |
+
|
19 |
class SU_UserCode extends SU_Module {
|
20 |
|
21 |
function get_module_title() { return __('Code Inserter', 'seo-ultimate'); }
|
26 |
);
|
27 |
}
|
28 |
|
29 |
+
function get_default_status() {
|
30 |
+
if ($this->user_authorized())
|
31 |
+
return SU_MODULE_ENABLED;
|
32 |
+
|
33 |
+
return SU_MODULE_DISABLED;
|
34 |
+
}
|
35 |
+
|
36 |
+
function user_authorized() {
|
37 |
+
return current_user_can('unfiltered_html');
|
38 |
+
}
|
39 |
+
|
40 |
function init() {
|
41 |
$hooks = array('su_head', 'the_content', 'wp_footer');
|
42 |
foreach ($hooks as $hook) add_filter($hook, array(&$this, "{$hook}_code"));
|
48 |
);
|
49 |
}
|
50 |
|
51 |
+
function admin_page_contents() {
|
52 |
+
if (!$this->user_authorized())
|
53 |
+
$this->print_message('error', __('These fields are disabled because your user account does not have permission to insert arbitrary HTML into this site’s code.', 'seo-ultimate'));
|
54 |
+
|
55 |
+
$this->children_admin_page_tabs_form();
|
56 |
+
}
|
57 |
+
|
58 |
function usercode_admin_tab($section) {
|
59 |
|
60 |
$textareas = array(
|
66 |
$textareas = suarr::aprintf("{$section}_%s", false, $textareas);
|
67 |
|
68 |
$this->admin_form_table_start();
|
69 |
+
$this->textareas($textareas, 5, 30, array('disabled' => !$this->user_authorized()));
|
70 |
$this->admin_form_table_end();
|
71 |
}
|
72 |
|
111 |
, 'title' => __('Troubleshooting', 'seo-ultimate')
|
112 |
, 'content' => __("
|
113 |
<ul>
|
114 |
+
<li><p><strong>Why do I get a message saying my account doesn’t have permission to insert arbitrary HTML code?</strong><br />WordPress has a security feature that only allows administrators to insert arbitrary, unfiltered HTML into the site. On single-site setups, site administrators have this capability. On multisite setups, only network admins have this capability. This is done for security reasons, since site users with the ability to insert arbitrary HTML could theoretically insert malicious code that could be used to hijack control of the site.</p><p>If you are the administrator of a site running on a network, then you will not be able to use Code Inserter under default security settings. However, the network administrator <em>will</em> be able to edit the fields on this page. If you have code that you really want inserted into a certain part of your site, ask your network administrator to do it for you.</p><p>If you are the network administrator of a multisite WordPress setup, and you completely trust all of the administrators and editors of the various sites on your network, you can install the <a href='http://wordpress.org/extend/plugins/unfiltered-mu/' target='_blank'>Unfiltered MU</a> plugin to enable the Code Inserter for all of those users.</p></li>
|
115 |
<li><strong>Why doesn't my code appear on my site?</strong><br />It’s possible that your theme doesn't have the proper “hooks,” which are pieces of code that let WordPress plugins insert custom HTML into your theme. <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' target='_blank'>Click here</a> for information on how to check your theme and add the hooks if needed.</li>
|
116 |
</ul>
|
117 |
", 'seo-ultimate')));
|
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 |
|
@@ -259,6 +259,16 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
259 |
|
260 |
== Changelog ==
|
261 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
262 |
= Version 7.2.5 (June 29, 2012) =
|
263 |
* Improvement: The Upgrade/Downgrade/Reinstall/Uninstall tabs have been moved from the site admin to the network admin in cases where the plugin is network-activated on multisite setups
|
264 |
* Security Fix: The Uninstall tool now checks for the delete_plugins capability (whereas previously, any user with the manage_options capability could uninstall)
|
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.6
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
259 |
|
260 |
== Changelog ==
|
261 |
|
262 |
+
= Version 7.2.6 (July 3, 2012) =
|
263 |
+
* Improvement: Updated the Webmaster Verification Assistant interface to further clarify its functionality
|
264 |
+
* Security Fix: Webmaster Verification Assistant no longer allows users without the unfiltered_html capability to insert arbitrary `<meta>` tags (and, theoretically, other HTML)
|
265 |
+
* Security Fix: Code Inserter now checks for the unfiltered_html capability in addition to the manage_options capability. In other words, site administrators on multisite setups can no longer use Code Inserter. (Security Note: If any users without the unfiltered_html capability previously entered code into Code Inserter, that code will remain active even after upgrading. Network admins may want to check the Code Inserter pages of their network's sites to ensure that site admins have not entered any malicious code.)
|
266 |
+
* Bugfix: Fixed broken settings exporter (bug introduced in 5.0)
|
267 |
+
* Bugfix: Fixed a bug which caused some modules' settings to be excluded from settings export files (bug introduced in 1.5)
|
268 |
+
* Bugfix: 404 Monitor's logs are now excluded from settings export files even if 404 Monitor is disabled (bug introduced in 2.1)
|
269 |
+
* Bugfix: The custom title tags and meta data of categories/tags/terms are now excluded from settings export files (bug introduced in 2.9)
|
270 |
+
* Bugfix: The dialog box that confirms you want to leave a page without saving changes no longer appears after starting a settings import (bug introduced in 5.7)
|
271 |
+
|
272 |
= Version 7.2.5 (June 29, 2012) =
|
273 |
* Improvement: The Upgrade/Downgrade/Reinstall/Uninstall tabs have been moved from the site admin to the network admin in cases where the plugin is network-activated on multisite setups
|
274 |
* Security Fix: The Uninstall tool now checks for the delete_plugins capability (whereas previously, any user with the manage_options capability could uninstall)
|
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 |
|
@@ -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.6
|
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.6
|
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.2.6');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/7.2.6');
|
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-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -61,15 +61,15 @@ msgstr ""
|
|
61 |
msgid "backup your database"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: modules/404s/fofs-log.php:
|
65 |
msgid "404 Monitor Log"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: modules/404s/fofs-log.php:
|
69 |
msgid "Log"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: modules/404s/fofs-log.php:113 modules/class.su-module.php:
|
73 |
msgid "Actions"
|
74 |
msgstr ""
|
75 |
|
@@ -161,7 +161,7 @@ msgstr ""
|
|
161 |
|
162 |
#: modules/404s/fofs-settings.php:17
|
163 |
#: modules/internal-link-aliases/internal-link-aliases.php:31
|
164 |
-
#: modules/titles/titles.php:
|
165 |
msgid "Settings"
|
166 |
msgstr ""
|
167 |
|
@@ -207,14 +207,14 @@ 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:
|
211 |
-
#: modules/meta/meta-keywords.php:
|
212 |
-
#: modules/meta/webmaster-verify.php:
|
213 |
#: modules/more-links/more-links.php:111
|
214 |
#: modules/rich-snippets/rich-snippets.php:258
|
215 |
#: modules/settings/settings.php:63
|
216 |
#: modules/sharing-buttons/sharing-buttons.php:72 modules/slugs/slugs.php:76
|
217 |
-
#: modules/titles/titles.php:
|
218 |
msgid "Overview"
|
219 |
msgstr ""
|
220 |
|
@@ -264,9 +264,9 @@ msgid ""
|
|
264 |
msgstr ""
|
265 |
|
266 |
#: modules/404s/fofs.php:45 modules/linkbox/linkbox.php:102
|
267 |
-
#: modules/meta/meta-descriptions.php:
|
268 |
#: modules/meta/meta-robots.php:64 modules/rich-snippets/rich-snippets.php:269
|
269 |
-
#: modules/titles/titles.php:
|
270 |
msgid "Settings Help"
|
271 |
msgstr ""
|
272 |
|
@@ -316,10 +316,10 @@ msgid ""
|
|
316 |
msgstr ""
|
317 |
|
318 |
#: modules/404s/fofs.php:74 modules/files/files.php:165
|
319 |
-
#: modules/meta/meta-descriptions.php:
|
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:
|
323 |
msgid "Troubleshooting"
|
324 |
msgstr ""
|
325 |
|
@@ -486,8 +486,8 @@ msgid "Delete"
|
|
486 |
msgstr ""
|
487 |
|
488 |
#: modules/autolinks/content-autolinks.php:397
|
489 |
-
#: modules/autolinks/footer-autolinks.php:210 modules/noindex/noindex.php:
|
490 |
-
#: modules/noindex/noindex.php:
|
491 |
msgid "Nofollow"
|
492 |
msgstr ""
|
493 |
|
@@ -725,108 +725,108 @@ msgid_plural ""
|
|
725 |
msgstr[0] ""
|
726 |
msgstr[1] ""
|
727 |
|
728 |
-
#: modules/class.su-module.php:
|
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:
|
735 |
msgid "%1$s | %2$s %3$s by %4$s"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: modules/class.su-module.php:
|
739 |
msgid "Your site currently doesn’t have any public items of this type."
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: modules/class.su-module.php:
|
743 |
msgid "«"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: modules/class.su-module.php:
|
747 |
msgid "»"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: modules/class.su-module.php:
|
751 |
msgid "Displaying %s–%s of %s"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: modules/class.su-module.php:
|
755 |
msgid "ID"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: modules/class.su-module.php:
|
759 |
msgid "View"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: modules/class.su-module.php:
|
763 |
msgid "Edit"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: modules/class.su-module.php:
|
767 |
msgid "Settings updated."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: modules/class.su-module.php:
|
771 |
msgid "Save Changes"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: modules/class.su-module.php:
|
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:
|
781 |
msgid "Reset"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: modules/class.su-module.php:
|
785 |
msgid "A Deleted %s"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: modules/class.su-module.php:
|
789 |
msgid "A Deleted Post"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: modules/class.su-module.php:
|
793 |
msgid "A Deleted Term"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: modules/class.su-module.php:
|
797 |
-
#: modules/meta/meta-keywords.php:
|
798 |
msgid "Blog Homepage"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: modules/class.su-module.php:
|
802 |
msgid "Author"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: modules/class.su-module.php:
|
806 |
msgid "A Deleted User"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: modules/class.su-module.php:
|
810 |
msgid "Link Mask"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: modules/class.su-module.php:
|
814 |
msgid "Link Mask (Disabled)"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: modules/class.su-module.php:
|
818 |
msgid "A Deleted Link Mask"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: modules/class.su-module.php:
|
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:
|
826 |
msgid "Remove this location from this textbox"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: modules/class.su-module.php:
|
830 |
msgid "X"
|
831 |
msgstr ""
|
832 |
|
@@ -903,11 +903,11 @@ msgid ""
|
|
903 |
"</ul>\r\n"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: modules/files/files.php:155 modules/meta/meta-descriptions.php:
|
907 |
-
#: modules/meta/meta-keywords.php:
|
908 |
#: modules/more-links/more-links.php:105 modules/more-links/more-links.php:116
|
909 |
#: modules/settings/settings.php:82 modules/slugs/slugs.php:87
|
910 |
-
#: modules/titles/titles.php:
|
911 |
msgid "FAQ"
|
912 |
msgstr ""
|
913 |
|
@@ -1211,63 +1211,63 @@ msgid ""
|
|
1211 |
"</ul>\r\n"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: modules/meta/meta-descriptions.php:
|
1215 |
msgid "Meta Description Editor"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: modules/meta/meta-descriptions.php:
|
1219 |
msgid "Meta Descriptions"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: modules/meta/meta-descriptions.php:
|
1223 |
msgid "Default Formats"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: modules/meta/meta-descriptions.php:
|
1227 |
msgid "Meta Description"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: modules/meta/meta-descriptions.php:
|
1231 |
msgid "Post Description Format"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: modules/meta/meta-descriptions.php:
|
1235 |
msgid "Page Description Format"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: modules/meta/meta-descriptions.php:
|
1239 |
msgid "Category Description Format"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: modules/meta/meta-descriptions.php:
|
1243 |
msgid "Post Tag Description Format"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: modules/meta/meta-descriptions.php:
|
1247 |
msgid "Pagination Description Format"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: modules/meta/meta-descriptions.php:
|
1251 |
msgid "Blog Homepage Meta Description"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: modules/meta/meta-descriptions.php:
|
1255 |
msgid "Use this blog’s tagline as the default homepage description."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: modules/meta/meta-descriptions.php:
|
1259 |
msgid "Default Value"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: modules/meta/meta-descriptions.php:
|
1263 |
msgid "Meta Description:"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: modules/meta/meta-descriptions.php:
|
1267 |
msgid "You’ve entered %s characters. Most search engines use up to 140."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: modules/meta/meta-descriptions.php:
|
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 "
|
@@ -1275,7 +1275,7 @@ msgid ""
|
|
1275 |
"is important to ensuring a good search results clickthrough rate."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: modules/meta/meta-descriptions.php:
|
1279 |
msgid ""
|
1280 |
"\r\n"
|
1281 |
"<ul>\r\n"
|
@@ -1294,7 +1294,7 @@ msgid ""
|
|
1294 |
"</ul>\r\n"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: modules/meta/meta-descriptions.php:
|
1298 |
msgid ""
|
1299 |
"\r\n"
|
1300 |
"<p>Here’s information on the various settings:</p>\r\n"
|
@@ -1316,7 +1316,7 @@ msgid ""
|
|
1316 |
"</ul>\r\n"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: modules/meta/meta-descriptions.php:
|
1320 |
msgid ""
|
1321 |
"\r\n"
|
1322 |
"<ul>\r\n"
|
@@ -1330,7 +1330,7 @@ msgid ""
|
|
1330 |
"</ul>\r\n"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: modules/meta/meta-descriptions.php:
|
1334 |
#: modules/meta/meta-robots.php:104
|
1335 |
msgid ""
|
1336 |
"\r\n"
|
@@ -1352,39 +1352,39 @@ msgid ""
|
|
1352 |
"</ul>\r\n"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: modules/meta/meta-keywords.php:
|
1356 |
msgid "Meta Keywords Editor"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: modules/meta/meta-keywords.php:
|
1360 |
msgid "Meta Keywords"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: modules/meta/meta-keywords.php:
|
1364 |
msgid "Default Values"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: modules/meta/meta-keywords.php:
|
1368 |
msgid "The %d most commonly-used words"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: modules/meta/meta-keywords.php:
|
1372 |
msgid "Sitewide Keywords"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: modules/meta/meta-keywords.php:
|
1376 |
msgid "(Separate with commas)"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: modules/meta/meta-keywords.php:
|
1380 |
msgid "Blog Homepage Meta Keywords"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: modules/meta/meta-keywords.php:
|
1384 |
msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: modules/meta/meta-keywords.php:
|
1388 |
msgid ""
|
1389 |
"<strong>Keywords</strong> — The value of the meta keywords tag. The "
|
1390 |
"keywords list gives search engines a hint as to what this post/page is "
|
@@ -1392,7 +1392,7 @@ msgid ""
|
|
1392 |
"three</samp>."
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: modules/meta/meta-keywords.php:
|
1396 |
msgid ""
|
1397 |
"\r\n"
|
1398 |
"<p>Meta Keywords Editor lets you tell search engines what keywords are "
|
@@ -1403,7 +1403,7 @@ msgid ""
|
|
1403 |
"p>\r\n"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: modules/meta/meta-keywords.php:
|
1407 |
msgid ""
|
1408 |
"\r\n"
|
1409 |
"<ul>\r\n"
|
@@ -1420,7 +1420,7 @@ msgid ""
|
|
1420 |
"</ul>\r\n"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: modules/meta/meta-keywords.php:
|
1424 |
msgid ""
|
1425 |
"\r\n"
|
1426 |
"<ul>\r\n"
|
@@ -1570,7 +1570,7 @@ msgid ""
|
|
1570 |
"</ul>\r\n"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: modules/meta/webmaster-verify.php:12 modules/meta/webmaster-verify.php:
|
1574 |
msgid "Webmaster Verification Assistant"
|
1575 |
msgstr ""
|
1576 |
|
@@ -1578,19 +1578,27 @@ msgstr ""
|
|
1578 |
msgid "W.M. Verification"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: modules/meta/webmaster-verify.php:
|
1582 |
msgid "Google Webmaster Tools"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: modules/meta/webmaster-verify.php:
|
1586 |
msgid "Yahoo! Site Explorer"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: modules/meta/webmaster-verify.php:
|
1590 |
msgid "Bing Webmaster Center"
|
1591 |
msgstr ""
|
1592 |
|
|
|
|
|
|
|
|
|
1593 |
#: modules/meta/webmaster-verify.php:59
|
|
|
|
|
|
|
|
|
1594 |
msgid ""
|
1595 |
"\r\n"
|
1596 |
"<ul>\r\n"
|
@@ -1784,94 +1792,94 @@ msgid ""
|
|
1784 |
"</ul>\r\n"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: modules/noindex/noindex.php:
|
1788 |
msgid "Noindex Manager"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: modules/noindex/noindex.php:
|
1792 |
-
#: modules/noindex/noindex.php:
|
1793 |
msgid "Noindex"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: modules/noindex/noindex.php:
|
1797 |
msgid "Use default"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: modules/noindex/noindex.php:
|
1801 |
msgid "noindex"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: modules/noindex/noindex.php:
|
1805 |
msgid "index"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: modules/noindex/noindex.php:
|
1809 |
msgid "nofollow"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: modules/noindex/noindex.php:
|
1813 |
msgid "follow"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: modules/noindex/noindex.php:
|
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:
|
1823 |
msgid "Prevent indexing of..."
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: modules/noindex/noindex.php:
|
1827 |
msgid "Administration back-end pages"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: modules/noindex/noindex.php:
|
1831 |
msgid "Author archives"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: modules/noindex/noindex.php:
|
1835 |
msgid "Blog search pages"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: modules/noindex/noindex.php:
|
1839 |
msgid "Category archives"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: modules/noindex/noindex.php:
|
1843 |
msgid "Comment feeds"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: modules/noindex/noindex.php:
|
1847 |
msgid "Comment subpages"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: modules/noindex/noindex.php:
|
1851 |
msgid "Date-based archives"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: modules/noindex/noindex.php:
|
1855 |
msgid "Subpages of the homepage"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: modules/noindex/noindex.php:
|
1859 |
msgid "Tag archives"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: modules/noindex/noindex.php:
|
1863 |
msgid "User login/registration pages"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: modules/noindex/noindex.php:
|
1867 |
msgid "Noindex: Tell search engines not to index this webpage."
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: modules/noindex/noindex.php:
|
1871 |
msgid "Nofollow: Tell search engines not to spider links on this webpage."
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: modules/noindex/noindex.php:
|
1875 |
msgid "Meta Robots Tag:"
|
1876 |
msgstr ""
|
1877 |
|
@@ -2099,7 +2107,7 @@ msgstr ""
|
|
2099 |
msgid "SEO Design Solutions Whitepapers"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.2.
|
2103 |
#. Author of the plugin/theme
|
2104 |
#: modules/sds-blog/sds-blog.php:49
|
2105 |
msgid "SEO Design Solutions"
|
@@ -2251,50 +2259,50 @@ msgstr ""
|
|
2251 |
msgid "Export"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: modules/settings/settings-data.php:
|
2255 |
msgid "Settings successfully imported."
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: modules/settings/settings-data.php:
|
2259 |
msgid ""
|
2260 |
"The uploaded file is not in the proper format. Settings could not be "
|
2261 |
"imported."
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: modules/settings/settings-data.php:
|
2265 |
msgid "The settings file could not be uploaded successfully."
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: modules/settings/settings-data.php:
|
2269 |
msgid ""
|
2270 |
"Settings could not be imported because no settings file was selected. Please "
|
2271 |
"click the “Browse” button and select a file to import."
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: modules/settings/settings-data.php:
|
2275 |
msgid ""
|
2276 |
"The uploaded file is not in the proper format. Links could not be imported."
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: modules/settings/settings-data.php:
|
2280 |
msgid "Links successfully imported."
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: modules/settings/settings-data.php:
|
2284 |
msgid "The CSV file could not be uploaded successfully."
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: modules/settings/settings-data.php:
|
2288 |
msgid ""
|
2289 |
"Links could not be imported because no CSV file was selected. Please click "
|
2290 |
"the “Browse” button and select a file to import."
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#: modules/settings/settings-data.php:
|
2294 |
msgid "Import SEO Ultimate Settings File"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: modules/settings/settings-data.php:
|
2298 |
msgid ""
|
2299 |
"You can use this form to upload and import an SEO Ultimate settings file "
|
2300 |
"stored on your computer. (These files can be created using the Export tool.) "
|
@@ -2302,21 +2310,21 @@ msgid ""
|
|
2302 |
"in the file."
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: modules/settings/settings-data.php:
|
2306 |
msgid ""
|
2307 |
"Are you sure you want to import this settings file? This will overwrite your "
|
2308 |
"current settings and cannot be undone."
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: modules/settings/settings-data.php:
|
2312 |
msgid "Import Settings File"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: modules/settings/settings-data.php:
|
2316 |
msgid "Import Deeplink Juggernaut CSV File"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: modules/settings/settings-data.php:
|
2320 |
msgid ""
|
2321 |
"You can use this form to upload and import a Deeplink Juggernaut CSV file "
|
2322 |
"stored on your computer. (These files can be created using the Export tool.) "
|
@@ -2324,38 +2332,38 @@ msgid ""
|
|
2324 |
"the file."
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: modules/settings/settings-data.php:
|
2328 |
msgid ""
|
2329 |
"Are you sure you want to import this CSV file? This will overwrite your "
|
2330 |
"current Deeplink Juggernaut links and cannot be undone."
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: modules/settings/settings-data.php:
|
2334 |
msgid "Import CSV File"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#: modules/settings/settings-data.php:
|
2338 |
msgid "Import from Other Plugins"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: modules/settings/settings-data.php:
|
2342 |
msgid ""
|
2343 |
"You can import settings and data from these plugins. Clicking a plugin’"
|
2344 |
"s name will take you to the importer page, where you can customize "
|
2345 |
"parameters and start the import."
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: modules/settings/settings-data.php:
|
2349 |
msgid "Export SEO Ultimate Settings File"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#: modules/settings/settings-data.php:
|
2353 |
msgid ""
|
2354 |
"You can use this export tool to download an SEO Ultimate settings file to "
|
2355 |
"your computer."
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: modules/settings/settings-data.php:
|
2359 |
msgid ""
|
2360 |
"A settings file includes the data of every checkbox and textbox of every "
|
2361 |
"installed module. It does NOT include site-specific data like logged 404s or "
|
@@ -2363,15 +2371,15 @@ msgid ""
|
|
2363 |
"database backup, however)."
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: modules/settings/settings-data.php:
|
2367 |
msgid "Download Settings File"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: modules/settings/settings-data.php:
|
2371 |
msgid "Export Deeplink Juggernaut CSV File"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: modules/settings/settings-data.php:
|
2375 |
msgid ""
|
2376 |
"You can use this export tool to download a CSV file (comma-separated values "
|
2377 |
"file) that contains your Deeplink Juggernaut links. Once you download this "
|
@@ -2380,26 +2388,26 @@ msgid ""
|
|
2380 |
"the Import tool."
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: modules/settings/settings-data.php:
|
2384 |
msgid "Download CSV File"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: modules/settings/settings-data.php:
|
2388 |
msgid "All settings have been erased and defaults have been restored."
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: modules/settings/settings-data.php:
|
2392 |
msgid ""
|
2393 |
"You can erase all your SEO Ultimate settings and restore them to “"
|
2394 |
"factory defaults” by clicking the button below."
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#: modules/settings/settings-data.php:
|
2398 |
msgid ""
|
2399 |
"Are you sure you want to erase all module settings? This cannot be undone."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: modules/settings/settings-data.php:
|
2403 |
msgid "Restore Default Settings"
|
2404 |
msgstr ""
|
2405 |
|
@@ -2419,7 +2427,7 @@ msgstr ""
|
|
2419 |
msgid "SEO Ultimate Plugin Settings"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.2.
|
2423 |
#. Plugin Name of the plugin/theme
|
2424 |
#: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:851
|
2425 |
msgid "SEO Ultimate"
|
@@ -2637,139 +2645,139 @@ msgid ""
|
|
2637 |
"</ul>\r\n"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
-
#: modules/titles/titles.php:
|
2641 |
msgid "Title Tag Rewriter"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: modules/titles/titles.php:
|
2645 |
msgid "Title Tag"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: modules/titles/titles.php:
|
2649 |
msgid ""
|
2650 |
"Convert lowercase category/tag names to title case when used in title tags."
|
2651 |
msgstr ""
|
2652 |
|
2653 |
-
#: modules/titles/titles.php:
|
2654 |
msgid "Title Tag Variables"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: modules/titles/titles.php:
|
2658 |
msgid ""
|
2659 |
"Use output buffering — no configuration required, but slower (default)"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: modules/titles/titles.php:
|
2663 |
msgid ""
|
2664 |
"Use filtering — faster, but configuration required (see the “"
|
2665 |
"Settings Help” dropdown for details)"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: modules/titles/titles.php:
|
2669 |
msgid "Rewrite Method"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: modules/titles/titles.php:
|
2673 |
msgid "{blog}"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: modules/titles/titles.php:
|
2677 |
msgid "{post} | {blog}"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: modules/titles/titles.php:
|
2681 |
msgid "{page} | {blog}"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#: modules/titles/titles.php:
|
2685 |
msgid "{category} | {blog}"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
-
#: modules/titles/titles.php:
|
2689 |
msgid "{tag} | {blog}"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
#: modules/titles/titles.php:
|
2693 |
msgid "Archives for {month} {day}, {year} | {blog}"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
-
#: modules/titles/titles.php:
|
2697 |
msgid "Archives for {month} {year} | {blog}"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#: modules/titles/titles.php:
|
2701 |
msgid "Archives for {year} | {blog}"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
-
#: modules/titles/titles.php:
|
2705 |
msgid "Posts by {author} | {blog}"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
-
#: modules/titles/titles.php:
|
2709 |
msgid "Search Results for {query} | {blog}"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: modules/titles/titles.php:
|
2713 |
msgid "404 Not Found | {blog}"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#: modules/titles/titles.php:
|
2717 |
msgid "{title} - Page {num}"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: modules/titles/titles.php:
|
2721 |
msgid "Blog Homepage Title"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: modules/titles/titles.php:
|
2725 |
msgid "Post Title Format"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: modules/titles/titles.php:
|
2729 |
msgid "Page Title Format"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: modules/titles/titles.php:
|
2733 |
msgid "Category Title Format"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: modules/titles/titles.php:
|
2737 |
msgid "Tag Title Format"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: modules/titles/titles.php:
|
2741 |
msgid "Day Archive Title Format"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: modules/titles/titles.php:
|
2745 |
msgid "Month Archive Title Format"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: modules/titles/titles.php:
|
2749 |
msgid "Year Archive Title Format"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: modules/titles/titles.php:
|
2753 |
msgid "Author Archive Title Format"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: modules/titles/titles.php:
|
2757 |
msgid "Search Title Format"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: modules/titles/titles.php:
|
2761 |
msgid "404 Title Format"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: modules/titles/titles.php:
|
2765 |
msgid "Pagination Title Format"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: modules/titles/titles.php:
|
2769 |
msgid "Title Tag:"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: modules/titles/titles.php:
|
2773 |
msgid ""
|
2774 |
"<strong>Title Tag</strong> — The exact contents of the <title> "
|
2775 |
"tag. The title appears in visitors’ title bars and in search engine "
|
@@ -2777,7 +2785,7 @@ msgid ""
|
|
2777 |
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: modules/titles/titles.php:
|
2781 |
msgid ""
|
2782 |
"\r\n"
|
2783 |
"<ul>\r\n"
|
@@ -2800,11 +2808,11 @@ msgid ""
|
|
2800 |
"</ul>\r\n"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
-
#: modules/titles/titles.php:
|
2804 |
msgid "Formats & Variables"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#: modules/titles/titles.php:
|
2808 |
msgid ""
|
2809 |
"\r\n"
|
2810 |
"<p>Various variables, surrounded in {curly brackets}, are provided for use "
|
@@ -2907,7 +2915,7 @@ msgid ""
|
|
2907 |
"</ul>\r\n"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: modules/titles/titles.php:
|
2911 |
msgid ""
|
2912 |
"\r\n"
|
2913 |
"<p>Here’s documentation for the options on the “Settings” "
|
@@ -2962,7 +2970,7 @@ msgid ""
|
|
2962 |
"</ul>\r\n"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: modules/titles/titles.php:
|
2966 |
msgid ""
|
2967 |
"\r\n"
|
2968 |
"<ul>\r\n"
|
@@ -2985,7 +2993,7 @@ msgid ""
|
|
2985 |
"</ul>\r\n"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
-
#: modules/titles/titles.php:
|
2989 |
msgid ""
|
2990 |
"\r\n"
|
2991 |
"<ul>\r\n"
|
@@ -3002,35 +3010,41 @@ msgid ""
|
|
3002 |
"</ul>\r\n"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: modules/user-code/user-code.php:
|
3006 |
msgid "Code Inserter"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
-
#: modules/user-code/user-code.php:
|
3010 |
msgid "Everywhere"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: modules/user-code/user-code.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3014 |
msgid "<head> Tag"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: modules/user-code/user-code.php:
|
3018 |
msgid "Before Item Content"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#: modules/user-code/user-code.php:
|
3022 |
msgid "After Item Content"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: modules/user-code/user-code.php:
|
3026 |
msgid "Footer"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: modules/user-code/user-code.php:
|
3030 |
msgid "Code Inserter module"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: modules/user-code/user-code.php:
|
3034 |
msgid ""
|
3035 |
"\r\n"
|
3036 |
"<ul>\r\n"
|
@@ -3051,10 +3065,28 @@ msgid ""
|
|
3051 |
"</ul>\r\n"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: modules/user-code/user-code.php:
|
3055 |
msgid ""
|
3056 |
"\r\n"
|
3057 |
"<ul>\r\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3058 |
"\t<li><strong>Why doesn't my code appear on my site?</strong><br />It’"
|
3059 |
"s possible that your theme doesn't have the proper “hooks,” "
|
3060 |
"which are pieces of code that let WordPress plugins insert custom HTML into "
|
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\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2012-07-03 18:47:01+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
61 |
msgid "backup your database"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: modules/404s/fofs-log.php:22
|
65 |
msgid "404 Monitor Log"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: modules/404s/fofs-log.php:23
|
69 |
msgid "Log"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: modules/404s/fofs-log.php:113 modules/class.su-module.php:1214
|
73 |
msgid "Actions"
|
74 |
msgstr ""
|
75 |
|
161 |
|
162 |
#: modules/404s/fofs-settings.php:17
|
163 |
#: modules/internal-link-aliases/internal-link-aliases.php:31
|
164 |
+
#: modules/titles/titles.php:40
|
165 |
msgid "Settings"
|
166 |
msgstr ""
|
167 |
|
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:180
|
211 |
+
#: modules/meta/meta-keywords.php:172 modules/meta/meta-robots.php:53
|
212 |
+
#: modules/meta/webmaster-verify.php:87 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:63
|
216 |
#: modules/sharing-buttons/sharing-buttons.php:72 modules/slugs/slugs.php:76
|
217 |
+
#: modules/titles/titles.php:347 modules/user-code/user-code.php:97
|
218 |
msgid "Overview"
|
219 |
msgstr ""
|
220 |
|
264 |
msgstr ""
|
265 |
|
266 |
#: modules/404s/fofs.php:45 modules/linkbox/linkbox.php:102
|
267 |
+
#: modules/meta/meta-descriptions.php:191 modules/meta/meta-keywords.php:179
|
268 |
#: modules/meta/meta-robots.php:64 modules/rich-snippets/rich-snippets.php:269
|
269 |
+
#: modules/titles/titles.php:421
|
270 |
msgid "Settings Help"
|
271 |
msgstr ""
|
272 |
|
316 |
msgstr ""
|
317 |
|
318 |
#: modules/404s/fofs.php:74 modules/files/files.php:165
|
319 |
+
#: modules/meta/meta-descriptions.php:212 modules/meta/meta-keywords.php:202
|
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:459 modules/user-code/user-code.php:111
|
323 |
msgid "Troubleshooting"
|
324 |
msgstr ""
|
325 |
|
486 |
msgstr ""
|
487 |
|
488 |
#: modules/autolinks/content-autolinks.php:397
|
489 |
+
#: modules/autolinks/footer-autolinks.php:210 modules/noindex/noindex.php:61
|
490 |
+
#: modules/noindex/noindex.php:85
|
491 |
msgid "Nofollow"
|
492 |
msgstr ""
|
493 |
|
725 |
msgstr[0] ""
|
726 |
msgstr[1] ""
|
727 |
|
728 |
+
#: modules/class.su-module.php:679
|
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:1028
|
735 |
msgid "%1$s | %2$s %3$s by %4$s"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: modules/class.su-module.php:1107
|
739 |
msgid "Your site currently doesn’t have any public items of this type."
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: modules/class.su-module.php:1193
|
743 |
msgid "«"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: modules/class.su-module.php:1194
|
747 |
msgid "»"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: modules/class.su-module.php:1201
|
751 |
msgid "Displaying %s–%s of %s"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: modules/class.su-module.php:1215
|
755 |
msgid "ID"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: modules/class.su-module.php:1249
|
759 |
msgid "View"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: modules/class.su-module.php:1251
|
763 |
msgid "Edit"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: modules/class.su-module.php:1421
|
767 |
msgid "Settings updated."
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: modules/class.su-module.php:1442
|
771 |
msgid "Save Changes"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: modules/class.su-module.php:1990
|
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:2011 modules/settings/settings-data.php:23
|
781 |
msgid "Reset"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: modules/class.su-module.php:2733 modules/class.su-module.php:2745
|
785 |
msgid "A Deleted %s"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: modules/class.su-module.php:2735
|
789 |
msgid "A Deleted Post"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: modules/class.su-module.php:2750
|
793 |
msgid "A Deleted Term"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: modules/class.su-module.php:2756 modules/meta/meta-descriptions.php:31
|
797 |
+
#: modules/meta/meta-keywords.php:40 plugin/class.seo-ultimate.php:1735
|
798 |
msgid "Blog Homepage"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: modules/class.su-module.php:2761 plugin/class.seo-ultimate.php:1813
|
802 |
msgid "Author"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: modules/class.su-module.php:2763
|
806 |
msgid "A Deleted User"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: modules/class.su-module.php:2778 plugin/class.seo-ultimate.php:1843
|
810 |
msgid "Link Mask"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: modules/class.su-module.php:2780
|
814 |
msgid "Link Mask (Disabled)"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: modules/class.su-module.php:2785
|
818 |
msgid "A Deleted Link Mask"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: modules/class.su-module.php:2815
|
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:2828
|
826 |
msgid "Remove this location from this textbox"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: modules/class.su-module.php:2828
|
830 |
msgid "X"
|
831 |
msgstr ""
|
832 |
|
903 |
"</ul>\r\n"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: modules/files/files.php:155 modules/meta/meta-descriptions.php:203
|
907 |
+
#: modules/meta/meta-keywords.php:189 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:82 modules/slugs/slugs.php:87
|
910 |
+
#: modules/titles/titles.php:448
|
911 |
msgid "FAQ"
|
912 |
msgstr ""
|
913 |
|
1211 |
"</ul>\r\n"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: modules/meta/meta-descriptions.php:18
|
1215 |
msgid "Meta Description Editor"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: modules/meta/meta-descriptions.php:19
|
1219 |
msgid "Meta Descriptions"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: modules/meta/meta-descriptions.php:30 modules/titles/titles.php:39
|
1223 |
msgid "Default Formats"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: modules/meta/meta-descriptions.php:37
|
1227 |
msgid "Meta Description"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: modules/meta/meta-descriptions.php:56
|
1231 |
msgid "Post Description Format"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: modules/meta/meta-descriptions.php:57
|
1235 |
msgid "Page Description Format"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: modules/meta/meta-descriptions.php:58
|
1239 |
msgid "Category Description Format"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: modules/meta/meta-descriptions.php:59
|
1243 |
msgid "Post Tag Description Format"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: modules/meta/meta-descriptions.php:60
|
1247 |
msgid "Pagination Description Format"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: modules/meta/meta-descriptions.php:68
|
1251 |
msgid "Blog Homepage Meta Description"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: modules/meta/meta-descriptions.php:70
|
1255 |
msgid "Use this blog’s tagline as the default homepage description."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: modules/meta/meta-descriptions.php:71
|
1259 |
msgid "Default Value"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: modules/meta/meta-descriptions.php:161
|
1263 |
msgid "Meta Description:"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: modules/meta/meta-descriptions.php:164
|
1267 |
msgid "You’ve entered %s characters. Most search engines use up to 140."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: modules/meta/meta-descriptions.php:172
|
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 "
|
1275 |
"is important to ensuring a good search results clickthrough rate."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: modules/meta/meta-descriptions.php:181
|
1279 |
msgid ""
|
1280 |
"\r\n"
|
1281 |
"<ul>\r\n"
|
1294 |
"</ul>\r\n"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: modules/meta/meta-descriptions.php:192
|
1298 |
msgid ""
|
1299 |
"\r\n"
|
1300 |
"<p>Here’s information on the various settings:</p>\r\n"
|
1316 |
"</ul>\r\n"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: modules/meta/meta-descriptions.php:204
|
1320 |
msgid ""
|
1321 |
"\r\n"
|
1322 |
"<ul>\r\n"
|
1330 |
"</ul>\r\n"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: modules/meta/meta-descriptions.php:213 modules/meta/meta-keywords.php:203
|
1334 |
#: modules/meta/meta-robots.php:104
|
1335 |
msgid ""
|
1336 |
"\r\n"
|
1352 |
"</ul>\r\n"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: modules/meta/meta-keywords.php:18
|
1356 |
msgid "Meta Keywords Editor"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: modules/meta/meta-keywords.php:19 modules/meta/meta-keywords.php:46
|
1360 |
msgid "Meta Keywords"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: modules/meta/meta-keywords.php:39 modules/noindex/noindex.php:50
|
1364 |
msgid "Default Values"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: modules/meta/meta-keywords.php:62
|
1368 |
msgid "The %d most commonly-used words"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: modules/meta/meta-keywords.php:75
|
1372 |
msgid "Sitewide Keywords"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: modules/meta/meta-keywords.php:75
|
1376 |
msgid "(Separate with commas)"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: modules/meta/meta-keywords.php:82
|
1380 |
msgid "Blog Homepage Meta Keywords"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: modules/meta/meta-keywords.php:159
|
1384 |
msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: modules/meta/meta-keywords.php:164
|
1388 |
msgid ""
|
1389 |
"<strong>Keywords</strong> — The value of the meta keywords tag. The "
|
1390 |
"keywords list gives search engines a hint as to what this post/page is "
|
1392 |
"three</samp>."
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: modules/meta/meta-keywords.php:173
|
1396 |
msgid ""
|
1397 |
"\r\n"
|
1398 |
"<p>Meta Keywords Editor lets you tell search engines what keywords are "
|
1403 |
"p>\r\n"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: modules/meta/meta-keywords.php:180
|
1407 |
msgid ""
|
1408 |
"\r\n"
|
1409 |
"<ul>\r\n"
|
1420 |
"</ul>\r\n"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: modules/meta/meta-keywords.php:190
|
1424 |
msgid ""
|
1425 |
"\r\n"
|
1426 |
"<ul>\r\n"
|
1570 |
"</ul>\r\n"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: modules/meta/webmaster-verify.php:12 modules/meta/webmaster-verify.php:87
|
1574 |
msgid "Webmaster Verification Assistant"
|
1575 |
msgstr ""
|
1576 |
|
1578 |
msgid "W.M. Verification"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: modules/meta/webmaster-verify.php:25
|
1582 |
msgid "Google Webmaster Tools"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: modules/meta/webmaster-verify.php:28
|
1586 |
msgid "Yahoo! Site Explorer"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: modules/meta/webmaster-verify.php:31
|
1590 |
msgid "Bing Webmaster Center"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: modules/meta/webmaster-verify.php:58
|
1594 |
+
msgid "Webmaster Portal"
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
#: modules/meta/webmaster-verify.php:59
|
1598 |
+
msgid "Meta Tag"
|
1599 |
+
msgstr ""
|
1600 |
+
|
1601 |
+
#: modules/meta/webmaster-verify.php:88
|
1602 |
msgid ""
|
1603 |
"\r\n"
|
1604 |
"<ul>\r\n"
|
1792 |
"</ul>\r\n"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: modules/noindex/noindex.php:19
|
1796 |
msgid "Noindex Manager"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: modules/noindex/noindex.php:20 modules/noindex/noindex.php:56
|
1800 |
+
#: modules/noindex/noindex.php:74
|
1801 |
msgid "Noindex"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: modules/noindex/noindex.php:69 modules/noindex/noindex.php:80
|
1805 |
msgid "Use default"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: modules/noindex/noindex.php:70
|
1809 |
msgid "noindex"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: modules/noindex/noindex.php:71
|
1813 |
msgid "index"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: modules/noindex/noindex.php:81
|
1817 |
msgid "nofollow"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: modules/noindex/noindex.php:82
|
1821 |
msgid "follow"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: modules/noindex/noindex.php:96
|
1825 |
msgid ""
|
1826 |
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
1827 |
"block indexing of the entire site, regardless of which options are set below."
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: modules/noindex/noindex.php:99
|
1831 |
msgid "Prevent indexing of..."
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: modules/noindex/noindex.php:100
|
1835 |
msgid "Administration back-end pages"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: modules/noindex/noindex.php:101
|
1839 |
msgid "Author archives"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: modules/noindex/noindex.php:102
|
1843 |
msgid "Blog search pages"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: modules/noindex/noindex.php:103
|
1847 |
msgid "Category archives"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: modules/noindex/noindex.php:104
|
1851 |
msgid "Comment feeds"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: modules/noindex/noindex.php:105
|
1855 |
msgid "Comment subpages"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: modules/noindex/noindex.php:106
|
1859 |
msgid "Date-based archives"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: modules/noindex/noindex.php:107
|
1863 |
msgid "Subpages of the homepage"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: modules/noindex/noindex.php:108
|
1867 |
msgid "Tag archives"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: modules/noindex/noindex.php:109
|
1871 |
msgid "User login/registration pages"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: modules/noindex/noindex.php:172
|
1875 |
msgid "Noindex: Tell search engines not to index this webpage."
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: modules/noindex/noindex.php:173
|
1879 |
msgid "Nofollow: Tell search engines not to spider links on this webpage."
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: modules/noindex/noindex.php:174
|
1883 |
msgid "Meta Robots Tag:"
|
1884 |
msgstr ""
|
1885 |
|
2107 |
msgid "SEO Design Solutions Whitepapers"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.2.6) #-#-#-#-#
|
2111 |
#. Author of the plugin/theme
|
2112 |
#: modules/sds-blog/sds-blog.php:49
|
2113 |
msgid "SEO Design Solutions"
|
2259 |
msgid "Export"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: modules/settings/settings-data.php:86
|
2263 |
msgid "Settings successfully imported."
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: modules/settings/settings-data.php:88
|
2267 |
msgid ""
|
2268 |
"The uploaded file is not in the proper format. Settings could not be "
|
2269 |
"imported."
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: modules/settings/settings-data.php:90
|
2273 |
msgid "The settings file could not be uploaded successfully."
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: modules/settings/settings-data.php:93
|
2277 |
msgid ""
|
2278 |
"Settings could not be imported because no settings file was selected. Please "
|
2279 |
"click the “Browse” button and select a file to import."
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: modules/settings/settings-data.php:134
|
2283 |
msgid ""
|
2284 |
"The uploaded file is not in the proper format. Links could not be imported."
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
#: modules/settings/settings-data.php:176
|
2288 |
msgid "Links successfully imported."
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: modules/settings/settings-data.php:179
|
2292 |
msgid "The CSV file could not be uploaded successfully."
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: modules/settings/settings-data.php:182
|
2296 |
msgid ""
|
2297 |
"Links could not be imported because no CSV file was selected. Please click "
|
2298 |
"the “Browse” button and select a file to import."
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: modules/settings/settings-data.php:192
|
2302 |
msgid "Import SEO Ultimate Settings File"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
+
#: modules/settings/settings-data.php:194
|
2306 |
msgid ""
|
2307 |
"You can use this form to upload and import an SEO Ultimate settings file "
|
2308 |
"stored on your computer. (These files can be created using the Export tool.) "
|
2310 |
"in the file."
|
2311 |
msgstr ""
|
2312 |
|
2313 |
+
#: modules/settings/settings-data.php:198
|
2314 |
msgid ""
|
2315 |
"Are you sure you want to import this settings file? This will overwrite your "
|
2316 |
"current settings and cannot be undone."
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: modules/settings/settings-data.php:199
|
2320 |
msgid "Import Settings File"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: modules/settings/settings-data.php:205
|
2324 |
msgid "Import Deeplink Juggernaut CSV File"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: modules/settings/settings-data.php:207
|
2328 |
msgid ""
|
2329 |
"You can use this form to upload and import a Deeplink Juggernaut CSV file "
|
2330 |
"stored on your computer. (These files can be created using the Export tool.) "
|
2332 |
"the file."
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: modules/settings/settings-data.php:211
|
2336 |
msgid ""
|
2337 |
"Are you sure you want to import this CSV file? This will overwrite your "
|
2338 |
"current Deeplink Juggernaut links and cannot be undone."
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: modules/settings/settings-data.php:212
|
2342 |
msgid "Import CSV File"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: modules/settings/settings-data.php:227
|
2346 |
msgid "Import from Other Plugins"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: modules/settings/settings-data.php:229
|
2350 |
msgid ""
|
2351 |
"You can import settings and data from these plugins. Clicking a plugin’"
|
2352 |
"s name will take you to the importer page, where you can customize "
|
2353 |
"parameters and start the import."
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: modules/settings/settings-data.php:249
|
2357 |
msgid "Export SEO Ultimate Settings File"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: modules/settings/settings-data.php:251
|
2361 |
msgid ""
|
2362 |
"You can use this export tool to download an SEO Ultimate settings file to "
|
2363 |
"your computer."
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: modules/settings/settings-data.php:253
|
2367 |
msgid ""
|
2368 |
"A settings file includes the data of every checkbox and textbox of every "
|
2369 |
"installed module. It does NOT include site-specific data like logged 404s or "
|
2371 |
"database backup, however)."
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: modules/settings/settings-data.php:256
|
2375 |
msgid "Download Settings File"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: modules/settings/settings-data.php:261
|
2379 |
msgid "Export Deeplink Juggernaut CSV File"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: modules/settings/settings-data.php:263
|
2383 |
msgid ""
|
2384 |
"You can use this export tool to download a CSV file (comma-separated values "
|
2385 |
"file) that contains your Deeplink Juggernaut links. Once you download this "
|
2388 |
"the Import tool."
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: modules/settings/settings-data.php:266
|
2392 |
msgid "Download CSV File"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: modules/settings/settings-data.php:273
|
2396 |
msgid "All settings have been erased and defaults have been restored."
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: modules/settings/settings-data.php:275
|
2400 |
msgid ""
|
2401 |
"You can erase all your SEO Ultimate settings and restore them to “"
|
2402 |
"factory defaults” by clicking the button below."
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: modules/settings/settings-data.php:278
|
2406 |
msgid ""
|
2407 |
"Are you sure you want to erase all module settings? This cannot be undone."
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: modules/settings/settings-data.php:279
|
2411 |
msgid "Restore Default Settings"
|
2412 |
msgstr ""
|
2413 |
|
2427 |
msgid "SEO Ultimate Plugin Settings"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.2.6) #-#-#-#-#
|
2431 |
#. Plugin Name of the plugin/theme
|
2432 |
#: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:851
|
2433 |
msgid "SEO Ultimate"
|
2645 |
"</ul>\r\n"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: modules/titles/titles.php:18
|
2649 |
msgid "Title Tag Rewriter"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: modules/titles/titles.php:46
|
2653 |
msgid "Title Tag"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: modules/titles/titles.php:59
|
2657 |
msgid ""
|
2658 |
"Convert lowercase category/tag names to title case when used in title tags."
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: modules/titles/titles.php:59
|
2662 |
msgid "Title Tag Variables"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
+
#: modules/titles/titles.php:61
|
2666 |
msgid ""
|
2667 |
"Use output buffering — no configuration required, but slower (default)"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: modules/titles/titles.php:62
|
2671 |
msgid ""
|
2672 |
"Use filtering — faster, but configuration required (see the “"
|
2673 |
"Settings Help” dropdown for details)"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: modules/titles/titles.php:63
|
2677 |
msgid "Rewrite Method"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: modules/titles/titles.php:71
|
2681 |
msgid "{blog}"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: modules/titles/titles.php:72
|
2685 |
msgid "{post} | {blog}"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: modules/titles/titles.php:73
|
2689 |
msgid "{page} | {blog}"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: modules/titles/titles.php:74
|
2693 |
msgid "{category} | {blog}"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: modules/titles/titles.php:75
|
2697 |
msgid "{tag} | {blog}"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: modules/titles/titles.php:76
|
2701 |
msgid "Archives for {month} {day}, {year} | {blog}"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: modules/titles/titles.php:77
|
2705 |
msgid "Archives for {month} {year} | {blog}"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: modules/titles/titles.php:78
|
2709 |
msgid "Archives for {year} | {blog}"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: modules/titles/titles.php:79
|
2713 |
msgid "Posts by {author} | {blog}"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
+
#: modules/titles/titles.php:80
|
2717 |
msgid "Search Results for {query} | {blog}"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: modules/titles/titles.php:81
|
2721 |
msgid "404 Not Found | {blog}"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: modules/titles/titles.php:82
|
2725 |
msgid "{title} - Page {num}"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: modules/titles/titles.php:91
|
2729 |
msgid "Blog Homepage Title"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: modules/titles/titles.php:92
|
2733 |
msgid "Post Title Format"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: modules/titles/titles.php:93
|
2737 |
msgid "Page Title Format"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
#: modules/titles/titles.php:94
|
2741 |
msgid "Category Title Format"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: modules/titles/titles.php:95
|
2745 |
msgid "Tag Title Format"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: modules/titles/titles.php:96
|
2749 |
msgid "Day Archive Title Format"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: modules/titles/titles.php:97
|
2753 |
msgid "Month Archive Title Format"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: modules/titles/titles.php:98
|
2757 |
msgid "Year Archive Title Format"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: modules/titles/titles.php:99
|
2761 |
msgid "Author Archive Title Format"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: modules/titles/titles.php:100
|
2765 |
msgid "Search Title Format"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
+
#: modules/titles/titles.php:101
|
2769 |
msgid "404 Title Format"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: modules/titles/titles.php:102
|
2773 |
msgid "Pagination Title Format"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: modules/titles/titles.php:334
|
2777 |
msgid "Title Tag:"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: modules/titles/titles.php:339
|
2781 |
msgid ""
|
2782 |
"<strong>Title Tag</strong> — The exact contents of the <title> "
|
2783 |
"tag. The title appears in visitors’ title bars and in search engine "
|
2785 |
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: modules/titles/titles.php:348
|
2789 |
msgid ""
|
2790 |
"\r\n"
|
2791 |
"<ul>\r\n"
|
2808 |
"</ul>\r\n"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: modules/titles/titles.php:358
|
2812 |
msgid "Formats & Variables"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: modules/titles/titles.php:359
|
2816 |
msgid ""
|
2817 |
"\r\n"
|
2818 |
"<p>Various variables, surrounded in {curly brackets}, are provided for use "
|
2915 |
"</ul>\r\n"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: modules/titles/titles.php:422
|
2919 |
msgid ""
|
2920 |
"\r\n"
|
2921 |
"<p>Here’s documentation for the options on the “Settings” "
|
2970 |
"</ul>\r\n"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: modules/titles/titles.php:449
|
2974 |
msgid ""
|
2975 |
"\r\n"
|
2976 |
"<ul>\r\n"
|
2993 |
"</ul>\r\n"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: modules/titles/titles.php:460
|
2997 |
msgid ""
|
2998 |
"\r\n"
|
2999 |
"<ul>\r\n"
|
3010 |
"</ul>\r\n"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
+
#: modules/user-code/user-code.php:21
|
3014 |
msgid "Code Inserter"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
#: modules/user-code/user-code.php:47
|
3018 |
msgid "Everywhere"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: modules/user-code/user-code.php:53
|
3022 |
+
msgid ""
|
3023 |
+
"These fields are disabled because your user account does not have permission "
|
3024 |
+
"to insert arbitrary HTML into this site’s code."
|
3025 |
+
msgstr ""
|
3026 |
+
|
3027 |
+
#: modules/user-code/user-code.php:61
|
3028 |
msgid "<head> Tag"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
+
#: modules/user-code/user-code.php:62
|
3032 |
msgid "Before Item Content"
|
3033 |
msgstr ""
|
3034 |
|
3035 |
+
#: modules/user-code/user-code.php:63
|
3036 |
msgid "After Item Content"
|
3037 |
msgstr ""
|
3038 |
|
3039 |
+
#: modules/user-code/user-code.php:64
|
3040 |
msgid "Footer"
|
3041 |
msgstr ""
|
3042 |
|
3043 |
+
#: modules/user-code/user-code.php:78
|
3044 |
msgid "Code Inserter module"
|
3045 |
msgstr ""
|
3046 |
|
3047 |
+
#: modules/user-code/user-code.php:98
|
3048 |
msgid ""
|
3049 |
"\r\n"
|
3050 |
"<ul>\r\n"
|
3065 |
"</ul>\r\n"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: modules/user-code/user-code.php:112
|
3069 |
msgid ""
|
3070 |
"\r\n"
|
3071 |
"<ul>\r\n"
|
3072 |
+
"\t<li><p><strong>Why do I get a message saying my account doesn’t have "
|
3073 |
+
"permission to insert arbitrary HTML code?</strong><br />WordPress has a "
|
3074 |
+
"security feature that only allows administrators to insert arbitrary, "
|
3075 |
+
"unfiltered HTML into the site. On single-site setups, site administrators "
|
3076 |
+
"have this capability. On multisite setups, only network admins have this "
|
3077 |
+
"capability. This is done for security reasons, since site users with the "
|
3078 |
+
"ability to insert arbitrary HTML could theoretically insert malicious code "
|
3079 |
+
"that could be used to hijack control of the site.</p><p>If you are the "
|
3080 |
+
"administrator of a site running on a network, then you will not be able to "
|
3081 |
+
"use Code Inserter under default security settings. However, the network "
|
3082 |
+
"administrator <em>will</em> be able to edit the fields on this page. If you "
|
3083 |
+
"have code that you really want inserted into a certain part of your site, "
|
3084 |
+
"ask your network administrator to do it for you.</p><p>If you are the "
|
3085 |
+
"network administrator of a multisite WordPress setup, and you completely "
|
3086 |
+
"trust all of the administrators and editors of the various sites on your "
|
3087 |
+
"network, you can install the <a href='http://wordpress.org/extend/plugins/"
|
3088 |
+
"unfiltered-mu/' target='_blank'>Unfiltered MU</a> plugin to enable the Code "
|
3089 |
+
"Inserter for all of those users.</p></li>\r\n"
|
3090 |
"\t<li><strong>Why doesn't my code appear on my site?</strong><br />It’"
|
3091 |
"s possible that your theme doesn't have the proper “hooks,” "
|
3092 |
"which are pieces of code that let WordPress plugins insert custom HTML into "
|