Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 6.5 |
Comparing to | |
See all releases |
Code changes from version 6.4 to 6.5
- includes/jlsuggest/jlsuggest.js +5 -2
- modules/autolinks/content-autolinks.php +3 -9
- modules/autolinks/footer-autolinks-settings.php +40 -0
- modules/autolinks/footer-autolinks.php +235 -0
- modules/canonical/canonical.php +1 -1
- modules/class.su-module.php +24 -8
- plugin/class.seo-ultimate.php +29 -1
- readme.txt +10 -3
- seo-ultimate.php +4 -4
- seo-ultimate.pot +1016 -954
includes/jlsuggest/jlsuggest.js
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
jQuery(document).ready( function($) {
|
2 |
-
$('input.jlsuggest', '.su-module').
|
3 |
-
|
|
|
|
|
|
|
4 |
} );
|
5 |
|
6 |
|
1 |
jQuery(document).ready( function($) {
|
2 |
+
$('input.jlsuggest', '.su-module').each(function() {
|
3 |
+
var params = $(this).attr('su:params') ? '&' + $(this).attr('su:params') : '';
|
4 |
+
$(this).jlsuggest(ajaxurl + '?action=su-jlsuggest-autocomplete' + params,
|
5 |
+
{ delay: 500, minchars: 2, multiple: false, textDest: true, noUrls: true } );
|
6 |
+
});
|
7 |
} );
|
8 |
|
9 |
|
modules/autolinks/content-autolinks.php
CHANGED
@@ -76,16 +76,14 @@ class SU_ContentAutolinks extends SU_Module {
|
|
76 |
$anchor = $data['anchor'];
|
77 |
$to_id = su_esc_attr($data['to_id']);
|
78 |
|
79 |
-
if (strlen(trim($anchor)) &&
|
80 |
|
81 |
if (isset($data['max_post_date']) && $data['max_post_date'] !== false && $post && sudate::gmt_to_unix($post->post_date_gmt) > sudate::gmt_to_unix($data['max_post_date']))
|
82 |
continue;
|
83 |
|
84 |
$type = $data['to_type'];
|
85 |
|
86 |
-
if ($type
|
87 |
-
$url = $to_id;
|
88 |
-
} elseif (sustr::startswith($type, 'posttype_')) {
|
89 |
$to_id = (int)$to_id;
|
90 |
$to_post = get_post($to_id);
|
91 |
|
@@ -112,12 +110,8 @@ class SU_ContentAutolinks extends SU_Module {
|
|
112 |
}
|
113 |
|
114 |
$url = get_permalink($to_id);
|
115 |
-
} elseif (sustr::startswith($type, 'taxonomy_')) {
|
116 |
-
$taxonomy = sustr::ltrim_str($type, 'taxonomy_');
|
117 |
-
$to_id = (int)$to_id;
|
118 |
-
$url = get_term_link($to_id, $taxonomy);
|
119 |
} else
|
120 |
-
|
121 |
|
122 |
if (!$this->get_setting('enable_self_links', false) && ($url == suurl::current() || $url == get_permalink()))
|
123 |
continue;
|
76 |
$anchor = $data['anchor'];
|
77 |
$to_id = su_esc_attr($data['to_id']);
|
78 |
|
79 |
+
if (strlen(trim($anchor)) && $to_id !== 0 && $to_id != 'http://') {
|
80 |
|
81 |
if (isset($data['max_post_date']) && $data['max_post_date'] !== false && $post && sudate::gmt_to_unix($post->post_date_gmt) > sudate::gmt_to_unix($data['max_post_date']))
|
82 |
continue;
|
83 |
|
84 |
$type = $data['to_type'];
|
85 |
|
86 |
+
if (sustr::startswith($type, 'posttype_')) {
|
|
|
|
|
87 |
$to_id = (int)$to_id;
|
88 |
$to_post = get_post($to_id);
|
89 |
|
110 |
}
|
111 |
|
112 |
$url = get_permalink($to_id);
|
|
|
|
|
|
|
|
|
113 |
} else
|
114 |
+
$url = $this->jlsuggest_value_to_url($to_id ? "obj_$type/$to_id" : "obj_$type");
|
115 |
|
116 |
if (!$this->get_setting('enable_self_links', false) && ($url == suurl::current() || $url == get_permalink()))
|
117 |
continue;
|
modules/autolinks/footer-autolinks-settings.php
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Footer Deeplink Juggernaut Settings Module
|
4 |
+
*
|
5 |
+
* @since 6.5
|
6 |
+
*/
|
7 |
+
|
8 |
+
if (class_exists('SU_Module')) {
|
9 |
+
|
10 |
+
class SU_FooterAutolinksSettings extends SU_Module {
|
11 |
+
|
12 |
+
function get_parent_module() { return 'autolinks'; }
|
13 |
+
function get_child_order() { return 40; }
|
14 |
+
function is_independent_module() { return false; }
|
15 |
+
|
16 |
+
function get_module_title() { return __('Footer Deeplink Juggernaut Settings', 'seo-ultimate'); }
|
17 |
+
function get_module_subtitle() { return __('Footer Link Settings', 'seo-ultimate'); }
|
18 |
+
|
19 |
+
function get_default_settings() {
|
20 |
+
return array(
|
21 |
+
'footer_link_section_format' => '<div id="su-footer-links" style="text-align: center;">{links}</div>'
|
22 |
+
, 'footer_link_format' => '{link}'
|
23 |
+
, 'footer_link_sep' => ' | '
|
24 |
+
);
|
25 |
+
}
|
26 |
+
|
27 |
+
function admin_page_contents() {
|
28 |
+
$this->admin_subheader(__('HTML Formats', 'seo-ultimate'));
|
29 |
+
$this->admin_form_table_start();
|
30 |
+
$this->textareas(array(
|
31 |
+
'footer_link_section_format' => __('Link Section Format', 'seo-ultimate')
|
32 |
+
, 'footer_link_format' => __('Link Format', 'seo-ultimate')
|
33 |
+
));
|
34 |
+
$this->textbox('footer_link_sep', __('Link Separator', 'seo-ultimate'));
|
35 |
+
$this->admin_form_table_end();
|
36 |
+
}
|
37 |
+
}
|
38 |
+
|
39 |
+
}
|
40 |
+
?>
|
modules/autolinks/footer-autolinks.php
ADDED
@@ -0,0 +1,235 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Footer Deeplink Juggernaut Module
|
4 |
+
*
|
5 |
+
* @since 6.5
|
6 |
+
*/
|
7 |
+
|
8 |
+
if (class_exists('SU_Module')) {
|
9 |
+
|
10 |
+
class SU_FooterAutolinks extends SU_Module {
|
11 |
+
|
12 |
+
function get_parent_module() { return 'autolinks'; }
|
13 |
+
function get_child_order() { return 30; }
|
14 |
+
function is_independent_module() { return false; }
|
15 |
+
|
16 |
+
function get_module_title() { return __('Footer Deeplink Juggernaut', 'seo-ultimate'); }
|
17 |
+
function get_module_subtitle() { return __('Footer Links', 'seo-ultimate'); }
|
18 |
+
|
19 |
+
var $already_outputted = false;
|
20 |
+
|
21 |
+
function init() {
|
22 |
+
add_action('wp_footer', array(&$this, 'autolink_footer'));
|
23 |
+
|
24 |
+
add_filter('su_postmeta_help', array(&$this, 'postmeta_help'), 35);
|
25 |
+
add_filter('su_get_postmeta-footer_autolinks', array(&$this, 'get_post_footer_autolinks'), 10, 3);
|
26 |
+
add_filter('su_custom_update_postmeta-footer_autolinks', array(&$this, 'save_post_footer_autolinks'), 10, 4);
|
27 |
+
}
|
28 |
+
|
29 |
+
function autolink_footer($args=array()) {
|
30 |
+
|
31 |
+
if ($this->already_outputted) return;
|
32 |
+
|
33 |
+
extract(wp_parse_args($args, array(
|
34 |
+
'footer_link_section_format' => $this->get_setting('footer_link_section_format', '{links}')
|
35 |
+
, 'footer_link_format' => $this->get_setting('footer_link_format', '{link}')
|
36 |
+
, 'footer_link_sep' => $this->get_setting('footer_link_sep', ' | ')
|
37 |
+
)), EXTR_SKIP);
|
38 |
+
|
39 |
+
$links = $this->get_setting('footer_links', array());
|
40 |
+
suarr::vksort($links, 'anchor');
|
41 |
+
|
42 |
+
$link_html = array();
|
43 |
+
|
44 |
+
foreach ($links as $link_data) {
|
45 |
+
|
46 |
+
if (isset($link_data['from']) && count($link_data['from']))
|
47 |
+
$from = $link_data['from'][0];
|
48 |
+
else
|
49 |
+
$from = array('');
|
50 |
+
|
51 |
+
$from_match_children = (isset($link_data['from_match_children']) && $link_data['from_match_children']);
|
52 |
+
$from_match_negative = (isset($link_data['from_match_negative']) && $link_data['from_match_negative']);
|
53 |
+
|
54 |
+
if (!isset($link_data['to'])) $link_data['to'] = '';
|
55 |
+
|
56 |
+
list($from_genus, $from_type, $from_id) = $this->jlsuggest_value_explode($from);
|
57 |
+
|
58 |
+
$is_from = $from_match_negative;
|
59 |
+
switch ($from_genus) {
|
60 |
+
case 'posttype':
|
61 |
+
|
62 |
+
$post_ids = array($from_id);
|
63 |
+
|
64 |
+
if ($from_match_children)
|
65 |
+
$post_ids[] = wp_get_post_parent_id($from_id); //Requires WordPress 3.1
|
66 |
+
|
67 |
+
foreach ($post_ids as $post_id) {
|
68 |
+
if (is_single($post_id) || is_page($post_id)) {
|
69 |
+
$is_from = !$from_match_negative;
|
70 |
+
break;
|
71 |
+
}
|
72 |
+
}
|
73 |
+
break;
|
74 |
+
|
75 |
+
case 'taxonomy':
|
76 |
+
|
77 |
+
if ( suwp::is_tax($from_type, $from_id) //Is
|
78 |
+
|| ($from_match_children && is_singular() && has_term($from_id, $from_type)) //In
|
79 |
+
)
|
80 |
+
$is_from = !$from_match_negative;
|
81 |
+
break;
|
82 |
+
|
83 |
+
case 'home':
|
84 |
+
if (is_home())
|
85 |
+
$is_from = !$from_match_negative;
|
86 |
+
break;
|
87 |
+
|
88 |
+
case 'author':
|
89 |
+
if ( is_author($from_id)
|
90 |
+
|| ($from_match_children && is_singular() && get_the_author_meta('id') == $from_id)
|
91 |
+
)
|
92 |
+
$is_from = !$from_match_negative;
|
93 |
+
break;
|
94 |
+
|
95 |
+
case 'url':
|
96 |
+
|
97 |
+
if ($from_id) {
|
98 |
+
if ( suurl::current() == $from_id
|
99 |
+
|| ($from_match_children && sustr::startswith(suurl::current(), $from_id))
|
100 |
+
)
|
101 |
+
$is_from = !$from_match_negative;
|
102 |
+
|
103 |
+
} else
|
104 |
+
$is_from = true; //No "from" restriction
|
105 |
+
|
106 |
+
break;
|
107 |
+
}
|
108 |
+
|
109 |
+
if (!$is_from)
|
110 |
+
continue;
|
111 |
+
|
112 |
+
$h_anchor = esc_html($link_data['anchor']);
|
113 |
+
$rel = $link_data['nofollow'] ? ' rel="nofollow"' : '';
|
114 |
+
$target = ($link_data['target'] == 'blank') ? ' target="_blank"' : '';
|
115 |
+
$title = strlen($a_titletext = su_esc_attr($link_data['title'])) ? " title=\"$a_titletext\"" : '';
|
116 |
+
|
117 |
+
$a_url = su_esc_attr($this->jlsuggest_value_to_url($link_data['to']));
|
118 |
+
|
119 |
+
if (strlen(trim($h_anchor)) && strlen(trim((string)$a_url)) && $a_url != 'http://')
|
120 |
+
$link_html[] = str_replace('{link}', "<a href=\"$a_url\"$title$rel$target>$h_anchor</a>", $footer_link_format);
|
121 |
+
}
|
122 |
+
|
123 |
+
echo str_replace('{links}', implode($footer_link_sep, $link_html), $footer_link_section_format);
|
124 |
+
}
|
125 |
+
|
126 |
+
function admin_page_init() {
|
127 |
+
$this->jlsuggest_init();
|
128 |
+
}
|
129 |
+
|
130 |
+
function admin_page_contents() {
|
131 |
+
|
132 |
+
echo "\n<p>";
|
133 |
+
_e('The Content Links section of Deeplink Juggernaut lets you automatically link a certain word or phrase in your post/page content to a URL you specify.', 'seo-ultimate');
|
134 |
+
echo "</p>\n";
|
135 |
+
|
136 |
+
$links = $this->get_setting('footer_links', array());
|
137 |
+
$num_links = count($links);
|
138 |
+
|
139 |
+
if ($this->is_action('update')) {
|
140 |
+
|
141 |
+
$links = array();
|
142 |
+
|
143 |
+
for ($i=0; $i <= $num_links; $i++) {
|
144 |
+
|
145 |
+
$anchor = stripslashes($_POST["footer_link_{$i}_anchor"]);
|
146 |
+
$from = array(stripslashes($_POST["footer_link_{$i}_from"]));
|
147 |
+
$from_match_children = isset($_POST["footer_link_{$i}_from_match_children"]) ? (intval($_POST["footer_link_{$i}_from_match_children"]) == 1) : false;
|
148 |
+
$from_match_negative = isset($_POST["footer_link_{$i}_from_match_negative"]) ? (intval($_POST["footer_link_{$i}_from_match_negative"]) == 1) : false;
|
149 |
+
$to = stripslashes($_POST["footer_link_{$i}_to"]);
|
150 |
+
$title = stripslashes($_POST["footer_link_{$i}_title"]);
|
151 |
+
$target = empty($_POST["footer_link_{$i}_target"]) ? 'self' : 'blank';
|
152 |
+
|
153 |
+
$nofollow = isset($_POST["footer_link_{$i}_nofollow"]) ? (intval($_POST["footer_link_{$i}_nofollow"]) == 1) : false;
|
154 |
+
$delete = isset($_POST["footer_link_{$i}_delete"]) ? (intval($_POST["footer_link_{$i}_delete"]) == 1) : false;
|
155 |
+
|
156 |
+
if (!$delete && (strlen($anchor) || $to))
|
157 |
+
$links[] = compact('anchor', 'from', 'from_match_children', 'from_match_negative', 'to', 'title', 'nofollow', 'target');
|
158 |
+
}
|
159 |
+
$this->update_setting('footer_links', $links);
|
160 |
+
|
161 |
+
$num_links = count($links);
|
162 |
+
}
|
163 |
+
|
164 |
+
if ($num_links > 0) {
|
165 |
+
$this->admin_subheader(__('Edit Existing Links', 'seo-ultimate'));
|
166 |
+
$this->footer_links_form(0, $links);
|
167 |
+
}
|
168 |
+
|
169 |
+
$this->admin_subheader(__('Add a New Link', 'seo-ultimate'));
|
170 |
+
$this->footer_links_form($num_links, array(array()), false);
|
171 |
+
}
|
172 |
+
|
173 |
+
function footer_links_form($start_id = 0, $links, $delete_option = true) {
|
174 |
+
|
175 |
+
//Set headers
|
176 |
+
$headers = array(
|
177 |
+
'link-from' => __('Link Location (optional)', 'seo-ultimate')
|
178 |
+
, 'link-from-match' => ''
|
179 |
+
, 'link-anchor' => __('Anchor Text', 'seo-ultimate')
|
180 |
+
, 'link-to' => __('Destination', 'seo-ultimate')
|
181 |
+
, 'link-title' => __('Title Attribute', 'seo-ultimate')
|
182 |
+
, 'link-options' => __('Options', 'seo-ultimate')
|
183 |
+
);
|
184 |
+
if ($delete_option) $headers['link-delete'] = __('Delete', 'seo-ultimate');
|
185 |
+
|
186 |
+
//Begin table; output headers
|
187 |
+
$this->admin_wftable_start($headers);
|
188 |
+
|
189 |
+
//Cycle through links
|
190 |
+
$i = $start_id;
|
191 |
+
foreach ($links as $link) {
|
192 |
+
|
193 |
+
if (!isset($link['anchor'])) $link['anchor'] = '';
|
194 |
+
if (!isset($link['from'][0])) $link['from'][0] = '';
|
195 |
+
if (!isset($link['from_match_children'])) $link['from_match_children'] = false;
|
196 |
+
if (!isset($link['from_match_negative'])) $link['from_match_negative'] = false;
|
197 |
+
if (!isset($link['to'])) $link['to'] = '';
|
198 |
+
if (!isset($link['title'])) $link['title'] = '';
|
199 |
+
if (!isset($link['nofollow'])) $link['nofollow'] = false;
|
200 |
+
if (!isset($link['target'])) $link['target'] = '';
|
201 |
+
|
202 |
+
$cells = array(
|
203 |
+
'link-from' => $this->get_jlsuggest_box("footer_link_{$i}_from", $link['from'][0])
|
204 |
+
, 'link-from-match' =>
|
205 |
+
$this->get_input_element('checkbox', "footer_link_{$i}_from_match_children", $link['from_match_children'] == 1, str_replace(' ', ' ', __('Match child content', 'seo-ultimate')))
|
206 |
+
.'<br />'
|
207 |
+
.$this->get_input_element('checkbox', "footer_link_{$i}_from_match_negative", $link['from_match_negative'] == 1, str_replace(' ', ' ', __('Negative match', 'seo-ultimate')))
|
208 |
+
/*, 'link-from-match' => $this->get_input_element('dropdown', "footer_link_{$i}_from_match", $link['from_match'], array(
|
209 |
+
'is' => __('If this:', 'seo-ultimate')
|
210 |
+
, 'is,in' => __('If this or child:', 'seo-ultimate')
|
211 |
+
, '!:is' => __('If not this:', 'seo-ultimate')
|
212 |
+
, '!:is,in' => __('If not this and not child:', 'seo-ultimate')
|
213 |
+
))*/
|
214 |
+
, 'link-anchor' => $this->get_input_element('textbox', "footer_link_{$i}_anchor", $link['anchor'])
|
215 |
+
, 'link-to' => $this->get_jlsuggest_box("footer_link_{$i}_to", $link['to'])
|
216 |
+
, 'link-title' => $this->get_input_element('textbox', "footer_link_{$i}_title", $link['title'])
|
217 |
+
, 'link-options' =>
|
218 |
+
$this->get_input_element('checkbox', "footer_link_{$i}_nofollow", $link['nofollow'], str_replace(' ', ' ', __('Nofollow', 'seo-ultimate')))
|
219 |
+
.'<br />'
|
220 |
+
.$this->get_input_element('checkbox', "footer_link_{$i}_target", $link['target'] == 'blank', str_replace(' ', ' ', __('New window', 'seo-ultimate')))
|
221 |
+
);
|
222 |
+
if ($delete_option)
|
223 |
+
$cells['link-delete'] = $this->get_input_element('checkbox', "footer_link_{$i}_delete");
|
224 |
+
|
225 |
+
$this->table_row($cells, $i, 'link');
|
226 |
+
|
227 |
+
$i++;
|
228 |
+
}
|
229 |
+
|
230 |
+
$this->admin_wftable_end();
|
231 |
+
}
|
232 |
+
}
|
233 |
+
|
234 |
+
}
|
235 |
+
?>
|
modules/canonical/canonical.php
CHANGED
@@ -106,7 +106,7 @@ class SU_Canonical extends SU_Module {
|
|
106 |
} elseif ($wp_query->is_author && $haspost) {
|
107 |
$author = get_userdata(get_query_var('author'));
|
108 |
if ($author === false) return false;
|
109 |
-
$link =
|
110 |
|
111 |
//Category archives
|
112 |
} elseif ($wp_query->is_category && $haspost) {
|
106 |
} elseif ($wp_query->is_author && $haspost) {
|
107 |
$author = get_userdata(get_query_var('author'));
|
108 |
if ($author === false) return false;
|
109 |
+
$link = get_author_posts_url($author->ID, $author->user_nicename);
|
110 |
|
111 |
//Category archives
|
112 |
} elseif ($wp_query->is_category && $haspost) {
|
modules/class.su-module.php
CHANGED
@@ -2538,15 +2538,15 @@ class SU_Module {
|
|
2538 |
if (sustr::startswith($valstr, 'obj_')) {
|
2539 |
$valstr = sustr::ltrim_str($valstr, 'obj_');
|
2540 |
|
2541 |
-
if ($valstr == 'home')
|
2542 |
-
return array('home', null, null);
|
2543 |
-
|
2544 |
$valarr = explode('/', $valstr);
|
2545 |
if (count($valarr) == 2) {
|
2546 |
$valarr_type = explode('_', $valarr[0], 2);
|
2547 |
if (count($valarr_type) == 2)
|
2548 |
return array($valarr_type[0], $valarr_type[1], $valarr[1]);
|
2549 |
-
|
|
|
|
|
|
|
2550 |
} else {
|
2551 |
return array('url', null, $valstr);
|
2552 |
}
|
@@ -2563,7 +2563,7 @@ class SU_Module {
|
|
2563 |
* @param string $name The value of the textbox's name/ID attributes
|
2564 |
* @param string $value The current database string associated with this textbox
|
2565 |
*/
|
2566 |
-
function get_jlsuggest_box($name, $value) {
|
2567 |
|
2568 |
list($to_genus, $to_type, $to_id) = $this->jlsuggest_value_explode($value);
|
2569 |
|
@@ -2584,15 +2584,28 @@ class SU_Module {
|
|
2584 |
case 'home':
|
2585 |
$text_dest = __('Blog Homepage', 'seo-ultimate');
|
2586 |
break;
|
2587 |
-
|
|
|
|
|
|
|
2588 |
|
2589 |
$is_url = (('url' == $to_genus) && !$text_dest);
|
2590 |
|
|
|
|
|
|
|
2591 |
//URL textbox
|
2592 |
//(hide if object is selected)
|
2593 |
$html = "<input name='$name' id='$name' value='";
|
2594 |
-
$html .= su_esc_editable_html($is_url ? $to_id :
|
2595 |
-
$html .= "'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2596 |
$html .= ' title="' . __('Type a URL or start typing the name of the item you want to link to', 'seo-ultimate') . '"';
|
2597 |
$html .= $is_url ? '' : ' style="display:none;" ';
|
2598 |
$html .= ' />';
|
@@ -2636,6 +2649,9 @@ class SU_Module {
|
|
2636 |
return get_term_link($to_id, $to_type); break;
|
2637 |
case 'home':
|
2638 |
return suwp::get_blog_home_url(); break;
|
|
|
|
|
|
|
2639 |
}
|
2640 |
|
2641 |
return false;
|
2538 |
if (sustr::startswith($valstr, 'obj_')) {
|
2539 |
$valstr = sustr::ltrim_str($valstr, 'obj_');
|
2540 |
|
|
|
|
|
|
|
2541 |
$valarr = explode('/', $valstr);
|
2542 |
if (count($valarr) == 2) {
|
2543 |
$valarr_type = explode('_', $valarr[0], 2);
|
2544 |
if (count($valarr_type) == 2)
|
2545 |
return array($valarr_type[0], $valarr_type[1], $valarr[1]);
|
2546 |
+
else
|
2547 |
+
return array($valarr[0], null, $valarr[1]);
|
2548 |
+
} else
|
2549 |
+
return array($valstr, null, null);
|
2550 |
} else {
|
2551 |
return array('url', null, $valstr);
|
2552 |
}
|
2563 |
* @param string $name The value of the textbox's name/ID attributes
|
2564 |
* @param string $value The current database string associated with this textbox
|
2565 |
*/
|
2566 |
+
function get_jlsuggest_box($name, $value, $params='') {
|
2567 |
|
2568 |
list($to_genus, $to_type, $to_id) = $this->jlsuggest_value_explode($value);
|
2569 |
|
2584 |
case 'home':
|
2585 |
$text_dest = __('Blog Homepage', 'seo-ultimate');
|
2586 |
break;
|
2587 |
+
case 'author':
|
2588 |
+
$selected_author = get_userdata($to_id);
|
2589 |
+
$text_dest = $selected_author->user_login . '<span class="type"> — '.__('Author', 'seo-ultimate').'</span>';
|
2590 |
+
}
|
2591 |
|
2592 |
$is_url = (('url' == $to_genus) && !$text_dest);
|
2593 |
|
2594 |
+
$to_genus_type = implode('_', array_filter(array($to_genus, $to_type)));
|
2595 |
+
$obj = 'obj_' . implode('/', array_filter(array($to_genus_type, $to_id)));
|
2596 |
+
|
2597 |
//URL textbox
|
2598 |
//(hide if object is selected)
|
2599 |
$html = "<input name='$name' id='$name' value='";
|
2600 |
+
$html .= su_esc_editable_html($is_url ? $to_id : $obj);
|
2601 |
+
$html .= "'";
|
2602 |
+
|
2603 |
+
if ($params) {
|
2604 |
+
$e_params = su_esc_attr($params);
|
2605 |
+
$html .= " su:params='$e_params'";
|
2606 |
+
}
|
2607 |
+
|
2608 |
+
$html .= " type='text' class='textbox regular-text jlsuggest'";
|
2609 |
$html .= ' title="' . __('Type a URL or start typing the name of the item you want to link to', 'seo-ultimate') . '"';
|
2610 |
$html .= $is_url ? '' : ' style="display:none;" ';
|
2611 |
$html .= ' />';
|
2649 |
return get_term_link($to_id, $to_type); break;
|
2650 |
case 'home':
|
2651 |
return suwp::get_blog_home_url(); break;
|
2652 |
+
case 'author':
|
2653 |
+
$to_id = (int)$to_id;
|
2654 |
+
return get_author_posts_url($to_id); break;
|
2655 |
}
|
2656 |
|
2657 |
return false;
|
plugin/class.seo-ultimate.php
CHANGED
@@ -1665,7 +1665,9 @@ class SEO_Ultimate {
|
|
1665 |
|
1666 |
$items = array();
|
1667 |
|
1668 |
-
|
|
|
|
|
1669 |
$items[] = array('text' => __('Home', 'seo-ultimate'), 'isheader' => true);
|
1670 |
$items[] = array('text' => __('Blog Homepage', 'seo-ultimate'), 'value' => 'obj_home', 'selectedtext' => __('Blog Homepage', 'seo-ultimate'));
|
1671 |
}
|
@@ -1673,6 +1675,9 @@ class SEO_Ultimate {
|
|
1673 |
$posttypeobjs = suwp::get_post_type_objects();
|
1674 |
foreach ($posttypeobjs as $posttypeobj) {
|
1675 |
|
|
|
|
|
|
|
1676 |
$stati = get_available_post_statuses($posttypeobj->name);
|
1677 |
suarr::remove_value($stati, 'auto-draft');
|
1678 |
$stati = implode(',', $stati);
|
@@ -1703,6 +1708,9 @@ class SEO_Ultimate {
|
|
1703 |
$taxonomyobjs = suwp::get_taxonomies();
|
1704 |
foreach ($taxonomyobjs as $taxonomyobj) {
|
1705 |
|
|
|
|
|
|
|
1706 |
$terms = get_terms($taxonomyobj->name, array(
|
1707 |
'search' => esc_sql($_GET['q']) //The esc_sql() is very important: get_terms does NOT sanitize the "search" variable for SQL queries prior to 3.1.3
|
1708 |
));
|
@@ -1720,6 +1728,26 @@ class SEO_Ultimate {
|
|
1720 |
}
|
1721 |
}
|
1722 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1723 |
echo json_encode($items);
|
1724 |
die();
|
1725 |
}
|
1665 |
|
1666 |
$items = array();
|
1667 |
|
1668 |
+
$include = empty($_GET['types']) ? array() : explode(',', $_GET['types']);
|
1669 |
+
|
1670 |
+
if ((!$include || in_array('home', $include)) && sustr::ihas($_GET['q'], 'home')) {
|
1671 |
$items[] = array('text' => __('Home', 'seo-ultimate'), 'isheader' => true);
|
1672 |
$items[] = array('text' => __('Blog Homepage', 'seo-ultimate'), 'value' => 'obj_home', 'selectedtext' => __('Blog Homepage', 'seo-ultimate'));
|
1673 |
}
|
1675 |
$posttypeobjs = suwp::get_post_type_objects();
|
1676 |
foreach ($posttypeobjs as $posttypeobj) {
|
1677 |
|
1678 |
+
if ($include && !in_array('posttype_' . $posttypeobj->name, $include) && !in_array('post', $include))
|
1679 |
+
continue;
|
1680 |
+
|
1681 |
$stati = get_available_post_statuses($posttypeobj->name);
|
1682 |
suarr::remove_value($stati, 'auto-draft');
|
1683 |
$stati = implode(',', $stati);
|
1708 |
$taxonomyobjs = suwp::get_taxonomies();
|
1709 |
foreach ($taxonomyobjs as $taxonomyobj) {
|
1710 |
|
1711 |
+
if ($include && !in_array('taxonomy_' . $posttypeobj->name, $include) && !in_array('taxonomy', $include))
|
1712 |
+
continue;
|
1713 |
+
|
1714 |
$terms = get_terms($taxonomyobj->name, array(
|
1715 |
'search' => esc_sql($_GET['q']) //The esc_sql() is very important: get_terms does NOT sanitize the "search" variable for SQL queries prior to 3.1.3
|
1716 |
));
|
1728 |
}
|
1729 |
}
|
1730 |
|
1731 |
+
if (!$include || in_array('author', $include)) {
|
1732 |
+
|
1733 |
+
$authors = get_users(array(
|
1734 |
+
'search' => $_GET['q']
|
1735 |
+
, 'fields' => array('ID', 'user_login')
|
1736 |
+
));
|
1737 |
+
|
1738 |
+
if (count($authors)) {
|
1739 |
+
|
1740 |
+
$items[] = array('text' => __('Author Archives', 'seo-ultimate'), 'isheader' => true);
|
1741 |
+
|
1742 |
+
foreach ($authors as $author)
|
1743 |
+
$items[] = array(
|
1744 |
+
'text' => $author->user_login
|
1745 |
+
, 'value' => 'obj_author/' . $author->ID
|
1746 |
+
, 'selectedtext' => $author->user_login . '<span class="type"> — '.__('Author', 'seo-ultimate').'</span>'
|
1747 |
+
);
|
1748 |
+
}
|
1749 |
+
}
|
1750 |
+
|
1751 |
echo json_encode($items);
|
1752 |
die();
|
1753 |
}
|
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, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 3.2
|
6 |
-
Stable tag: 6.
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
@@ -11,11 +11,11 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
|
|
11 |
|
12 |
= Recent Releases =
|
13 |
|
|
|
14 |
* Version 6.4 adds 3 more features to Deeplink Juggernaut
|
15 |
* Version 6.3 adds support for the new `rel="canonical"` HTTP headers
|
16 |
* Version 6.2 adds Silo Linking to Deeplink Juggernaut
|
17 |
* Version 6.1 fixes Link Mask Generator issues
|
18 |
-
* Version 6.0 features Deeplink Juggernaut 2.0
|
19 |
|
20 |
= Features =
|
21 |
|
@@ -45,9 +45,10 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
45 |
* Avoid duplicate content SEO issues with the recommended noindex settings (see built-in module documentation for details).
|
46 |
* Give instructions to search engine spiders if desired (`noodp`, `noydir`, and `noarchive`).
|
47 |
|
48 |
-
* **Deeplink Juggernaut** -- UPDATED in Version 6.
|
49 |
* Use the power of anchor text to boost your internal ranking SEO paradigm.
|
50 |
* Searches your site's content for anchor texts you specify and automatically links them to a destination of your choosing. Lets you easily build internal links to URLs, posts, pages, attachments, custom post type items, categories, terms, post format archives, and custom taxonomy term archives.
|
|
|
51 |
* Easily select autolink destinations using autocomplete textboxes that scour your site's content and taxonomy terms to find the link destination you're looking for.
|
52 |
* Autolinks point to the objects themselves, not to their URLs, so if you change the URL of a post or category on your site, the autolinks automatically adjust.
|
53 |
* Avoid over-optimization penalties by controlling the maximum number of autolinks added to each post/page, the maximum number of times an anchor is linked per post/page, and/or the maximum number of times an anchor is linked across your entire site.
|
@@ -246,6 +247,12 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
246 |
|
247 |
== Changelog ==
|
248 |
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
= Version 6.4 (July 8, 2011) =
|
250 |
* Feature: Deeplink Juggernaut can now limit the number of times an anchor is autolinked across your entire site
|
251 |
* Feature: Deeplink Juggernaut's autocomplete textboxes now include a "Blog Homepage" option
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 3.2
|
6 |
+
Stable tag: 6.5
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
11 |
|
12 |
= Recent Releases =
|
13 |
|
14 |
+
* Version 6.5 features Deeplink Juggernaut 3.0
|
15 |
* Version 6.4 adds 3 more features to Deeplink Juggernaut
|
16 |
* Version 6.3 adds support for the new `rel="canonical"` HTTP headers
|
17 |
* Version 6.2 adds Silo Linking to Deeplink Juggernaut
|
18 |
* Version 6.1 fixes Link Mask Generator issues
|
|
|
19 |
|
20 |
= Features =
|
21 |
|
45 |
* Avoid duplicate content SEO issues with the recommended noindex settings (see built-in module documentation for details).
|
46 |
* Give instructions to search engine spiders if desired (`noodp`, `noydir`, and `noarchive`).
|
47 |
|
48 |
+
* **Deeplink Juggernaut** -- UPDATED in Version 6.5
|
49 |
* Use the power of anchor text to boost your internal ranking SEO paradigm.
|
50 |
* Searches your site's content for anchor texts you specify and automatically links them to a destination of your choosing. Lets you easily build internal links to URLs, posts, pages, attachments, custom post type items, categories, terms, post format archives, and custom taxonomy term archives.
|
51 |
+
* Lets you customize footer links for your entire site and/or on a page-by-page basis.
|
52 |
* Easily select autolink destinations using autocomplete textboxes that scour your site's content and taxonomy terms to find the link destination you're looking for.
|
53 |
* Autolinks point to the objects themselves, not to their URLs, so if you change the URL of a post or category on your site, the autolinks automatically adjust.
|
54 |
* Avoid over-optimization penalties by controlling the maximum number of autolinks added to each post/page, the maximum number of times an anchor is linked per post/page, and/or the maximum number of times an anchor is linked across your entire site.
|
247 |
|
248 |
== Changelog ==
|
249 |
|
250 |
+
= Version 6.5 (July 9, 2011) =
|
251 |
+
* Feature: Added "Footer Links" functionality to Deeplink Juggernaut
|
252 |
+
* Feature: Deeplink Juggernaut's autocomplete textboxes now include author archives
|
253 |
+
* Bugfix: Fixed broken "Blog Homepage" option in Deeplink Juggernaut
|
254 |
+
* Bugfix: Replaced a deprecated function call in Canonicalizer that generated a warning in WP_DEBUG mode
|
255 |
+
|
256 |
= Version 6.4 (July 8, 2011) =
|
257 |
* Feature: Deeplink Juggernaut can now limit the number of times an anchor is autolinked across your entire site
|
258 |
* Feature: Deeplink Juggernaut's autocomplete textboxes now include a "Blog Homepage" option
|
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: 6.
|
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 6.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.1');
|
|
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', '6.
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/6.
|
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: 6.5
|
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 6.5
|
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', '6.5');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/6.5');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
seo-ultimate.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: SEO Ultimate 6.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
-
"POT-Creation-Date: 2011-07-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -19,394 +19,431 @@ msgid ""
|
|
19 |
"Ultimate to remove this notice."
|
20 |
msgstr ""
|
21 |
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
msgid ""
|
24 |
-
"
|
25 |
-
"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
msgid ""
|
30 |
-
"
|
31 |
-
"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#:
|
35 |
-
|
36 |
-
msgid "%s — %s"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#:
|
40 |
-
msgid "
|
41 |
msgstr ""
|
42 |
|
43 |
-
#:
|
44 |
-
msgid "
|
45 |
msgstr ""
|
46 |
|
47 |
-
#:
|
48 |
-
msgid "
|
49 |
msgstr ""
|
50 |
|
51 |
-
#:
|
52 |
-
msgid "
|
53 |
msgstr ""
|
54 |
|
55 |
-
#:
|
56 |
-
msgid "
|
57 |
msgstr ""
|
58 |
|
59 |
-
#:
|
60 |
-
msgid "
|
61 |
msgstr ""
|
62 |
|
63 |
-
#:
|
64 |
-
msgid "
|
65 |
msgstr ""
|
66 |
|
67 |
-
#:
|
68 |
-
msgid "
|
69 |
msgstr ""
|
70 |
|
71 |
-
#:
|
72 |
-
msgid "
|
73 |
msgstr ""
|
74 |
|
75 |
-
#:
|
76 |
-
msgid "
|
77 |
msgstr ""
|
78 |
|
79 |
-
#:
|
80 |
-
msgid "
|
81 |
msgstr ""
|
82 |
|
83 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
msgid ""
|
85 |
-
"
|
86 |
-
"
|
|
|
|
|
87 |
msgstr ""
|
88 |
|
89 |
-
#:
|
90 |
-
msgid "
|
91 |
msgstr ""
|
92 |
|
93 |
-
#:
|
94 |
-
|
95 |
-
msgid "Blog Homepage"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: modules/class.su-module.php:
|
99 |
-
|
|
|
100 |
msgstr ""
|
101 |
|
102 |
-
#:
|
103 |
-
msgid "
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: modules/class.su-module.php:
|
107 |
-
msgid "
|
108 |
msgstr ""
|
109 |
|
110 |
-
#:
|
111 |
-
msgid "
|
112 |
msgstr ""
|
113 |
|
114 |
-
#:
|
115 |
-
msgid ""
|
116 |
-
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
117 |
-
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
118 |
-
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
119 |
-
"Ultimate."
|
120 |
msgstr ""
|
121 |
|
122 |
-
#:
|
123 |
-
msgid "
|
124 |
msgstr ""
|
125 |
|
126 |
-
#:
|
127 |
-
msgid ""
|
128 |
-
"What should the import tool do if it tries to move over a post’s %s "
|
129 |
-
"data, but different data already exists in the corresponding SEO Ultimate "
|
130 |
-
"fields?"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#:
|
134 |
-
msgid "
|
135 |
msgstr ""
|
136 |
|
137 |
-
#:
|
138 |
-
msgid "
|
139 |
msgstr ""
|
140 |
|
141 |
-
#:
|
142 |
-
msgid "
|
143 |
msgstr ""
|
144 |
|
145 |
-
#:
|
146 |
-
msgid "
|
147 |
msgstr ""
|
148 |
|
149 |
-
#:
|
150 |
-
msgid ""
|
151 |
-
"When the migration tool successfully copies a post’s %1$s data over to "
|
152 |
-
"SEO Ultimate, what should it do with the old %1$s data?"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#:
|
156 |
-
msgid "
|
157 |
msgstr ""
|
158 |
|
159 |
-
#:
|
160 |
-
msgid "
|
161 |
msgstr ""
|
162 |
|
163 |
-
#:
|
164 |
-
msgid "
|
165 |
msgstr ""
|
166 |
|
167 |
-
#:
|
168 |
-
msgid ""
|
169 |
-
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
170 |
-
"target=\"_blank\">backup your database</a> before proceeding!"
|
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 |
-
|
196 |
-
msgstr[0] ""
|
197 |
-
msgstr[1] ""
|
198 |
|
199 |
-
#:
|
200 |
-
msgid "
|
201 |
-
|
202 |
-
msgstr[0] ""
|
203 |
-
msgstr[1] ""
|
204 |
|
205 |
-
#:
|
206 |
-
msgid ""
|
207 |
-
|
208 |
-
"settings you chose."
|
209 |
-
msgid_plural ""
|
210 |
-
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
211 |
-
"settings you chose."
|
212 |
-
msgstr[0] ""
|
213 |
-
msgstr[1] ""
|
214 |
|
215 |
-
#: modules/
|
216 |
-
msgid "
|
217 |
-
|
218 |
-
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
219 |
-
msgstr[0] ""
|
220 |
-
msgstr[1] ""
|
221 |
|
222 |
-
#: modules/
|
223 |
-
msgid "
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: modules/
|
227 |
-
msgid ""
|
228 |
-
"Reviews\n"
|
229 |
-
"Review"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: modules/
|
233 |
-
msgid "
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: modules/
|
237 |
-
msgid "
|
|
|
|
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: modules/
|
241 |
-
msgid "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: modules/
|
245 |
-
msgid "
|
246 |
msgstr ""
|
247 |
|
248 |
-
|
249 |
-
|
|
|
|
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: modules/
|
253 |
-
|
254 |
-
|
|
|
|
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: modules/
|
258 |
-
msgid "
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: modules/
|
262 |
-
msgid "
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: modules/
|
266 |
-
msgid "
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: modules/
|
270 |
-
msgid "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: modules/
|
274 |
-
|
275 |
-
msgid "None"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: modules/
|
279 |
-
msgid "
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: modules/
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: modules/
|
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 |
msgstr ""
|
317 |
|
318 |
-
#: modules/
|
319 |
-
msgid "
|
|
|
|
|
|
|
|
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: modules/
|
323 |
-
msgid "
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: modules/
|
327 |
-
msgid "
|
|
|
|
|
|
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: modules/
|
331 |
-
msgid "
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: modules/
|
335 |
-
msgid "
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: modules/
|
339 |
-
msgid "
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: modules/
|
343 |
-
msgid "
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: modules/
|
347 |
-
msgid "
|
|
|
|
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: modules/
|
351 |
-
msgid "
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: modules/
|
355 |
-
|
356 |
-
msgid "Show 100 results per page"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: modules/
|
360 |
-
|
361 |
-
msgid "Use Google’s minimal mode"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: modules/
|
365 |
-
|
366 |
-
|
|
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: modules/
|
370 |
-
msgid "
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: modules/
|
374 |
-
msgid "
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: modules/
|
378 |
-
msgid "
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: modules/
|
382 |
-
msgid "
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: modules/
|
386 |
-
msgid "
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: modules/
|
390 |
-
msgid "
|
391 |
-
|
|
|
|
|
392 |
|
393 |
-
#: modules/
|
394 |
-
msgid "
|
395 |
-
|
|
|
|
|
396 |
|
397 |
-
#: modules/
|
398 |
msgid ""
|
399 |
-
"
|
400 |
-
"
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
msgstr ""
|
406 |
|
407 |
-
#: modules/
|
408 |
-
msgid "
|
409 |
-
|
|
|
|
|
|
|
410 |
|
411 |
#: modules/titles/titles.php:12
|
412 |
msgid "Title Tag Rewriter"
|
@@ -541,188 +578,240 @@ msgid ""
|
|
541 |
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: modules/
|
545 |
-
msgid "
|
|
|
|
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: modules/
|
549 |
-
msgid "
|
|
|
|
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: modules/
|
553 |
-
|
554 |
-
"
|
555 |
-
"engine tools which you can use to research multiple search queries or URLs."
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: modules/
|
559 |
-
msgid "
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: modules/
|
563 |
-
msgid "
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: modules/
|
567 |
-
msgid "
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: modules/
|
571 |
-
msgid "
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: modules/
|
575 |
-
msgid "
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: modules/
|
579 |
-
msgid ""
|
580 |
-
"Find out how many “actual” pages are competing for each query"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: modules/
|
584 |
-
msgid "
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: modules/
|
588 |
-
msgid "
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: modules/
|
592 |
-
msgid "
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
596 |
msgid ""
|
597 |
-
"
|
|
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: modules/
|
601 |
-
msgid "
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: modules/
|
605 |
-
msgid "
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: modules/
|
609 |
-
msgid "
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: modules/
|
613 |
-
msgid ""
|
614 |
-
"Find out which sites have the most relevant naming conventions for each "
|
615 |
-
"keyword"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: modules/
|
619 |
-
msgid "
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: modules/
|
623 |
-
|
|
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: modules/
|
627 |
-
msgid "
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: modules/
|
631 |
-
#: modules/
|
632 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: modules/
|
636 |
-
msgid "
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: modules/
|
640 |
-
|
641 |
-
msgid "Outbound Links"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: modules/
|
645 |
-
msgid "
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: modules/
|
649 |
-
msgid "
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: modules/
|
653 |
-
msgid "
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: modules/
|
657 |
-
msgid "
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: modules/
|
661 |
-
msgid "
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: modules/
|
665 |
-
msgid "
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: modules/
|
669 |
-
msgid "
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: modules/
|
673 |
-
msgid "
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: modules/
|
677 |
-
msgid "
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: modules/
|
681 |
-
msgid "
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: modules/
|
685 |
-
msgid "
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: modules/
|
689 |
-
msgid "
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: modules/
|
693 |
-
msgid "
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: modules/
|
697 |
-
msgid "
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: modules/
|
701 |
-
msgid "
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: modules/
|
705 |
-
msgid "
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: modules/
|
709 |
-
msgid "
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: modules/
|
713 |
-
msgid "
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: modules/
|
717 |
-
msgid "
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: modules/
|
721 |
-
msgid "
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: modules/
|
725 |
-
msgid "
|
|
|
|
|
|
|
|
|
726 |
msgstr ""
|
727 |
|
728 |
#: modules/meta/meta-keywords.php:12
|
@@ -733,10 +822,6 @@ msgstr ""
|
|
733 |
msgid "Meta Keywords"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: modules/meta/meta-keywords.php:33 modules/noindex/noindex.php:43
|
737 |
-
msgid "Default Values"
|
738 |
-
msgstr ""
|
739 |
-
|
740 |
#: modules/meta/meta-keywords.php:56
|
741 |
msgid "The %d most commonly-used words"
|
742 |
msgstr ""
|
@@ -816,346 +901,323 @@ msgstr ""
|
|
816 |
msgid "Don’t cache or archive this site."
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: modules/
|
820 |
-
msgid "
|
821 |
-
msgstr ""
|
822 |
-
|
823 |
-
#: modules/meta/meta-descriptions.php:13
|
824 |
-
msgid "Meta Descriptions"
|
825 |
-
msgstr ""
|
826 |
-
|
827 |
-
#: modules/meta/meta-descriptions.php:31
|
828 |
-
msgid "Meta Description"
|
829 |
-
msgstr ""
|
830 |
-
|
831 |
-
#: modules/meta/meta-descriptions.php:48
|
832 |
-
msgid "Post Description Format"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: modules/
|
836 |
-
msgid "
|
|
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: modules/
|
840 |
-
msgid "
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: modules/
|
844 |
-
msgid "
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: modules/
|
848 |
-
msgid "
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: modules/
|
852 |
-
msgid "
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: modules/
|
856 |
-
msgid "
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: modules/
|
860 |
-
msgid "
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: modules/
|
864 |
-
msgid ""
|
865 |
-
"<strong>Description</strong> — The value of the meta description tag. "
|
866 |
-
"The description will often appear underneath the title in search engine "
|
867 |
-
"results. Writing an accurate, attention-grabbing description for every post "
|
868 |
-
"is important to ensuring a good search results clickthrough rate."
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: modules/
|
872 |
-
msgid "
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: modules/
|
876 |
-
msgid "
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: modules/
|
880 |
-
msgid "
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: modules/
|
884 |
-
msgid "
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: modules/
|
888 |
-
msgid "
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: modules/
|
892 |
-
msgid ""
|
893 |
-
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
894 |
-
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
895 |
-
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
896 |
-
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
897 |
-
"to be currently installed or activated for the import to take place."
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: modules/
|
901 |
-
msgid ""
|
902 |
-
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
903 |
-
"you use an older version of AIOSP, you should update to the latest version "
|
904 |
-
"first and run AIOSP’s upgrade process."
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: modules/
|
908 |
-
msgid "
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: modules/
|
912 |
-
msgid "
|
913 |
msgstr ""
|
914 |
|
915 |
-
|
916 |
-
|
917 |
-
#: modules/sds-blog/sds-blog.php:49
|
918 |
-
msgid "SEO Design Solutions"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: modules/
|
922 |
-
msgid ""
|
923 |
-
"The search engine optimization articles below are loaded from the website of "
|
924 |
-
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
925 |
-
"an article’s title to read it."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: modules/
|
929 |
-
msgid "
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: modules/
|
933 |
-
msgid "
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: modules/
|
937 |
-
msgid ""
|
938 |
-
"SEO Ultimate’s features are located in groups called “modules."
|
939 |
-
"” By default, most of these modules are listed in the “"
|
940 |
-
"SEO” menu on the left. Whenever you’re working with a module, "
|
941 |
-
"you can view documentation by clicking the tabs in the upper-right-hand "
|
942 |
-
"corner of your administration screen."
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: modules/
|
946 |
msgid ""
|
947 |
-
"The
|
948 |
-
"
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: modules/modules/modules.php:47
|
952 |
-
msgid "Modules updated."
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: modules/
|
956 |
-
msgid "
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: modules/
|
960 |
-
msgid "
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: modules/
|
964 |
-
msgid "
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: modules/
|
968 |
-
msgid "
|
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/
|
996 |
-
msgid "
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: modules/
|
1000 |
-
msgid "
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: modules/
|
1004 |
-
msgid "
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: modules/
|
1008 |
-
msgid "
|
|
|
|
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: modules/
|
1012 |
-
msgid "
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: modules/
|
1016 |
-
msgid "
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: modules/
|
1020 |
-
msgid "
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: modules/
|
1024 |
-
|
|
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: modules/
|
1028 |
-
msgid "
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: modules/
|
1032 |
-
|
|
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: modules/
|
1036 |
-
msgid "
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: modules/
|
1040 |
-
msgid "
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: modules/
|
1044 |
-
msgid "
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: modules/
|
1048 |
-
msgid "
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: modules/
|
1052 |
-
|
|
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: modules/
|
1056 |
-
|
|
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: modules/
|
1060 |
-
|
1061 |
-
|
1062 |
-
"Settings tab."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: modules/
|
1066 |
-
msgid "
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: modules/
|
1070 |
-
msgid "
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: modules/
|
1074 |
-
msgid "
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: modules/
|
1078 |
-
msgid "
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: modules/
|
1082 |
-
msgid "
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: modules/
|
1086 |
-
msgid "
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: modules/
|
1090 |
-
msgid "
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: modules/
|
1094 |
-
msgid "
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: modules/
|
1098 |
-
msgid "
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: modules/
|
1102 |
-
msgid "
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: modules/
|
1106 |
-
msgid "
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: modules/
|
1110 |
-
msgid "
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: modules/
|
1114 |
-
msgid "
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: modules/
|
1118 |
-
msgid "
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: modules/
|
1122 |
-
msgid "
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: modules/
|
1126 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: modules/
|
1130 |
-
msgid "
|
|
|
|
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: modules/
|
1134 |
-
msgid "
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: modules/
|
1138 |
-
msgid "
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: modules/
|
1142 |
-
msgid "
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: modules/
|
1146 |
-
msgid "
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: modules/
|
1150 |
-
msgid "
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: modules/
|
1154 |
-
msgid "
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: modules/
|
1158 |
-
msgid "
|
1159 |
msgstr ""
|
1160 |
|
1161 |
#: modules/permalinks/permalinks.php:15
|
@@ -1176,16 +1238,6 @@ msgstr ""
|
|
1176 |
msgid "Remove the URL bases of..."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: modules/misc/misc.php:11
|
1180 |
-
msgid "Miscellaneous"
|
1181 |
-
msgstr ""
|
1182 |
-
|
1183 |
-
#: modules/misc/misc.php:14
|
1184 |
-
msgid ""
|
1185 |
-
"The Miscellaneous page contains modules that don’t have enough "
|
1186 |
-
"settings to warrant their own separate admin pages."
|
1187 |
-
msgstr ""
|
1188 |
-
|
1189 |
#: modules/files/files.php:14
|
1190 |
msgid "File Editor"
|
1191 |
msgstr ""
|
@@ -1208,82 +1260,45 @@ msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
|
|
1208 |
msgstr ""
|
1209 |
|
1210 |
#: modules/files/files.php:70
|
1211 |
-
msgid "Enable this custom robots.txt file and disable the default file"
|
1212 |
-
msgstr ""
|
1213 |
-
|
1214 |
-
#: modules/files/files.php:71
|
1215 |
-
msgid "Let other plugins add rules to my custom robots.txt file"
|
1216 |
-
msgstr ""
|
1217 |
-
|
1218 |
-
#: modules/files/files.php:72
|
1219 |
-
msgid "robots.txt Settings"
|
1220 |
-
msgstr ""
|
1221 |
-
|
1222 |
-
#: modules/files/files.php:75
|
1223 |
-
msgid ""
|
1224 |
-
"Please realize that incorrectly editing your robots.txt file could block "
|
1225 |
-
"search engines from your site."
|
1226 |
-
msgstr ""
|
1227 |
-
|
1228 |
-
#: modules/files/files.php:79
|
1229 |
-
msgid ".htaccess"
|
1230 |
-
msgstr ""
|
1231 |
-
|
1232 |
-
#: modules/files/files.php:82
|
1233 |
-
msgid ""
|
1234 |
-
"Also, incorrectly editing your .htaccess file could disable your entire "
|
1235 |
-
"website. Edit with caution!"
|
1236 |
-
msgstr ""
|
1237 |
-
|
1238 |
-
#: modules/files/files.php:134
|
1239 |
-
msgid ""
|
1240 |
-
"Please note that your privacy settings won’t have any effect on your "
|
1241 |
-
"robots.txt file, since you’re using <a href=\"%s\">a custom one</a>."
|
1242 |
-
msgstr ""
|
1243 |
-
|
1244 |
-
#: modules/canonical/canonical.php:12
|
1245 |
-
msgid "Canonicalizer"
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
-
#: modules/canonical/canonical.php:39
|
1249 |
-
msgid ""
|
1250 |
-
"Generate <code><link rel="canonical" /></code> meta tags."
|
1251 |
-
msgstr ""
|
1252 |
-
|
1253 |
-
#: modules/canonical/canonical.php:40
|
1254 |
-
msgid "Send <code>rel="canonical"</code> HTTP headers."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: modules/
|
1258 |
-
msgid "
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: modules/
|
1262 |
-
msgid "
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: modules/
|
1266 |
-
msgid "
|
|
|
|
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: modules/
|
1270 |
-
msgid "
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: modules/
|
1274 |
-
msgid "
|
|
|
|
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: modules/
|
1278 |
-
msgid "
|
|
|
|
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: modules/
|
1282 |
-
msgid "
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: modules/
|
1286 |
-
msgid "
|
1287 |
msgstr ""
|
1288 |
|
1289 |
#: modules/settings/settings-data.php:16
|
@@ -1450,384 +1465,584 @@ msgid ""
|
|
1450 |
"Are you sure you want to erase all module settings? This cannot be undone."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: modules/settings/settings-data.php:278
|
1454 |
-
msgid "Restore Default Settings"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: modules/
|
1458 |
-
msgid "
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: modules/
|
1462 |
-
msgid "
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: modules/
|
1466 |
-
msgid "
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: modules/
|
1470 |
-
msgid "
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: modules/
|
1474 |
-
msgid "
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: modules/
|
1478 |
-
msgid "
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: modules/
|
1482 |
-
msgid "
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
|
1486 |
-
|
1487 |
-
#: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:767
|
1488 |
-
msgid "SEO Ultimate"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: modules/settings
|
1492 |
-
msgid "
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: modules/
|
1496 |
-
msgid "
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: modules/settings
|
1500 |
-
msgid ""
|
1501 |
-
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
1502 |
-
"files."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: modules/settings
|
1506 |
-
msgid ""
|
1507 |
-
"Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
|
1508 |
-
"your SEO Ultimate settings and cannot be undone."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: modules/settings
|
1512 |
-
msgid "
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: modules/
|
1516 |
-
msgid "
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: modules/settings
|
1520 |
-
msgid "
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: modules/settings
|
1524 |
-
msgid "
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: modules/settings
|
1528 |
-
msgid "
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: modules/settings
|
1532 |
-
msgid "
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: modules/
|
1536 |
-
msgid "
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: modules/
|
1540 |
-
msgid "
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: modules/
|
1544 |
-
msgid "
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: modules/
|
1548 |
-
msgid "
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: modules/
|
1552 |
-
msgid "
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: modules/
|
1556 |
-
msgid ""
|
1557 |
-
"From the list below, select the version to which you would like to upgrade. "
|
1558 |
-
"Then click the “Upgrade” button at the bottom of the screen."
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: modules/
|
1562 |
-
msgid "
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: modules/
|
1566 |
-
msgid ""
|
1567 |
-
"There was an error retrieving the list of available versions. Please try "
|
1568 |
-
"again later. You can also upgrade to the latest version of SEO Ultimate "
|
1569 |
-
"using the WordPress plugin upgrader."
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: modules/
|
1573 |
-
msgid ""
|
1574 |
-
"Downgrading is provided as a convenience only and is not officially "
|
1575 |
-
"supported. Although unlikely, you may lose data in the downgrading process. "
|
1576 |
-
"It is your responsibility to backup your database before proceeding."
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: modules/
|
1580 |
msgid ""
|
1581 |
-
"
|
1582 |
-
"
|
1583 |
-
"the screen."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: modules/
|
1587 |
-
msgid ""
|
1588 |
-
"Downgrading to versions earlier than %s is not supported because doing so "
|
1589 |
-
"will result in data loss."
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: modules/
|
1593 |
-
msgid ""
|
1594 |
-
"There was an error retrieving the list of available versions. Please try "
|
1595 |
-
"again later."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: modules/
|
1599 |
-
msgid ""
|
1600 |
-
"To download and install a fresh copy of the SEO Ultimate version you are "
|
1601 |
-
"currently using, click the “Reinstall” button below."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: modules/
|
1605 |
-
msgid "
|
|
|
|
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: modules/
|
1609 |
-
msgid "
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: modules/
|
1613 |
-
msgid ""
|
1614 |
-
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
1615 |
-
"blog."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: modules/
|
1619 |
-
msgid "
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: modules/
|
1623 |
-
msgid "
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: modules/
|
1627 |
-
msgid "
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: modules/
|
1631 |
-
|
|
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: modules/
|
1635 |
-
msgid "
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: modules/
|
1639 |
-
msgid "
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: modules/
|
1643 |
-
msgid "
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: modules/
|
1647 |
-
msgid "
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: modules/
|
1651 |
-
|
|
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: modules/
|
1655 |
-
msgid "
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: modules/
|
1659 |
-
|
1660 |
-
msgid "Noindex"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: modules/
|
1664 |
-
|
1665 |
-
msgid "Nofollow"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: modules/
|
1669 |
-
msgid "
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: modules/
|
1673 |
-
msgid "
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: modules/
|
1677 |
-
msgid "
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: modules/
|
1681 |
-
msgid "
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: modules/
|
1685 |
-
msgid "
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: modules/
|
1689 |
-
msgid ""
|
1690 |
-
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
1691 |
-
"block indexing of the entire site, regardless of which options are set below."
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: modules/
|
1695 |
-
msgid "
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: modules/
|
1699 |
-
msgid "
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: modules/
|
1703 |
-
msgid "
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: modules/
|
1707 |
-
msgid "
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: modules/
|
1711 |
-
msgid "
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: modules/
|
1715 |
-
msgid "
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: modules/
|
1719 |
-
msgid "
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: modules/
|
1723 |
-
msgid "
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: modules/
|
1727 |
-
msgid "
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: modules/
|
1731 |
-
msgid "
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: modules/
|
1735 |
-
msgid "
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: modules/
|
1739 |
-
msgid "
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: modules/
|
1743 |
-
msgid "
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: modules/
|
1747 |
-
msgid "
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: modules/autolinks/autolinks.php:
|
1751 |
-
msgid "
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: modules/autolinks/autolinks.php:
|
1755 |
-
msgid ""
|
1756 |
-
"Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
|
1757 |
-
"(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
|
1758 |
-
"WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your "
|
1759 |
-
"webhost. In the meantime, you can return to an older version of Deeplink "
|
1760 |
-
"Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
|
1761 |
-
"a> to SEO Ultimate 5.9."
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: modules/autolinks/
|
1765 |
-
msgid "
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: modules/autolinks/
|
1769 |
-
msgid "
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: modules/autolinks/
|
|
|
1773 |
msgid ""
|
1774 |
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
1775 |
"a certain word or phrase in your post/page content to a URL you specify."
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: modules/autolinks/
|
|
|
1779 |
msgid "Edit Existing Links"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: modules/autolinks/
|
|
|
1783 |
msgid "Add a New Link"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: modules/autolinks/
|
|
|
|
|
|
|
|
|
|
|
1787 |
msgid "Anchor Text"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: modules/autolinks/
|
|
|
1791 |
msgid "Destination"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: modules/autolinks/
|
|
|
1795 |
msgid "Title Attribute"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: modules/autolinks/
|
|
|
1799 |
msgid "Options"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: modules/autolinks/
|
|
|
1803 |
msgid "Delete"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: modules/autolinks/
|
1807 |
-
msgid "
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: modules/autolinks/
|
1811 |
-
msgid "
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: modules/autolinks/
|
1815 |
-
|
|
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: modules/autolinks/
|
1819 |
-
msgid "
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: modules/autolinks/
|
1823 |
msgid ""
|
1824 |
-
"
|
1825 |
-
"
|
1826 |
-
"
|
1827 |
-
"
|
1828 |
-
"
|
1829 |
-
"
|
1830 |
-
"with that anchor text (assuming other posts contain that text)."
|
1831 |
msgstr ""
|
1832 |
|
1833 |
#: modules/autolinks/content-autolinks-settings.php:16
|
@@ -1884,188 +2099,35 @@ msgstr ""
|
|
1884 |
msgid "Siloing"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#:
|
1888 |
-
msgid "
|
1889 |
-
msgstr ""
|
1890 |
-
|
1891 |
-
#: plugin/class.su-installer.php:12
|
1892 |
-
msgid "Removing the current version of the plugin…"
|
1893 |
-
msgstr ""
|
1894 |
-
|
1895 |
-
#: plugin/class.su-installer.php:13
|
1896 |
-
msgid "Could not remove the current version of the plugin."
|
1897 |
-
msgstr ""
|
1898 |
-
|
1899 |
-
#: plugin/class.su-installer.php:17
|
1900 |
-
msgid "Downloading old version from <span class=\"code\">%s</span>…"
|
1901 |
-
msgstr ""
|
1902 |
-
|
1903 |
-
#: plugin/class.su-installer.php:18
|
1904 |
-
msgid "Unpacking the downgrade…"
|
1905 |
-
msgstr ""
|
1906 |
-
|
1907 |
-
#: plugin/class.su-installer.php:19
|
1908 |
-
msgid "Installing the downgrade…"
|
1909 |
-
msgstr ""
|
1910 |
-
|
1911 |
-
#: plugin/class.su-installer.php:20
|
1912 |
-
msgid "Plugin downgrade failed."
|
1913 |
-
msgstr ""
|
1914 |
-
|
1915 |
-
#: plugin/class.su-installer.php:21
|
1916 |
-
msgid "Plugin downgraded successfully."
|
1917 |
-
msgstr ""
|
1918 |
-
|
1919 |
-
#: plugin/class.su-installer.php:24
|
1920 |
-
msgid "Downloading from <span class=\"code\">%s</span>…"
|
1921 |
-
msgstr ""
|
1922 |
-
|
1923 |
-
#: plugin/class.su-installer.php:25
|
1924 |
-
msgid "Unpacking the reinstall…"
|
1925 |
-
msgstr ""
|
1926 |
-
|
1927 |
-
#: plugin/class.su-installer.php:26
|
1928 |
-
msgid "Reinstalling the current version…"
|
1929 |
-
msgstr ""
|
1930 |
-
|
1931 |
-
#: plugin/class.su-installer.php:27
|
1932 |
-
msgid "Plugin reinstallation failed."
|
1933 |
-
msgstr ""
|
1934 |
-
|
1935 |
-
#: plugin/class.su-installer.php:28
|
1936 |
-
msgid "Plugin reinstalled successfully."
|
1937 |
-
msgstr ""
|
1938 |
-
|
1939 |
-
#: plugin/class.su-installer.php:32
|
1940 |
-
msgid "Downloading upgrade from <span class=\"code\">%s</span>…"
|
1941 |
-
msgstr ""
|
1942 |
-
|
1943 |
-
#: plugin/class.su-installer.php:33
|
1944 |
-
msgid "Unpacking the upgrade…"
|
1945 |
-
msgstr ""
|
1946 |
-
|
1947 |
-
#: plugin/class.su-installer.php:34
|
1948 |
-
msgid "Installing the upgrade…"
|
1949 |
-
msgstr ""
|
1950 |
-
|
1951 |
-
#: plugin/class.su-installer.php:35
|
1952 |
-
msgid "Plugin upgrade failed."
|
1953 |
-
msgstr ""
|
1954 |
-
|
1955 |
-
#: plugin/class.su-installer.php:36
|
1956 |
-
msgid "Plugin upgraded successfully."
|
1957 |
-
msgstr ""
|
1958 |
-
|
1959 |
-
#: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
|
1960 |
-
msgid "%s and %s"
|
1961 |
-
msgstr ""
|
1962 |
-
|
1963 |
-
#: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
|
1964 |
-
msgid ", "
|
1965 |
-
msgstr ""
|
1966 |
-
|
1967 |
-
#: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
|
1968 |
-
msgid "%s, and %s"
|
1969 |
-
msgstr ""
|
1970 |
-
|
1971 |
-
#: plugin/class.seo-ultimate.php:767
|
1972 |
-
msgid "SEO"
|
1973 |
-
msgstr ""
|
1974 |
-
|
1975 |
-
#: plugin/class.seo-ultimate.php:956
|
1976 |
-
msgid ""
|
1977 |
-
"It looks like you made changes to the settings of this SEO Ultimate module. "
|
1978 |
-
"If you leave before saving, those changes will be lost."
|
1979 |
-
msgstr ""
|
1980 |
-
|
1981 |
-
#: plugin/class.seo-ultimate.php:1050
|
1982 |
-
msgid "SEO Settings Help"
|
1983 |
-
msgstr ""
|
1984 |
-
|
1985 |
-
#: plugin/class.seo-ultimate.php:1052
|
1986 |
-
msgid "The SEO Settings box lets you customize these settings:"
|
1987 |
-
msgstr ""
|
1988 |
-
|
1989 |
-
#: plugin/class.seo-ultimate.php:1054
|
1990 |
-
msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
|
1991 |
-
msgstr ""
|
1992 |
-
|
1993 |
-
#: plugin/class.seo-ultimate.php:1109
|
1994 |
-
msgid ""
|
1995 |
-
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
|
1996 |
-
"1$s to avoid plugin conflicts."
|
1997 |
-
msgstr ""
|
1998 |
-
|
1999 |
-
#: plugin/class.seo-ultimate.php:1151
|
2000 |
-
msgid "new module"
|
2001 |
-
msgstr ""
|
2002 |
-
|
2003 |
-
#: plugin/class.seo-ultimate.php:1151
|
2004 |
-
msgid "new modules"
|
2005 |
-
msgstr ""
|
2006 |
-
|
2007 |
-
#: plugin/class.seo-ultimate.php:1152
|
2008 |
-
msgid "new feature"
|
2009 |
-
msgstr ""
|
2010 |
-
|
2011 |
-
#: plugin/class.seo-ultimate.php:1152
|
2012 |
-
msgid "new features"
|
2013 |
-
msgstr ""
|
2014 |
-
|
2015 |
-
#: plugin/class.seo-ultimate.php:1153
|
2016 |
-
msgid "bugfix"
|
2017 |
-
msgstr ""
|
2018 |
-
|
2019 |
-
#: plugin/class.seo-ultimate.php:1153
|
2020 |
-
msgid "bugfixes"
|
2021 |
-
msgstr ""
|
2022 |
-
|
2023 |
-
#: plugin/class.seo-ultimate.php:1154
|
2024 |
-
msgid "improvement"
|
2025 |
-
msgstr ""
|
2026 |
-
|
2027 |
-
#: plugin/class.seo-ultimate.php:1154
|
2028 |
-
msgid "improvements"
|
2029 |
-
msgstr ""
|
2030 |
-
|
2031 |
-
#: plugin/class.seo-ultimate.php:1155
|
2032 |
-
msgid "security fix"
|
2033 |
-
msgstr ""
|
2034 |
-
|
2035 |
-
#: plugin/class.seo-ultimate.php:1155
|
2036 |
-
msgid "security fixes"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#:
|
2040 |
-
msgid "
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#:
|
2044 |
-
msgid "
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#:
|
2048 |
-
msgid "
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#:
|
2052 |
-
msgid "
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#:
|
2056 |
msgid ""
|
2057 |
-
"<strong>
|
2058 |
-
"search
|
2059 |
-
"
|
2060 |
-
"
|
2061 |
-
|
2062 |
-
|
2063 |
-
|
2064 |
-
msgid "SEO Settings"
|
2065 |
-
msgstr ""
|
2066 |
-
|
2067 |
-
#: plugin/class.seo-ultimate.php:1669
|
2068 |
-
msgid "Home"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
#: includes/jlwp/functions.php:60
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: SEO Ultimate 6.5\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2011-07-09 15:14:31+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
"Ultimate to remove this notice."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 6.5) #-#-#-#-#
|
23 |
+
#. Plugin Name of the plugin/theme
|
24 |
+
#: plugin/class.seo-ultimate.php:767 modules/settings/settings.php:14
|
25 |
+
msgid "SEO Ultimate"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: plugin/class.seo-ultimate.php:767
|
29 |
+
msgid "SEO"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: plugin/class.seo-ultimate.php:956
|
33 |
msgid ""
|
34 |
+
"It looks like you made changes to the settings of this SEO Ultimate module. "
|
35 |
+
"If you leave before saving, those changes will be lost."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: plugin/class.seo-ultimate.php:1050
|
39 |
+
msgid "SEO Settings Help"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: plugin/class.seo-ultimate.php:1052
|
43 |
+
msgid "The SEO Settings box lets you customize these settings:"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: plugin/class.seo-ultimate.php:1054
|
47 |
+
msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: plugin/class.seo-ultimate.php:1109
|
51 |
msgid ""
|
52 |
+
"SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
|
53 |
+
"1$s to avoid plugin conflicts."
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: plugin/class.seo-ultimate.php:1151
|
57 |
+
msgid "new module"
|
|
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: plugin/class.seo-ultimate.php:1151
|
61 |
+
msgid "new modules"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: plugin/class.seo-ultimate.php:1152
|
65 |
+
msgid "new feature"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: plugin/class.seo-ultimate.php:1152
|
69 |
+
msgid "new features"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: plugin/class.seo-ultimate.php:1153
|
73 |
+
msgid "bugfix"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: plugin/class.seo-ultimate.php:1153
|
77 |
+
msgid "bugfixes"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: plugin/class.seo-ultimate.php:1154
|
81 |
+
msgid "improvement"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: plugin/class.seo-ultimate.php:1154
|
85 |
+
msgid "improvements"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: plugin/class.seo-ultimate.php:1155
|
89 |
+
msgid "security fix"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: plugin/class.seo-ultimate.php:1155
|
93 |
+
msgid "security fixes"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: plugin/class.seo-ultimate.php:1186
|
97 |
+
msgid "%d %s"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: plugin/class.seo-ultimate.php:1192
|
101 |
+
msgid "Upgrade now to get %s. %s."
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: plugin/class.seo-ultimate.php:1194
|
105 |
+
msgid "View changelog"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: plugin/class.seo-ultimate.php:1250 modules/settings/uninstall.php:18
|
109 |
+
msgid "Uninstall"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: plugin/class.seo-ultimate.php:1270
|
113 |
+
msgid "Active Modules: "
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: plugin/class.seo-ultimate.php:1331
|
117 |
msgid ""
|
118 |
+
"<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
|
119 |
+
"search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
|
120 |
+
"target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
|
121 |
+
"to everyone."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: plugin/class.seo-ultimate.php:1453
|
125 |
+
msgid "SEO Settings"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: plugin/class.seo-ultimate.php:1671
|
129 |
+
msgid "Home"
|
|
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: plugin/class.seo-ultimate.php:1672 modules/class.su-module.php:2585
|
133 |
+
#: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:34
|
134 |
+
msgid "Blog Homepage"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: plugin/class.seo-ultimate.php:1740
|
138 |
+
msgid "Author Archives"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: plugin/class.seo-ultimate.php:1746 modules/class.su-module.php:2589
|
142 |
+
msgid "Author"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: plugin/su-functions.php:77 includes/jlfunctions/str.php:105
|
146 |
+
msgid "%s and %s"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: plugin/su-functions.php:80 includes/jlfunctions/str.php:108
|
150 |
+
msgid ", "
|
|
|
|
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: plugin/su-functions.php:81 includes/jlfunctions/str.php:109
|
154 |
+
msgid "%s, and %s"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: plugin/class.su-installer.php:9
|
158 |
+
msgid "Package not available."
|
|
|
|
|
|
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: plugin/class.su-installer.php:12
|
162 |
+
msgid "Removing the current version of the plugin…"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: plugin/class.su-installer.php:13
|
166 |
+
msgid "Could not remove the current version of the plugin."
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: plugin/class.su-installer.php:17
|
170 |
+
msgid "Downloading old version from <span class=\"code\">%s</span>…"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: plugin/class.su-installer.php:18
|
174 |
+
msgid "Unpacking the downgrade…"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: plugin/class.su-installer.php:19
|
178 |
+
msgid "Installing the downgrade…"
|
|
|
|
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: plugin/class.su-installer.php:20
|
182 |
+
msgid "Plugin downgrade failed."
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: plugin/class.su-installer.php:21
|
186 |
+
msgid "Plugin downgraded successfully."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: plugin/class.su-installer.php:24
|
190 |
+
msgid "Downloading from <span class=\"code\">%s</span>…"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: plugin/class.su-installer.php:25
|
194 |
+
msgid "Unpacking the reinstall…"
|
|
|
|
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: plugin/class.su-installer.php:26
|
198 |
+
msgid "Reinstalling the current version…"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: plugin/class.su-installer.php:27
|
202 |
+
msgid "Plugin reinstallation failed."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: plugin/class.su-installer.php:28
|
206 |
+
msgid "Plugin reinstalled successfully."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: plugin/class.su-installer.php:32
|
210 |
+
msgid "Downloading upgrade from <span class=\"code\">%s</span>…"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: plugin/class.su-installer.php:33
|
214 |
+
msgid "Unpacking the upgrade…"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: plugin/class.su-installer.php:34
|
218 |
+
msgid "Installing the upgrade…"
|
219 |
+
msgstr ""
|
|
|
|
|
220 |
|
221 |
+
#: plugin/class.su-installer.php:35
|
222 |
+
msgid "Plugin upgrade failed."
|
223 |
+
msgstr ""
|
|
|
|
|
224 |
|
225 |
+
#: plugin/class.su-installer.php:36
|
226 |
+
msgid "Plugin upgraded successfully."
|
227 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
|
229 |
+
#: modules/more-links/more-links.php:12
|
230 |
+
msgid "More Link Customizer"
|
231 |
+
msgstr ""
|
|
|
|
|
|
|
232 |
|
233 |
+
#: modules/more-links/more-links.php:30
|
234 |
+
msgid "Default More Link Text"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: modules/more-links/more-links.php:51
|
238 |
+
msgid "More Link Text:"
|
|
|
|
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: modules/misc/misc.php:11
|
242 |
+
msgid "Miscellaneous"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: modules/misc/misc.php:14
|
246 |
+
msgid ""
|
247 |
+
"The Miscellaneous page contains modules that don’t have enough "
|
248 |
+
"settings to warrant their own separate admin pages."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: modules/sds-blog/sds-blog.php:12
|
252 |
+
msgid "Whitepapers"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: modules/sds-blog/sds-blog.php:13
|
256 |
+
msgid "SEO Design Solutions Whitepapers"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 6.5) #-#-#-#-#
|
260 |
+
#. Author of the plugin/theme
|
261 |
+
#: modules/sds-blog/sds-blog.php:49
|
262 |
+
msgid "SEO Design Solutions"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: modules/sds-blog/sds-blog.php:50
|
266 |
+
msgid ""
|
267 |
+
"The search engine optimization articles below are loaded from the website of "
|
268 |
+
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
269 |
+
"an article’s title to read it."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: modules/linkbox/linkbox.php:12
|
273 |
+
msgid "Linkbox Inserter"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: modules/linkbox/linkbox.php:18
|
277 |
+
msgid "Link to this post!"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: modules/linkbox/linkbox.php:45
|
281 |
+
msgid "At the end of posts"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: modules/linkbox/linkbox.php:46
|
285 |
+
msgid "At the end of pages"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: modules/linkbox/linkbox.php:47
|
289 |
+
msgid "When called by the su_linkbox hook"
|
|
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: modules/linkbox/linkbox.php:48
|
293 |
+
msgid "Display linkboxes..."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: modules/linkbox/linkbox.php:49
|
297 |
+
msgid "Linkbox HTML"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: modules/import-aiosp/import-aiosp.php:12
|
301 |
+
msgid "Import from All in One SEO Pack"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: modules/import-aiosp/import-aiosp.php:13
|
305 |
+
msgid "AIOSP Import"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: modules/import-aiosp/import-aiosp.php:15
|
309 |
+
msgid "All in One SEO Pack"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: modules/import-aiosp/import-aiosp.php:16
|
313 |
+
msgid "AIOSP"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: modules/import-aiosp/import-aiosp.php:17
|
317 |
+
msgid "Import post data (custom title tags and meta tags)."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: modules/import-aiosp/import-aiosp.php:21
|
321 |
+
msgid ""
|
322 |
+
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
323 |
+
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
324 |
+
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
325 |
+
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
326 |
+
"to be currently installed or activated for the import to take place."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: modules/import-aiosp/import-aiosp.php:23
|
330 |
+
msgid ""
|
331 |
+
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
332 |
+
"you use an older version of AIOSP, you should update to the latest version "
|
333 |
+
"first and run AIOSP’s upgrade process."
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: modules/class.su-importmodule.php:49
|
337 |
+
msgid "Import Post Fields"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: modules/class.su-importmodule.php:50
|
341 |
+
msgid ""
|
342 |
+
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
343 |
+
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
344 |
+
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
345 |
+
"Ultimate."
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: modules/class.su-importmodule.php:53
|
349 |
+
msgid "Conflict Resolution Mode"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: modules/class.su-importmodule.php:54
|
353 |
+
msgid ""
|
354 |
+
"What should the import tool do if it tries to move over a post’s %s "
|
355 |
+
"data, but different data already exists in the corresponding SEO Ultimate "
|
356 |
+
"fields?"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: modules/class.su-importmodule.php:56
|
360 |
+
msgid "Skip that post and leave all data as-is (default)."
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: modules/class.su-importmodule.php:57
|
364 |
+
msgid "Delete the SEO Ultimate data and replace it with the %s data."
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: modules/class.su-importmodule.php:58
|
368 |
+
msgid "Keep the SEO Ultimate data and delete the %s data."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: modules/class.su-importmodule.php:61
|
372 |
+
msgid "Deletion Preference"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: modules/class.su-importmodule.php:62
|
376 |
+
msgid ""
|
377 |
+
"When the migration tool successfully copies a post’s %1$s data over to "
|
378 |
+
"SEO Ultimate, what should it do with the old %1$s data?"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: modules/class.su-importmodule.php:64
|
382 |
+
msgid "Delete the %s data."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: modules/class.su-importmodule.php:65
|
386 |
+
msgid "Leave behind the duplicate %s data (default)."
|
|
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: modules/class.su-importmodule.php:72
|
390 |
+
msgid "Import Now"
|
|
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: modules/class.su-importmodule.php:75
|
394 |
+
msgid ""
|
395 |
+
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
396 |
+
"target=\"_blank\">backup your database</a> before proceeding!"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: modules/class.su-importmodule.php:84
|
400 |
+
msgid "Import complete."
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: modules/class.su-importmodule.php:90
|
404 |
+
msgid "Return to import page"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: modules/class.su-importmodule.php:93
|
408 |
+
msgid "Return to settings page"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: modules/class.su-importmodule.php:96
|
412 |
+
msgid "Return to SEO page"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: modules/class.su-importmodule.php:116
|
416 |
+
msgid "Deactivated %s."
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: modules/class.su-importmodule.php:174
|
420 |
+
msgid "Imported a total of %d fields for one post/page/revision."
|
421 |
+
msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
|
422 |
+
msgstr[0] ""
|
423 |
+
msgstr[1] ""
|
424 |
|
425 |
+
#: modules/class.su-importmodule.php:180
|
426 |
+
msgid "Skipped one post with disabled %2$s data."
|
427 |
+
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
428 |
+
msgstr[0] ""
|
429 |
+
msgstr[1] ""
|
430 |
|
431 |
+
#: modules/class.su-importmodule.php:186
|
432 |
msgid ""
|
433 |
+
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
434 |
+
"settings you chose."
|
435 |
+
msgid_plural ""
|
436 |
+
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
437 |
+
"settings you chose."
|
438 |
+
msgstr[0] ""
|
439 |
+
msgstr[1] ""
|
440 |
|
441 |
+
#: modules/class.su-importmodule.php:192
|
442 |
+
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
443 |
+
msgid_plural ""
|
444 |
+
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
445 |
+
msgstr[0] ""
|
446 |
+
msgstr[1] ""
|
447 |
|
448 |
#: modules/titles/titles.php:12
|
449 |
msgid "Title Tag Rewriter"
|
578 |
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: modules/class.su-module.php:375
|
582 |
+
msgid ""
|
583 |
+
"(Note: This translated documentation was designed for an older version of "
|
584 |
+
"SEO Ultimate and may be outdated.)"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: modules/class.su-module.php:658
|
588 |
+
msgid ""
|
589 |
+
"All the modules on this page have been disabled. You can re-enable them "
|
590 |
+
"using the <a href=\"%s\">Module Manager</a>."
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: modules/class.su-module.php:1015
|
594 |
+
msgctxt "Dropdown Title"
|
595 |
+
msgid "%s — %s"
|
|
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: modules/class.su-module.php:1043
|
599 |
+
msgid "%1$s | %2$s %3$s by %4$s"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: modules/class.su-module.php:1122
|
603 |
+
msgid "Your site currently doesn’t have any public items of this type."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: modules/class.su-module.php:1206
|
607 |
+
msgid "«"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: modules/class.su-module.php:1207
|
611 |
+
msgid "»"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: modules/class.su-module.php:1214
|
615 |
+
msgid "Displaying %s–%s of %s"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: modules/class.su-module.php:1227 modules/404s/fofs-log.php:113
|
619 |
+
msgid "Actions"
|
|
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: modules/class.su-module.php:1228
|
623 |
+
msgid "ID"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: modules/class.su-module.php:1262
|
627 |
+
msgid "View"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: modules/class.su-module.php:1264
|
631 |
+
msgid "Edit"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: modules/class.su-module.php:1427
|
635 |
+
msgid "Settings updated."
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#: modules/class.su-module.php:1448
|
639 |
+
msgid "Save Changes"
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
#: modules/class.su-module.php:1959
|
643 |
msgid ""
|
644 |
+
"Are you sure you want to replace the textbox contents with this default "
|
645 |
+
"value?"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: modules/class.su-module.php:1975 modules/settings/settings-data.php:23
|
649 |
+
msgid "Reset"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: modules/class.su-module.php:2609
|
653 |
+
msgid "Type a URL or start typing the name of the item you want to link to"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: modules/class.su-module.php:2621
|
657 |
+
msgid "Remove this destination"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: modules/class.su-module.php:2621
|
661 |
+
msgid "X"
|
|
|
|
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: modules/noindex/noindex.php:12
|
665 |
+
msgid "Noindex Manager"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
|
669 |
+
#: modules/noindex/noindex.php:67
|
670 |
+
msgid "Noindex"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: modules/noindex/noindex.php:43 modules/meta/meta-keywords.php:33
|
674 |
+
msgid "Default Values"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
|
678 |
+
#: modules/autolinks/footer-autolinks.php:218
|
679 |
+
#: modules/autolinks/content-autolinks.php:293
|
680 |
+
msgid "Nofollow"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
|
684 |
+
msgid "Use default"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: modules/noindex/noindex.php:63
|
688 |
+
msgid "noindex"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: modules/noindex/noindex.php:64
|
692 |
+
msgid "index"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: modules/noindex/noindex.php:74
|
696 |
+
msgid "nofollow"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: modules/noindex/noindex.php:75
|
700 |
+
msgid "follow"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: modules/noindex/noindex.php:89
|
704 |
+
msgid ""
|
705 |
+
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
706 |
+
"block indexing of the entire site, regardless of which options are set below."
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: modules/noindex/noindex.php:92
|
710 |
+
msgid "Prevent indexing of..."
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: modules/noindex/noindex.php:93
|
714 |
+
msgid "Administration back-end pages"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
+
#: modules/noindex/noindex.php:94
|
718 |
+
msgid "Author archives"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: modules/noindex/noindex.php:95
|
722 |
+
msgid "Blog search pages"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: modules/noindex/noindex.php:96
|
726 |
+
msgid "Category archives"
|
|
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: modules/noindex/noindex.php:97
|
730 |
+
msgid "Comment feeds"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: modules/noindex/noindex.php:98
|
734 |
+
msgid "Comment subpages"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: modules/noindex/noindex.php:99
|
738 |
+
msgid "Date-based archives"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: modules/noindex/noindex.php:100
|
742 |
+
msgid "Subpages of the homepage"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: modules/noindex/noindex.php:101
|
746 |
+
msgid "Tag archives"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: modules/noindex/noindex.php:102
|
750 |
+
msgid "User login/registration pages"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: modules/noindex/noindex.php:165
|
754 |
+
msgid "Noindex: Tell search engines not to index this webpage."
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: modules/noindex/noindex.php:166
|
758 |
+
msgid "Nofollow: Tell search engines not to spider links on this webpage."
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: modules/noindex/noindex.php:167
|
762 |
+
msgid "Meta Robots Tag:"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: modules/meta/meta-descriptions.php:12
|
766 |
+
msgid "Meta Description Editor"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: modules/meta/meta-descriptions.php:13
|
770 |
+
msgid "Meta Descriptions"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: modules/meta/meta-descriptions.php:31
|
774 |
+
msgid "Meta Description"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: modules/meta/meta-descriptions.php:48
|
778 |
+
msgid "Post Description Format"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: modules/meta/meta-descriptions.php:49
|
782 |
+
msgid "Category Description Format"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: modules/meta/meta-descriptions.php:50
|
786 |
+
msgid "Post Tag Description Format"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: modules/meta/meta-descriptions.php:57
|
790 |
+
msgid "Blog Homepage Meta Description"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: modules/meta/meta-descriptions.php:59
|
794 |
+
msgid "Use this blog’s tagline as the default homepage description."
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: modules/meta/meta-descriptions.php:60
|
798 |
+
msgid "Default Value"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: modules/meta/meta-descriptions.php:122
|
802 |
+
msgid "Meta Description:"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: modules/meta/meta-descriptions.php:125
|
806 |
+
msgid "You’ve entered %s characters. Most search engines use up to 140."
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: modules/meta/meta-descriptions.php:133
|
810 |
+
msgid ""
|
811 |
+
"<strong>Description</strong> — The value of the meta description tag. "
|
812 |
+
"The description will often appear underneath the title in search engine "
|
813 |
+
"results. Writing an accurate, attention-grabbing description for every post "
|
814 |
+
"is important to ensuring a good search results clickthrough rate."
|
815 |
msgstr ""
|
816 |
|
817 |
#: modules/meta/meta-keywords.php:12
|
822 |
msgid "Meta Keywords"
|
823 |
msgstr ""
|
824 |
|
|
|
|
|
|
|
|
|
825 |
#: modules/meta/meta-keywords.php:56
|
826 |
msgid "The %d most commonly-used words"
|
827 |
msgstr ""
|
901 |
msgid "Don’t cache or archive this site."
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: modules/canonical/canonical.php:12
|
905 |
+
msgid "Canonicalizer"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: modules/canonical/canonical.php:39
|
909 |
+
msgid ""
|
910 |
+
"Generate <code><link rel="canonical" /></code> meta tags."
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: modules/canonical/canonical.php:40
|
914 |
+
msgid "Send <code>rel="canonical"</code> HTTP headers."
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: modules/canonical/canonical.php:41
|
918 |
+
msgid "Redirect requests for nonexistent pagination."
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: modules/link-nofollow/link-nofollow.php:12
|
922 |
+
msgid "Nofollow Manager"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: modules/link-nofollow/link-nofollow.php:53
|
926 |
+
msgid "Add the nofollow attribute to..."
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: modules/link-nofollow/link-nofollow.php:55
|
930 |
+
msgid "Adjacent post links"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: modules/link-nofollow/link-nofollow.php:56
|
934 |
+
msgid "Category links (after posts)"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: modules/link-nofollow/link-nofollow.php:57
|
938 |
+
msgid "Category links (in lists)"
|
|
|
|
|
|
|
|
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: modules/link-nofollow/link-nofollow.php:58
|
942 |
+
msgid "Comment anchor links"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: modules/link-nofollow/link-nofollow.php:59
|
946 |
+
msgid "Comment feed links"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: modules/link-nofollow/link-nofollow.php:60
|
950 |
+
msgid "Date-based archive links"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: modules/link-nofollow/link-nofollow.php:61
|
954 |
+
msgid "Pagination navigation links (all)"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: modules/link-nofollow/link-nofollow.php:62
|
958 |
+
msgid "Pagination navigation links (on blog home only)"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: modules/link-nofollow/link-nofollow.php:63
|
962 |
+
msgid "“Read more” links"
|
|
|
|
|
|
|
|
|
|
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: modules/link-nofollow/link-nofollow.php:64
|
966 |
+
msgid "Registration link"
|
|
|
|
|
|
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: modules/link-nofollow/link-nofollow.php:65
|
970 |
+
msgid "Login link"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: modules/link-nofollow/link-nofollow.php:66
|
974 |
+
msgid "Tag links (after posts)"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: modules/link-nofollow/link-nofollow.php:67
|
978 |
+
msgid "Tag links (in lists and clouds)"
|
|
|
|
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
982 |
+
msgid "When displaying page lists, nofollow links to this page"
|
|
|
|
|
|
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
986 |
+
msgid "Nofollow:"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: modules/competition-queries/competition-queries.php:12
|
990 |
+
msgid "Competition Researcher"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: modules/competition-queries/competition-queries.php:13
|
994 |
+
msgid "Comp. Researcher"
|
|
|
|
|
|
|
|
|
|
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: modules/competition-queries/competition-queries.php:17
|
998 |
msgid ""
|
999 |
+
"The Competition Researcher provides you with easy access to various search "
|
1000 |
+
"engine tools which you can use to research multiple search queries or URLs."
|
|
|
|
|
|
|
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: modules/competition-queries/competition-queries.php:21
|
1004 |
+
msgid "Step 1: Choose Your Research Tool"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: modules/competition-queries/competition-queries.php:25
|
1008 |
+
msgid "Keywords"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: modules/competition-queries/competition-queries.php:25
|
1012 |
+
msgid "Normal Search"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: modules/competition-queries/competition-queries.php:25
|
1016 |
+
msgid "Find out how many pages contain the words in each query"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: modules/competition-queries/competition-queries.php:26
|
1020 |
+
msgid "Phrase Match"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: modules/competition-queries/competition-queries.php:26
|
1024 |
+
msgid ""
|
1025 |
+
"Find out how many “actual” pages are competing for each query"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: modules/competition-queries/competition-queries.php:27
|
1029 |
+
msgid "Allinanchor"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: modules/competition-queries/competition-queries.php:27
|
1033 |
+
msgid "Find out which sites have the most links for each query"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: modules/competition-queries/competition-queries.php:28
|
1037 |
+
msgid "Allintitle"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: modules/competition-queries/competition-queries.php:28
|
1041 |
+
msgid ""
|
1042 |
+
"Find out which sites have the highest relevance in the title for each query"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: modules/competition-queries/competition-queries.php:29
|
1046 |
+
msgid "Allintext"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: modules/competition-queries/competition-queries.php:29
|
1050 |
+
msgid "Find out which sites have the most relevant content/text on their pages"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: modules/competition-queries/competition-queries.php:30
|
1054 |
+
msgid "Allinurl"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: modules/competition-queries/competition-queries.php:30
|
1058 |
+
msgid ""
|
1059 |
+
"Find out which sites have the most relevant naming conventions for each "
|
1060 |
+
"keyword"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: modules/competition-queries/competition-queries.php:32
|
1064 |
+
msgid "URLs"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: modules/competition-queries/competition-queries.php:32
|
1068 |
+
msgid "Site"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: modules/competition-queries/competition-queries.php:32
|
1072 |
+
msgid "Find out how many pages are indexed for each domain"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: modules/competition-queries/competition-queries.php:33
|
1076 |
+
#: modules/competition-queries/competition-queries.php:38
|
1077 |
+
msgid "Inbound Links"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: modules/competition-queries/competition-queries.php:33
|
1081 |
+
msgid "Find out how many sites link to the domains"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: modules/competition-queries/competition-queries.php:34
|
1085 |
+
#: modules/competition-queries/competition-queries.php:38
|
1086 |
+
msgid "Outbound Links"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: modules/competition-queries/competition-queries.php:34
|
1090 |
+
msgid "Find out how many sites the domains link to"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: modules/competition-queries/competition-queries.php:57
|
1094 |
+
msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: modules/competition-queries/competition-queries.php:59
|
1098 |
+
msgid "(Type in one per line)"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: modules/competition-queries/competition-queries.php:61
|
1102 |
+
msgid "Step 3: Set Options and Submit"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: modules/competition-queries/competition-queries.php:63
|
1106 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:28
|
1107 |
+
msgid "Show 100 results per page"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: modules/competition-queries/competition-queries.php:65
|
1111 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:30
|
1112 |
+
msgid "Use Google’s minimal mode"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: modules/competition-queries/competition-queries.php:71
|
1116 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:33
|
1117 |
+
msgid "Submit"
|
|
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:12
|
1121 |
+
msgid "Internal Relevance Researcher"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:13
|
1125 |
+
msgid "Int. Rel. Researcher"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:21
|
1129 |
+
msgid "Step 1: Enter Keywords"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:23
|
1133 |
+
msgid "(Type one keyword per line)"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:25
|
1137 |
+
msgid "Step 2: Set Options and Submit"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:27
|
1141 |
+
msgid "Put keywords in quotes"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: modules/user-code/user-code.php:12
|
1145 |
+
msgid "Code Inserter"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: modules/user-code/user-code.php:27
|
1149 |
+
msgid "Everywhere"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: modules/user-code/user-code.php:34
|
1153 |
+
msgid "<head> Tag"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: modules/user-code/user-code.php:35
|
1157 |
+
msgid "Before Item Content"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: modules/user-code/user-code.php:36
|
1161 |
+
msgid "After Item Content"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: modules/user-code/user-code.php:37
|
1165 |
+
msgid "Footer"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: modules/user-code/user-code.php:51
|
1169 |
+
msgid "Code Inserter module"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: modules/modules/modules.php:12
|
1173 |
+
msgid "Module Manager"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: modules/modules/modules.php:13
|
1177 |
+
msgid "Modules"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: modules/modules/modules.php:41
|
1181 |
+
msgid ""
|
1182 |
+
"SEO Ultimate’s features are located in groups called “modules."
|
1183 |
+
"” By default, most of these modules are listed in the “"
|
1184 |
+
"SEO” menu on the left. Whenever you’re working with a module, "
|
1185 |
+
"you can view documentation by clicking the tabs in the upper-right-hand "
|
1186 |
+
"corner of your administration screen."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: modules/modules/modules.php:43
|
1190 |
+
msgid ""
|
1191 |
+
"The Module Manager lets you disable or hide modules you don’t use. "
|
1192 |
+
"You can also silence modules from displaying bubble alerts on the menu."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: modules/modules/modules.php:47
|
1196 |
+
msgid "Modules updated."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: modules/modules/modules.php:52
|
1200 |
+
msgid "Status"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: modules/modules/modules.php:53
|
1204 |
+
msgid "Module"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: modules/modules/modules.php:66
|
1208 |
+
msgid "Enabled"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: modules/modules/modules.php:67
|
1212 |
+
msgid "Silenced"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: modules/modules/modules.php:68
|
1216 |
+
msgid "Hidden"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: modules/modules/modules.php:69
|
1220 |
+
msgid "Disabled"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
#: modules/permalinks/permalinks.php:15
|
1238 |
msgid "Remove the URL bases of..."
|
1239 |
msgstr ""
|
1240 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1241 |
#: modules/files/files.php:14
|
1242 |
msgid "File Editor"
|
1243 |
msgstr ""
|
1260 |
msgstr ""
|
1261 |
|
1262 |
#: modules/files/files.php:70
|
1263 |
+
msgid "Enable this custom robots.txt file and disable the default file"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: modules/files/files.php:71
|
1267 |
+
msgid "Let other plugins add rules to my custom robots.txt file"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: modules/files/files.php:72
|
1271 |
+
msgid "robots.txt Settings"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: modules/files/files.php:75
|
1275 |
+
msgid ""
|
1276 |
+
"Please realize that incorrectly editing your robots.txt file could block "
|
1277 |
+
"search engines from your site."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: modules/files/files.php:79
|
1281 |
+
msgid ".htaccess"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: modules/files/files.php:82
|
1285 |
+
msgid ""
|
1286 |
+
"Also, incorrectly editing your .htaccess file could disable your entire "
|
1287 |
+
"website. Edit with caution!"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: modules/files/files.php:134
|
1291 |
+
msgid ""
|
1292 |
+
"Please note that your privacy settings won’t have any effect on your "
|
1293 |
+
"robots.txt file, since you’re using <a href=\"%s\">a custom one</a>."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: modules/settings/settings.php:12
|
1297 |
+
msgid "Plugin Settings"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: modules/settings/settings.php:13
|
1301 |
+
msgid "SEO Ultimate Plugin Settings"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
#: modules/settings/settings-data.php:16
|
1465 |
"Are you sure you want to erase all module settings? This cannot be undone."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: modules/settings/settings-data.php:278
|
1469 |
+
msgid "Restore Default Settings"
|
1470 |
+
msgstr ""
|
1471 |
+
|
1472 |
+
#: modules/settings/uninstall.php:17
|
1473 |
+
msgid "Uninstaller"
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: modules/settings/uninstall.php:27
|
1477 |
+
msgid ""
|
1478 |
+
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
1479 |
+
"files."
|
1480 |
+
msgstr ""
|
1481 |
+
|
1482 |
+
#: modules/settings/uninstall.php:30
|
1483 |
+
msgid ""
|
1484 |
+
"Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
|
1485 |
+
"your SEO Ultimate settings and cannot be undone."
|
1486 |
+
msgstr ""
|
1487 |
+
|
1488 |
+
#: modules/settings/uninstall.php:31
|
1489 |
+
msgid "Uninstall Now"
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#: modules/settings/uninstall.php:35 modules/settings/uninstall.php:42
|
1493 |
+
msgid "Uninstall SEO Ultimate"
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: modules/settings/uninstall.php:46
|
1497 |
+
msgid "Deleted settings."
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: modules/settings/uninstall.php:53
|
1501 |
+
msgid "An error occurred while deleting files."
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: modules/settings/uninstall.php:55
|
1505 |
+
msgid "Deleted files."
|
1506 |
+
msgstr ""
|
1507 |
+
|
1508 |
+
#: modules/settings/uninstall.php:56
|
1509 |
+
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: modules/settings/global-settings.php:18
|
1513 |
+
msgid "Global Settings"
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: modules/settings/global-settings.php:40
|
1517 |
+
msgid "Enable nofollow’d attribution link"
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: modules/settings/global-settings.php:41
|
1521 |
+
msgid "Enable attribution link CSS styling"
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: modules/settings/global-settings.php:42
|
1525 |
+
msgid "Notify me about unnecessary active plugins"
|
1526 |
+
msgstr ""
|
1527 |
+
|
1528 |
+
#: modules/settings/global-settings.php:43
|
1529 |
+
msgid "Insert comments around HTML code insertions"
|
1530 |
+
msgstr ""
|
1531 |
+
|
1532 |
+
#: modules/settings/install.php:18
|
1533 |
+
msgid "Upgrade/Downgrade/Reinstall"
|
1534 |
+
msgstr ""
|
1535 |
+
|
1536 |
+
#: modules/settings/install.php:19
|
1537 |
+
msgid "Installer"
|
1538 |
+
msgstr ""
|
1539 |
+
|
1540 |
+
#: modules/settings/install.php:23 modules/settings/install.php:48
|
1541 |
+
msgid "Upgrade"
|
1542 |
+
msgstr ""
|
1543 |
+
|
1544 |
+
#: modules/settings/install.php:24 modules/settings/install.php:71
|
1545 |
+
msgid "Downgrade"
|
1546 |
+
msgstr ""
|
1547 |
+
|
1548 |
+
#: modules/settings/install.php:25 modules/settings/install.php:86
|
1549 |
+
msgid "Reinstall"
|
1550 |
+
msgstr ""
|
1551 |
+
|
1552 |
+
#: modules/settings/install.php:42
|
1553 |
+
msgid ""
|
1554 |
+
"From the list below, select the version to which you would like to upgrade. "
|
1555 |
+
"Then click the “Upgrade” button at the bottom of the screen."
|
1556 |
+
msgstr ""
|
1557 |
+
|
1558 |
+
#: modules/settings/install.php:51
|
1559 |
+
msgid "You are already running the latest version."
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: modules/settings/install.php:53
|
1563 |
+
msgid ""
|
1564 |
+
"There was an error retrieving the list of available versions. Please try "
|
1565 |
+
"again later. You can also upgrade to the latest version of SEO Ultimate "
|
1566 |
+
"using the WordPress plugin upgrader."
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
+
#: modules/settings/install.php:62
|
1570 |
+
msgid ""
|
1571 |
+
"Downgrading is provided as a convenience only and is not officially "
|
1572 |
+
"supported. Although unlikely, you may lose data in the downgrading process. "
|
1573 |
+
"It is your responsibility to backup your database before proceeding."
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: modules/settings/install.php:65
|
1577 |
+
msgid ""
|
1578 |
+
"From the list below, select the version to which you would like to "
|
1579 |
+
"downgrade. Then click the “Downgrade” button at the bottom of "
|
1580 |
+
"the screen."
|
1581 |
+
msgstr ""
|
1582 |
+
|
1583 |
+
#: modules/settings/install.php:74
|
1584 |
+
msgid ""
|
1585 |
+
"Downgrading to versions earlier than %s is not supported because doing so "
|
1586 |
+
"will result in data loss."
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: modules/settings/install.php:76
|
1590 |
+
msgid ""
|
1591 |
+
"There was an error retrieving the list of available versions. Please try "
|
1592 |
+
"again later."
|
1593 |
+
msgstr ""
|
1594 |
+
|
1595 |
+
#: modules/settings/install.php:81
|
1596 |
+
msgid ""
|
1597 |
+
"To download and install a fresh copy of the SEO Ultimate version you are "
|
1598 |
+
"currently using, click the “Reinstall” button below."
|
1599 |
+
msgstr ""
|
1600 |
+
|
1601 |
+
#: modules/settings/install.php:108
|
1602 |
+
msgid "Your Current Version"
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
+
#: modules/settings/install.php:110
|
1606 |
+
msgid "Latest Version"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: modules/settings/install.php:130
|
1610 |
+
msgid ""
|
1611 |
+
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
1612 |
+
"blog."
|
1613 |
+
msgstr ""
|
1614 |
+
|
1615 |
+
#: modules/settings/install.php:140
|
1616 |
+
msgid "Downgrade to SEO Ultimate %s"
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: modules/settings/install.php:143
|
1620 |
+
msgid "Reinstall SEO Ultimate %s"
|
1621 |
+
msgstr ""
|
1622 |
+
|
1623 |
+
#: modules/settings/install.php:146
|
1624 |
+
msgid "Upgrade to SEO Ultimate %s"
|
1625 |
+
msgstr ""
|
1626 |
+
|
1627 |
+
#: modules/404s/fofs.php:11
|
1628 |
+
msgid "404 Monitor"
|
1629 |
+
msgstr ""
|
1630 |
+
|
1631 |
+
#: modules/404s/fofs-log.php:16
|
1632 |
+
msgid "404 Monitor Log"
|
1633 |
+
msgstr ""
|
1634 |
+
|
1635 |
+
#: modules/404s/fofs-log.php:17
|
1636 |
+
msgid "Log"
|
1637 |
+
msgstr ""
|
1638 |
+
|
1639 |
+
#: modules/404s/fofs-log.php:114
|
1640 |
+
msgid "Hits"
|
1641 |
+
msgstr ""
|
1642 |
+
|
1643 |
+
#: modules/404s/fofs-log.php:115
|
1644 |
+
msgid "URL with 404 Error"
|
1645 |
+
msgstr ""
|
1646 |
+
|
1647 |
+
#: modules/404s/fofs-log.php:116
|
1648 |
+
msgid "Date of Most Recent Hit"
|
1649 |
+
msgstr ""
|
1650 |
+
|
1651 |
+
#: modules/404s/fofs-log.php:117
|
1652 |
+
msgid "Referers"
|
1653 |
+
msgstr ""
|
1654 |
+
|
1655 |
+
#: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
|
1656 |
+
msgid "User Agents"
|
1657 |
+
msgstr ""
|
1658 |
+
|
1659 |
+
#: modules/404s/fofs-log.php:134
|
1660 |
+
msgid ""
|
1661 |
+
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
1662 |
+
"Settings tab."
|
1663 |
+
msgstr ""
|
1664 |
+
|
1665 |
+
#: modules/404s/fofs-log.php:141
|
1666 |
+
msgid "The log entry was successfully deleted."
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: modules/404s/fofs-log.php:143
|
1670 |
+
msgid "This log entry has already been deleted."
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: modules/404s/fofs-log.php:152
|
1674 |
+
msgid "The log was successfully cleared."
|
1675 |
+
msgstr ""
|
1676 |
+
|
1677 |
+
#: modules/404s/fofs-log.php:156
|
1678 |
+
msgid "No 404 errors in the log."
|
1679 |
+
msgstr ""
|
1680 |
+
|
1681 |
+
#: modules/404s/fofs-log.php:180
|
1682 |
+
msgid "Open URL in new window (will not be logged)"
|
1683 |
+
msgstr ""
|
1684 |
+
|
1685 |
+
#: modules/404s/fofs-log.php:181
|
1686 |
+
msgid "Query Google for cached version of URL (opens in new window)"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: modules/404s/fofs-log.php:182
|
1690 |
+
msgid "Remove this URL from the log"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: modules/404s/fofs-log.php:185
|
1694 |
+
msgid "%s at %s"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: modules/404s/fofs-log.php:189
|
1698 |
+
msgid "View list of referring URLs"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: modules/404s/fofs-log.php:190
|
1702 |
+
msgid "View list of user agents"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: modules/404s/fofs-log.php:200
|
1706 |
+
msgid "Referring URLs"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
|
1710 |
+
msgid "Hide list"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: modules/404s/fofs-log.php:252
|
1714 |
+
msgid "Are you sure you want to delete all 404 log entries?"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: modules/404s/fofs-log.php:254
|
1718 |
+
msgid "Clear Log"
|
|
|
|
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: modules/404s/fofs-settings.php:16
|
1722 |
+
msgid "404 Monitor Settings"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
+
#: modules/404s/fofs-settings.php:37
|
1726 |
+
msgid "Continue monitoring for new 404 errors"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
+
#: modules/404s/fofs-settings.php:37
|
1730 |
+
msgid "Monitoring Settings"
|
|
|
|
|
1731 |
msgstr ""
|
1732 |
|
1733 |
+
#: modules/404s/fofs-settings.php:39
|
1734 |
+
msgid "Only log these types of 404 errors:"
|
|
|
|
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: modules/404s/fofs-settings.php:40
|
1738 |
+
msgid "404s generated by search engine spiders"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: modules/404s/fofs-settings.php:41
|
1742 |
+
msgid "404s with referring URLs"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: modules/404s/fofs-settings.php:42
|
1746 |
+
msgid "Log Restrictions"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: modules/404s/fofs-settings.php:43
|
1750 |
+
msgid "Maximum Log Entries"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: modules/404s/fofs-settings.php:44
|
1754 |
+
msgid "URLs to Ignore"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: modules/404s/fofs-settings.php:44
|
1758 |
+
msgid "(Use * as wildcard)"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: modules/slugs/slugs.php:12
|
1762 |
+
msgid "Slug Optimizer"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: modules/slugs/slugs.php:16
|
1766 |
+
msgid "Words to Remove"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:20
|
1770 |
+
msgid "Link Mask Generator"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:27
|
1774 |
+
msgid "Alias Directory"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:29
|
1778 |
+
msgid "Nofollow aliased links"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:29
|
1782 |
+
msgid "Link Attributes"
|
|
|
|
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:49
|
1786 |
+
msgid "Link Masks:"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:52
|
1790 |
+
msgid "URL"
|
|
|
|
|
|
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:52
|
1794 |
+
msgid "Mask URL"
|
|
|
|
|
|
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:83
|
1798 |
msgid ""
|
1799 |
+
"You can stop search engines from following a link by typing in a mask for "
|
1800 |
+
"its URL."
|
|
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:160
|
1804 |
+
msgid "Added by Link Alias Generator (LAG) module"
|
|
|
|
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:171
|
1808 |
+
msgid "End LAG"
|
|
|
|
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: modules/rich-snippets/rich-snippets.php:12
|
1812 |
+
msgid "Rich Snippet Creator"
|
|
|
|
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: modules/rich-snippets/rich-snippets.php:17
|
1816 |
+
msgid ""
|
1817 |
+
"Reviews\n"
|
1818 |
+
"Review"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: modules/rich-snippets/rich-snippets.php:28
|
1822 |
+
msgid "Data Format"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
+
#: modules/rich-snippets/rich-snippets.php:29
|
1826 |
+
msgid "Categories/Tags That Indicate Reviews"
|
|
|
|
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: modules/rich-snippets/rich-snippets.php:37
|
1830 |
+
msgid "Microformats (recommended)"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: modules/rich-snippets/rich-snippets.php:43
|
1834 |
+
msgid "HTML5 Microdata"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: modules/rich-snippets/rich-snippets.php:49
|
1838 |
+
msgid "RDFa"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: modules/rich-snippets/rich-snippets.php:62
|
1842 |
+
#: modules/rich-snippets/rich-snippets.php:224
|
1843 |
+
msgid "Review"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: modules/rich-snippets/rich-snippets.php:70
|
1847 |
+
msgid "Item Reviewed"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: modules/rich-snippets/rich-snippets.php:78
|
1851 |
+
msgid "Star Rating"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: modules/rich-snippets/rich-snippets.php:83
|
1855 |
+
msgid "Review Author"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: modules/rich-snippets/rich-snippets.php:89
|
1859 |
+
msgid "Date Reviewed"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: modules/rich-snippets/rich-snippets.php:223
|
1863 |
+
#: modules/rich-snippets/rich-snippets.php:232
|
1864 |
+
msgid "None"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: modules/rich-snippets/rich-snippets.php:225
|
1868 |
+
msgid "Rich Snippet Type:"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: modules/rich-snippets/rich-snippets.php:229
|
1872 |
+
msgid "Name of Reviewed Item:"
|
|
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: modules/rich-snippets/rich-snippets.php:233
|
1876 |
+
msgid "0.5 stars"
|
|
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: modules/rich-snippets/rich-snippets.php:234
|
1880 |
+
msgid "1 star"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: modules/rich-snippets/rich-snippets.php:235
|
1884 |
+
msgid "1.5 stars"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: modules/rich-snippets/rich-snippets.php:236
|
1888 |
+
msgid "2 stars"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: modules/rich-snippets/rich-snippets.php:237
|
1892 |
+
msgid "2.5 stars"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: modules/rich-snippets/rich-snippets.php:238
|
1896 |
+
msgid "3 stars"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: modules/rich-snippets/rich-snippets.php:239
|
1900 |
+
msgid "3.5 stars"
|
|
|
|
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: modules/rich-snippets/rich-snippets.php:240
|
1904 |
+
msgid "4 stars"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: modules/rich-snippets/rich-snippets.php:241
|
1908 |
+
msgid "4.5 stars"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: modules/rich-snippets/rich-snippets.php:242
|
1912 |
+
msgid "5 stars"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: modules/rich-snippets/rich-snippets.php:243
|
1916 |
+
msgid "Star Rating for Reviewed Item:"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: modules/sharing-buttons/sharing-buttons.php:12
|
1920 |
+
msgid "Sharing Facilitator"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: modules/sharing-buttons/sharing-buttons.php:25
|
1924 |
+
msgid "Bookmark and Share"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: modules/sharing-buttons/sharing-buttons.php:39
|
1928 |
+
msgid "Which provider would you like to use for your sharing buttons?"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: modules/sharing-buttons/sharing-buttons.php:41
|
1932 |
+
msgid "None; disable sharing buttons"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: modules/sharing-buttons/sharing-buttons.php:42
|
1936 |
+
msgid "Use the ShareThis button"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: modules/sharing-buttons/sharing-buttons.php:43
|
1940 |
+
msgid "Use the AddThis button"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: modules/autolinks/footer-autolinks-settings.php:16
|
1944 |
+
msgid "Footer Deeplink Juggernaut Settings"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: modules/autolinks/footer-autolinks-settings.php:17
|
1948 |
+
msgid "Footer Link Settings"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: modules/autolinks/footer-autolinks-settings.php:28
|
1952 |
+
msgid "HTML Formats"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: modules/autolinks/footer-autolinks-settings.php:31
|
1956 |
+
msgid "Link Section Format"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: modules/autolinks/footer-autolinks-settings.php:32
|
1960 |
+
msgid "Link Format"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: modules/autolinks/footer-autolinks-settings.php:34
|
1964 |
+
msgid "Link Separator"
|
|
|
|
|
|
|
|
|
|
|
|
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: modules/autolinks/footer-autolinks.php:16
|
1968 |
+
msgid "Footer Deeplink Juggernaut"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: modules/autolinks/footer-autolinks.php:17
|
1972 |
+
msgid "Footer Links"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: modules/autolinks/footer-autolinks.php:133
|
1976 |
+
#: modules/autolinks/content-autolinks.php:201
|
1977 |
msgid ""
|
1978 |
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
1979 |
"a certain word or phrase in your post/page content to a URL you specify."
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: modules/autolinks/footer-autolinks.php:165
|
1983 |
+
#: modules/autolinks/content-autolinks.php:252
|
1984 |
msgid "Edit Existing Links"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: modules/autolinks/footer-autolinks.php:169
|
1988 |
+
#: modules/autolinks/content-autolinks.php:256
|
1989 |
msgid "Add a New Link"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: modules/autolinks/footer-autolinks.php:177
|
1993 |
+
msgid "Link Location (optional)"
|
1994 |
+
msgstr ""
|
1995 |
+
|
1996 |
+
#: modules/autolinks/footer-autolinks.php:179
|
1997 |
+
#: modules/autolinks/content-autolinks.php:264
|
1998 |
msgid "Anchor Text"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: modules/autolinks/footer-autolinks.php:180
|
2002 |
+
#: modules/autolinks/content-autolinks.php:265
|
2003 |
msgid "Destination"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: modules/autolinks/footer-autolinks.php:181
|
2007 |
+
#: modules/autolinks/content-autolinks.php:266
|
2008 |
msgid "Title Attribute"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: modules/autolinks/footer-autolinks.php:182
|
2012 |
+
#: modules/autolinks/content-autolinks.php:267
|
2013 |
msgid "Options"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: modules/autolinks/footer-autolinks.php:184
|
2017 |
+
#: modules/autolinks/content-autolinks.php:269
|
2018 |
msgid "Delete"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: modules/autolinks/footer-autolinks.php:205
|
2022 |
+
msgid "Match child content"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: modules/autolinks/footer-autolinks.php:207
|
2026 |
+
msgid "Negative match"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: modules/autolinks/footer-autolinks.php:220
|
2030 |
+
#: modules/autolinks/content-autolinks.php:295
|
2031 |
+
msgid "New window"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: modules/autolinks/autolinks.php:11
|
2035 |
+
msgid "Deeplink Juggernaut"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: modules/autolinks/autolinks.php:18
|
2039 |
msgid ""
|
2040 |
+
"Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
|
2041 |
+
"(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
|
2042 |
+
"WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your "
|
2043 |
+
"webhost. In the meantime, you can return to an older version of Deeplink "
|
2044 |
+
"Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
|
2045 |
+
"a> to SEO Ultimate 5.9."
|
|
|
2046 |
msgstr ""
|
2047 |
|
2048 |
#: modules/autolinks/content-autolinks-settings.php:16
|
2099 |
msgid "Siloing"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: modules/autolinks/content-autolinks.php:16
|
2103 |
+
msgid "Content Deeplink Juggernaut"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: modules/autolinks/content-autolinks.php:17
|
2107 |
+
msgid "Content Links"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: modules/autolinks/content-autolinks.php:359
|
2111 |
+
msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: modules/autolinks/content-autolinks.php:360
|
2115 |
+
msgid "Don’t add autolinks to anchor texts found in this post."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: modules/autolinks/content-autolinks.php:360
|
2119 |
+
msgid "Autolink Exclusion:"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: modules/autolinks/content-autolinks.php:365
|
2123 |
msgid ""
|
2124 |
+
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
2125 |
+
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
2126 |
+
"other posts and link it to this post. For example, if the post you’re "
|
2127 |
+
"editing is about “blue widgets,” you could type “blue "
|
2128 |
+
"widgets” into the “Incoming Autolink Anchors” box and "
|
2129 |
+
"Deeplink Juggernaut will automatically build internal links to this post "
|
2130 |
+
"with that anchor text (assuming other posts contain that text)."
|
|
|
|
|
|
|
|
|
|
|
2131 |
msgstr ""
|
2132 |
|
2133 |
#: includes/jlwp/functions.php:60
|