Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 6.7 |
Comparing to | |
See all releases |
Code changes from version 6.6 to 6.7
- includes/jlfunctions/jlfunctions.php +1 -1
- includes/jlfunctions/num.php +25 -0
- modules/autolinks/autolinks.css +4 -0
- modules/autolinks/content-autolinks-settings.php +9 -2
- modules/autolinks/content-autolinks.php +117 -51
- modules/class.su-module.php +6 -3
- modules/modules/modules.css +1 -1
- modules/modules/modules.php +1 -1
- readme.txt +15 -5
- seo-ultimate.php +4 -4
- seo-ultimate.pot +931 -912
includes/jlfunctions/jlfunctions.php
CHANGED
@@ -4,7 +4,7 @@ JLFunctions Library
|
|
4 |
Copyright (c)2009-2011 John Lamansky
|
5 |
*/
|
6 |
|
7 |
-
foreach (array('arr', 'date', 'html', 'io', 'md', 'str', 'url', 'web') as $jlfuncfile) {
|
8 |
include dirname(__FILE__)."/$jlfuncfile.php";
|
9 |
}
|
10 |
|
4 |
Copyright (c)2009-2011 John Lamansky
|
5 |
*/
|
6 |
|
7 |
+
foreach (array('arr', 'date', 'html', 'io', 'md', 'num', 'str', 'url', 'web') as $jlfuncfile) {
|
8 |
include dirname(__FILE__)."/$jlfuncfile.php";
|
9 |
}
|
10 |
|
includes/jlfunctions/num.php
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
JLFunctions Number Class
|
4 |
+
Copyright (c)2011 John Lamansky
|
5 |
+
*/
|
6 |
+
|
7 |
+
class sunum {
|
8 |
+
|
9 |
+
function lowest() {
|
10 |
+
$numbers = func_get_args();
|
11 |
+
$numbers = array_values($numbers);
|
12 |
+
|
13 |
+
if (count($numbers)) {
|
14 |
+
|
15 |
+
if (is_array($numbers[0]))
|
16 |
+
$numbers = $numbers[0];
|
17 |
+
|
18 |
+
if (array_walk($numbers, 'intval')) {
|
19 |
+
sort($numbers, SORT_NUMERIC);
|
20 |
+
return reset($numbers);
|
21 |
+
}
|
22 |
+
}
|
23 |
+
return false;
|
24 |
+
}
|
25 |
+
}
|
modules/autolinks/autolinks.css
CHANGED
@@ -21,6 +21,10 @@
|
|
21 |
width: 20em;
|
22 |
}
|
23 |
|
|
|
|
|
|
|
|
|
24 |
#su-autolinks table.widefat td.su-link-options {
|
25 |
width: 8em;
|
26 |
}
|
21 |
width: 20em;
|
22 |
}
|
23 |
|
24 |
+
#su-autolinks table.widefat td.su-link-sitewide-lpa {
|
25 |
+
width: 5em;
|
26 |
+
}
|
27 |
+
|
28 |
#su-autolinks table.widefat td.su-link-options {
|
29 |
width: 8em;
|
30 |
}
|
modules/autolinks/content-autolinks-settings.php
CHANGED
@@ -19,8 +19,10 @@ class SU_ContentAutolinksSettings extends SU_Module {
|
|
19 |
function get_default_settings() {
|
20 |
return array(
|
21 |
'enable_self_links' => false
|
|
|
22 |
, 'limit_lpp_value' => 5
|
23 |
, 'limit_lpa_value' => 2
|
|
|
24 |
, 'limit_sitewide_lpa_value' => 50
|
25 |
, 'linkfree_tags' => 'code,pre,kbd,h1,h2,h3,h4,h5,h6'
|
26 |
);
|
@@ -29,12 +31,17 @@ class SU_ContentAutolinksSettings extends SU_Module {
|
|
29 |
function admin_page_contents() {
|
30 |
$this->admin_form_table_start();
|
31 |
|
32 |
-
$this->
|
|
|
|
|
|
|
33 |
|
34 |
$this->checkboxes(array(
|
35 |
-
'
|
|
|
36 |
, 'limit_lpa' => __('Don’t link the same anchor text any more than %d times per post/page/etc.', 'seo-ultimate')
|
37 |
, 'limit_sitewide_lpa' => __('Don’t link the same anchor text any more than %d times across my entire site.', 'seo-ultimate')
|
|
|
38 |
), __('Quantity Restrictions', 'seo-ultimate'));
|
39 |
|
40 |
$this->textbox('linkfree_tags', __('Don’t add autolinks to text within these HTML tags <em>(separate with commas)</em>:', 'seo-ultimate'), $this->get_default_setting('linkfree_tags'), __('Tag Restrictions', 'seo-ultimate'));
|
19 |
function get_default_settings() {
|
20 |
return array(
|
21 |
'enable_self_links' => false
|
22 |
+
, 'enable_current_url_links' => $this->get_setting('enable_self_links', false)
|
23 |
, 'limit_lpp_value' => 5
|
24 |
, 'limit_lpa_value' => 2
|
25 |
+
, 'limit_lpu_value' => 1
|
26 |
, 'limit_sitewide_lpa_value' => 50
|
27 |
, 'linkfree_tags' => 'code,pre,kbd,h1,h2,h3,h4,h5,h6'
|
28 |
);
|
31 |
function admin_page_contents() {
|
32 |
$this->admin_form_table_start();
|
33 |
|
34 |
+
$this->checkboxes(array(
|
35 |
+
'enable_self_links' => __('Allow posts to link to themselves.', 'seo-ultimate')
|
36 |
+
, 'enable_current_url_links' => __('Allow posts to link to the URL by which the visitor is accessing the post.', 'seo-ultimate')
|
37 |
+
), __('Self-Linking', 'seo-ultimate'));
|
38 |
|
39 |
$this->checkboxes(array(
|
40 |
+
'enable_link_limits' => __('Enable per-link customization of quantity limits.', 'seo-ultimate')
|
41 |
+
, 'limit_lpp' => __('Don’t add any more than %d autolinks per post/page/etc.', 'seo-ultimate')
|
42 |
, 'limit_lpa' => __('Don’t link the same anchor text any more than %d times per post/page/etc.', 'seo-ultimate')
|
43 |
, 'limit_sitewide_lpa' => __('Don’t link the same anchor text any more than %d times across my entire site.', 'seo-ultimate')
|
44 |
+
, 'limit_lpu' => __('Don’t link to the same destination any more than %d times per post/page/etc.', 'seo-ultimate')
|
45 |
), __('Quantity Restrictions', 'seo-ultimate'));
|
46 |
|
47 |
$this->textbox('linkfree_tags', __('Don’t add autolinks to text within these HTML tags <em>(separate with commas)</em>:', 'seo-ultimate'), $this->get_default_setting('linkfree_tags'), __('Tag Restrictions', 'seo-ultimate'));
|
modules/autolinks/content-autolinks.php
CHANGED
@@ -37,20 +37,33 @@ class SU_ContentAutolinks extends SU_Module {
|
|
37 |
|
38 |
function autolink_content($content) {
|
39 |
|
40 |
-
if ($this->get_postmeta('disable_autolinks')) return $content;
|
41 |
-
|
42 |
$links = $this->get_setting('links', array());
|
43 |
if (!count($links)) return $content;
|
44 |
|
45 |
suarr::vklrsort($links, 'anchor');
|
|
|
46 |
|
47 |
-
|
48 |
-
$
|
|
|
|
|
49 |
|
50 |
return $content;
|
51 |
}
|
52 |
|
53 |
-
function _autolink_content($content, $links, $limit, &$count, $round=1) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
$limit_enabled = $this->get_setting('limit_lpp', false);
|
55 |
if ($limit_enabled && $limit < 1) return $content;
|
56 |
$oldlimit = $limit;
|
@@ -58,6 +71,9 @@ class SU_ContentAutolinks extends SU_Module {
|
|
58 |
$lpa_limit_enabled = $this->get_setting('limit_lpa', false);
|
59 |
$lpa_limit = $lpa_limit_enabled ? $this->get_setting('limit_lpa_value', 5) : -1;
|
60 |
|
|
|
|
|
|
|
61 |
$from_post_type = get_post_type();
|
62 |
$dest_limit = $from_post_type ? (bool)$this->get_setting('dest_limit_' . $from_post_type, false) : false;
|
63 |
$dest_limit_taxonomies = array();
|
@@ -69,16 +85,16 @@ class SU_ContentAutolinks extends SU_Module {
|
|
69 |
}
|
70 |
}
|
71 |
|
72 |
-
$post = get_post(
|
73 |
|
|
|
74 |
foreach ($links as $data) {
|
75 |
-
|
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'];
|
@@ -115,7 +131,13 @@ class SU_ContentAutolinks extends SU_Module {
|
|
115 |
else
|
116 |
$url = $this->jlsuggest_value_to_url($to_id ? "obj_$type/$to_id" : "obj_$type");
|
117 |
|
118 |
-
if (!$this->get_setting('
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
continue;
|
120 |
|
121 |
$rel = $data['nofollow'] ? ' rel="nofollow"' : '';
|
@@ -126,18 +148,33 @@ class SU_ContentAutolinks extends SU_Module {
|
|
126 |
|
127 |
$link = "<a href=\"$a_url\"$title$rel$target>$1</a>";
|
128 |
|
129 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
$count += $new_count;
|
131 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
if ($limit_enabled) {
|
133 |
$limit -= $new_count;
|
134 |
if ($limit < 1) return $content;
|
135 |
}
|
136 |
}
|
|
|
|
|
137 |
}
|
138 |
|
139 |
if ($limit_enabled && $limit < $oldlimit && $round < $lpa_limit)
|
140 |
-
$content = $this->_autolink_content($content, $links, $limit, $count, $round+1);
|
141 |
|
142 |
return $content;
|
143 |
}
|
@@ -154,40 +191,54 @@ class SU_ContentAutolinks extends SU_Module {
|
|
154 |
}
|
155 |
|
156 |
function update_max_post_dates() {
|
157 |
-
if (!$this->get_setting('limit_sitewide_lpa', false))
|
158 |
-
return;
|
159 |
|
160 |
-
$
|
161 |
-
$
|
|
|
162 |
|
163 |
global $wpdb;
|
164 |
|
165 |
$links = $this->get_setting('links', array());
|
|
|
|
|
|
|
166 |
$new_links = array();
|
167 |
|
|
|
168 |
foreach ($links as $link_data) {
|
169 |
|
170 |
-
$link_data['
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
|
177 |
-
$
|
178 |
-
|
179 |
|
180 |
-
$
|
181 |
-
|
|
|
|
|
182 |
|
183 |
-
$count
|
184 |
-
|
185 |
-
|
186 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
}
|
188 |
}
|
189 |
|
190 |
$new_links[] = $link_data;
|
|
|
191 |
}
|
192 |
|
193 |
$this->update_setting('links', $new_links);
|
@@ -235,13 +286,16 @@ class SU_ContentAutolinks extends SU_Module {
|
|
235 |
|
236 |
$title = stripslashes($_POST["link_{$i}_title"]);
|
237 |
|
238 |
-
$
|
|
|
|
|
|
|
239 |
|
240 |
$nofollow = isset($_POST["link_{$i}_nofollow"]) ? (intval($_POST["link_{$i}_nofollow"]) == 1) : false;
|
241 |
$delete = isset($_POST["link_{$i}_delete"]) ? (intval($_POST["link_{$i}_delete"]) == 1) : false;
|
242 |
|
243 |
if (!$delete && (strlen($anchor) || $to_id))
|
244 |
-
$links[] = compact('anchor', 'to_type', 'to_id', 'title', 'nofollow', 'target');
|
245 |
}
|
246 |
$this->update_setting('links', $links);
|
247 |
|
@@ -261,14 +315,19 @@ class SU_ContentAutolinks extends SU_Module {
|
|
261 |
|
262 |
function content_links_form($guid, $start_id = 0, $links, $delete_option = true) {
|
263 |
|
|
|
|
|
|
|
264 |
//Set headers
|
265 |
-
$headers = array(
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
|
|
|
|
272 |
|
273 |
//Begin table; output headers
|
274 |
$this->admin_wftable_start($headers);
|
@@ -277,25 +336,32 @@ class SU_ContentAutolinks extends SU_Module {
|
|
277 |
$i = $start_id;
|
278 |
foreach ($links as $link) {
|
279 |
|
280 |
-
if (!isset($link['anchor']))
|
281 |
-
if (!isset($link['to_id']))
|
282 |
-
if (!isset($link['to_type']))
|
283 |
-
if (!isset($link['title']))
|
284 |
-
if (!isset($link['
|
285 |
-
if (!isset($link['
|
|
|
286 |
|
287 |
$to_type_arr = array_pad(explode('_', $link['to_type'], 2), 2, null);
|
288 |
$jlsuggest_box_params = array($to_type_arr[0], $to_type_arr[1], $link['to_id']);
|
289 |
|
290 |
-
$cells = array(
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
$this->get_input_element('checkbox', "link_{$i}_nofollow", $link['nofollow'], str_replace(' ', ' ', __('Nofollow', 'seo-ultimate')))
|
296 |
.'<br />'
|
297 |
-
.$this->get_input_element('checkbox', "link_{$i}_target", $link['target'] == 'blank', str_replace(' ', ' ', __('New window', 'seo-ultimate')))
|
298 |
-
);
|
299 |
if ($delete_option)
|
300 |
$cells['link-delete'] = $this->get_input_element('checkbox', "link_{$i}_delete");
|
301 |
|
37 |
|
38 |
function autolink_content($content) {
|
39 |
|
|
|
|
|
40 |
$links = $this->get_setting('links', array());
|
41 |
if (!count($links)) return $content;
|
42 |
|
43 |
suarr::vklrsort($links, 'anchor');
|
44 |
+
$links = array_values($links);
|
45 |
|
46 |
+
//Dummy vars; needed for PHP4 compat
|
47 |
+
$count = 0;
|
48 |
+
$link_count = array();
|
49 |
+
$content = $this->_autolink_content(suwp::get_post_id(), $content, $links, $this->get_setting('limit_lpp_value', 5), $count, $link_count);
|
50 |
|
51 |
return $content;
|
52 |
}
|
53 |
|
54 |
+
function _autolink_content($id, $content, $links, $limit, &$count, &$link_count, $round=1, $linked_urls=array(), $context='the_content') {
|
55 |
+
$links = array_values($links);
|
56 |
+
$count = 0;
|
57 |
+
|
58 |
+
if (!is_array($link_count)) $link_count = array();
|
59 |
+
$i=0; foreach ($links as $data) {
|
60 |
+
if (!isset($link_count[$i]))
|
61 |
+
$link_count[$i] = 0;
|
62 |
+
$i++;
|
63 |
+
}
|
64 |
+
|
65 |
+
if ($this->get_postmeta('disable_autolinks', $id)) return $content;
|
66 |
+
|
67 |
$limit_enabled = $this->get_setting('limit_lpp', false);
|
68 |
if ($limit_enabled && $limit < 1) return $content;
|
69 |
$oldlimit = $limit;
|
71 |
$lpa_limit_enabled = $this->get_setting('limit_lpa', false);
|
72 |
$lpa_limit = $lpa_limit_enabled ? $this->get_setting('limit_lpa_value', 5) : -1;
|
73 |
|
74 |
+
$lpu_limit_enabled = $this->get_setting('limit_lpu', false);
|
75 |
+
$lpu_limit = $lpu_limit_enabled ? $this->get_setting('limit_lpu_value', 1) : -1;
|
76 |
+
|
77 |
$from_post_type = get_post_type();
|
78 |
$dest_limit = $from_post_type ? (bool)$this->get_setting('dest_limit_' . $from_post_type, false) : false;
|
79 |
$dest_limit_taxonomies = array();
|
85 |
}
|
86 |
}
|
87 |
|
88 |
+
$post = get_post($id);
|
89 |
|
90 |
+
$i=0;
|
91 |
foreach ($links as $data) {
|
|
|
92 |
$anchor = $data['anchor'];
|
93 |
$to_id = su_esc_attr($data['to_id']);
|
94 |
|
95 |
if (strlen(trim($anchor)) && $to_id !== 0 && $to_id != 'http://') {
|
96 |
|
97 |
+
if ($context == 'the_content' && ($this->get_setting('limit_sitewide_lpa', false) || ($this->get_setting('enable_link_limits', false) && $data['sitewide_lpa'] !== false)) && 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']))
|
98 |
continue;
|
99 |
|
100 |
$type = $data['to_type'];
|
131 |
else
|
132 |
$url = $this->jlsuggest_value_to_url($to_id ? "obj_$type/$to_id" : "obj_$type");
|
133 |
|
134 |
+
if (!$this->get_setting('enable_current_url_links', false) && $url == suurl::current())
|
135 |
+
continue;
|
136 |
+
|
137 |
+
if (!$this->get_setting('enable_self_links', false) && is_singular() && $url == get_permalink())
|
138 |
+
continue;
|
139 |
+
|
140 |
+
if ($lpu_limit_enabled && isset($linked_urls[$url]) && $linked_urls[$url] >= $lpu_limit)
|
141 |
continue;
|
142 |
|
143 |
$rel = $data['nofollow'] ? ' rel="nofollow"' : '';
|
148 |
|
149 |
$link = "<a href=\"$a_url\"$title$rel$target>$1</a>";
|
150 |
|
151 |
+
$lpa_lpu_limits = array();
|
152 |
+
if ($lpa_limit_enabled) $lpa_lpu_limits[] = $lpa_limit;
|
153 |
+
if ($lpu_limit_enabled) $lpa_lpu_limits[] = $lpu_limit;
|
154 |
+
$lpa_lpu_limits = count($lpa_lpu_limits) ? sunum::lowest($lpa_lpu_limits) : -1;
|
155 |
+
|
156 |
+
$content = sustr::htmlsafe_str_replace($h_anchor, $link, $content, $limit_enabled ? 1 : $lpa_lpu_limits, $new_count, $this->get_linkfree_tags());
|
157 |
+
$link_count[$i] += $new_count;
|
158 |
$count += $new_count;
|
159 |
|
160 |
+
if ($lpu_limit_enabled) {
|
161 |
+
if (isset($linked_urls[$url]))
|
162 |
+
$linked_urls[$url] += $new_count;
|
163 |
+
else
|
164 |
+
$linked_urls[$url] = $new_count;
|
165 |
+
}
|
166 |
+
|
167 |
if ($limit_enabled) {
|
168 |
$limit -= $new_count;
|
169 |
if ($limit < 1) return $content;
|
170 |
}
|
171 |
}
|
172 |
+
|
173 |
+
$i++;
|
174 |
}
|
175 |
|
176 |
if ($limit_enabled && $limit < $oldlimit && $round < $lpa_limit)
|
177 |
+
$content = $this->_autolink_content($id, $content, $links, $limit, $count, $link_count, $round+1, $linked_urls, $context);
|
178 |
|
179 |
return $content;
|
180 |
}
|
191 |
}
|
192 |
|
193 |
function update_max_post_dates() {
|
|
|
|
|
194 |
|
195 |
+
$sitewide_lpa_enabled = $this->get_setting('limit_sitewide_lpa', false);
|
196 |
+
$sitewide_lpa = intval($this->get_setting('limit_sitewide_lpa_value', false));
|
197 |
+
$lpp = $this->get_setting('limit_lpp_value', 5); //No need to check limit_lpp, as _autolink_content already does this
|
198 |
|
199 |
global $wpdb;
|
200 |
|
201 |
$links = $this->get_setting('links', array());
|
202 |
+
suarr::vklrsort($links, 'anchor');
|
203 |
+
$links = array_values($links);
|
204 |
+
|
205 |
$new_links = array();
|
206 |
|
207 |
+
$i=0;
|
208 |
foreach ($links as $link_data) {
|
209 |
|
210 |
+
if ($this->get_setting('enable_link_limits', false) && isset($link_data['sitewide_lpa']) && $link_data['sitewide_lpa'] !== false)
|
211 |
+
$link_sitewide_lpa = intval($link_data['sitewide_lpa']);
|
212 |
+
elseif ($sitewide_lpa_enabled)
|
213 |
+
$link_sitewide_lpa = $sitewide_lpa;
|
214 |
+
else
|
215 |
+
$link_sitewide_lpa = false;
|
216 |
|
217 |
+
if ($link_sitewide_lpa !== false) {
|
218 |
+
$link_data['max_post_date'] = false;
|
219 |
|
220 |
+
$posts_with_anchor = $wpdb->get_results( $wpdb->prepare(
|
221 |
+
"SELECT ID, post_content, post_date_gmt FROM $wpdb->posts WHERE post_status = 'publish' AND LOWER(post_content) LIKE %s ORDER BY post_date_gmt ASC"
|
222 |
+
, '%' . like_escape(strtolower($link_data['anchor'])) . '%'
|
223 |
+
));
|
224 |
|
225 |
+
$count = 0;
|
226 |
+
foreach ($posts_with_anchor as $post_with_anchor) {
|
227 |
+
|
228 |
+
$total_count = 0; //Not used
|
229 |
+
$link_count = array();
|
230 |
+
$this->_autolink_content($post_with_anchor->ID, $post_with_anchor->post_content, $links, $lpp, $total_count, $link_count, 1, array(), 'update_max_post_dates');
|
231 |
+
|
232 |
+
$count += $link_count[$i];
|
233 |
+
if ($count >= $link_sitewide_lpa) {
|
234 |
+
$link_data['max_post_date'] = $post_with_anchor->post_date_gmt;
|
235 |
+
break;
|
236 |
+
}
|
237 |
}
|
238 |
}
|
239 |
|
240 |
$new_links[] = $link_data;
|
241 |
+
$i++;
|
242 |
}
|
243 |
|
244 |
$this->update_setting('links', $new_links);
|
286 |
|
287 |
$title = stripslashes($_POST["link_{$i}_title"]);
|
288 |
|
289 |
+
$sitewide_lpa = sustr::preg_filter('0-9', strval($_POST["link_{$i}_sitewide_lpa"]));
|
290 |
+
$sitewide_lpa = ($sitewide_lpa === '') ? false : intval($sitewide_lpa);
|
291 |
+
|
292 |
+
$target = empty($_POST["link_{$i}_target"]) ? 'self' : 'blank';
|
293 |
|
294 |
$nofollow = isset($_POST["link_{$i}_nofollow"]) ? (intval($_POST["link_{$i}_nofollow"]) == 1) : false;
|
295 |
$delete = isset($_POST["link_{$i}_delete"]) ? (intval($_POST["link_{$i}_delete"]) == 1) : false;
|
296 |
|
297 |
if (!$delete && (strlen($anchor) || $to_id))
|
298 |
+
$links[] = compact('anchor', 'to_type', 'to_id', 'title', 'sitewide_lpa', 'nofollow', 'target');
|
299 |
}
|
300 |
$this->update_setting('links', $links);
|
301 |
|
315 |
|
316 |
function content_links_form($guid, $start_id = 0, $links, $delete_option = true) {
|
317 |
|
318 |
+
$link_limits_enabled = $this->get_setting('enable_link_limits', false, null, true);
|
319 |
+
$global_sitewide_lpa = $this->get_setting('limit_sitewide_lpa', false, null, true) ? $this->get_setting('limit_sitewide_lpa_value', 50, null, true) : null;
|
320 |
+
|
321 |
//Set headers
|
322 |
+
$headers = array();
|
323 |
+
$headers['link-anchor'] = __('Anchor Text', 'seo-ultimate');
|
324 |
+
$headers['link-to'] = __('Destination', 'seo-ultimate');
|
325 |
+
$headers['link-title'] = __('Title Attribute', 'seo-ultimate');
|
326 |
+
if ($link_limits_enabled)
|
327 |
+
$headers['link-sitewide-lpa'] = __('Site Cap', 'seo-ultimate');
|
328 |
+
$headers['link-options'] = __('Options', 'seo-ultimate');
|
329 |
+
if ($delete_option)
|
330 |
+
$headers['link-delete'] = __('Delete', 'seo-ultimate');
|
331 |
|
332 |
//Begin table; output headers
|
333 |
$this->admin_wftable_start($headers);
|
336 |
$i = $start_id;
|
337 |
foreach ($links as $link) {
|
338 |
|
339 |
+
if (!isset($link['anchor'])) $link['anchor'] = '';
|
340 |
+
if (!isset($link['to_id'])) $link['to_id'] = '';
|
341 |
+
if (!isset($link['to_type'])) $link['to_type'] = 'url';
|
342 |
+
if (!isset($link['title'])) $link['title'] = '';
|
343 |
+
if (!isset($link['sitewide_lpa'])) $link['sitewide_lpa'] = '';
|
344 |
+
if (!isset($link['nofollow'])) $link['nofollow'] = false;
|
345 |
+
if (!isset($link['target'])) $link['target'] = '';
|
346 |
|
347 |
$to_type_arr = array_pad(explode('_', $link['to_type'], 2), 2, null);
|
348 |
$jlsuggest_box_params = array($to_type_arr[0], $to_type_arr[1], $link['to_id']);
|
349 |
|
350 |
+
$cells = array();
|
351 |
+
$cells['link-anchor'] = $this->get_input_element('textbox', "link_{$i}_anchor", $link['anchor']);
|
352 |
+
$cells['link-to'] = $this->get_jlsuggest_box("link_{$i}_to", $jlsuggest_box_params);
|
353 |
+
$cells['link-title'] = $this->get_input_element('textbox', "link_{$i}_title", $link['title']);
|
354 |
+
|
355 |
+
if ($link_limits_enabled) {
|
356 |
+
$cells['link-sitewide-lpa'] = $this->get_input_element('textbox', "link_{$i}_sitewide_lpa", $link['sitewide_lpa'], $global_sitewide_lpa);
|
357 |
+
$cells['link-options'] = '';
|
358 |
+
} else
|
359 |
+
$cells['link-options'] = $this->get_input_element('hidden', "link_{$i}_sitewide_lpa", $link['sitewide_lpa']);
|
360 |
+
|
361 |
+
$cells['link-options'] .=
|
362 |
$this->get_input_element('checkbox', "link_{$i}_nofollow", $link['nofollow'], str_replace(' ', ' ', __('Nofollow', 'seo-ultimate')))
|
363 |
.'<br />'
|
364 |
+
.$this->get_input_element('checkbox', "link_{$i}_target", $link['target'] == 'blank', str_replace(' ', ' ', __('New window', 'seo-ultimate')));
|
|
|
365 |
if ($delete_option)
|
366 |
$cells['link-delete'] = $this->get_input_element('checkbox', "link_{$i}_delete");
|
367 |
|
modules/class.su-module.php
CHANGED
@@ -693,12 +693,14 @@ class SU_Module {
|
|
693 |
* @param string|null $module The module to which the setting belongs. Defaults to the current module's settings key. Optional.
|
694 |
* @return mixed The value of the setting, or the $default variable.
|
695 |
*/
|
696 |
-
function get_setting($key, $default=null, $module=null) {
|
697 |
if (!$module) $module = $this->get_settings_key();
|
698 |
|
699 |
$msdata = (array)get_option("seo_ultimate_module_$module", array());
|
700 |
|
701 |
-
if (
|
|
|
|
|
702 |
$setting = $msdata[$key];
|
703 |
else
|
704 |
$setting = $default;
|
@@ -1328,7 +1330,8 @@ class SU_Module {
|
|
1328 |
switch ($type) {
|
1329 |
case 'textbox':
|
1330 |
$value = su_esc_editable_html($value);
|
1331 |
-
|
|
|
1332 |
break;
|
1333 |
case 'textarea':
|
1334 |
$value = su_esc_editable_html($value);
|
693 |
* @param string|null $module The module to which the setting belongs. Defaults to the current module's settings key. Optional.
|
694 |
* @return mixed The value of the setting, or the $default variable.
|
695 |
*/
|
696 |
+
function get_setting($key, $default=null, $module=null, $sneakpeak=false) {
|
697 |
if (!$module) $module = $this->get_settings_key();
|
698 |
|
699 |
$msdata = (array)get_option("seo_ultimate_module_$module", array());
|
700 |
|
701 |
+
if ($sneakpeak && $this->is_action('update'))
|
702 |
+
$setting = stripslashes(isset($_POST[$key]) ? $_POST[$key] : null);
|
703 |
+
elseif (isset($msdata[$key]))
|
704 |
$setting = $msdata[$key];
|
705 |
else
|
706 |
$setting = $default;
|
1330 |
switch ($type) {
|
1331 |
case 'textbox':
|
1332 |
$value = su_esc_editable_html($value);
|
1333 |
+
$placeholder = $extra ? " placeholder='" . su_esc_attr($extra) . "'" : '';
|
1334 |
+
return "<input name='$name'$inputid value='$value'$placeholder type='text' class='textbox regular-text' />";
|
1335 |
break;
|
1336 |
case 'textarea':
|
1337 |
$value = su_esc_editable_html($value);
|
modules/modules/modules.css
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
#su-modules td.module-status a {
|
10 |
float: left;
|
11 |
display: block;
|
12 |
-
border: 1px solid
|
13 |
padding: 0.3em 0.5em;
|
14 |
color: #999;
|
15 |
margin-right: 0.2em;
|
9 |
#su-modules td.module-status a {
|
10 |
float: left;
|
11 |
display: block;
|
12 |
+
border: 1px solid transparent;
|
13 |
padding: 0.3em 0.5em;
|
14 |
color: #999;
|
15 |
margin-right: 0.2em;
|
modules/modules/modules.php
CHANGED
@@ -120,7 +120,7 @@ STR;
|
|
120 |
if (!$hmc) $style = " style='visibility: hidden;'";
|
121 |
break;
|
122 |
case SU_MODULE_HIDDEN:
|
123 |
-
if (
|
124 |
$style = " style='visibility: hidden;'";
|
125 |
break;
|
126 |
}
|
120 |
if (!$hmc) $style = " style='visibility: hidden;'";
|
121 |
break;
|
122 |
case SU_MODULE_HIDDEN:
|
123 |
+
if ($this->plugin->call_module_func($key, 'get_menu_title', $module_menu_title) && $module_menu_title === false)
|
124 |
$style = " style='visibility: hidden;'";
|
125 |
break;
|
126 |
}
|
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.6 adds the SEO Ultimate Widgets module
|
15 |
* Version 6.5 features Deeplink Juggernaut 3.0
|
16 |
* Version 6.4 adds 3 more features to Deeplink Juggernaut
|
17 |
* Version 6.3 adds support for the new `rel="canonical"` HTTP headers
|
18 |
-
* Version 6.2 adds Silo Linking to Deeplink Juggernaut
|
19 |
|
20 |
= Features =
|
21 |
|
@@ -45,13 +45,15 @@ 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 |
-
*
|
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
|
|
|
|
|
55 |
* Apply the nofollow attribute on a per-link basis. (Perfect for automatic affiliate links.)
|
56 |
* Exclude specific posts/pages from having links added to them, if desired (e.g. contact pages, the homepage, etc.).
|
57 |
* Import/export your links as CSV files.
|
@@ -251,6 +253,14 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
251 |
|
252 |
== Changelog ==
|
253 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
= Version 6.6 (July 15, 2011) =
|
255 |
* New Module: SEO Ultimate Widgets
|
256 |
* Feature: The new "Footer Links" widget lets you display your Deeplink Juggernaut Footer Links in a widgetized footer or sidebar
|
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
|
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.7 adds 3 more features to Deeplink Juggernaut
|
15 |
* Version 6.6 adds the SEO Ultimate Widgets module
|
16 |
* Version 6.5 features Deeplink Juggernaut 3.0
|
17 |
* Version 6.4 adds 3 more features to Deeplink Juggernaut
|
18 |
* Version 6.3 adds support for the new `rel="canonical"` HTTP headers
|
|
|
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.7
|
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 |
+
* 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 a post/page can link to the same destination.
|
55 |
+
* Decide how many times each anchor is linked across your entire site, on a per-link or global basis.
|
56 |
+
* Choose whether or not posts can link to themselves and/or to the current URL with a few simple checkboxes.
|
57 |
* Apply the nofollow attribute on a per-link basis. (Perfect for automatic affiliate links.)
|
58 |
* Exclude specific posts/pages from having links added to them, if desired (e.g. contact pages, the homepage, etc.).
|
59 |
* Import/export your links as CSV files.
|
253 |
|
254 |
== Changelog ==
|
255 |
|
256 |
+
= Version 6.7 (July 16, 2011) =
|
257 |
+
* Feature: Deeplink Juggernaut now lets you specify per-link sitewide quantity caps (just go to "Content Link Settings," check "Enable per-link customization of quantity limits," click "Save Changes," and then edit "Site Cap" fields under "Content Links")
|
258 |
+
* Feature: Deeplink Juggernaut now lets you limit the number of times a post can link to the same destination
|
259 |
+
* Feature: Deeplink Juggernaut now lets you decide whether to allow posts to link to the URL by which the visitor is accessing the post
|
260 |
+
* Bugfix: Deeplink Juggernaut's sitewide link quantity restriction now takes into account the "Autolink Exclusion" checkbox in the "SEO Settings" post meta box
|
261 |
+
* Bugfix: Restored "Hidden" option for disabled modules in Module Manager (broke in 6.4)
|
262 |
+
* Bugfix: Fixed minor aesthetic issue in Module Manager that appears in WordPress 3.2
|
263 |
+
|
264 |
= Version 6.6 (July 15, 2011) =
|
265 |
* New Module: SEO Ultimate Widgets
|
266 |
* Feature: The new "Footer Links" widget lets you display your Deeplink Juggernaut Footer Links in a widgetized footer or sidebar
|
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.3');
|
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
-
define('SU_VERSION', '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.7
|
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.7
|
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.7');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/6.7');
|
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,355 +19,282 @@ msgid ""
|
|
19 |
"Ultimate to remove this notice."
|
20 |
msgstr ""
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
"SEO Ultimate
|
26 |
msgstr ""
|
27 |
|
28 |
-
#:
|
29 |
-
msgid ""
|
30 |
-
"All the modules on this page have been disabled. You can re-enable them "
|
31 |
-
"using the <a href=\"%s\">Module Manager</a>."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#:
|
35 |
-
|
36 |
-
|
|
|
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 |
-
"Are you sure you want to replace the textbox contents with this default "
|
86 |
-
"value?"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#:
|
90 |
-
msgid "
|
91 |
msgstr ""
|
92 |
|
93 |
-
#:
|
94 |
-
|
95 |
-
msgid "Blog Homepage"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#:
|
99 |
-
msgid "
|
100 |
msgstr ""
|
101 |
|
102 |
-
#:
|
103 |
-
msgid "
|
104 |
msgstr ""
|
105 |
|
106 |
-
#:
|
107 |
-
msgid "
|
108 |
msgstr ""
|
109 |
|
110 |
-
#:
|
111 |
-
msgid "
|
112 |
msgstr ""
|
113 |
|
114 |
-
#:
|
115 |
-
msgid "
|
116 |
msgstr ""
|
117 |
|
118 |
-
#:
|
119 |
msgid ""
|
120 |
-
"
|
121 |
-
"
|
122 |
-
"
|
123 |
-
"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#:
|
127 |
-
msgid "
|
128 |
msgstr ""
|
129 |
|
130 |
-
#:
|
131 |
-
msgid ""
|
132 |
-
"What should the import tool do if it tries to move over a post’s %s "
|
133 |
-
"data, but different data already exists in the corresponding SEO Ultimate "
|
134 |
-
"fields?"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: modules/class.su-
|
138 |
-
|
|
|
139 |
msgstr ""
|
140 |
|
141 |
-
#:
|
142 |
-
msgid "
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: modules/class.su-
|
146 |
-
msgid "
|
147 |
msgstr ""
|
148 |
|
149 |
-
#:
|
150 |
-
msgid "
|
151 |
msgstr ""
|
152 |
|
153 |
-
#:
|
154 |
-
msgid ""
|
155 |
-
"When the migration tool successfully copies a post’s %1$s data over to "
|
156 |
-
"SEO Ultimate, what should it do with the old %1$s data?"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#:
|
160 |
-
msgid "
|
161 |
msgstr ""
|
162 |
|
163 |
-
#:
|
164 |
-
msgid "
|
165 |
msgstr ""
|
166 |
|
167 |
-
#:
|
168 |
-
msgid "
|
169 |
msgstr ""
|
170 |
|
171 |
-
#:
|
172 |
-
msgid ""
|
173 |
-
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
174 |
-
"target=\"_blank\">backup your database</a> before proceeding!"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#:
|
178 |
-
msgid "
|
179 |
msgstr ""
|
180 |
|
181 |
-
#:
|
182 |
-
msgid "
|
183 |
msgstr ""
|
184 |
|
185 |
-
#:
|
186 |
-
msgid "
|
187 |
msgstr ""
|
188 |
|
189 |
-
#:
|
190 |
-
msgid "
|
191 |
msgstr ""
|
192 |
|
193 |
-
#:
|
194 |
-
msgid "
|
195 |
msgstr ""
|
196 |
|
197 |
-
#:
|
198 |
-
msgid "
|
199 |
-
|
200 |
-
msgstr[0] ""
|
201 |
-
msgstr[1] ""
|
202 |
-
|
203 |
-
#: modules/class.su-importmodule.php:180
|
204 |
-
msgid "Skipped one post with disabled %2$s data."
|
205 |
-
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
206 |
-
msgstr[0] ""
|
207 |
-
msgstr[1] ""
|
208 |
-
|
209 |
-
#: modules/class.su-importmodule.php:186
|
210 |
-
msgid ""
|
211 |
-
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
212 |
-
"settings you chose."
|
213 |
-
msgid_plural ""
|
214 |
-
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
215 |
-
"settings you chose."
|
216 |
-
msgstr[0] ""
|
217 |
-
msgstr[1] ""
|
218 |
-
|
219 |
-
#: modules/class.su-importmodule.php:192
|
220 |
-
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
221 |
-
msgid_plural ""
|
222 |
-
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
223 |
-
msgstr[0] ""
|
224 |
-
msgstr[1] ""
|
225 |
|
226 |
-
#:
|
227 |
-
msgid "
|
228 |
msgstr ""
|
229 |
|
230 |
-
#:
|
231 |
-
msgid ""
|
232 |
-
"Reviews\n"
|
233 |
-
"Review"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#:
|
237 |
-
msgid "
|
238 |
msgstr ""
|
239 |
|
240 |
-
#:
|
241 |
-
msgid "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#:
|
245 |
-
msgid "
|
246 |
msgstr ""
|
247 |
|
248 |
-
#:
|
249 |
-
msgid "
|
250 |
msgstr ""
|
251 |
|
252 |
-
#:
|
253 |
-
msgid "
|
254 |
msgstr ""
|
255 |
|
256 |
-
#:
|
257 |
-
|
258 |
-
msgid "Review"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#:
|
262 |
-
msgid "
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: modules/
|
266 |
-
msgid "
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: modules/
|
270 |
-
msgid "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: modules/
|
274 |
-
msgid "
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: modules/
|
278 |
-
|
279 |
-
msgid "None"
|
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/rich-snippets/rich-snippets.php:234
|
295 |
-
msgid "1 star"
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: modules/rich-snippets/rich-snippets.php:235
|
299 |
-
msgid "1.5 stars"
|
300 |
-
msgstr ""
|
301 |
-
|
302 |
-
#: modules/rich-snippets/rich-snippets.php:236
|
303 |
-
msgid "2 stars"
|
304 |
-
msgstr ""
|
305 |
-
|
306 |
-
#: modules/rich-snippets/rich-snippets.php:237
|
307 |
-
msgid "2.5 stars"
|
308 |
-
msgstr ""
|
309 |
-
|
310 |
-
#: modules/rich-snippets/rich-snippets.php:238
|
311 |
-
msgid "3 stars"
|
312 |
-
msgstr ""
|
313 |
-
|
314 |
-
#: modules/rich-snippets/rich-snippets.php:239
|
315 |
-
msgid "3.5 stars"
|
316 |
-
msgstr ""
|
317 |
-
|
318 |
-
#: modules/rich-snippets/rich-snippets.php:240
|
319 |
-
msgid "4 stars"
|
320 |
-
msgstr ""
|
321 |
-
|
322 |
-
#: modules/rich-snippets/rich-snippets.php:241
|
323 |
-
msgid "4.5 stars"
|
324 |
-
msgstr ""
|
325 |
-
|
326 |
-
#: modules/rich-snippets/rich-snippets.php:242
|
327 |
-
msgid "5 stars"
|
328 |
-
msgstr ""
|
329 |
-
|
330 |
-
#: modules/rich-snippets/rich-snippets.php:243
|
331 |
-
msgid "Star Rating for Reviewed Item:"
|
332 |
msgstr ""
|
333 |
|
334 |
-
|
335 |
-
|
|
|
|
|
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 |
-
msgid "
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: modules/
|
359 |
-
|
360 |
-
msgid "Show 100 results per page"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: modules/
|
364 |
-
|
365 |
-
msgid "Use Google’s minimal mode"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: modules/
|
369 |
-
|
370 |
-
msgid "Submit"
|
371 |
msgstr ""
|
372 |
|
373 |
#: modules/widgets/widgets.php:12
|
@@ -424,48 +351,154 @@ msgstr ""
|
|
424 |
msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: modules/
|
428 |
-
msgid "
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: modules/
|
432 |
-
msgid "
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: modules/
|
436 |
-
msgid "
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: modules/
|
440 |
-
msgid "
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: modules/
|
444 |
-
msgid "
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: modules/
|
448 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: modules/
|
452 |
-
msgid "
|
|
|
|
|
|
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: modules/
|
|
|
|
|
|
|
|
|
456 |
msgid ""
|
457 |
-
"
|
458 |
-
"
|
|
|
|
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: modules/
|
462 |
-
msgid "
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: modules/
|
466 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
467 |
msgstr ""
|
468 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
#: modules/titles/titles.php:12
|
470 |
msgid "Title Tag Rewriter"
|
471 |
msgstr ""
|
@@ -599,188 +632,240 @@ msgid ""
|
|
599 |
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: modules/
|
603 |
-
msgid "
|
|
|
|
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: modules/
|
607 |
-
msgid "
|
|
|
|
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: modules/
|
611 |
-
|
612 |
-
"
|
613 |
-
"engine tools which you can use to research multiple search queries or URLs."
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: modules/
|
617 |
-
msgid "
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: modules/
|
621 |
-
msgid "
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: modules/
|
625 |
-
msgid "
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: modules/
|
629 |
-
msgid "
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: modules/
|
633 |
-
msgid "
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: modules/
|
637 |
-
msgid ""
|
638 |
-
"Find out how many “actual” pages are competing for each query"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: modules/
|
642 |
-
msgid "
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: modules/
|
646 |
-
msgid "
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: modules/
|
650 |
-
msgid "
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
654 |
msgid ""
|
655 |
-
"
|
|
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: modules/
|
659 |
-
msgid "
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: modules/
|
663 |
-
msgid "
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: modules/
|
667 |
-
msgid "
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: modules/
|
671 |
-
msgid ""
|
672 |
-
"Find out which sites have the most relevant naming conventions for each "
|
673 |
-
"keyword"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: modules/
|
677 |
-
msgid "
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: modules/
|
681 |
-
|
|
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: modules/
|
685 |
-
msgid "
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: modules/
|
689 |
-
#: modules/
|
690 |
-
|
|
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: modules/
|
694 |
-
msgid "
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: modules/
|
698 |
-
|
699 |
-
msgid "Outbound Links"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: modules/
|
703 |
-
msgid "
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: modules/
|
707 |
-
msgid "
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: modules/
|
711 |
-
msgid "
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: modules/
|
715 |
-
msgid "
|
|
|
|
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: modules/
|
719 |
-
msgid "
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: modules/
|
723 |
-
msgid "
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: modules/
|
727 |
-
msgid "
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: modules/
|
731 |
-
msgid "
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: modules/
|
735 |
-
msgid "Category
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: modules/
|
739 |
-
msgid "Comment
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: modules/
|
743 |
-
msgid "Comment
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: modules/
|
747 |
-
msgid "Date-based
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: modules/
|
751 |
-
msgid "
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: modules/
|
755 |
-
msgid "
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: modules/
|
759 |
-
msgid "
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: modules/
|
763 |
-
msgid "
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: modules/
|
767 |
-
msgid "
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: modules/
|
771 |
-
msgid "
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: modules/
|
775 |
-
msgid "
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: modules/
|
779 |
-
msgid "
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: modules/
|
783 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
784 |
msgstr ""
|
785 |
|
786 |
#: modules/meta/meta-keywords.php:12
|
@@ -791,10 +876,6 @@ msgstr ""
|
|
791 |
msgid "Meta Keywords"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: modules/meta/meta-keywords.php:33 modules/noindex/noindex.php:43
|
795 |
-
msgid "Default Values"
|
796 |
-
msgstr ""
|
797 |
-
|
798 |
#: modules/meta/meta-keywords.php:56
|
799 |
msgid "The %d most commonly-used words"
|
800 |
msgstr ""
|
@@ -874,346 +955,323 @@ msgstr ""
|
|
874 |
msgid "Don’t cache or archive this site."
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: modules/
|
878 |
-
msgid "
|
879 |
-
msgstr ""
|
880 |
-
|
881 |
-
#: modules/meta/meta-descriptions.php:13
|
882 |
-
msgid "Meta Descriptions"
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
#: modules/meta/meta-descriptions.php:31
|
886 |
-
msgid "Meta Description"
|
887 |
-
msgstr ""
|
888 |
-
|
889 |
-
#: modules/meta/meta-descriptions.php:48
|
890 |
-
msgid "Post Description Format"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: modules/
|
894 |
-
msgid "
|
|
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: modules/
|
898 |
-
msgid "
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: modules/
|
902 |
-
msgid "
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: modules/
|
906 |
-
msgid "
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: modules/
|
910 |
-
msgid "
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: modules/
|
914 |
-
msgid "
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: modules/
|
918 |
-
msgid "
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: modules/
|
922 |
-
msgid ""
|
923 |
-
"<strong>Description</strong> — The value of the meta description tag. "
|
924 |
-
"The description will often appear underneath the title in search engine "
|
925 |
-
"results. Writing an accurate, attention-grabbing description for every post "
|
926 |
-
"is important to ensuring a good search results clickthrough rate."
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: modules/
|
930 |
-
msgid "
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: modules/
|
934 |
-
msgid "
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: modules/
|
938 |
-
msgid "
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: modules/
|
942 |
-
msgid "
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: modules/
|
946 |
-
msgid "
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: modules/
|
950 |
-
msgid ""
|
951 |
-
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
952 |
-
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
953 |
-
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
954 |
-
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
955 |
-
"to be currently installed or activated for the import to take place."
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: modules/
|
959 |
-
msgid ""
|
960 |
-
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
961 |
-
"you use an older version of AIOSP, you should update to the latest version "
|
962 |
-
"first and run AIOSP’s upgrade process."
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: modules/
|
966 |
-
msgid "
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: modules/
|
970 |
-
msgid "
|
971 |
msgstr ""
|
972 |
|
973 |
-
|
974 |
-
|
975 |
-
#: modules/sds-blog/sds-blog.php:49
|
976 |
-
msgid "SEO Design Solutions"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: modules/
|
980 |
-
msgid ""
|
981 |
-
"The search engine optimization articles below are loaded from the website of "
|
982 |
-
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
983 |
-
"an article’s title to read it."
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: modules/
|
987 |
-
msgid "
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: modules/
|
991 |
-
msgid "
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: modules/
|
995 |
-
msgid ""
|
996 |
-
"SEO Ultimate’s features are located in groups called “modules."
|
997 |
-
"” By default, most of these modules are listed in the “"
|
998 |
-
"SEO” menu on the left. Whenever you’re working with a module, "
|
999 |
-
"you can view documentation by clicking the tabs in the upper-right-hand "
|
1000 |
-
"corner of your administration screen."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: modules/
|
1004 |
msgid ""
|
1005 |
-
"The
|
1006 |
-
"
|
1007 |
-
msgstr ""
|
1008 |
-
|
1009 |
-
#: modules/modules/modules.php:47
|
1010 |
-
msgid "Modules updated."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: modules/
|
1014 |
-
msgid "
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: modules/
|
1018 |
-
msgid "
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: modules/
|
1022 |
-
msgid "
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: modules/
|
1026 |
-
msgid "
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: modules/
|
1030 |
-
msgid "
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: modules/
|
1034 |
-
msgid "
|
|
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: modules/
|
1038 |
-
msgid "
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: modules/
|
1042 |
-
msgid "
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: modules/
|
1046 |
-
msgid "
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: modules/
|
1050 |
-
msgid "
|
|
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: modules/
|
1054 |
-
msgid "
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: modules/
|
1058 |
-
msgid "
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: modules/
|
1062 |
-
msgid "
|
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 |
-
|
|
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: modules/
|
1086 |
-
msgid "
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: modules/
|
1090 |
-
|
|
|
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 |
-
|
|
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: modules/
|
1114 |
-
|
|
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: modules/
|
1118 |
-
|
1119 |
-
|
1120 |
-
"Settings tab."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: modules/
|
1124 |
-
msgid "
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: modules/
|
1128 |
-
msgid "
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: modules/
|
1132 |
-
msgid "
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: modules/
|
1136 |
-
msgid "
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: modules/
|
1140 |
-
msgid "
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: modules/
|
1144 |
-
msgid "
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: modules/
|
1148 |
-
msgid "
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: modules/
|
1152 |
-
msgid "
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: modules/
|
1156 |
-
msgid "
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: modules/
|
1160 |
-
msgid "
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: modules/
|
1164 |
-
msgid "
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: modules/
|
1168 |
-
msgid "
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: modules/
|
1172 |
-
msgid "
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: modules/
|
1176 |
-
msgid "
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: modules/
|
1180 |
-
msgid "
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: modules/
|
1184 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: modules/
|
1188 |
-
msgid "
|
|
|
|
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: modules/
|
1192 |
-
msgid "
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: modules/
|
1196 |
-
msgid "
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: modules/
|
1200 |
-
msgid "
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: modules/
|
1204 |
-
msgid "
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: modules/
|
1208 |
-
msgid "
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: modules/
|
1212 |
-
msgid "
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: modules/
|
1216 |
-
msgid "
|
1217 |
msgstr ""
|
1218 |
|
1219 |
#: modules/permalinks/permalinks.php:15
|
@@ -1234,16 +1292,6 @@ msgstr ""
|
|
1234 |
msgid "Remove the URL bases of..."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: modules/misc/misc.php:11
|
1238 |
-
msgid "Miscellaneous"
|
1239 |
-
msgstr ""
|
1240 |
-
|
1241 |
-
#: modules/misc/misc.php:14
|
1242 |
-
msgid ""
|
1243 |
-
"The Miscellaneous page contains modules that don’t have enough "
|
1244 |
-
"settings to warrant their own separate admin pages."
|
1245 |
-
msgstr ""
|
1246 |
-
|
1247 |
#: modules/files/files.php:14
|
1248 |
msgid "File Editor"
|
1249 |
msgstr ""
|
@@ -1299,49 +1347,12 @@ msgid ""
|
|
1299 |
"robots.txt file, since you’re using <a href=\"%s\">a custom one</a>."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: modules/
|
1303 |
-
msgid "
|
1304 |
-
msgstr ""
|
1305 |
-
|
1306 |
-
#: modules/canonical/canonical.php:39
|
1307 |
-
msgid ""
|
1308 |
-
"Generate <code><link rel="canonical" /></code> meta tags."
|
1309 |
-
msgstr ""
|
1310 |
-
|
1311 |
-
#: modules/canonical/canonical.php:40
|
1312 |
-
msgid "Send <code>rel="canonical"</code> HTTP headers."
|
1313 |
-
msgstr ""
|
1314 |
-
|
1315 |
-
#: modules/canonical/canonical.php:41
|
1316 |
-
msgid "Redirect requests for nonexistent pagination."
|
1317 |
-
msgstr ""
|
1318 |
-
|
1319 |
-
#: modules/user-code/user-code.php:12
|
1320 |
-
msgid "Code Inserter"
|
1321 |
-
msgstr ""
|
1322 |
-
|
1323 |
-
#: modules/user-code/user-code.php:27
|
1324 |
-
msgid "Everywhere"
|
1325 |
-
msgstr ""
|
1326 |
-
|
1327 |
-
#: modules/user-code/user-code.php:34
|
1328 |
-
msgid "<head> Tag"
|
1329 |
-
msgstr ""
|
1330 |
-
|
1331 |
-
#: modules/user-code/user-code.php:35
|
1332 |
-
msgid "Before Item Content"
|
1333 |
-
msgstr ""
|
1334 |
-
|
1335 |
-
#: modules/user-code/user-code.php:36
|
1336 |
-
msgid "After Item Content"
|
1337 |
-
msgstr ""
|
1338 |
-
|
1339 |
-
#: modules/user-code/user-code.php:37
|
1340 |
-
msgid "Footer"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: modules/
|
1344 |
-
msgid "
|
1345 |
msgstr ""
|
1346 |
|
1347 |
#: modules/settings/settings-data.php:16
|
@@ -1512,48 +1523,10 @@ msgstr ""
|
|
1512 |
msgid "Restore Default Settings"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: modules/settings/global-settings.php:18
|
1516 |
-
msgid "Global Settings"
|
1517 |
-
msgstr ""
|
1518 |
-
|
1519 |
-
#: modules/settings/global-settings.php:40
|
1520 |
-
msgid "Enable nofollow’d attribution link"
|
1521 |
-
msgstr ""
|
1522 |
-
|
1523 |
-
#: modules/settings/global-settings.php:41
|
1524 |
-
msgid "Enable attribution link CSS styling"
|
1525 |
-
msgstr ""
|
1526 |
-
|
1527 |
-
#: modules/settings/global-settings.php:42
|
1528 |
-
msgid "Notify me about unnecessary active plugins"
|
1529 |
-
msgstr ""
|
1530 |
-
|
1531 |
-
#: modules/settings/global-settings.php:43
|
1532 |
-
msgid "Insert comments around HTML code insertions"
|
1533 |
-
msgstr ""
|
1534 |
-
|
1535 |
-
#: modules/settings/settings.php:12
|
1536 |
-
msgid "Plugin Settings"
|
1537 |
-
msgstr ""
|
1538 |
-
|
1539 |
-
#: modules/settings/settings.php:13
|
1540 |
-
msgid "SEO Ultimate Plugin Settings"
|
1541 |
-
msgstr ""
|
1542 |
-
|
1543 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 6.6) #-#-#-#-#
|
1544 |
-
#. Plugin Name of the plugin/theme
|
1545 |
-
#: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:767
|
1546 |
-
msgid "SEO Ultimate"
|
1547 |
-
msgstr ""
|
1548 |
-
|
1549 |
#: modules/settings/uninstall.php:17
|
1550 |
msgid "Uninstaller"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1250
|
1554 |
-
msgid "Uninstall"
|
1555 |
-
msgstr ""
|
1556 |
-
|
1557 |
#: modules/settings/uninstall.php:27
|
1558 |
msgid ""
|
1559 |
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
@@ -1590,6 +1563,26 @@ msgstr ""
|
|
1590 |
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
1591 |
msgstr ""
|
1592 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1593 |
#: modules/settings/install.php:18
|
1594 |
msgid "Upgrade/Downgrade/Reinstall"
|
1595 |
msgstr ""
|
@@ -1647,325 +1640,358 @@ msgid ""
|
|
1647 |
"will result in data loss."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: modules/settings/install.php:76
|
1651 |
-
msgid ""
|
1652 |
-
"There was an error retrieving the list of available versions. Please try "
|
1653 |
-
"again later."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: modules/
|
1657 |
-
msgid ""
|
1658 |
-
"To download and install a fresh copy of the SEO Ultimate version you are "
|
1659 |
-
"currently using, click the “Reinstall” button below."
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: modules/
|
1663 |
-
msgid "
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: modules/
|
1667 |
-
msgid "
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: modules/
|
|
|
|
|
|
|
|
|
1671 |
msgid ""
|
1672 |
-
"
|
1673 |
-
"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: modules/
|
1677 |
-
msgid "
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: modules/
|
1681 |
-
msgid "
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: modules/
|
1685 |
-
msgid "
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: modules/
|
1689 |
-
msgid "
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: modules/
|
1693 |
-
msgid "
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: modules/
|
1697 |
-
msgid "
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: modules/
|
1701 |
-
msgid "
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: modules/
|
1705 |
-
msgid "
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: modules/
|
1709 |
-
msgid "
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: modules/
|
1713 |
-
msgid "
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: modules/
|
1717 |
-
|
1718 |
-
msgid "Noindex"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: modules/
|
1722 |
-
|
1723 |
-
#: modules/autolinks/footer-autolinks.php:218
|
1724 |
-
msgid "Nofollow"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: modules/
|
1728 |
-
msgid "
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: modules/
|
1732 |
-
msgid "
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: modules/
|
1736 |
-
msgid "
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: modules/
|
1740 |
-
msgid "
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: modules/
|
1744 |
-
msgid "
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: modules/
|
1748 |
-
msgid ""
|
1749 |
-
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
1750 |
-
"block indexing of the entire site, regardless of which options are set below."
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: modules/
|
1754 |
-
msgid "
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: modules/
|
1758 |
-
msgid "
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: modules/
|
1762 |
-
msgid "
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
#: modules/
|
1766 |
-
msgid "
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#: modules/
|
1770 |
-
msgid "
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: modules/
|
1774 |
-
msgid "
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: modules/
|
1778 |
-
msgid "
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: modules/
|
1782 |
-
msgid "
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: modules/
|
1786 |
-
msgid "
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#: modules/
|
1790 |
-
msgid "
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#: modules/
|
1794 |
-
msgid "
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: modules/
|
1798 |
-
msgid "
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: modules/
|
1802 |
-
msgid "
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: modules/
|
1806 |
-
msgid "
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: modules/
|
1810 |
-
msgid "
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: modules/
|
1814 |
msgid ""
|
1815 |
-
"
|
1816 |
-
"
|
1817 |
-
"WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your "
|
1818 |
-
"webhost. In the meantime, you can return to an older version of Deeplink "
|
1819 |
-
"Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
|
1820 |
-
"a> to SEO Ultimate 5.9."
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: modules/
|
1824 |
-
msgid "
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: modules/
|
1828 |
-
msgid "
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: modules/
|
1832 |
-
|
|
|
|
|
|
|
1833 |
msgid ""
|
1834 |
-
"
|
1835 |
-
"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: modules/
|
1839 |
-
|
1840 |
-
msgid "Edit Existing Links"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: modules/
|
1844 |
-
|
1845 |
-
msgid "Add a New Link"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: modules/
|
1849 |
-
|
1850 |
-
msgid "Anchor Text"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#: modules/
|
1854 |
-
|
1855 |
-
msgid "Destination"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: modules/
|
1859 |
-
|
1860 |
-
msgid "Title Attribute"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: modules/
|
1864 |
-
#: modules/
|
1865 |
-
msgid "
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: modules/
|
1869 |
-
|
1870 |
-
msgid "Delete"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#: modules/
|
1874 |
-
|
1875 |
-
msgid "New window"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: modules/
|
1879 |
-
msgid "
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: modules/
|
1883 |
-
msgid "
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: modules/
|
1887 |
-
|
|
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: modules/
|
1891 |
-
msgid ""
|
1892 |
-
|
1893 |
-
|
1894 |
-
|
1895 |
-
"
|
1896 |
-
|
1897 |
-
|
1898 |
-
|
|
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: modules/
|
1902 |
-
msgid "
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: modules/
|
1906 |
-
msgid "
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: modules/
|
1910 |
-
msgid "
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: modules/
|
1914 |
-
msgid "
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: modules/
|
1918 |
-
msgid "
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: modules/
|
1922 |
-
msgid ""
|
1923 |
-
"Don’t link the same anchor text any more than %d times per post/page/"
|
1924 |
-
"etc."
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: modules/
|
1928 |
-
msgid ""
|
1929 |
-
"Don’t link the same anchor text any more than %d times across my "
|
1930 |
-
"entire site."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: modules/
|
1934 |
-
msgid "
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: modules/
|
1938 |
-
msgid ""
|
1939 |
-
"Don’t add autolinks to text within these HTML tags <em>(separate with "
|
1940 |
-
"commas)</em>:"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: modules/
|
1944 |
-
msgid "
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: modules/
|
1948 |
-
msgid "
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: modules/
|
1952 |
-
msgid "
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: modules/
|
1956 |
-
msgid "
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: modules/
|
1960 |
-
msgid "
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: modules/
|
1964 |
-
msgid "
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: modules/
|
1968 |
-
msgid "
|
1969 |
msgstr ""
|
1970 |
|
1971 |
#: modules/autolinks/footer-autolinks-settings.php:16
|
@@ -1992,192 +2018,185 @@ msgstr ""
|
|
1992 |
msgid "Link Separator"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#:
|
1996 |
-
msgid "
|
1997 |
-
msgstr ""
|
1998 |
-
|
1999 |
-
#: plugin/class.su-installer.php:12
|
2000 |
-
msgid "Removing the current version of the plugin…"
|
2001 |
-
msgstr ""
|
2002 |
-
|
2003 |
-
#: plugin/class.su-installer.php:13
|
2004 |
-
msgid "Could not remove the current version of the plugin."
|
2005 |
-
msgstr ""
|
2006 |
-
|
2007 |
-
#: plugin/class.su-installer.php:17
|
2008 |
-
msgid "Downloading old version from <span class=\"code\">%s</span>…"
|
2009 |
-
msgstr ""
|
2010 |
-
|
2011 |
-
#: plugin/class.su-installer.php:18
|
2012 |
-
msgid "Unpacking the downgrade…"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#:
|
2016 |
-
|
|
|
|
|
|
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#:
|
2020 |
-
|
|
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#:
|
2024 |
-
|
|
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#:
|
2028 |
-
msgid "
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#:
|
2032 |
-
|
|
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#:
|
2036 |
-
|
|
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#:
|
2040 |
-
|
|
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#:
|
2044 |
-
|
|
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#:
|
2048 |
-
|
|
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#:
|
2052 |
-
msgid "
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#:
|
2056 |
-
msgid "
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#:
|
2060 |
-
|
|
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#:
|
2064 |
-
msgid "
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#:
|
2068 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#:
|
2072 |
-
msgid "
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#:
|
2076 |
-
msgid "
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#:
|
2080 |
-
msgid "
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#:
|
2084 |
msgid ""
|
2085 |
-
"
|
2086 |
-
"If you leave before saving, those changes will be lost."
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#:
|
2090 |
-
msgid "
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#:
|
2094 |
-
msgid "
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#:
|
2098 |
-
msgid "
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#:
|
2102 |
msgid ""
|
2103 |
-
"
|
2104 |
-
"
|
2105 |
-
msgstr ""
|
2106 |
-
|
2107 |
-
#: plugin/class.seo-ultimate.php:1151
|
2108 |
-
msgid "new module"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#:
|
2112 |
-
msgid "
|
|
|
|
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#:
|
2116 |
-
msgid "
|
|
|
|
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#:
|
2120 |
-
msgid "
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#:
|
2124 |
-
msgid "
|
|
|
|
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#:
|
2128 |
-
msgid "
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#:
|
2132 |
-
msgid "
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#:
|
2136 |
-
msgid "
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#:
|
2140 |
-
msgid "
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#:
|
2144 |
-
msgid "
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#:
|
2148 |
-
msgid "
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#:
|
2152 |
-
msgid "
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#:
|
2156 |
-
msgid "
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#:
|
2160 |
-
msgid "
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#:
|
2164 |
msgid ""
|
2165 |
-
"<strong>
|
2166 |
-
"search
|
2167 |
-
"
|
2168 |
-
"
|
2169 |
-
|
2170 |
-
|
2171 |
-
|
2172 |
-
msgid "SEO Settings"
|
2173 |
-
msgstr ""
|
2174 |
-
|
2175 |
-
#: plugin/class.seo-ultimate.php:1671
|
2176 |
-
msgid "Home"
|
2177 |
-
msgstr ""
|
2178 |
-
|
2179 |
-
#: plugin/class.seo-ultimate.php:1740
|
2180 |
-
msgid "Author Archives"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
#: 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.7\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2011-07-16 17:33:59+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.7) #-#-#-#-#
|
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:2588
|
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:2592
|
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.7) #-#-#-#-#
|
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/widgets/widgets.php:12
|
351 |
msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: modules/import-aiosp/import-aiosp.php:12
|
355 |
+
msgid "Import from All in One SEO Pack"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: modules/import-aiosp/import-aiosp.php:13
|
359 |
+
msgid "AIOSP Import"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: modules/import-aiosp/import-aiosp.php:15
|
363 |
+
msgid "All in One SEO Pack"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: modules/import-aiosp/import-aiosp.php:16
|
367 |
+
msgid "AIOSP"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: modules/import-aiosp/import-aiosp.php:17
|
371 |
+
msgid "Import post data (custom title tags and meta tags)."
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: modules/import-aiosp/import-aiosp.php:21
|
375 |
+
msgid ""
|
376 |
+
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
377 |
+
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
378 |
+
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
379 |
+
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
380 |
+
"to be currently installed or activated for the import to take place."
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: modules/import-aiosp/import-aiosp.php:23
|
384 |
+
msgid ""
|
385 |
+
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
386 |
+
"you use an older version of AIOSP, you should update to the latest version "
|
387 |
+
"first and run AIOSP’s upgrade process."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: modules/class.su-importmodule.php:49
|
391 |
+
msgid "Import Post Fields"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: modules/class.su-importmodule.php:50
|
395 |
msgid ""
|
396 |
+
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
397 |
+
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
398 |
+
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
399 |
+
"Ultimate."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: modules/class.su-importmodule.php:53
|
403 |
+
msgid "Conflict Resolution Mode"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: modules/class.su-importmodule.php:54
|
407 |
+
msgid ""
|
408 |
+
"What should the import tool do if it tries to move over a post’s %s "
|
409 |
+
"data, but different data already exists in the corresponding SEO Ultimate "
|
410 |
+
"fields?"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: modules/class.su-importmodule.php:56
|
414 |
+
msgid "Skip that post and leave all data as-is (default)."
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: modules/class.su-importmodule.php:57
|
418 |
+
msgid "Delete the SEO Ultimate data and replace it with the %s data."
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: modules/class.su-importmodule.php:58
|
422 |
+
msgid "Keep the SEO Ultimate data and delete the %s data."
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: modules/class.su-importmodule.php:61
|
426 |
+
msgid "Deletion Preference"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: modules/class.su-importmodule.php:62
|
430 |
+
msgid ""
|
431 |
+
"When the migration tool successfully copies a post’s %1$s data over to "
|
432 |
+
"SEO Ultimate, what should it do with the old %1$s data?"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: modules/class.su-importmodule.php:64
|
436 |
+
msgid "Delete the %s data."
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: modules/class.su-importmodule.php:65
|
440 |
+
msgid "Leave behind the duplicate %s data (default)."
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: modules/class.su-importmodule.php:72
|
444 |
+
msgid "Import Now"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: modules/class.su-importmodule.php:75
|
448 |
+
msgid ""
|
449 |
+
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
450 |
+
"target=\"_blank\">backup your database</a> before proceeding!"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: modules/class.su-importmodule.php:84
|
454 |
+
msgid "Import complete."
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: modules/class.su-importmodule.php:90
|
458 |
+
msgid "Return to import page"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: modules/class.su-importmodule.php:93
|
462 |
+
msgid "Return to settings page"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: modules/class.su-importmodule.php:96
|
466 |
+
msgid "Return to SEO page"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: modules/class.su-importmodule.php:116
|
470 |
+
msgid "Deactivated %s."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: modules/class.su-importmodule.php:174
|
474 |
+
msgid "Imported a total of %d fields for one post/page/revision."
|
475 |
+
msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
|
476 |
+
msgstr[0] ""
|
477 |
+
msgstr[1] ""
|
478 |
+
|
479 |
+
#: modules/class.su-importmodule.php:180
|
480 |
+
msgid "Skipped one post with disabled %2$s data."
|
481 |
+
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
482 |
+
msgstr[0] ""
|
483 |
+
msgstr[1] ""
|
484 |
+
|
485 |
+
#: modules/class.su-importmodule.php:186
|
486 |
+
msgid ""
|
487 |
+
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
488 |
+
"settings you chose."
|
489 |
+
msgid_plural ""
|
490 |
+
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
491 |
+
"settings you chose."
|
492 |
+
msgstr[0] ""
|
493 |
+
msgstr[1] ""
|
494 |
+
|
495 |
+
#: modules/class.su-importmodule.php:192
|
496 |
+
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
497 |
+
msgid_plural ""
|
498 |
+
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
499 |
+
msgstr[0] ""
|
500 |
+
msgstr[1] ""
|
501 |
+
|
502 |
#: modules/titles/titles.php:12
|
503 |
msgid "Title Tag Rewriter"
|
504 |
msgstr ""
|
632 |
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: modules/class.su-module.php:375
|
636 |
+
msgid ""
|
637 |
+
"(Note: This translated documentation was designed for an older version of "
|
638 |
+
"SEO Ultimate and may be outdated.)"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: modules/class.su-module.php:658
|
642 |
+
msgid ""
|
643 |
+
"All the modules on this page have been disabled. You can re-enable them "
|
644 |
+
"using the <a href=\"%s\">Module Manager</a>."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: modules/class.su-module.php:1017
|
648 |
+
msgctxt "Dropdown Title"
|
649 |
+
msgid "%s — %s"
|
|
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: modules/class.su-module.php:1045
|
653 |
+
msgid "%1$s | %2$s %3$s by %4$s"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: modules/class.su-module.php:1124
|
657 |
+
msgid "Your site currently doesn’t have any public items of this type."
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: modules/class.su-module.php:1208
|
661 |
+
msgid "«"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: modules/class.su-module.php:1209
|
665 |
+
msgid "»"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: modules/class.su-module.php:1216
|
669 |
+
msgid "Displaying %s–%s of %s"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: modules/class.su-module.php:1229 modules/404s/fofs-log.php:113
|
673 |
+
msgid "Actions"
|
|
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: modules/class.su-module.php:1230
|
677 |
+
msgid "ID"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: modules/class.su-module.php:1264
|
681 |
+
msgid "View"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: modules/class.su-module.php:1266
|
685 |
+
msgid "Edit"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: modules/class.su-module.php:1430
|
689 |
+
msgid "Settings updated."
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
+
#: modules/class.su-module.php:1451
|
693 |
+
msgid "Save Changes"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: modules/class.su-module.php:1962
|
697 |
msgid ""
|
698 |
+
"Are you sure you want to replace the textbox contents with this default "
|
699 |
+
"value?"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: modules/class.su-module.php:1978 modules/settings/settings-data.php:23
|
703 |
+
msgid "Reset"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: modules/class.su-module.php:2612
|
707 |
+
msgid "Type a URL or start typing the name of the item you want to link to"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: modules/class.su-module.php:2624
|
711 |
+
msgid "Remove this destination"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: modules/class.su-module.php:2624
|
715 |
+
msgid "X"
|
|
|
|
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: modules/noindex/noindex.php:12
|
719 |
+
msgid "Noindex Manager"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: modules/noindex/noindex.php:13 modules/noindex/noindex.php:49
|
723 |
+
#: modules/noindex/noindex.php:67
|
724 |
+
msgid "Noindex"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: modules/noindex/noindex.php:43 modules/meta/meta-keywords.php:33
|
728 |
+
msgid "Default Values"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: modules/noindex/noindex.php:54 modules/noindex/noindex.php:78
|
732 |
+
#: modules/autolinks/footer-autolinks.php:218
|
733 |
+
#: modules/autolinks/content-autolinks.php:362
|
734 |
+
msgid "Nofollow"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: modules/noindex/noindex.php:62 modules/noindex/noindex.php:73
|
738 |
+
msgid "Use default"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: modules/noindex/noindex.php:63
|
742 |
+
msgid "noindex"
|
|
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: modules/noindex/noindex.php:64
|
746 |
+
msgid "index"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: modules/noindex/noindex.php:74
|
750 |
+
msgid "nofollow"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: modules/noindex/noindex.php:75
|
754 |
+
msgid "follow"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: modules/noindex/noindex.php:89
|
758 |
+
msgid ""
|
759 |
+
"Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
|
760 |
+
"block indexing of the entire site, regardless of which options are set below."
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: modules/noindex/noindex.php:92
|
764 |
+
msgid "Prevent indexing of..."
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: modules/noindex/noindex.php:93
|
768 |
+
msgid "Administration back-end pages"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: modules/noindex/noindex.php:94
|
772 |
+
msgid "Author archives"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: modules/noindex/noindex.php:95
|
776 |
+
msgid "Blog search pages"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: modules/noindex/noindex.php:96
|
780 |
+
msgid "Category archives"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: modules/noindex/noindex.php:97
|
784 |
+
msgid "Comment feeds"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: modules/noindex/noindex.php:98
|
788 |
+
msgid "Comment subpages"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: modules/noindex/noindex.php:99
|
792 |
+
msgid "Date-based archives"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: modules/noindex/noindex.php:100
|
796 |
+
msgid "Subpages of the homepage"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: modules/noindex/noindex.php:101
|
800 |
+
msgid "Tag archives"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: modules/noindex/noindex.php:102
|
804 |
+
msgid "User login/registration pages"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: modules/noindex/noindex.php:165
|
808 |
+
msgid "Noindex: Tell search engines not to index this webpage."
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: modules/noindex/noindex.php:166
|
812 |
+
msgid "Nofollow: Tell search engines not to spider links on this webpage."
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: modules/noindex/noindex.php:167
|
816 |
+
msgid "Meta Robots Tag:"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: modules/meta/meta-descriptions.php:12
|
820 |
+
msgid "Meta Description Editor"
|
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/meta/meta-descriptions.php:49
|
836 |
+
msgid "Category Description Format"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: modules/meta/meta-descriptions.php:50
|
840 |
+
msgid "Post Tag Description Format"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: modules/meta/meta-descriptions.php:57
|
844 |
+
msgid "Blog Homepage Meta Description"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: modules/meta/meta-descriptions.php:59
|
848 |
+
msgid "Use this blog’s tagline as the default homepage description."
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: modules/meta/meta-descriptions.php:60
|
852 |
+
msgid "Default Value"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: modules/meta/meta-descriptions.php:122
|
856 |
+
msgid "Meta Description:"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: modules/meta/meta-descriptions.php:125
|
860 |
+
msgid "You’ve entered %s characters. Most search engines use up to 140."
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: modules/meta/meta-descriptions.php:133
|
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/meta/meta-keywords.php:12
|
876 |
msgid "Meta Keywords"
|
877 |
msgstr ""
|
878 |
|
|
|
|
|
|
|
|
|
879 |
#: modules/meta/meta-keywords.php:56
|
880 |
msgid "The %d most commonly-used words"
|
881 |
msgstr ""
|
955 |
msgid "Don’t cache or archive this site."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: modules/canonical/canonical.php:12
|
959 |
+
msgid "Canonicalizer"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: modules/canonical/canonical.php:39
|
963 |
+
msgid ""
|
964 |
+
"Generate <code><link rel="canonical" /></code> meta tags."
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: modules/canonical/canonical.php:40
|
968 |
+
msgid "Send <code>rel="canonical"</code> HTTP headers."
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: modules/canonical/canonical.php:41
|
972 |
+
msgid "Redirect requests for nonexistent pagination."
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: modules/link-nofollow/link-nofollow.php:12
|
976 |
+
msgid "Nofollow Manager"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: modules/link-nofollow/link-nofollow.php:53
|
980 |
+
msgid "Add the nofollow attribute to..."
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: modules/link-nofollow/link-nofollow.php:55
|
984 |
+
msgid "Adjacent post links"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: modules/link-nofollow/link-nofollow.php:56
|
988 |
+
msgid "Category links (after posts)"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: modules/link-nofollow/link-nofollow.php:57
|
992 |
+
msgid "Category links (in lists)"
|
|
|
|
|
|
|
|
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: modules/link-nofollow/link-nofollow.php:58
|
996 |
+
msgid "Comment anchor links"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: modules/link-nofollow/link-nofollow.php:59
|
1000 |
+
msgid "Comment feed links"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: modules/link-nofollow/link-nofollow.php:60
|
1004 |
+
msgid "Date-based archive links"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: modules/link-nofollow/link-nofollow.php:61
|
1008 |
+
msgid "Pagination navigation links (all)"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: modules/link-nofollow/link-nofollow.php:62
|
1012 |
+
msgid "Pagination navigation links (on blog home only)"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: modules/link-nofollow/link-nofollow.php:63
|
1016 |
+
msgid "“Read more” links"
|
|
|
|
|
|
|
|
|
|
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: modules/link-nofollow/link-nofollow.php:64
|
1020 |
+
msgid "Registration link"
|
|
|
|
|
|
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: modules/link-nofollow/link-nofollow.php:65
|
1024 |
+
msgid "Login link"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: modules/link-nofollow/link-nofollow.php:66
|
1028 |
+
msgid "Tag links (after posts)"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: modules/link-nofollow/link-nofollow.php:67
|
1032 |
+
msgid "Tag links (in lists and clouds)"
|
|
|
|
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
1036 |
+
msgid "When displaying page lists, nofollow links to this page"
|
|
|
|
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: modules/link-nofollow/link-nofollow.php:76
|
1040 |
+
msgid "Nofollow:"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: modules/competition-queries/competition-queries.php:12
|
1044 |
+
msgid "Competition Researcher"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: modules/competition-queries/competition-queries.php:13
|
1048 |
+
msgid "Comp. Researcher"
|
|
|
|
|
|
|
|
|
|
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: modules/competition-queries/competition-queries.php:17
|
1052 |
msgid ""
|
1053 |
+
"The Competition Researcher provides you with easy access to various search "
|
1054 |
+
"engine tools which you can use to research multiple search queries or URLs."
|
|
|
|
|
|
|
|
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: modules/competition-queries/competition-queries.php:21
|
1058 |
+
msgid "Step 1: Choose Your Research Tool"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: modules/competition-queries/competition-queries.php:25
|
1062 |
+
msgid "Keywords"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: modules/competition-queries/competition-queries.php:25
|
1066 |
+
msgid "Normal Search"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: modules/competition-queries/competition-queries.php:25
|
1070 |
+
msgid "Find out how many pages contain the words in each query"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: modules/competition-queries/competition-queries.php:26
|
1074 |
+
msgid "Phrase Match"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: modules/competition-queries/competition-queries.php:26
|
1078 |
+
msgid ""
|
1079 |
+
"Find out how many “actual” pages are competing for each query"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: modules/competition-queries/competition-queries.php:27
|
1083 |
+
msgid "Allinanchor"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: modules/competition-queries/competition-queries.php:27
|
1087 |
+
msgid "Find out which sites have the most links for each query"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: modules/competition-queries/competition-queries.php:28
|
1091 |
+
msgid "Allintitle"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: modules/competition-queries/competition-queries.php:28
|
1095 |
+
msgid ""
|
1096 |
+
"Find out which sites have the highest relevance in the title for each query"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: modules/competition-queries/competition-queries.php:29
|
1100 |
+
msgid "Allintext"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: modules/competition-queries/competition-queries.php:29
|
1104 |
+
msgid "Find out which sites have the most relevant content/text on their pages"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: modules/competition-queries/competition-queries.php:30
|
1108 |
+
msgid "Allinurl"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: modules/competition-queries/competition-queries.php:30
|
1112 |
+
msgid ""
|
1113 |
+
"Find out which sites have the most relevant naming conventions for each "
|
1114 |
+
"keyword"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: modules/competition-queries/competition-queries.php:32
|
1118 |
+
msgid "URLs"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: modules/competition-queries/competition-queries.php:32
|
1122 |
+
msgid "Site"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: modules/competition-queries/competition-queries.php:32
|
1126 |
+
msgid "Find out how many pages are indexed for each domain"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: modules/competition-queries/competition-queries.php:33
|
1130 |
+
#: modules/competition-queries/competition-queries.php:38
|
1131 |
+
msgid "Inbound Links"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: modules/competition-queries/competition-queries.php:33
|
1135 |
+
msgid "Find out how many sites link to the domains"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: modules/competition-queries/competition-queries.php:34
|
1139 |
+
#: modules/competition-queries/competition-queries.php:38
|
1140 |
+
msgid "Outbound Links"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: modules/competition-queries/competition-queries.php:34
|
1144 |
+
msgid "Find out how many sites the domains link to"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: modules/competition-queries/competition-queries.php:57
|
1148 |
+
msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: modules/competition-queries/competition-queries.php:59
|
1152 |
+
msgid "(Type in one per line)"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: modules/competition-queries/competition-queries.php:61
|
1156 |
+
msgid "Step 3: Set Options and Submit"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: modules/competition-queries/competition-queries.php:63
|
1160 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:28
|
1161 |
+
msgid "Show 100 results per page"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: modules/competition-queries/competition-queries.php:65
|
1165 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:30
|
1166 |
+
msgid "Use Google’s minimal mode"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: modules/competition-queries/competition-queries.php:71
|
1170 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:33
|
1171 |
+
msgid "Submit"
|
|
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:12
|
1175 |
+
msgid "Internal Relevance Researcher"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:13
|
1179 |
+
msgid "Int. Rel. Researcher"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:21
|
1183 |
+
msgid "Step 1: Enter Keywords"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:23
|
1187 |
+
msgid "(Type one keyword per line)"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:25
|
1191 |
+
msgid "Step 2: Set Options and Submit"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: modules/site-keyword-queries/site-keyword-queries.php:27
|
1195 |
+
msgid "Put keywords in quotes"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: modules/user-code/user-code.php:12
|
1199 |
+
msgid "Code Inserter"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: modules/user-code/user-code.php:27
|
1203 |
+
msgid "Everywhere"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: modules/user-code/user-code.php:34
|
1207 |
+
msgid "<head> Tag"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: modules/user-code/user-code.php:35
|
1211 |
+
msgid "Before Item Content"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: modules/user-code/user-code.php:36
|
1215 |
+
msgid "After Item Content"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: modules/user-code/user-code.php:37
|
1219 |
+
msgid "Footer"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: modules/user-code/user-code.php:51
|
1223 |
+
msgid "Code Inserter module"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: modules/modules/modules.php:12
|
1227 |
+
msgid "Module Manager"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: modules/modules/modules.php:13
|
1231 |
+
msgid "Modules"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: modules/modules/modules.php:41
|
1235 |
+
msgid ""
|
1236 |
+
"SEO Ultimate’s features are located in groups called “modules."
|
1237 |
+
"” By default, most of these modules are listed in the “"
|
1238 |
+
"SEO” menu on the left. Whenever you’re working with a module, "
|
1239 |
+
"you can view documentation by clicking the tabs in the upper-right-hand "
|
1240 |
+
"corner of your administration screen."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: modules/modules/modules.php:43
|
1244 |
+
msgid ""
|
1245 |
+
"The Module Manager lets you disable or hide modules you don’t use. "
|
1246 |
+
"You can also silence modules from displaying bubble alerts on the menu."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: modules/modules/modules.php:47
|
1250 |
+
msgid "Modules updated."
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: modules/modules/modules.php:52
|
1254 |
+
msgid "Status"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: modules/modules/modules.php:53
|
1258 |
+
msgid "Module"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: modules/modules/modules.php:66
|
1262 |
+
msgid "Enabled"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: modules/modules/modules.php:67
|
1266 |
+
msgid "Silenced"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: modules/modules/modules.php:68
|
1270 |
+
msgid "Hidden"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: modules/modules/modules.php:69
|
1274 |
+
msgid "Disabled"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
#: modules/permalinks/permalinks.php:15
|
1292 |
msgid "Remove the URL bases of..."
|
1293 |
msgstr ""
|
1294 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1295 |
#: modules/files/files.php:14
|
1296 |
msgid "File Editor"
|
1297 |
msgstr ""
|
1347 |
"robots.txt file, since you’re using <a href=\"%s\">a custom one</a>."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: modules/settings/settings.php:12
|
1351 |
+
msgid "Plugin Settings"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: modules/settings/settings.php:13
|
1355 |
+
msgid "SEO Ultimate Plugin Settings"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
#: modules/settings/settings-data.php:16
|
1523 |
msgid "Restore Default Settings"
|
1524 |
msgstr ""
|
1525 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1526 |
#: modules/settings/uninstall.php:17
|
1527 |
msgid "Uninstaller"
|
1528 |
msgstr ""
|
1529 |
|
|
|
|
|
|
|
|
|
1530 |
#: modules/settings/uninstall.php:27
|
1531 |
msgid ""
|
1532 |
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
1563 |
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: modules/settings/global-settings.php:18
|
1567 |
+
msgid "Global Settings"
|
1568 |
+
msgstr ""
|
1569 |
+
|
1570 |
+
#: modules/settings/global-settings.php:40
|
1571 |
+
msgid "Enable nofollow’d attribution link"
|
1572 |
+
msgstr ""
|
1573 |
+
|
1574 |
+
#: modules/settings/global-settings.php:41
|
1575 |
+
msgid "Enable attribution link CSS styling"
|
1576 |
+
msgstr ""
|
1577 |
+
|
1578 |
+
#: modules/settings/global-settings.php:42
|
1579 |
+
msgid "Notify me about unnecessary active plugins"
|
1580 |
+
msgstr ""
|
1581 |
+
|
1582 |
+
#: modules/settings/global-settings.php:43
|
1583 |
+
msgid "Insert comments around HTML code insertions"
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
#: modules/settings/install.php:18
|
1587 |
msgid "Upgrade/Downgrade/Reinstall"
|
1588 |
msgstr ""
|
1640 |
"will result in data loss."
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: modules/settings/install.php:76
|
1644 |
+
msgid ""
|
1645 |
+
"There was an error retrieving the list of available versions. Please try "
|
1646 |
+
"again later."
|
1647 |
+
msgstr ""
|
1648 |
+
|
1649 |
+
#: modules/settings/install.php:81
|
1650 |
+
msgid ""
|
1651 |
+
"To download and install a fresh copy of the SEO Ultimate version you are "
|
1652 |
+
"currently using, click the “Reinstall” button below."
|
1653 |
+
msgstr ""
|
1654 |
+
|
1655 |
+
#: modules/settings/install.php:108
|
1656 |
+
msgid "Your Current Version"
|
1657 |
+
msgstr ""
|
1658 |
+
|
1659 |
+
#: modules/settings/install.php:110
|
1660 |
+
msgid "Latest Version"
|
1661 |
+
msgstr ""
|
1662 |
+
|
1663 |
+
#: modules/settings/install.php:130
|
1664 |
+
msgid ""
|
1665 |
+
"You do not have sufficient permissions to upgrade/downgrade plugins for this "
|
1666 |
+
"blog."
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: modules/settings/install.php:140
|
1670 |
+
msgid "Downgrade to SEO Ultimate %s"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: modules/settings/install.php:143
|
1674 |
+
msgid "Reinstall SEO Ultimate %s"
|
1675 |
+
msgstr ""
|
1676 |
+
|
1677 |
+
#: modules/settings/install.php:146
|
1678 |
+
msgid "Upgrade to SEO Ultimate %s"
|
1679 |
+
msgstr ""
|
1680 |
+
|
1681 |
+
#: modules/404s/fofs.php:11
|
1682 |
+
msgid "404 Monitor"
|
1683 |
+
msgstr ""
|
1684 |
+
|
1685 |
+
#: modules/404s/fofs-log.php:16
|
1686 |
+
msgid "404 Monitor Log"
|
1687 |
+
msgstr ""
|
1688 |
+
|
1689 |
+
#: modules/404s/fofs-log.php:17
|
1690 |
+
msgid "Log"
|
1691 |
+
msgstr ""
|
1692 |
+
|
1693 |
+
#: modules/404s/fofs-log.php:114
|
1694 |
+
msgid "Hits"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: modules/404s/fofs-log.php:115
|
1698 |
+
msgid "URL with 404 Error"
|
|
|
|
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: modules/404s/fofs-log.php:116
|
1702 |
+
msgid "Date of Most Recent Hit"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: modules/404s/fofs-log.php:117
|
1706 |
+
msgid "Referers"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: modules/404s/fofs-log.php:118 modules/404s/fofs-log.php:221
|
1710 |
+
msgid "User Agents"
|
1711 |
+
msgstr ""
|
1712 |
+
|
1713 |
+
#: modules/404s/fofs-log.php:134
|
1714 |
msgid ""
|
1715 |
+
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
1716 |
+
"Settings tab."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: modules/404s/fofs-log.php:141
|
1720 |
+
msgid "The log entry was successfully deleted."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: modules/404s/fofs-log.php:143
|
1724 |
+
msgid "This log entry has already been deleted."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: modules/404s/fofs-log.php:152
|
1728 |
+
msgid "The log was successfully cleared."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: modules/404s/fofs-log.php:156
|
1732 |
+
msgid "No 404 errors in the log."
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: modules/404s/fofs-log.php:180
|
1736 |
+
msgid "Open URL in new window (will not be logged)"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: modules/404s/fofs-log.php:181
|
1740 |
+
msgid "Query Google for cached version of URL (opens in new window)"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: modules/404s/fofs-log.php:182
|
1744 |
+
msgid "Remove this URL from the log"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: modules/404s/fofs-log.php:185
|
1748 |
+
msgid "%s at %s"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: modules/404s/fofs-log.php:189
|
1752 |
+
msgid "View list of referring URLs"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: modules/404s/fofs-log.php:190
|
1756 |
+
msgid "View list of user agents"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: modules/404s/fofs-log.php:200
|
1760 |
+
msgid "Referring URLs"
|
|
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: modules/404s/fofs-log.php:201 modules/404s/fofs-log.php:222
|
1764 |
+
msgid "Hide list"
|
|
|
|
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: modules/404s/fofs-log.php:252
|
1768 |
+
msgid "Are you sure you want to delete all 404 log entries?"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: modules/404s/fofs-log.php:254
|
1772 |
+
msgid "Clear Log"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: modules/404s/fofs-settings.php:16
|
1776 |
+
msgid "404 Monitor Settings"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: modules/404s/fofs-settings.php:37
|
1780 |
+
msgid "Continue monitoring for new 404 errors"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: modules/404s/fofs-settings.php:37
|
1784 |
+
msgid "Monitoring Settings"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: modules/404s/fofs-settings.php:39
|
1788 |
+
msgid "Only log these types of 404 errors:"
|
|
|
|
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: modules/404s/fofs-settings.php:40
|
1792 |
+
msgid "404s generated by search engine spiders"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: modules/404s/fofs-settings.php:41
|
1796 |
+
msgid "404s with referring URLs"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: modules/404s/fofs-settings.php:42
|
1800 |
+
msgid "Log Restrictions"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: modules/404s/fofs-settings.php:43
|
1804 |
+
msgid "Maximum Log Entries"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: modules/404s/fofs-settings.php:44
|
1808 |
+
msgid "URLs to Ignore"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: modules/404s/fofs-settings.php:44
|
1812 |
+
msgid "(Use * as wildcard)"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: modules/slugs/slugs.php:12
|
1816 |
+
msgid "Slug Optimizer"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: modules/slugs/slugs.php:16
|
1820 |
+
msgid "Words to Remove"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:20
|
1824 |
+
msgid "Link Mask Generator"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:27
|
1828 |
+
msgid "Alias Directory"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:29
|
1832 |
+
msgid "Nofollow aliased links"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:29
|
1836 |
+
msgid "Link Attributes"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:49
|
1840 |
+
msgid "Link Masks:"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:52
|
1844 |
+
msgid "URL"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:52
|
1848 |
+
msgid "Mask URL"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:83
|
1852 |
msgid ""
|
1853 |
+
"You can stop search engines from following a link by typing in a mask for "
|
1854 |
+
"its URL."
|
|
|
|
|
|
|
|
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:160
|
1858 |
+
msgid "Added by Link Alias Generator (LAG) module"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:171
|
1862 |
+
msgid "End LAG"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: modules/rich-snippets/rich-snippets.php:12
|
1866 |
+
msgid "Rich Snippet Creator"
|
1867 |
+
msgstr ""
|
1868 |
+
|
1869 |
+
#: modules/rich-snippets/rich-snippets.php:17
|
1870 |
msgid ""
|
1871 |
+
"Reviews\n"
|
1872 |
+
"Review"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: modules/rich-snippets/rich-snippets.php:28
|
1876 |
+
msgid "Data Format"
|
|
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: modules/rich-snippets/rich-snippets.php:29
|
1880 |
+
msgid "Categories/Tags That Indicate Reviews"
|
|
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: modules/rich-snippets/rich-snippets.php:37
|
1884 |
+
msgid "Microformats (recommended)"
|
|
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: modules/rich-snippets/rich-snippets.php:43
|
1888 |
+
msgid "HTML5 Microdata"
|
|
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: modules/rich-snippets/rich-snippets.php:49
|
1892 |
+
msgid "RDFa"
|
|
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: modules/rich-snippets/rich-snippets.php:62
|
1896 |
+
#: modules/rich-snippets/rich-snippets.php:224
|
1897 |
+
msgid "Review"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: modules/rich-snippets/rich-snippets.php:70
|
1901 |
+
msgid "Item Reviewed"
|
|
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: modules/rich-snippets/rich-snippets.php:78
|
1905 |
+
msgid "Star Rating"
|
|
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: modules/rich-snippets/rich-snippets.php:83
|
1909 |
+
msgid "Review Author"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: modules/rich-snippets/rich-snippets.php:89
|
1913 |
+
msgid "Date Reviewed"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: modules/rich-snippets/rich-snippets.php:223
|
1917 |
+
#: modules/rich-snippets/rich-snippets.php:232
|
1918 |
+
msgid "None"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: modules/rich-snippets/rich-snippets.php:225
|
1922 |
+
msgid "Rich Snippet Type:"
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: modules/rich-snippets/rich-snippets.php:229
|
1926 |
+
msgid "Name of Reviewed Item:"
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: modules/rich-snippets/rich-snippets.php:233
|
1930 |
+
msgid "0.5 stars"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: modules/rich-snippets/rich-snippets.php:234
|
1934 |
+
msgid "1 star"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: modules/rich-snippets/rich-snippets.php:235
|
1938 |
+
msgid "1.5 stars"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
+
#: modules/rich-snippets/rich-snippets.php:236
|
1942 |
+
msgid "2 stars"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
+
#: modules/rich-snippets/rich-snippets.php:237
|
1946 |
+
msgid "2.5 stars"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: modules/rich-snippets/rich-snippets.php:238
|
1950 |
+
msgid "3 stars"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: modules/rich-snippets/rich-snippets.php:239
|
1954 |
+
msgid "3.5 stars"
|
|
|
|
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: modules/rich-snippets/rich-snippets.php:240
|
1958 |
+
msgid "4 stars"
|
|
|
|
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: modules/rich-snippets/rich-snippets.php:241
|
1962 |
+
msgid "4.5 stars"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: modules/rich-snippets/rich-snippets.php:242
|
1966 |
+
msgid "5 stars"
|
|
|
|
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: modules/rich-snippets/rich-snippets.php:243
|
1970 |
+
msgid "Star Rating for Reviewed Item:"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: modules/sharing-buttons/sharing-buttons.php:12
|
1974 |
+
msgid "Sharing Facilitator"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: modules/sharing-buttons/sharing-buttons.php:25
|
1978 |
+
msgid "Bookmark and Share"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: modules/sharing-buttons/sharing-buttons.php:39
|
1982 |
+
msgid "Which provider would you like to use for your sharing buttons?"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: modules/sharing-buttons/sharing-buttons.php:41
|
1986 |
+
msgid "None; disable sharing buttons"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: modules/sharing-buttons/sharing-buttons.php:42
|
1990 |
+
msgid "Use the ShareThis button"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: modules/sharing-buttons/sharing-buttons.php:43
|
1994 |
+
msgid "Use the AddThis button"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
#: modules/autolinks/footer-autolinks-settings.php:16
|
2018 |
msgid "Link Separator"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: modules/autolinks/footer-autolinks.php:16
|
2022 |
+
msgid "Footer Deeplink Juggernaut"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: modules/autolinks/footer-autolinks.php:133
|
2026 |
+
#: modules/autolinks/content-autolinks.php:254
|
2027 |
+
msgid ""
|
2028 |
+
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
2029 |
+
"a certain word or phrase in your post/page content to a URL you specify."
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: modules/autolinks/footer-autolinks.php:165
|
2033 |
+
#: modules/autolinks/content-autolinks.php:308
|
2034 |
+
msgid "Edit Existing Links"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: modules/autolinks/footer-autolinks.php:169
|
2038 |
+
#: modules/autolinks/content-autolinks.php:312
|
2039 |
+
msgid "Add a New Link"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: modules/autolinks/footer-autolinks.php:177
|
2043 |
+
msgid "Link Location (optional)"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: modules/autolinks/footer-autolinks.php:179
|
2047 |
+
#: modules/autolinks/content-autolinks.php:323
|
2048 |
+
msgid "Anchor Text"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: modules/autolinks/footer-autolinks.php:180
|
2052 |
+
#: modules/autolinks/content-autolinks.php:324
|
2053 |
+
msgid "Destination"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: modules/autolinks/footer-autolinks.php:181
|
2057 |
+
#: modules/autolinks/content-autolinks.php:325
|
2058 |
+
msgid "Title Attribute"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
+
#: modules/autolinks/footer-autolinks.php:182
|
2062 |
+
#: modules/autolinks/content-autolinks.php:328
|
2063 |
+
msgid "Options"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: modules/autolinks/footer-autolinks.php:184
|
2067 |
+
#: modules/autolinks/content-autolinks.php:330
|
2068 |
+
msgid "Delete"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: modules/autolinks/footer-autolinks.php:205
|
2072 |
+
msgid "Match child content"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: modules/autolinks/footer-autolinks.php:207
|
2076 |
+
msgid "Negative match"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: modules/autolinks/footer-autolinks.php:220
|
2080 |
+
#: modules/autolinks/content-autolinks.php:364
|
2081 |
+
msgid "New window"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: modules/autolinks/autolinks.php:11
|
2085 |
+
msgid "Deeplink Juggernaut"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: modules/autolinks/autolinks.php:18
|
2089 |
+
msgid ""
|
2090 |
+
"Deeplink Juggernaut requires PHP 5.2 or above in SEO Ultimate 6.0 and later. "
|
2091 |
+
"(Note that WordPress itself will soon require PHP 5.2 as well, starting with "
|
2092 |
+
"WordPress 3.2.) If you aren’t sure how to upgrade PHP, please ask your "
|
2093 |
+
"webhost. In the meantime, you can return to an older version of Deeplink "
|
2094 |
+
"Juggernaut that supports your version of PHP by <a href=\"%s\">downgrading</"
|
2095 |
+
"a> to SEO Ultimate 5.9."
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: modules/autolinks/content-autolinks-settings.php:16
|
2099 |
+
msgid "Content Deeplink Juggernaut Settings"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: modules/autolinks/content-autolinks-settings.php:17
|
2103 |
+
msgid "Content Link Settings"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: modules/autolinks/content-autolinks-settings.php:35
|
2107 |
+
msgid "Allow posts to link to themselves."
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: modules/autolinks/content-autolinks-settings.php:36
|
2111 |
msgid ""
|
2112 |
+
"Allow posts to link to the URL by which the visitor is accessing the post."
|
|
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: modules/autolinks/content-autolinks-settings.php:37
|
2116 |
+
msgid "Self-Linking"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: modules/autolinks/content-autolinks-settings.php:40
|
2120 |
+
msgid "Enable per-link customization of quantity limits."
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: modules/autolinks/content-autolinks-settings.php:41
|
2124 |
+
msgid "Don’t add any more than %d autolinks per post/page/etc."
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: modules/autolinks/content-autolinks-settings.php:42
|
2128 |
msgid ""
|
2129 |
+
"Don’t link the same anchor text any more than %d times per post/page/"
|
2130 |
+
"etc."
|
|
|
|
|
|
|
|
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: modules/autolinks/content-autolinks-settings.php:43
|
2134 |
+
msgid ""
|
2135 |
+
"Don’t link the same anchor text any more than %d times across my "
|
2136 |
+
"entire site."
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: modules/autolinks/content-autolinks-settings.php:44
|
2140 |
+
msgid ""
|
2141 |
+
"Don’t link to the same destination any more than %d times per post/"
|
2142 |
+
"page/etc."
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: modules/autolinks/content-autolinks-settings.php:45
|
2146 |
+
msgid "Quantity Restrictions"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: modules/autolinks/content-autolinks-settings.php:47
|
2150 |
+
msgid ""
|
2151 |
+
"Don’t add autolinks to text within these HTML tags <em>(separate with "
|
2152 |
+
"commas)</em>:"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
+
#: modules/autolinks/content-autolinks-settings.php:47
|
2156 |
+
msgid "Tag Restrictions"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
+
#: modules/autolinks/content-autolinks-settings.php:55
|
2160 |
+
msgid "%s can only link to internal destinations that share at least one..."
|
2161 |
msgstr ""
|
2162 |
|
2163 |
+
#: modules/autolinks/content-autolinks-settings.php:68
|
2164 |
+
msgid "Siloing"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
+
#: modules/autolinks/content-autolinks.php:16
|
2168 |
+
msgid "Content Deeplink Juggernaut"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
+
#: modules/autolinks/content-autolinks.php:17
|
2172 |
+
msgid "Content Links"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
+
#: modules/autolinks/content-autolinks.php:327
|
2176 |
+
msgid "Site Cap"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: modules/autolinks/content-autolinks.php:427
|
2180 |
+
msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: modules/autolinks/content-autolinks.php:428
|
2184 |
+
msgid "Don’t add autolinks to anchor texts found in this post."
|
2185 |
msgstr ""
|
2186 |
|
2187 |
+
#: modules/autolinks/content-autolinks.php:428
|
2188 |
+
msgid "Autolink Exclusion:"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: modules/autolinks/content-autolinks.php:433
|
2192 |
msgid ""
|
2193 |
+
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
2194 |
+
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
2195 |
+
"other posts and link it to this post. For example, if the post you’re "
|
2196 |
+
"editing is about “blue widgets,” you could type “blue "
|
2197 |
+
"widgets” into the “Incoming Autolink Anchors” box and "
|
2198 |
+
"Deeplink Juggernaut will automatically build internal links to this post "
|
2199 |
+
"with that anchor text (assuming other posts contain that text)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2200 |
msgstr ""
|
2201 |
|
2202 |
#: includes/jlwp/functions.php:60
|