SEO Ultimate - Version 6.5

Version Description

Download this release

Release Info

Developer JohnLamansky
Plugin Icon 128x128 SEO Ultimate
Version 6.5
Comparing to
See all releases

Code changes from version 6.4 to 6.5

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