Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 5.8 |
Comparing to | |
See all releases |
Code changes from version 5.7 to 5.8
- includes/jlfunctions/str.php +1 -1
- includes/jlwp/functions.php +44 -5
- includes/jlwp/screen-meta.php +2 -2
- modules/canonical/canonical.php +5 -2
- modules/class.su-module.php +55 -17
- modules/internal-link-aliases/internal-link-aliases.php +6 -3
- modules/meta/webmaster-verify.php +4 -2
- modules/misc/index.php +4 -0
- modules/misc/misc.php +20 -0
- modules/modules/modules.php +14 -8
- modules/more-links/more-links.php +5 -2
- modules/permalinks/permalinks.php +143 -0
- modules/sharing-buttons/sharing-buttons.php +8 -3
- plugin/class.seo-ultimate.php +12 -7
- readme.txt +16 -5
- seo-ultimate.php +4 -4
- seo-ultimate.pot +1111 -1077
includes/jlfunctions/str.php
CHANGED
@@ -125,7 +125,7 @@ class sustr {
|
|
125 |
*/
|
126 |
function rtrim_str($str, $totrim) {
|
127 |
if (strlen($str) > strlen($totrim) && sustr::endswith($str, $totrim))
|
128 |
-
return substr($str, -strlen($totrim));
|
129 |
|
130 |
return $str;
|
131 |
}
|
125 |
*/
|
126 |
function rtrim_str($str, $totrim) {
|
127 |
if (strlen($str) > strlen($totrim) && sustr::endswith($str, $totrim))
|
128 |
+
return substr($str, 0, -strlen($totrim));
|
129 |
|
130 |
return $str;
|
131 |
}
|
includes/jlwp/functions.php
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
3 |
class suwp {
|
4 |
|
5 |
/**
|
@@ -71,14 +75,16 @@ class suwp {
|
|
71 |
}
|
72 |
|
73 |
function get_taxonomies() {
|
74 |
-
|
75 |
-
$taxonomies
|
76 |
-
|
77 |
-
if (in_array('post', (array)$taxonomy->object_type))
|
78 |
-
$taxonomies[$key] = $taxonomy;
|
79 |
return $taxonomies;
|
80 |
}
|
81 |
|
|
|
|
|
|
|
|
|
82 |
function get_object_taxonomies($post_type) {
|
83 |
$taxonomies = get_object_taxonomies($post_type, 'objects');
|
84 |
$taxonomies = wp_filter_object_list($taxonomies, array('public' => true, 'show_ui' => true));
|
@@ -178,6 +184,29 @@ class suwp {
|
|
178 |
return $terms;
|
179 |
}
|
180 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
function remove_instance_action($tag, $class, $function, $priority=10) {
|
182 |
return suwp::remove_instance_filter($tag, $class, $function, $priority);
|
183 |
}
|
@@ -197,6 +226,16 @@ class suwp {
|
|
197 |
|
198 |
return false;
|
199 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
}
|
201 |
|
202 |
?>
|
1 |
<?php
|
2 |
|
3 |
+
define('SUWP_QUERY_PERMALINKS', 0);
|
4 |
+
define('SUWP_INDEX_PERMALINKS', 1);
|
5 |
+
define('SUWP_PRETTY_PERMALINKS', 2);
|
6 |
+
|
7 |
class suwp {
|
8 |
|
9 |
/**
|
75 |
}
|
76 |
|
77 |
function get_taxonomies() {
|
78 |
+
$taxonomies = get_taxonomies(array('public' => true), 'objects');
|
79 |
+
if (isset($taxonomies['post_format']) && $taxonomies['post_format']->labels->name == _x( 'Format', 'post format' ))
|
80 |
+
$taxonomies['post_format']->labels->name = __('Post Format Archives', 'seo-ultimate');
|
|
|
|
|
81 |
return $taxonomies;
|
82 |
}
|
83 |
|
84 |
+
function get_taxonomy_names() {
|
85 |
+
return get_taxonomies(array('public' => true), 'names');
|
86 |
+
}
|
87 |
+
|
88 |
function get_object_taxonomies($post_type) {
|
89 |
$taxonomies = get_object_taxonomies($post_type, 'objects');
|
90 |
$taxonomies = wp_filter_object_list($taxonomies, array('public' => true, 'show_ui' => true));
|
184 |
return $terms;
|
185 |
}
|
186 |
|
187 |
+
function get_term_slug($term_obj) {
|
188 |
+
$tax_name = $term_obj->taxonomy;
|
189 |
+
$tax_obj = get_taxonomy($tax_name);
|
190 |
+
if ($tax_obj->rewrite['hierarchical']) {
|
191 |
+
$hierarchical_slugs = array();
|
192 |
+
$ancestors = get_ancestors($term_obj->term_id, $tax_name);
|
193 |
+
foreach ( (array)$ancestors as $ancestor ) {
|
194 |
+
$ancestor_term = get_term($ancestor, $tax_name);
|
195 |
+
$hierarchical_slugs[] = $ancestor_term->slug;
|
196 |
+
}
|
197 |
+
$hierarchical_slugs = array_reverse($hierarchical_slugs);
|
198 |
+
$hierarchical_slugs[] = $term_obj->slug;
|
199 |
+
$term_slug = implode('/', $hierarchical_slugs);
|
200 |
+
} else {
|
201 |
+
$term_slug = $term_obj->slug;
|
202 |
+
}
|
203 |
+
|
204 |
+
if ('post_format' == $tax_name)
|
205 |
+
$term_slug = str_replace('post-format-', '', $term_slug);
|
206 |
+
|
207 |
+
return $term_slug;
|
208 |
+
}
|
209 |
+
|
210 |
function remove_instance_action($tag, $class, $function, $priority=10) {
|
211 |
return suwp::remove_instance_filter($tag, $class, $function, $priority);
|
212 |
}
|
226 |
|
227 |
return false;
|
228 |
}
|
229 |
+
|
230 |
+
function permalink_mode() {
|
231 |
+
if (strlen($struct = get_option('permalink_structure'))) {
|
232 |
+
if (sustr::startswith($struct, '/index.php/'))
|
233 |
+
return SUWP_INDEX_PERMALINKS;
|
234 |
+
else
|
235 |
+
return SUWP_PRETTY_PERMALINKS;
|
236 |
+
} else
|
237 |
+
return SUWP_QUERY_PERMALINKS;
|
238 |
+
}
|
239 |
}
|
240 |
|
241 |
?>
|
includes/jlwp/screen-meta.php
CHANGED
@@ -100,12 +100,12 @@ jQuery(function($) {
|
|
100 |
var link = $(this);
|
101 |
$(link.attr('href')).slideToggle('fast', function() {
|
102 |
if (link.hasClass('screen-meta-shown')) {
|
103 |
-
link.css({'
|
104 |
$('.screen-meta-toggle').css('visibility', 'visible');
|
105 |
}
|
106 |
else {
|
107 |
$('.screen-meta-toggle').css('visibility', 'hidden');
|
108 |
-
link.css({'
|
109 |
}
|
110 |
});
|
111 |
return false;
|
100 |
var link = $(this);
|
101 |
$(link.attr('href')).slideToggle('fast', function() {
|
102 |
if (link.hasClass('screen-meta-shown')) {
|
103 |
+
link.css({'background-position':'right top'}).removeClass('screen-meta-shown');
|
104 |
$('.screen-meta-toggle').css('visibility', 'visible');
|
105 |
}
|
106 |
else {
|
107 |
$('.screen-meta-toggle').css('visibility', 'hidden');
|
108 |
+
link.css({'background-position':'right bottom'}).addClass('screen-meta-shown').parent().css('visibility', 'visible');
|
109 |
}
|
110 |
});
|
111 |
return false;
|
modules/canonical/canonical.php
CHANGED
@@ -11,6 +11,9 @@ class SU_Canonical extends SU_Module {
|
|
11 |
|
12 |
function get_module_title() { return __('Canonicalizer', 'seo-ultimate'); }
|
13 |
|
|
|
|
|
|
|
14 |
function init() {
|
15 |
//If the canonical tags are enabled, then...
|
16 |
if ($this->get_setting('link_rel_canonical')) {
|
@@ -28,13 +31,13 @@ class SU_Canonical extends SU_Module {
|
|
28 |
}
|
29 |
|
30 |
function admin_page_contents() {
|
31 |
-
$this->
|
32 |
$this->checkboxes(array(
|
33 |
'link_rel_canonical' => __('Generate <code><link rel="canonical" /></code> tags.', 'seo-ultimate')
|
34 |
, 'remove_nonexistent_pagination' => __('Redirect requests for nonexistent pagination.', 'seo-ultimate')
|
35 |
));
|
36 |
|
37 |
-
$this->
|
38 |
}
|
39 |
|
40 |
function link_rel_canonical_tag() {
|
11 |
|
12 |
function get_module_title() { return __('Canonicalizer', 'seo-ultimate'); }
|
13 |
|
14 |
+
function get_parent_module() { return 'misc'; }
|
15 |
+
function get_settings_key() { return 'canonical'; }
|
16 |
+
|
17 |
function init() {
|
18 |
//If the canonical tags are enabled, then...
|
19 |
if ($this->get_setting('link_rel_canonical')) {
|
31 |
}
|
32 |
|
33 |
function admin_page_contents() {
|
34 |
+
$this->child_admin_form_start();
|
35 |
$this->checkboxes(array(
|
36 |
'link_rel_canonical' => __('Generate <code><link rel="canonical" /></code> tags.', 'seo-ultimate')
|
37 |
, 'remove_nonexistent_pagination' => __('Redirect requests for nonexistent pagination.', 'seo-ultimate')
|
38 |
));
|
39 |
|
40 |
+
$this->child_admin_form_end();
|
41 |
}
|
42 |
|
43 |
function link_rel_canonical_tag() {
|
modules/class.su-module.php
CHANGED
@@ -155,7 +155,7 @@ class SU_Module {
|
|
155 |
*
|
156 |
* @return int The menu position index.
|
157 |
*/
|
158 |
-
function get_menu_pos() { return
|
159 |
|
160 |
/**
|
161 |
* Determines where this module's admin contents should appear on the parent page relative to those of other sibling modules.
|
@@ -371,6 +371,26 @@ class SU_Module {
|
|
371 |
}
|
372 |
|
373 |
return $sections;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
374 |
}
|
375 |
}
|
376 |
}
|
@@ -434,7 +454,7 @@ class SU_Module {
|
|
434 |
* @return string
|
435 |
*/
|
436 |
function get_module_or_parent_key() {
|
437 |
-
return strlen($p = $this->get_parent_module()) ? $p : $this->get_module_key();
|
438 |
}
|
439 |
|
440 |
/**
|
@@ -452,7 +472,7 @@ class SU_Module {
|
|
452 |
|
453 |
$anchor = '';
|
454 |
if ($key === false) {
|
455 |
-
if ($key = $this->get_parent_module())
|
456 |
$anchor = '#'.$this->plugin->key_to_hook($this->get_module_key());
|
457 |
else
|
458 |
$key = $this->get_module_key();
|
@@ -576,7 +596,6 @@ class SU_Module {
|
|
576 |
* Outputs this module's admin tabs plus those of its children.
|
577 |
*
|
578 |
* @since 1.5
|
579 |
-
* @return array
|
580 |
*/
|
581 |
function children_admin_page_tabs() {
|
582 |
if (count($tabs = $this->get_children_admin_page_tabs()))
|
@@ -603,6 +622,7 @@ class SU_Module {
|
|
603 |
*/
|
604 |
function children_admin_pages() {
|
605 |
foreach ($this->modules as $key => $x_module) {
|
|
|
606 |
$this->modules[$key]->admin_page_contents();
|
607 |
}
|
608 |
}
|
@@ -613,9 +633,12 @@ class SU_Module {
|
|
613 |
* @since 1.5
|
614 |
*/
|
615 |
function children_admin_pages_form() {
|
616 |
-
$this->
|
617 |
-
|
618 |
-
|
|
|
|
|
|
|
619 |
}
|
620 |
|
621 |
/**
|
@@ -967,7 +990,7 @@ class SU_Module {
|
|
967 |
$label = htmlspecialchars($label);
|
968 |
$content = "<div class='su-help'>\n";
|
969 |
|
970 |
-
$header = sprintf(_x('%s %s
|
971 |
$header = sustr::remove_double_words($header);
|
972 |
|
973 |
$text = wptexturize(Markdown($text));
|
@@ -1047,19 +1070,13 @@ class SU_Module {
|
|
1047 |
* @param array $fields The array of meta fields that the user can edit with the tables.
|
1048 |
*/
|
1049 |
function get_taxmeta_edit_tabs($fields) {
|
1050 |
-
$types = get_taxonomies(
|
1051 |
|
1052 |
//Turn the types array into a tabs array
|
1053 |
$tabs = array();
|
1054 |
foreach ($types as $name => $type) {
|
1055 |
if ($type->labels->name) {
|
1056 |
-
|
1057 |
-
$label = $type->labels->name;
|
1058 |
-
if ($label == _x( 'Format', 'post format' ))
|
1059 |
-
$label = __('Post Format Archives', 'seo-ultimate');
|
1060 |
-
|
1061 |
-
$tabs[$label] = array('meta_edit_tab', 'term', sustr::preg_filter('a-z0-9', strtolower($label)), $name, $type->labels->singular_name, $fields);
|
1062 |
-
|
1063 |
}
|
1064 |
}
|
1065 |
return $tabs;
|
@@ -1372,6 +1389,7 @@ class SU_Module {
|
|
1372 |
* @param boolean $table Whether or not to start a form table.
|
1373 |
*/
|
1374 |
function admin_form_start($header = false, $table = true, $form = true) {
|
|
|
1375 |
if ($header) $this->admin_subheader($header);
|
1376 |
|
1377 |
if ($form) {
|
@@ -1428,6 +1446,26 @@ class SU_Module {
|
|
1428 |
echo "</table>\n";
|
1429 |
}
|
1430 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1431 |
/**
|
1432 |
* Begins a "widefat" WordPress table.
|
1433 |
*
|
@@ -2041,7 +2079,7 @@ class SU_Module {
|
|
2041 |
function get_nonce_handle($action, $id = false) {
|
2042 |
|
2043 |
$key = $this->get_parent_module();
|
2044 |
-
if (!$key) $key = $this->get_module_key();
|
2045 |
|
2046 |
$hook = $this->plugin->key_to_hook($key);
|
2047 |
|
155 |
*
|
156 |
* @return int The menu position index.
|
157 |
*/
|
158 |
+
function get_menu_pos() { return 10; }
|
159 |
|
160 |
/**
|
161 |
* Determines where this module's admin contents should appear on the parent page relative to those of other sibling modules.
|
371 |
}
|
372 |
|
373 |
return $sections;
|
374 |
+
|
375 |
+
} elseif (count($this->modules)) {
|
376 |
+
$sections = array();
|
377 |
+
foreach ($this->modules as $key => $x_module) {
|
378 |
+
$module_title = $this->modules[$key]->get_module_title();
|
379 |
+
$section = trim(sumd::get_section($readme, $module_title));
|
380 |
+
|
381 |
+
if ($section) {
|
382 |
+
$section_html = '';
|
383 |
+
$subsections = sumd::get_sections($section);
|
384 |
+
foreach ($subsections as $subsection_header => $subsection) {
|
385 |
+
$section_html .= '<h6>' . trim($subsection_header, "\r\n= ") . "</h6>\n" . $subsection . "\n\n";
|
386 |
+
}
|
387 |
+
|
388 |
+
$sections[$module_title] = $section_html;
|
389 |
+
}
|
390 |
+
}
|
391 |
+
|
392 |
+
if (count($sections))
|
393 |
+
return $sections;
|
394 |
}
|
395 |
}
|
396 |
}
|
454 |
* @return string
|
455 |
*/
|
456 |
function get_module_or_parent_key() {
|
457 |
+
return (strlen($p = $this->get_parent_module()) && $this->plugin->module_exists($p)) ? $p : $this->get_module_key();
|
458 |
}
|
459 |
|
460 |
/**
|
472 |
|
473 |
$anchor = '';
|
474 |
if ($key === false) {
|
475 |
+
if (($key = $this->get_parent_module()) && $this->plugin->module_exists($key))
|
476 |
$anchor = '#'.$this->plugin->key_to_hook($this->get_module_key());
|
477 |
else
|
478 |
$key = $this->get_module_key();
|
596 |
* Outputs this module's admin tabs plus those of its children.
|
597 |
*
|
598 |
* @since 1.5
|
|
|
599 |
*/
|
600 |
function children_admin_page_tabs() {
|
601 |
if (count($tabs = $this->get_children_admin_page_tabs()))
|
622 |
*/
|
623 |
function children_admin_pages() {
|
624 |
foreach ($this->modules as $key => $x_module) {
|
625 |
+
$this->modules[$key]->admin_subheader($this->modules[$key]->get_module_subtitle());
|
626 |
$this->modules[$key]->admin_page_contents();
|
627 |
}
|
628 |
}
|
633 |
* @since 1.5
|
634 |
*/
|
635 |
function children_admin_pages_form() {
|
636 |
+
if (count($this->modules)) {
|
637 |
+
$this->admin_form_start();
|
638 |
+
$this->children_admin_pages();
|
639 |
+
$this->admin_form_end();
|
640 |
+
} else
|
641 |
+
$this->print_message('warning', sprintf(__('All the modules on this page have been disabled. You can re-enable them using the <a href="%s">Module Manager</a>.', 'seo-ultimate'), $this->get_admin_url('modules')));
|
642 |
}
|
643 |
|
644 |
/**
|
990 |
$label = htmlspecialchars($label);
|
991 |
$content = "<div class='su-help'>\n";
|
992 |
|
993 |
+
$header = sprintf(_x('%s — %s', 'Dropdown Title', 'seo-ultimate'), $this->get_module_title(), $label);
|
994 |
$header = sustr::remove_double_words($header);
|
995 |
|
996 |
$text = wptexturize(Markdown($text));
|
1070 |
* @param array $fields The array of meta fields that the user can edit with the tables.
|
1071 |
*/
|
1072 |
function get_taxmeta_edit_tabs($fields) {
|
1073 |
+
$types = suwp::get_taxonomies();
|
1074 |
|
1075 |
//Turn the types array into a tabs array
|
1076 |
$tabs = array();
|
1077 |
foreach ($types as $name => $type) {
|
1078 |
if ($type->labels->name) {
|
1079 |
+
$tabs[$type->labels->name] = array('meta_edit_tab', 'term', sustr::preg_filter('a-z0-9', strtolower($type->labels->name)), $name, $type->labels->singular_name, $fields);
|
|
|
|
|
|
|
|
|
|
|
|
|
1080 |
}
|
1081 |
}
|
1082 |
return $tabs;
|
1389 |
* @param boolean $table Whether or not to start a form table.
|
1390 |
*/
|
1391 |
function admin_form_start($header = false, $table = true, $form = true) {
|
1392 |
+
|
1393 |
if ($header) $this->admin_subheader($header);
|
1394 |
|
1395 |
if ($form) {
|
1446 |
echo "</table>\n";
|
1447 |
}
|
1448 |
|
1449 |
+
/**
|
1450 |
+
* @since 5.8
|
1451 |
+
*/
|
1452 |
+
function child_admin_form_start() {
|
1453 |
+
if ($this->get_parent_module() && $this->plugin->module_exists($this->get_parent_module()))
|
1454 |
+
$this->admin_form_table_start();
|
1455 |
+
else
|
1456 |
+
$this->admin_form_start();
|
1457 |
+
}
|
1458 |
+
|
1459 |
+
/**
|
1460 |
+
* @since 5.8
|
1461 |
+
*/
|
1462 |
+
function child_admin_form_end() {
|
1463 |
+
if ($this->get_parent_module() && $this->plugin->module_exists($this->get_parent_module()))
|
1464 |
+
$this->admin_form_table_end();
|
1465 |
+
else
|
1466 |
+
$this->admin_form_end();
|
1467 |
+
}
|
1468 |
+
|
1469 |
/**
|
1470 |
* Begins a "widefat" WordPress table.
|
1471 |
*
|
2079 |
function get_nonce_handle($action, $id = false) {
|
2080 |
|
2081 |
$key = $this->get_parent_module();
|
2082 |
+
if (!$key || !$this->plugin->module_exists($key)) $key = $this->get_module_key();
|
2083 |
|
2084 |
$hook = $this->plugin->key_to_hook($key);
|
2085 |
|
modules/internal-link-aliases/internal-link-aliases.php
CHANGED
@@ -19,10 +19,13 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
19 |
|
20 |
function get_module_title() { return __('Link Mask Generator', 'seo-ultimate'); }
|
21 |
|
|
|
|
|
|
|
22 |
function admin_page_contents() {
|
23 |
-
$this->
|
24 |
-
$this->textbox('alias_dir', __('Alias Directory', 'seo-ultimate'));
|
25 |
-
$this->
|
26 |
}
|
27 |
|
28 |
function filter_alias_dir($alias_dir) {
|
19 |
|
20 |
function get_module_title() { return __('Link Mask Generator', 'seo-ultimate'); }
|
21 |
|
22 |
+
function get_parent_module() { return 'misc'; }
|
23 |
+
function get_settings_key() { return 'internal-link-aliases'; }
|
24 |
+
|
25 |
function admin_page_contents() {
|
26 |
+
$this->child_admin_form_start();
|
27 |
+
$this->textbox('alias_dir', __('Alias Directory', 'seo-ultimate'), $this->get_default_setting('alias_dir'));
|
28 |
+
$this->child_admin_form_end();
|
29 |
}
|
30 |
|
31 |
function filter_alias_dir($alias_dir) {
|
modules/meta/webmaster-verify.php
CHANGED
@@ -11,6 +11,8 @@ class SU_WebmasterVerify extends SU_Module {
|
|
11 |
|
12 |
function get_module_title() { return __('Webmaster Verification Assistant', 'seo-ultimate'); }
|
13 |
function get_menu_title() { return __('W.M. Verification', 'seo-ultimate'); }
|
|
|
|
|
14 |
function get_settings_key() { return 'meta'; }
|
15 |
|
16 |
function init() {
|
@@ -40,13 +42,13 @@ class SU_WebmasterVerify extends SU_Module {
|
|
40 |
}
|
41 |
|
42 |
function admin_page_contents() {
|
43 |
-
$this->
|
44 |
$this->textboxes(array(
|
45 |
'google_verify' => __('Google Webmaster Tools', 'seo-ultimate')
|
46 |
, 'yahoo_verify' => __('Yahoo! Site Explorer', 'seo-ultimate')
|
47 |
, 'microsoft_verify' => __('Bing Webmaster Center', 'seo-ultimate')
|
48 |
));
|
49 |
-
$this->
|
50 |
}
|
51 |
}
|
52 |
|
11 |
|
12 |
function get_module_title() { return __('Webmaster Verification Assistant', 'seo-ultimate'); }
|
13 |
function get_menu_title() { return __('W.M. Verification', 'seo-ultimate'); }
|
14 |
+
|
15 |
+
function get_parent_module() { return 'misc'; }
|
16 |
function get_settings_key() { return 'meta'; }
|
17 |
|
18 |
function init() {
|
42 |
}
|
43 |
|
44 |
function admin_page_contents() {
|
45 |
+
$this->child_admin_form_start();
|
46 |
$this->textboxes(array(
|
47 |
'google_verify' => __('Google Webmaster Tools', 'seo-ultimate')
|
48 |
, 'yahoo_verify' => __('Yahoo! Site Explorer', 'seo-ultimate')
|
49 |
, 'microsoft_verify' => __('Bing Webmaster Center', 'seo-ultimate')
|
50 |
));
|
51 |
+
$this->child_admin_form_end();
|
52 |
}
|
53 |
}
|
54 |
|
modules/misc/index.php
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
header('Status: 403 Forbidden');
|
3 |
+
header('HTTP/1.1 403 Forbidden');
|
4 |
+
?>
|
modules/misc/misc.php
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Miscellaneous Module
|
4 |
+
*
|
5 |
+
* @since 5.8
|
6 |
+
*/
|
7 |
+
|
8 |
+
if (class_exists('SU_Module')) {
|
9 |
+
|
10 |
+
class SU_Misc extends SU_Module {
|
11 |
+
function get_module_title() { return __('Miscellaneous', 'seo-ultimate'); }
|
12 |
+
function get_menu_pos() { return 30; }
|
13 |
+
function admin_page_contents() {
|
14 |
+
echo '<p>' . __('The Miscellaneous page contains modules that don’t have enough settings to warrant their own separate admin pages.', 'seo-ultimate') . '</p>';
|
15 |
+
$this->children_admin_pages_form();
|
16 |
+
}
|
17 |
+
}
|
18 |
+
|
19 |
+
}
|
20 |
+
?>
|
modules/modules/modules.php
CHANGED
@@ -11,10 +11,11 @@ class SU_Modules extends SU_Module {
|
|
11 |
|
12 |
function get_module_title() { return __('Module Manager', 'seo-ultimate'); }
|
13 |
function get_menu_title() { return __('Modules', 'seo-ultimate'); }
|
14 |
-
function get_menu_pos() { return
|
15 |
function is_menu_default(){ return true; }
|
16 |
|
17 |
function init() {
|
|
|
18 |
if ($this->is_action('update')) {
|
19 |
|
20 |
$psdata = (array)get_option('seo_ultimate', array());
|
@@ -29,6 +30,9 @@ class SU_Modules extends SU_Module {
|
|
29 |
}
|
30 |
|
31 |
update_option('seo_ultimate', $psdata);
|
|
|
|
|
|
|
32 |
}
|
33 |
}
|
34 |
|
@@ -39,6 +43,9 @@ class SU_Modules extends SU_Module {
|
|
39 |
_e('The Module Manager lets you disable or hide modules you don’t use. You can also silence modules from displaying bubble alerts on the menu.', 'seo-ultimate');
|
40 |
echo "</p>";
|
41 |
|
|
|
|
|
|
|
42 |
$this->admin_form_start(false, false);
|
43 |
|
44 |
$headers = array(
|
@@ -69,16 +76,13 @@ STR;
|
|
69 |
|
70 |
//On some setups, get_parent_class() returns the class name in lowercase
|
71 |
if (strcasecmp(get_parent_class($module), 'SU_Module') == 0 && !in_array($key, array('modules')) && $module->is_independent_module())
|
72 |
-
$modules[$key] = $module->
|
73 |
}
|
74 |
|
75 |
foreach ($this->plugin->disabled_modules as $key => $class) {
|
76 |
|
77 |
-
if (call_user_func(array($class, 'is_independent_module')))
|
78 |
-
$
|
79 |
-
if (!$title) $title = call_user_func(array($class, 'get_module_title'));
|
80 |
-
$modules[$key] = $title;
|
81 |
-
}
|
82 |
}
|
83 |
|
84 |
asort($modules);
|
@@ -123,7 +127,9 @@ STR;
|
|
123 |
echo "<a href='javascript:void(0)' onclick=\"javascript:set_module_status('$key', $statuscode, this)\" class='$current'>$statuslabel</a></span>\n";
|
124 |
}
|
125 |
|
126 |
-
$
|
|
|
|
|
127 |
if ($currentstatus > SU_MODULE_DISABLED && $admin_url) {
|
128 |
$cellcontent = "<a href='{$admin_url}'>$name</a>";
|
129 |
} else
|
11 |
|
12 |
function get_module_title() { return __('Module Manager', 'seo-ultimate'); }
|
13 |
function get_menu_title() { return __('Modules', 'seo-ultimate'); }
|
14 |
+
function get_menu_pos() { return 0; }
|
15 |
function is_menu_default(){ return true; }
|
16 |
|
17 |
function init() {
|
18 |
+
|
19 |
if ($this->is_action('update')) {
|
20 |
|
21 |
$psdata = (array)get_option('seo_ultimate', array());
|
30 |
}
|
31 |
|
32 |
update_option('seo_ultimate', $psdata);
|
33 |
+
|
34 |
+
wp_redirect(add_query_arg('su-modules-updated', '1', suurl::current()), 301);
|
35 |
+
exit;
|
36 |
}
|
37 |
}
|
38 |
|
43 |
_e('The Module Manager lets you disable or hide modules you don’t use. You can also silence modules from displaying bubble alerts on the menu.', 'seo-ultimate');
|
44 |
echo "</p>";
|
45 |
|
46 |
+
if (!empty($_GET['su-modules-updated']))
|
47 |
+
$this->print_message('success', __('Modules updated.', 'seo-ultimate'));
|
48 |
+
|
49 |
$this->admin_form_start(false, false);
|
50 |
|
51 |
$headers = array(
|
76 |
|
77 |
//On some setups, get_parent_class() returns the class name in lowercase
|
78 |
if (strcasecmp(get_parent_class($module), 'SU_Module') == 0 && !in_array($key, array('modules')) && $module->is_independent_module())
|
79 |
+
$modules[$key] = $module->get_module_title();
|
80 |
}
|
81 |
|
82 |
foreach ($this->plugin->disabled_modules as $key => $class) {
|
83 |
|
84 |
+
if (call_user_func(array($class, 'is_independent_module')))
|
85 |
+
$modules[$key] = call_user_func(array($class, 'get_module_title'));
|
|
|
|
|
|
|
86 |
}
|
87 |
|
88 |
asort($modules);
|
127 |
echo "<a href='javascript:void(0)' onclick=\"javascript:set_module_status('$key', $statuscode, this)\" class='$current'>$statuslabel</a></span>\n";
|
128 |
}
|
129 |
|
130 |
+
if (!$this->plugin->module_exists($key) || !$this->plugin->call_module_func($key, 'get_admin_url', $admin_url))
|
131 |
+
$admin_url = false;
|
132 |
+
|
133 |
if ($currentstatus > SU_MODULE_DISABLED && $admin_url) {
|
134 |
$cellcontent = "<a href='{$admin_url}'>$name</a>";
|
135 |
} else
|
modules/more-links/more-links.php
CHANGED
@@ -11,6 +11,9 @@ class SU_MoreLinks extends SU_Module {
|
|
11 |
|
12 |
function get_module_title() { return __('More Link Customizer', 'seo-ultimate'); }
|
13 |
|
|
|
|
|
|
|
14 |
function get_default_settings() {
|
15 |
return array(
|
16 |
'default' => 'Continue reading “{post}” »'
|
@@ -23,9 +26,9 @@ class SU_MoreLinks extends SU_Module {
|
|
23 |
}
|
24 |
|
25 |
function admin_page_contents() {
|
26 |
-
$this->
|
27 |
$this->textbox('default', __('Default More Link Text', 'seo-ultimate'), $this->get_default_setting('default'));
|
28 |
-
$this->
|
29 |
}
|
30 |
|
31 |
function more_link_filter($link, $text=false) {
|
11 |
|
12 |
function get_module_title() { return __('More Link Customizer', 'seo-ultimate'); }
|
13 |
|
14 |
+
function get_parent_module() { return 'misc'; }
|
15 |
+
function get_settings_key() { return 'more-links'; }
|
16 |
+
|
17 |
function get_default_settings() {
|
18 |
return array(
|
19 |
'default' => 'Continue reading “{post}” »'
|
26 |
}
|
27 |
|
28 |
function admin_page_contents() {
|
29 |
+
$this->child_admin_form_start();
|
30 |
$this->textbox('default', __('Default More Link Text', 'seo-ultimate'), $this->get_default_setting('default'));
|
31 |
+
$this->child_admin_form_end();
|
32 |
}
|
33 |
|
34 |
function more_link_filter($link, $text=false) {
|
modules/permalinks/permalinks.php
ADDED
@@ -0,0 +1,143 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Permalink Tweaker Module
|
4 |
+
*
|
5 |
+
* @since 5.8
|
6 |
+
*/
|
7 |
+
|
8 |
+
if (class_exists('SU_Module')) {
|
9 |
+
|
10 |
+
class SU_Permalinks extends SU_Module {
|
11 |
+
|
12 |
+
function get_module_title() { return __('Permalink Tweaker', 'seo-ultimate'); }
|
13 |
+
|
14 |
+
function get_parent_module() { return 'misc'; }
|
15 |
+
function get_settings_key() { return 'permalinks'; }
|
16 |
+
|
17 |
+
function init() {
|
18 |
+
if (suwp::permalink_mode()) {
|
19 |
+
$nobase_enabled = false;
|
20 |
+
$taxonomies = suwp::get_taxonomy_names();
|
21 |
+
foreach ($taxonomies as $taxonomy) {
|
22 |
+
if ($this->get_setting("nobase_$taxonomy", false)) {
|
23 |
+
add_action("created_$taxonomy", array(&$this, 'flush_rewrite_rules'));
|
24 |
+
add_action("edited_$taxonomy", array(&$this, 'flush_rewrite_rules'));
|
25 |
+
add_action("delete_$taxonomy", array(&$this, 'flush_rewrite_rules'));
|
26 |
+
add_filter("{$taxonomy}_rewrite_rules", array(&$this, 'nobase_rewrite_rules'));
|
27 |
+
$nobase_enabled = true;
|
28 |
+
}
|
29 |
+
}
|
30 |
+
if ($nobase_enabled) {
|
31 |
+
add_filter('term_link', array(&$this, 'nobase_term_link'), 1000, 2);
|
32 |
+
add_filter('query_vars', array(&$this, 'nobase_query_vars'));
|
33 |
+
add_filter('request', array(&$this, 'nobase_old_base_redirect'));
|
34 |
+
}
|
35 |
+
}
|
36 |
+
}
|
37 |
+
|
38 |
+
function admin_page_contents() {
|
39 |
+
|
40 |
+
if (!suwp::permalink_mode()) {
|
41 |
+
$this->print_message('warning', __('To use the Permalinks Tweaker, you must disable default (query-string) permalinks in your <a href="options-permalink.php">Permalink Settings</a>.', 'seo-ultimate'));
|
42 |
+
return;
|
43 |
+
}
|
44 |
+
|
45 |
+
$this->child_admin_form_start();
|
46 |
+
|
47 |
+
$nobase_checkboxes = array();
|
48 |
+
$taxonomies = suwp::get_taxonomies();
|
49 |
+
foreach ($taxonomies as $taxonomy) {
|
50 |
+
|
51 |
+
global $wp_rewrite;
|
52 |
+
$before_url = $wp_rewrite->get_extra_permastruct($taxonomy->name);
|
53 |
+
$before_url = str_replace("%{$taxonomy->name}%", 'example', $before_url);
|
54 |
+
$before_url = home_url( user_trailingslashit($before_url, 'category') );
|
55 |
+
|
56 |
+
$after_url = home_url( user_trailingslashit('/example', 'category') );
|
57 |
+
|
58 |
+
$nobase_checkboxes['nobase_' . $taxonomy->name] = sprintf(
|
59 |
+
__('%1$s (turn <code>%2$s</code> into <code>%3$s</code>)', 'seo-ultimate')
|
60 |
+
, $taxonomy->labels->name
|
61 |
+
, $before_url
|
62 |
+
, $after_url
|
63 |
+
);
|
64 |
+
}
|
65 |
+
|
66 |
+
$this->checkboxes($nobase_checkboxes, __('Remove the URL bases of...', 'seo-ultimate'));
|
67 |
+
$this->child_admin_form_end();
|
68 |
+
|
69 |
+
$this->update_rewrite_filters();
|
70 |
+
$this->flush_rewrite_rules();
|
71 |
+
}
|
72 |
+
|
73 |
+
function flush_rewrite_rules() {
|
74 |
+
global $wp_rewrite;
|
75 |
+
$wp_rewrite->flush_rules();
|
76 |
+
}
|
77 |
+
|
78 |
+
function update_rewrite_filters() {
|
79 |
+
if (suwp::permalink_mode()) {
|
80 |
+
$taxonomies = suwp::get_taxonomy_names();
|
81 |
+
foreach ($taxonomies as $taxonomy) {
|
82 |
+
if ($this->get_setting("nobase_$taxonomy", false))
|
83 |
+
add_filter("{$taxonomy}_rewrite_rules", array(&$this, 'nobase_rewrite_rules'));
|
84 |
+
else
|
85 |
+
remove_filter("{$taxonomy}_rewrite_rules", array(&$this, 'nobase_rewrite_rules'));
|
86 |
+
}
|
87 |
+
}
|
88 |
+
}
|
89 |
+
|
90 |
+
function nobase_term_link($url, $term_obj) {
|
91 |
+
if ($this->get_setting('nobase_' . $term_obj->taxonomy, false))
|
92 |
+
return home_url( user_trailingslashit('/' . suwp::get_term_slug($term_obj), 'category') );
|
93 |
+
|
94 |
+
return $url;
|
95 |
+
}
|
96 |
+
|
97 |
+
function nobase_rewrite_rules($rules) {
|
98 |
+
$rules=array();
|
99 |
+
|
100 |
+
$tax_name = sustr::rtrim_str(current_filter(), '_rewrite_rules');
|
101 |
+
$tax_obj = get_taxonomy($tax_name);
|
102 |
+
|
103 |
+
$terms = get_terms($tax_name);
|
104 |
+
if ($terms && !is_wp_error($terms)) {
|
105 |
+
foreach ($terms as $term_obj) {
|
106 |
+
$term_slug = suwp::get_term_slug($term_obj);
|
107 |
+
|
108 |
+
if ($tax_obj->query_var && is_string($tax_obj->query_var))
|
109 |
+
$url_start = "index.php?{$tax_obj->query_var}=";
|
110 |
+
else
|
111 |
+
$url_start = "index.php?taxonomy={$tax_name}&term=";
|
112 |
+
|
113 |
+
$rules['('.$term_slug.')/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$'] = $url_start . '$matches[1]&feed=$matches[2]';
|
114 |
+
$rules['('.$term_slug.')/page/?([0-9]{1,})/?$'] = $url_start . '$matches[1]&paged=$matches[2]';
|
115 |
+
$rules['('.$term_slug.')/?$'] = $url_start . '$matches[1]';
|
116 |
+
}
|
117 |
+
}
|
118 |
+
|
119 |
+
global $wp_rewrite;
|
120 |
+
$old_base = $wp_rewrite->get_extra_permastruct($tax_name);
|
121 |
+
$old_base = str_replace( "%{$tax_name}%", '(.+)', $old_base );
|
122 |
+
$old_base = trim($old_base, '/');
|
123 |
+
$rules[$old_base.'$'] = 'index.php?su_term_redirect=$matches[1]';
|
124 |
+
|
125 |
+
return $rules;
|
126 |
+
}
|
127 |
+
|
128 |
+
function nobase_query_vars($query_vars) {
|
129 |
+
$query_vars[] = 'su_term_redirect';
|
130 |
+
return $query_vars;
|
131 |
+
}
|
132 |
+
|
133 |
+
function nobase_old_base_redirect($query_vars) {
|
134 |
+
if (isset($query_vars['su_term_redirect'])) {
|
135 |
+
wp_redirect(home_url(user_trailingslashit($query_vars['su_term_redirect'], 'category')));
|
136 |
+
exit;
|
137 |
+
}
|
138 |
+
return $query_vars;
|
139 |
+
}
|
140 |
+
}
|
141 |
+
|
142 |
+
}
|
143 |
+
?>
|
modules/sharing-buttons/sharing-buttons.php
CHANGED
@@ -11,6 +11,9 @@ class SU_SharingButtons extends SU_Module {
|
|
11 |
|
12 |
function get_module_title() { return __('Sharing Facilitator', 'seo-ultimate'); }
|
13 |
|
|
|
|
|
|
|
14 |
function init() {
|
15 |
add_filter('the_content', array(&$this, 'add_sharing_buttons'));
|
16 |
}
|
@@ -23,21 +26,23 @@ class SU_SharingButtons extends SU_Module {
|
|
23 |
);
|
24 |
}
|
25 |
|
|
|
26 |
function get_admin_page_tabs() {
|
27 |
return array(
|
28 |
__('Providers', 'seo-ultimate') => 'providers_tab'
|
29 |
);
|
30 |
}
|
|
|
31 |
|
32 |
-
function
|
33 |
-
$this->
|
34 |
$this->admin_form_subheader(__('Which provider would you like to use for your sharing buttons?', 'seo-ultimate'));
|
35 |
$this->radiobuttons('provider', array(
|
36 |
'none' => __('None; disable sharing buttons', 'seo-ultimate')
|
37 |
, 'sharethis' => __('Use the ShareThis button', 'seo-ultimate') //: %s{sharethis_code}
|
38 |
, 'addthis' => __('Use the AddThis button', 'seo-ultimate') //: %s{addthis_code}
|
39 |
));
|
40 |
-
$this->
|
41 |
}
|
42 |
|
43 |
function add_sharing_buttons($content) {
|
11 |
|
12 |
function get_module_title() { return __('Sharing Facilitator', 'seo-ultimate'); }
|
13 |
|
14 |
+
function get_parent_module() { return 'misc'; }
|
15 |
+
function get_settings_key() { return 'sharing-buttons'; }
|
16 |
+
|
17 |
function init() {
|
18 |
add_filter('the_content', array(&$this, 'add_sharing_buttons'));
|
19 |
}
|
26 |
);
|
27 |
}
|
28 |
|
29 |
+
/*
|
30 |
function get_admin_page_tabs() {
|
31 |
return array(
|
32 |
__('Providers', 'seo-ultimate') => 'providers_tab'
|
33 |
);
|
34 |
}
|
35 |
+
*/
|
36 |
|
37 |
+
function admin_page_contents() {
|
38 |
+
$this->child_admin_form_start();
|
39 |
$this->admin_form_subheader(__('Which provider would you like to use for your sharing buttons?', 'seo-ultimate'));
|
40 |
$this->radiobuttons('provider', array(
|
41 |
'none' => __('None; disable sharing buttons', 'seo-ultimate')
|
42 |
, 'sharethis' => __('Use the ShareThis button', 'seo-ultimate') //: %s{sharethis_code}
|
43 |
, 'addthis' => __('Use the AddThis button', 'seo-ultimate') //: %s{addthis_code}
|
44 |
));
|
45 |
+
$this->child_admin_form_end();
|
46 |
}
|
47 |
|
48 |
function add_sharing_buttons($content) {
|
plugin/class.seo-ultimate.php
CHANGED
@@ -431,6 +431,9 @@ class SEO_Ultimate {
|
|
431 |
*/
|
432 |
function load_modules() {
|
433 |
|
|
|
|
|
|
|
434 |
$psdata = (array)get_option('seo_ultimate', array());
|
435 |
|
436 |
//The plugin_dir_path variable must be set before calling this function!
|
@@ -469,14 +472,16 @@ class SEO_Ultimate {
|
|
469 |
//Figure out the module's array key and class name
|
470 |
$module = strval(strtolower(substr($file, 0, -4)));
|
471 |
$class = 'SU_'.str_replace(' ', '', ucwords(str_replace('-', ' ', $module)));
|
472 |
-
|
473 |
//Load the module's code
|
474 |
include_once $filepath;
|
475 |
|
476 |
//If this is actually a module...
|
477 |
if (class_exists($class)) {
|
478 |
|
479 |
-
if ($module_parent = call_user_func(array($class, 'get_parent_module')))
|
|
|
|
|
480 |
$module_disabled = ($oldmodules[$module_parent] == SU_MODULE_DISABLED);
|
481 |
else
|
482 |
$module_disabled = ($oldmodules[$module] == SU_MODULE_DISABLED);
|
@@ -494,7 +499,7 @@ class SEO_Ultimate {
|
|
494 |
//We must tell the module what its key is so that it can save settings
|
495 |
$this->modules[$module]->module_key = $module;
|
496 |
|
497 |
-
//Tell the module what its
|
498 |
$this->modules[$module]->module_dir_rel_url = $mdirrelurl = "modules/$folder/";
|
499 |
$this->modules[$module]->module_rel_url = $mdirrelurl . $file;
|
500 |
$this->modules[$module]->module_dir_url = $mdirurl = $this->plugin_dir_url . $mdirrelurl;
|
@@ -748,8 +753,8 @@ class SEO_Ultimate {
|
|
748 |
foreach ($this->modules as $key => $x_module) {
|
749 |
$module =& $this->modules[$key];
|
750 |
|
751 |
-
//Show a module on the menu only if it provides a menu title and it doesn't have
|
752 |
-
if ($module->get_menu_title() && !$module->get_parent_module()) {
|
753 |
|
754 |
//If the module is hidden, put the module under a non-existent menu parent
|
755 |
//(this will let the module's admin page be loaded, but it won't show up on the menu)
|
@@ -1324,7 +1329,7 @@ class SEO_Ultimate {
|
|
1324 |
* @since 1.5
|
1325 |
*
|
1326 |
* @param string $key The key of the module to check.
|
1327 |
-
* @return boolean Whether the module is
|
1328 |
*/
|
1329 |
function module_exists($key) {
|
1330 |
return isset($this->modules[$key]);
|
@@ -1489,7 +1494,7 @@ class SEO_Ultimate {
|
|
1489 |
|
1490 |
$metakey = "_su_$field";
|
1491 |
|
1492 |
-
$value = stripslashes_deep($_POST[$metakey]);
|
1493 |
if (!apply_filters("su_custom_update_postmeta-$field", false, $value, $metakey, $post)) {
|
1494 |
if (empty($value))
|
1495 |
//Delete the old value
|
431 |
*/
|
432 |
function load_modules() {
|
433 |
|
434 |
+
$this->disabled_modules = array();
|
435 |
+
$this->modules = array();
|
436 |
+
|
437 |
$psdata = (array)get_option('seo_ultimate', array());
|
438 |
|
439 |
//The plugin_dir_path variable must be set before calling this function!
|
472 |
//Figure out the module's array key and class name
|
473 |
$module = strval(strtolower(substr($file, 0, -4)));
|
474 |
$class = 'SU_'.str_replace(' ', '', ucwords(str_replace('-', ' ', $module)));
|
475 |
+
|
476 |
//Load the module's code
|
477 |
include_once $filepath;
|
478 |
|
479 |
//If this is actually a module...
|
480 |
if (class_exists($class)) {
|
481 |
|
482 |
+
if ( ($module_parent = call_user_func(array($class, 'get_parent_module')))
|
483 |
+
&& !call_user_func(array($class, 'is_independent_module'))
|
484 |
+
)
|
485 |
$module_disabled = ($oldmodules[$module_parent] == SU_MODULE_DISABLED);
|
486 |
else
|
487 |
$module_disabled = ($oldmodules[$module] == SU_MODULE_DISABLED);
|
499 |
//We must tell the module what its key is so that it can save settings
|
500 |
$this->modules[$module]->module_key = $module;
|
501 |
|
502 |
+
//Tell the module what its URLs are
|
503 |
$this->modules[$module]->module_dir_rel_url = $mdirrelurl = "modules/$folder/";
|
504 |
$this->modules[$module]->module_rel_url = $mdirrelurl . $file;
|
505 |
$this->modules[$module]->module_dir_url = $mdirurl = $this->plugin_dir_url . $mdirrelurl;
|
753 |
foreach ($this->modules as $key => $x_module) {
|
754 |
$module =& $this->modules[$key];
|
755 |
|
756 |
+
//Show a module on the menu only if it provides a menu title and it doesn't have an enabled parent module
|
757 |
+
if ($module->get_menu_title() && (!$module->get_parent_module() || !$this->module_exists($module->get_parent_module()))) {
|
758 |
|
759 |
//If the module is hidden, put the module under a non-existent menu parent
|
760 |
//(this will let the module's admin page be loaded, but it won't show up on the menu)
|
1329 |
* @since 1.5
|
1330 |
*
|
1331 |
* @param string $key The key of the module to check.
|
1332 |
+
* @return boolean Whether the module is enabled.
|
1333 |
*/
|
1334 |
function module_exists($key) {
|
1335 |
return isset($this->modules[$key]);
|
1494 |
|
1495 |
$metakey = "_su_$field";
|
1496 |
|
1497 |
+
$value = isset($_POST[$metakey]) ? stripslashes_deep($_POST[$metakey]) : '';
|
1498 |
if (!apply_filters("su_custom_update_postmeta-$field", false, $value, $metakey, $post)) {
|
1499 |
if (empty($value))
|
1500 |
//Delete the old value
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== SEO Ultimate ===
|
2 |
Contributors: SEO Design Solutions, JohnLamansky
|
3 |
-
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.1
|
6 |
-
Stable tag: 5.
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
@@ -11,11 +11,11 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
|
|
11 |
|
12 |
= Recent Releases =
|
13 |
|
|
|
14 |
* Version 5.7 adds mass-editing for post format archives
|
15 |
* Version 5.6 adds the Nofollow Manager module
|
16 |
* Version 5.5 adds noindex/nofollow mass-editing for categories/tags/terms
|
17 |
* Version 5.4 adds noindex/nofollow mass-editing for posts/pages
|
18 |
-
* Version 5.3 adds meta keyword auto-generation from frequently-used words
|
19 |
|
20 |
= Features =
|
21 |
|
@@ -33,7 +33,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
33 |
* Mass-editor makes it a cinch to go back and add descriptions to old posts.
|
34 |
* Use the `{excerpt::autogen}` variable to auto-generate meta descriptions if desired.
|
35 |
|
36 |
-
* **Meta Keywords Editor**
|
37 |
* Edit the `<meta>` keyword tags for posts, pages, and the homepage.
|
38 |
* Easily specify global keywords that are applied across the entire site.
|
39 |
* Go back and edit old posts' and pages' keywords with the mass-editor.
|
@@ -121,7 +121,10 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
121 |
|
122 |
* **Nofollow Manager** -- NEW in Version 5.6
|
123 |
* Lets you maintain `rel="nofollow"` settings when migrating from other SEO plugins
|
124 |
-
|
|
|
|
|
|
|
125 |
* **Settings Manager**
|
126 |
* Export your SEO Ultimate settings to a file and re-import later if desired.
|
127 |
* Move SEO Ultimate settings between blogs using the export/import functionality.
|
@@ -229,6 +232,14 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
229 |
|
230 |
== Changelog ==
|
231 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
= Version 5.7 (June 2, 2011) =
|
233 |
* Feature: Title Tag Rewriter, Meta Descriptions Editor, and Meta Robot Tags Editor now officially support mass-editing post format archives (requires WordPress 3.1 or later)
|
234 |
* Feature: SEO Ultimate now alerts users when they're about to leave a module admin page that has unsaved changes
|
1 |
=== SEO Ultimate ===
|
2 |
Contributors: SEO Design Solutions, JohnLamansky
|
3 |
+
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.1
|
6 |
+
Stable tag: 5.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 |
|
11 |
|
12 |
= Recent Releases =
|
13 |
|
14 |
+
* Version 5.8 adds the Permalink Tweaker module
|
15 |
* Version 5.7 adds mass-editing for post format archives
|
16 |
* Version 5.6 adds the Nofollow Manager module
|
17 |
* Version 5.5 adds noindex/nofollow mass-editing for categories/tags/terms
|
18 |
* Version 5.4 adds noindex/nofollow mass-editing for posts/pages
|
|
|
19 |
|
20 |
= Features =
|
21 |
|
33 |
* Mass-editor makes it a cinch to go back and add descriptions to old posts.
|
34 |
* Use the `{excerpt::autogen}` variable to auto-generate meta descriptions if desired.
|
35 |
|
36 |
+
* **Meta Keywords Editor**
|
37 |
* Edit the `<meta>` keyword tags for posts, pages, and the homepage.
|
38 |
* Easily specify global keywords that are applied across the entire site.
|
39 |
* Go back and edit old posts' and pages' keywords with the mass-editor.
|
121 |
|
122 |
* **Nofollow Manager** -- NEW in Version 5.6
|
123 |
* Lets you maintain `rel="nofollow"` settings when migrating from other SEO plugins
|
124 |
+
|
125 |
+
* **Permalink Tweaker** -- NEW in Version 5.8
|
126 |
+
* Lets you remove the permalink base for categories, tags, and/or custom taxonomies. For example, enable category base removal to convert `http://example.com/category/example` into `http://example.com/example`, and then pair that with a `/%category%/%postname%/` permalink to enable some serious SEO siloing action.
|
127 |
+
|
128 |
* **Settings Manager**
|
129 |
* Export your SEO Ultimate settings to a file and re-import later if desired.
|
130 |
* Move SEO Ultimate settings between blogs using the export/import functionality.
|
232 |
|
233 |
== Changelog ==
|
234 |
|
235 |
+
= Version 5.8 (June 3, 2011) =
|
236 |
+
* Feature: Added the Permalink Tweaker module, which lets you remove permalink bases for categories, tags, and/or custom taxonomies
|
237 |
+
* Improvement: Module pages with few settings have been grouped into a new "Miscellaneous" admin page (to turn off this behavior, disable the Miscellaneous module in the Module Manager)
|
238 |
+
* Bugfix: Module Manager changes are now reflected immediately after clicking "Save Changes"
|
239 |
+
* Bugfix: Removed the "|Dropdown Title" that appeared at the end of contextual help dropdown titles
|
240 |
+
* Bugfix: Updated contextual help dropdown styling to work with WordPress 3.1
|
241 |
+
* Bugfix: Fixed errors that appeared when saving posts with WP_DEBUG mode enabled
|
242 |
+
|
243 |
= Version 5.7 (June 2, 2011) =
|
244 |
* Feature: Title Tag Rewriter, Meta Descriptions Editor, and Meta Robot Tags Editor now officially support mass-editing post format archives (requires WordPress 3.1 or later)
|
245 |
* Feature: SEO Ultimate now alerts users when they're about to leave a module admin page that has unsaved changes
|
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: 5.
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
|
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
-
* @version 5.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.0');
|
|
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', '5.
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/5.
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
+
Version: 5.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 5.8
|
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', '5.8');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/5.8');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
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 5.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
-
"POT-Creation-Date: 2011-06-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -19,832 +19,783 @@ msgid ""
|
|
19 |
"Ultimate to remove this notice."
|
20 |
msgstr ""
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
"SEO Ultimate
|
26 |
msgstr ""
|
27 |
|
28 |
-
#:
|
29 |
-
|
30 |
-
msgid "%s %s|Dropdown Title"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#:
|
34 |
-
msgid "
|
|
|
|
|
35 |
msgstr ""
|
36 |
|
37 |
-
#:
|
38 |
-
|
39 |
-
msgid "Format"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#:
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#:
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#:
|
51 |
-
msgid "
|
|
|
|
|
52 |
msgstr ""
|
53 |
|
54 |
-
#:
|
55 |
-
msgid "
|
56 |
msgstr ""
|
57 |
|
58 |
-
#:
|
59 |
-
msgid "
|
60 |
msgstr ""
|
61 |
|
62 |
-
#:
|
63 |
-
msgid "
|
64 |
msgstr ""
|
65 |
|
66 |
-
#:
|
67 |
-
msgid "
|
68 |
msgstr ""
|
69 |
|
70 |
-
#:
|
71 |
-
msgid "
|
72 |
msgstr ""
|
73 |
|
74 |
-
#:
|
75 |
-
msgid "
|
76 |
msgstr ""
|
77 |
|
78 |
-
#:
|
79 |
-
msgid "
|
80 |
msgstr ""
|
81 |
|
82 |
-
#:
|
83 |
-
msgid "
|
84 |
msgstr ""
|
85 |
|
86 |
-
#:
|
87 |
-
msgid ""
|
88 |
-
"Are you sure you want to replace the textbox contents with this default "
|
89 |
-
"value?"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#:
|
93 |
-
msgid "
|
94 |
msgstr ""
|
95 |
|
96 |
-
#:
|
97 |
-
msgid "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#:
|
101 |
-
msgid ""
|
102 |
-
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
103 |
-
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
104 |
-
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
105 |
-
"Ultimate."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#:
|
109 |
-
msgid "
|
110 |
msgstr ""
|
111 |
|
112 |
-
#:
|
113 |
msgid ""
|
114 |
-
"
|
115 |
-
"
|
116 |
-
"
|
|
|
117 |
msgstr ""
|
118 |
|
119 |
-
#:
|
120 |
-
msgid "
|
121 |
msgstr ""
|
122 |
|
123 |
-
#:
|
124 |
-
msgid "
|
125 |
msgstr ""
|
126 |
|
127 |
-
#:
|
128 |
-
msgid "
|
129 |
msgstr ""
|
130 |
|
131 |
-
#:
|
132 |
-
msgid "
|
133 |
msgstr ""
|
134 |
|
135 |
-
#:
|
136 |
-
msgid ""
|
137 |
-
"When the migration tool successfully copies a post’s %1$s data over to "
|
138 |
-
"SEO Ultimate, what should it do with the old %1$s data?"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#:
|
142 |
-
msgid "
|
143 |
msgstr ""
|
144 |
|
145 |
-
#:
|
146 |
-
msgid "
|
147 |
msgstr ""
|
148 |
|
149 |
-
#:
|
150 |
-
msgid "
|
151 |
msgstr ""
|
152 |
|
153 |
-
#:
|
154 |
-
msgid ""
|
155 |
-
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
156 |
-
"target=\"_blank\">backup your database</a> before proceeding!"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#:
|
160 |
-
msgid "
|
161 |
msgstr ""
|
162 |
|
163 |
-
#:
|
164 |
-
msgid "
|
165 |
msgstr ""
|
166 |
|
167 |
-
#:
|
168 |
-
msgid "
|
169 |
msgstr ""
|
170 |
|
171 |
-
#:
|
172 |
-
msgid "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#:
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#:
|
180 |
-
msgid "
|
181 |
-
|
182 |
-
msgstr[0] ""
|
183 |
-
msgstr[1] ""
|
184 |
-
|
185 |
-
#: modules/class.su-importmodule.php:180
|
186 |
-
msgid "Skipped one post with disabled %2$s data."
|
187 |
-
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
188 |
-
msgstr[0] ""
|
189 |
-
msgstr[1] ""
|
190 |
-
|
191 |
-
#: modules/class.su-importmodule.php:186
|
192 |
-
msgid ""
|
193 |
-
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
194 |
-
"settings you chose."
|
195 |
-
msgid_plural ""
|
196 |
-
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
197 |
-
"settings you chose."
|
198 |
-
msgstr[0] ""
|
199 |
-
msgstr[1] ""
|
200 |
-
|
201 |
-
#: modules/class.su-importmodule.php:192
|
202 |
-
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
203 |
-
msgid_plural ""
|
204 |
-
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
205 |
-
msgstr[0] ""
|
206 |
-
msgstr[1] ""
|
207 |
|
208 |
-
#:
|
209 |
-
msgid "
|
210 |
msgstr ""
|
211 |
|
212 |
-
#:
|
213 |
-
msgid ""
|
214 |
-
"Reviews\n"
|
215 |
-
"Review"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#:
|
219 |
-
msgid "
|
220 |
msgstr ""
|
221 |
|
222 |
-
#:
|
223 |
-
msgid "
|
224 |
msgstr ""
|
225 |
|
226 |
-
#:
|
227 |
-
msgid "
|
228 |
msgstr ""
|
229 |
|
230 |
-
#:
|
231 |
-
msgid "
|
232 |
msgstr ""
|
233 |
|
234 |
-
#:
|
235 |
-
msgid "
|
236 |
msgstr ""
|
237 |
|
238 |
-
#:
|
239 |
-
|
240 |
-
msgid "Review"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#:
|
244 |
-
msgid "
|
245 |
msgstr ""
|
246 |
|
247 |
-
#:
|
248 |
-
msgid "
|
249 |
msgstr ""
|
250 |
|
251 |
-
#:
|
252 |
-
msgid "
|
253 |
msgstr ""
|
254 |
|
255 |
-
#:
|
256 |
-
|
257 |
-
msgid "None"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#:
|
261 |
-
msgid "
|
262 |
msgstr ""
|
263 |
|
264 |
-
#:
|
265 |
-
|
|
|
266 |
msgstr ""
|
267 |
|
268 |
-
#:
|
269 |
-
msgid "
|
270 |
msgstr ""
|
271 |
|
272 |
-
#:
|
273 |
-
msgid "
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: modules/
|
277 |
-
msgid "
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: modules/
|
281 |
-
msgid "
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: modules/
|
285 |
-
msgid "
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: modules/
|
289 |
-
msgid "
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: modules/
|
293 |
-
msgid "
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: modules/
|
297 |
-
msgid "
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: modules/
|
301 |
-
msgid "
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: modules/
|
305 |
-
msgid "
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: modules/
|
309 |
-
msgid "
|
|
|
|
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: modules/
|
313 |
-
msgid "
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: modules/
|
317 |
-
msgid "
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: modules/
|
321 |
-
msgid "
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: modules/
|
325 |
-
msgid "
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: modules/
|
329 |
-
msgid "
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: modules/
|
333 |
-
|
334 |
-
msgid "Show 100 results per page"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: modules/
|
338 |
-
|
339 |
-
msgid "Use Google’s minimal mode"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: modules/
|
343 |
-
|
344 |
-
msgid "Submit"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: modules/
|
348 |
-
msgid "
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: modules/
|
352 |
-
msgid "
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: modules/
|
356 |
-
msgid "
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: modules/
|
360 |
-
|
361 |
-
msgid "URL"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: modules/
|
365 |
-
msgid "
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: modules/
|
369 |
-
msgid ""
|
370 |
-
"You can stop search engines from following a link by typing in a mask for "
|
371 |
-
"its URL."
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: modules/
|
375 |
-
msgid "
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: modules/
|
379 |
-
msgid "
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: modules/titles/titles.php:
|
383 |
-
msgid "
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: modules/
|
387 |
-
msgid "
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: modules/
|
391 |
-
msgid "Settings"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: modules/
|
395 |
-
msgid "
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: modules/
|
399 |
-
msgid ""
|
400 |
-
"Convert lowercase category/tag names to title case when used in title tags."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: modules/
|
404 |
-
msgid "
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: modules/
|
408 |
-
msgid "
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: modules/
|
412 |
-
msgid "
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: modules/
|
416 |
-
msgid "
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: modules/
|
420 |
-
msgid "
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: modules/
|
424 |
-
msgid "
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: modules/
|
428 |
-
msgid "
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: modules/
|
432 |
-
msgid "
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: modules/
|
436 |
-
msgid "
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: modules/
|
440 |
-
msgid "
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: modules/
|
444 |
-
msgid "
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: modules/
|
448 |
-
msgid "
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: modules/
|
452 |
-
msgid "
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: modules/
|
456 |
-
msgid "
|
|
|
|
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: modules/
|
460 |
-
msgid "
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: modules/
|
464 |
-
msgid "
|
|
|
|
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: modules/
|
468 |
-
msgid "
|
|
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: modules/
|
472 |
-
msgid "
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: modules/
|
476 |
-
msgid "
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: modules/
|
480 |
-
msgid "
|
|
|
|
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: modules/
|
484 |
-
msgid "
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: modules/
|
488 |
-
msgid "
|
|
|
|
|
|
|
|
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: modules/
|
492 |
-
msgid "
|
|
|
|
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: modules/
|
496 |
-
msgid "
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: modules/
|
500 |
-
msgid "
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: modules/
|
504 |
-
msgid "
|
|
|
|
|
|
|
|
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: modules/
|
508 |
msgid ""
|
509 |
-
"
|
510 |
-
"
|
511 |
-
"result titles. If this box is left blank, then the <a href=\"admin.php?"
|
512 |
-
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: modules/
|
516 |
-
msgid "
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: modules/
|
520 |
-
msgid "
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: modules/
|
524 |
msgid ""
|
525 |
-
"
|
526 |
-
"
|
|
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: modules/
|
530 |
-
msgid "
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: modules/
|
534 |
-
msgid "
|
|
|
|
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: modules/
|
538 |
-
msgid "
|
|
|
|
|
|
|
|
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: modules/
|
542 |
-
msgid "
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: modules/
|
546 |
-
msgid "
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: modules/
|
550 |
msgid ""
|
551 |
-
"
|
|
|
|
|
|
|
|
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: modules/
|
555 |
-
msgid "
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: modules/
|
559 |
-
msgid "
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: modules/
|
563 |
-
msgid "
|
|
|
|
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: modules/
|
567 |
msgid ""
|
568 |
-
"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: modules/
|
572 |
-
msgid "
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: modules/
|
576 |
-
msgid "
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: modules/
|
580 |
-
msgid "
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: modules/
|
584 |
-
msgid ""
|
585 |
-
"Find out which sites have the most relevant naming conventions for each "
|
586 |
-
"keyword"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: modules/
|
590 |
-
msgid "
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: modules/
|
594 |
-
msgid "
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: modules/
|
598 |
-
msgid "
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: modules/
|
602 |
-
|
603 |
-
msgid "Inbound Links"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: modules/
|
607 |
-
msgid "
|
|
|
|
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: modules/
|
611 |
-
|
612 |
-
msgid "Outbound Links"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: modules/
|
616 |
-
msgid "
|
|
|
|
|
|
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: modules/
|
620 |
-
msgid "
|
|
|
|
|
|
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: modules/
|
624 |
-
msgid "
|
|
|
|
|
|
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: modules/
|
628 |
-
msgid "
|
|
|
|
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: modules/
|
632 |
-
msgid "
|
|
|
|
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: modules/
|
636 |
-
msgid "
|
|
|
|
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: modules/
|
640 |
-
msgid "
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: modules/
|
644 |
-
msgid "
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: modules/
|
648 |
-
msgid "
|
|
|
|
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: modules/
|
652 |
-
msgid "
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: modules/
|
656 |
-
msgid "
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: modules/
|
660 |
-
msgid "
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: modules/
|
664 |
-
msgid "
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: modules/
|
668 |
-
msgid "
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: modules/
|
672 |
-
msgid "
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: modules/
|
676 |
-
msgid "
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: modules/
|
680 |
-
msgid "
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: modules/
|
684 |
-
msgid "
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: modules/
|
688 |
-
msgid "
|
|
|
|
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: modules/
|
692 |
-
msgid "
|
|
|
|
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: modules/
|
696 |
-
msgid "
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: modules/
|
700 |
-
msgid "
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: modules/
|
704 |
-
msgid "
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: modules/
|
708 |
-
msgid "
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: modules/
|
712 |
-
msgid "
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: modules/
|
716 |
-
msgid "
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: modules/
|
720 |
-
msgid "
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: modules/
|
724 |
-
msgid "
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: modules/
|
728 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: modules/
|
732 |
-
msgid "
|
|
|
|
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: modules/
|
736 |
-
msgid ""
|
737 |
-
"<strong>Keywords</strong> — The value of the meta keywords tag. The "
|
738 |
-
"keywords list gives search engines a hint as to what this post/page is "
|
739 |
-
"about. Be sure to separate keywords with commas, like so: <samp>one,two,"
|
740 |
-
"three</samp>."
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: modules/
|
744 |
-
msgid "
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: modules/
|
748 |
-
msgid "
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: modules/
|
752 |
-
msgid "
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: modules/
|
756 |
-
msgid "
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: modules/
|
760 |
-
msgid "
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: modules/
|
764 |
-
msgid "
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: modules/
|
768 |
-
msgid "
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: modules/
|
772 |
-
msgid "
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: modules/
|
776 |
-
msgid "
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: modules/
|
780 |
-
msgid ""
|
781 |
-
"Don’t use this site’s Open Directory description in search results."
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: modules/
|
785 |
-
msgid ""
|
786 |
-
"Don’t use this site’s Yahoo! Directory description in search "
|
787 |
-
"results."
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: modules/
|
791 |
-
msgid "
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: modules/meta/meta-descriptions.php:12
|
795 |
-
msgid "Meta Description Editor"
|
796 |
-
msgstr ""
|
797 |
-
|
798 |
-
#: modules/meta/meta-descriptions.php:13
|
799 |
-
msgid "Meta Descriptions"
|
800 |
-
msgstr ""
|
801 |
-
|
802 |
-
#: modules/meta/meta-descriptions.php:31
|
803 |
-
msgid "Meta Description"
|
804 |
-
msgstr ""
|
805 |
-
|
806 |
-
#: modules/meta/meta-descriptions.php:46
|
807 |
-
msgid "Post Description Format"
|
808 |
-
msgstr ""
|
809 |
-
|
810 |
-
#: modules/meta/meta-descriptions.php:53
|
811 |
-
msgid "Blog Homepage Meta Description"
|
812 |
-
msgstr ""
|
813 |
-
|
814 |
-
#: modules/meta/meta-descriptions.php:55
|
815 |
-
msgid "Use this blog’s tagline as the default homepage description."
|
816 |
-
msgstr ""
|
817 |
-
|
818 |
-
#: modules/meta/meta-descriptions.php:56
|
819 |
-
msgid "Default Value"
|
820 |
-
msgstr ""
|
821 |
-
|
822 |
-
#: modules/meta/meta-descriptions.php:109
|
823 |
-
msgid "Meta Description:"
|
824 |
-
msgstr ""
|
825 |
-
|
826 |
-
#: modules/meta/meta-descriptions.php:112
|
827 |
-
msgid "You’ve entered %s characters. Most search engines use up to 160."
|
828 |
-
msgstr ""
|
829 |
-
|
830 |
-
#: modules/meta/meta-descriptions.php:120
|
831 |
-
msgid ""
|
832 |
-
"<strong>Description</strong> — The value of the meta description tag. "
|
833 |
-
"The description will often appear underneath the title in search engine "
|
834 |
-
"results. Writing an accurate, attention-grabbing description for every post "
|
835 |
-
"is important to ensuring a good search results clickthrough rate."
|
836 |
-
msgstr ""
|
837 |
-
|
838 |
-
#: modules/import-aiosp/import-aiosp.php:12
|
839 |
-
msgid "Import from All in One SEO Pack"
|
840 |
-
msgstr ""
|
841 |
-
|
842 |
-
#: modules/import-aiosp/import-aiosp.php:13
|
843 |
-
msgid "AIOSP Import"
|
844 |
-
msgstr ""
|
845 |
-
|
846 |
-
#: modules/import-aiosp/import-aiosp.php:15
|
847 |
-
msgid "All in One SEO Pack"
|
848 |
msgstr ""
|
849 |
|
850 |
#: modules/import-aiosp/import-aiosp.php:16
|
@@ -871,1121 +822,1204 @@ msgid ""
|
|
871 |
"first and run AIOSP’s upgrade process."
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: modules/
|
875 |
-
msgid "
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: modules/
|
879 |
-
msgid "
|
880 |
msgstr ""
|
881 |
|
882 |
-
|
883 |
-
|
884 |
-
#: modules/sds-blog/sds-blog.php:49
|
885 |
-
msgid "SEO Design Solutions"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: modules/
|
889 |
-
msgid ""
|
890 |
-
"The search engine optimization articles below are loaded from the website of "
|
891 |
-
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
892 |
-
"an article’s title to read it."
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: modules/
|
896 |
-
msgid "
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: modules/
|
900 |
-
msgid "
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: modules/
|
904 |
-
msgid ""
|
905 |
-
"SEO Ultimate’s features are located in groups called “modules."
|
906 |
-
"” By default, most of these modules are listed in the “"
|
907 |
-
"SEO” menu on the left. Whenever you’re working with a module, "
|
908 |
-
"you can view documentation by clicking the tabs in the upper-right-hand "
|
909 |
-
"corner of your administration screen."
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: modules/
|
913 |
-
msgid ""
|
914 |
-
"The Module Manager lets you disable or hide modules you don’t use. "
|
915 |
-
"You can also silence modules from displaying bubble alerts on the menu."
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: modules/
|
919 |
-
msgid "
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: modules/
|
923 |
-
msgid "
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: modules/
|
927 |
-
msgid "
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: modules/
|
931 |
-
msgid "
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: modules/
|
935 |
-
msgid "
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: modules/
|
939 |
-
msgid "
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: modules/
|
943 |
-
msgid "
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: modules/
|
947 |
-
msgid "
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: modules/
|
951 |
-
msgid "
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: modules/
|
955 |
-
msgid "
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: modules/
|
959 |
-
msgid "
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: modules/
|
963 |
-
msgid "
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: modules/
|
967 |
-
msgid "
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: modules/
|
971 |
-
msgid "
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: modules/
|
975 |
-
msgid "
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: modules/
|
979 |
-
msgid "
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: modules/
|
983 |
-
msgid "
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: modules/
|
987 |
-
msgid "
|
|
|
|
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: modules/
|
991 |
-
msgid "
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: modules/
|
995 |
-
msgid "
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: modules/
|
999 |
-
msgid "
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: modules/
|
1003 |
-
msgid "
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: modules/
|
1007 |
-
msgid "
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: modules/
|
1011 |
-
msgid "
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: modules/
|
1015 |
-
msgid "
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: modules/
|
1019 |
-
msgid "
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: modules/
|
1023 |
-
msgid ""
|
1024 |
-
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
1025 |
-
"Settings tab."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: modules/
|
1029 |
-
|
|
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: modules/
|
1033 |
-
msgid "
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: modules/
|
1037 |
-
|
|
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: modules/
|
1041 |
-
msgid "
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: modules/
|
1045 |
-
msgid "
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: modules/
|
1049 |
-
msgid "
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: modules/
|
1053 |
-
msgid "
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: modules/
|
1057 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: modules/
|
1061 |
-
msgid "
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: modules/
|
1065 |
-
msgid "
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: modules/
|
1069 |
-
msgid "
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: modules/
|
1073 |
-
msgid "
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: modules/
|
1077 |
-
msgid "
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: modules/
|
1081 |
-
msgid "
|
|
|
|
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: modules/
|
1085 |
-
msgid "
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: modules/
|
1089 |
-
|
|
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: modules/
|
1093 |
-
msgid "
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: modules/
|
1097 |
-
msgid "
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: modules/
|
1101 |
-
msgid "
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: modules/
|
1105 |
-
msgid "
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: modules/
|
1109 |
-
msgid "
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: modules/
|
1113 |
-
msgid "
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: modules/
|
1117 |
-
msgid "
|
|
|
|
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: modules/
|
1121 |
-
msgid "
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: modules/
|
1125 |
-
msgid "
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: modules/
|
1129 |
-
msgid ""
|
1130 |
-
"A .htaccess file exists, but it’s not writable. You can edit it here "
|
1131 |
-
"once the file permissions are corrected."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: modules/
|
1135 |
-
msgid ""
|
1136 |
-
"WordPress won’t be able to display your robots.txt file because the "
|
1137 |
-
"default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
|
1138 |
-
"structure</a> is in use."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: modules/
|
1142 |
-
msgid "
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: modules/
|
1146 |
-
msgid "
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: modules/
|
1150 |
-
msgid "
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: modules/
|
1154 |
-
msgid "
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: modules/
|
1158 |
-
msgid ""
|
1159 |
-
"Please realize that incorrectly editing your robots.txt file could block "
|
1160 |
-
"search engines from your site."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: modules/
|
1164 |
-
msgid "
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1168 |
msgid ""
|
1169 |
-
"
|
1170 |
-
"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: modules/
|
1174 |
msgid ""
|
1175 |
-
"
|
1176 |
-
"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: modules/
|
1180 |
-
|
|
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: modules/
|
1184 |
-
msgid "
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: modules/
|
1188 |
-
msgid "
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: modules/
|
1192 |
-
msgid "
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: modules/
|
1196 |
-
msgid "
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: modules/
|
1200 |
-
msgid "
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: modules/
|
1204 |
-
msgid "
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: modules/
|
1208 |
-
msgid "
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: modules/
|
1212 |
-
msgid "
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: modules/
|
1216 |
-
msgid "
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: modules/
|
1220 |
-
msgid "
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: modules/
|
1224 |
-
msgid "
|
|
|
|
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: modules/
|
1228 |
-
msgid "
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: modules/
|
1232 |
-
msgid "
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: modules/
|
1236 |
-
msgid "
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: modules/
|
1240 |
-
msgid ""
|
1241 |
-
"The uploaded file is not in the proper format. Settings could not be "
|
1242 |
-
"imported."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: modules/
|
1246 |
-
msgid "
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1250 |
msgid ""
|
1251 |
-
"
|
1252 |
-
"click the “Browse” button and select a file to import."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: modules/
|
1256 |
msgid ""
|
1257 |
-
"
|
|
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: modules/
|
1261 |
-
msgid "
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: modules/
|
1265 |
-
msgid "
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: modules/
|
1269 |
-
msgid ""
|
1270 |
-
"Links could not be imported because no CSV file was selected. Please click "
|
1271 |
-
"the “Browse” button and select a file to import."
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: modules/
|
1275 |
-
msgid "
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: modules/
|
1279 |
-
msgid ""
|
1280 |
-
"You can use this form to upload and import an SEO Ultimate settings file "
|
1281 |
-
"stored on your computer. (These files can be created using the Export tool.) "
|
1282 |
-
"Note that importing a file will overwrite your existing settings with those "
|
1283 |
-
"in the file."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: modules/
|
1287 |
-
msgid ""
|
1288 |
-
"Are you sure you want to import this settings file? This will overwrite your "
|
1289 |
-
"current settings and cannot be undone."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: modules/
|
1293 |
-
msgid "
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: modules/
|
1297 |
-
msgid "
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: modules/
|
1301 |
-
msgid ""
|
1302 |
-
"You can use this form to upload and import a Deeplink Juggernaut CSV file "
|
1303 |
-
"stored on your computer. (These files can be created using the Export tool.) "
|
1304 |
-
"Note that importing a file will overwrite your existing links with those in "
|
1305 |
-
"the file."
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1309 |
msgid ""
|
1310 |
-
"
|
1311 |
-
"
|
|
|
|
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: modules/
|
1315 |
-
msgid "
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: modules/
|
1319 |
-
msgid "
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1323 |
msgid ""
|
1324 |
-
"
|
1325 |
-
"
|
1326 |
-
"
|
|
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: modules/
|
1330 |
-
msgid "
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: modules/
|
1334 |
msgid ""
|
1335 |
-
"
|
1336 |
-
"
|
|
|
|
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: modules/
|
|
|
|
|
|
|
|
|
1340 |
msgid ""
|
1341 |
-
"
|
1342 |
-
"
|
1343 |
-
"
|
1344 |
-
"database backup, however)."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: modules/
|
1348 |
-
msgid "
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: modules/
|
1352 |
-
msgid "
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1356 |
msgid ""
|
1357 |
-
"
|
1358 |
-
"
|
1359 |
-
"file to your computer, you can edit it using your favorite spreadsheet "
|
1360 |
-
"program. When you’re done editing, you can re-upload the file using "
|
1361 |
-
"the Import tool."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: modules/
|
1365 |
-
msgid "
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: modules/
|
1369 |
-
msgid "
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: modules/
|
1373 |
-
msgid ""
|
1374 |
-
"You can erase all your SEO Ultimate settings and restore them to “"
|
1375 |
-
"factory defaults” by clicking the button below."
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: modules/
|
1379 |
msgid ""
|
1380 |
-
"
|
|
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: modules/
|
1384 |
-
msgid "
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: modules/
|
1388 |
-
msgid "
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: modules/
|
1392 |
-
msgid "
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: modules/
|
1396 |
-
msgid "
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: modules/
|
1400 |
-
msgid "
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: modules/
|
1404 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: modules/
|
1408 |
-
msgid "
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
|
1412 |
-
|
|
|
|
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
|
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: modules/
|
1422 |
-
msgid "
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: modules/
|
1426 |
-
msgid "
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: modules/
|
1430 |
-
msgid ""
|
1431 |
-
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
1432 |
-
"files."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: modules/
|
1436 |
-
msgid ""
|
1437 |
-
"Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
|
1438 |
-
"your SEO Ultimate settings and cannot be undone."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: modules/
|
1442 |
-
msgid "
|
|
|
|
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: modules/
|
1446 |
-
msgid "
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: modules/
|
1450 |
-
msgid "
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: modules/
|
1454 |
-
msgid "
|
|
|
|
|
|
|
|
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: modules/
|
1458 |
-
msgid "
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: modules/
|
1462 |
-
msgid "
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: modules/
|
1466 |
-
msgid "
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: modules/
|
1470 |
-
msgid "
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: modules/
|
1474 |
-
msgid "
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: modules/
|
1478 |
-
msgid "
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: modules/
|
1482 |
-
msgid "
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: modules/
|
1486 |
msgid ""
|
1487 |
-
"
|
1488 |
-
"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: modules/
|
1492 |
-
msgid "
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: modules/
|
1496 |
-
msgid ""
|
1497 |
-
"There was an error retrieving the list of available versions. Please try "
|
1498 |
-
"again later. You can also upgrade to the latest version of SEO Ultimate "
|
1499 |
-
"using the WordPress plugin upgrader."
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: modules/
|
1503 |
-
msgid ""
|
1504 |
-
"Downgrading is provided as a convenience only and is not officially "
|
1505 |
-
"supported. Although unlikely, you may lose data in the downgrading process. "
|
1506 |
-
"It is your responsibility to backup your database before proceeding."
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: modules/
|
1510 |
-
msgid ""
|
1511 |
-
"From the list below, select the version to which you would like to "
|
1512 |
-
"downgrade. Then click the “Downgrade” button at the bottom of "
|
1513 |
-
"the screen."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: modules/
|
1517 |
-
msgid ""
|
1518 |
-
"Downgrading to versions earlier than %s is not supported because doing so "
|
1519 |
-
"will result in data loss."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: modules/
|
1523 |
msgid ""
|
1524 |
-
"
|
1525 |
-
"again later."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: modules/
|
1529 |
-
msgid ""
|
1530 |
-
"To download and install a fresh copy of the SEO Ultimate version you are "
|
1531 |
-
"currently using, click the “Reinstall” button below."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: modules/
|
1535 |
-
msgid "
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: modules/
|
1539 |
-
msgid "
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: modules/
|
1543 |
msgid ""
|
1544 |
-
"
|
1545 |
-
"blog."
|
1546 |
-
msgstr ""
|
1547 |
-
|
1548 |
-
#: modules/settings/install.php:140
|
1549 |
-
msgid "Downgrade to SEO Ultimate %s"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: modules/
|
1553 |
-
msgid "
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: modules/
|
1557 |
-
msgid "
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: modules/
|
1561 |
-
msgid "
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: modules/
|
1565 |
-
msgid "
|
|
|
|
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: modules/
|
1569 |
-
msgid "
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: modules/
|
1573 |
-
msgid "
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: modules/
|
1577 |
-
msgid "
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: modules/
|
1581 |
-
|
|
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: modules/
|
1585 |
-
msgid "
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: modules/
|
1589 |
-
|
|
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: modules/
|
1593 |
-
|
1594 |
-
msgid "Noindex"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: modules/
|
1598 |
-
|
1599 |
-
msgid "Nofollow"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: modules/
|
1603 |
-
msgid "
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: modules/
|
1607 |
-
msgid "
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: modules/
|
1611 |
-
|
|
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: modules/
|
1615 |
-
|
|
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: modules/
|
1619 |
-
|
|
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: modules/
|
1623 |
-
msgid ""
|
1624 |
-
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
1625 |
-
"block indexing of the entire site, regardless of which options are set below."
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: modules/
|
1629 |
-
msgid "
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: modules/
|
1633 |
-
msgid "
|
|
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: modules/
|
1637 |
-
msgid "
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: modules/
|
1641 |
-
msgid "
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: modules/
|
1645 |
-
msgid "
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: modules/
|
1649 |
-
msgid "
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#: modules/
|
1653 |
-
msgid "
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: modules/
|
1657 |
-
msgid "
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: modules/
|
1661 |
-
msgid "
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: modules/
|
1665 |
-
msgid "
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: modules/
|
1669 |
-
msgid "
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: modules/
|
1673 |
-
msgid "
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: modules/
|
1677 |
-
msgid "
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: modules/
|
1681 |
-
msgid "
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: modules/
|
1685 |
-
msgid "
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: modules/
|
1689 |
-
msgid "
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: modules/
|
1693 |
-
msgid "
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: modules/
|
1697 |
-
msgid ""
|
1698 |
-
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
1699 |
-
"a certain word or phrase in your post/page content to a URL you specify."
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: modules/
|
1703 |
-
msgid "
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: modules/
|
1707 |
-
msgid "
|
1708 |
msgstr ""
|
1709 |
-
|
1710 |
-
#: modules/
|
1711 |
-
msgid "
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: modules/
|
1715 |
-
msgid "
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: modules/
|
1719 |
-
msgid "
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: modules/
|
1723 |
-
msgid "Title
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: modules/
|
1727 |
-
msgid "
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: modules/
|
1731 |
-
msgid "
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: modules/
|
1735 |
-
msgid "
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: modules/
|
1739 |
-
msgid "
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: modules/
|
1743 |
-
msgid "
|
|
|
|
|
|
|
|
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: modules/
|
1747 |
-
msgid "
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: modules/
|
1751 |
-
msgid "
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: modules/
|
1755 |
-
msgid "
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: modules/
|
1759 |
-
msgid ""
|
1760 |
-
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
1761 |
-
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
1762 |
-
"other posts and link it to this post. For example, if the post you’re "
|
1763 |
-
"editing is about “blue widgets,” you could type “blue "
|
1764 |
-
"widgets” into the “Incoming Autolink Anchors” box and "
|
1765 |
-
"Deeplink Juggernaut will automatically build internal links to this post "
|
1766 |
-
"with that anchor text (assuming other posts contain that text)."
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#: modules/
|
1770 |
-
msgid "
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: modules/
|
1774 |
-
msgid "
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: modules/
|
1778 |
-
msgid "
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: modules/
|
1782 |
-
msgid "
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: modules/
|
1786 |
msgid ""
|
1787 |
-
"
|
1788 |
-
"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#:
|
1792 |
-
msgid "
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#:
|
1796 |
-
msgid "
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#:
|
1800 |
-
msgid "
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#:
|
1804 |
-
msgid "
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#:
|
1808 |
-
msgid "
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#:
|
1812 |
-
|
|
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#:
|
1816 |
-
msgid "
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#:
|
1820 |
-
msgid "
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#:
|
1824 |
-
msgid "
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#:
|
1828 |
-
|
|
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#:
|
1832 |
-
msgid "
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#:
|
1836 |
-
msgid "
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#:
|
1840 |
-
msgid "
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#:
|
1844 |
-
msgid "
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#:
|
1848 |
-
msgid "
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#:
|
1852 |
-
msgid "
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#:
|
1856 |
-
msgid "
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#:
|
1860 |
-
msgid "
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#:
|
1864 |
-
msgid "
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#:
|
1868 |
-
msgid "
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#:
|
1872 |
-
msgid "
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#:
|
1876 |
-
msgid "
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#:
|
1880 |
-
msgid ""
|
1881 |
-
"It looks like you made changes to the settings of this SEO Ultimate module. "
|
1882 |
-
"If you leave before saving, those changes will be lost."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
-
#:
|
1886 |
-
msgid "
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#:
|
1890 |
-
msgid "
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#:
|
1894 |
-
msgid "(
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#:
|
1898 |
-
msgid ""
|
1899 |
-
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
|
1900 |
-
"1$s to avoid plugin conflicts."
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#:
|
1904 |
-
msgid "
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#:
|
1908 |
-
msgid "
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#:
|
1912 |
-
msgid "
|
|
|
|
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#:
|
1916 |
-
msgid "
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#:
|
1920 |
-
msgid "
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#:
|
1924 |
-
msgid "
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#:
|
1928 |
-
msgid "
|
|
|
|
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#:
|
1932 |
-
msgid "
|
|
|
|
|
|
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#:
|
1936 |
-
msgid "
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#:
|
1940 |
-
msgid "
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#:
|
1944 |
-
msgid "
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#:
|
1948 |
-
msgid "
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#:
|
1952 |
msgid ""
|
1953 |
-
"
|
1954 |
-
"search
|
1955 |
-
"target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
|
1956 |
-
"to everyone."
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#:
|
1960 |
-
msgid "
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#:
|
1964 |
-
msgid "
|
|
|
|
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#:
|
1968 |
-
msgid "
|
|
|
|
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#:
|
1972 |
-
msgid "
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#:
|
1976 |
-
msgid "
|
|
|
|
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#:
|
1980 |
-
msgid "
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#:
|
1984 |
-
msgid "
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#:
|
1988 |
-
msgid "
|
1989 |
msgstr ""
|
1990 |
|
1991 |
#. Plugin URI of the plugin/theme
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: SEO Ultimate 5.8\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2011-06-03 20:49:34+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
"Ultimate to remove this notice."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 5.8) #-#-#-#-#
|
23 |
+
#. Plugin Name of the plugin/theme
|
24 |
+
#: plugin/class.seo-ultimate.php:746 modules/settings/settings.php:14
|
25 |
+
msgid "SEO Ultimate"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: plugin/class.seo-ultimate.php:746
|
29 |
+
msgid "SEO"
|
|
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: plugin/class.seo-ultimate.php:935
|
33 |
+
msgid ""
|
34 |
+
"It looks like you made changes to the settings of this SEO Ultimate module. "
|
35 |
+
"If you leave before saving, those changes will be lost."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: plugin/class.seo-ultimate.php:1029
|
39 |
+
msgid "SEO Settings Help"
|
|
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: plugin/class.seo-ultimate.php:1031
|
43 |
+
msgid "The SEO Settings box lets you customize these settings:"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: plugin/class.seo-ultimate.php:1033
|
47 |
+
msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: plugin/class.seo-ultimate.php:1088
|
51 |
+
msgid ""
|
52 |
+
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
|
53 |
+
"1$s to avoid plugin conflicts."
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: plugin/class.seo-ultimate.php:1129
|
57 |
+
msgid "new feature"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: plugin/class.seo-ultimate.php:1129
|
61 |
+
msgid "new features"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: plugin/class.seo-ultimate.php:1130
|
65 |
+
msgid "bugfix"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: plugin/class.seo-ultimate.php:1130
|
69 |
+
msgid "bugfixes"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: plugin/class.seo-ultimate.php:1131
|
73 |
+
msgid "improvement"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: plugin/class.seo-ultimate.php:1131
|
77 |
+
msgid "improvements"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: plugin/class.seo-ultimate.php:1132
|
81 |
+
msgid "security fix"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: plugin/class.seo-ultimate.php:1132
|
85 |
+
msgid "security fixes"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: plugin/class.seo-ultimate.php:1163
|
89 |
+
msgid "%d %s"
|
|
|
|
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: plugin/class.seo-ultimate.php:1169
|
93 |
+
msgid "Upgrade now to get %s. %s."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: plugin/class.seo-ultimate.php:1171
|
97 |
+
msgid "View changelog"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: plugin/class.seo-ultimate.php:1238 modules/settings/uninstall.php:18
|
101 |
+
msgid "Uninstall"
|
|
|
|
|
|
|
|
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: plugin/class.seo-ultimate.php:1258
|
105 |
+
msgid "Active Modules: "
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: plugin/class.seo-ultimate.php:1319
|
109 |
msgid ""
|
110 |
+
"<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
|
111 |
+
"search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
|
112 |
+
"target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
|
113 |
+
"to everyone."
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: plugin/class.seo-ultimate.php:1429
|
117 |
+
msgid "SEO Settings"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: plugin/class.su-installer.php:9
|
121 |
+
msgid "Package not available."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: plugin/class.su-installer.php:12
|
125 |
+
msgid "Removing the current version of the plugin…"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: plugin/class.su-installer.php:13
|
129 |
+
msgid "Could not remove the current version of the plugin."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: plugin/class.su-installer.php:17
|
133 |
+
msgid "Downloading old version from <span class=\"code\">%s</span>…"
|
|
|
|
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: plugin/class.su-installer.php:18
|
137 |
+
msgid "Unpacking the downgrade…"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: plugin/class.su-installer.php:19
|
141 |
+
msgid "Installing the downgrade…"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: plugin/class.su-installer.php:20
|
145 |
+
msgid "Plugin downgrade failed."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: plugin/class.su-installer.php:21
|
149 |
+
msgid "Plugin downgraded successfully."
|
|
|
|
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: plugin/class.su-installer.php:24
|
153 |
+
msgid "Downloading from <span class=\"code\">%s</span>…"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: plugin/class.su-installer.php:25
|
157 |
+
msgid "Unpacking the reinstall…"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: plugin/class.su-installer.php:26
|
161 |
+
msgid "Reinstalling the current version…"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: plugin/class.su-installer.php:27
|
165 |
+
msgid "Plugin reinstallation failed."
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: plugin/class.su-installer.php:28
|
169 |
+
msgid "Plugin reinstalled successfully."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: plugin/class.su-installer.php:32
|
173 |
+
msgid "Downloading upgrade from <span class=\"code\">%s</span>…"
|
174 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
|
176 |
+
#: plugin/class.su-installer.php:33
|
177 |
+
msgid "Unpacking the upgrade…"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: plugin/class.su-installer.php:34
|
181 |
+
msgid "Installing the upgrade…"
|
|
|
|
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: plugin/class.su-installer.php:35
|
185 |
+
msgid "Plugin upgrade failed."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: plugin/class.su-installer.php:36
|
189 |
+
msgid "Plugin upgraded successfully."
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
|
193 |
+
msgid "%s and %s"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
|
197 |
+
msgid ", "
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
|
201 |
+
msgid "%s, and %s"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: includes/jlwp/functions.php:60
|
205 |
+
msgid "Posts"
|
|
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: includes/jlwp/functions.php:60
|
209 |
+
msgid "Post"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: includes/jlwp/functions.php:61
|
213 |
+
msgid "Pages"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: includes/jlwp/functions.php:61
|
217 |
+
msgid "Page"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: includes/jlwp/functions.php:62
|
221 |
+
msgid "Attachments"
|
|
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: includes/jlwp/functions.php:62
|
225 |
+
msgid "Attachment"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: includes/jlwp/functions.php:79
|
229 |
+
msgctxt "post format"
|
230 |
+
msgid "Format"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: includes/jlwp/functions.php:80
|
234 |
+
msgid "Post Format Archives"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: includes/jlwp/functions.php:147
|
238 |
+
msgid "backup your database"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: modules/404s/fofs-log.php:16
|
242 |
+
msgid "404 Monitor Log"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: modules/404s/fofs-log.php:17
|
246 |
+
msgid "Log"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: modules/404s/fofs-log.php:116 modules/class.su-module.php:1197
|
250 |
+
msgid "Actions"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: modules/404s/fofs-log.php:117
|
254 |
+
msgid "Hits"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: modules/404s/fofs-log.php:118
|
258 |
+
msgid "URL with 404 Error"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: modules/404s/fofs-log.php:119
|
262 |
+
msgid "Date of Most Recent Hit"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: modules/404s/fofs-log.php:120
|
266 |
+
msgid "Referers"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: modules/404s/fofs-log.php:121 modules/404s/fofs-log.php:224
|
270 |
+
msgid "User Agents"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: modules/404s/fofs-log.php:137
|
274 |
+
msgid ""
|
275 |
+
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
276 |
+
"Settings tab."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: modules/404s/fofs-log.php:144
|
280 |
+
msgid "The log entry was successfully deleted."
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: modules/404s/fofs-log.php:146
|
284 |
+
msgid "This log entry has already been deleted."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: modules/404s/fofs-log.php:155
|
288 |
+
msgid "The log was successfully cleared."
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: modules/404s/fofs-log.php:159
|
292 |
+
msgid "No 404 errors in the log."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: modules/404s/fofs-log.php:183
|
296 |
+
msgid "Open URL in new window (will not be logged)"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: modules/404s/fofs-log.php:184
|
300 |
+
msgid "Query Google for cached version of URL (opens in new window)"
|
|
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: modules/404s/fofs-log.php:185
|
304 |
+
msgid "Remove this URL from the log"
|
|
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: modules/404s/fofs-log.php:188
|
308 |
+
msgid "%s at %s"
|
|
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: modules/404s/fofs-log.php:192
|
312 |
+
msgid "View list of referring URLs"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: modules/404s/fofs-log.php:193
|
316 |
+
msgid "View list of user agents"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: modules/404s/fofs-log.php:203
|
320 |
+
msgid "Referring URLs"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: modules/404s/fofs-log.php:204 modules/404s/fofs-log.php:225
|
324 |
+
msgid "Hide list"
|
|
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: modules/404s/fofs-log.php:255
|
328 |
+
msgid "Are you sure you want to delete all 404 log entries?"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: modules/404s/fofs-log.php:257
|
332 |
+
msgid "Clear Log"
|
|
|
|
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: modules/404s/fofs.php:11
|
336 |
+
msgid "404 Monitor"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: modules/404s/fofs-settings.php:16
|
340 |
+
msgid "404 Monitor Settings"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: modules/404s/fofs-settings.php:17 modules/titles/titles.php:24
|
344 |
+
msgid "Settings"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: modules/404s/fofs-settings.php:37
|
348 |
+
msgid "Continue monitoring for new 404 errors"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: modules/404s/fofs-settings.php:37
|
352 |
+
msgid "Monitoring Settings"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: modules/404s/fofs-settings.php:39
|
356 |
+
msgid "Only log these types of 404 errors:"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: modules/404s/fofs-settings.php:40
|
360 |
+
msgid "404s generated by search engine spiders"
|
|
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: modules/404s/fofs-settings.php:41
|
364 |
+
msgid "404s with referring URLs"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: modules/404s/fofs-settings.php:42
|
368 |
+
msgid "Log Restrictions"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: modules/404s/fofs-settings.php:43
|
372 |
+
msgid "Maximum Log Entries"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: modules/404s/fofs-settings.php:44
|
376 |
+
msgid "URLs to Ignore"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: modules/404s/fofs-settings.php:44
|
380 |
+
msgid "(Use * as wildcard)"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: modules/slugs/slugs.php:12
|
384 |
+
msgid "Slug Optimizer"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: modules/slugs/slugs.php:16
|
388 |
+
msgid "Words to Remove"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: modules/settings/settings-data.php:16
|
392 |
+
msgid "Settings Data Manager"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: modules/settings/settings-data.php:17
|
396 |
+
msgid "Manage Settings Data"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: modules/settings/settings-data.php:21
|
400 |
+
msgid "Import"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: modules/settings/settings-data.php:22
|
404 |
+
msgid "Export"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: modules/settings/settings-data.php:23 modules/class.su-module.php:1944
|
408 |
+
msgid "Reset"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: modules/settings/settings-data.php:82
|
412 |
+
msgid "Settings successfully imported."
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: modules/settings/settings-data.php:84
|
416 |
+
msgid ""
|
417 |
+
"The uploaded file is not in the proper format. Settings could not be "
|
418 |
+
"imported."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: modules/settings/settings-data.php:86
|
422 |
+
msgid "The settings file could not be uploaded successfully."
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: modules/settings/settings-data.php:89
|
426 |
+
msgid ""
|
427 |
+
"Settings could not be imported because no settings file was selected. Please "
|
428 |
+
"click the “Browse” button and select a file to import."
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: modules/settings/settings-data.php:134
|
432 |
+
msgid ""
|
433 |
+
"The uploaded file is not in the proper format. Links could not be imported."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: modules/settings/settings-data.php:173
|
437 |
+
msgid "Links successfully imported."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: modules/settings/settings-data.php:176
|
441 |
+
msgid "The CSV file could not be uploaded successfully."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: modules/settings/settings-data.php:179
|
445 |
+
msgid ""
|
446 |
+
"Links could not be imported because no CSV file was selected. Please click "
|
447 |
+
"the “Browse” button and select a file to import."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: modules/settings/settings-data.php:189
|
451 |
+
msgid "Import SEO Ultimate Settings File"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: modules/settings/settings-data.php:191
|
455 |
+
msgid ""
|
456 |
+
"You can use this form to upload and import an SEO Ultimate settings file "
|
457 |
+
"stored on your computer. (These files can be created using the Export tool.) "
|
458 |
+
"Note that importing a file will overwrite your existing settings with those "
|
459 |
+
"in the file."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: modules/settings/settings-data.php:195
|
463 |
+
msgid ""
|
464 |
+
"Are you sure you want to import this settings file? This will overwrite your "
|
465 |
+
"current settings and cannot be undone."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: modules/settings/settings-data.php:196
|
469 |
+
msgid "Import Settings File"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: modules/settings/settings-data.php:202
|
473 |
+
msgid "Import Deeplink Juggernaut CSV File"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: modules/settings/settings-data.php:204
|
477 |
+
msgid ""
|
478 |
+
"You can use this form to upload and import a Deeplink Juggernaut CSV file "
|
479 |
+
"stored on your computer. (These files can be created using the Export tool.) "
|
480 |
+
"Note that importing a file will overwrite your existing links with those in "
|
481 |
+
"the file."
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: modules/settings/settings-data.php:208
|
485 |
msgid ""
|
486 |
+
"Are you sure you want to import this CSV file? This will overwrite your "
|
487 |
+
"current Deeplink Juggernaut links and cannot be undone."
|
|
|
|
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: modules/settings/settings-data.php:209
|
491 |
+
msgid "Import CSV File"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: modules/settings/settings-data.php:224
|
495 |
+
msgid "Import from Other Plugins"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: modules/settings/settings-data.php:226
|
499 |
msgid ""
|
500 |
+
"You can import settings and data from these plugins. Clicking a plugin’"
|
501 |
+
"s name will take you to the importer page, where you can customize "
|
502 |
+
"parameters and start the import."
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: modules/settings/settings-data.php:246
|
506 |
+
msgid "Export SEO Ultimate Settings File"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: modules/settings/settings-data.php:248
|
510 |
+
msgid ""
|
511 |
+
"You can use this export tool to download an SEO Ultimate settings file to "
|
512 |
+
"your computer."
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: modules/settings/settings-data.php:250
|
516 |
+
msgid ""
|
517 |
+
"A settings file includes the data of every checkbox and textbox of every "
|
518 |
+
"installed module. It does NOT include site-specific data like logged 404s or "
|
519 |
+
"post/page title/meta data (this data would be included in a standard "
|
520 |
+
"database backup, however)."
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: modules/settings/settings-data.php:253
|
524 |
+
msgid "Download Settings File"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: modules/settings/settings-data.php:258
|
528 |
+
msgid "Export Deeplink Juggernaut CSV File"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: modules/settings/settings-data.php:260
|
532 |
msgid ""
|
533 |
+
"You can use this export tool to download a CSV file (comma-separated values "
|
534 |
+
"file) that contains your Deeplink Juggernaut links. Once you download this "
|
535 |
+
"file to your computer, you can edit it using your favorite spreadsheet "
|
536 |
+
"program. When you’re done editing, you can re-upload the file using "
|
537 |
+
"the Import tool."
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: modules/settings/settings-data.php:263
|
541 |
+
msgid "Download CSV File"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: modules/settings/settings-data.php:270
|
545 |
+
msgid "All settings have been erased and defaults have been restored."
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: modules/settings/settings-data.php:272
|
549 |
+
msgid ""
|
550 |
+
"You can erase all your SEO Ultimate settings and restore them to “"
|
551 |
+
"factory defaults” by clicking the button below."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: modules/settings/settings-data.php:275
|
555 |
msgid ""
|
556 |
+
"Are you sure you want to erase all module settings? This cannot be undone."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: modules/settings/settings-data.php:276
|
560 |
+
msgid "Restore Default Settings"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: modules/settings/settings.php:12
|
564 |
+
msgid "Plugin Settings"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: modules/settings/settings.php:13
|
568 |
+
msgid "SEO Ultimate Plugin Settings"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: modules/settings/install.php:18
|
572 |
+
msgid "Upgrade/Downgrade/Reinstall"
|
|
|
|
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: modules/settings/install.php:19
|
576 |
+
msgid "Installer"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: modules/settings/install.php:23 modules/settings/install.php:48
|
580 |
+
msgid "Upgrade"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: modules/settings/install.php:24 modules/settings/install.php:71
|
584 |
+
msgid "Downgrade"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: modules/settings/install.php:25 modules/settings/install.php:86
|
588 |
+
msgid "Reinstall"
|
|
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: modules/settings/install.php:42
|
592 |
+
msgid ""
|
593 |
+
"From the list below, select the version to which you would like to upgrade. "
|
594 |
+
"Then click the “Upgrade” button at the bottom of the screen."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: modules/settings/install.php:51
|
598 |
+
msgid "You are already running the latest version."
|
|
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: modules/settings/install.php:53
|
602 |
+
msgid ""
|
603 |
+
"There was an error retrieving the list of available versions. Please try "
|
604 |
+
"again later. You can also upgrade to the latest version of SEO Ultimate "
|
605 |
+
"using the WordPress plugin upgrader."
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: modules/settings/install.php:62
|
609 |
+
msgid ""
|
610 |
+
"Downgrading is provided as a convenience only and is not officially "
|
611 |
+
"supported. Although unlikely, you may lose data in the downgrading process. "
|
612 |
+
"It is your responsibility to backup your database before proceeding."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: modules/settings/install.php:65
|
616 |
+
msgid ""
|
617 |
+
"From the list below, select the version to which you would like to "
|
618 |
+
"downgrade. Then click the “Downgrade” button at the bottom of "
|
619 |
+
"the screen."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: modules/settings/install.php:74
|
623 |
+
msgid ""
|
624 |
+
"Downgrading to versions earlier than %s is not supported because doing so "
|
625 |
+
"will result in data loss."
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: modules/settings/install.php:76
|
629 |
+
msgid ""
|
630 |
+
"There was an error retrieving the list of available versions. Please try "
|
631 |
+
"again later."
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: modules/settings/install.php:81
|
635 |
+
msgid ""
|
636 |
+
"To download and install a fresh copy of the SEO Ultimate version you are "
|
637 |
+
"currently using, click the “Reinstall” button below."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: modules/settings/install.php:108
|
641 |
+
msgid "Your Current Version"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: modules/settings/install.php:110
|
645 |
+
msgid "Latest Version"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: modules/settings/install.php:130
|
649 |
+
msgid ""
|
650 |
+
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
651 |
+
"blog."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: modules/settings/install.php:140
|
655 |
+
msgid "Downgrade to SEO Ultimate %s"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: modules/settings/install.php:143
|
659 |
+
msgid "Reinstall SEO Ultimate %s"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: modules/settings/install.php:146
|
663 |
+
msgid "Upgrade to SEO Ultimate %s"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: modules/settings/global-settings.php:18
|
667 |
+
msgid "Global Settings"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: modules/settings/global-settings.php:40
|
671 |
+
msgid "Enable nofollow’d attribution link"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: modules/settings/global-settings.php:41
|
675 |
+
msgid "Enable attribution link CSS styling"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: modules/settings/global-settings.php:42
|
679 |
+
msgid "Notify me about unnecessary active plugins"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: modules/settings/global-settings.php:43
|
683 |
+
msgid "Insert comments around HTML code insertions"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: modules/settings/uninstall.php:17
|
687 |
+
msgid "Uninstaller"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: modules/settings/uninstall.php:27
|
691 |
+
msgid ""
|
692 |
+
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
693 |
+
"files."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: modules/settings/uninstall.php:30
|
697 |
+
msgid ""
|
698 |
+
"Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
|
699 |
+
"your SEO Ultimate settings and cannot be undone."
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: modules/settings/uninstall.php:31
|
703 |
+
msgid "Uninstall Now"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: modules/settings/uninstall.php:35 modules/settings/uninstall.php:42
|
707 |
+
msgid "Uninstall SEO Ultimate"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: modules/settings/uninstall.php:46
|
711 |
+
msgid "Deleted settings."
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: modules/settings/uninstall.php:53
|
715 |
+
msgid "An error occurred while deleting files."
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: modules/settings/uninstall.php:55
|
719 |
+
msgid "Deleted files."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: modules/settings/uninstall.php:56
|
723 |
+
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: modules/modules/modules.php:12
|
727 |
+
msgid "Module Manager"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: modules/modules/modules.php:13
|
731 |
+
msgid "Modules"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: modules/modules/modules.php:41
|
735 |
+
msgid ""
|
736 |
+
"SEO Ultimate’s features are located in groups called “modules."
|
737 |
+
"” By default, most of these modules are listed in the “"
|
738 |
+
"SEO” menu on the left. Whenever you’re working with a module, "
|
739 |
+
"you can view documentation by clicking the tabs in the upper-right-hand "
|
740 |
+
"corner of your administration screen."
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: modules/modules/modules.php:43
|
744 |
+
msgid ""
|
745 |
+
"The Module Manager lets you disable or hide modules you don’t use. "
|
746 |
+
"You can also silence modules from displaying bubble alerts on the menu."
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: modules/modules/modules.php:47
|
750 |
+
msgid "Modules updated."
|
|
|
|
|
|
|
|
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: modules/modules/modules.php:52
|
754 |
+
msgid "Status"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: modules/modules/modules.php:53
|
758 |
+
msgid "Module"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: modules/modules/modules.php:66
|
762 |
+
msgid "Enabled"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: modules/modules/modules.php:67
|
766 |
+
msgid "Silenced"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: modules/modules/modules.php:68
|
770 |
+
msgid "Hidden"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: modules/modules/modules.php:69
|
774 |
+
msgid "Disabled"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: modules/more-links/more-links.php:12
|
778 |
+
msgid "More Link Customizer"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: modules/more-links/more-links.php:30
|
782 |
+
msgid "Default More Link Text"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: modules/more-links/more-links.php:51
|
786 |
+
msgid "More Link Text:"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: modules/import-aiosp/import-aiosp.php:12
|
790 |
+
msgid "Import from All in One SEO Pack"
|
|
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: modules/import-aiosp/import-aiosp.php:13
|
794 |
+
msgid "AIOSP Import"
|
|
|
|
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: modules/import-aiosp/import-aiosp.php:15
|
798 |
+
msgid "All in One SEO Pack"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
799 |
msgstr ""
|
800 |
|
801 |
#: modules/import-aiosp/import-aiosp.php:16
|
822 |
"first and run AIOSP’s upgrade process."
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: modules/link-nofollow/link-nofollow.php:12
|
826 |
+
msgid "Nofollow Manager"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: modules/link-nofollow/link-nofollow.php:53
|
830 |
+
msgid "Add the nofollow attribute to..."
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: modules/link-nofollow/link-nofollow.php:55
|
834 |
+
msgid "Adjacent post links"
|
|
|
|
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: modules/link-nofollow/link-nofollow.php:56
|
838 |
+
msgid "Category links (after posts)"
|
|
|
|
|
|
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: modules/link-nofollow/link-nofollow.php:57
|
842 |
+
msgid "Category links (in lists)"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: modules/link-nofollow/link-nofollow.php:58
|
846 |
+
msgid "Comment anchor links"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: modules/link-nofollow/link-nofollow.php:59
|
850 |
+
msgid "Comment feed links"
|
|
|
|
|
|
|
|
|
|
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: modules/link-nofollow/link-nofollow.php:60
|
854 |
+
msgid "Date-based archive links"
|
|
|
|
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: modules/link-nofollow/link-nofollow.php:61
|
858 |
+
msgid "Pagination navigation links (all)"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: modules/link-nofollow/link-nofollow.php:62
|
862 |
+
msgid "Pagination navigation links (on blog home only)"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: modules/link-nofollow/link-nofollow.php:63
|
866 |
+
msgid "“Read more” links"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: modules/link-nofollow/link-nofollow.php:64
|
870 |
+
msgid "Registration link"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: modules/link-nofollow/link-nofollow.php:65
|
874 |
+
msgid "Login link"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: modules/link-nofollow/link-nofollow.php:66
|
878 |
+
msgid "Tag links (after posts)"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: modules/link-nofollow/link-nofollow.php:67
|
882 |
+
msgid "Tag links (in lists and clouds)"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
886 |
+
msgid "When displaying page lists, nofollow links to this page"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
890 |
+
msgid "Nofollow:"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: modules/sharing-buttons/sharing-buttons.php:12
|
894 |
+
msgid "Sharing Facilitator"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: modules/sharing-buttons/sharing-buttons.php:25
|
898 |
+
msgid "Bookmark and Share"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: modules/sharing-buttons/sharing-buttons.php:39
|
902 |
+
msgid "Which provider would you like to use for your sharing buttons?"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: modules/sharing-buttons/sharing-buttons.php:41
|
906 |
+
msgid "None; disable sharing buttons"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: modules/sharing-buttons/sharing-buttons.php:42
|
910 |
+
msgid "Use the ShareThis button"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: modules/sharing-buttons/sharing-buttons.php:43
|
914 |
+
msgid "Use the AddThis button"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: modules/autolinks/content-autolinks.php:16
|
918 |
+
msgid "Content Deeplink Juggernaut"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: modules/autolinks/content-autolinks.php:17
|
922 |
+
msgid "Content Links"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: modules/autolinks/content-autolinks.php:100
|
926 |
+
msgid ""
|
927 |
+
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
928 |
+
"a certain word or phrase in your post/page content to a URL you specify."
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: modules/autolinks/content-autolinks.php:136
|
932 |
+
msgid "Edit Existing Links"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: modules/autolinks/content-autolinks.php:140
|
936 |
+
msgid "Add a New Link"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: modules/autolinks/content-autolinks.php:148
|
940 |
+
msgid "Anchor Text"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: modules/autolinks/content-autolinks.php:149
|
944 |
+
msgid "Destination Type"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: modules/autolinks/content-autolinks.php:150
|
948 |
+
msgid "Destination"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: modules/autolinks/content-autolinks.php:151
|
952 |
+
msgid "Title Attribute"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: modules/autolinks/content-autolinks.php:152
|
956 |
+
msgid "Options"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: modules/autolinks/content-autolinks.php:154
|
960 |
+
msgid "Delete"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: modules/autolinks/content-autolinks.php:196
|
964 |
+
msgid "Custom"
|
|
|
|
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: modules/autolinks/content-autolinks.php:196
|
968 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:49
|
969 |
+
msgid "URL"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: modules/autolinks/content-autolinks.php:197
|
973 |
+
msgid "Content Items"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: modules/autolinks/content-autolinks.php:204 modules/noindex/noindex.php:54
|
977 |
+
#: modules/noindex/noindex.php:78
|
978 |
+
msgid "Nofollow"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: modules/autolinks/content-autolinks.php:205
|
982 |
+
msgid "New window"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: modules/autolinks/content-autolinks.php:269
|
986 |
+
msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: modules/autolinks/content-autolinks.php:270
|
990 |
+
msgid "Don’t add autolinks to anchor texts found in this post."
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: modules/autolinks/content-autolinks.php:270
|
994 |
+
msgid "Autolink Exclusion:"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: modules/autolinks/content-autolinks.php:275
|
998 |
+
msgid ""
|
999 |
+
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
1000 |
+
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
1001 |
+
"other posts and link it to this post. For example, if the post you’re "
|
1002 |
+
"editing is about “blue widgets,” you could type “blue "
|
1003 |
+
"widgets” into the “Incoming Autolink Anchors” box and "
|
1004 |
+
"Deeplink Juggernaut will automatically build internal links to this post "
|
1005 |
+
"with that anchor text (assuming other posts contain that text)."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: modules/autolinks/autolinks.php:11
|
1009 |
+
msgid "Deeplink Juggernaut"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: modules/autolinks/content-autolinks-settings.php:16
|
1013 |
+
msgid "Content Deeplink Juggernaut Settings"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: modules/autolinks/content-autolinks-settings.php:17
|
1017 |
+
msgid "Content Link Settings"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: modules/autolinks/content-autolinks-settings.php:21
|
1021 |
+
msgid "Allow posts to link to themselves."
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: modules/autolinks/content-autolinks-settings.php:22
|
1025 |
+
msgid "Don’t add any more than %d autolinks per post/page/etc."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: modules/autolinks/content-autolinks-settings.php:23
|
1029 |
+
msgid ""
|
1030 |
+
"Don’t link the same anchor text any more than %d times per post/page/"
|
1031 |
+
"etc."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: modules/noindex/noindex.php:12
|
1035 |
+
msgid "Noindex Manager"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
|
1039 |
+
#: modules/noindex/noindex.php:67
|
1040 |
+
msgid "Noindex"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: modules/noindex/noindex.php:43 modules/meta/meta-keywords.php:32
|
1044 |
+
msgid "Default Values"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
|
1048 |
+
msgid "Use default"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: modules/noindex/noindex.php:63
|
1052 |
+
msgid "noindex"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: modules/noindex/noindex.php:64
|
1056 |
+
msgid "index"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: modules/noindex/noindex.php:74
|
1060 |
+
msgid "nofollow"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: modules/noindex/noindex.php:75
|
1064 |
+
msgid "follow"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: modules/noindex/noindex.php:89
|
1068 |
+
msgid ""
|
1069 |
+
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
1070 |
+
"block indexing of the entire site, regardless of which options are set below."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: modules/noindex/noindex.php:92
|
1074 |
+
msgid "Prevent indexing of..."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: modules/noindex/noindex.php:93
|
1078 |
+
msgid "Administration back-end pages"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: modules/noindex/noindex.php:94
|
1082 |
+
msgid "Author archives"
|
|
|
|
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: modules/noindex/noindex.php:95
|
1086 |
+
msgid "Blog search pages"
|
|
|
|
|
|
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: modules/noindex/noindex.php:96
|
1090 |
+
msgid "Category archives"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: modules/noindex/noindex.php:97
|
1094 |
+
msgid "Comment feeds"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: modules/noindex/noindex.php:98
|
1098 |
+
msgid "Comment subpages"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: modules/noindex/noindex.php:99
|
1102 |
+
msgid "Date-based archives"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: modules/noindex/noindex.php:100
|
1106 |
+
msgid "Subpages of the homepage"
|
|
|
|
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: modules/noindex/noindex.php:101
|
1110 |
+
msgid "Tag archives"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: modules/noindex/noindex.php:102
|
1114 |
+
msgid "User login/registration pages"
|
1115 |
+
msgstr ""
|
1116 |
+
|
1117 |
+
#: modules/noindex/noindex.php:165
|
1118 |
+
msgid "Noindex: Tell search engines not to index this webpage."
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: modules/noindex/noindex.php:166
|
1122 |
+
msgid "Nofollow: Tell search engines not to spider links on this webpage."
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: modules/noindex/noindex.php:167
|
1126 |
+
msgid "Meta Robots Tag:"
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: modules/class.su-module.php:368
|
1130 |
msgid ""
|
1131 |
+
"(Note: This translated documentation was designed for an older version of "
|
1132 |
+
"SEO Ultimate and may be outdated.)"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: modules/class.su-module.php:641
|
1136 |
msgid ""
|
1137 |
+
"All the modules on this page have been disabled. You can re-enable them "
|
1138 |
+
"using the <a href=\"%s\">Module Manager</a>."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: modules/class.su-module.php:993
|
1142 |
+
msgctxt "Dropdown Title"
|
1143 |
+
msgid "%s — %s"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: modules/class.su-module.php:1021
|
1147 |
+
msgid "%1$s | %2$s %3$s by %4$s"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: modules/class.su-module.php:1092
|
1151 |
+
msgid "Your site currently doesn’t have any public items of this type."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: modules/class.su-module.php:1176
|
1155 |
+
msgid "«"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: modules/class.su-module.php:1177
|
1159 |
+
msgid "»"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: modules/class.su-module.php:1184
|
1163 |
+
msgid "Displaying %s–%s of %s"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: modules/class.su-module.php:1198
|
1167 |
+
msgid "ID"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: modules/class.su-module.php:1232
|
1171 |
+
msgid "View"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: modules/class.su-module.php:1234
|
1175 |
+
msgid "Edit"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: modules/class.su-module.php:1397
|
1179 |
+
msgid "Settings updated."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: modules/class.su-module.php:1418
|
1183 |
+
msgid "Save Changes"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: modules/class.su-module.php:1928
|
1187 |
+
msgid ""
|
1188 |
+
"Are you sure you want to replace the textbox contents with this default "
|
1189 |
+
"value?"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: modules/meta/webmaster-verify.php:12
|
1193 |
+
msgid "Webmaster Verification Assistant"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: modules/meta/webmaster-verify.php:13
|
1197 |
+
msgid "W.M. Verification"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: modules/meta/webmaster-verify.php:47
|
1201 |
+
msgid "Google Webmaster Tools"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: modules/meta/webmaster-verify.php:48
|
1205 |
+
msgid "Yahoo! Site Explorer"
|
|
|
|
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: modules/meta/webmaster-verify.php:49
|
1209 |
+
msgid "Bing Webmaster Center"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: modules/meta/meta-robots.php:12
|
1213 |
+
msgid "Meta Robot Tags Editor"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: modules/meta/meta-robots.php:13
|
1217 |
+
msgid "Meta Robot Tags"
|
1218 |
+
msgstr ""
|
1219 |
+
|
1220 |
+
#: modules/meta/meta-robots.php:21
|
1221 |
+
msgid "Global"
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: modules/meta/meta-robots.php:26
|
1225 |
+
msgid "Spider Instructions"
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#: modules/meta/meta-robots.php:28
|
1229 |
msgid ""
|
1230 |
+
"Don’t use this site’s Open Directory description in search results."
|
|
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: modules/meta/meta-robots.php:29
|
1234 |
msgid ""
|
1235 |
+
"Don’t use this site’s Yahoo! Directory description in search "
|
1236 |
+
"results."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: modules/meta/meta-robots.php:30
|
1240 |
+
msgid "Don’t cache or archive this site."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: modules/meta/meta-descriptions.php:12
|
1244 |
+
msgid "Meta Description Editor"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: modules/meta/meta-descriptions.php:13
|
1248 |
+
msgid "Meta Descriptions"
|
|
|
|
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: modules/meta/meta-descriptions.php:24 modules/titles/titles.php:23
|
1252 |
+
msgid "Default Formats"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:33
|
1256 |
+
msgid "Blog Homepage"
|
|
|
|
|
|
|
|
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: modules/meta/meta-descriptions.php:31
|
1260 |
+
msgid "Meta Description"
|
|
|
|
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: modules/meta/meta-descriptions.php:46
|
1264 |
+
msgid "Post Description Format"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: modules/meta/meta-descriptions.php:53
|
1268 |
+
msgid "Blog Homepage Meta Description"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: modules/meta/meta-descriptions.php:55
|
1272 |
+
msgid "Use this blog’s tagline as the default homepage description."
|
|
|
|
|
|
|
|
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: modules/meta/meta-descriptions.php:56
|
1276 |
+
msgid "Default Value"
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: modules/meta/meta-descriptions.php:109
|
1280 |
+
msgid "Meta Description:"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: modules/meta/meta-descriptions.php:112
|
1284 |
+
msgid "You’ve entered %s characters. Most search engines use up to 160."
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: modules/meta/meta-descriptions.php:120
|
1288 |
msgid ""
|
1289 |
+
"<strong>Description</strong> — The value of the meta description tag. "
|
1290 |
+
"The description will often appear underneath the title in search engine "
|
1291 |
+
"results. Writing an accurate, attention-grabbing description for every post "
|
1292 |
+
"is important to ensuring a good search results clickthrough rate."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: modules/meta/meta-keywords.php:12
|
1296 |
+
msgid "Meta Keywords Editor"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: modules/meta/meta-keywords.php:13 modules/meta/meta-keywords.php:39
|
1300 |
+
msgid "Meta Keywords"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: modules/meta/meta-keywords.php:55
|
1304 |
+
msgid "The %d most commonly-used words"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: modules/meta/meta-keywords.php:68
|
1308 |
+
msgid "Sitewide Keywords"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: modules/meta/meta-keywords.php:68
|
1312 |
+
msgid "(Separate with commas)"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: modules/meta/meta-keywords.php:75
|
1316 |
+
msgid "Blog Homepage Meta Keywords"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: modules/meta/meta-keywords.php:152
|
1320 |
+
msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: modules/meta/meta-keywords.php:157
|
1324 |
msgid ""
|
1325 |
+
"<strong>Keywords</strong> — The value of the meta keywords tag. The "
|
1326 |
+
"keywords list gives search engines a hint as to what this post/page is "
|
1327 |
+
"about. Be sure to separate keywords with commas, like so: <samp>one,two,"
|
1328 |
+
"three</samp>."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: modules/class.su-importmodule.php:49
|
1332 |
+
msgid "Import Post Fields"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: modules/class.su-importmodule.php:50
|
1336 |
msgid ""
|
1337 |
+
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
1338 |
+
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
1339 |
+
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
1340 |
+
"Ultimate."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: modules/class.su-importmodule.php:53
|
1344 |
+
msgid "Conflict Resolution Mode"
|
1345 |
+
msgstr ""
|
1346 |
+
|
1347 |
+
#: modules/class.su-importmodule.php:54
|
1348 |
msgid ""
|
1349 |
+
"What should the import tool do if it tries to move over a post’s %s "
|
1350 |
+
"data, but different data already exists in the corresponding SEO Ultimate "
|
1351 |
+
"fields?"
|
|
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: modules/class.su-importmodule.php:56
|
1355 |
+
msgid "Skip that post and leave all data as-is (default)."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: modules/class.su-importmodule.php:57
|
1359 |
+
msgid "Delete the SEO Ultimate data and replace it with the %s data."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: modules/class.su-importmodule.php:58
|
1363 |
+
msgid "Keep the SEO Ultimate data and delete the %s data."
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: modules/class.su-importmodule.php:61
|
1367 |
+
msgid "Deletion Preference"
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: modules/class.su-importmodule.php:62
|
1371 |
msgid ""
|
1372 |
+
"When the migration tool successfully copies a post’s %1$s data over to "
|
1373 |
+
"SEO Ultimate, what should it do with the old %1$s data?"
|
|
|
|
|
|
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: modules/class.su-importmodule.php:64
|
1377 |
+
msgid "Delete the %s data."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: modules/class.su-importmodule.php:65
|
1381 |
+
msgid "Leave behind the duplicate %s data (default)."
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: modules/class.su-importmodule.php:72
|
1385 |
+
msgid "Import Now"
|
|
|
|
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: modules/class.su-importmodule.php:75
|
1389 |
msgid ""
|
1390 |
+
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
1391 |
+
"target=\"_blank\">backup your database</a> before proceeding!"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: modules/class.su-importmodule.php:84
|
1395 |
+
msgid "Import complete."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: modules/class.su-importmodule.php:90
|
1399 |
+
msgid "Return to import page"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: modules/class.su-importmodule.php:93
|
1403 |
+
msgid "Return to settings page"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: modules/class.su-importmodule.php:96
|
1407 |
+
msgid "Return to SEO page"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: modules/class.su-importmodule.php:116
|
1411 |
+
msgid "Deactivated %s."
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: modules/class.su-importmodule.php:174
|
1415 |
+
msgid "Imported a total of %d fields for one post/page/revision."
|
1416 |
+
msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
|
1417 |
+
msgstr[0] ""
|
1418 |
+
msgstr[1] ""
|
1419 |
+
|
1420 |
+
#: modules/class.su-importmodule.php:180
|
1421 |
+
msgid "Skipped one post with disabled %2$s data."
|
1422 |
+
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
1423 |
+
msgstr[0] ""
|
1424 |
+
msgstr[1] ""
|
1425 |
+
|
1426 |
+
#: modules/class.su-importmodule.php:186
|
1427 |
+
msgid ""
|
1428 |
+
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
1429 |
+
"settings you chose."
|
1430 |
+
msgid_plural ""
|
1431 |
+
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
1432 |
+
"settings you chose."
|
1433 |
+
msgstr[0] ""
|
1434 |
+
msgstr[1] ""
|
1435 |
+
|
1436 |
+
#: modules/class.su-importmodule.php:192
|
1437 |
+
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
1438 |
+
msgid_plural ""
|
1439 |
+
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
1440 |
+
msgstr[0] ""
|
1441 |
+
msgstr[1] ""
|
1442 |
+
|
1443 |
+
#: modules/sds-blog/sds-blog.php:12
|
1444 |
+
msgid "Whitepapers"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: modules/sds-blog/sds-blog.php:13
|
1448 |
+
msgid "SEO Design Solutions Whitepapers"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 5.8) #-#-#-#-#
|
1452 |
+
#. Author of the plugin/theme
|
1453 |
+
#: modules/sds-blog/sds-blog.php:49
|
1454 |
+
msgid "SEO Design Solutions"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: modules/sds-blog/sds-blog.php:50
|
1458 |
+
msgid ""
|
1459 |
+
"The search engine optimization articles below are loaded from the website of "
|
1460 |
+
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
1461 |
+
"an article’s title to read it."
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:20
|
1465 |
+
msgid "Link Mask Generator"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:27
|
1469 |
+
msgid "Alias Directory"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:46
|
1473 |
+
msgid "Link Masks"
|
|
|
|
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:49
|
1477 |
+
msgid "Mask URL"
|
|
|
|
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:69
|
1481 |
+
msgid ""
|
1482 |
+
"You can stop search engines from following a link by typing in a mask for "
|
1483 |
+
"its URL."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:132
|
1487 |
+
msgid "Added by Link Alias Generator (LAG) module"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:143
|
1491 |
+
msgid "End LAG"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: modules/linkbox/linkbox.php:12
|
1495 |
+
msgid "Linkbox Inserter"
|
1496 |
+
msgstr ""
|
1497 |
+
|
1498 |
+
#: modules/linkbox/linkbox.php:18
|
1499 |
+
msgid "Link to this post!"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: modules/linkbox/linkbox.php:45
|
1503 |
+
msgid "At the end of posts"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: modules/linkbox/linkbox.php:46
|
1507 |
+
msgid "At the end of pages"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: modules/linkbox/linkbox.php:47
|
1511 |
+
msgid "When called by the su_linkbox hook"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: modules/linkbox/linkbox.php:48
|
1515 |
+
msgid "Display linkboxes..."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: modules/linkbox/linkbox.php:49
|
1519 |
+
msgid "Linkbox HTML"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: modules/competition-queries/competition-queries.php:12
|
1523 |
+
msgid "Competition Researcher"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: modules/competition-queries/competition-queries.php:13
|
1527 |
+
msgid "Comp. Researcher"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: modules/competition-queries/competition-queries.php:17
|
1531 |
msgid ""
|
1532 |
+
"The Competition Researcher provides you with easy access to various search "
|
1533 |
+
"engine tools which you can use to research multiple search queries or URLs."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: modules/competition-queries/competition-queries.php:21
|
1537 |
+
msgid "Step 1: Choose Your Research Tool"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: modules/competition-queries/competition-queries.php:25
|
1541 |
+
msgid "Keywords"
|
|
|
|
|
|
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: modules/competition-queries/competition-queries.php:25
|
1545 |
+
msgid "Normal Search"
|
|
|
|
|
|
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: modules/competition-queries/competition-queries.php:25
|
1549 |
+
msgid "Find out how many pages contain the words in each query"
|
|
|
|
|
|
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: modules/competition-queries/competition-queries.php:26
|
1553 |
+
msgid "Phrase Match"
|
|
|
|
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: modules/competition-queries/competition-queries.php:26
|
1557 |
msgid ""
|
1558 |
+
"Find out how many “actual” pages are competing for each query"
|
|
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: modules/competition-queries/competition-queries.php:27
|
1562 |
+
msgid "Allinanchor"
|
|
|
|
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: modules/competition-queries/competition-queries.php:27
|
1566 |
+
msgid "Find out which sites have the most links for each query"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: modules/competition-queries/competition-queries.php:28
|
1570 |
+
msgid "Allintitle"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: modules/competition-queries/competition-queries.php:28
|
1574 |
msgid ""
|
1575 |
+
"Find out which sites have the highest relevance in the title for each query"
|
|
|
|
|
|
|
|
|
|
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: modules/competition-queries/competition-queries.php:29
|
1579 |
+
msgid "Allintext"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: modules/competition-queries/competition-queries.php:29
|
1583 |
+
msgid "Find out which sites have the most relevant content/text on their pages"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: modules/competition-queries/competition-queries.php:30
|
1587 |
+
msgid "Allinurl"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: modules/competition-queries/competition-queries.php:30
|
1591 |
+
msgid ""
|
1592 |
+
"Find out which sites have the most relevant naming conventions for each "
|
1593 |
+
"keyword"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: modules/competition-queries/competition-queries.php:32
|
1597 |
+
msgid "URLs"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: modules/competition-queries/competition-queries.php:32
|
1601 |
+
msgid "Site"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: modules/competition-queries/competition-queries.php:32
|
1605 |
+
msgid "Find out how many pages are indexed for each domain"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: modules/competition-queries/competition-queries.php:33
|
1609 |
+
#: modules/competition-queries/competition-queries.php:38
|
1610 |
+
msgid "Inbound Links"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: modules/competition-queries/competition-queries.php:33
|
1614 |
+
msgid "Find out how many sites link to the domains"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: modules/competition-queries/competition-queries.php:34
|
1618 |
+
#: modules/competition-queries/competition-queries.php:38
|
1619 |
+
msgid "Outbound Links"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: modules/competition-queries/competition-queries.php:34
|
1623 |
+
msgid "Find out how many sites the domains link to"
|
|
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: modules/competition-queries/competition-queries.php:57
|
1627 |
+
msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
|
|
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: modules/competition-queries/competition-queries.php:59
|
1631 |
+
msgid "(Type in one per line)"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: modules/competition-queries/competition-queries.php:61
|
1635 |
+
msgid "Step 3: Set Options and Submit"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: modules/competition-queries/competition-queries.php:63
|
1639 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:28
|
1640 |
+
msgid "Show 100 results per page"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: modules/competition-queries/competition-queries.php:65
|
1644 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:30
|
1645 |
+
msgid "Use Google’s minimal mode"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: modules/competition-queries/competition-queries.php:71
|
1649 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:33
|
1650 |
+
msgid "Submit"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: modules/titles/titles.php:12
|
1654 |
+
msgid "Title Tag Rewriter"
|
|
|
|
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: modules/titles/titles.php:30
|
1658 |
+
msgid "Title Tag"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: modules/titles/titles.php:43
|
1662 |
+
msgid ""
|
1663 |
+
"Convert lowercase category/tag names to title case when used in title tags."
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: modules/titles/titles.php:43
|
1667 |
+
msgid "Title Tag Variables"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: modules/titles/titles.php:51
|
1671 |
+
msgid "{blog}"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: modules/titles/titles.php:52
|
1675 |
+
msgid "{post} | {blog}"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: modules/titles/titles.php:53
|
1679 |
+
msgid "{page} | {blog}"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: modules/titles/titles.php:54
|
1683 |
+
msgid "{category} | {blog}"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: modules/titles/titles.php:55
|
1687 |
+
msgid "{tag} | {blog}"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: modules/titles/titles.php:56
|
1691 |
+
msgid "Archives for {month} {day}, {year} | {blog}"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: modules/titles/titles.php:57
|
1695 |
+
msgid "Archives for {month} {year} | {blog}"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: modules/titles/titles.php:58
|
1699 |
+
msgid "Archives for {year} | {blog}"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: modules/titles/titles.php:59
|
1703 |
+
msgid "Posts by {author} | {blog}"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: modules/titles/titles.php:60
|
1707 |
+
msgid "Search Results for {query} | {blog}"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: modules/titles/titles.php:61
|
1711 |
+
msgid "404 Not Found | {blog}"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: modules/titles/titles.php:62
|
1715 |
+
msgid "{title} - Page {num}"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: modules/titles/titles.php:70
|
1719 |
+
msgid "Blog Homepage Title"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: modules/titles/titles.php:71
|
1723 |
+
msgid "Post Title Format"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: modules/titles/titles.php:72
|
1727 |
+
msgid "Page Title Format"
|
|
|
|
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: modules/titles/titles.php:73
|
1731 |
+
msgid "Category Title Format"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: modules/titles/titles.php:74
|
1735 |
+
msgid "Tag Title Format"
|
1736 |
msgstr ""
|
1737 |
+
|
1738 |
+
#: modules/titles/titles.php:75
|
1739 |
+
msgid "Day Archive Title Format"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: modules/titles/titles.php:76
|
1743 |
+
msgid "Month Archive Title Format"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
+
#: modules/titles/titles.php:77
|
1747 |
+
msgid "Year Archive Title Format"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: modules/titles/titles.php:78
|
1751 |
+
msgid "Author Archive Title Format"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: modules/titles/titles.php:79
|
1755 |
+
msgid "Search Title Format"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: modules/titles/titles.php:80
|
1759 |
+
msgid "404 Title Format"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: modules/titles/titles.php:81
|
1763 |
+
msgid "Pagination Title Format"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
+
#: modules/titles/titles.php:307
|
1767 |
+
msgid "Title Tag:"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: modules/titles/titles.php:312
|
1771 |
+
msgid ""
|
1772 |
+
"<strong>Title Tag</strong> — The exact contents of the <title> "
|
1773 |
+
"tag. The title appears in visitors’ title bars and in search engine "
|
1774 |
+
"result titles. If this box is left blank, then the <a href=\"admin.php?"
|
1775 |
+
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: modules/user-code/user-code.php:12
|
1779 |
+
msgid "Code Inserter"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: modules/user-code/user-code.php:27
|
1783 |
+
msgid "Everywhere"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: modules/user-code/user-code.php:34
|
1787 |
+
msgid "<head> Tag"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: modules/user-code/user-code.php:35
|
1791 |
+
msgid "Before Item Content"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: modules/user-code/user-code.php:36
|
1795 |
+
msgid "After Item Content"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: modules/user-code/user-code.php:37
|
1799 |
+
msgid "Footer"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: modules/user-code/user-code.php:51
|
1803 |
+
msgid "Code Inserter module"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: modules/rich-snippets/rich-snippets.php:12
|
1807 |
+
msgid "Rich Snippet Creator"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: modules/rich-snippets/rich-snippets.php:17
|
1811 |
msgid ""
|
1812 |
+
"Reviews\n"
|
1813 |
+
"Review"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: modules/rich-snippets/rich-snippets.php:28
|
1817 |
+
msgid "Data Format"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: modules/rich-snippets/rich-snippets.php:29
|
1821 |
+
msgid "Categories/Tags That Indicate Reviews"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: modules/rich-snippets/rich-snippets.php:37
|
1825 |
+
msgid "Microformats (recommended)"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: modules/rich-snippets/rich-snippets.php:43
|
1829 |
+
msgid "HTML5 Microdata"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: modules/rich-snippets/rich-snippets.php:49
|
1833 |
+
msgid "RDFa"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: modules/rich-snippets/rich-snippets.php:62
|
1837 |
+
#: modules/rich-snippets/rich-snippets.php:218
|
1838 |
+
msgid "Review"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: modules/rich-snippets/rich-snippets.php:70
|
1842 |
+
msgid "Star Rating"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: modules/rich-snippets/rich-snippets.php:79
|
1846 |
+
msgid "Review Author"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: modules/rich-snippets/rich-snippets.php:85
|
1850 |
+
msgid "Date Reviewed"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: modules/rich-snippets/rich-snippets.php:217
|
1854 |
+
#: modules/rich-snippets/rich-snippets.php:223
|
1855 |
+
msgid "None"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: modules/rich-snippets/rich-snippets.php:219
|
1859 |
+
msgid "Rich Snippet Type:"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: modules/rich-snippets/rich-snippets.php:224
|
1863 |
+
msgid "0.5 stars"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: modules/rich-snippets/rich-snippets.php:225
|
1867 |
+
msgid "1 star"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: modules/rich-snippets/rich-snippets.php:226
|
1871 |
+
msgid "1.5 stars"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: modules/rich-snippets/rich-snippets.php:227
|
1875 |
+
msgid "2 stars"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: modules/rich-snippets/rich-snippets.php:228
|
1879 |
+
msgid "2.5 stars"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: modules/rich-snippets/rich-snippets.php:229
|
1883 |
+
msgid "3 stars"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: modules/rich-snippets/rich-snippets.php:230
|
1887 |
+
msgid "3.5 stars"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: modules/rich-snippets/rich-snippets.php:231
|
1891 |
+
msgid "4 stars"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: modules/rich-snippets/rich-snippets.php:232
|
1895 |
+
msgid "4.5 stars"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: modules/rich-snippets/rich-snippets.php:233
|
1899 |
+
msgid "5 stars"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: modules/rich-snippets/rich-snippets.php:234
|
1903 |
+
msgid "Star Rating for Reviewed Item:"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:12
|
1907 |
+
msgid "Internal Relevance Researcher"
|
|
|
|
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:13
|
1911 |
+
msgid "Int. Rel. Researcher"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:21
|
1915 |
+
msgid "Step 1: Enter Keywords"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:23
|
1919 |
+
msgid "(Type one keyword per line)"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:25
|
1923 |
+
msgid "Step 2: Set Options and Submit"
|
|
|
|
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:27
|
1927 |
+
msgid "Put keywords in quotes"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: modules/permalinks/permalinks.php:12
|
1931 |
+
msgid "Permalink Tweaker"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: modules/permalinks/permalinks.php:41
|
1935 |
+
msgid ""
|
1936 |
+
"To use the Permalinks Tweaker, you must disable default (query-string) "
|
1937 |
+
"permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: modules/permalinks/permalinks.php:59
|
1941 |
+
msgid "%1$s (turn <code>%2$s</code> into <code>%3$s</code>)"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: modules/permalinks/permalinks.php:66
|
1945 |
+
msgid "Remove the URL bases of..."
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: modules/files/files.php:14
|
1949 |
+
msgid "File Editor"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: modules/files/files.php:53
|
1953 |
+
msgid ""
|
1954 |
+
"A .htaccess file exists, but it’s not writable. You can edit it here "
|
1955 |
+
"once the file permissions are corrected."
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: modules/files/files.php:59
|
1959 |
+
msgid ""
|
1960 |
+
"WordPress won’t be able to display your robots.txt file because the "
|
1961 |
+
"default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
|
1962 |
+
"structure</a> is in use."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: modules/files/files.php:66
|
1966 |
+
msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: modules/files/files.php:70
|
1970 |
+
msgid "Enable this custom robots.txt file and disable the default file"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: modules/files/files.php:71
|
1974 |
+
msgid "Let other plugins add rules to my custom robots.txt file"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: modules/files/files.php:72
|
1978 |
+
msgid "robots.txt Settings"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: modules/files/files.php:75
|
1982 |
msgid ""
|
1983 |
+
"Please realize that incorrectly editing your robots.txt file could block "
|
1984 |
+
"search engines from your site."
|
|
|
|
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: modules/files/files.php:79
|
1988 |
+
msgid ".htaccess"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: modules/files/files.php:82
|
1992 |
+
msgid ""
|
1993 |
+
"Also, incorrectly editing your .htaccess file could disable your entire "
|
1994 |
+
"website. Edit with caution!"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: modules/files/files.php:134
|
1998 |
+
msgid ""
|
1999 |
+
"Please note that your privacy settings won’t have any effect on your "
|
2000 |
+
"robots.txt file, since you’re using <a href=\"%s\">a custom one</a>."
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: modules/misc/misc.php:11
|
2004 |
+
msgid "Miscellaneous"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: modules/misc/misc.php:14
|
2008 |
+
msgid ""
|
2009 |
+
"The Miscellaneous page contains modules that don’t have enough "
|
2010 |
+
"settings to warrant their own separate admin pages."
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: modules/canonical/canonical.php:12
|
2014 |
+
msgid "Canonicalizer"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: modules/canonical/canonical.php:36
|
2018 |
+
msgid "Generate <code><link rel="canonical" /></code> tags."
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: modules/canonical/canonical.php:37
|
2022 |
+
msgid "Redirect requests for nonexistent pagination."
|
2023 |
msgstr ""
|
2024 |
|
2025 |
#. Plugin URI of the plugin/theme
|