Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 7.2.1 |
Comparing to | |
See all releases |
Code changes from version 7.2 to 7.2.1
- includes/jlfunctions/str.php +5 -6
- includes/jlsuggest/jlsuggest.css +5 -0
- includes/jlsuggest/jlsuggest.js +2 -1
- modules/autolinks/autolinks.css +13 -4
- modules/autolinks/footer-autolinks.php +1 -1
- modules/class.su-module.php +77 -26
- modules/internal-link-aliases/internal-link-aliases.php +1 -1
- modules/modules.css +0 -1
- plugin/class.seo-ultimate.php +68 -60
- readme.txt +12 -3
- seo-ultimate.php +4 -4
- seo-ultimate.pot +1944 -1922
includes/jlfunctions/str.php
CHANGED
@@ -195,16 +195,15 @@ class sustr {
|
|
195 |
|
196 |
if (!$exclude_tags || !is_array($exclude_tags)) $exclude_tags = array('a', 'pre', 'code', 'kbd');
|
197 |
if (count($exclude_tags) > 1)
|
198 |
-
$exclude_tags =
|
199 |
else
|
200 |
$exclude_tags = array_shift($exclude_tags);
|
201 |
|
202 |
-
//Special thanks to the GPL-licensed "SEO Smart Links" plugin for the following find/replace regex
|
203 |
-
//http://www.prelovac.com/vladimir/wordpress-plugins/seo-smart-links
|
204 |
-
$reg = '/(?!(?:[^<\[]+[>\]]|[^>\]]+<\/' . $exclude_tags . '>))\b($name)\b/imsU';
|
205 |
-
|
206 |
$search = str_replace('/', '\/', $search);
|
207 |
-
|
|
|
|
|
|
|
208 |
|
209 |
return preg_replace($search_regex, $replace, $subject, $limit, $count);
|
210 |
}
|
195 |
|
196 |
if (!$exclude_tags || !is_array($exclude_tags)) $exclude_tags = array('a', 'pre', 'code', 'kbd');
|
197 |
if (count($exclude_tags) > 1)
|
198 |
+
$exclude_tags = sustr::preg_filter('a-z0-9|', implode('|', $exclude_tags));
|
199 |
else
|
200 |
$exclude_tags = array_shift($exclude_tags);
|
201 |
|
|
|
|
|
|
|
|
|
202 |
$search = str_replace('/', '\/', $search);
|
203 |
+
|
204 |
+
//Based off of regex from
|
205 |
+
//http://stackoverflow.com/questions/3013164/regex-to-replace-a-string-in-html-but-not-within-a-link-or-heading
|
206 |
+
$search_regex = "/\b($search)\b(?!(?:(?!<\/?(?:$exclude_tags).*?>).)*<\/(?:$exclude_tags).*?>)(?![^<>]*>)/imsU";
|
207 |
|
208 |
return preg_replace($search_regex, $replace, $subject, $limit, $count);
|
209 |
}
|
includes/jlsuggest/jlsuggest.css
CHANGED
@@ -18,6 +18,11 @@ input.jls_loading {
|
|
18 |
padding: 1px 0;
|
19 |
}
|
20 |
|
|
|
|
|
|
|
|
|
|
|
21 |
.jls_text_dest_text {
|
22 |
cursor: default;
|
23 |
padding: 0 5px;
|
18 |
padding: 1px 0;
|
19 |
}
|
20 |
|
21 |
+
.jlsuggest-disabled {
|
22 |
+
background-color: #FFE0E0;
|
23 |
+
border-color: #FFC1C1;
|
24 |
+
}
|
25 |
+
|
26 |
.jls_text_dest_text {
|
27 |
cursor: default;
|
28 |
padding: 0 5px;
|
includes/jlsuggest/jlsuggest.js
CHANGED
@@ -53,7 +53,7 @@ jQuery(document).ready( function($) {
|
|
53 |
$input.keydown(processKey); // onkeydown repeats arrow keys in IE/Safari
|
54 |
|
55 |
$('.' + options.textDestCloseClass).click(function() {
|
56 |
-
$(this).parent().siblings('.' + options.textDestTextClass + ':first').text('').parent().hide().siblings('input:first').val('').show().focus()
|
57 |
});
|
58 |
|
59 |
|
@@ -368,6 +368,7 @@ jQuery(document).ready( function($) {
|
|
368 |
options.noUrls = options.noUrls || false;
|
369 |
options.textDest = options.textDest || false;
|
370 |
options.textDestClass = options.textDestClass || 'jls_text_dest';
|
|
|
371 |
options.textDestTextClass = options.textDestTextClass || 'jls_text_dest_text';
|
372 |
options.textDestCloseClass = options.textDestCloseClass || 'jls_text_dest_close';
|
373 |
options.timeoutClass = options.timeoutClass || 'jls_loading';
|
53 |
$input.keydown(processKey); // onkeydown repeats arrow keys in IE/Safari
|
54 |
|
55 |
$('.' + options.textDestCloseClass).click(function() {
|
56 |
+
$(this).parent().siblings('.' + options.textDestTextClass + ':first').text('').parent().hide().removeClass(options.textDestDisabledClass).siblings('input:first').val('').show().focus()
|
57 |
});
|
58 |
|
59 |
|
368 |
options.noUrls = options.noUrls || false;
|
369 |
options.textDest = options.textDest || false;
|
370 |
options.textDestClass = options.textDestClass || 'jls_text_dest';
|
371 |
+
options.textDestDisabledClass = options.textDestDisabledClass || 'jlsuggest-disabled';
|
372 |
options.textDestTextClass = options.textDestTextClass || 'jls_text_dest_text';
|
373 |
options.textDestCloseClass = options.textDestCloseClass || 'jls_text_dest_close';
|
374 |
options.timeoutClass = options.timeoutClass || 'jls_loading';
|
modules/autolinks/autolinks.css
CHANGED
@@ -13,14 +13,18 @@
|
|
13 |
}
|
14 |
|
15 |
#su-autolinks table.widefat td.su-link-from-match {
|
16 |
-
width:
|
17 |
}
|
18 |
|
19 |
-
#su-autolinks table.widefat td.su-link-
|
20 |
-
#su-autolinks table.widefat td.su-link-to {
|
21 |
width: 20em;
|
22 |
}
|
23 |
|
|
|
|
|
|
|
|
|
|
|
24 |
#su-autolinks table.widefat td.su-link-sitewide-lpa {
|
25 |
width: 5em;
|
26 |
}
|
@@ -29,7 +33,12 @@
|
|
29 |
width: 8em;
|
30 |
}
|
31 |
|
32 |
-
#su-autolinks table.widefat td.su-link-delete
|
|
|
33 |
width: 3em;
|
34 |
text-align: center;
|
|
|
|
|
|
|
|
|
35 |
}
|
13 |
}
|
14 |
|
15 |
#su-autolinks table.widefat td.su-link-from-match {
|
16 |
+
width: 11em;
|
17 |
}
|
18 |
|
19 |
+
#su-content-autolinks table.widefat td.su-link-to {
|
|
|
20 |
width: 20em;
|
21 |
}
|
22 |
|
23 |
+
#su-footer-autolinks table.widefat td.su-link-from,
|
24 |
+
#su-footer-autolinks table.widefat td.su-link-to {
|
25 |
+
width: 15em;
|
26 |
+
}
|
27 |
+
|
28 |
#su-autolinks table.widefat td.su-link-sitewide-lpa {
|
29 |
width: 5em;
|
30 |
}
|
33 |
width: 8em;
|
34 |
}
|
35 |
|
36 |
+
#su-autolinks table.widefat td.su-link-delete,
|
37 |
+
#su-autolinks table.widefat th.su-link-delete {
|
38 |
width: 3em;
|
39 |
text-align: center;
|
40 |
+
}
|
41 |
+
|
42 |
+
#su-footer-autolinks table.widefat td {
|
43 |
+
padding-right: 0.5em;
|
44 |
}
|
modules/autolinks/footer-autolinks.php
CHANGED
@@ -192,7 +192,7 @@ class SU_FooterAutolinks extends SU_Module {
|
|
192 |
if (!isset($link['target'])) $link['target'] = '';
|
193 |
|
194 |
$cells = array(
|
195 |
-
'link-from' => $this->get_jlsuggest_box("footer_link_{$i}_from", $link['from'][0])
|
196 |
, 'link-from-match' =>
|
197 |
$this->get_input_element('checkbox', "footer_link_{$i}_from_match_children", $link['from_match_children'] == 1, str_replace(' ', ' ', __('Match child content', 'seo-ultimate')))
|
198 |
.'<br />'
|
192 |
if (!isset($link['target'])) $link['target'] = '';
|
193 |
|
194 |
$cells = array(
|
195 |
+
'link-from' => $this->get_jlsuggest_box("footer_link_{$i}_from", $link['from'][0], 'types=posttype,taxonomy,home,author')
|
196 |
, 'link-from-match' =>
|
197 |
$this->get_input_element('checkbox', "footer_link_{$i}_from_match_children", $link['from_match_children'] == 1, str_replace(' ', ' ', __('Match child content', 'seo-ultimate')))
|
198 |
.'<br />'
|
modules/class.su-module.php
CHANGED
@@ -1460,7 +1460,7 @@ class SU_Module {
|
|
1460 |
echo "\t<thead><tr>\n";
|
1461 |
$mk = $this->get_module_key();
|
1462 |
foreach ($headers as $class => $header) {
|
1463 |
-
$class = is_numeric($class) ? '' : " class='su-$mk-$class'";
|
1464 |
echo "\t\t<th scope='col'$class>$header</th>\n";
|
1465 |
}
|
1466 |
echo "\t</tr></thead>\n";
|
@@ -1695,7 +1695,7 @@ class SU_Module {
|
|
1695 |
|
1696 |
if ($grouptext) {
|
1697 |
echo "</fieldset>";
|
1698 |
-
$this->admin_form_group_end();
|
1699 |
} elseif ($output_tr) {
|
1700 |
echo "</td>\n</tr>\n";
|
1701 |
}
|
@@ -2541,37 +2541,75 @@ class SU_Module {
|
|
2541 |
list($to_genus, $to_type, $to_id) = $this->jlsuggest_value_explode($value);
|
2542 |
|
2543 |
$text_dest = '';
|
|
|
2544 |
|
2545 |
switch ($to_genus) {
|
2546 |
|
2547 |
case 'posttype':
|
2548 |
$selected_post = get_post($to_id);
|
2549 |
-
|
2550 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2551 |
break;
|
2552 |
case 'taxonomy':
|
2553 |
-
$selected_taxonomy = get_taxonomy($to_type)
|
2554 |
-
|
2555 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2556 |
break;
|
2557 |
case 'home':
|
2558 |
$text_dest = __('Blog Homepage', 'seo-ultimate');
|
2559 |
break;
|
2560 |
case 'author':
|
2561 |
-
|
2562 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2563 |
break;
|
2564 |
case 'internal-link-alias':
|
|
|
2565 |
$alias_dir = $this->get_setting('alias_dir', 'go', 'internal-link-aliases');
|
2566 |
$aliases = $this->get_setting('aliases', array(), 'internal-link-aliases');
|
2567 |
|
2568 |
if (isset($aliases[$to_id]['to'])) {
|
2569 |
$h_alias_to = su_esc_html($aliases[$to_id]['to']);
|
2570 |
-
$text_dest = "/$alias_dir/$h_alias_to/" . '<span class="type"> — '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2571 |
} else {
|
2572 |
-
$
|
2573 |
-
$
|
|
|
2574 |
}
|
|
|
2575 |
break;
|
2576 |
}
|
2577 |
|
@@ -2592,13 +2630,14 @@ class SU_Module {
|
|
2592 |
}
|
2593 |
|
2594 |
$html .= " type='text' class='textbox regular-text jlsuggest'";
|
2595 |
-
$html .= ' title="' . __('Type a URL or start typing the name of
|
2596 |
$html .= $is_url ? '' : ' style="display:none;" ';
|
2597 |
$html .= ' />';
|
2598 |
|
2599 |
//Object box
|
2600 |
//(hide if URL is entered)
|
2601 |
-
$
|
|
|
2602 |
$html .= $is_url ? ' style="display:none;" ' : '';
|
2603 |
$html .= '>';
|
2604 |
$html .= '<div class="jls_text_dest_text">';
|
@@ -2627,26 +2666,38 @@ class SU_Module {
|
|
2627 |
return $to_id; break;
|
2628 |
case 'posttype':
|
2629 |
$to_id = (int)$to_id;
|
2630 |
-
|
2631 |
-
|
2632 |
-
|
|
|
|
|
|
|
|
|
|
|
2633 |
case 'taxonomy':
|
2634 |
$to_id = (int)$to_id;
|
2635 |
-
|
|
|
|
|
|
|
2636 |
case 'home':
|
2637 |
return suwp::get_blog_home_url(); break;
|
2638 |
case 'author':
|
2639 |
$to_id = (int)$to_id;
|
2640 |
-
|
|
|
|
|
|
|
2641 |
case 'internal-link-alias':
|
2642 |
-
|
2643 |
-
|
2644 |
-
|
2645 |
-
|
2646 |
-
|
2647 |
-
|
|
|
|
|
2648 |
}
|
2649 |
-
|
2650 |
return false;
|
2651 |
break;
|
2652 |
}
|
1460 |
echo "\t<thead><tr>\n";
|
1461 |
$mk = $this->get_module_key();
|
1462 |
foreach ($headers as $class => $header) {
|
1463 |
+
$class = is_numeric($class) ? '' : " class='su-$mk-$class su-$class'";
|
1464 |
echo "\t\t<th scope='col'$class>$header</th>\n";
|
1465 |
}
|
1466 |
echo "\t</tr></thead>\n";
|
1695 |
|
1696 |
if ($grouptext) {
|
1697 |
echo "</fieldset>";
|
1698 |
+
$this->admin_form_group_end(false);
|
1699 |
} elseif ($output_tr) {
|
1700 |
echo "</td>\n</tr>\n";
|
1701 |
}
|
2541 |
list($to_genus, $to_type, $to_id) = $this->jlsuggest_value_explode($value);
|
2542 |
|
2543 |
$text_dest = '';
|
2544 |
+
$disabled = false;
|
2545 |
|
2546 |
switch ($to_genus) {
|
2547 |
|
2548 |
case 'posttype':
|
2549 |
$selected_post = get_post($to_id);
|
2550 |
+
if ($selected_post) {
|
2551 |
+
$selected_post_type = get_post_type_object($selected_post->post_type);
|
2552 |
+
$text_dest = $selected_post->post_title . '<span class="type"> — '.$selected_post_type->labels->singular_name.'</span>';
|
2553 |
+
} else {
|
2554 |
+
$selected_post_type = get_post_type_object($to_type);
|
2555 |
+
if ($selected_post_type)
|
2556 |
+
$text_dest = sprintf(__('A Deleted %s', 'seo-ultimate'), $selected_post_type->labels->singular_name);
|
2557 |
+
else
|
2558 |
+
$text_dest = __('A Deleted Post', 'seo-ultimate');
|
2559 |
+
$text_dest = '<span class="type">' . $text_dest . '</span>';
|
2560 |
+
$disabled = true;
|
2561 |
+
}
|
2562 |
break;
|
2563 |
case 'taxonomy':
|
2564 |
+
if ($selected_taxonomy = get_taxonomy($to_type)) {
|
2565 |
+
if ($selected_term = get_term($to_id, $selected_taxonomy->name)) {
|
2566 |
+
$text_dest = $selected_term->name . '<span class="type"> — '.$selected_taxonomy->labels->singular_name.'</span>';
|
2567 |
+
} else {
|
2568 |
+
$text_dest = sprintf(__('A Deleted %s', 'seo-ultimate'), $selected_taxonomy->labels->singular_name);
|
2569 |
+
$text_dest = '<span class="type">' . $text_dest . '</span>';
|
2570 |
+
$disabled = true;
|
2571 |
+
}
|
2572 |
+
} else {
|
2573 |
+
$text_dest = __('A Deleted Term', 'seo-ultimate');
|
2574 |
+
$text_dest = '<span class="type">' . $text_dest . '</span>';
|
2575 |
+
$disabled = true;
|
2576 |
+
}
|
2577 |
break;
|
2578 |
case 'home':
|
2579 |
$text_dest = __('Blog Homepage', 'seo-ultimate');
|
2580 |
break;
|
2581 |
case 'author':
|
2582 |
+
if (is_user_member_of_blog($to_id)) {
|
2583 |
+
$selected_author = get_userdata($to_id);
|
2584 |
+
$text_dest = $selected_author->user_login . '<span class="type"> — '.__('Author', 'seo-ultimate').'</span>';
|
2585 |
+
} else {
|
2586 |
+
$text_dest = __('A Deleted User', 'seo-ultimate');
|
2587 |
+
$text_dest = '<span class="type">' . $text_dest . '</span>';
|
2588 |
+
$disabled = true;
|
2589 |
+
}
|
2590 |
break;
|
2591 |
case 'internal-link-alias':
|
2592 |
+
|
2593 |
$alias_dir = $this->get_setting('alias_dir', 'go', 'internal-link-aliases');
|
2594 |
$aliases = $this->get_setting('aliases', array(), 'internal-link-aliases');
|
2595 |
|
2596 |
if (isset($aliases[$to_id]['to'])) {
|
2597 |
$h_alias_to = su_esc_html($aliases[$to_id]['to']);
|
2598 |
+
$text_dest = "/$alias_dir/$h_alias_to/" . '<span class="type"> — ';
|
2599 |
+
|
2600 |
+
if ($this->plugin->module_exists('internal-link-aliases')) {
|
2601 |
+
$text_dest .= __('Link Mask', 'seo-ultimate');
|
2602 |
+
} else {
|
2603 |
+
$text_dest .= __('Link Mask (Disabled)', 'seo-ultimate');
|
2604 |
+
$disabled = true;
|
2605 |
+
}
|
2606 |
+
$text_dest .= '</span>';
|
2607 |
} else {
|
2608 |
+
$text_dest = __('A Deleted Link Mask', 'seo-ultimate');
|
2609 |
+
$text_dest = '<span class="type">' . $text_dest . '</span>';
|
2610 |
+
$disabled = true;
|
2611 |
}
|
2612 |
+
|
2613 |
break;
|
2614 |
}
|
2615 |
|
2630 |
}
|
2631 |
|
2632 |
$html .= " type='text' class='textbox regular-text jlsuggest'";
|
2633 |
+
$html .= ' title="' . __('Type a URL or start typing the name of an item on your site', 'seo-ultimate') . '"';
|
2634 |
$html .= $is_url ? '' : ' style="display:none;" ';
|
2635 |
$html .= ' />';
|
2636 |
|
2637 |
//Object box
|
2638 |
//(hide if URL is entered)
|
2639 |
+
$disabled = $disabled ? ' jlsuggest-disabled' : '';
|
2640 |
+
$html .= "<div class='jls_text_dest$disabled'";
|
2641 |
$html .= $is_url ? ' style="display:none;" ' : '';
|
2642 |
$html .= '>';
|
2643 |
$html .= '<div class="jls_text_dest_text">';
|
2666 |
return $to_id; break;
|
2667 |
case 'posttype':
|
2668 |
$to_id = (int)$to_id;
|
2669 |
+
switch (get_post_status($to_id)) {
|
2670 |
+
case 'publish':
|
2671 |
+
return get_permalink($to_id);
|
2672 |
+
case false: //Post doesn't exist
|
2673 |
+
default: //Post exists but isn't published
|
2674 |
+
return false;
|
2675 |
+
}
|
2676 |
+
break;
|
2677 |
case 'taxonomy':
|
2678 |
$to_id = (int)$to_id;
|
2679 |
+
$term_link = get_term_link($to_id, $to_type);
|
2680 |
+
if ($term_link && !is_wp_error($term_link)) return $term_link;
|
2681 |
+
return false;
|
2682 |
+
break;
|
2683 |
case 'home':
|
2684 |
return suwp::get_blog_home_url(); break;
|
2685 |
case 'author':
|
2686 |
$to_id = (int)$to_id;
|
2687 |
+
if (is_user_member_of_blog($to_id))
|
2688 |
+
return get_author_posts_url($to_id);
|
2689 |
+
return false;
|
2690 |
+
break;
|
2691 |
case 'internal-link-alias':
|
2692 |
+
if ($this->plugin->module_exists('internal-link-aliases')) {
|
2693 |
+
$alias_dir = $this->get_setting('alias_dir', 'go', 'internal-link-aliases');
|
2694 |
+
$aliases = $this->get_setting('aliases', array(),'internal-link-aliases');
|
2695 |
+
|
2696 |
+
if (isset($aliases[$to_id]['to'])) {
|
2697 |
+
$u_alias_to = urlencode($aliases[$to_id]['to']);
|
2698 |
+
return get_bloginfo('url') . "/$alias_dir/$u_alias_to/";
|
2699 |
+
}
|
2700 |
}
|
|
|
2701 |
return false;
|
2702 |
break;
|
2703 |
}
|
modules/internal-link-aliases/internal-link-aliases.php
CHANGED
@@ -121,7 +121,7 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
121 |
<td class='su-alias-to-slug'>" . $this->get_input_element('textbox', "alias_{$i}_to", $alias['to']) . "</td>
|
122 |
<td class='su-alias-to-test'>[<a href='$alias_url' target='_blank'>" . __('Test', 'seo-ultimate') . "</a>]</td>
|
123 |
</tr></table>"
|
124 |
-
, 'alias-posts' => $this->get_jlsuggest_box("alias_{$i}_posts", $jlsuggest_value, 'types=
|
125 |
);
|
126 |
if ($delete_option)
|
127 |
$cells['alias-delete'] = $this->get_input_element('checkbox', "alias_{$i}_delete");
|
121 |
<td class='su-alias-to-slug'>" . $this->get_input_element('textbox', "alias_{$i}_to", $alias['to']) . "</td>
|
122 |
<td class='su-alias-to-test'>[<a href='$alias_url' target='_blank'>" . __('Test', 'seo-ultimate') . "</a>]</td>
|
123 |
</tr></table>"
|
124 |
+
, 'alias-posts' => $this->get_jlsuggest_box("alias_{$i}_posts", $jlsuggest_value, 'types=posttype')
|
125 |
);
|
126 |
if ($delete_option)
|
127 |
$cells['alias-delete'] = $this->get_input_element('checkbox', "alias_{$i}_delete");
|
modules/modules.css
CHANGED
@@ -24,7 +24,6 @@ div.su-module table.fullwidth input.regular-text {
|
|
24 |
width: 100%;
|
25 |
}
|
26 |
|
27 |
-
div.su-module table.widefat th,
|
28 |
div.su-module table.widefat td {
|
29 |
padding-right: 2em;
|
30 |
}
|
24 |
width: 100%;
|
25 |
}
|
26 |
|
|
|
27 |
div.su-module table.widefat td {
|
28 |
padding-right: 2em;
|
29 |
}
|
plugin/class.seo-ultimate.php
CHANGED
@@ -1671,59 +1671,63 @@ class SEO_Ultimate {
|
|
1671 |
$items[] = array('text' => __('Blog Homepage', 'seo-ultimate'), 'value' => 'obj_home', 'selectedtext' => __('Blog Homepage', 'seo-ultimate'));
|
1672 |
}
|
1673 |
|
1674 |
-
|
1675 |
-
|
1676 |
-
|
1677 |
-
if ($include && !in_array('posttype_' . $posttypeobj->name, $include) && !in_array('post', $include))
|
1678 |
-
continue;
|
1679 |
-
|
1680 |
-
$stati = get_available_post_statuses($posttypeobj->name);
|
1681 |
-
suarr::remove_value($stati, 'auto-draft');
|
1682 |
-
$stati = implode(',', $stati);
|
1683 |
-
|
1684 |
-
$posts = get_posts(array(
|
1685 |
-
'orderby' => 'title'
|
1686 |
-
, 'order' => 'ASC'
|
1687 |
-
, 'post_status' => $stati
|
1688 |
-
, 'numberposts' => -1
|
1689 |
-
, 'post_type' => $posttypeobj->name
|
1690 |
-
, 'sentence' => 1
|
1691 |
-
, 's' => $_GET['q']
|
1692 |
-
));
|
1693 |
-
|
1694 |
-
if (count($posts)) {
|
1695 |
|
1696 |
-
$
|
|
|
1697 |
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1704 |
}
|
1705 |
}
|
1706 |
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
1710 |
-
if ($include && !in_array('taxonomy_' . $posttypeobj->name, $include) && !in_array('taxonomy', $include))
|
1711 |
-
continue;
|
1712 |
-
|
1713 |
-
$terms = get_terms($taxonomyobj->name, array(
|
1714 |
-
'search' => $_GET['q'] //NOTE: get_terms does NOT sanitize the "search" variable for SQL queries prior to WordPress 3.1.3, which is why this plugin will refuse to run on versions prior to 3.1.3
|
1715 |
-
));
|
1716 |
-
|
1717 |
-
if (count($terms)) {
|
1718 |
|
1719 |
-
$
|
|
|
1720 |
|
1721 |
-
|
1722 |
-
$
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1727 |
}
|
1728 |
}
|
1729 |
|
@@ -1747,7 +1751,7 @@ class SEO_Ultimate {
|
|
1747 |
}
|
1748 |
}
|
1749 |
|
1750 |
-
if (!$include || in_array('internal-link-
|
1751 |
|
1752 |
$aliases = $this->get_setting('aliases', array(), 'internal-link-aliases');
|
1753 |
$alias_dir = $this->get_setting('alias_dir', 'go', 'internal-link-aliases');
|
@@ -1756,22 +1760,26 @@ class SEO_Ultimate {
|
|
1756 |
|
1757 |
$header_outputted = false;
|
1758 |
foreach ($aliases as $alias_id => $alias) {
|
1759 |
-
$h_alias_to = su_esc_html($alias['to']);
|
1760 |
-
$to_rel_url = "/$alias_dir/$h_alias_to/";
|
1761 |
|
1762 |
-
if (
|
1763 |
|
1764 |
-
|
1765 |
-
|
1766 |
-
$header_outputted = true;
|
1767 |
-
}
|
1768 |
-
|
1769 |
-
$items[] = array(
|
1770 |
-
'text' => $to_rel_url
|
1771 |
-
, 'value' => 'obj_internal-link-alias/' . $alias_id
|
1772 |
-
, 'selectedtext' => $to_rel_url . '<span class="type"> — '.__('Link Mask', 'seo-ultimate').'</span>'
|
1773 |
-
);
|
1774 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1775 |
}
|
1776 |
}
|
1777 |
}
|
1671 |
$items[] = array('text' => __('Blog Homepage', 'seo-ultimate'), 'value' => 'obj_home', 'selectedtext' => __('Blog Homepage', 'seo-ultimate'));
|
1672 |
}
|
1673 |
|
1674 |
+
if (!$include || in_array('posttype', $include)) {
|
1675 |
+
$posttypeobjs = suwp::get_post_type_objects();
|
1676 |
+
foreach ($posttypeobjs as $posttypeobj) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1677 |
|
1678 |
+
if ($include && !in_array('posttype_' . $posttypeobj->name, $include))
|
1679 |
+
continue;
|
1680 |
|
1681 |
+
$stati = get_available_post_statuses($posttypeobj->name);
|
1682 |
+
suarr::remove_value($stati, 'auto-draft');
|
1683 |
+
$stati = implode(',', $stati);
|
1684 |
+
|
1685 |
+
$posts = get_posts(array(
|
1686 |
+
'orderby' => 'title'
|
1687 |
+
, 'order' => 'ASC'
|
1688 |
+
, 'post_status' => $stati
|
1689 |
+
, 'numberposts' => -1
|
1690 |
+
, 'post_type' => $posttypeobj->name
|
1691 |
+
, 'sentence' => 1
|
1692 |
+
, 's' => $_GET['q']
|
1693 |
+
));
|
1694 |
+
|
1695 |
+
if (count($posts)) {
|
1696 |
+
|
1697 |
+
$items[] = array('text' => $posttypeobj->labels->name, 'isheader' => true);
|
1698 |
+
|
1699 |
+
foreach ($posts as $post)
|
1700 |
+
$items[] = array(
|
1701 |
+
'text' => $post->post_title
|
1702 |
+
, 'value' => 'obj_posttype_' . $posttypeobj->name . '/' . $post->ID
|
1703 |
+
, 'selectedtext' => $post->post_title . '<span class="type"> — '.$posttypeobj->labels->singular_name.'</span>'
|
1704 |
+
);
|
1705 |
+
}
|
1706 |
}
|
1707 |
}
|
1708 |
|
1709 |
+
if (!$include || in_array('taxonomy', $include)) {
|
1710 |
+
$taxonomyobjs = suwp::get_taxonomies();
|
1711 |
+
foreach ($taxonomyobjs as $taxonomyobj) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1712 |
|
1713 |
+
if ($include && !in_array('taxonomy_' . $posttypeobj->name, $include))
|
1714 |
+
continue;
|
1715 |
|
1716 |
+
$terms = get_terms($taxonomyobj->name, array(
|
1717 |
+
'search' => $_GET['q'] //NOTE: get_terms does NOT sanitize the "search" variable for SQL queries prior to WordPress 3.1.3, which is why this plugin will refuse to run on versions prior to 3.1.3
|
1718 |
+
));
|
1719 |
+
|
1720 |
+
if (count($terms)) {
|
1721 |
+
|
1722 |
+
$items[] = array('text' => $taxonomyobj->labels->name, 'isheader' => true);
|
1723 |
+
|
1724 |
+
foreach ($terms as $term)
|
1725 |
+
$items[] = array(
|
1726 |
+
'text' => $term->name
|
1727 |
+
, 'value' => 'obj_taxonomy_' . $taxonomyobj->name . '/' . $term->term_id
|
1728 |
+
, 'selectedtext' => $term->name . '<span class="type"> — '.$taxonomyobj->labels->singular_name.'</span>'
|
1729 |
+
);
|
1730 |
+
}
|
1731 |
}
|
1732 |
}
|
1733 |
|
1751 |
}
|
1752 |
}
|
1753 |
|
1754 |
+
if ($this->module_exists('internal-link-aliases') && (!$include || in_array('internal-link-alias', $include))) {
|
1755 |
|
1756 |
$aliases = $this->get_setting('aliases', array(), 'internal-link-aliases');
|
1757 |
$alias_dir = $this->get_setting('alias_dir', 'go', 'internal-link-aliases');
|
1760 |
|
1761 |
$header_outputted = false;
|
1762 |
foreach ($aliases as $alias_id => $alias) {
|
|
|
|
|
1763 |
|
1764 |
+
if ($alias['to']) {
|
1765 |
|
1766 |
+
$h_alias_to = su_esc_html($alias['to']);
|
1767 |
+
$to_rel_url = "/$alias_dir/$h_alias_to/";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1768 |
|
1769 |
+
if ((strpos($alias['from'], $_GET['q']) !== false) || (strpos($to_rel_url, $_GET['q']) !== false)) {
|
1770 |
+
|
1771 |
+
if (!$header_outputted) {
|
1772 |
+
$items[] = array('text' => __('Link Masks', 'seo-ultimate'), 'isheader' => true);
|
1773 |
+
$header_outputted = true;
|
1774 |
+
}
|
1775 |
+
|
1776 |
+
$items[] = array(
|
1777 |
+
'text' => $to_rel_url
|
1778 |
+
, 'value' => 'obj_internal-link-alias/' . $alias_id
|
1779 |
+
, 'selectedtext' => $to_rel_url . '<span class="type"> — '.__('Link Mask', 'seo-ultimate').'</span>'
|
1780 |
+
);
|
1781 |
+
|
1782 |
+
}
|
1783 |
}
|
1784 |
}
|
1785 |
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions, JohnLamansky
|
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.3
|
6 |
-
Stable tag: 7.2
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
@@ -261,6 +261,15 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
261 |
|
262 |
== Changelog ==
|
263 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
= Version 7.2 (December 22, 2011) =
|
265 |
* Feature: Added "URL Conflict Resolution" setting to Permalink Tweaker that lets you arbitrate between pages/terms when taxonomy base removal causes their URLs to conflict
|
266 |
* Improvement: Cleaned up the Permalink Tweaker config interface
|
@@ -295,10 +304,10 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
295 |
* Bugfix: Deeplink Juggernaut now applies changes to sitewide link caps gradually instead of all at once, in order to alleviate out-of-memory errors and large processing overhead on sites with many posts
|
296 |
|
297 |
= Version 6.9.4 (August 31, 2011) =
|
298 |
-
* Bugfix: Fixed mb_strtolower errors that appeared on some PHP setups (introduced in 6.9.2)
|
299 |
|
300 |
= Version 6.9.3 (August 22, 2011) =
|
301 |
-
* Bugfix: Fixed bug in Rich Snippet Creator that caused raw HTML to be outputted in posts (introduced in 6.9.2)
|
302 |
* Bugfix: Added missing textdomains to some strings
|
303 |
|
304 |
= Version 6.9.2 (August 20, 2011) =
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.3
|
6 |
+
Stable tag: 7.2.1
|
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 |
|
261 |
|
262 |
== Changelog ==
|
263 |
|
264 |
+
= Version 7.2.1 (December 30, 2011) =
|
265 |
+
* Bugfix: Fixed malformed HTML that broke multiple module admin pages (bug introduced in 7.2)
|
266 |
+
* Bugfix: Deeplink Juggernaut's "Tag Restrictions" setting now takes effect even when the excluded tag has a `<br />` or other nested tag in it
|
267 |
+
* Bugfix: Link masks with empty alias URLs no longer appear in Deeplink Juggernaut destination dropdowns
|
268 |
+
* Bugfix: Deeplink Juggernaut and Link Mask Generator now handle cases in which a post, term, user, or link mask is specified in the "Destination," "Link Location," or "Only on This Post" boxes and then is later deleted
|
269 |
+
* Bugfix: Deeplink Juggernaut now handles cases when a link mask is specified in the "Destination" box and then the Link Mask Generator module is later disabled
|
270 |
+
* Bugfix: Link masks no longer show up in the "Link Location" autocomplete dropdowns of Deeplink Juggernaut's Footer Links editor (bug introduced in 7.1)
|
271 |
+
* Improvement: Made Deeplink Juggernaut's Footer Links editor look better on smaller screen resolutions
|
272 |
+
|
273 |
= Version 7.2 (December 22, 2011) =
|
274 |
* Feature: Added "URL Conflict Resolution" setting to Permalink Tweaker that lets you arbitrate between pages/terms when taxonomy base removal causes their URLs to conflict
|
275 |
* Improvement: Cleaned up the Permalink Tweaker config interface
|
304 |
* Bugfix: Deeplink Juggernaut now applies changes to sitewide link caps gradually instead of all at once, in order to alleviate out-of-memory errors and large processing overhead on sites with many posts
|
305 |
|
306 |
= Version 6.9.4 (August 31, 2011) =
|
307 |
+
* Bugfix: Fixed mb_strtolower errors that appeared on some PHP setups (bug introduced in 6.9.2)
|
308 |
|
309 |
= Version 6.9.3 (August 22, 2011) =
|
310 |
+
* Bugfix: Fixed bug in Rich Snippet Creator that caused raw HTML to be outputted in posts (bug introduced in 6.9.2)
|
311 |
* Bugfix: Added missing textdomains to some strings
|
312 |
|
313 |
= Version 6.9.2 (August 20, 2011) =
|
seo-ultimate.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
-
Version: 7.2
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
|
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
-
* @version 7.2
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.1.3');
|
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
-
define('SU_VERSION', '7.2');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/7.2');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
+
Version: 7.2.1
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
+
* @version 7.2.1
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
+
define('SU_VERSION', '7.2.1');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/7.2.1');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
seo-ultimate.pot
CHANGED
@@ -1,578 +1,525 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: SEO Ultimate 7.2\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
-
"POT-Creation-Date: 2011-12-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#:
|
16 |
-
msgid ""
|
17 |
-
"SEO Ultimate requires WordPress %s or above. Please upgrade to the latest "
|
18 |
-
"version of WordPress to enable SEO Ultimate on your blog, or deactivate SEO "
|
19 |
-
"Ultimate to remove this notice."
|
20 |
msgstr ""
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
#: plugin/class.seo-ultimate.php:791 modules/settings/settings.php:14
|
25 |
-
msgid "SEO Ultimate"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#:
|
29 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
30 |
msgstr ""
|
31 |
|
32 |
-
#:
|
33 |
msgid ""
|
34 |
-
"
|
35 |
-
"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#:
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#:
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#:
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#:
|
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 |
-
#:
|
57 |
-
msgid "
|
58 |
msgstr ""
|
59 |
|
60 |
-
#:
|
61 |
-
msgid "
|
62 |
msgstr ""
|
63 |
|
64 |
-
#:
|
65 |
-
msgid "
|
66 |
msgstr ""
|
67 |
|
68 |
-
#:
|
69 |
-
msgid "
|
70 |
msgstr ""
|
71 |
|
72 |
-
#:
|
73 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
msgstr ""
|
75 |
|
76 |
-
#:
|
77 |
-
|
|
|
|
|
|
|
|
|
78 |
msgstr ""
|
79 |
|
80 |
-
#:
|
81 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
msgstr ""
|
83 |
|
84 |
-
#:
|
85 |
-
msgid "
|
86 |
msgstr ""
|
87 |
|
88 |
-
#:
|
89 |
-
msgid "
|
90 |
msgstr ""
|
91 |
|
92 |
-
#:
|
93 |
-
msgid "
|
94 |
msgstr ""
|
95 |
|
96 |
-
#:
|
97 |
-
msgid "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#:
|
101 |
-
msgid "
|
102 |
msgstr ""
|
103 |
|
104 |
-
#:
|
105 |
-
msgid "
|
106 |
msgstr ""
|
107 |
|
108 |
-
#:
|
109 |
-
msgid "
|
110 |
msgstr ""
|
111 |
|
112 |
-
#:
|
113 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
msgstr ""
|
115 |
|
116 |
-
#:
|
117 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
msgstr ""
|
119 |
|
120 |
-
#:
|
121 |
-
|
|
|
|
|
|
|
122 |
msgstr ""
|
123 |
|
124 |
-
#:
|
125 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
msgstr ""
|
127 |
|
128 |
-
#:
|
129 |
-
msgid "
|
130 |
msgstr ""
|
131 |
|
132 |
-
#:
|
133 |
-
msgid ""
|
134 |
-
"<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
|
135 |
-
"search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
|
136 |
-
"target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
|
137 |
-
"to everyone."
|
138 |
msgstr ""
|
139 |
|
140 |
-
#:
|
141 |
-
msgid "
|
142 |
msgstr ""
|
143 |
|
144 |
-
#:
|
145 |
-
msgid "
|
146 |
msgstr ""
|
147 |
|
148 |
-
#:
|
149 |
-
|
150 |
-
msgid "Blog Homepage"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#:
|
154 |
-
msgid "
|
155 |
msgstr ""
|
156 |
|
157 |
-
#:
|
158 |
-
msgid "
|
159 |
msgstr ""
|
160 |
|
161 |
-
#:
|
162 |
-
msgid "
|
163 |
msgstr ""
|
164 |
|
165 |
-
#:
|
166 |
-
msgid "
|
167 |
msgstr ""
|
168 |
|
169 |
-
#:
|
170 |
-
msgid "
|
171 |
msgstr ""
|
172 |
|
173 |
-
#:
|
174 |
-
msgid "
|
175 |
msgstr ""
|
176 |
|
177 |
-
#:
|
178 |
-
msgid "
|
179 |
msgstr ""
|
180 |
|
181 |
-
#:
|
182 |
-
msgid "
|
183 |
msgstr ""
|
184 |
|
185 |
-
#:
|
186 |
-
msgid "
|
187 |
msgstr ""
|
188 |
|
189 |
-
#:
|
190 |
-
msgid "
|
191 |
msgstr ""
|
192 |
|
193 |
-
#:
|
194 |
-
msgid "
|
195 |
msgstr ""
|
196 |
|
197 |
-
#:
|
198 |
-
msgid "
|
199 |
msgstr ""
|
200 |
|
201 |
-
#:
|
202 |
-
msgid "
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
|
|
|
|
211 |
msgstr ""
|
212 |
|
213 |
-
#:
|
214 |
-
msgid "
|
215 |
msgstr ""
|
216 |
|
217 |
-
#:
|
218 |
-
msgid "
|
219 |
msgstr ""
|
220 |
|
221 |
-
#:
|
222 |
-
msgid "
|
223 |
msgstr ""
|
224 |
|
225 |
-
#:
|
226 |
-
msgid "
|
227 |
msgstr ""
|
228 |
|
229 |
-
#:
|
230 |
-
msgid "
|
231 |
msgstr ""
|
232 |
|
233 |
-
#:
|
234 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
235 |
msgstr ""
|
236 |
|
237 |
-
#:
|
238 |
-
msgid "
|
|
|
|
|
|
|
239 |
msgstr ""
|
240 |
|
241 |
-
#:
|
242 |
-
msgid "
|
243 |
msgstr ""
|
244 |
|
245 |
-
#:
|
246 |
-
msgid "
|
|
|
|
|
|
|
|
|
247 |
msgstr ""
|
248 |
|
249 |
-
#:
|
250 |
-
msgid "
|
251 |
msgstr ""
|
252 |
|
253 |
-
#:
|
254 |
-
msgid "
|
|
|
|
|
|
|
255 |
msgstr ""
|
256 |
|
257 |
-
#:
|
258 |
-
msgid "
|
259 |
msgstr ""
|
260 |
|
261 |
-
#:
|
262 |
-
msgid "
|
263 |
msgstr ""
|
264 |
|
265 |
-
#:
|
266 |
-
msgid "
|
267 |
msgstr ""
|
268 |
|
269 |
-
#:
|
270 |
-
msgid "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#:
|
274 |
-
msgid "
|
|
|
|
|
275 |
msgstr ""
|
276 |
|
277 |
-
#:
|
278 |
-
|
279 |
-
msgid "Format"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#:
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#:
|
287 |
-
msgid "
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: modules/
|
291 |
-
msgid "
|
|
|
|
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: modules/
|
295 |
-
msgid "
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: modules/
|
299 |
-
msgid "
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: modules/
|
303 |
-
msgid "
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: modules/
|
307 |
-
msgid "
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: modules/
|
311 |
-
msgid "
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: modules/
|
315 |
-
msgid "
|
316 |
-
|
|
|
|
|
317 |
|
318 |
-
#: modules/
|
319 |
-
msgid "
|
320 |
-
|
|
|
|
|
321 |
|
322 |
-
#: modules/
|
323 |
msgid ""
|
324 |
-
"
|
325 |
-
"
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#: modules/404s/fofs-log.php:143
|
333 |
-
msgid "This log entry has already been deleted."
|
334 |
-
msgstr ""
|
335 |
|
336 |
-
#: modules/
|
337 |
-
msgid "
|
338 |
-
|
|
|
|
|
|
|
339 |
|
340 |
-
#: modules/
|
341 |
-
msgid "
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: modules/
|
345 |
-
msgid "
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: modules/
|
349 |
-
msgid "
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: modules/
|
353 |
-
msgid "
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: modules/
|
357 |
-
msgid "
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: modules/
|
361 |
-
msgid "
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: modules/
|
365 |
-
msgid "
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: modules/
|
369 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: modules/
|
373 |
-
|
|
|
|
|
|
|
|
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: modules/
|
377 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: modules/
|
381 |
-
msgid "
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: modules/
|
385 |
-
msgid "
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: modules/404s/fofs.php:19 modules/slugs/slugs.php:76
|
389 |
-
#: modules/settings/settings.php:22 modules/more-links/more-links.php:104
|
390 |
-
#: modules/more-links/more-links.php:111
|
391 |
-
#: modules/link-nofollow/link-nofollow.php:130
|
392 |
-
#: modules/sharing-buttons/sharing-buttons.php:72
|
393 |
-
#: modules/meta/webmaster-verify.php:58 modules/meta/meta-robots.php:53
|
394 |
-
#: modules/meta/meta-descriptions.php:174 modules/meta/meta-keywords.php:166
|
395 |
-
#: modules/linkbox/linkbox.php:91 modules/titles/titles.php:341
|
396 |
-
#: modules/user-code/user-code.php:70
|
397 |
-
#: modules/rich-snippets/rich-snippets.php:258 modules/files/files.php:144
|
398 |
-
#: modules/canonical/canonical.php:201
|
399 |
-
msgid "Overview"
|
400 |
-
msgstr ""
|
401 |
-
|
402 |
-
#: modules/404s/fofs.php:20
|
403 |
-
msgid ""
|
404 |
-
"\r\n"
|
405 |
-
"<ul>\r\n"
|
406 |
-
"\t<li><strong>What it does:</strong> The 404 Monitor keeps track of non-"
|
407 |
-
"existent URLs that generated 404 errors. 404 errors are when a search engine "
|
408 |
-
"or visitor comes to a URL on your site but nothing exists at that URL.</li>"
|
409 |
-
"\r\n"
|
410 |
-
"\t<li><strong>Why it helps:</strong> The 404 Monitor helps you spot 404 "
|
411 |
-
"errors; then you can take steps to correct them to reduce link-juice loss "
|
412 |
-
"from broken links.</li>\r\n"
|
413 |
-
"\t<li><strong>How to use it:</strong> Check the 404 Monitor occasionally for "
|
414 |
-
"errors. (A numeric bubble will appear next to the “404 Monitor” "
|
415 |
-
"item on the menu if there are any newly-logged URLs that you haven't seen "
|
416 |
-
"yet. These new URLs will also be highlighted green in the table.) If a 404 "
|
417 |
-
"error's referring URL is located on your site, try locating and fixing the "
|
418 |
-
"broken URL. If moved content was previously located at the requested URL, "
|
419 |
-
"try using a redirection plugin to point the old URL to the new one.</li>\r\n"
|
420 |
-
"</ul>\r\n"
|
421 |
-
"\r\n"
|
422 |
-
"<p>If there are no 404 errors in the log, this is good and means there's no "
|
423 |
-
"action required on your part.</p>\r\n"
|
424 |
-
msgstr ""
|
425 |
-
|
426 |
-
#: modules/404s/fofs.php:32
|
427 |
-
msgid "Log Help"
|
428 |
-
msgstr ""
|
429 |
-
|
430 |
-
#: modules/404s/fofs.php:33
|
431 |
-
msgid ""
|
432 |
-
"\r\n"
|
433 |
-
"<p>You can perform the following actions on each entry in the log:</p>\r\n"
|
434 |
-
"\r\n"
|
435 |
-
"<ul>\r\n"
|
436 |
-
"\t<li>The “View” button will open the URL in a new window. This "
|
437 |
-
"is useful for testing whether or not a redirect is working.</li>\r\n"
|
438 |
-
"\t<li>The “Google Cache” button will open Google's archived "
|
439 |
-
"version of the URL in a new window. This is useful for determining what "
|
440 |
-
"content, if any, used to be located at that URL.</li>\r\n"
|
441 |
-
"\t<li>Once you've taken care of a 404 error, you can click the “"
|
442 |
-
"Remove” button to remove it from the list. The URL will reappear on "
|
443 |
-
"the list if it triggers a 404 error in the future.</li>\r\n"
|
444 |
-
"</ul>\r\n"
|
445 |
-
msgstr ""
|
446 |
-
|
447 |
-
#: modules/404s/fofs.php:45 modules/meta/meta-robots.php:64
|
448 |
-
#: modules/meta/meta-descriptions.php:185 modules/meta/meta-keywords.php:173
|
449 |
-
#: modules/linkbox/linkbox.php:102 modules/titles/titles.php:415
|
450 |
-
#: modules/rich-snippets/rich-snippets.php:269
|
451 |
-
msgid "Settings Help"
|
452 |
-
msgstr ""
|
453 |
-
|
454 |
-
#: modules/404s/fofs.php:46
|
455 |
-
msgid ""
|
456 |
-
"\r\n"
|
457 |
-
"<p>The following options are available on the Settings tab:</p>\r\n"
|
458 |
-
"\r\n"
|
459 |
-
"<ul>\r\n"
|
460 |
-
"\t<li>\r\n"
|
461 |
-
"\t\t<strong>Monitoring Settings</strong>\r\n"
|
462 |
-
"\t\t<ul>\r\n"
|
463 |
-
"\t\t\t<li><strong>Continue monitoring for new 404 errors</strong> — If "
|
464 |
-
"disabled, 404 Monitor will keep existing 404 errors in the log but won't add "
|
465 |
-
"any new ones.</li>\r\n"
|
466 |
-
"\t\t</ul>\r\n"
|
467 |
-
"\t</li>\r\n"
|
468 |
-
"\t<li>\r\n"
|
469 |
-
"\t\t<strong>Log Restrictions</strong>\r\n"
|
470 |
-
"\t\t<ul>\r\n"
|
471 |
-
"\t\t\t<li><strong>Only log these types of 404 errors</strong> — Check "
|
472 |
-
"this option to log a 404 error <em>only</em> if it meets at least one of the "
|
473 |
-
"criteria you specify. If you don't enable any criteria, no 404 errors will "
|
474 |
-
"be logged.\r\n"
|
475 |
-
"\t\t\t\t<ul>\r\n"
|
476 |
-
"\t\t\t\t\t<li><strong>404s generated by search engine spiders</strong> "
|
477 |
-
"— When logging restriction is enabled, this option will make an "
|
478 |
-
"exception for 404 errors generated by one of the top search engines (Google, "
|
479 |
-
"Yahoo, Baidu, Bing, Yandex, Soso, Ask.com, Sogou, or AltaVista).</li>\r\n"
|
480 |
-
"\t\t\t\t\t<li><strong>404s with referring URLs</strong> — When logging "
|
481 |
-
"restriction is enabled, this option will make an exception for 404 errors "
|
482 |
-
"generated by users who click a link on your site or another site first "
|
483 |
-
"before ending up at a 404 page on your site.</li>\r\n"
|
484 |
-
"\t\t\t\t</ul>\r\n"
|
485 |
-
"\t\t\t</li>\r\n"
|
486 |
-
"\t\t</ul>\r\n"
|
487 |
-
"\t</li>\r\n"
|
488 |
-
"\t<li><strong>Maximum Log Entries</strong> — Here you can set the "
|
489 |
-
"maximum number of log entries that 404 Monitor will keep at a time. Setting "
|
490 |
-
"this to a reasonable number will help keep database usage under control. If "
|
491 |
-
"you change this setting, it will take effect the next time a 404 is logged.</"
|
492 |
-
"li>\r\n"
|
493 |
-
"\t<li><strong>URLs to Ignore</strong> — URLs entered here will be "
|
494 |
-
"ignored whenever they generate 404 errors in the future. You can use "
|
495 |
-
"asterisks (*) as wildcards.</li>\r\n"
|
496 |
-
"</ul>\r\n"
|
497 |
-
msgstr ""
|
498 |
-
|
499 |
-
#: modules/404s/fofs.php:74 modules/slugs/slugs.php:107
|
500 |
-
#: modules/meta/meta-robots.php:103 modules/meta/meta-descriptions.php:206
|
501 |
-
#: modules/meta/meta-keywords.php:196 modules/titles/titles.php:453
|
502 |
-
#: modules/user-code/user-code.php:84
|
503 |
-
#: modules/rich-snippets/rich-snippets.php:279 modules/files/files.php:165
|
504 |
-
msgid "Troubleshooting"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
-
#: modules/404s/fofs.php:75
|
508 |
-
msgid ""
|
509 |
-
"\r\n"
|
510 |
-
"<p>404 Monitor doesn't appear to work? Take these notes into consideration:</"
|
511 |
-
"p>\r\n"
|
512 |
-
"\r\n"
|
513 |
-
"<ul>\r\n"
|
514 |
-
"\t<li>The 404 Monitor doesn't record 404 errors generated by logged-in users."
|
515 |
-
"</li>\r\n"
|
516 |
-
"\t<li>In order for the 404 Monitor to track 404 errors, you must have non-"
|
517 |
-
"default permalinks enabled under <a href='options-permalink.php' "
|
518 |
-
"target='_blank'>Settings ⇒ Permalinks</a>.</li>\r\n"
|
519 |
-
"\t<li>Some parts of your website may not be under WordPress's control; the "
|
520 |
-
"404 Monitor can't track 404 errors on non-WordPress website areas.</li>\r\n"
|
521 |
-
"</ul>\r\n"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: modules/404s/fofs-settings.php:16
|
525 |
-
msgid "404 Monitor Settings"
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
-
#: modules/404s/fofs-settings.php:17
|
529 |
-
#: modules/internal-link-aliases/internal-link-aliases.php:31
|
530 |
-
#: modules/titles/titles.php:34
|
531 |
-
msgid "Settings"
|
532 |
-
msgstr ""
|
533 |
-
|
534 |
-
#: modules/404s/fofs-settings.php:37
|
535 |
-
msgid "Continue monitoring for new 404 errors"
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: modules/404s/fofs-settings.php:37
|
539 |
-
msgid "Monitoring Settings"
|
540 |
-
msgstr ""
|
541 |
-
|
542 |
-
#: modules/404s/fofs-settings.php:39
|
543 |
-
msgid "Only log these types of 404 errors:"
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: modules/404s/fofs-settings.php:40
|
547 |
-
msgid "404s generated by search engine spiders"
|
548 |
-
msgstr ""
|
549 |
-
|
550 |
-
#: modules/404s/fofs-settings.php:41
|
551 |
-
msgid "404s with referring URLs"
|
552 |
-
msgstr ""
|
553 |
-
|
554 |
-
#: modules/404s/fofs-settings.php:42
|
555 |
-
msgid "Log Restrictions"
|
556 |
-
msgstr ""
|
557 |
-
|
558 |
-
#: modules/404s/fofs-settings.php:43
|
559 |
-
msgid "Maximum Log Entries"
|
560 |
-
msgstr ""
|
561 |
-
|
562 |
-
#: modules/404s/fofs-settings.php:44
|
563 |
-
msgid "URLs to Ignore"
|
564 |
-
msgstr ""
|
565 |
-
|
566 |
-
#: modules/404s/fofs-settings.php:44
|
567 |
-
msgid "(Use * as wildcard)"
|
568 |
-
msgstr ""
|
569 |
-
|
570 |
-
#: modules/slugs/slugs.php:12
|
571 |
-
msgid "Slug Optimizer"
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
#: modules/slugs/slugs.php:16
|
575 |
-
msgid "Words to Remove"
|
576 |
msgstr ""
|
577 |
|
578 |
#: modules/slugs/slugs.php:77
|
@@ -595,14 +542,6 @@ msgid ""
|
|
595 |
"</ul>\r\n"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: modules/slugs/slugs.php:87 modules/settings/settings.php:41
|
599 |
-
#: modules/modules/modules.php:174 modules/more-links/more-links.php:105
|
600 |
-
#: modules/more-links/more-links.php:116
|
601 |
-
#: modules/meta/meta-descriptions.php:197 modules/meta/meta-keywords.php:183
|
602 |
-
#: modules/titles/titles.php:442 modules/files/files.php:155
|
603 |
-
msgid "FAQ"
|
604 |
-
msgstr ""
|
605 |
-
|
606 |
#: modules/slugs/slugs.php:88
|
607 |
msgid ""
|
608 |
"\r\n"
|
@@ -651,1762 +590,1935 @@ msgid ""
|
|
651 |
"</ul>\r\n"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: modules/
|
655 |
-
|
|
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: modules/
|
659 |
-
msgid "
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: modules/
|
663 |
-
msgid "
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: modules/
|
667 |
-
msgid "
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: modules/
|
671 |
-
msgid "
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: modules/
|
675 |
-
msgid "
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: modules/
|
679 |
msgid ""
|
680 |
-
"
|
681 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: modules/
|
685 |
-
msgid "
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: modules/
|
689 |
-
|
690 |
-
|
691 |
-
"click the “Browse” button and select a file to import."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: modules/
|
695 |
-
msgid ""
|
696 |
-
"The uploaded file is not in the proper format. Links could not be imported."
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: modules/
|
700 |
-
|
|
|
|
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: modules/
|
704 |
-
msgid "
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: modules/
|
708 |
-
msgid ""
|
709 |
-
"Links could not be imported because no CSV file was selected. Please click "
|
710 |
-
"the “Browse” button and select a file to import."
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: modules/
|
714 |
-
msgid "
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: modules/
|
718 |
-
msgid ""
|
719 |
-
"You can use this form to upload and import an SEO Ultimate settings file "
|
720 |
-
"stored on your computer. (These files can be created using the Export tool.) "
|
721 |
-
"Note that importing a file will overwrite your existing settings with those "
|
722 |
-
"in the file."
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: modules/
|
726 |
-
msgid ""
|
727 |
-
"Are you sure you want to import this settings file? This will overwrite your "
|
728 |
-
"current settings and cannot be undone."
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: modules/
|
732 |
-
msgid "
|
|
|
|
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: modules/
|
736 |
-
msgid "
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: modules/
|
740 |
-
msgid ""
|
741 |
-
"You can use this form to upload and import a Deeplink Juggernaut CSV file "
|
742 |
-
"stored on your computer. (These files can be created using the Export tool.) "
|
743 |
-
"Note that importing a file will overwrite your existing links with those in "
|
744 |
-
"the file."
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: modules/
|
748 |
-
msgid ""
|
749 |
-
"Are you sure you want to import this CSV file? This will overwrite your "
|
750 |
-
"current Deeplink Juggernaut links and cannot be undone."
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: modules/
|
754 |
-
msgid "
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: modules/
|
758 |
-
msgid "
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: modules/
|
762 |
-
msgid ""
|
763 |
-
"You can import settings and data from these plugins. Clicking a plugin’"
|
764 |
-
"s name will take you to the importer page, where you can customize "
|
765 |
-
"parameters and start the import."
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: modules/
|
769 |
-
msgid "
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: modules/
|
773 |
-
msgid ""
|
774 |
-
"You can use this export tool to download an SEO Ultimate settings file to "
|
775 |
-
"your computer."
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: modules/
|
779 |
-
msgid ""
|
780 |
-
"A settings file includes the data of every checkbox and textbox of every "
|
781 |
-
"installed module. It does NOT include site-specific data like logged 404s or "
|
782 |
-
"post/page title/meta data (this data would be included in a standard "
|
783 |
-
"database backup, however)."
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: modules/
|
787 |
-
msgid "
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: modules/
|
791 |
-
msgid "
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: modules/
|
795 |
-
msgid ""
|
796 |
-
"You can use this export tool to download a CSV file (comma-separated values "
|
797 |
-
"file) that contains your Deeplink Juggernaut links. Once you download this "
|
798 |
-
"file to your computer, you can edit it using your favorite spreadsheet "
|
799 |
-
"program. When you’re done editing, you can re-upload the file using "
|
800 |
-
"the Import tool."
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: modules/
|
804 |
-
msgid "
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: modules/
|
808 |
-
msgid "
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: modules/
|
812 |
-
msgid ""
|
813 |
-
"You can erase all your SEO Ultimate settings and restore them to “"
|
814 |
-
"factory defaults” by clicking the button below."
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: modules/
|
818 |
-
msgid ""
|
819 |
-
"Are you sure you want to erase all module settings? This cannot be undone."
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: modules/
|
823 |
-
msgid "
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: modules/
|
827 |
-
msgid "
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: modules/
|
831 |
-
msgid "
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: modules/
|
835 |
-
msgid ""
|
836 |
-
"\r\n"
|
837 |
-
"<p>The Settings module lets you manage settings related to the SEO Ultimate "
|
838 |
-
"plugin as a whole.</p>\r\n"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: modules/
|
842 |
-
msgid "
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: modules/
|
846 |
-
msgid ""
|
847 |
-
"\r\n"
|
848 |
-
"<p>Here’s information on some of the settings:</p>\r\n"
|
849 |
-
"<ul>\r\n"
|
850 |
-
"\t<li><strong>Enable nofollow’d attribution link</strong> — If "
|
851 |
-
"enabled, the plugin will display an attribution link on your site.</li>\r\n"
|
852 |
-
"\t<li><strong>Notify me about unnecessary active plugins</strong> — If "
|
853 |
-
"enabled, SEO Ultimate will add notices to your “Plugins” "
|
854 |
-
"administration page if you have any other plugins installed whose "
|
855 |
-
"functionality SEO Ultimate replaces.</li>\r\n"
|
856 |
-
"\t<li><strong>Insert comments around HTML code insertions</strong> — "
|
857 |
-
"If enabled, SEO Ultimate will use HTML comments to identify all code it "
|
858 |
-
"inserts into your <code><head></code> tag. This is useful if you’"
|
859 |
-
"re trying to figure out whether or not SEO Ultimate is inserting a certain "
|
860 |
-
"piece of header code.</li>\r\n"
|
861 |
-
"</ul>\r\n"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: modules/
|
865 |
msgid ""
|
866 |
-
"
|
867 |
-
"
|
868 |
-
"\t<li>\r\n"
|
869 |
-
"\t\t<p><strong>Why doesn’t the settings exporter include all my data "
|
870 |
-
"in an export?</strong><br />The settings export/import system is designed to "
|
871 |
-
"facilitate moving settings between sites. It is NOT a replacement for "
|
872 |
-
"keeping your database backed up. The settings exporter doesn’t include "
|
873 |
-
"data that is specific to your site. For example, logged 404 errors are not "
|
874 |
-
"included because those 404 errors only apply to your site, not another site. "
|
875 |
-
"Also, post/page titles/meta are not included because the site into which you "
|
876 |
-
"import the file could have totally different posts/pages located under the "
|
877 |
-
"same ID numbers.</p>\r\n"
|
878 |
-
"\t\t<p>If you’re moving a site to a different server or restoring a "
|
879 |
-
"crashed site, you should do so with database backup/restore.</p>\r\n"
|
880 |
-
"\t</li>\r\n"
|
881 |
-
"</ul>\r\n"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: modules/
|
885 |
-
|
|
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: modules/
|
889 |
-
|
|
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: modules/
|
893 |
-
|
|
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: modules/
|
897 |
-
|
|
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: modules/
|
901 |
-
|
|
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: modules/
|
905 |
-
msgid ""
|
906 |
-
"From the list below, select the version to which you would like to upgrade. "
|
907 |
-
"Then click the “Upgrade” button at the bottom of the screen."
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: modules/
|
911 |
-
|
|
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: modules/
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
"using the WordPress plugin upgrader."
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: modules/
|
922 |
-
|
923 |
-
"
|
924 |
-
"supported. Although unlikely, you may lose data in the downgrading process. "
|
925 |
-
"It is your responsibility to backup your database before proceeding."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: modules/
|
929 |
-
msgid ""
|
930 |
-
"From the list below, select the version to which you would like to "
|
931 |
-
"downgrade. Then click the “Downgrade” button at the bottom of "
|
932 |
-
"the screen."
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: modules/
|
936 |
-
msgid ""
|
937 |
-
"Downgrading to versions earlier than %s is not supported because doing so "
|
938 |
-
"will result in data loss."
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: modules/
|
942 |
-
msgid ""
|
943 |
-
"There was an error retrieving the list of available versions. Please try "
|
944 |
-
"again later."
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: modules/
|
948 |
msgid ""
|
949 |
-
"
|
950 |
-
"
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
|
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: modules/
|
958 |
-
msgid "
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: modules/
|
962 |
msgid ""
|
963 |
-
"
|
964 |
-
"
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: modules/
|
972 |
-
msgid "
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: modules/
|
976 |
-
msgid "
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: modules/
|
980 |
-
msgid "
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: modules/
|
984 |
-
msgid "
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: modules/
|
988 |
-
msgid "
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: modules/
|
992 |
-
msgid "
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: modules/settings
|
996 |
-
msgid "
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: modules/settings
|
1000 |
-
msgid ""
|
1001 |
-
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
1002 |
-
"files."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: modules/settings
|
1006 |
-
msgid ""
|
1007 |
-
"Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
|
1008 |
-
"your SEO Ultimate settings and cannot be undone."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: modules/settings
|
1012 |
-
msgid "
|
|
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: modules/
|
1016 |
-
msgid "
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: modules/settings
|
1020 |
-
msgid "
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: modules/settings
|
1024 |
-
msgid "
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: modules/settings
|
1028 |
-
msgid "
|
|
|
|
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: modules/settings
|
1032 |
-
msgid "
|
|
|
|
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: modules/
|
1036 |
-
msgid "
|
|
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: modules/
|
1040 |
-
msgid "
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: modules/
|
1044 |
msgid ""
|
1045 |
-
"
|
1046 |
-
"
|
1047 |
-
"SEO” menu on the left. Whenever you’re working with a module, "
|
1048 |
-
"you can view documentation by clicking the tabs in the upper-right-hand "
|
1049 |
-
"corner of your administration screen."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: modules/
|
1053 |
-
msgid ""
|
1054 |
-
"The Module Manager lets you disable or hide modules you don’t use. "
|
1055 |
-
"You can also silence modules from displaying bubble alerts on the menu."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: modules/
|
1059 |
-
msgid "
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: modules/
|
1063 |
-
msgid "
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: modules/
|
1067 |
-
msgid "
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: modules/
|
1071 |
-
msgid "
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: modules/
|
1075 |
-
|
|
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: modules/
|
1079 |
-
msgid "
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: modules/
|
1083 |
-
msgid "
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: modules/
|
1087 |
-
msgid "
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: modules/
|
1091 |
-
msgid ""
|
1092 |
-
"\r\n"
|
1093 |
-
"<p>The Module Manager lets you customize the visibility and accessibility of "
|
1094 |
-
"each module; here are the options available:</p>\r\n"
|
1095 |
-
"<ul>\r\n"
|
1096 |
-
"\t<li><strong>Enabled</strong> — The default option. The module will "
|
1097 |
-
"be fully enabled and accessible.</li>\r\n"
|
1098 |
-
"\t<li><strong>Silenced</strong> — The module will be enabled and "
|
1099 |
-
"accessible, but it won't be allowed to display numeric bubble alerts on the "
|
1100 |
-
"menu.</li>\r\n"
|
1101 |
-
"\t<li><strong>Hidden</strong> — The module's functionality will be "
|
1102 |
-
"enabled, but the module won't be visible on the SEO menu. You will still be "
|
1103 |
-
"able to access the module's admin page by clicking on its title in the "
|
1104 |
-
"Module Manager table.</li>\r\n"
|
1105 |
-
"\t<li><strong>Disabled</strong> — The module will be completely "
|
1106 |
-
"disabled and inaccessible.</li>\r\n"
|
1107 |
-
"</ul>\r\n"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: modules/
|
1111 |
-
msgid ""
|
1112 |
-
"\r\n"
|
1113 |
-
"<ul>\r\n"
|
1114 |
-
"\t<li><strong>What are modules?</strong><br />SEO Ultimate’s features "
|
1115 |
-
"are divided into groups called “modules.” SEO Ultimate’s "
|
1116 |
-
"“Module Manager” lets you enable or disable each of these groups "
|
1117 |
-
"of features. This way, you can pick-and-choose which SEO Ultimate features "
|
1118 |
-
"you want.</li>\r\n"
|
1119 |
-
"\t<li><strong>Can I access a module again after I’ve hidden it?</"
|
1120 |
-
"strong><br />Yes. Just go to the Module Manager and click the module’s "
|
1121 |
-
"title to open its admin page. If you’d like to put the module back in "
|
1122 |
-
"the “SEO” menu, just re-enable the module in the Module Manager "
|
1123 |
-
"and click “Save Changes.”</li>\r\n"
|
1124 |
-
"\t<li><strong>How do I disable the number bubbles on the “SEO” "
|
1125 |
-
"menu?</strong><br />Just go to the Module Manager and select the “"
|
1126 |
-
"Silenced” option for any modules generating number bubbles. Then click "
|
1127 |
-
"“Save Changes.”</li>\r\n"
|
1128 |
-
"</ul>\r\n"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: modules/
|
1132 |
-
msgid "
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: modules/
|
1136 |
-
msgid "
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: modules/
|
1140 |
-
msgid "
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: modules/
|
1144 |
-
msgid ""
|
1145 |
-
"\r\n"
|
1146 |
-
"<ul>\r\n"
|
1147 |
-
"\t<li><strong>What it does:</strong> More Link Customizer lets you modify "
|
1148 |
-
"the anchor text of your posts’ <a href='http://codex.wordpress.org/"
|
1149 |
-
"Customizing_the_Read_More' target='_blank'>“more” links</a>.</li>"
|
1150 |
-
"\r\n"
|
1151 |
-
"\t<li><strong>Why it helps:</strong> On the typical WordPress setup, the "
|
1152 |
-
"“more link” always has the same anchor text (e.g. “Read "
|
1153 |
-
"more of this entry”). Since internal anchor text conveys web page "
|
1154 |
-
"topicality to search engines, the “read more” phrase isn’t "
|
1155 |
-
"a desirable anchor phrase. More Link Customizer lets you replace the "
|
1156 |
-
"boilerplate text with a new anchor that, by default, integrates your post "
|
1157 |
-
"titles (which will ideally be keyword-oriented).</li>\r\n"
|
1158 |
-
"\t<li><strong>How to use it:</strong> On this page you can set the anchor "
|
1159 |
-
"text you’d like to use by default. The <code>{post}</code> variable "
|
1160 |
-
"will be replaced with the post’s title. HTML and encoded entities are "
|
1161 |
-
"supported. If instead you decide that you’d like to use the default "
|
1162 |
-
"anchor text specified by your currently-active theme, just erase the "
|
1163 |
-
"contents of the textbox. The anchor text can be overridden on a per-post "
|
1164 |
-
"basis via the “More Link Text” box in the “SEO "
|
1165 |
-
"Settings” section of the WordPress post editor.</li>\r\n"
|
1166 |
-
"</ul>\r\n"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: modules/
|
1170 |
-
msgid ""
|
1171 |
-
"\r\n"
|
1172 |
-
"<ul>\r\n"
|
1173 |
-
"\t<li>\r\n"
|
1174 |
-
"\t\t<p><strong>Why is the More Link Customizer an improvement over "
|
1175 |
-
"WordPress’s built-in functionality?</strong><br />Although WordPress "
|
1176 |
-
"does allow basic <a href='http://codex.wordpress.org/"
|
1177 |
-
"Customizing_the_Read_More#Having_a_custom_text_for_each_post' "
|
1178 |
-
"target='_blank'>custom “more” anchors</a>, the SEO Ultimate "
|
1179 |
-
"approach has several benefits:</p>\r\n"
|
1180 |
-
"\t\t<ul>\r\n"
|
1181 |
-
"\t\t\t<li>More Link Customizer (MLC) lets you set a custom default anchor "
|
1182 |
-
"text. WordPress, on the other hand, leaves this up to the currently-active "
|
1183 |
-
"theme.</li>\r\n"
|
1184 |
-
"\t\t\t<li>MLC lets you dynamically incorporate the post’s title into "
|
1185 |
-
"the anchor text.</li>\r\n"
|
1186 |
-
"\t\t\t<li>MLC lets you include HTML tags in your anchor, whereas WordPress "
|
1187 |
-
"strips these out.</li>\r\n"
|
1188 |
-
"\t\t\t<li>MLC’s functionality is much more prominent than "
|
1189 |
-
"WordPress’s unintuitive, barely-documented approach.</li>\r\n"
|
1190 |
-
"\t\t\t<li>Unlike WordPress's method, MLC doesn't require you to utilize the "
|
1191 |
-
"HTML editor.</li>\r\n"
|
1192 |
-
"\t\t</ul>\r\n"
|
1193 |
-
"\t\t<p>If you’ve already specified custom anchors via WordPress’"
|
1194 |
-
"s method, SEO Ultimate will import those anchors automatically into the More "
|
1195 |
-
"Link Customizer.</p>\r\n"
|
1196 |
-
"\t</li>\r\n"
|
1197 |
-
"</ul>\r\n"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: modules/
|
1201 |
-
msgid "
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: modules/
|
1205 |
-
msgid "
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: modules/
|
1209 |
-
msgid "All in One SEO Pack"
|
1210 |
-
msgstr ""
|
1211 |
-
|
1212 |
-
#: modules/import-aiosp/import-aiosp.php:16
|
1213 |
-
msgid "AIOSP"
|
1214 |
-
msgstr ""
|
1215 |
-
|
1216 |
-
#: modules/import-aiosp/import-aiosp.php:17
|
1217 |
-
msgid "Import post data (custom title tags and meta tags)."
|
1218 |
-
msgstr ""
|
1219 |
-
|
1220 |
-
#: modules/import-aiosp/import-aiosp.php:21
|
1221 |
-
msgid ""
|
1222 |
-
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
1223 |
-
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
1224 |
-
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
1225 |
-
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
1226 |
-
"to be currently installed or activated for the import to take place."
|
1227 |
-
msgstr ""
|
1228 |
-
|
1229 |
-
#: modules/import-aiosp/import-aiosp.php:23
|
1230 |
msgid ""
|
1231 |
-
"
|
1232 |
-
"
|
1233 |
-
"first and run AIOSP’s upgrade process."
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: modules/link-
|
1237 |
-
msgid "
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: modules/link-
|
1241 |
-
msgid "
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: modules/
|
1245 |
-
msgid "
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: modules/
|
1249 |
-
msgid "
|
|
|
|
|
|
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: modules/
|
1253 |
-
msgid "
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: modules/
|
1257 |
-
msgid "
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: modules/
|
1261 |
-
msgid "
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: modules/
|
1265 |
-
msgid "
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: modules/
|
1269 |
-
msgid "
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: modules/
|
1273 |
-
msgid "
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: modules/
|
1277 |
-
msgid "
|
|
|
|
|
|
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: modules/
|
1281 |
-
msgid "
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: modules/
|
1285 |
-
msgid "
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: modules/
|
1289 |
-
msgid "
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: modules/
|
1293 |
-
msgid "
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: modules/
|
1297 |
-
msgid "
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: modules/
|
1301 |
-
|
|
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: modules/
|
1305 |
-
msgid ""
|
1306 |
-
"\r\n"
|
1307 |
-
"<p>Nofollow Manager adds the <code>rel="nofollow"</code> attribute "
|
1308 |
-
"to types of links that you specify. The <code>rel="nofollow"</"
|
1309 |
-
"code> attribute prevents a link from passing PageRank.</p>\r\n"
|
1310 |
-
"<p>If you’re migrating to SEO Ultimate from another plugin, Nofollow "
|
1311 |
-
"Manager can help you maintain your existing settings (as part of an “"
|
1312 |
-
"if it ain’t broke don’t fix it” strategy). In other cases, "
|
1313 |
-
"however, we recommend not using the Nofollow Manager because in 2008 Google "
|
1314 |
-
"disabled the ability to use the <code>rel="nofollow"</code> "
|
1315 |
-
"attribute for PageRank sculpting.</p>\r\n"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: modules/
|
1319 |
-
|
1320 |
-
msgid "Sharing Facilitator"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: modules/
|
1324 |
-
msgid "
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: modules/
|
1328 |
-
msgid "
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: modules/
|
1332 |
-
msgid "
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: modules/
|
1336 |
-
msgid "
|
|
|
|
|
|
|
|
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: modules/
|
1340 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: modules/
|
1344 |
msgid ""
|
1345 |
"\r\n"
|
1346 |
"<ul>\r\n"
|
1347 |
-
"\t<li><strong>
|
1348 |
-
"
|
1349 |
-
"
|
1350 |
-
"
|
1351 |
-
"
|
1352 |
-
"
|
1353 |
-
"
|
1354 |
-
"
|
1355 |
-
"
|
|
|
1356 |
"</ul>\r\n"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: modules/
|
1360 |
-
msgid "Content Deeplink Juggernaut"
|
1361 |
-
msgstr ""
|
1362 |
-
|
1363 |
-
#: modules/autolinks/content-autolinks.php:17
|
1364 |
-
msgid "Content Links"
|
1365 |
-
msgstr ""
|
1366 |
-
|
1367 |
-
#: modules/autolinks/content-autolinks.php:281
|
1368 |
msgid ""
|
1369 |
-
"
|
1370 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: modules/
|
1374 |
-
#: modules/
|
1375 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: modules/
|
1379 |
-
|
1380 |
-
msgid "Add a New Link"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: modules/
|
1384 |
-
|
1385 |
-
msgid "Anchor Text"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: modules/
|
1389 |
-
|
1390 |
-
msgid "Destination"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: modules/
|
1394 |
-
|
1395 |
-
msgid "Title Attribute"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: modules/
|
1399 |
-
msgid "
|
|
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: modules/
|
1403 |
-
|
1404 |
-
|
|
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: modules/
|
1408 |
-
|
1409 |
-
#: modules/internal-link-aliases/internal-link-aliases.php:91
|
1410 |
-
msgid "Delete"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: modules/
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: modules/
|
1420 |
-
|
1421 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: modules/
|
1425 |
-
msgid "
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: modules/
|
1429 |
-
msgid "
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: modules/
|
1433 |
-
msgid "
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1437 |
msgid ""
|
1438 |
-
"<strong>
|
1439 |
-
"
|
1440 |
-
"
|
1441 |
-
"
|
1442 |
-
"widgets” into the “Incoming Autolink Anchors” box and "
|
1443 |
-
"Deeplink Juggernaut will automatically build internal links to this post "
|
1444 |
-
"with that anchor text (assuming other posts contain that text)."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: modules/
|
1448 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: modules/
|
1452 |
msgid ""
|
1453 |
-
"
|
1454 |
-
"
|
1455 |
-
"
|
1456 |
-
"
|
1457 |
-
"
|
1458 |
-
"a
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
msgstr ""
|
1488 |
|
1489 |
-
#: modules/
|
1490 |
-
msgid "
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: modules/
|
1494 |
-
msgid "
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
|
1498 |
-
|
|
|
|
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: modules/
|
1502 |
-
msgid "
|
|
|
|
|
|
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: modules/
|
1506 |
-
msgid "
|
|
|
|
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: modules/
|
1510 |
-
msgid "
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: modules/
|
1514 |
-
msgid "
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: modules/
|
1518 |
-
msgid "
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1522 |
msgid ""
|
1523 |
-
"
|
|
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: modules/
|
1527 |
-
msgid "
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: modules/
|
1531 |
-
msgid "
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: modules/
|
1535 |
-
msgid "
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1539 |
msgid ""
|
1540 |
-
"
|
1541 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: modules/
|
1545 |
-
msgid ""
|
1546 |
-
"Don’t link the same anchor text any more than %d times across my "
|
1547 |
-
"entire site."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: modules/
|
1551 |
-
msgid ""
|
1552 |
-
"Don’t link to the same destination any more than %d times per post/"
|
1553 |
-
"page/etc."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: modules/
|
1557 |
-
msgid "
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: modules/
|
1561 |
-
msgid ""
|
1562 |
-
"Don’t add autolinks to text within these HTML tags <em>(separate with "
|
1563 |
-
"commas)</em>:"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: modules/
|
1567 |
-
msgid "
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: modules/
|
1571 |
-
msgid "
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: modules/
|
1575 |
-
msgid "
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: modules/
|
1579 |
-
msgid "
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: modules/
|
1583 |
-
|
1584 |
-
msgid "Noindex"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: modules/
|
1588 |
-
msgid "
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: modules/
|
1592 |
-
msgid "
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: modules/
|
1596 |
-
msgid "
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: modules/
|
1600 |
-
msgid "
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: modules/
|
1604 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: modules/
|
1608 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: modules/
|
1612 |
msgid ""
|
1613 |
-
"
|
1614 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: modules/
|
1618 |
-
msgid "
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: modules/
|
1622 |
-
msgid "
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: modules/
|
1626 |
-
msgid "
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: modules/
|
1630 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: modules/
|
1634 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: modules/
|
1638 |
-
msgid "
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: modules/
|
1642 |
-
msgid "
|
|
|
|
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: modules/
|
1646 |
-
msgid "
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: modules/
|
1650 |
-
msgid "
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: modules/
|
1654 |
-
msgid "
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: modules/
|
1658 |
-
msgid "
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: modules/
|
1662 |
-
msgid "
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: modules/
|
1666 |
-
msgid "
|
|
|
|
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: modules/
|
1670 |
-
msgid "
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: modules/
|
1674 |
msgid ""
|
1675 |
-
"
|
1676 |
-
"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: modules/
|
1680 |
-
msgid "
|
|
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: modules/
|
1684 |
-
msgid "
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: modules/
|
1688 |
-
msgid "
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: modules/
|
1692 |
-
msgid "
|
|
|
|
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: modules/
|
1696 |
-
msgid "
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: modules/
|
1700 |
-
msgid "
|
|
|
|
|
|
|
|
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: modules/
|
1704 |
-
msgid "
|
|
|
|
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: modules/
|
1708 |
-
msgid "
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: modules/
|
1712 |
-
msgid "
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: modules/
|
1716 |
-
msgid "
|
|
|
|
|
|
|
|
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: modules/
|
1720 |
msgid ""
|
1721 |
-
"Are you sure you want to
|
1722 |
-
"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: modules/
|
1726 |
-
msgid "
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: modules/
|
1730 |
-
msgid "
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: modules/
|
1734 |
-
msgid "
|
|
|
|
|
|
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: modules/
|
1738 |
-
msgid "
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: modules/
|
1742 |
-
msgid "
|
|
|
|
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: modules/
|
1746 |
-
msgid "
|
|
|
|
|
|
|
|
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: modules/
|
1750 |
-
msgid "
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: modules/
|
1754 |
-
msgid "
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: modules/
|
1758 |
msgid ""
|
1759 |
-
"
|
1760 |
-
"
|
1761 |
-
"
|
1762 |
-
"
|
1763 |
-
"
|
1764 |
-
"\t<li><strong>Why it helps:</strong> Webmaster Verification Assistant "
|
1765 |
-
"assists you in obtaining access to webmaster portals, which can provide you "
|
1766 |
-
"with valuable SEO tools.</li>\r\n"
|
1767 |
-
"\t<li><strong>How to use it:</strong> Use a search engine to locate the "
|
1768 |
-
"webmaster portal you’re interested in, sign up at the portal, and then "
|
1769 |
-
"obtain a verification code. Once you have the code, you can paste it in "
|
1770 |
-
"here, click Save Changes, then return to the portal to verify that you own "
|
1771 |
-
"the site. Once that’s done, you'll have access to the portal’s "
|
1772 |
-
"SEO tools.</li>\r\n"
|
1773 |
-
"</ul>\r\n"
|
1774 |
-
msgstr ""
|
1775 |
-
|
1776 |
-
#: modules/meta/meta-robots.php:12
|
1777 |
-
msgid "Meta Robot Tags Editor"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: modules/
|
1781 |
-
msgid "
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: modules/
|
1785 |
-
msgid "
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: modules/
|
1789 |
-
msgid "
|
|
|
|
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: modules/
|
1793 |
msgid ""
|
1794 |
-
"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: modules/
|
1798 |
-
msgid ""
|
1799 |
-
"Don’t use this site’s Yahoo! Directory description in search "
|
1800 |
-
"results."
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: modules/
|
1804 |
-
msgid "
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: modules/
|
1808 |
-
msgid ""
|
1809 |
-
"\r\n"
|
1810 |
-
"<ul>\r\n"
|
1811 |
-
"\t<li><strong>What it does:</strong> Meta Robot Tags Editor lets you convey "
|
1812 |
-
"instructions to search engine spiders, as well as prohibit the spiders from "
|
1813 |
-
"indexing certain webpages on your blog using the <code><meta name=""
|
1814 |
-
"robots" content="noindex" /></code> tag.</li>\r\n"
|
1815 |
-
"\t<li><strong>Why it helps:</strong> The “Global” tab lets you "
|
1816 |
-
"stop DMOZ or Yahoo! Directory from overriding your custom meta descriptions, "
|
1817 |
-
"as well as prevent spiders from caching your site if you so desire. The "
|
1818 |
-
"“Default Values” tab lets you deindex entire sections of your "
|
1819 |
-
"site that contain content unimportant to visitors (e.g. the administration "
|
1820 |
-
"section), or sections of your site that mostly contain duplicate content (e."
|
1821 |
-
"g. date archives). The editor tabs can do something similar, but for "
|
1822 |
-
"individual content items. By removing webpages from search results that "
|
1823 |
-
"visitors find unhelpful, you can help increase the focus on your more useful "
|
1824 |
-
"content.</li>\r\n"
|
1825 |
-
"\t<li><strong>How to use it:</strong> Adjust the settings as desired, and "
|
1826 |
-
"then click Save Changes. You can refer to the “Settings Help” "
|
1827 |
-
"tab for information on the settings available. You can also use the editor "
|
1828 |
-
"tabs to deindex individual content items on your site as well as enable the "
|
1829 |
-
"“nofollow” meta parameter that will nullify all outgoing links "
|
1830 |
-
"on a specific webpage.</li>\r\n"
|
1831 |
-
"</ul>\r\n"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: modules/
|
1835 |
msgid ""
|
1836 |
-
"
|
1837 |
-
"
|
1838 |
-
"\r\n"
|
1839 |
-
"<ul>\r\n"
|
1840 |
-
"\t<li>\r\n"
|
1841 |
-
"\t\t<strong>Global: Spider Instructions</strong>\r\n"
|
1842 |
-
"\t\t<ul>\r\n"
|
1843 |
-
"\t\t\t<li><strong>Don't use this site's Open Directory / Yahoo! Directory "
|
1844 |
-
"description in search results.</strong> — If your site is listed in "
|
1845 |
-
"the <a href='http://www.dmoz.org/' target='_blank'>Open Directory (DMOZ)</a> "
|
1846 |
-
"or the <a href='http://dir.yahoo.com/' target='_blank'>Yahoo! Directory</a>, "
|
1847 |
-
"some search engines may use your directory listing as the meta description. "
|
1848 |
-
"These boxes tell search engines not to do that and will give you full "
|
1849 |
-
"control over your meta descriptions. These settings have no effect if your "
|
1850 |
-
"site isn’t listed in the Open Directory or Yahoo! Directory "
|
1851 |
-
"respectively.</li>\r\n"
|
1852 |
-
"\t\t\t<li>Don’t cache or archive this site.</li> — When you "
|
1853 |
-
"check this box, Meta Editor will ask search engines (Google, Yahoo!, Bing, "
|
1854 |
-
"etc.) and archivers (Archive.org, etc.) to <em>not</em> make cached or "
|
1855 |
-
"archived “copies” of your site.</li>\r\n"
|
1856 |
-
"\t\t</ul>\r\n"
|
1857 |
-
"\t</li>\r\n"
|
1858 |
-
"\t<li>\r\n"
|
1859 |
-
"\t\t<strong>Default Values: Prevent indexing of...</strong>\r\n"
|
1860 |
-
"\t\t<ul>\r\n"
|
1861 |
-
"\t\t\t<li><strong>Administration back-end pages</strong> — Tells "
|
1862 |
-
"spiders not to index the administration area (the part you’re in now), "
|
1863 |
-
"in the unlikely event a spider somehow gains access to the administration. "
|
1864 |
-
"Recommended.</li>\r\n"
|
1865 |
-
"\t\t\t<li><strong>Author archives</strong> — Tells spiders not to "
|
1866 |
-
"index author archives. Useful if your blog only has one author.</li>\r\n"
|
1867 |
-
"\t\t\t<li><strong>Blog search pages</strong> — Tells spiders not to "
|
1868 |
-
"index the result pages of WordPress's blog search function. Recommended.</li>"
|
1869 |
-
"\r\n"
|
1870 |
-
"\t\t\t<li><strong>Category archives</strong> — Tells spiders not to "
|
1871 |
-
"index category archives. Recommended only if you don't use categories.</li>"
|
1872 |
-
"\r\n"
|
1873 |
-
"\t\t\t<li><strong>Comment feeds</strong> — Tells spiders not to index "
|
1874 |
-
"the RSS feeds that exist for every post's comments. (These comment feeds are "
|
1875 |
-
"totally separate from your normal blog feeds.)</li>\r\n"
|
1876 |
-
"\t\t\t<li><strong>Comment subpages</strong> — Tells spiders not to "
|
1877 |
-
"index posts' comment subpages.</li>\r\n"
|
1878 |
-
"\t\t\t<li><strong>Date-based archives</strong> — Tells spiders not to "
|
1879 |
-
"index day/month/year archives. Recommended, since these pages have little "
|
1880 |
-
"keyword value.</li>\r\n"
|
1881 |
-
"\t\t\t<li><strong>Subpages of the homepage</strong> — Tells spiders "
|
1882 |
-
"not to index the homepage's subpages (page 2, page 3, etc). Recommended.</li>"
|
1883 |
-
"\r\n"
|
1884 |
-
"\t\t\t<li><strong>Tag archives</strong> — Tells spiders not to index "
|
1885 |
-
"tag archives. Recommended only if you don't use tags.</li>\r\n"
|
1886 |
-
"\t\t\t<li>User login/registration pages</strong> — Tells spiders not "
|
1887 |
-
"to index WordPress's user login and registration pages. Recommended.</li>\r\n"
|
1888 |
-
"\t\t</ul>\r\n"
|
1889 |
-
"\t</li>\r\n"
|
1890 |
-
"\t<li>\r\n"
|
1891 |
-
"\t\t<strong>Editor Tabs (Posts/Pages/etc.)</strong>\r\n"
|
1892 |
-
"\t\t<ul>\r\n"
|
1893 |
-
"\t\t\t<li><strong>Noindex</strong> — Checking this for an item will "
|
1894 |
-
"ask search engines to remove that item’s webpage from their indices. "
|
1895 |
-
"Use this to remove pages that you don’t want showing up in search "
|
1896 |
-
"results (such as a Privacy Policy page, for example).</li>\r\n"
|
1897 |
-
"\t\t\t<li><strong>Nofollow</strong> — Checking this for an item will "
|
1898 |
-
"tell search engines to ignore the links to other webpages that are on that "
|
1899 |
-
"item’s webpage. Note: this is page-level “meta nofollow,” "
|
1900 |
-
"not to be confused with link-level “rel nofollow.”</li>\r\n"
|
1901 |
-
"\t\t</ul>\r\n"
|
1902 |
-
"\t</li>\r\n"
|
1903 |
-
"</ul>\r\n"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: modules/
|
1907 |
-
#: modules/meta/meta-keywords.php:197
|
1908 |
msgid ""
|
1909 |
-
"
|
1910 |
-
"
|
1911 |
-
"
|
1912 |
-
|
1913 |
-
|
1914 |
-
"
|
1915 |
-
"a> and edit <code>header.php</code>. Delete or comment-out any <code><"
|
1916 |
-
"meta></code> tags.</p>\r\n"
|
1917 |
-
"\t\t<p>If the problem persists, try disabling other SEO plugins that may be "
|
1918 |
-
"generating meta tags.</p>\r\n"
|
1919 |
-
"\t\t<p>Troubleshooting tip: Go to <a href='options-general.php?page=seo-"
|
1920 |
-
"ultimate'>Settings ⇒ SEO Ultimate</a> and enable the “Insert "
|
1921 |
-
"comments around HTML code insertions” option. This will mark SEO "
|
1922 |
-
"Ultimate’s meta tags with comments, allowing you to see which meta "
|
1923 |
-
"tags are generated by SEO Ultimate and which aren’t.</p>\r\n"
|
1924 |
-
"\t</li>\r\n"
|
1925 |
-
"</ul>\r\n"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: modules/
|
1929 |
-
msgid "
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: modules/
|
1933 |
-
msgid "
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#: modules/
|
1937 |
-
msgid "
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: modules/
|
1941 |
-
msgid "
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: modules/
|
1945 |
-
msgid "
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: modules/
|
1949 |
-
msgid "
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: modules/
|
1953 |
-
msgid "
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: modules/
|
1957 |
-
msgid "
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: modules/
|
1961 |
-
msgid "
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: modules/
|
1965 |
-
msgid "
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: modules/
|
1969 |
-
msgid "
|
|
|
|
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: modules/
|
1973 |
-
msgid "
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: modules/
|
1977 |
-
msgid "
|
|
|
|
|
|
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: modules/
|
1981 |
-
msgid "
|
|
|
|
|
|
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: modules/
|
1985 |
msgid ""
|
1986 |
-
"
|
1987 |
-
"
|
1988 |
-
"
|
1989 |
-
"is important to ensuring a good search results clickthrough rate."
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#: modules/
|
1993 |
msgid ""
|
1994 |
-
"
|
1995 |
-
"
|
1996 |
-
"\t<li><strong>What it does:</strong> Meta Descriptions Editor lets you "
|
1997 |
-
"customize the text that you want to appear under your webpages’ titles "
|
1998 |
-
"in search results.</li>\r\n"
|
1999 |
-
"\t<li><strong>Why it helps:</strong> Getting ranked isn’t enough; once "
|
2000 |
-
"you're ranked, you need visitors to click on your site in the results. "
|
2001 |
-
"That’s where meta descriptions can help. When you provide text that "
|
2002 |
-
"makes searchers want to visit your site, you can increase your SERP "
|
2003 |
-
"clickthrough rate and thus increase search traffic.</li>\r\n"
|
2004 |
-
"\t<li><strong>How to use it:</strong> Enter meta descriptions for your "
|
2005 |
-
"homepage, posts, pages, etc. as desired, and then click Save Changes. You "
|
2006 |
-
"can also customize the meta data of an individual post or page by using the "
|
2007 |
-
"textboxes that Meta Editor adds to the post/page editors.</li>\r\n"
|
2008 |
-
"</ul>\r\n"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: modules/
|
2012 |
msgid ""
|
2013 |
-
"
|
2014 |
-
"
|
2015 |
-
"\r\n"
|
2016 |
-
"<ul>\r\n"
|
2017 |
-
"\t<li><strong>Blog Homepage Meta Description</strong> — When your blog "
|
2018 |
-
"homepage appears in search results, it’ll have a title and a "
|
2019 |
-
"description. When you insert content into the description field below, the "
|
2020 |
-
"Meta Editor will add code to your blog homepage (the <code><meta "
|
2021 |
-
"name="description" /></code> tag) that asks search engines to "
|
2022 |
-
"use what you’ve entered as the homepage’s search results "
|
2023 |
-
"description.</li>\r\n"
|
2024 |
-
"\t<li><strong>Use this blog’s tagline as the default homepage "
|
2025 |
-
"description.</strong> — If this box is checked and if the Blog "
|
2026 |
-
"Homepage Meta Description field is empty, Meta Editor will use your "
|
2027 |
-
"blog’s tagline as the meta description. You can edit the blog’s "
|
2028 |
-
"tagline under <a href='options-general.php'>Settings ⇒ General</a>.</li>"
|
2029 |
-
"\r\n"
|
2030 |
-
"</ul>\r\n"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
-
#: modules/
|
2034 |
msgid ""
|
2035 |
-
"
|
2036 |
-
"
|
2037 |
-
"\t<li><strong>How do I edit the meta description of my homepage?</"
|
2038 |
-
"strong><br />If you are using a “blog homepage” (the default "
|
2039 |
-
"option of showing your blog posts on your homepage), just use the Blog "
|
2040 |
-
"Homepage field. If you have configured your <a href='options-reading."
|
2041 |
-
"php'>Settings ⇒ Reading</a> section to use a “frontpage” (i."
|
2042 |
-
"e. a Page as your homepage), just edit that Page’s meta description on "
|
2043 |
-
"the “Pages” tab.</li>\r\n"
|
2044 |
-
"</ul>\r\n"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: modules/
|
2048 |
-
msgid "
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: modules/
|
2052 |
-
msgid "
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: modules/
|
2056 |
-
msgid "
|
|
|
|
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: modules/
|
2060 |
-
msgid "
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: modules/
|
2064 |
-
msgid "
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: modules/
|
2068 |
-
msgid "
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: modules/
|
2072 |
-
msgid "
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: modules/
|
2076 |
-
msgid ""
|
2077 |
-
"<strong>Keywords</strong> — The value of the meta keywords tag. The "
|
2078 |
-
"keywords list gives search engines a hint as to what this post/page is "
|
2079 |
-
"about. Be sure to separate keywords with commas, like so: <samp>one,two,"
|
2080 |
-
"three</samp>."
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2084 |
msgid ""
|
2085 |
"\r\n"
|
2086 |
-
"<p>
|
2087 |
-
"
|
2088 |
-
"don’t give meta keywords much weight, but the option is there if you "
|
2089 |
-
"want to use it. You can customize the meta keywords of an individual post or "
|
2090 |
-
"page by using the textboxes that Meta Editor adds to the post/page editors.</"
|
2091 |
-
"p>\r\n"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: modules/
|
|
|
|
|
|
|
|
|
2095 |
msgid ""
|
2096 |
"\r\n"
|
|
|
2097 |
"<ul>\r\n"
|
2098 |
-
"\t<li><strong>
|
2099 |
-
"
|
2100 |
-
"
|
2101 |
-
"
|
2102 |
-
"
|
2103 |
-
"
|
2104 |
-
"
|
2105 |
-
"
|
2106 |
-
"
|
2107 |
-
"
|
|
|
2108 |
"</ul>\r\n"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: modules/
|
2112 |
msgid ""
|
2113 |
"\r\n"
|
2114 |
"<ul>\r\n"
|
2115 |
"\t<li>\r\n"
|
2116 |
-
"\t\t<p><strong>
|
2117 |
-
"
|
2118 |
-
"
|
2119 |
-
"
|
2120 |
-
"
|
2121 |
-
"
|
2122 |
-
"
|
2123 |
-
"
|
|
|
|
|
|
|
2124 |
"\t</li>\r\n"
|
2125 |
-
"\t<li><strong>What happens if I add a global keyword that I previously "
|
2126 |
-
"assigned to individual posts or pages?</strong><br />Don’t worry; Meta "
|
2127 |
-
"Keywords Editor will remove duplicate keywords automatically.</li>\r\n"
|
2128 |
"</ul>\r\n"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: modules/
|
2132 |
-
msgid "
|
2133 |
-
msgstr ""
|
2134 |
-
|
2135 |
-
#: modules/class.su-importmodule.php:50
|
2136 |
-
msgid ""
|
2137 |
-
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
2138 |
-
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
2139 |
-
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
2140 |
-
"Ultimate."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: modules/
|
2144 |
-
msgid "
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: modules/
|
2148 |
-
msgid ""
|
2149 |
-
"What should the import tool do if it tries to move over a post’s %s "
|
2150 |
-
"data, but different data already exists in the corresponding SEO Ultimate "
|
2151 |
-
"fields?"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: modules/
|
2155 |
-
msgid "
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: modules/
|
2159 |
-
msgid "
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: modules/
|
2163 |
-
msgid "
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: modules/
|
2167 |
-
msgid "
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: modules/
|
2171 |
-
msgid ""
|
2172 |
-
"When the migration tool successfully copies a post’s %1$s data over to "
|
2173 |
-
"SEO Ultimate, what should it do with the old %1$s data?"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: modules/
|
2177 |
-
msgid "
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: modules/
|
2181 |
-
msgid "
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: modules/
|
2185 |
-
msgid "
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: modules/
|
2189 |
-
msgid ""
|
2190 |
-
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
2191 |
-
"target=\"_blank\">backup your database</a> before proceeding!"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: modules/
|
2195 |
-
msgid "
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: modules/
|
2199 |
-
msgid "
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: modules/
|
2203 |
-
msgid "
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: modules/
|
2207 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: modules/
|
2211 |
-
msgid "
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: modules/
|
2215 |
-
msgid "
|
2216 |
-
|
2217 |
-
|
2218 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2219 |
|
2220 |
-
#: modules/
|
2221 |
-
msgid "
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2225 |
|
2226 |
-
#: modules/
|
2227 |
msgid ""
|
2228 |
-
"
|
2229 |
-
"
|
2230 |
-
|
2231 |
-
"
|
2232 |
-
"
|
2233 |
-
|
2234 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2235 |
|
2236 |
-
#: modules/
|
2237 |
-
msgid "
|
2238 |
-
|
2239 |
-
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
2240 |
-
msgstr[0] ""
|
2241 |
-
msgstr[1] ""
|
2242 |
|
2243 |
-
#: modules/
|
2244 |
-
msgid "
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#: modules/
|
2248 |
-
msgid "
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
|
2252 |
-
|
2253 |
-
#: modules/sds-blog/sds-blog.php:49
|
2254 |
-
msgid "SEO Design Solutions"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: modules/
|
2258 |
-
msgid ""
|
2259 |
-
"The search engine optimization articles below are loaded from the website of "
|
2260 |
-
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
2261 |
-
"an article’s title to read it."
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: modules/
|
2265 |
-
msgid "
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: modules/
|
2269 |
-
msgid "
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: modules/
|
2273 |
-
msgid "
|
|
|
|
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: modules/
|
2277 |
-
msgid "
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: modules/
|
2281 |
-
msgid "
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: modules/
|
2285 |
-
msgid "
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: modules/
|
2289 |
-
msgid "
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: modules/
|
2293 |
-
msgid "
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: modules/
|
2297 |
-
msgid "
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: modules/
|
2301 |
-
msgid "
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: modules/
|
2305 |
-
msgid "
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: modules/
|
2309 |
-
msgid "
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: modules/
|
2313 |
-
msgid "
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: modules/
|
2317 |
-
msgid "
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: modules/
|
2321 |
-
msgid ""
|
2322 |
-
"You can stop search engines from following a link by typing in a mask for "
|
2323 |
-
"its URL."
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: modules/
|
2327 |
-
msgid "
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: modules/
|
2331 |
-
msgid "
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: modules/
|
2335 |
-
msgid "
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: modules/
|
2339 |
-
msgid "
|
|
|
|
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: modules/
|
2343 |
-
msgid "
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: modules/
|
2347 |
-
msgid "
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: modules/
|
2351 |
-
msgid "
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: modules/
|
2355 |
-
msgid "
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: modules/
|
2359 |
-
msgid "
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: modules/
|
2363 |
-
msgid ""
|
2364 |
-
"\r\n"
|
2365 |
-
"<ul>\r\n"
|
2366 |
-
"\t<li><strong>What it does:</strong> Linkbox Inserter can add linkboxes to "
|
2367 |
-
"your posts/pages.</li>\r\n"
|
2368 |
-
"\t<li><strong>Why it helps:</strong> Linkboxes contain HTML code that "
|
2369 |
-
"visitors can use to link to your site. This is a great way to encourage SEO-"
|
2370 |
-
"beneficial linking activity.</li>\r\n"
|
2371 |
-
"\t<li><strong>How to use it:</strong> Use the checkboxes to enable the "
|
2372 |
-
"Linkbox Inserter in various areas of your site. Customize the HTML if "
|
2373 |
-
"desired. Click “Save Changes” when finished.</li>\r\n"
|
2374 |
-
"</ul>\r\n"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: modules/
|
2378 |
msgid ""
|
2379 |
-
"
|
2380 |
-
"
|
2381 |
-
"
|
2382 |
-
"<ul>\r\n"
|
2383 |
-
"\t<li>\r\n"
|
2384 |
-
"\t\t<strong>Display linkboxes...</strong>\r\n"
|
2385 |
-
"\t\t<ul>\r\n"
|
2386 |
-
"\t\t\t<li><strong>At the end of posts</strong> — Adds the linkbox HTML "
|
2387 |
-
"to the end of all posts (whether they're displayed on the blog homepage, in "
|
2388 |
-
"archives, or by themselves).</li>\r\n"
|
2389 |
-
"\t\t\t<li><strong>At the end of pages</strong> — Adds the linkbox HTML "
|
2390 |
-
"to the end of all Pages.</li>\r\n"
|
2391 |
-
"\t\t\t<li><strong>When called by the su_linkbox hook</strong> — For "
|
2392 |
-
"more fine-tuned control over where linkboxes appear, enable this option and "
|
2393 |
-
"add <code><?php do_action('su_linkbox'); ?></code> to your theme. You "
|
2394 |
-
"can also add an ID parameter to display the linkbox of a particular post/"
|
2395 |
-
"page; for example: <code><?php do_action('su_linkbox', 123); ?></code>."
|
2396 |
-
"</li>\r\n"
|
2397 |
-
"\t\t</ul>\r\n"
|
2398 |
-
"\t</li>\r\n"
|
2399 |
-
"\t<li>\r\n"
|
2400 |
-
"\t\t<strong>HTML</strong> — The HTML that will be outputted to display "
|
2401 |
-
"the linkboxes. The HTML field supports these variables:\r\n"
|
2402 |
-
"\t\t<ul>\r\n"
|
2403 |
-
"\t\t\t<li>{id} — The ID of the current post/page, or the ID passed to "
|
2404 |
-
"the action hook call.</li>\r\n"
|
2405 |
-
"\t\t\t<li>{url} — The permalink URL of the post/page.</li>\r\n"
|
2406 |
-
"\t\t\t<li>{title} — The title of the post/page.</li>\r\n"
|
2407 |
-
"\t\t</ul>\r\n"
|
2408 |
-
"\t</li>\r\n"
|
2409 |
-
"</ul>\r\n"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
#: modules/titles/titles.php:12
|
@@ -2774,580 +2886,490 @@ msgid ""
|
|
2774 |
"</ul>\r\n"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
-
#: modules/
|
2778 |
-
msgid "
|
2779 |
-
msgstr ""
|
2780 |
-
|
2781 |
-
#: modules/user-code/user-code.php:27
|
2782 |
-
msgid "Everywhere"
|
2783 |
-
msgstr ""
|
2784 |
-
|
2785 |
-
#: modules/user-code/user-code.php:34
|
2786 |
-
msgid "<head> Tag"
|
2787 |
-
msgstr ""
|
2788 |
-
|
2789 |
-
#: modules/user-code/user-code.php:35
|
2790 |
-
msgid "Before Item Content"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
-
#: modules/
|
2794 |
-
msgid "
|
2795 |
msgstr ""
|
2796 |
|
2797 |
-
#: modules/
|
2798 |
-
msgid "
|
2799 |
msgstr ""
|
2800 |
|
2801 |
-
#: modules/
|
2802 |
-
msgid "
|
2803 |
msgstr ""
|
2804 |
|
2805 |
-
#: modules/
|
2806 |
-
msgid ""
|
2807 |
-
"\r\n"
|
2808 |
-
"<ul>\r\n"
|
2809 |
-
"\t<li><strong>What it does:</strong> Code Inserter can add custom HTML code "
|
2810 |
-
"to various parts of your site.</li>\r\n"
|
2811 |
-
"\t<li>\r\n"
|
2812 |
-
"\t\t<p><strong>Why it helps:</strong> Code Inserter is useful for inserting "
|
2813 |
-
"third-party code that can improve the SEO or user experience of your site. "
|
2814 |
-
"For example, you can use Code Inserter to add Google Analytics code to your "
|
2815 |
-
"footer, Feedburner FeedFlares or social media widgets after your posts, or "
|
2816 |
-
"Google AdSense section targeting code before/after your content.</p>\r\n"
|
2817 |
-
"\t\t<p>Using Code Inserter is easier than editing your theme manually "
|
2818 |
-
"because your custom code is stored in one convenient location and will be "
|
2819 |
-
"added to your site even if you change your site’s theme.</p>\r\n"
|
2820 |
-
"\t</li>\r\n"
|
2821 |
-
"\t<li><strong>How to use it:</strong> Just paste the desired HTML code into "
|
2822 |
-
"the appropriate fields and then click Save Changes.</li>\r\n"
|
2823 |
-
"</ul>\r\n"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: modules/
|
2827 |
msgid ""
|
2828 |
-
"
|
2829 |
-
"
|
2830 |
-
"\t<li><strong>Why doesn't my code appear on my site?</strong><br />It’"
|
2831 |
-
"s possible that your theme doesn't have the proper “hooks,” "
|
2832 |
-
"which are pieces of code that let WordPress plugins insert custom HTML into "
|
2833 |
-
"your theme. <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' "
|
2834 |
-
"target='_blank'>Click here</a> for information on how to check your theme "
|
2835 |
-
"and add the hooks if needed.</li>\r\n"
|
2836 |
-
"</ul>\r\n"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
-
#: modules/
|
2840 |
-
msgid "
|
2841 |
msgstr ""
|
2842 |
|
2843 |
-
#: modules/
|
2844 |
msgid ""
|
2845 |
-
"
|
2846 |
-
"
|
2847 |
-
msgstr ""
|
2848 |
-
|
2849 |
-
#: modules/rich-snippets/rich-snippets.php:28
|
2850 |
-
msgid "Data Format"
|
2851 |
-
msgstr ""
|
2852 |
-
|
2853 |
-
#: modules/rich-snippets/rich-snippets.php:29
|
2854 |
-
msgid "Categories/Tags That Indicate Reviews"
|
2855 |
-
msgstr ""
|
2856 |
-
|
2857 |
-
#: modules/rich-snippets/rich-snippets.php:37
|
2858 |
-
msgid "Microformats (recommended)"
|
2859 |
-
msgstr ""
|
2860 |
-
|
2861 |
-
#: modules/rich-snippets/rich-snippets.php:43
|
2862 |
-
msgid "HTML5 Microdata"
|
2863 |
-
msgstr ""
|
2864 |
-
|
2865 |
-
#: modules/rich-snippets/rich-snippets.php:49
|
2866 |
-
msgid "RDFa"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#: modules/
|
2870 |
-
|
2871 |
-
msgid "Review"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: modules/
|
2875 |
-
msgid "
|
|
|
|
|
|
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: modules/
|
2879 |
-
msgid "
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: modules/
|
2883 |
-
msgid "
|
|
|
|
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: modules/
|
2887 |
-
msgid "
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: modules/
|
2891 |
-
|
2892 |
-
|
|
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: modules/
|
2896 |
-
msgid "
|
|
|
|
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: modules/
|
2900 |
-
msgid "
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: modules/
|
2904 |
-
msgid "
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: modules/
|
2908 |
-
msgid "
|
|
|
|
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: modules/
|
2912 |
-
msgid "
|
|
|
|
|
|
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: modules/
|
2916 |
-
msgid "
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: modules/
|
2920 |
-
msgid "
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: modules/
|
2924 |
-
msgid "
|
2925 |
msgstr ""
|
2926 |
|
2927 |
-
#: modules/
|
2928 |
-
msgid "
|
2929 |
msgstr ""
|
2930 |
|
2931 |
-
#: modules/
|
2932 |
-
msgid "
|
|
|
|
|
2933 |
msgstr ""
|
2934 |
|
2935 |
-
#: modules/
|
2936 |
-
msgid "
|
2937 |
msgstr ""
|
2938 |
|
2939 |
-
#: modules/
|
2940 |
-
msgid "
|
|
|
|
|
2941 |
msgstr ""
|
2942 |
|
2943 |
-
#: modules/
|
2944 |
-
msgid "
|
|
|
|
|
2945 |
msgstr ""
|
2946 |
|
2947 |
-
#: modules/
|
2948 |
msgid ""
|
2949 |
"\r\n"
|
2950 |
"<ul>\r\n"
|
2951 |
-
"\t<li><strong>What it does:</strong>
|
2952 |
-
"
|
2953 |
-
"
|
2954 |
-
"
|
2955 |
-
"
|
2956 |
-
"
|
2957 |
-
"
|
2958 |
-
"
|
2959 |
-
"\t<li><strong>
|
2960 |
-
"
|
2961 |
-
"
|
2962 |
-
"\t<li><p><strong>How it works:</strong> When editing one of your posts or "
|
2963 |
-
"pages, see if your content fits one of the available rich snippet types (for "
|
2964 |
-
"example, a review). If so, select that type from the “Rich Snippet "
|
2965 |
-
"Type” dropdown box. Once you select the applicable type, additional "
|
2966 |
-
"options will appear that vary based on the type selected. For example, a "
|
2967 |
-
"“Star Rating” field will appear if you select the “"
|
2968 |
-
"Review” type.</p><p>Once you save the post/page, Rich Snippet Creator "
|
2969 |
-
"will add the special code to it. You can remove this code at any time by "
|
2970 |
-
"selecting “None” from the “Rich Snippet Type” "
|
2971 |
-
"dropdown and resaving the post/page.</p></li>\r\n"
|
2972 |
"</ul>\r\n"
|
2973 |
msgstr ""
|
2974 |
|
2975 |
-
#: modules/
|
2976 |
msgid ""
|
2977 |
"\r\n"
|
2978 |
"<ul>\r\n"
|
2979 |
-
"\t<li><strong>
|
2980 |
-
"
|
2981 |
-
"
|
2982 |
-
"
|
2983 |
-
"
|
2984 |
-
"
|
2985 |
-
"
|
2986 |
-
"
|
2987 |
-
"post or page, then Rich Snippet Creator will automatically set its default "
|
2988 |
-
"type to “Review” (instead of “None”) if it has a "
|
2989 |
-
"category or tag whose name is in this list (the default list is “"
|
2990 |
-
"Reviews” and “Review”). Put one category/tag name per line."
|
2991 |
-
"</li>\r\n"
|
2992 |
"</ul>\r\n"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
-
#: modules/
|
2996 |
msgid ""
|
2997 |
"\r\n"
|
2998 |
"<ul>\r\n"
|
2999 |
-
"\t<li><
|
3000 |
-
"
|
3001 |
-
"
|
3002 |
-
"
|
3003 |
-
"
|
3004 |
-
"
|
3005 |
-
"
|
3006 |
-
"
|
3007 |
-
"
|
3008 |
-
"
|
3009 |
-
"
|
3010 |
-
"li>\r\n"
|
3011 |
"</ul>\r\n"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: modules/
|
3015 |
-
msgid "
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: modules/
|
3019 |
msgid ""
|
3020 |
-
"
|
3021 |
-
"permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
|
3022 |
msgstr ""
|
3023 |
|
3024 |
-
#: modules/
|
3025 |
-
msgid "
|
3026 |
msgstr ""
|
3027 |
|
3028 |
-
#: modules/
|
3029 |
-
msgid "
|
3030 |
msgstr ""
|
3031 |
|
3032 |
-
#: modules/
|
3033 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
#:
|
3037 |
-
msgid "
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#:
|
3041 |
-
msgid "
|
3042 |
msgstr ""
|
3043 |
|
3044 |
-
#:
|
3045 |
-
msgid "
|
3046 |
msgstr ""
|
3047 |
|
3048 |
-
#:
|
3049 |
-
msgid ""
|
3050 |
-
"If a term archive and a Page with the same slug end up having the same URL "
|
3051 |
-
"because of the term’s base being removed, the URL should be given to "
|
3052 |
-
"the %s."
|
3053 |
msgstr ""
|
3054 |
|
3055 |
-
#:
|
3056 |
-
msgid "
|
3057 |
msgstr ""
|
3058 |
|
3059 |
-
#:
|
3060 |
-
msgid "
|
3061 |
msgstr ""
|
3062 |
|
3063 |
-
#:
|
3064 |
-
|
|
|
3065 |
msgstr ""
|
3066 |
|
3067 |
-
#:
|
3068 |
-
msgid "
|
3069 |
msgstr ""
|
3070 |
|
3071 |
-
#:
|
3072 |
-
msgid "
|
3073 |
msgstr ""
|
3074 |
|
3075 |
-
#:
|
3076 |
-
msgid ""
|
3077 |
-
"WordPress is configured to block search engines. This will nullify your "
|
3078 |
-
"site’s SEO and should be resolved immediately."
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#:
|
3082 |
-
msgid "
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3086 |
msgid ""
|
3087 |
-
"It
|
3088 |
-
"
|
3089 |
msgstr ""
|
3090 |
|
3091 |
-
#:
|
3092 |
-
msgid "
|
3093 |
msgstr ""
|
3094 |
|
3095 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3096 |
msgid ""
|
3097 |
-
"
|
3098 |
-
"
|
3099 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#:
|
3103 |
-
msgid "
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#:
|
3107 |
-
msgid ""
|
3108 |
-
"Including a version of the post’s title helps provide keyword-rich "
|
3109 |
-
"URLs."
|
3110 |
msgstr ""
|
3111 |
|
3112 |
-
#:
|
3113 |
-
msgid "
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
#:
|
3117 |
-
msgid ""
|
3118 |
-
"It is highly recommended that you include the %postname% variable in the "
|
3119 |
-
"permalink structure."
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#:
|
3123 |
-
msgid ""
|
3124 |
-
"Settings Monitor analyzes your blog’s settings and notifies you of any "
|
3125 |
-
"problems. If any issues are found, they will show up in red or yellow below."
|
3126 |
msgstr ""
|
3127 |
|
3128 |
-
#:
|
3129 |
-
msgid "
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#:
|
3133 |
-
msgid "
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#:
|
3137 |
-
msgid ""
|
3138 |
-
"A .htaccess file exists, but it’s not writable. You can edit it here "
|
3139 |
-
"once the file permissions are corrected."
|
3140 |
msgstr ""
|
3141 |
|
3142 |
-
#:
|
3143 |
-
msgid ""
|
3144 |
-
"WordPress won’t be able to display your robots.txt file because the "
|
3145 |
-
"default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
|
3146 |
-
"structure</a> is in use."
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#:
|
3150 |
-
msgid "
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#:
|
3154 |
-
msgid "
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#:
|
3158 |
-
msgid "
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#:
|
3162 |
-
msgid "
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#:
|
3166 |
-
msgid ""
|
3167 |
-
"Please realize that incorrectly editing your robots.txt file could block "
|
3168 |
-
"search engines from your site."
|
3169 |
msgstr ""
|
3170 |
|
3171 |
-
#:
|
3172 |
-
msgid "
|
3173 |
msgstr ""
|
3174 |
|
3175 |
-
#:
|
3176 |
-
msgid ""
|
3177 |
-
"Also, incorrectly editing your .htaccess file could disable your entire "
|
3178 |
-
"website. Edit with caution!"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
-
#:
|
3182 |
msgid ""
|
3183 |
-
"
|
3184 |
-
"
|
|
|
|
|
3185 |
msgstr ""
|
3186 |
|
3187 |
-
#:
|
3188 |
-
msgid ""
|
3189 |
-
"\r\n"
|
3190 |
-
"<ul>\r\n"
|
3191 |
-
"\t<li><strong>What it does:</strong> The File Editor module lets you edit "
|
3192 |
-
"two important SEO-related files: robots.txt and .htaccess.</li>\r\n"
|
3193 |
-
"\t<li><strong>Why it helps:</strong> You can use the <a href='http://www."
|
3194 |
-
"robotstxt.org/robotstxt.html' target='_blank'>robots.txt file</a> to give "
|
3195 |
-
"instructions to search engine spiders. You can use the <a href='http://httpd."
|
3196 |
-
"apache.org/docs/2.2/howto/htaccess.html' target='_blank'>.htaccess file</a> "
|
3197 |
-
"to implement advanced SEO strategies (URL rewriting, regex redirects, etc.). "
|
3198 |
-
"SEO Ultimate makes editing these files easier than ever.</li>\r\n"
|
3199 |
-
"\t<li><strong>How to use it:</strong> Edit the files as desired, then click "
|
3200 |
-
"Save Changes. If you create a custom robots.txt file, be sure to enable it "
|
3201 |
-
"with the checkbox.</li>\r\n"
|
3202 |
-
"</ul>\r\n"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
-
#:
|
3206 |
-
msgid ""
|
3207 |
-
"\r\n"
|
3208 |
-
"<ul>\r\n"
|
3209 |
-
"\t<li><strong>Will my robots.txt edits remain if I disable the File Editor?</"
|
3210 |
-
"strong><br />No. On a WordPress blog, the robots.txt file is dynamically "
|
3211 |
-
"generated just like your posts and Pages. If you disable the File Editor "
|
3212 |
-
"module or the entire SEO Ultimate plugin, the File Editor won’t be "
|
3213 |
-
"able to insert your custom code into the robots.txt file anymore.</li>\r\n"
|
3214 |
-
"\t<li><strong>Will my .htaccess edits remain if I disable the File Editor?</"
|
3215 |
-
"strong><br />Yes. The .htaccess file is static. Your edits will remain even "
|
3216 |
-
"if you disable SEO Ultimate or its File Editor module.</li>\r\n"
|
3217 |
-
"</ul>\r\n"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
-
#:
|
3221 |
-
msgid ""
|
3222 |
-
"\r\n"
|
3223 |
-
"<ul>\r\n"
|
3224 |
-
"\t<li><strong>Why do I get a “500 Server Error” after using the "
|
3225 |
-
"File Editor?</strong><br />You may have inserted code into your .htaccess "
|
3226 |
-
"file that your web server can't understand. As the File Editor warns, "
|
3227 |
-
"incorrectly editing your .htaccess file can disable your entire website in "
|
3228 |
-
"this way. To restore your site, you'll need to use an FTP client (or your "
|
3229 |
-
"web host's File Manager) to edit or rename your .htaccess file. If you need "
|
3230 |
-
"help, please contact your web host.</li>\r\n"
|
3231 |
-
"\t<li><strong>Where did my .htaccess edits go?</strong><br />The .htaccess "
|
3232 |
-
"file is static, so SEO Ultimate doesn't have total control over it. It’"
|
3233 |
-
"s possible that WordPress, another plugin, or other software may overwrite "
|
3234 |
-
"your .htaccess file. If you have a backup of your blog’s files, you "
|
3235 |
-
"can try recovering your edits from there.</li>\r\n"
|
3236 |
-
"</ul>\r\n"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#:
|
3240 |
-
msgid "
|
3241 |
msgstr ""
|
3242 |
|
3243 |
-
#:
|
3244 |
-
msgid ""
|
3245 |
-
"On category archives, displays a list of child categories and/or posts in "
|
3246 |
-
"the category. Displays a list of top-level categories everywhere else. "
|
3247 |
-
"Powered by the SEO Ultimate plugin."
|
3248 |
msgstr ""
|
3249 |
|
3250 |
-
#:
|
3251 |
-
msgid "
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#:
|
3255 |
-
msgid "
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#:
|
3259 |
-
msgid "
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#:
|
3263 |
-
msgid "
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#:
|
3267 |
-
msgid "
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#:
|
3271 |
-
msgid "
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#:
|
3275 |
-
msgid ""
|
3276 |
-
"Add this widget to display Deeplink Juggernaut’s Footer Links in a "
|
3277 |
-
"widget area of your choosing rather than the default wp_footer section. "
|
3278 |
-
"Powered by the SEO Ultimate plugin."
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#:
|
3282 |
-
msgid "
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#:
|
3286 |
-
msgid "
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#:
|
3290 |
-
msgid "
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#:
|
3294 |
-
msgid "
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#:
|
3298 |
-
msgid ""
|
3299 |
-
"The Miscellaneous page contains modules that don’t have enough "
|
3300 |
-
"settings to warrant their own separate admin pages."
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#:
|
3304 |
-
msgid "
|
3305 |
msgstr ""
|
3306 |
|
3307 |
-
#:
|
3308 |
-
msgid ""
|
3309 |
-
"Generate <code><link rel="canonical" /></code> meta tags."
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#:
|
3313 |
-
msgid "
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#:
|
3317 |
-
msgid "
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#:
|
|
|
|
|
|
|
|
|
3321 |
msgid ""
|
3322 |
-
"
|
3323 |
-
"
|
3324 |
-
"
|
3325 |
-
"\t\t<p><strong>What it does:</strong> Canonicalizer improves on two "
|
3326 |
-
"WordPress features to minimize possible exact-content duplication penalties. "
|
3327 |
-
"The <code><link rel="canonical" /></code> tags setting "
|
3328 |
-
"improves on the canonical tags feature of WordPress 2.9 and above by "
|
3329 |
-
"encompassing much more of your site than just your posts and Pages.</p>\r\n"
|
3330 |
-
"\t\t<p>The nonexistent pagination redirect feature fills a gap in "
|
3331 |
-
"WordPress's built-in canonicalization functionality: for example, if a URL "
|
3332 |
-
"request is made for page 6 of a category archive, and that category doesn't "
|
3333 |
-
"have a page 6, then by default, depending on the context, WordPress will "
|
3334 |
-
"display a blank page, or it will display the content of the closest page "
|
3335 |
-
"number available, without issuing a 404 error or a 301 redirect (thus "
|
3336 |
-
"creating two or more identical webpages). This duplicate-content situation "
|
3337 |
-
"can happen when you, for example, remove many posts from a category, thus "
|
3338 |
-
"reducing the amount of pagination needed in the category's archive. The "
|
3339 |
-
"Canonicalizer's feature fixes that behavior by issuing 301 redirects to page "
|
3340 |
-
"1 of the paginated section in question.</p>\r\n"
|
3341 |
-
"\t</li>\r\n"
|
3342 |
-
"\t<li><strong>Why it helps:</strong> These features will point Google to the "
|
3343 |
-
"correct URL for your homepage and each of your posts, Pages, categories, "
|
3344 |
-
"tags, date archives, and author archives. That way, if Google comes across "
|
3345 |
-
"an alternate URL by which one of those items can be accessed, it will be "
|
3346 |
-
"able to find the correct URL and won't penalize you for having two identical "
|
3347 |
-
"pages on your site.</li>\r\n"
|
3348 |
-
"\t<li><strong>How to use it:</strong> Just check all three checkboxes and "
|
3349 |
-
"click Save Changes. SEO Ultimate will do the rest.</li>\r\n"
|
3350 |
-
"</ul>\r\n"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
#. Plugin URI of the plugin/theme
|
1 |
+
# Copyright (C) 2011 SEO Ultimate
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: SEO Ultimate 7.2.1\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2011-12-31 00:33:26+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2011-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: modules/modules/modules.php:12
|
16 |
+
msgid "Module Manager"
|
|
|
|
|
|
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: modules/modules/modules.php:13
|
20 |
+
msgid "Modules"
|
|
|
|
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: modules/modules/modules.php:41
|
24 |
+
msgid ""
|
25 |
+
"SEO Ultimate’s features are located in groups called “modules."
|
26 |
+
"” By default, most of these modules are listed in the “"
|
27 |
+
"SEO” menu on the left. Whenever you’re working with a module, "
|
28 |
+
"you can view documentation by clicking the tabs in the upper-right-hand "
|
29 |
+
"corner of your administration screen."
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: modules/modules/modules.php:43
|
33 |
msgid ""
|
34 |
+
"The Module Manager lets you disable or hide modules you don’t use. "
|
35 |
+
"You can also silence modules from displaying bubble alerts on the menu."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: modules/modules/modules.php:47
|
39 |
+
msgid "Modules updated."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: modules/modules/modules.php:52
|
43 |
+
msgid "Status"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: modules/modules/modules.php:53
|
47 |
+
msgid "Module"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: modules/modules/modules.php:66
|
51 |
+
msgid "Enabled"
|
|
|
|
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: modules/modules/modules.php:67
|
55 |
+
msgid "Silenced"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: modules/modules/modules.php:68
|
59 |
+
msgid "Hidden"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: modules/modules/modules.php:69
|
63 |
+
msgid "Disabled"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: modules/modules/modules.php:161
|
67 |
+
msgid "Options Help"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: modules/modules/modules.php:162
|
71 |
+
msgid ""
|
72 |
+
"\r\n"
|
73 |
+
"<p>The Module Manager lets you customize the visibility and accessibility of "
|
74 |
+
"each module; here are the options available:</p>\r\n"
|
75 |
+
"<ul>\r\n"
|
76 |
+
"\t<li><strong>Enabled</strong> — The default option. The module will "
|
77 |
+
"be fully enabled and accessible.</li>\r\n"
|
78 |
+
"\t<li><strong>Silenced</strong> — The module will be enabled and "
|
79 |
+
"accessible, but it won't be allowed to display numeric bubble alerts on the "
|
80 |
+
"menu.</li>\r\n"
|
81 |
+
"\t<li><strong>Hidden</strong> — The module's functionality will be "
|
82 |
+
"enabled, but the module won't be visible on the SEO menu. You will still be "
|
83 |
+
"able to access the module's admin page by clicking on its title in the "
|
84 |
+
"Module Manager table.</li>\r\n"
|
85 |
+
"\t<li><strong>Disabled</strong> — The module will be completely "
|
86 |
+
"disabled and inaccessible.</li>\r\n"
|
87 |
+
"</ul>\r\n"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: modules/modules/modules.php:174 modules/slugs/slugs.php:87
|
91 |
+
#: modules/meta/meta-keywords.php:183 modules/meta/meta-descriptions.php:197
|
92 |
+
#: modules/more-links/more-links.php:105 modules/more-links/more-links.php:116
|
93 |
+
#: modules/settings/settings.php:41 modules/titles/titles.php:442
|
94 |
+
#: modules/files/files.php:155
|
95 |
+
msgid "FAQ"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: modules/modules/modules.php:175
|
99 |
+
msgid ""
|
100 |
+
"\r\n"
|
101 |
+
"<ul>\r\n"
|
102 |
+
"\t<li><strong>What are modules?</strong><br />SEO Ultimate’s features "
|
103 |
+
"are divided into groups called “modules.” SEO Ultimate’s "
|
104 |
+
"“Module Manager” lets you enable or disable each of these groups "
|
105 |
+
"of features. This way, you can pick-and-choose which SEO Ultimate features "
|
106 |
+
"you want.</li>\r\n"
|
107 |
+
"\t<li><strong>Can I access a module again after I’ve hidden it?</"
|
108 |
+
"strong><br />Yes. Just go to the Module Manager and click the module’s "
|
109 |
+
"title to open its admin page. If you’d like to put the module back in "
|
110 |
+
"the “SEO” menu, just re-enable the module in the Module Manager "
|
111 |
+
"and click “Save Changes.”</li>\r\n"
|
112 |
+
"\t<li><strong>How do I disable the number bubbles on the “SEO” "
|
113 |
+
"menu?</strong><br />Just go to the Module Manager and select the “"
|
114 |
+
"Silenced” option for any modules generating number bubbles. Then click "
|
115 |
+
"“Save Changes.”</li>\r\n"
|
116 |
+
"</ul>\r\n"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: modules/linkbox/linkbox.php:12
|
120 |
+
msgid "Linkbox Inserter"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: modules/linkbox/linkbox.php:18
|
124 |
+
msgid "Link to this post!"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: modules/linkbox/linkbox.php:45
|
128 |
+
msgid "At the end of posts"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: modules/linkbox/linkbox.php:46
|
132 |
+
msgid "At the end of pages"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: modules/linkbox/linkbox.php:47
|
136 |
+
msgid "When called by the su_linkbox hook"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: modules/linkbox/linkbox.php:48
|
140 |
+
msgid "Display linkboxes..."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: modules/linkbox/linkbox.php:49
|
144 |
+
msgid "Linkbox HTML"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: modules/linkbox/linkbox.php:91 modules/link-nofollow/link-nofollow.php:130
|
148 |
+
#: modules/user-code/user-code.php:70 modules/slugs/slugs.php:76
|
149 |
+
#: modules/sharing-buttons/sharing-buttons.php:72
|
150 |
+
#: modules/meta/meta-keywords.php:166 modules/meta/meta-robots.php:53
|
151 |
+
#: modules/meta/meta-descriptions.php:174 modules/meta/webmaster-verify.php:58
|
152 |
+
#: modules/rich-snippets/rich-snippets.php:258
|
153 |
+
#: modules/more-links/more-links.php:104 modules/more-links/more-links.php:111
|
154 |
+
#: modules/settings/settings.php:22 modules/404s/fofs.php:19
|
155 |
+
#: modules/titles/titles.php:341 modules/files/files.php:144
|
156 |
+
#: modules/canonical/canonical.php:201
|
157 |
+
msgid "Overview"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: modules/linkbox/linkbox.php:92
|
161 |
+
msgid ""
|
162 |
+
"\r\n"
|
163 |
+
"<ul>\r\n"
|
164 |
+
"\t<li><strong>What it does:</strong> Linkbox Inserter can add linkboxes to "
|
165 |
+
"your posts/pages.</li>\r\n"
|
166 |
+
"\t<li><strong>Why it helps:</strong> Linkboxes contain HTML code that "
|
167 |
+
"visitors can use to link to your site. This is a great way to encourage SEO-"
|
168 |
+
"beneficial linking activity.</li>\r\n"
|
169 |
+
"\t<li><strong>How to use it:</strong> Use the checkboxes to enable the "
|
170 |
+
"Linkbox Inserter in various areas of your site. Customize the HTML if "
|
171 |
+
"desired. Click “Save Changes” when finished.</li>\r\n"
|
172 |
+
"</ul>\r\n"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: modules/linkbox/linkbox.php:102 modules/meta/meta-keywords.php:173
|
176 |
+
#: modules/meta/meta-robots.php:64 modules/meta/meta-descriptions.php:185
|
177 |
+
#: modules/rich-snippets/rich-snippets.php:269 modules/404s/fofs.php:45
|
178 |
+
#: modules/titles/titles.php:415
|
179 |
+
msgid "Settings Help"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: modules/linkbox/linkbox.php:103
|
183 |
+
msgid ""
|
184 |
+
"\r\n"
|
185 |
+
"<p>Here’s information on the various settings:</p>\r\n"
|
186 |
+
"\r\n"
|
187 |
+
"<ul>\r\n"
|
188 |
+
"\t<li>\r\n"
|
189 |
+
"\t\t<strong>Display linkboxes...</strong>\r\n"
|
190 |
+
"\t\t<ul>\r\n"
|
191 |
+
"\t\t\t<li><strong>At the end of posts</strong> — Adds the linkbox HTML "
|
192 |
+
"to the end of all posts (whether they're displayed on the blog homepage, in "
|
193 |
+
"archives, or by themselves).</li>\r\n"
|
194 |
+
"\t\t\t<li><strong>At the end of pages</strong> — Adds the linkbox HTML "
|
195 |
+
"to the end of all Pages.</li>\r\n"
|
196 |
+
"\t\t\t<li><strong>When called by the su_linkbox hook</strong> — For "
|
197 |
+
"more fine-tuned control over where linkboxes appear, enable this option and "
|
198 |
+
"add <code><?php do_action('su_linkbox'); ?></code> to your theme. You "
|
199 |
+
"can also add an ID parameter to display the linkbox of a particular post/"
|
200 |
+
"page; for example: <code><?php do_action('su_linkbox', 123); ?></code>."
|
201 |
+
"</li>\r\n"
|
202 |
+
"\t\t</ul>\r\n"
|
203 |
+
"\t</li>\r\n"
|
204 |
+
"\t<li>\r\n"
|
205 |
+
"\t\t<strong>HTML</strong> — The HTML that will be outputted to display "
|
206 |
+
"the linkboxes. The HTML field supports these variables:\r\n"
|
207 |
+
"\t\t<ul>\r\n"
|
208 |
+
"\t\t\t<li>{id} — The ID of the current post/page, or the ID passed to "
|
209 |
+
"the action hook call.</li>\r\n"
|
210 |
+
"\t\t\t<li>{url} — The permalink URL of the post/page.</li>\r\n"
|
211 |
+
"\t\t\t<li>{title} — The title of the post/page.</li>\r\n"
|
212 |
+
"\t\t</ul>\r\n"
|
213 |
+
"\t</li>\r\n"
|
214 |
+
"</ul>\r\n"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: modules/link-nofollow/link-nofollow.php:12
|
218 |
+
msgid "Nofollow Manager"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: modules/link-nofollow/link-nofollow.php:53
|
222 |
+
msgid "Add the nofollow attribute to..."
|
|
|
|
|
|
|
|
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: modules/link-nofollow/link-nofollow.php:55
|
226 |
+
msgid "Adjacent post links"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: modules/link-nofollow/link-nofollow.php:56
|
230 |
+
msgid "Category links (after posts)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: modules/link-nofollow/link-nofollow.php:57
|
234 |
+
msgid "Category links (in lists)"
|
|
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: modules/link-nofollow/link-nofollow.php:58
|
238 |
+
msgid "Comment anchor links"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: modules/link-nofollow/link-nofollow.php:59
|
242 |
+
msgid "Comment feed links"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: modules/link-nofollow/link-nofollow.php:60
|
246 |
+
msgid "Date-based archive links"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: modules/link-nofollow/link-nofollow.php:61
|
250 |
+
msgid "Pagination navigation links (all)"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: modules/link-nofollow/link-nofollow.php:62
|
254 |
+
msgid "Pagination navigation links (on blog home only)"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: modules/link-nofollow/link-nofollow.php:63
|
258 |
+
msgid "“Read more” links"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: modules/link-nofollow/link-nofollow.php:64
|
262 |
+
msgid "Registration link"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: modules/link-nofollow/link-nofollow.php:65
|
266 |
+
msgid "Login link"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: modules/link-nofollow/link-nofollow.php:66
|
270 |
+
msgid "Tag links (after posts)"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: modules/link-nofollow/link-nofollow.php:67
|
274 |
+
msgid "Tag links (in lists and clouds)"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
278 |
+
msgid "When displaying page lists, nofollow links to this page"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
282 |
+
msgid "Nofollow:"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: modules/link-nofollow/link-nofollow.php:131
|
286 |
+
msgid ""
|
287 |
+
"\r\n"
|
288 |
+
"<p>Nofollow Manager adds the <code>rel="nofollow"</code> attribute "
|
289 |
+
"to types of links that you specify. The <code>rel="nofollow"</"
|
290 |
+
"code> attribute prevents a link from passing PageRank.</p>\r\n"
|
291 |
+
"<p>If you’re migrating to SEO Ultimate from another plugin, Nofollow "
|
292 |
+
"Manager can help you maintain your existing settings (as part of an “"
|
293 |
+
"if it ain’t broke don’t fix it” strategy). In other cases, "
|
294 |
+
"however, we recommend not using the Nofollow Manager because in 2008 Google "
|
295 |
+
"disabled the ability to use the <code>rel="nofollow"</code> "
|
296 |
+
"attribute for PageRank sculpting.</p>\r\n"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: modules/import-aiosp/import-aiosp.php:12
|
300 |
+
msgid "Import from All in One SEO Pack"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: modules/import-aiosp/import-aiosp.php:13
|
304 |
+
msgid "AIOSP Import"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: modules/import-aiosp/import-aiosp.php:15
|
308 |
+
msgid "All in One SEO Pack"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: modules/import-aiosp/import-aiosp.php:16
|
312 |
+
msgid "AIOSP"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: modules/import-aiosp/import-aiosp.php:17
|
316 |
+
msgid "Import post data (custom title tags and meta tags)."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: modules/import-aiosp/import-aiosp.php:21
|
320 |
+
msgid ""
|
321 |
+
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
322 |
+
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
323 |
+
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
324 |
+
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
325 |
+
"to be currently installed or activated for the import to take place."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: modules/import-aiosp/import-aiosp.php:23
|
329 |
+
msgid ""
|
330 |
+
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
331 |
+
"you use an older version of AIOSP, you should update to the latest version "
|
332 |
+
"first and run AIOSP’s upgrade process."
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: modules/class.su-importmodule.php:49
|
336 |
+
msgid "Import Post Fields"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: modules/class.su-importmodule.php:50
|
340 |
+
msgid ""
|
341 |
+
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
342 |
+
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
343 |
+
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
344 |
+
"Ultimate."
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: modules/class.su-importmodule.php:53
|
348 |
+
msgid "Conflict Resolution Mode"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: modules/class.su-importmodule.php:54
|
352 |
+
msgid ""
|
353 |
+
"What should the import tool do if it tries to move over a post’s %s "
|
354 |
+
"data, but different data already exists in the corresponding SEO Ultimate "
|
355 |
+
"fields?"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: modules/class.su-importmodule.php:56
|
359 |
+
msgid "Skip that post and leave all data as-is (default)."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: modules/class.su-importmodule.php:57
|
363 |
+
msgid "Delete the SEO Ultimate data and replace it with the %s data."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: modules/class.su-importmodule.php:58
|
367 |
+
msgid "Keep the SEO Ultimate data and delete the %s data."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: modules/class.su-importmodule.php:61
|
371 |
+
msgid "Deletion Preference"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: modules/class.su-importmodule.php:62
|
375 |
+
msgid ""
|
376 |
+
"When the migration tool successfully copies a post’s %1$s data over to "
|
377 |
+
"SEO Ultimate, what should it do with the old %1$s data?"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: modules/class.su-importmodule.php:64
|
381 |
+
msgid "Delete the %s data."
|
|
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: modules/class.su-importmodule.php:65
|
385 |
+
msgid "Leave behind the duplicate %s data (default)."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: modules/class.su-importmodule.php:72
|
389 |
+
msgid "Import Now"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: modules/class.su-importmodule.php:75
|
393 |
+
msgid ""
|
394 |
+
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
395 |
+
"target=\"_blank\">backup your database</a> before proceeding!"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: modules/class.su-importmodule.php:84
|
399 |
+
msgid "Import complete."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: modules/class.su-importmodule.php:90
|
403 |
+
msgid "Return to import page"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: modules/class.su-importmodule.php:93
|
407 |
+
msgid "Return to settings page"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: modules/class.su-importmodule.php:96
|
411 |
+
msgid "Return to SEO page"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: modules/class.su-importmodule.php:116
|
415 |
+
msgid "Deactivated %s."
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: modules/class.su-importmodule.php:174
|
419 |
+
msgid "Imported a total of %d fields for one post/page/revision."
|
420 |
+
msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
|
421 |
+
msgstr[0] ""
|
422 |
+
msgstr[1] ""
|
423 |
|
424 |
+
#: modules/class.su-importmodule.php:180
|
425 |
+
msgid "Skipped one post with disabled %2$s data."
|
426 |
+
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
427 |
+
msgstr[0] ""
|
428 |
+
msgstr[1] ""
|
429 |
|
430 |
+
#: modules/class.su-importmodule.php:186
|
431 |
msgid ""
|
432 |
+
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
433 |
+
"settings you chose."
|
434 |
+
msgid_plural ""
|
435 |
+
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
436 |
+
"settings you chose."
|
437 |
+
msgstr[0] ""
|
438 |
+
msgstr[1] ""
|
|
|
|
|
|
|
|
|
439 |
|
440 |
+
#: modules/class.su-importmodule.php:192
|
441 |
+
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
442 |
+
msgid_plural ""
|
443 |
+
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
444 |
+
msgstr[0] ""
|
445 |
+
msgstr[1] ""
|
446 |
|
447 |
+
#: modules/user-code/user-code.php:12
|
448 |
+
msgid "Code Inserter"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: modules/user-code/user-code.php:27
|
452 |
+
msgid "Everywhere"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: modules/user-code/user-code.php:34
|
456 |
+
msgid "<head> Tag"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: modules/user-code/user-code.php:35
|
460 |
+
msgid "Before Item Content"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: modules/user-code/user-code.php:36
|
464 |
+
msgid "After Item Content"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: modules/user-code/user-code.php:37
|
468 |
+
msgid "Footer"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: modules/user-code/user-code.php:51
|
472 |
+
msgid "Code Inserter module"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: modules/user-code/user-code.php:71
|
476 |
+
msgid ""
|
477 |
+
"\r\n"
|
478 |
+
"<ul>\r\n"
|
479 |
+
"\t<li><strong>What it does:</strong> Code Inserter can add custom HTML code "
|
480 |
+
"to various parts of your site.</li>\r\n"
|
481 |
+
"\t<li>\r\n"
|
482 |
+
"\t\t<p><strong>Why it helps:</strong> Code Inserter is useful for inserting "
|
483 |
+
"third-party code that can improve the SEO or user experience of your site. "
|
484 |
+
"For example, you can use Code Inserter to add Google Analytics code to your "
|
485 |
+
"footer, Feedburner FeedFlares or social media widgets after your posts, or "
|
486 |
+
"Google AdSense section targeting code before/after your content.</p>\r\n"
|
487 |
+
"\t\t<p>Using Code Inserter is easier than editing your theme manually "
|
488 |
+
"because your custom code is stored in one convenient location and will be "
|
489 |
+
"added to your site even if you change your site’s theme.</p>\r\n"
|
490 |
+
"\t</li>\r\n"
|
491 |
+
"\t<li><strong>How to use it:</strong> Just paste the desired HTML code into "
|
492 |
+
"the appropriate fields and then click Save Changes.</li>\r\n"
|
493 |
+
"</ul>\r\n"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: modules/user-code/user-code.php:84 modules/slugs/slugs.php:107
|
497 |
+
#: modules/meta/meta-keywords.php:196 modules/meta/meta-robots.php:103
|
498 |
+
#: modules/meta/meta-descriptions.php:206
|
499 |
+
#: modules/rich-snippets/rich-snippets.php:279 modules/404s/fofs.php:74
|
500 |
+
#: modules/titles/titles.php:453 modules/files/files.php:165
|
501 |
+
msgid "Troubleshooting"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: modules/user-code/user-code.php:85
|
505 |
+
msgid ""
|
506 |
+
"\r\n"
|
507 |
+
"<ul>\r\n"
|
508 |
+
"\t<li><strong>Why doesn't my code appear on my site?</strong><br />It’"
|
509 |
+
"s possible that your theme doesn't have the proper “hooks,” "
|
510 |
+
"which are pieces of code that let WordPress plugins insert custom HTML into "
|
511 |
+
"your theme. <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' "
|
512 |
+
"target='_blank'>Click here</a> for information on how to check your theme "
|
513 |
+
"and add the hooks if needed.</li>\r\n"
|
514 |
+
"</ul>\r\n"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: modules/slugs/slugs.php:12
|
518 |
+
msgid "Slug Optimizer"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: modules/slugs/slugs.php:16
|
522 |
+
msgid "Words to Remove"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
523 |
msgstr ""
|
524 |
|
525 |
#: modules/slugs/slugs.php:77
|
542 |
"</ul>\r\n"
|
543 |
msgstr ""
|
544 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
545 |
#: modules/slugs/slugs.php:88
|
546 |
msgid ""
|
547 |
"\r\n"
|
590 |
"</ul>\r\n"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: modules/sharing-buttons/sharing-buttons.php:12
|
594 |
+
#: modules/sharing-buttons/sharing-buttons.php:72
|
595 |
+
msgid "Sharing Facilitator"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: modules/sharing-buttons/sharing-buttons.php:25
|
599 |
+
msgid "Bookmark and Share"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: modules/sharing-buttons/sharing-buttons.php:39
|
603 |
+
msgid "Which provider would you like to use for your sharing buttons?"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: modules/sharing-buttons/sharing-buttons.php:41
|
607 |
+
msgid "None; disable sharing buttons"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: modules/sharing-buttons/sharing-buttons.php:42
|
611 |
+
msgid "Use the ShareThis button"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: modules/sharing-buttons/sharing-buttons.php:43
|
615 |
+
msgid "Use the AddThis button"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: modules/sharing-buttons/sharing-buttons.php:73
|
619 |
msgid ""
|
620 |
+
"\r\n"
|
621 |
+
"<ul>\r\n"
|
622 |
+
"\t<li><strong>What it does:</strong> Sharing Facilitator adds buttons to "
|
623 |
+
"your posts/pages that make it easy for visitors to share your content.</li>"
|
624 |
+
"\r\n"
|
625 |
+
"\t<li><strong>Why it helps:</strong> When visitors share your content on "
|
626 |
+
"social networking sites, this can build links to your site. Sharing "
|
627 |
+
"Facilitator makes it easy for visitors to do this.</li>\r\n"
|
628 |
+
"\t<li><strong>How to use it:</strong> Pick which button type you’d "
|
629 |
+
"like to use (ShareThis or AddThis) and click Save Changes. Try enabling each "
|
630 |
+
"button on your site and see which one you like better.</li>\r\n"
|
631 |
+
"</ul>\r\n"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: modules/noindex/noindex.php:12
|
635 |
+
msgid "Noindex Manager"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
|
639 |
+
#: modules/noindex/noindex.php:67
|
640 |
+
msgid "Noindex"
|
|
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: modules/noindex/noindex.php:43 modules/meta/meta-keywords.php:33
|
644 |
+
msgid "Default Values"
|
|
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
|
648 |
+
#: modules/autolinks/content-autolinks.php:394
|
649 |
+
#: modules/autolinks/footer-autolinks.php:210
|
650 |
+
msgid "Nofollow"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
|
654 |
+
msgid "Use default"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: modules/noindex/noindex.php:63
|
658 |
+
msgid "noindex"
|
|
|
|
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: modules/noindex/noindex.php:64
|
662 |
+
msgid "index"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: modules/noindex/noindex.php:74
|
666 |
+
msgid "nofollow"
|
|
|
|
|
|
|
|
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: modules/noindex/noindex.php:75
|
670 |
+
msgid "follow"
|
|
|
|
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: modules/noindex/noindex.php:89
|
674 |
+
msgid ""
|
675 |
+
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
676 |
+
"block indexing of the entire site, regardless of which options are set below."
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: modules/noindex/noindex.php:92
|
680 |
+
msgid "Prevent indexing of..."
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: modules/noindex/noindex.php:93
|
684 |
+
msgid "Administration back-end pages"
|
|
|
|
|
|
|
|
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: modules/noindex/noindex.php:94
|
688 |
+
msgid "Author archives"
|
|
|
|
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: modules/noindex/noindex.php:95
|
692 |
+
msgid "Blog search pages"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: modules/noindex/noindex.php:96
|
696 |
+
msgid "Category archives"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: modules/noindex/noindex.php:97
|
700 |
+
msgid "Comment feeds"
|
|
|
|
|
|
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: modules/noindex/noindex.php:98
|
704 |
+
msgid "Comment subpages"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: modules/noindex/noindex.php:99
|
708 |
+
msgid "Date-based archives"
|
|
|
|
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: modules/noindex/noindex.php:100
|
712 |
+
msgid "Subpages of the homepage"
|
|
|
|
|
|
|
|
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: modules/noindex/noindex.php:101
|
716 |
+
msgid "Tag archives"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: modules/noindex/noindex.php:102
|
720 |
+
msgid "User login/registration pages"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: modules/noindex/noindex.php:165
|
724 |
+
msgid "Noindex: Tell search engines not to index this webpage."
|
|
|
|
|
|
|
|
|
|
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: modules/noindex/noindex.php:166
|
728 |
+
msgid "Nofollow: Tell search engines not to spider links on this webpage."
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: modules/noindex/noindex.php:167
|
732 |
+
msgid "Meta Robots Tag:"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: modules/autolinks/footer-autolinks-settings.php:16
|
736 |
+
msgid "Footer Deeplink Juggernaut Settings"
|
|
|
|
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: modules/autolinks/footer-autolinks-settings.php:17
|
740 |
+
msgid "Footer Link Settings"
|
|
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: modules/autolinks/footer-autolinks-settings.php:28
|
744 |
+
msgid "HTML Formats"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: modules/autolinks/footer-autolinks-settings.php:31
|
748 |
+
msgid "Link Section Format"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: modules/autolinks/footer-autolinks-settings.php:32
|
752 |
+
msgid "Link Format"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: modules/autolinks/footer-autolinks-settings.php:34
|
756 |
+
msgid "Link Separator"
|
|
|
|
|
|
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: modules/autolinks/content-autolinks.php:16
|
760 |
+
msgid "Content Deeplink Juggernaut"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: modules/autolinks/content-autolinks.php:17
|
764 |
+
msgid "Content Links"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: modules/autolinks/content-autolinks.php:281
|
768 |
msgid ""
|
769 |
+
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
770 |
+
"a certain word or phrase in your post/page content to a URL you specify."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: modules/autolinks/content-autolinks.php:337
|
774 |
+
#: modules/autolinks/footer-autolinks.php:157
|
775 |
+
msgid "Edit Existing Links"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: modules/autolinks/content-autolinks.php:341
|
779 |
+
#: modules/autolinks/footer-autolinks.php:161
|
780 |
+
msgid "Add a New Link"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: modules/autolinks/content-autolinks.php:352
|
784 |
+
#: modules/autolinks/footer-autolinks.php:171
|
785 |
+
msgid "Anchor Text"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: modules/autolinks/content-autolinks.php:353
|
789 |
+
#: modules/autolinks/footer-autolinks.php:172
|
790 |
+
msgid "Destination"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: modules/autolinks/content-autolinks.php:354
|
794 |
+
#: modules/autolinks/footer-autolinks.php:173
|
795 |
+
msgid "Title Attribute"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: modules/autolinks/content-autolinks.php:356
|
799 |
+
msgid "Site Cap"
|
|
|
|
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: modules/autolinks/content-autolinks.php:357
|
803 |
+
#: modules/autolinks/footer-autolinks.php:174
|
804 |
+
msgid "Options"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: modules/autolinks/content-autolinks.php:359
|
808 |
+
#: modules/autolinks/footer-autolinks.php:176
|
809 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:91
|
810 |
+
msgid "Delete"
|
|
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: modules/autolinks/content-autolinks.php:396
|
814 |
+
#: modules/autolinks/footer-autolinks.php:212
|
815 |
+
msgid "New window"
|
|
|
|
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: modules/autolinks/content-autolinks.php:461
|
819 |
+
msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
|
|
|
|
|
|
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: modules/autolinks/content-autolinks.php:464
|
823 |
+
msgid "Don’t add autolinks to anchor texts found in this post."
|
|
|
|
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: modules/autolinks/content-autolinks.php:464
|
827 |
+
msgid "Autolink Exclusion:"
|
|
|
|
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: modules/autolinks/content-autolinks.php:470
|
831 |
msgid ""
|
832 |
+
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
833 |
+
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
834 |
+
"other posts and link it to this post. For example, if the post you’re "
|
835 |
+
"editing is about “blue widgets,” you could type “blue "
|
836 |
+
"widgets” into the “Incoming Autolink Anchors” box and "
|
837 |
+
"Deeplink Juggernaut will automatically build internal links to this post "
|
838 |
+
"with that anchor text (assuming other posts contain that text)."
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: modules/autolinks/autolinks.php:11
|
842 |
+
msgid "Deeplink Juggernaut"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: modules/autolinks/autolinks.php:18
|
846 |
msgid ""
|
847 |
+
"Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
|
848 |
+
"(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
|
849 |
+
"WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your "
|
850 |
+
"webhost. In the meantime, you can return to an older version of Deeplink "
|
851 |
+
"Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
|
852 |
+
"a> to SEO Ultimate 5.9."
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: modules/autolinks/footer-autolinks.php:16
|
856 |
+
msgid "Footer Deeplink Juggernaut"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: modules/autolinks/footer-autolinks.php:17 modules/widgets/widgets.php:164
|
860 |
+
msgid "Footer Links"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: modules/autolinks/footer-autolinks.php:169
|
864 |
+
msgid "Link Location (optional)"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: modules/autolinks/footer-autolinks.php:197
|
868 |
+
msgid "Match child content"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: modules/autolinks/footer-autolinks.php:199
|
872 |
+
msgid "Negative match"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: modules/autolinks/content-autolinks-settings.php:16
|
876 |
+
msgid "Content Deeplink Juggernaut Settings"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: modules/autolinks/content-autolinks-settings.php:17
|
880 |
+
msgid "Content Link Settings"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: modules/autolinks/content-autolinks-settings.php:40
|
884 |
+
msgid "Add Autolinks to..."
|
|
|
|
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: modules/autolinks/content-autolinks-settings.php:43
|
888 |
+
msgid "Allow posts to link to themselves."
|
|
|
|
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: modules/autolinks/content-autolinks-settings.php:44
|
892 |
+
msgid ""
|
893 |
+
"Allow posts to link to the URL by which the visitor is accessing the post."
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: modules/autolinks/content-autolinks-settings.php:45
|
897 |
+
msgid "Self-Linking"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: modules/autolinks/content-autolinks-settings.php:48
|
901 |
+
msgid "Enable per-link customization of quantity limits."
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: modules/autolinks/content-autolinks-settings.php:49
|
905 |
+
msgid "Don’t add any more than %d autolinks per post/page/etc."
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: modules/autolinks/content-autolinks-settings.php:50
|
909 |
+
msgid ""
|
910 |
+
"Don’t link the same anchor text any more than %d times per post/page/"
|
911 |
+
"etc."
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: modules/autolinks/content-autolinks-settings.php:51
|
915 |
+
msgid ""
|
916 |
+
"Don’t link the same anchor text any more than %d times across my "
|
917 |
+
"entire site."
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: modules/autolinks/content-autolinks-settings.php:52
|
921 |
+
msgid ""
|
922 |
+
"Don’t link to the same destination any more than %d times per post/"
|
923 |
+
"page/etc."
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: modules/autolinks/content-autolinks-settings.php:53
|
927 |
+
msgid "Quantity Restrictions"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: modules/autolinks/content-autolinks-settings.php:55
|
931 |
msgid ""
|
932 |
+
"Don’t add autolinks to text within these HTML tags <em>(separate with "
|
933 |
+
"commas)</em>:"
|
|
|
|
|
|
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: modules/autolinks/content-autolinks-settings.php:55
|
937 |
+
msgid "Tag Restrictions"
|
|
|
|
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: modules/autolinks/content-autolinks-settings.php:63
|
941 |
+
msgid "%s can only link to internal destinations that share at least one..."
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: modules/autolinks/content-autolinks-settings.php:76
|
945 |
+
msgid "Siloing"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:24
|
949 |
+
msgid "Link Mask Generator"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:30
|
953 |
+
msgid "Aliases"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:31
|
957 |
+
#: modules/404s/fofs-settings.php:17 modules/titles/titles.php:34
|
958 |
+
msgid "Settings"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:75
|
962 |
+
msgid "Edit Existing Aliases"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:79
|
966 |
+
msgid "Add a New Alias"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:87
|
970 |
+
msgid "Actual URL"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:88
|
974 |
+
msgid "Alias URL"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:89
|
978 |
+
msgid "Only on This Post… (optional)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:122
|
982 |
+
msgid "Test"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:139
|
986 |
+
msgid "Alias Directory"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:141
|
990 |
+
msgid "Nofollow aliased links"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:141
|
994 |
+
msgid "Link Attributes"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:164
|
998 |
+
msgid "Link Masks:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:167
|
1002 |
+
msgid "URL"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:167
|
1006 |
+
msgid "Mask URL"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:204
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1010 |
msgid ""
|
1011 |
+
"You can stop search engines from following a link by typing in a mask for "
|
1012 |
+
"its URL."
|
|
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:291
|
1016 |
+
msgid "Added by SEO Ultimate's Link Mask Generator module"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:302
|
1020 |
+
msgid "End Link Mask Generator output"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: modules/widgets/widgets.php:12
|
1024 |
+
msgid "SEO Ultimate Widgets"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: modules/widgets/widgets.php:36
|
1028 |
+
msgid ""
|
1029 |
+
"On category archives, displays a list of child categories and/or posts in "
|
1030 |
+
"the category. Displays a list of top-level categories everywhere else. "
|
1031 |
+
"Powered by the SEO Ultimate plugin."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: modules/widgets/widgets.php:37
|
1035 |
+
msgid "Siloed Categories"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: modules/widgets/widgets.php:51
|
1039 |
+
msgid "Tags"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: modules/widgets/widgets.php:130
|
1043 |
+
msgid "Title:"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: modules/widgets/widgets.php:134
|
1047 |
+
msgid "Show post counts"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: modules/widgets/widgets.php:136
|
1051 |
+
msgid "Use term descriptions in title attributes"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: modules/widgets/widgets.php:138
|
1055 |
+
msgid "Taxonomy:"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: modules/widgets/widgets.php:163
|
1059 |
+
msgid ""
|
1060 |
+
"Add this widget to display Deeplink Juggernaut’s Footer Links in a "
|
1061 |
+
"widget area of your choosing rather than the default wp_footer section. "
|
1062 |
+
"Powered by the SEO Ultimate plugin."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: modules/widgets/widgets.php:217
|
1066 |
+
msgid "Title: <em>(optional)</em>"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: modules/widgets/widgets.php:221
|
1070 |
+
msgid "Display as a list"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: modules/widgets/widgets.php:224
|
1074 |
+
msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: modules/meta/meta-keywords.php:12
|
1078 |
+
msgid "Meta Keywords Editor"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: modules/meta/meta-keywords.php:13 modules/meta/meta-keywords.php:40
|
1082 |
+
msgid "Meta Keywords"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: modules/meta/meta-keywords.php:34 modules/meta/meta-descriptions.php:25
|
1086 |
+
#: modules/class.su-module.php:2579 plugin/class.seo-ultimate.php:1671
|
1087 |
+
msgid "Blog Homepage"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: modules/meta/meta-keywords.php:56
|
1091 |
+
msgid "The %d most commonly-used words"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: modules/meta/meta-keywords.php:69
|
1095 |
+
msgid "Sitewide Keywords"
|
|
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: modules/meta/meta-keywords.php:69
|
1099 |
+
msgid "(Separate with commas)"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: modules/meta/meta-keywords.php:76
|
1103 |
+
msgid "Blog Homepage Meta Keywords"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: modules/meta/meta-keywords.php:153
|
1107 |
+
msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: modules/meta/meta-keywords.php:158
|
1111 |
+
msgid ""
|
1112 |
+
"<strong>Keywords</strong> — The value of the meta keywords tag. The "
|
1113 |
+
"keywords list gives search engines a hint as to what this post/page is "
|
1114 |
+
"about. Be sure to separate keywords with commas, like so: <samp>one,two,"
|
1115 |
+
"three</samp>."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: modules/meta/meta-keywords.php:167
|
1119 |
+
msgid ""
|
1120 |
+
"\r\n"
|
1121 |
+
"<p>Meta Keywords Editor lets you tell search engines what keywords are "
|
1122 |
+
"associated with the various pages on your site. Modern search engines "
|
1123 |
+
"don’t give meta keywords much weight, but the option is there if you "
|
1124 |
+
"want to use it. You can customize the meta keywords of an individual post or "
|
1125 |
+
"page by using the textboxes that Meta Editor adds to the post/page editors.</"
|
1126 |
+
"p>\r\n"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: modules/meta/meta-keywords.php:174
|
1130 |
msgid ""
|
1131 |
"\r\n"
|
1132 |
"<ul>\r\n"
|
1133 |
+
"\t<li><strong>Sitewide Keywords</strong> — Here you can enter keywords "
|
1134 |
+
"that describe the overall subject matter of your entire blog. Use ommas to "
|
1135 |
+
"separate keywords. These keywords will be put in the <code>>meta "
|
1136 |
+
"name="keywords" /></code> tags of all webpages on the site "
|
1137 |
+
"(homepage, posts, pages, archives, etc.).</li>\r\n"
|
1138 |
+
"\t<li><strong>Blog Homepage Meta Keywords</strong> — These keywords "
|
1139 |
+
"will be applied only to the <em>blog</em> homepage. Note that if you’"
|
1140 |
+
"ve specified a “front page” under <a href='options-reading."
|
1141 |
+
"php'>Settings ⇒ Reading</a>, you’ll need to edit your frontpage "
|
1142 |
+
"and set your frontpage keywords there.</li>\r\n"
|
1143 |
"</ul>\r\n"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: modules/meta/meta-keywords.php:184
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1147 |
msgid ""
|
1148 |
+
"\r\n"
|
1149 |
+
"<ul>\r\n"
|
1150 |
+
"\t<li>\r\n"
|
1151 |
+
"\t\t<p><strong>How do I edit the meta keywords of my homepage?</strong><br /"
|
1152 |
+
">If you are using a “blog homepage” (the default option of "
|
1153 |
+
"showing your blog posts on your homepage), just use the Blog Homepage field."
|
1154 |
+
"</p>\r\n"
|
1155 |
+
"\t\t<p>If you have configured your <a href='options-reading.php'>Settings "
|
1156 |
+
"⇒ Reading</a> section to use a “frontpage” (i.e. a Page as "
|
1157 |
+
"your homepage), just edit that Page and use the “Meta Keywords” "
|
1158 |
+
"field in the “SEO Settings” box.</p>\r\n"
|
1159 |
+
"\t</li>\r\n"
|
1160 |
+
"\t<li><strong>What happens if I add a global keyword that I previously "
|
1161 |
+
"assigned to individual posts or pages?</strong><br />Don’t worry; Meta "
|
1162 |
+
"Keywords Editor will remove duplicate keywords automatically.</li>\r\n"
|
1163 |
+
"</ul>\r\n"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: modules/meta/meta-keywords.php:197 modules/meta/meta-robots.php:104
|
1167 |
+
#: modules/meta/meta-descriptions.php:207
|
1168 |
+
msgid ""
|
1169 |
+
"\r\n"
|
1170 |
+
"<ul>\r\n"
|
1171 |
+
"\t<li>\r\n"
|
1172 |
+
"\t\t<p><strong>What do I do if my site has multiple meta tags?</strong><br /"
|
1173 |
+
">First, try removing your theme’s built-in meta tags if it has them. "
|
1174 |
+
"Go to <a href='theme-editor.php' target='_blank'>Appearance ⇒ Editor</"
|
1175 |
+
"a> and edit <code>header.php</code>. Delete or comment-out any <code><"
|
1176 |
+
"meta></code> tags.</p>\r\n"
|
1177 |
+
"\t\t<p>If the problem persists, try disabling other SEO plugins that may be "
|
1178 |
+
"generating meta tags.</p>\r\n"
|
1179 |
+
"\t\t<p>Troubleshooting tip: Go to <a href='options-general.php?page=seo-"
|
1180 |
+
"ultimate'>Settings ⇒ SEO Ultimate</a> and enable the “Insert "
|
1181 |
+
"comments around HTML code insertions” option. This will mark SEO "
|
1182 |
+
"Ultimate’s meta tags with comments, allowing you to see which meta "
|
1183 |
+
"tags are generated by SEO Ultimate and which aren’t.</p>\r\n"
|
1184 |
+
"\t</li>\r\n"
|
1185 |
+
"</ul>\r\n"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: modules/meta/meta-robots.php:12
|
1189 |
+
msgid "Meta Robot Tags Editor"
|
|
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: modules/meta/meta-robots.php:13
|
1193 |
+
msgid "Meta Robot Tags"
|
|
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: modules/meta/meta-robots.php:22
|
1197 |
+
msgid "Global"
|
|
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: modules/meta/meta-robots.php:28
|
1201 |
+
msgid "Spider Instructions"
|
|
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: modules/meta/meta-robots.php:30
|
1205 |
+
msgid ""
|
1206 |
+
"Don’t use this site’s Open Directory description in search results."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: modules/meta/meta-robots.php:31
|
1210 |
+
msgid ""
|
1211 |
+
"Don’t use this site’s Yahoo! Directory description in search "
|
1212 |
+
"results."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: modules/meta/meta-robots.php:32
|
1216 |
+
msgid "Don’t cache or archive this site."
|
|
|
|
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: modules/meta/meta-robots.php:54
|
1220 |
+
msgid ""
|
1221 |
+
"\r\n"
|
1222 |
+
"<ul>\r\n"
|
1223 |
+
"\t<li><strong>What it does:</strong> Meta Robot Tags Editor lets you convey "
|
1224 |
+
"instructions to search engine spiders, as well as prohibit the spiders from "
|
1225 |
+
"indexing certain webpages on your blog using the <code><meta name=""
|
1226 |
+
"robots" content="noindex" /></code> tag.</li>\r\n"
|
1227 |
+
"\t<li><strong>Why it helps:</strong> The “Global” tab lets you "
|
1228 |
+
"stop DMOZ or Yahoo! Directory from overriding your custom meta descriptions, "
|
1229 |
+
"as well as prevent spiders from caching your site if you so desire. The "
|
1230 |
+
"“Default Values” tab lets you deindex entire sections of your "
|
1231 |
+
"site that contain content unimportant to visitors (e.g. the administration "
|
1232 |
+
"section), or sections of your site that mostly contain duplicate content (e."
|
1233 |
+
"g. date archives). The editor tabs can do something similar, but for "
|
1234 |
+
"individual content items. By removing webpages from search results that "
|
1235 |
+
"visitors find unhelpful, you can help increase the focus on your more useful "
|
1236 |
+
"content.</li>\r\n"
|
1237 |
+
"\t<li><strong>How to use it:</strong> Adjust the settings as desired, and "
|
1238 |
+
"then click Save Changes. You can refer to the “Settings Help” "
|
1239 |
+
"tab for information on the settings available. You can also use the editor "
|
1240 |
+
"tabs to deindex individual content items on your site as well as enable the "
|
1241 |
+
"“nofollow” meta parameter that will nullify all outgoing links "
|
1242 |
+
"on a specific webpage.</li>\r\n"
|
1243 |
+
"</ul>\r\n"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: modules/meta/meta-robots.php:65
|
1247 |
+
msgid ""
|
1248 |
+
"\r\n"
|
1249 |
+
"<p>Here’s information on the various settings:</p>\r\n"
|
1250 |
+
"\r\n"
|
1251 |
+
"<ul>\r\n"
|
1252 |
+
"\t<li>\r\n"
|
1253 |
+
"\t\t<strong>Global: Spider Instructions</strong>\r\n"
|
1254 |
+
"\t\t<ul>\r\n"
|
1255 |
+
"\t\t\t<li><strong>Don't use this site's Open Directory / Yahoo! Directory "
|
1256 |
+
"description in search results.</strong> — If your site is listed in "
|
1257 |
+
"the <a href='http://www.dmoz.org/' target='_blank'>Open Directory (DMOZ)</a> "
|
1258 |
+
"or the <a href='http://dir.yahoo.com/' target='_blank'>Yahoo! Directory</a>, "
|
1259 |
+
"some search engines may use your directory listing as the meta description. "
|
1260 |
+
"These boxes tell search engines not to do that and will give you full "
|
1261 |
+
"control over your meta descriptions. These settings have no effect if your "
|
1262 |
+
"site isn’t listed in the Open Directory or Yahoo! Directory "
|
1263 |
+
"respectively.</li>\r\n"
|
1264 |
+
"\t\t\t<li>Don’t cache or archive this site.</li> — When you "
|
1265 |
+
"check this box, Meta Editor will ask search engines (Google, Yahoo!, Bing, "
|
1266 |
+
"etc.) and archivers (Archive.org, etc.) to <em>not</em> make cached or "
|
1267 |
+
"archived “copies” of your site.</li>\r\n"
|
1268 |
+
"\t\t</ul>\r\n"
|
1269 |
+
"\t</li>\r\n"
|
1270 |
+
"\t<li>\r\n"
|
1271 |
+
"\t\t<strong>Default Values: Prevent indexing of...</strong>\r\n"
|
1272 |
+
"\t\t<ul>\r\n"
|
1273 |
+
"\t\t\t<li><strong>Administration back-end pages</strong> — Tells "
|
1274 |
+
"spiders not to index the administration area (the part you’re in now), "
|
1275 |
+
"in the unlikely event a spider somehow gains access to the administration. "
|
1276 |
+
"Recommended.</li>\r\n"
|
1277 |
+
"\t\t\t<li><strong>Author archives</strong> — Tells spiders not to "
|
1278 |
+
"index author archives. Useful if your blog only has one author.</li>\r\n"
|
1279 |
+
"\t\t\t<li><strong>Blog search pages</strong> — Tells spiders not to "
|
1280 |
+
"index the result pages of WordPress's blog search function. Recommended.</li>"
|
1281 |
+
"\r\n"
|
1282 |
+
"\t\t\t<li><strong>Category archives</strong> — Tells spiders not to "
|
1283 |
+
"index category archives. Recommended only if you don't use categories.</li>"
|
1284 |
+
"\r\n"
|
1285 |
+
"\t\t\t<li><strong>Comment feeds</strong> — Tells spiders not to index "
|
1286 |
+
"the RSS feeds that exist for every post's comments. (These comment feeds are "
|
1287 |
+
"totally separate from your normal blog feeds.)</li>\r\n"
|
1288 |
+
"\t\t\t<li><strong>Comment subpages</strong> — Tells spiders not to "
|
1289 |
+
"index posts' comment subpages.</li>\r\n"
|
1290 |
+
"\t\t\t<li><strong>Date-based archives</strong> — Tells spiders not to "
|
1291 |
+
"index day/month/year archives. Recommended, since these pages have little "
|
1292 |
+
"keyword value.</li>\r\n"
|
1293 |
+
"\t\t\t<li><strong>Subpages of the homepage</strong> — Tells spiders "
|
1294 |
+
"not to index the homepage's subpages (page 2, page 3, etc). Recommended.</li>"
|
1295 |
+
"\r\n"
|
1296 |
+
"\t\t\t<li><strong>Tag archives</strong> — Tells spiders not to index "
|
1297 |
+
"tag archives. Recommended only if you don't use tags.</li>\r\n"
|
1298 |
+
"\t\t\t<li>User login/registration pages</strong> — Tells spiders not "
|
1299 |
+
"to index WordPress's user login and registration pages. Recommended.</li>\r\n"
|
1300 |
+
"\t\t</ul>\r\n"
|
1301 |
+
"\t</li>\r\n"
|
1302 |
+
"\t<li>\r\n"
|
1303 |
+
"\t\t<strong>Editor Tabs (Posts/Pages/etc.)</strong>\r\n"
|
1304 |
+
"\t\t<ul>\r\n"
|
1305 |
+
"\t\t\t<li><strong>Noindex</strong> — Checking this for an item will "
|
1306 |
+
"ask search engines to remove that item’s webpage from their indices. "
|
1307 |
+
"Use this to remove pages that you don’t want showing up in search "
|
1308 |
+
"results (such as a Privacy Policy page, for example).</li>\r\n"
|
1309 |
+
"\t\t\t<li><strong>Nofollow</strong> — Checking this for an item will "
|
1310 |
+
"tell search engines to ignore the links to other webpages that are on that "
|
1311 |
+
"item’s webpage. Note: this is page-level “meta nofollow,” "
|
1312 |
+
"not to be confused with link-level “rel nofollow.”</li>\r\n"
|
1313 |
+
"\t\t</ul>\r\n"
|
1314 |
+
"\t</li>\r\n"
|
1315 |
+
"</ul>\r\n"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: modules/meta/meta-descriptions.php:12
|
1319 |
+
msgid "Meta Description Editor"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: modules/meta/meta-descriptions.php:13
|
1323 |
+
msgid "Meta Descriptions"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: modules/meta/meta-descriptions.php:24 modules/titles/titles.php:33
|
1327 |
+
msgid "Default Formats"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: modules/meta/meta-descriptions.php:31
|
1331 |
+
msgid "Meta Description"
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: modules/meta/meta-descriptions.php:50
|
1335 |
+
msgid "Post Description Format"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: modules/meta/meta-descriptions.php:51
|
1339 |
+
msgid "Page Description Format"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: modules/meta/meta-descriptions.php:52
|
1343 |
+
msgid "Category Description Format"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: modules/meta/meta-descriptions.php:53
|
1347 |
+
msgid "Post Tag Description Format"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: modules/meta/meta-descriptions.php:54
|
1351 |
+
msgid "Pagination Description Format"
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: modules/meta/meta-descriptions.php:62
|
1355 |
+
msgid "Blog Homepage Meta Description"
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: modules/meta/meta-descriptions.php:64
|
1359 |
+
msgid "Use this blog’s tagline as the default homepage description."
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: modules/meta/meta-descriptions.php:65
|
1363 |
+
msgid "Default Value"
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: modules/meta/meta-descriptions.php:155
|
1367 |
+
msgid "Meta Description:"
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: modules/meta/meta-descriptions.php:158
|
1371 |
+
msgid "You’ve entered %s characters. Most search engines use up to 140."
|
1372 |
+
msgstr ""
|
1373 |
+
|
1374 |
+
#: modules/meta/meta-descriptions.php:166
|
1375 |
msgid ""
|
1376 |
+
"<strong>Description</strong> — The value of the meta description tag. "
|
1377 |
+
"The description will often appear underneath the title in search engine "
|
1378 |
+
"results. Writing an accurate, attention-grabbing description for every post "
|
1379 |
+
"is important to ensuring a good search results clickthrough rate."
|
|
|
|
|
|
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: modules/meta/meta-descriptions.php:175
|
1383 |
+
msgid ""
|
1384 |
+
"\r\n"
|
1385 |
+
"<ul>\r\n"
|
1386 |
+
"\t<li><strong>What it does:</strong> Meta Descriptions Editor lets you "
|
1387 |
+
"customize the text that you want to appear under your webpages’ titles "
|
1388 |
+
"in search results.</li>\r\n"
|
1389 |
+
"\t<li><strong>Why it helps:</strong> Getting ranked isn’t enough; once "
|
1390 |
+
"you're ranked, you need visitors to click on your site in the results. "
|
1391 |
+
"That’s where meta descriptions can help. When you provide text that "
|
1392 |
+
"makes searchers want to visit your site, you can increase your SERP "
|
1393 |
+
"clickthrough rate and thus increase search traffic.</li>\r\n"
|
1394 |
+
"\t<li><strong>How to use it:</strong> Enter meta descriptions for your "
|
1395 |
+
"homepage, posts, pages, etc. as desired, and then click Save Changes. You "
|
1396 |
+
"can also customize the meta data of an individual post or page by using the "
|
1397 |
+
"textboxes that Meta Editor adds to the post/page editors.</li>\r\n"
|
1398 |
+
"</ul>\r\n"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: modules/meta/meta-descriptions.php:186
|
1402 |
msgid ""
|
1403 |
+
"\r\n"
|
1404 |
+
"<p>Here’s information on the various settings:</p>\r\n"
|
1405 |
+
"\r\n"
|
1406 |
+
"<ul>\r\n"
|
1407 |
+
"\t<li><strong>Blog Homepage Meta Description</strong> — When your blog "
|
1408 |
+
"homepage appears in search results, it’ll have a title and a "
|
1409 |
+
"description. When you insert content into the description field below, the "
|
1410 |
+
"Meta Editor will add code to your blog homepage (the <code><meta "
|
1411 |
+
"name="description" /></code> tag) that asks search engines to "
|
1412 |
+
"use what you’ve entered as the homepage’s search results "
|
1413 |
+
"description.</li>\r\n"
|
1414 |
+
"\t<li><strong>Use this blog’s tagline as the default homepage "
|
1415 |
+
"description.</strong> — If this box is checked and if the Blog "
|
1416 |
+
"Homepage Meta Description field is empty, Meta Editor will use your "
|
1417 |
+
"blog’s tagline as the meta description. You can edit the blog’s "
|
1418 |
+
"tagline under <a href='options-general.php'>Settings ⇒ General</a>.</li>"
|
1419 |
+
"\r\n"
|
1420 |
+
"</ul>\r\n"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: modules/meta/meta-descriptions.php:198
|
1424 |
+
msgid ""
|
1425 |
+
"\r\n"
|
1426 |
+
"<ul>\r\n"
|
1427 |
+
"\t<li><strong>How do I edit the meta description of my homepage?</"
|
1428 |
+
"strong><br />If you are using a “blog homepage” (the default "
|
1429 |
+
"option of showing your blog posts on your homepage), just use the Blog "
|
1430 |
+
"Homepage field. If you have configured your <a href='options-reading."
|
1431 |
+
"php'>Settings ⇒ Reading</a> section to use a “frontpage” (i."
|
1432 |
+
"e. a Page as your homepage), just edit that Page’s meta description on "
|
1433 |
+
"the “Pages” tab.</li>\r\n"
|
1434 |
+
"</ul>\r\n"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: modules/meta/webmaster-verify.php:12 modules/meta/webmaster-verify.php:58
|
1438 |
+
msgid "Webmaster Verification Assistant"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: modules/meta/webmaster-verify.php:13
|
1442 |
+
msgid "W.M. Verification"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: modules/meta/webmaster-verify.php:47
|
1446 |
+
msgid "Google Webmaster Tools"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: modules/meta/webmaster-verify.php:48
|
1450 |
+
msgid "Yahoo! Site Explorer"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: modules/meta/webmaster-verify.php:49
|
1454 |
+
msgid "Bing Webmaster Center"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: modules/meta/webmaster-verify.php:59
|
1458 |
+
msgid ""
|
1459 |
+
"\r\n"
|
1460 |
+
"<ul>\r\n"
|
1461 |
+
"\t<li><strong>What it does:</strong> Webmaster Verification Assistant lets "
|
1462 |
+
"you enter in verification codes for the webmaster portals of the 3 leading "
|
1463 |
+
"search engines.</li>\r\n"
|
1464 |
+
"\t<li><strong>Why it helps:</strong> Webmaster Verification Assistant "
|
1465 |
+
"assists you in obtaining access to webmaster portals, which can provide you "
|
1466 |
+
"with valuable SEO tools.</li>\r\n"
|
1467 |
+
"\t<li><strong>How to use it:</strong> Use a search engine to locate the "
|
1468 |
+
"webmaster portal you’re interested in, sign up at the portal, and then "
|
1469 |
+
"obtain a verification code. Once you have the code, you can paste it in "
|
1470 |
+
"here, click Save Changes, then return to the portal to verify that you own "
|
1471 |
+
"the site. Once that’s done, you'll have access to the portal’s "
|
1472 |
+
"SEO tools.</li>\r\n"
|
1473 |
+
"</ul>\r\n"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: modules/sds-blog/sds-blog.php:12
|
1477 |
+
msgid "Whitepapers"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: modules/sds-blog/sds-blog.php:13
|
1481 |
+
msgid "SEO Design Solutions Whitepapers"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.2.1) #-#-#-#-#
|
1485 |
+
#. Author of the plugin/theme
|
1486 |
+
#: modules/sds-blog/sds-blog.php:49
|
1487 |
+
msgid "SEO Design Solutions"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: modules/sds-blog/sds-blog.php:50
|
1491 |
+
msgid ""
|
1492 |
+
"The search engine optimization articles below are loaded from the website of "
|
1493 |
+
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
1494 |
+
"an article’s title to read it."
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: modules/class.su-module.php:622
|
1498 |
+
msgid ""
|
1499 |
+
"All the modules on this page have been disabled. You can re-enable them "
|
1500 |
+
"using the <a href=\"%s\">Module Manager</a>."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: modules/class.su-module.php:971
|
1504 |
+
msgid "%1$s | %2$s %3$s by %4$s"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: modules/class.su-module.php:1050
|
1508 |
+
msgid "Your site currently doesn’t have any public items of this type."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: modules/class.su-module.php:1136
|
1512 |
+
msgid "«"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: modules/class.su-module.php:1137
|
1516 |
+
msgid "»"
|
1517 |
+
msgstr ""
|
1518 |
+
|
1519 |
+
#: modules/class.su-module.php:1144
|
1520 |
+
msgid "Displaying %s–%s of %s"
|
1521 |
+
msgstr ""
|
1522 |
+
|
1523 |
+
#: modules/class.su-module.php:1157 modules/404s/fofs-log.php:113
|
1524 |
+
msgid "Actions"
|
1525 |
+
msgstr ""
|
1526 |
+
|
1527 |
+
#: modules/class.su-module.php:1158
|
1528 |
+
msgid "ID"
|
1529 |
+
msgstr ""
|
1530 |
+
|
1531 |
+
#: modules/class.su-module.php:1192
|
1532 |
+
msgid "View"
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: modules/class.su-module.php:1194
|
1536 |
+
msgid "Edit"
|
1537 |
+
msgstr ""
|
1538 |
+
|
1539 |
+
#: modules/class.su-module.php:1358
|
1540 |
+
msgid "Settings updated."
|
1541 |
+
msgstr ""
|
1542 |
+
|
1543 |
+
#: modules/class.su-module.php:1379
|
1544 |
+
msgid "Save Changes"
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: modules/class.su-module.php:1919
|
1548 |
msgid ""
|
1549 |
+
"Are you sure you want to replace the textbox contents with this default "
|
1550 |
+
"value?"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: modules/class.su-module.php:1938 modules/settings/settings-data.php:23
|
1554 |
+
msgid "Reset"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: modules/class.su-module.php:2556 modules/class.su-module.php:2568
|
1558 |
+
msgid "A Deleted %s"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: modules/class.su-module.php:2558
|
1562 |
+
msgid "A Deleted Post"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: modules/class.su-module.php:2573
|
1566 |
+
msgid "A Deleted Term"
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
+
#: modules/class.su-module.php:2584 plugin/class.seo-ultimate.php:1749
|
1570 |
+
msgid "Author"
|
1571 |
+
msgstr ""
|
1572 |
+
|
1573 |
+
#: modules/class.su-module.php:2586
|
1574 |
+
msgid "A Deleted User"
|
1575 |
+
msgstr ""
|
1576 |
+
|
1577 |
+
#: modules/class.su-module.php:2601 plugin/class.seo-ultimate.php:1779
|
1578 |
+
msgid "Link Mask"
|
1579 |
+
msgstr ""
|
1580 |
+
|
1581 |
+
#: modules/class.su-module.php:2603
|
1582 |
+
msgid "Link Mask (Disabled)"
|
1583 |
+
msgstr ""
|
1584 |
+
|
1585 |
+
#: modules/class.su-module.php:2608
|
1586 |
+
msgid "A Deleted Link Mask"
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: modules/class.su-module.php:2633
|
1590 |
+
msgid "Type a URL or start typing the name of an item on your site"
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: modules/class.su-module.php:2646
|
1594 |
+
msgid "Remove this location from this textbox"
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
+
#: modules/class.su-module.php:2646
|
1598 |
+
msgid "X"
|
1599 |
+
msgstr ""
|
1600 |
+
|
1601 |
+
#: modules/rich-snippets/rich-snippets.php:12
|
1602 |
+
msgid "Rich Snippet Creator"
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
+
#: modules/rich-snippets/rich-snippets.php:17
|
1606 |
msgid ""
|
1607 |
+
"Reviews\n"
|
1608 |
+
"Review"
|
1609 |
+
msgstr ""
|
1610 |
+
|
1611 |
+
#: modules/rich-snippets/rich-snippets.php:28
|
1612 |
+
msgid "Data Format"
|
1613 |
+
msgstr ""
|
1614 |
+
|
1615 |
+
#: modules/rich-snippets/rich-snippets.php:29
|
1616 |
+
msgid "Categories/Tags That Indicate Reviews"
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: modules/rich-snippets/rich-snippets.php:37
|
1620 |
+
msgid "Microformats (recommended)"
|
1621 |
+
msgstr ""
|
1622 |
+
|
1623 |
+
#: modules/rich-snippets/rich-snippets.php:43
|
1624 |
+
msgid "HTML5 Microdata"
|
1625 |
+
msgstr ""
|
1626 |
+
|
1627 |
+
#: modules/rich-snippets/rich-snippets.php:49
|
1628 |
+
msgid "RDFa"
|
1629 |
+
msgstr ""
|
1630 |
+
|
1631 |
+
#: modules/rich-snippets/rich-snippets.php:62
|
1632 |
+
#: modules/rich-snippets/rich-snippets.php:229
|
1633 |
+
msgid "Review"
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: modules/rich-snippets/rich-snippets.php:70
|
1637 |
+
msgid "Item Reviewed"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#: modules/rich-snippets/rich-snippets.php:82
|
1641 |
+
msgid "Star Rating"
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: modules/rich-snippets/rich-snippets.php:87
|
1645 |
+
msgid "Review Author"
|
1646 |
+
msgstr ""
|
1647 |
+
|
1648 |
+
#: modules/rich-snippets/rich-snippets.php:93
|
1649 |
+
msgid "Date Reviewed"
|
1650 |
+
msgstr ""
|
1651 |
+
|
1652 |
+
#: modules/rich-snippets/rich-snippets.php:228
|
1653 |
+
#: modules/rich-snippets/rich-snippets.php:237
|
1654 |
+
msgid "None"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: modules/rich-snippets/rich-snippets.php:230
|
1658 |
+
msgid "Rich Snippet Type:"
|
|
|
|
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: modules/rich-snippets/rich-snippets.php:234
|
1662 |
+
msgid "Name of Reviewed Item:"
|
|
|
|
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: modules/rich-snippets/rich-snippets.php:238
|
1666 |
+
msgid "0.5 stars"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: modules/rich-snippets/rich-snippets.php:239
|
1670 |
+
msgid "1 star"
|
|
|
|
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: modules/rich-snippets/rich-snippets.php:240
|
1674 |
+
msgid "1.5 stars"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: modules/rich-snippets/rich-snippets.php:241
|
1678 |
+
msgid "2 stars"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: modules/rich-snippets/rich-snippets.php:242
|
1682 |
+
msgid "2.5 stars"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: modules/rich-snippets/rich-snippets.php:243
|
1686 |
+
msgid "3 stars"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: modules/rich-snippets/rich-snippets.php:244
|
1690 |
+
msgid "3.5 stars"
|
|
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: modules/rich-snippets/rich-snippets.php:245
|
1694 |
+
msgid "4 stars"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: modules/rich-snippets/rich-snippets.php:246
|
1698 |
+
msgid "4.5 stars"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: modules/rich-snippets/rich-snippets.php:247
|
1702 |
+
msgid "5 stars"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: modules/rich-snippets/rich-snippets.php:248
|
1706 |
+
msgid "Star Rating for Reviewed Item:"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: modules/rich-snippets/rich-snippets.php:259
|
1710 |
+
msgid ""
|
1711 |
+
"\r\n"
|
1712 |
+
"<ul>\r\n"
|
1713 |
+
"\t<li><strong>What it does:</strong> Rich Snippet Creator adds special code "
|
1714 |
+
"to your posts that asks Google to display special pertinent information "
|
1715 |
+
"(known as <a href='http://www.google.com/support/webmasters/bin/topic.py?"
|
1716 |
+
"hl=en&topic=219' target='_blank'>Rich Snippets</a>) in search results for "
|
1717 |
+
"certain types of content. For example, if you’ve written a product "
|
1718 |
+
"review, you can use Rich Snippet Creator to ask Google to display the star "
|
1719 |
+
"rating that you gave the product in your review next to your review webpage "
|
1720 |
+
"when it appears in search results.</li>\r\n"
|
1721 |
+
"\t<li><strong>Why it helps:</strong> Rich Snippet Creator enhances the "
|
1722 |
+
"search engine results for your content by asking Google to add extra, eye-"
|
1723 |
+
"catching info that could help draw in more search engine visitors.</li>\r\n"
|
1724 |
+
"\t<li><p><strong>How it works:</strong> When editing one of your posts or "
|
1725 |
+
"pages, see if your content fits one of the available rich snippet types (for "
|
1726 |
+
"example, a review). If so, select that type from the “Rich Snippet "
|
1727 |
+
"Type” dropdown box. Once you select the applicable type, additional "
|
1728 |
+
"options will appear that vary based on the type selected. For example, a "
|
1729 |
+
"“Star Rating” field will appear if you select the “"
|
1730 |
+
"Review” type.</p><p>Once you save the post/page, Rich Snippet Creator "
|
1731 |
+
"will add the special code to it. You can remove this code at any time by "
|
1732 |
+
"selecting “None” from the “Rich Snippet Type” "
|
1733 |
+
"dropdown and resaving the post/page.</p></li>\r\n"
|
1734 |
+
"</ul>\r\n"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: modules/rich-snippets/rich-snippets.php:270
|
1738 |
+
msgid ""
|
1739 |
+
"\r\n"
|
1740 |
+
"<ul>\r\n"
|
1741 |
+
"\t<li><strong>Data Format</strong> — This lets you select the “"
|
1742 |
+
"language” that Rich Snippet Creator uses to communicate the rich "
|
1743 |
+
"snippet data to Google. Google supports all three options. We recommend "
|
1744 |
+
"“Microformats” because it’s compatible with the greatest "
|
1745 |
+
"number of HTML/XHTML variants. This option will likely be of interest only "
|
1746 |
+
"to advanced users.</li>\r\n"
|
1747 |
+
"\t<li><strong>Categories/Tags That Indicate Reviews</strong> — If you "
|
1748 |
+
"haven’t set the “Rich Snippet Type” setting for an old "
|
1749 |
+
"post or page, then Rich Snippet Creator will automatically set its default "
|
1750 |
+
"type to “Review” (instead of “None”) if it has a "
|
1751 |
+
"category or tag whose name is in this list (the default list is “"
|
1752 |
+
"Reviews” and “Review”). Put one category/tag name per line."
|
1753 |
+
"</li>\r\n"
|
1754 |
+
"</ul>\r\n"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: modules/rich-snippets/rich-snippets.php:280
|
1758 |
msgid ""
|
1759 |
+
"\r\n"
|
1760 |
+
"<ul>\r\n"
|
1761 |
+
"\t<li><p><strong>Why aren’t rich snippets showing up in Google search "
|
1762 |
+
"results for my site?</strong><br />Enter the URL of your post/page into <a "
|
1763 |
+
"href='http://www.google.com/webmasters/tools/richsnippets' "
|
1764 |
+
"target='_blank'>Google’s testing tool</a> to make sure Google can find "
|
1765 |
+
"the rich snippet code on your site. If no code is found, check and make sure "
|
1766 |
+
"you've enabled rich snippets for that particular post/page.</p><p>Note that "
|
1767 |
+
"having the code on a post/page doesn’t guarantee that Google will "
|
1768 |
+
"actually use it to create a rich snippet. If Google is able to read your "
|
1769 |
+
"code but isn’t using it to generate rich snippets, you can ask Google "
|
1770 |
+
"to do so using <a href='http://www.google.com/support/webmasters/bin/request."
|
1771 |
+
"py?contact_type=rich_snippets_feedback' target='_blank'>this form</a>.</p></"
|
1772 |
+
"li>\r\n"
|
1773 |
+
"</ul>\r\n"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: modules/more-links/more-links.php:12 modules/more-links/more-links.php:102
|
1777 |
+
msgid "More Link Customizer"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: modules/more-links/more-links.php:30
|
1781 |
+
msgid "Default More Link Text"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: modules/more-links/more-links.php:51
|
1785 |
+
msgid "More Link Text:"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: modules/more-links/more-links.php:75
|
1789 |
+
msgid ""
|
1790 |
+
"\r\n"
|
1791 |
+
"<ul>\r\n"
|
1792 |
+
"\t<li><strong>What it does:</strong> More Link Customizer lets you modify "
|
1793 |
+
"the anchor text of your posts’ <a href='http://codex.wordpress.org/"
|
1794 |
+
"Customizing_the_Read_More' target='_blank'>“more” links</a>.</li>"
|
1795 |
+
"\r\n"
|
1796 |
+
"\t<li><strong>Why it helps:</strong> On the typical WordPress setup, the "
|
1797 |
+
"“more link” always has the same anchor text (e.g. “Read "
|
1798 |
+
"more of this entry”). Since internal anchor text conveys web page "
|
1799 |
+
"topicality to search engines, the “read more” phrase isn’t "
|
1800 |
+
"a desirable anchor phrase. More Link Customizer lets you replace the "
|
1801 |
+
"boilerplate text with a new anchor that, by default, integrates your post "
|
1802 |
+
"titles (which will ideally be keyword-oriented).</li>\r\n"
|
1803 |
+
"\t<li><strong>How to use it:</strong> On this page you can set the anchor "
|
1804 |
+
"text you’d like to use by default. The <code>{post}</code> variable "
|
1805 |
+
"will be replaced with the post’s title. HTML and encoded entities are "
|
1806 |
+
"supported. If instead you decide that you’d like to use the default "
|
1807 |
+
"anchor text specified by your currently-active theme, just erase the "
|
1808 |
+
"contents of the textbox. The anchor text can be overridden on a per-post "
|
1809 |
+
"basis via the “More Link Text” box in the “SEO "
|
1810 |
+
"Settings” section of the WordPress post editor.</li>\r\n"
|
1811 |
+
"</ul>\r\n"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: modules/more-links/more-links.php:83
|
1815 |
+
msgid ""
|
1816 |
+
"\r\n"
|
1817 |
+
"<ul>\r\n"
|
1818 |
+
"\t<li>\r\n"
|
1819 |
+
"\t\t<p><strong>Why is the More Link Customizer an improvement over "
|
1820 |
+
"WordPress’s built-in functionality?</strong><br />Although WordPress "
|
1821 |
+
"does allow basic <a href='http://codex.wordpress.org/"
|
1822 |
+
"Customizing_the_Read_More#Having_a_custom_text_for_each_post' "
|
1823 |
+
"target='_blank'>custom “more” anchors</a>, the SEO Ultimate "
|
1824 |
+
"approach has several benefits:</p>\r\n"
|
1825 |
+
"\t\t<ul>\r\n"
|
1826 |
+
"\t\t\t<li>More Link Customizer (MLC) lets you set a custom default anchor "
|
1827 |
+
"text. WordPress, on the other hand, leaves this up to the currently-active "
|
1828 |
+
"theme.</li>\r\n"
|
1829 |
+
"\t\t\t<li>MLC lets you dynamically incorporate the post’s title into "
|
1830 |
+
"the anchor text.</li>\r\n"
|
1831 |
+
"\t\t\t<li>MLC lets you include HTML tags in your anchor, whereas WordPress "
|
1832 |
+
"strips these out.</li>\r\n"
|
1833 |
+
"\t\t\t<li>MLC’s functionality is much more prominent than "
|
1834 |
+
"WordPress’s unintuitive, barely-documented approach.</li>\r\n"
|
1835 |
+
"\t\t\t<li>Unlike WordPress's method, MLC doesn't require you to utilize the "
|
1836 |
+
"HTML editor.</li>\r\n"
|
1837 |
+
"\t\t</ul>\r\n"
|
1838 |
+
"\t\t<p>If you’ve already specified custom anchors via WordPress’"
|
1839 |
+
"s method, SEO Ultimate will import those anchors automatically into the More "
|
1840 |
+
"Link Customizer.</p>\r\n"
|
1841 |
+
"\t</li>\r\n"
|
1842 |
+
"</ul>\r\n"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: modules/misc/misc.php:11
|
1846 |
+
msgid "Miscellaneous"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: modules/misc/misc.php:14
|
1850 |
+
msgid ""
|
1851 |
+
"The Miscellaneous page contains modules that don’t have enough "
|
1852 |
+
"settings to warrant their own separate admin pages."
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: modules/settings/settings-data.php:16
|
1856 |
+
msgid "Settings Data Manager"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: modules/settings/settings-data.php:17
|
1860 |
+
msgid "Manage Settings Data"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: modules/settings/settings-data.php:21
|
1864 |
+
msgid "Import"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: modules/settings/settings-data.php:22
|
1868 |
+
msgid "Export"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: modules/settings/settings-data.php:82
|
1872 |
+
msgid "Settings successfully imported."
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: modules/settings/settings-data.php:84
|
1876 |
+
msgid ""
|
1877 |
+
"The uploaded file is not in the proper format. Settings could not be "
|
1878 |
+
"imported."
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: modules/settings/settings-data.php:86
|
1882 |
+
msgid "The settings file could not be uploaded successfully."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
+
#: modules/settings/settings-data.php:89
|
1886 |
msgid ""
|
1887 |
+
"Settings could not be imported because no settings file was selected. Please "
|
1888 |
+
"click the “Browse” button and select a file to import."
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: modules/settings/settings-data.php:130
|
1892 |
+
msgid ""
|
1893 |
+
"The uploaded file is not in the proper format. Links could not be imported."
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: modules/settings/settings-data.php:172
|
1897 |
+
msgid "Links successfully imported."
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: modules/settings/settings-data.php:175
|
1901 |
+
msgid "The CSV file could not be uploaded successfully."
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: modules/settings/settings-data.php:178
|
1905 |
+
msgid ""
|
1906 |
+
"Links could not be imported because no CSV file was selected. Please click "
|
1907 |
+
"the “Browse” button and select a file to import."
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: modules/settings/settings-data.php:188
|
1911 |
+
msgid "Import SEO Ultimate Settings File"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: modules/settings/settings-data.php:190
|
1915 |
+
msgid ""
|
1916 |
+
"You can use this form to upload and import an SEO Ultimate settings file "
|
1917 |
+
"stored on your computer. (These files can be created using the Export tool.) "
|
1918 |
+
"Note that importing a file will overwrite your existing settings with those "
|
1919 |
+
"in the file."
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: modules/settings/settings-data.php:194
|
1923 |
+
msgid ""
|
1924 |
+
"Are you sure you want to import this settings file? This will overwrite your "
|
1925 |
+
"current settings and cannot be undone."
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: modules/settings/settings-data.php:195
|
1929 |
+
msgid "Import Settings File"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: modules/settings/settings-data.php:201
|
1933 |
+
msgid "Import Deeplink Juggernaut CSV File"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: modules/settings/settings-data.php:203
|
1937 |
+
msgid ""
|
1938 |
+
"You can use this form to upload and import a Deeplink Juggernaut CSV file "
|
1939 |
+
"stored on your computer. (These files can be created using the Export tool.) "
|
1940 |
+
"Note that importing a file will overwrite your existing links with those in "
|
1941 |
+
"the file."
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: modules/settings/settings-data.php:207
|
1945 |
msgid ""
|
1946 |
+
"Are you sure you want to import this CSV file? This will overwrite your "
|
1947 |
+
"current Deeplink Juggernaut links and cannot be undone."
|
1948 |
msgstr ""
|
1949 |
|
1950 |
+
#: modules/settings/settings-data.php:208
|
1951 |
+
msgid "Import CSV File"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: modules/settings/settings-data.php:223
|
1955 |
+
msgid "Import from Other Plugins"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: modules/settings/settings-data.php:225
|
1959 |
+
msgid ""
|
1960 |
+
"You can import settings and data from these plugins. Clicking a plugin’"
|
1961 |
+
"s name will take you to the importer page, where you can customize "
|
1962 |
+
"parameters and start the import."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: modules/settings/settings-data.php:245
|
1966 |
+
msgid "Export SEO Ultimate Settings File"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: modules/settings/settings-data.php:247
|
1970 |
+
msgid ""
|
1971 |
+
"You can use this export tool to download an SEO Ultimate settings file to "
|
1972 |
+
"your computer."
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: modules/settings/settings-data.php:249
|
1976 |
+
msgid ""
|
1977 |
+
"A settings file includes the data of every checkbox and textbox of every "
|
1978 |
+
"installed module. It does NOT include site-specific data like logged 404s or "
|
1979 |
+
"post/page title/meta data (this data would be included in a standard "
|
1980 |
+
"database backup, however)."
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: modules/settings/settings-data.php:252
|
1984 |
+
msgid "Download Settings File"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: modules/settings/settings-data.php:257
|
1988 |
+
msgid "Export Deeplink Juggernaut CSV File"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: modules/settings/settings-data.php:259
|
1992 |
msgid ""
|
1993 |
+
"You can use this export tool to download a CSV file (comma-separated values "
|
1994 |
+
"file) that contains your Deeplink Juggernaut links. Once you download this "
|
1995 |
+
"file to your computer, you can edit it using your favorite spreadsheet "
|
1996 |
+
"program. When you’re done editing, you can re-upload the file using "
|
1997 |
+
"the Import tool."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: modules/settings/settings-data.php:262
|
2001 |
+
msgid "Download CSV File"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: modules/settings/settings-data.php:269
|
2005 |
+
msgid "All settings have been erased and defaults have been restored."
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: modules/settings/settings-data.php:271
|
2009 |
+
msgid ""
|
2010 |
+
"You can erase all your SEO Ultimate settings and restore them to “"
|
2011 |
+
"factory defaults” by clicking the button below."
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: modules/settings/settings-data.php:274
|
2015 |
msgid ""
|
2016 |
+
"Are you sure you want to erase all module settings? This cannot be undone."
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: modules/settings/settings-data.php:275
|
2020 |
+
msgid "Restore Default Settings"
|
|
|
|
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: modules/settings/uninstall.php:17
|
2024 |
+
msgid "Uninstaller"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1278
|
2028 |
+
msgid "Uninstall"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#: modules/settings/uninstall.php:27
|
2032 |
msgid ""
|
2033 |
+
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
2034 |
+
"files."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: modules/settings/uninstall.php:30
|
|
|
2038 |
msgid ""
|
2039 |
+
"Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
|
2040 |
+
"your SEO Ultimate settings and cannot be undone."
|
2041 |
+
msgstr ""
|
2042 |
+
|
2043 |
+
#: modules/settings/uninstall.php:31
|
2044 |
+
msgid "Uninstall Now"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: modules/settings/uninstall.php:35 modules/settings/uninstall.php:42
|
2048 |
+
msgid "Uninstall SEO Ultimate"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: modules/settings/uninstall.php:46
|
2052 |
+
msgid "Deleted settings."
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: modules/settings/uninstall.php:53
|
2056 |
+
msgid "An error occurred while deleting files."
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: modules/settings/uninstall.php:55
|
2060 |
+
msgid "Deleted files."
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: modules/settings/uninstall.php:56
|
2064 |
+
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: modules/settings/install.php:18
|
2068 |
+
msgid "Upgrade/Downgrade/Reinstall"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: modules/settings/install.php:19
|
2072 |
+
msgid "Installer"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: modules/settings/install.php:23 modules/settings/install.php:48
|
2076 |
+
msgid "Upgrade"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: modules/settings/install.php:24 modules/settings/install.php:71
|
2080 |
+
msgid "Downgrade"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: modules/settings/install.php:25 modules/settings/install.php:86
|
2084 |
+
msgid "Reinstall"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: modules/settings/install.php:42
|
2088 |
+
msgid ""
|
2089 |
+
"From the list below, select the version to which you would like to upgrade. "
|
2090 |
+
"Then click the “Upgrade” button at the bottom of the screen."
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: modules/settings/install.php:51
|
2094 |
+
msgid "You are already running the latest version."
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: modules/settings/install.php:53
|
2098 |
+
msgid ""
|
2099 |
+
"There was an error retrieving the list of available versions. Please try "
|
2100 |
+
"again later. You can also upgrade to the latest version of SEO Ultimate "
|
2101 |
+
"using the WordPress plugin upgrader."
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: modules/settings/install.php:62
|
2105 |
+
msgid ""
|
2106 |
+
"Downgrading is provided as a convenience only and is not officially "
|
2107 |
+
"supported. Although unlikely, you may lose data in the downgrading process. "
|
2108 |
+
"It is your responsibility to backup your database before proceeding."
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: modules/settings/install.php:65
|
2112 |
msgid ""
|
2113 |
+
"From the list below, select the version to which you would like to "
|
2114 |
+
"downgrade. Then click the “Downgrade” button at the bottom of "
|
2115 |
+
"the screen."
|
|
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: modules/settings/install.php:74
|
2119 |
msgid ""
|
2120 |
+
"Downgrading to versions earlier than %s is not supported because doing so "
|
2121 |
+
"will result in data loss."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: modules/settings/install.php:76
|
2125 |
msgid ""
|
2126 |
+
"There was an error retrieving the list of available versions. Please try "
|
2127 |
+
"again later."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: modules/settings/install.php:81
|
2131 |
msgid ""
|
2132 |
+
"To download and install a fresh copy of the SEO Ultimate version you are "
|
2133 |
+
"currently using, click the “Reinstall” button below."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: modules/settings/install.php:108
|
2137 |
+
msgid "Your Current Version"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: modules/settings/install.php:110
|
2141 |
+
msgid "Latest Version"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: modules/settings/install.php:130
|
2145 |
+
msgid ""
|
2146 |
+
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
2147 |
+
"blog."
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: modules/settings/install.php:140
|
2151 |
+
msgid "Downgrade to SEO Ultimate %s"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: modules/settings/install.php:143
|
2155 |
+
msgid "Reinstall SEO Ultimate %s"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: modules/settings/install.php:146
|
2159 |
+
msgid "Upgrade to SEO Ultimate %s"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: modules/settings/settings.php:12
|
2163 |
+
msgid "Plugin Settings"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: modules/settings/settings.php:13
|
2167 |
+
msgid "SEO Ultimate Plugin Settings"
|
|
|
|
|
|
|
|
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 7.2.1) #-#-#-#-#
|
2171 |
+
#. Plugin Name of the plugin/theme
|
2172 |
+
#: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:791
|
2173 |
+
msgid "SEO Ultimate"
|
2174 |
+
msgstr ""
|
2175 |
+
|
2176 |
+
#: modules/settings/settings.php:23
|
2177 |
msgid ""
|
2178 |
"\r\n"
|
2179 |
+
"<p>The Settings module lets you manage settings related to the SEO Ultimate "
|
2180 |
+
"plugin as a whole.</p>\r\n"
|
|
|
|
|
|
|
|
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: modules/settings/settings.php:29 modules/settings/global-settings.php:18
|
2184 |
+
msgid "Global Settings"
|
2185 |
+
msgstr ""
|
2186 |
+
|
2187 |
+
#: modules/settings/settings.php:30
|
2188 |
msgid ""
|
2189 |
"\r\n"
|
2190 |
+
"<p>Here’s information on some of the settings:</p>\r\n"
|
2191 |
"<ul>\r\n"
|
2192 |
+
"\t<li><strong>Enable nofollow’d attribution link</strong> — If "
|
2193 |
+
"enabled, the plugin will display an attribution link on your site.</li>\r\n"
|
2194 |
+
"\t<li><strong>Notify me about unnecessary active plugins</strong> — If "
|
2195 |
+
"enabled, SEO Ultimate will add notices to your “Plugins” "
|
2196 |
+
"administration page if you have any other plugins installed whose "
|
2197 |
+
"functionality SEO Ultimate replaces.</li>\r\n"
|
2198 |
+
"\t<li><strong>Insert comments around HTML code insertions</strong> — "
|
2199 |
+
"If enabled, SEO Ultimate will use HTML comments to identify all code it "
|
2200 |
+
"inserts into your <code><head></code> tag. This is useful if you’"
|
2201 |
+
"re trying to figure out whether or not SEO Ultimate is inserting a certain "
|
2202 |
+
"piece of header code.</li>\r\n"
|
2203 |
"</ul>\r\n"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: modules/settings/settings.php:42
|
2207 |
msgid ""
|
2208 |
"\r\n"
|
2209 |
"<ul>\r\n"
|
2210 |
"\t<li>\r\n"
|
2211 |
+
"\t\t<p><strong>Why doesn’t the settings exporter include all my data "
|
2212 |
+
"in an export?</strong><br />The settings export/import system is designed to "
|
2213 |
+
"facilitate moving settings between sites. It is NOT a replacement for "
|
2214 |
+
"keeping your database backed up. The settings exporter doesn’t include "
|
2215 |
+
"data that is specific to your site. For example, logged 404 errors are not "
|
2216 |
+
"included because those 404 errors only apply to your site, not another site. "
|
2217 |
+
"Also, post/page titles/meta are not included because the site into which you "
|
2218 |
+
"import the file could have totally different posts/pages located under the "
|
2219 |
+
"same ID numbers.</p>\r\n"
|
2220 |
+
"\t\t<p>If you’re moving a site to a different server or restoring a "
|
2221 |
+
"crashed site, you should do so with database backup/restore.</p>\r\n"
|
2222 |
"\t</li>\r\n"
|
|
|
|
|
|
|
2223 |
"</ul>\r\n"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: modules/settings/global-settings.php:40
|
2227 |
+
msgid "Enable nofollow’d attribution link"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: modules/settings/global-settings.php:41
|
2231 |
+
msgid "Enable attribution link CSS styling"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: modules/settings/global-settings.php:42
|
2235 |
+
msgid "Notify me about unnecessary active plugins"
|
|
|
|
|
|
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: modules/settings/global-settings.php:43
|
2239 |
+
msgid "Insert comments around HTML code insertions"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: modules/404s/fofs-settings.php:16
|
2243 |
+
msgid "404 Monitor Settings"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: modules/404s/fofs-settings.php:37
|
2247 |
+
msgid "Continue monitoring for new 404 errors"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: modules/404s/fofs-settings.php:37
|
2251 |
+
msgid "Monitoring Settings"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: modules/404s/fofs-settings.php:39
|
2255 |
+
msgid "Only log these types of 404 errors:"
|
|
|
|
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: modules/404s/fofs-settings.php:40
|
2259 |
+
msgid "404s generated by search engine spiders"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: modules/404s/fofs-settings.php:41
|
2263 |
+
msgid "404s with referring URLs"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: modules/404s/fofs-settings.php:42
|
2267 |
+
msgid "Log Restrictions"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: modules/404s/fofs-settings.php:43
|
2271 |
+
msgid "Maximum Log Entries"
|
|
|
|
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: modules/404s/fofs-settings.php:44
|
2275 |
+
msgid "URLs to Ignore"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: modules/404s/fofs-settings.php:44
|
2279 |
+
msgid "(Use * as wildcard)"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: modules/404s/fofs.php:11
|
2283 |
+
msgid "404 Monitor"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: modules/404s/fofs.php:20
|
2287 |
+
msgid ""
|
2288 |
+
"\r\n"
|
2289 |
+
"<ul>\r\n"
|
2290 |
+
"\t<li><strong>What it does:</strong> The 404 Monitor keeps track of non-"
|
2291 |
+
"existent URLs that generated 404 errors. 404 errors are when a search engine "
|
2292 |
+
"or visitor comes to a URL on your site but nothing exists at that URL.</li>"
|
2293 |
+
"\r\n"
|
2294 |
+
"\t<li><strong>Why it helps:</strong> The 404 Monitor helps you spot 404 "
|
2295 |
+
"errors; then you can take steps to correct them to reduce link-juice loss "
|
2296 |
+
"from broken links.</li>\r\n"
|
2297 |
+
"\t<li><strong>How to use it:</strong> Check the 404 Monitor occasionally for "
|
2298 |
+
"errors. (A numeric bubble will appear next to the “404 Monitor” "
|
2299 |
+
"item on the menu if there are any newly-logged URLs that you haven't seen "
|
2300 |
+
"yet. These new URLs will also be highlighted green in the table.) If a 404 "
|
2301 |
+
"error's referring URL is located on your site, try locating and fixing the "
|
2302 |
+
"broken URL. If moved content was previously located at the requested URL, "
|
2303 |
+
"try using a redirection plugin to point the old URL to the new one.</li>\r\n"
|
2304 |
+
"</ul>\r\n"
|
2305 |
+
"\r\n"
|
2306 |
+
"<p>If there are no 404 errors in the log, this is good and means there's no "
|
2307 |
+
"action required on your part.</p>\r\n"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: modules/404s/fofs.php:32
|
2311 |
+
msgid "Log Help"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: modules/404s/fofs.php:33
|
2315 |
+
msgid ""
|
2316 |
+
"\r\n"
|
2317 |
+
"<p>You can perform the following actions on each entry in the log:</p>\r\n"
|
2318 |
+
"\r\n"
|
2319 |
+
"<ul>\r\n"
|
2320 |
+
"\t<li>The “View” button will open the URL in a new window. This "
|
2321 |
+
"is useful for testing whether or not a redirect is working.</li>\r\n"
|
2322 |
+
"\t<li>The “Google Cache” button will open Google's archived "
|
2323 |
+
"version of the URL in a new window. This is useful for determining what "
|
2324 |
+
"content, if any, used to be located at that URL.</li>\r\n"
|
2325 |
+
"\t<li>Once you've taken care of a 404 error, you can click the “"
|
2326 |
+
"Remove” button to remove it from the list. The URL will reappear on "
|
2327 |
+
"the list if it triggers a 404 error in the future.</li>\r\n"
|
2328 |
+
"</ul>\r\n"
|
2329 |
+
msgstr ""
|
2330 |
|
2331 |
+
#: modules/404s/fofs.php:46
|
2332 |
+
msgid ""
|
2333 |
+
"\r\n"
|
2334 |
+
"<p>The following options are available on the Settings tab:</p>\r\n"
|
2335 |
+
"\r\n"
|
2336 |
+
"<ul>\r\n"
|
2337 |
+
"\t<li>\r\n"
|
2338 |
+
"\t\t<strong>Monitoring Settings</strong>\r\n"
|
2339 |
+
"\t\t<ul>\r\n"
|
2340 |
+
"\t\t\t<li><strong>Continue monitoring for new 404 errors</strong> — If "
|
2341 |
+
"disabled, 404 Monitor will keep existing 404 errors in the log but won't add "
|
2342 |
+
"any new ones.</li>\r\n"
|
2343 |
+
"\t\t</ul>\r\n"
|
2344 |
+
"\t</li>\r\n"
|
2345 |
+
"\t<li>\r\n"
|
2346 |
+
"\t\t<strong>Log Restrictions</strong>\r\n"
|
2347 |
+
"\t\t<ul>\r\n"
|
2348 |
+
"\t\t\t<li><strong>Only log these types of 404 errors</strong> — Check "
|
2349 |
+
"this option to log a 404 error <em>only</em> if it meets at least one of the "
|
2350 |
+
"criteria you specify. If you don't enable any criteria, no 404 errors will "
|
2351 |
+
"be logged.\r\n"
|
2352 |
+
"\t\t\t\t<ul>\r\n"
|
2353 |
+
"\t\t\t\t\t<li><strong>404s generated by search engine spiders</strong> "
|
2354 |
+
"— When logging restriction is enabled, this option will make an "
|
2355 |
+
"exception for 404 errors generated by one of the top search engines (Google, "
|
2356 |
+
"Yahoo, Baidu, Bing, Yandex, Soso, Ask.com, Sogou, or AltaVista).</li>\r\n"
|
2357 |
+
"\t\t\t\t\t<li><strong>404s with referring URLs</strong> — When logging "
|
2358 |
+
"restriction is enabled, this option will make an exception for 404 errors "
|
2359 |
+
"generated by users who click a link on your site or another site first "
|
2360 |
+
"before ending up at a 404 page on your site.</li>\r\n"
|
2361 |
+
"\t\t\t\t</ul>\r\n"
|
2362 |
+
"\t\t\t</li>\r\n"
|
2363 |
+
"\t\t</ul>\r\n"
|
2364 |
+
"\t</li>\r\n"
|
2365 |
+
"\t<li><strong>Maximum Log Entries</strong> — Here you can set the "
|
2366 |
+
"maximum number of log entries that 404 Monitor will keep at a time. Setting "
|
2367 |
+
"this to a reasonable number will help keep database usage under control. If "
|
2368 |
+
"you change this setting, it will take effect the next time a 404 is logged.</"
|
2369 |
+
"li>\r\n"
|
2370 |
+
"\t<li><strong>URLs to Ignore</strong> — URLs entered here will be "
|
2371 |
+
"ignored whenever they generate 404 errors in the future. You can use "
|
2372 |
+
"asterisks (*) as wildcards.</li>\r\n"
|
2373 |
+
"</ul>\r\n"
|
2374 |
+
msgstr ""
|
2375 |
|
2376 |
+
#: modules/404s/fofs.php:75
|
2377 |
msgid ""
|
2378 |
+
"\r\n"
|
2379 |
+
"<p>404 Monitor doesn't appear to work? Take these notes into consideration:</"
|
2380 |
+
"p>\r\n"
|
2381 |
+
"\r\n"
|
2382 |
+
"<ul>\r\n"
|
2383 |
+
"\t<li>The 404 Monitor doesn't record 404 errors generated by logged-in users."
|
2384 |
+
"</li>\r\n"
|
2385 |
+
"\t<li>In order for the 404 Monitor to track 404 errors, you must have non-"
|
2386 |
+
"default permalinks enabled under <a href='options-permalink.php' "
|
2387 |
+
"target='_blank'>Settings ⇒ Permalinks</a>.</li>\r\n"
|
2388 |
+
"\t<li>Some parts of your website may not be under WordPress's control; the "
|
2389 |
+
"404 Monitor can't track 404 errors on non-WordPress website areas.</li>\r\n"
|
2390 |
+
"</ul>\r\n"
|
2391 |
+
msgstr ""
|
2392 |
|
2393 |
+
#: modules/404s/fofs-log.php:16
|
2394 |
+
msgid "404 Monitor Log"
|
2395 |
+
msgstr ""
|
|
|
|
|
|
|
2396 |
|
2397 |
+
#: modules/404s/fofs-log.php:17
|
2398 |
+
msgid "Log"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: modules/404s/fofs-log.php:114
|
2402 |
+
msgid "Hits"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: modules/404s/fofs-log.php:115
|
2406 |
+
msgid "URL with 404 Error"
|
|
|
|
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: modules/404s/fofs-log.php:116
|
2410 |
+
msgid "Date of Most Recent Hit"
|
|
|
|
|
|
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: modules/404s/fofs-log.php:117
|
2414 |
+
msgid "Referers"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
|
2418 |
+
msgid "User Agents"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: modules/404s/fofs-log.php:134
|
2422 |
+
msgid ""
|
2423 |
+
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
2424 |
+
"Settings tab."
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: modules/404s/fofs-log.php:141
|
2428 |
+
msgid "The log entry was successfully deleted."
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: modules/404s/fofs-log.php:143
|
2432 |
+
msgid "This log entry has already been deleted."
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: modules/404s/fofs-log.php:152
|
2436 |
+
msgid "The log was successfully cleared."
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: modules/404s/fofs-log.php:156
|
2440 |
+
msgid "No 404 errors in the log."
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: modules/404s/fofs-log.php:180
|
2444 |
+
msgid "Open URL in new window (will not be logged)"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: modules/404s/fofs-log.php:181
|
2448 |
+
msgid "Query Google for cached version of URL (opens in new window)"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#: modules/404s/fofs-log.php:182
|
2452 |
+
msgid "Remove this URL from the log"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: modules/404s/fofs-log.php:185
|
2456 |
+
msgid "%s at %s"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: modules/404s/fofs-log.php:189
|
2460 |
+
msgid "View list of referring URLs"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: modules/404s/fofs-log.php:190
|
2464 |
+
msgid "View list of user agents"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: modules/404s/fofs-log.php:200
|
2468 |
+
msgid "Referring URLs"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
|
2472 |
+
msgid "Hide list"
|
|
|
|
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: modules/404s/fofs-log.php:252
|
2476 |
+
msgid "Are you sure you want to delete all 404 log entries?"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: modules/404s/fofs-log.php:254
|
2480 |
+
msgid "Clear Log"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: modules/permalinks/permalinks.php:15
|
2484 |
+
msgid "Permalink Tweaker"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
#: modules/permalinks/permalinks.php:50
|
2488 |
+
msgid ""
|
2489 |
+
"To use the Permalinks Tweaker, you must disable default (query-string) "
|
2490 |
+
"permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: modules/permalinks/permalinks.php:75
|
2494 |
+
msgid "Remove the URL bases of..."
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
#: modules/permalinks/permalinks.php:80
|
2498 |
+
msgid "Before"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
+
#: modules/permalinks/permalinks.php:82
|
2502 |
+
msgid "After"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
+
#: modules/permalinks/permalinks.php:102
|
2506 |
+
msgid "term archive"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
+
#: modules/permalinks/permalinks.php:103
|
2510 |
+
msgid "page"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
+
#: modules/permalinks/permalinks.php:104
|
2514 |
+
msgid "URL Conflict Resolution"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2515 |
msgstr ""
|
2516 |
|
2517 |
+
#: modules/permalinks/permalinks.php:104
|
2518 |
msgid ""
|
2519 |
+
"If a term archive and a Page with the same slug end up having the same URL "
|
2520 |
+
"because of the term’s base being removed, the URL should be given to "
|
2521 |
+
"the %s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2522 |
msgstr ""
|
2523 |
|
2524 |
#: modules/titles/titles.php:12
|
2886 |
"</ul>\r\n"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
+
#: modules/wp-settings/wp-settings.php:14
|
2890 |
+
msgid "Settings Monitor (Beta)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2891 |
msgstr ""
|
2892 |
|
2893 |
+
#: modules/wp-settings/wp-settings.php:15
|
2894 |
+
msgid "Settings Monitor"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: modules/wp-settings/wp-settings.php:30
|
2898 |
+
msgid "Blog is visible to search engines"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
+
#: modules/wp-settings/wp-settings.php:31
|
2902 |
+
msgid "WordPress will allow search engines to visit your site."
|
2903 |
msgstr ""
|
2904 |
|
2905 |
+
#: modules/wp-settings/wp-settings.php:33
|
2906 |
+
msgid "Blog is hidden from search engines"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2907 |
msgstr ""
|
2908 |
|
2909 |
+
#: modules/wp-settings/wp-settings.php:34
|
2910 |
msgid ""
|
2911 |
+
"WordPress is configured to block search engines. This will nullify your "
|
2912 |
+
"site’s SEO and should be resolved immediately."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: modules/wp-settings/wp-settings.php:38
|
2916 |
+
msgid "Query-string permalinks enabled"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: modules/wp-settings/wp-settings.php:39
|
2920 |
msgid ""
|
2921 |
+
"It is highly recommended that you use a non-default and non-numeric "
|
2922 |
+
"permalink structure."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2923 |
msgstr ""
|
2924 |
|
2925 |
+
#: modules/wp-settings/wp-settings.php:43
|
2926 |
+
msgid "Pathinfo permalinks enabled"
|
|
|
2927 |
msgstr ""
|
2928 |
|
2929 |
+
#: modules/wp-settings/wp-settings.php:44
|
2930 |
+
msgid ""
|
2931 |
+
"Pathinfo permalinks add a keyword-less “index.php” prefix. This "
|
2932 |
+
"is not ideal, but it may be beyond your control (since it’s likely "
|
2933 |
+
"caused by your site’s web hosting setup)."
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: modules/wp-settings/wp-settings.php:49
|
2937 |
+
msgid "Permalinks include the post slug"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: modules/wp-settings/wp-settings.php:50
|
2941 |
+
msgid ""
|
2942 |
+
"Including a version of the post’s title helps provide keyword-rich "
|
2943 |
+
"URLs."
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: modules/wp-settings/wp-settings.php:52
|
2947 |
+
msgid "Permalinks do not include the post slug"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: modules/wp-settings/wp-settings.php:53
|
2951 |
+
msgid ""
|
2952 |
+
"It is highly recommended that you include the %postname% variable in the "
|
2953 |
+
"permalink structure."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: modules/wp-settings/wp-settings.php:63
|
2957 |
+
msgid ""
|
2958 |
+
"Settings Monitor analyzes your blog’s settings and notifies you of any "
|
2959 |
+
"problems. If any issues are found, they will show up in red or yellow below."
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: modules/wp-settings/wp-settings.php:75
|
2963 |
+
msgid "Go to setting »"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: modules/files/files.php:14
|
2967 |
+
msgid "File Editor"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: modules/files/files.php:53
|
2971 |
+
msgid ""
|
2972 |
+
"A .htaccess file exists, but it’s not writable. You can edit it here "
|
2973 |
+
"once the file permissions are corrected."
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: modules/files/files.php:59
|
2977 |
+
msgid ""
|
2978 |
+
"WordPress won’t be able to display your robots.txt file because the "
|
2979 |
+
"default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
|
2980 |
+
"structure</a> is in use."
|
2981 |
msgstr ""
|
2982 |
|
2983 |
+
#: modules/files/files.php:66
|
2984 |
+
msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
+
#: modules/files/files.php:70
|
2988 |
+
msgid "Enable this custom robots.txt file and disable the default file"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
+
#: modules/files/files.php:71
|
2992 |
+
msgid "Let other plugins add rules to my custom robots.txt file"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
+
#: modules/files/files.php:72
|
2996 |
+
msgid "robots.txt Settings"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
+
#: modules/files/files.php:75
|
3000 |
+
msgid ""
|
3001 |
+
"Please realize that incorrectly editing your robots.txt file could block "
|
3002 |
+
"search engines from your site."
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: modules/files/files.php:79
|
3006 |
+
msgid ".htaccess"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
+
#: modules/files/files.php:82
|
3010 |
+
msgid ""
|
3011 |
+
"Also, incorrectly editing your .htaccess file could disable your entire "
|
3012 |
+
"website. Edit with caution!"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: modules/files/files.php:134
|
3016 |
+
msgid ""
|
3017 |
+
"Please note that your privacy settings won’t have any effect on your "
|
3018 |
+
"robots.txt file, since you’re using <a href=\"%s\">a custom one</a>."
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: modules/files/files.php:145
|
3022 |
msgid ""
|
3023 |
"\r\n"
|
3024 |
"<ul>\r\n"
|
3025 |
+
"\t<li><strong>What it does:</strong> The File Editor module lets you edit "
|
3026 |
+
"two important SEO-related files: robots.txt and .htaccess.</li>\r\n"
|
3027 |
+
"\t<li><strong>Why it helps:</strong> You can use the <a href='http://www."
|
3028 |
+
"robotstxt.org/robotstxt.html' target='_blank'>robots.txt file</a> to give "
|
3029 |
+
"instructions to search engine spiders. You can use the <a href='http://httpd."
|
3030 |
+
"apache.org/docs/2.2/howto/htaccess.html' target='_blank'>.htaccess file</a> "
|
3031 |
+
"to implement advanced SEO strategies (URL rewriting, regex redirects, etc.). "
|
3032 |
+
"SEO Ultimate makes editing these files easier than ever.</li>\r\n"
|
3033 |
+
"\t<li><strong>How to use it:</strong> Edit the files as desired, then click "
|
3034 |
+
"Save Changes. If you create a custom robots.txt file, be sure to enable it "
|
3035 |
+
"with the checkbox.</li>\r\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3036 |
"</ul>\r\n"
|
3037 |
msgstr ""
|
3038 |
|
3039 |
+
#: modules/files/files.php:156
|
3040 |
msgid ""
|
3041 |
"\r\n"
|
3042 |
"<ul>\r\n"
|
3043 |
+
"\t<li><strong>Will my robots.txt edits remain if I disable the File Editor?</"
|
3044 |
+
"strong><br />No. On a WordPress blog, the robots.txt file is dynamically "
|
3045 |
+
"generated just like your posts and Pages. If you disable the File Editor "
|
3046 |
+
"module or the entire SEO Ultimate plugin, the File Editor won’t be "
|
3047 |
+
"able to insert your custom code into the robots.txt file anymore.</li>\r\n"
|
3048 |
+
"\t<li><strong>Will my .htaccess edits remain if I disable the File Editor?</"
|
3049 |
+
"strong><br />Yes. The .htaccess file is static. Your edits will remain even "
|
3050 |
+
"if you disable SEO Ultimate or its File Editor module.</li>\r\n"
|
|
|
|
|
|
|
|
|
|
|
3051 |
"</ul>\r\n"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: modules/files/files.php:166
|
3055 |
msgid ""
|
3056 |
"\r\n"
|
3057 |
"<ul>\r\n"
|
3058 |
+
"\t<li><strong>Why do I get a “500 Server Error” after using the "
|
3059 |
+
"File Editor?</strong><br />You may have inserted code into your .htaccess "
|
3060 |
+
"file that your web server can't understand. As the File Editor warns, "
|
3061 |
+
"incorrectly editing your .htaccess file can disable your entire website in "
|
3062 |
+
"this way. To restore your site, you'll need to use an FTP client (or your "
|
3063 |
+
"web host's File Manager) to edit or rename your .htaccess file. If you need "
|
3064 |
+
"help, please contact your web host.</li>\r\n"
|
3065 |
+
"\t<li><strong>Where did my .htaccess edits go?</strong><br />The .htaccess "
|
3066 |
+
"file is static, so SEO Ultimate doesn't have total control over it. It’"
|
3067 |
+
"s possible that WordPress, another plugin, or other software may overwrite "
|
3068 |
+
"your .htaccess file. If you have a backup of your blog’s files, you "
|
3069 |
+
"can try recovering your edits from there.</li>\r\n"
|
3070 |
"</ul>\r\n"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
+
#: modules/canonical/canonical.php:12 modules/canonical/canonical.php:201
|
3074 |
+
msgid "Canonicalizer"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
+
#: modules/canonical/canonical.php:39
|
3078 |
msgid ""
|
3079 |
+
"Generate <code><link rel="canonical" /></code> meta tags."
|
|
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: modules/canonical/canonical.php:40
|
3083 |
+
msgid "Send <code>rel="canonical"</code> HTTP headers."
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: modules/canonical/canonical.php:41
|
3087 |
+
msgid "Redirect requests for nonexistent pagination."
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: modules/canonical/canonical.php:202
|
3091 |
+
msgid ""
|
3092 |
+
"\r\n"
|
3093 |
+
"<ul>\r\n"
|
3094 |
+
"\t<li>\r\n"
|
3095 |
+
"\t\t<p><strong>What it does:</strong> Canonicalizer improves on two "
|
3096 |
+
"WordPress features to minimize possible exact-content duplication penalties. "
|
3097 |
+
"The <code><link rel="canonical" /></code> tags setting "
|
3098 |
+
"improves on the canonical tags feature of WordPress 2.9 and above by "
|
3099 |
+
"encompassing much more of your site than just your posts and Pages.</p>\r\n"
|
3100 |
+
"\t\t<p>The nonexistent pagination redirect feature fills a gap in "
|
3101 |
+
"WordPress's built-in canonicalization functionality: for example, if a URL "
|
3102 |
+
"request is made for page 6 of a category archive, and that category doesn't "
|
3103 |
+
"have a page 6, then by default, depending on the context, WordPress will "
|
3104 |
+
"display a blank page, or it will display the content of the closest page "
|
3105 |
+
"number available, without issuing a 404 error or a 301 redirect (thus "
|
3106 |
+
"creating two or more identical webpages). This duplicate-content situation "
|
3107 |
+
"can happen when you, for example, remove many posts from a category, thus "
|
3108 |
+
"reducing the amount of pagination needed in the category's archive. The "
|
3109 |
+
"Canonicalizer's feature fixes that behavior by issuing 301 redirects to page "
|
3110 |
+
"1 of the paginated section in question.</p>\r\n"
|
3111 |
+
"\t</li>\r\n"
|
3112 |
+
"\t<li><strong>Why it helps:</strong> These features will point Google to the "
|
3113 |
+
"correct URL for your homepage and each of your posts, Pages, categories, "
|
3114 |
+
"tags, date archives, and author archives. That way, if Google comes across "
|
3115 |
+
"an alternate URL by which one of those items can be accessed, it will be "
|
3116 |
+
"able to find the correct URL and won't penalize you for having two identical "
|
3117 |
+
"pages on your site.</li>\r\n"
|
3118 |
+
"\t<li><strong>How to use it:</strong> Just check all three checkboxes and "
|
3119 |
+
"click Save Changes. SEO Ultimate will do the rest.</li>\r\n"
|
3120 |
+
"</ul>\r\n"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
+
#: includes/jlwp/functions.php:65
|
3124 |
+
msgid "Posts"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
+
#: includes/jlwp/functions.php:65
|
3128 |
+
msgid "Post"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
+
#: includes/jlwp/functions.php:66
|
3132 |
+
msgid "Pages"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: includes/jlwp/functions.php:66
|
3136 |
+
msgid "Page"
|
|
|
|
|
|
|
3137 |
msgstr ""
|
3138 |
|
3139 |
+
#: includes/jlwp/functions.php:67
|
3140 |
+
msgid "Attachments"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
+
#: includes/jlwp/functions.php:67
|
3144 |
+
msgid "Attachment"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
+
#: includes/jlwp/functions.php:96
|
3148 |
+
msgctxt "post format"
|
3149 |
+
msgid "Format"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: includes/jlwp/functions.php:97
|
3153 |
+
msgid "Post Format Archives"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: includes/jlwp/functions.php:165
|
3157 |
+
msgid "backup your database"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
#: includes/jlfunctions/str.php:105 plugin/su-functions.php:77
|
3161 |
+
msgid "%s and %s"
|
|
|
|
|
3162 |
msgstr ""
|
3163 |
|
3164 |
+
#: includes/jlfunctions/str.php:108 plugin/su-functions.php:80
|
3165 |
+
msgid ", "
|
3166 |
msgstr ""
|
3167 |
|
3168 |
+
#: includes/jlfunctions/str.php:109 plugin/su-functions.php:81
|
3169 |
+
msgid "%s, and %s"
|
3170 |
+
msgstr ""
|
3171 |
+
|
3172 |
+
#: plugin/class.seo-ultimate.php:791
|
3173 |
+
msgid "SEO"
|
3174 |
+
msgstr ""
|
3175 |
+
|
3176 |
+
#: plugin/class.seo-ultimate.php:980
|
3177 |
msgid ""
|
3178 |
+
"It looks like you made changes to the settings of this SEO Ultimate module. "
|
3179 |
+
"If you leave before saving, those changes will be lost."
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: plugin/class.seo-ultimate.php:1074
|
3183 |
+
msgid "SEO Settings Help"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: plugin/class.seo-ultimate.php:1076
|
3187 |
+
msgid "The SEO Settings box lets you customize these settings:"
|
3188 |
+
msgstr ""
|
3189 |
+
|
3190 |
+
#: plugin/class.seo-ultimate.php:1078
|
3191 |
+
msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
|
3192 |
+
msgstr ""
|
3193 |
+
|
3194 |
+
#: plugin/class.seo-ultimate.php:1133
|
3195 |
msgid ""
|
3196 |
+
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
|
3197 |
+
"1$s to avoid plugin conflicts."
|
3198 |
+
msgstr ""
|
3199 |
+
|
3200 |
+
#: plugin/class.seo-ultimate.php:1177
|
3201 |
+
msgid "new module"
|
3202 |
+
msgstr ""
|
3203 |
+
|
3204 |
+
#: plugin/class.seo-ultimate.php:1177
|
3205 |
+
msgid "new modules"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
+
#: plugin/class.seo-ultimate.php:1178
|
3209 |
+
msgid "new feature"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: plugin/class.seo-ultimate.php:1178
|
3213 |
+
msgid "new features"
|
|
|
|
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
#: plugin/class.seo-ultimate.php:1179
|
3217 |
+
msgid "bugfix"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
+
#: plugin/class.seo-ultimate.php:1179
|
3221 |
+
msgid "bugfixes"
|
|
|
|
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: plugin/class.seo-ultimate.php:1180
|
3225 |
+
msgid "improvement"
|
|
|
|
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: plugin/class.seo-ultimate.php:1180
|
3229 |
+
msgid "improvements"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: plugin/class.seo-ultimate.php:1181
|
3233 |
+
msgid "security fix"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: plugin/class.seo-ultimate.php:1181
|
3237 |
+
msgid "security fixes"
|
|
|
|
|
3238 |
msgstr ""
|
3239 |
|
3240 |
+
#: plugin/class.seo-ultimate.php:1182
|
3241 |
+
msgid "new language pack"
|
|
|
|
|
|
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: plugin/class.seo-ultimate.php:1182
|
3245 |
+
msgid "new language packs"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: plugin/class.seo-ultimate.php:1183
|
3249 |
+
msgid "language pack update"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: plugin/class.seo-ultimate.php:1183
|
3253 |
+
msgid "language pack updates"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: plugin/class.seo-ultimate.php:1214
|
3257 |
+
msgid "%d %s"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: plugin/class.seo-ultimate.php:1220
|
3261 |
+
msgid "Upgrade now to get %s. %s."
|
|
|
|
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: plugin/class.seo-ultimate.php:1222
|
3265 |
+
msgid "View changelog"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: plugin/class.seo-ultimate.php:1298
|
3269 |
+
msgid "Active Modules: "
|
|
|
|
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: plugin/class.seo-ultimate.php:1359
|
3273 |
msgid ""
|
3274 |
+
"<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
|
3275 |
+
"search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
|
3276 |
+
"target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
|
3277 |
+
"to everyone."
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: plugin/class.seo-ultimate.php:1481
|
3281 |
+
msgid "SEO Settings"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3282 |
msgstr ""
|
3283 |
|
3284 |
+
#: plugin/class.seo-ultimate.php:1670
|
3285 |
+
msgid "Home"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: plugin/class.seo-ultimate.php:1743
|
3289 |
+
msgid "Author Archives"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: plugin/class.seo-ultimate.php:1772
|
3293 |
+
msgid "Link Masks"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: plugin/class.su-installer.php:9
|
3297 |
+
msgid "Package not available."
|
|
|
|
|
|
|
3298 |
msgstr ""
|
3299 |
|
3300 |
+
#: plugin/class.su-installer.php:12
|
3301 |
+
msgid "Removing the current version of the plugin…"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: plugin/class.su-installer.php:13
|
3305 |
+
msgid "Could not remove the current version of the plugin."
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: plugin/class.su-installer.php:17
|
3309 |
+
msgid "Downloading old version from <span class=\"code\">%s</span>…"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: plugin/class.su-installer.php:18
|
3313 |
+
msgid "Unpacking the downgrade…"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: plugin/class.su-installer.php:19
|
3317 |
+
msgid "Installing the downgrade…"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: plugin/class.su-installer.php:20
|
3321 |
+
msgid "Plugin downgrade failed."
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: plugin/class.su-installer.php:21
|
3325 |
+
msgid "Plugin downgraded successfully."
|
|
|
|
|
|
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: plugin/class.su-installer.php:24
|
3329 |
+
msgid "Downloading from <span class=\"code\">%s</span>…"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: plugin/class.su-installer.php:25
|
3333 |
+
msgid "Unpacking the reinstall…"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: plugin/class.su-installer.php:26
|
3337 |
+
msgid "Reinstalling the current version…"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
+
#: plugin/class.su-installer.php:27
|
3341 |
+
msgid "Plugin reinstallation failed."
|
3342 |
msgstr ""
|
3343 |
|
3344 |
+
#: plugin/class.su-installer.php:28
|
3345 |
+
msgid "Plugin reinstalled successfully."
|
|
|
|
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: plugin/class.su-installer.php:32
|
3349 |
+
msgid "Downloading upgrade from <span class=\"code\">%s</span>…"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: plugin/class.su-installer.php:33
|
3353 |
+
msgid "Unpacking the upgrade…"
|
|
|
3354 |
msgstr ""
|
3355 |
|
3356 |
+
#: plugin/class.su-installer.php:34
|
3357 |
+
msgid "Installing the upgrade…"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: plugin/class.su-installer.php:35
|
3361 |
+
msgid "Plugin upgrade failed."
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: plugin/class.su-installer.php:36
|
3365 |
+
msgid "Plugin upgraded successfully."
|
3366 |
+
msgstr ""
|
3367 |
+
|
3368 |
+
#: seo-ultimate.php:84
|
3369 |
msgid ""
|
3370 |
+
"SEO Ultimate requires WordPress %s or above. Please upgrade to the latest "
|
3371 |
+
"version of WordPress to enable SEO Ultimate on your blog, or deactivate SEO "
|
3372 |
+
"Ultimate to remove this notice."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3373 |
msgstr ""
|
3374 |
|
3375 |
#. Plugin URI of the plugin/theme
|