SEO Ultimate - Version 5.0

Version Description

Download this release

Release Info

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

Code changes from version 4.9 to 5.0

modules/class.su-module.php CHANGED
@@ -400,15 +400,12 @@ class SU_Module {
400
  */
401
  function load_default_settings() {
402
 
403
- $save = false;
404
  $defaults = $this->get_default_settings();
405
  foreach ($defaults as $setting => $default) {
406
  if ($this->get_setting($setting, "{reset}") === "{reset}") {
407
- $this->update_setting($setting, $default, null, null, false);
408
- $save = true;
409
  }
410
  }
411
- if ($save) $this->plugin->save_dbdata();
412
  }
413
 
414
 
@@ -660,10 +657,10 @@ class SU_Module {
660
  function get_setting($key, $default=null, $module=null) {
661
  if (!$module) $module = $this->get_settings_key();
662
 
663
- if (isset($this->plugin->dbdata['settings']
664
- , $this->plugin->dbdata['settings'][$module]
665
- , $this->plugin->dbdata['settings'][$module][$key]))
666
- $setting = $this->plugin->dbdata['settings'][$module][$key];
667
  else
668
  $setting = $default;
669
 
@@ -683,20 +680,22 @@ class SU_Module {
683
  * @param string $value The new value to assign to the setting.
684
  * @param string|null $module The module to which the setting belongs. Defaults to the current module's settings key. Optional.
685
  */
686
- function update_setting($key, $value, $module=null, $array_key=null, $save=true) {
687
  if (!$module) $module = $this->get_settings_key();
688
 
 
 
689
  $use_custom = apply_filters("su_custom_update_setting-$module-$key", false, $value, $key) ||
690
  apply_filters("su_custom_update_setting-$module", false, $value, $key);
691
 
692
  if (!$use_custom) {
693
  if ($array_key)
694
- $this->plugin->dbdata['settings'][$module][$key][$array_key] = $value;
695
  else
696
- $this->plugin->dbdata['settings'][$module][$key] = $value;
697
  }
698
 
699
- if ($save && !$this->is_action('update')) $this->plugin->save_dbdata();
700
  }
701
 
702
  /**
@@ -754,16 +753,13 @@ class SU_Module {
754
  function delete_setting($key, $module=null, $array_key = null) {
755
  if (!$module) $module = $this->get_settings_key();
756
 
757
- if (isset($this->plugin->dbdata['settings']
758
- , $this->plugin->dbdata['settings'][$module]
759
- , $this->plugin->dbdata['settings'][$module][$key])) {
760
- //Some PHP setups will actually throw an error if we try to unset an array element that doesn't exist...
761
  if ($array_key)
762
- unset($this->plugin->dbdata['settings'][$module][$key][$array_key]);
763
  else
764
- unset($this->plugin->dbdata['settings'][$module][$key]);
765
-
766
- $this->plugin->save_dbdata();
767
  }
768
  }
769
 
@@ -777,8 +773,7 @@ class SU_Module {
777
  */
778
  function update_settings($settings) {
779
  foreach ($settings as $key => $value)
780
- update_setting($key, $value, null, null, false);
781
- $this->plugin->save_dbdata();
782
  }
783
 
784
  /**
@@ -796,40 +791,6 @@ class SU_Module {
796
  }
797
 
798
 
799
- /********** LOG FUNCTIONS **********/
800
-
801
- /**
802
- * Retrieves the module's log.
803
- *
804
- * @since 4.5
805
- * @uses get_settings_key()
806
- *
807
- * @return array
808
- */
809
- function get_log() {
810
- $module = $this->get_settings_key();
811
-
812
- if (isset($this->plugin->dbdata['logs']
813
- , $this->plugin->dbdata['logs'][$module]))
814
- return $this->plugin->dbdata['settings'][$module][$key];
815
-
816
- return array();
817
- }
818
-
819
- /**
820
- * Updates the module's log array.
821
- *
822
- * @since 4.5
823
- * @uses get_settings_key()
824
- *
825
- * @param string $value The entirety of the log to be updated.
826
- */
827
- function update_log($value) {
828
- $module = $this->get_settings_key();
829
- $this->plugin->dbdata['logs'][$module] = $value;
830
- }
831
-
832
-
833
  /********** ADMIN PAGE FUNCTIONS **********/
834
 
835
  /**
@@ -1138,11 +1099,10 @@ class SU_Module {
1138
  $id = (int)$matches[1];
1139
  switch ($genus) {
1140
  case 'post': update_post_meta($id, "_su_{$field['name']}", $_POST[$key]); break;
1141
- case 'term': $this->update_setting($field['term_settings_key'], $_POST[$key], null, $id, false); break;
1142
  }
1143
  continue 2; //Go to next $_POST item
1144
  }
1145
- if ($genus == 'term') $this->plugin->save_dbdata();
1146
  }
1147
 
1148
  $pagenum = isset( $_GET[$type . '_paged'] ) ? absint( $_GET[$type . '_paged'] ) : 0;
@@ -1418,9 +1378,6 @@ class SU_Module {
1418
  */
1419
  function admin_form_end($button = null, $table = true) {
1420
 
1421
- if ($this->is_action('update'))
1422
- $this->plugin->save_dbdata();
1423
-
1424
  if ($button === null) $button = __('Save Changes'); //This string is used in normal WP, so we don't need a textdomain
1425
  if ($table) echo "</table>\n";
1426
 
@@ -2396,8 +2353,9 @@ class SU_Module {
2396
  wp_schedule_event($start, $recurrance, $hook);
2397
 
2398
  //Make a record of it
2399
- $this->plugin->dbdata['cron'][$mk][$function] = array($hook, $start, $recurrance);
2400
- $this->plugin->save_dbdata();
 
2401
 
2402
  //Run the event now
2403
  call_user_func(array($this, $function));
400
  */
401
  function load_default_settings() {
402
 
 
403
  $defaults = $this->get_default_settings();
404
  foreach ($defaults as $setting => $default) {
405
  if ($this->get_setting($setting, "{reset}") === "{reset}") {
406
+ $this->update_setting($setting, $default, null, null);
 
407
  }
408
  }
 
409
  }
410
 
411
 
657
  function get_setting($key, $default=null, $module=null) {
658
  if (!$module) $module = $this->get_settings_key();
659
 
660
+ $msdata = (array)get_option("seo_ultimate_module_$module", array());
661
+
662
+ if (isset($msdata[$key]))
663
+ $setting = $msdata[$key];
664
  else
665
  $setting = $default;
666
 
680
  * @param string $value The new value to assign to the setting.
681
  * @param string|null $module The module to which the setting belongs. Defaults to the current module's settings key. Optional.
682
  */
683
+ function update_setting($key, $value, $module=null, $array_key=null) {
684
  if (!$module) $module = $this->get_settings_key();
685
 
686
+ $msdata = (array)get_option("seo_ultimate_module_$module", array());
687
+
688
  $use_custom = apply_filters("su_custom_update_setting-$module-$key", false, $value, $key) ||
689
  apply_filters("su_custom_update_setting-$module", false, $value, $key);
690
 
691
  if (!$use_custom) {
692
  if ($array_key)
693
+ $msdata[$key][$array_key] = $value;
694
  else
695
+ $msdata[$key] = $value;
696
  }
697
 
698
+ update_option("seo_ultimate_module_$module", $msdata);
699
  }
700
 
701
  /**
753
  function delete_setting($key, $module=null, $array_key = null) {
754
  if (!$module) $module = $this->get_settings_key();
755
 
756
+ $msdata = (array)get_option("seo_ultimate_module_$module", array());
757
+
758
+ if (isset($msdata[$key])) {
 
759
  if ($array_key)
760
+ unset($msdata[$key][$array_key]);
761
  else
762
+ unset($msdata[$key]);
 
 
763
  }
764
  }
765
 
773
  */
774
  function update_settings($settings) {
775
  foreach ($settings as $key => $value)
776
+ update_setting($key, $value, null, null);
 
777
  }
778
 
779
  /**
791
  }
792
 
793
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
794
  /********** ADMIN PAGE FUNCTIONS **********/
795
 
796
  /**
1099
  $id = (int)$matches[1];
1100
  switch ($genus) {
1101
  case 'post': update_post_meta($id, "_su_{$field['name']}", $_POST[$key]); break;
1102
+ case 'term': $this->update_setting($field['term_settings_key'], $_POST[$key], null, $id); break;
1103
  }
1104
  continue 2; //Go to next $_POST item
1105
  }
 
1106
  }
1107
 
1108
  $pagenum = isset( $_GET[$type . '_paged'] ) ? absint( $_GET[$type . '_paged'] ) : 0;
1378
  */
1379
  function admin_form_end($button = null, $table = true) {
1380
 
 
 
 
1381
  if ($button === null) $button = __('Save Changes'); //This string is used in normal WP, so we don't need a textdomain
1382
  if ($table) echo "</table>\n";
1383
 
2353
  wp_schedule_event($start, $recurrance, $hook);
2354
 
2355
  //Make a record of it
2356
+ $psdata = (array)get_option('seo_ultimate', array());
2357
+ $psdata['cron'][$mk][$function] = array($hook, $start, $recurrance);
2358
+ update_option('seo_ultimate', $psdata);
2359
 
2360
  //Run the event now
2361
  call_user_func(array($this, $function));
modules/documentation.txt CHANGED
@@ -449,7 +449,12 @@ Here's information on each of the settings and its supported variables:
449
  * {author} -- The Display Name of the post's author.
450
  * {author\_username}, {author\_firstname}, {author\_lastname}, {author\_nickname} -- The username, first name, last name, and nickname of the post's author, respectively, as set in his or her profile.
451
 
452
- * **Page Title Format** -- Displays on WordPress Pages. The {page} variable is replaced with the Page's title. Also supports the same author variables as the Post Title Format.
 
 
 
 
 
453
 
454
  * **Category Title Format** -- Displays on category archives. The {category} variable is replaced with the name of the category, and {category\_description} is replaced with its description.
455
 
449
  * {author} -- The Display Name of the post's author.
450
  * {author\_username}, {author\_firstname}, {author\_lastname}, {author\_nickname} -- The username, first name, last name, and nickname of the post's author, respectively, as set in his or her profile.
451
 
452
+ * **Page Title Format** -- Displays on WordPress Pages. Supports these variables:
453
+
454
+ * {page} -- The page's title.
455
+ * {page_parent} -- The title of the page's parent page.
456
+ * {author} -- The Display Name of the page's author.
457
+ * {author\_username}, {author\_firstname}, {author\_lastname}, {author\_nickname} -- The username, first name, last name, and nickname of the page's author, respectively, as set in his or her profile.
458
 
459
  * **Category Title Format** -- Displays on category archives. The {category} variable is replaced with the name of the category, and {category\_description} is replaced with its description.
460
 
modules/modules/modules.php CHANGED
@@ -17,14 +17,18 @@ class SU_Modules extends SU_Module {
17
  function init() {
18
  if ($this->is_action('update')) {
19
 
 
 
20
  foreach ($_POST as $key => $value) {
21
  if (substr($key, 0, 3) == 'su-') {
22
  $key = str_replace(array('su-', '-module-status'), '', $key);
23
  $value = intval($value);
24
 
25
- $this->plugin->dbdata['modules'][$key] = $value;
26
  }
27
  }
 
 
28
  }
29
  }
30
 
@@ -88,9 +92,11 @@ STR;
88
  }
89
  }
90
 
 
 
91
  foreach ($modules as $key => $name) {
92
 
93
- $currentstatus = $this->plugin->dbdata['modules'][$key];
94
 
95
  echo "\t\t<tr>\n\t\t\t<td class='module-status' id='module-status-$key'>\n";
96
  echo "\t\t\t\t<input type='hidden' name='su-$key-module-status' id='su-$key-module-status' value='$currentstatus' />\n";
17
  function init() {
18
  if ($this->is_action('update')) {
19
 
20
+ $psdata = (array)get_option('seo_ultimate', array());
21
+
22
  foreach ($_POST as $key => $value) {
23
  if (substr($key, 0, 3) == 'su-') {
24
  $key = str_replace(array('su-', '-module-status'), '', $key);
25
  $value = intval($value);
26
 
27
+ $psdata['modules'][$key] = $value;
28
  }
29
  }
30
+
31
+ update_option('seo_ultimate', $psdata);
32
  }
33
  }
34
 
92
  }
93
  }
94
 
95
+ $psdata = (array)get_option('seo_ultimate', array());
96
+
97
  foreach ($modules as $key => $name) {
98
 
99
+ $currentstatus = $psdata['modules'][$key];
100
 
101
  echo "\t\t<tr>\n\t\t\t<td class='module-status' id='module-status-$key'>\n";
102
  echo "\t\t\t\t<input type='hidden' name='su-$key-module-status' id='su-$key-module-status' value='$currentstatus' />\n";
modules/settings/install.php CHANGED
@@ -7,7 +7,7 @@
7
 
8
  if (class_exists('SU_Module')) {
9
 
10
- define('SU_DOWNGRADE_LIMIT', '2.6');
11
 
12
  class SU_Install extends SU_Module {
13
 
@@ -71,7 +71,7 @@ class SU_Install extends SU_Module {
71
  $this->admin_form_end(__('Downgrade', 'seo-ultimate'));
72
  echo "</div>\n";
73
  } else
74
- $this->print_message('warning', sprintf(__('Downgrading to versions earlier than %s is not supported.', 'seo-ultimate'), SU_DOWNGRADE_LIMIT));
75
  } else
76
  $this->print_message('error', __('There was an error retrieving the list of available versions. Please try again later.', 'seo-ultimate'));
77
  }
7
 
8
  if (class_exists('SU_Module')) {
9
 
10
+ define('SU_DOWNGRADE_LIMIT', '5.0');
11
 
12
  class SU_Install extends SU_Module {
13
 
71
  $this->admin_form_end(__('Downgrade', 'seo-ultimate'));
72
  echo "</div>\n";
73
  } else
74
+ $this->print_message('warning', sprintf(__('Downgrading to versions earlier than %s is not supported because doing so will result in data loss.', 'seo-ultimate'), SU_DOWNGRADE_LIMIT));
75
  } else
76
  $this->print_message('error', __('There was an error retrieving the list of available versions. Please try again later.', 'seo-ultimate'));
77
  }
modules/settings/settings-data.php CHANGED
@@ -34,15 +34,26 @@ class SU_SettingsData extends SU_Module {
34
  header('Content-Type: application/octet-stream');
35
  header('Content-Disposition: attachment; filename="SEO Ultimate Settings ('.date('Y-m-d').').dat"');
36
 
37
- $options = $this->portable_options();
38
  $export = array();
39
- foreach ($options as $option) {
40
- $data = $this->plugin->dbdata[$option];
41
- $data = apply_filters("su_{$option}_export_array", $data);
42
- $export[$option] = $data;
 
 
 
 
 
 
 
 
43
  }
 
 
 
44
  $export = base64_encode(serialize($export));
45
 
 
46
  echo $export;
47
  die();
48
 
@@ -56,9 +67,16 @@ class SU_SettingsData extends SU_Module {
56
  if (is_serialized($import)) {
57
  $import = unserialize($import);
58
 
59
- $options = $this->portable_options();
60
- foreach ($options as $option) {
61
- $this->plugin->dbdata[$option] = array_merge($this->plugin->dbdata[$option], $import[$option]);
 
 
 
 
 
 
 
62
  }
63
 
64
  $this->queue_message('success', __('Settings successfully imported.', 'seo-ultimate'));
@@ -72,8 +90,12 @@ class SU_SettingsData extends SU_Module {
72
 
73
  } elseif ($this->is_action('su-reset')) {
74
 
75
- $this->plugin->dbdata['settings'] = array();
76
- unset($this->plugin->dbdata['modules']);
 
 
 
 
77
  $this->load_default_settings();
78
 
79
  } elseif ($this->is_action('dj-export')) {
@@ -130,8 +152,8 @@ class SU_SettingsData extends SU_Module {
130
  foreach ($import as $link) {
131
 
132
  //Validate destination type
133
- //Only one valid option at this time ('url'), so that makes this easy...
134
- $link['to_type'] = 'url';
135
 
136
  //Validate nofollow
137
  if (!is_bool($link['nofollow']))
34
  header('Content-Type: application/octet-stream');
35
  header('Content-Disposition: attachment; filename="SEO Ultimate Settings ('.date('Y-m-d').').dat"');
36
 
 
37
  $export = array();
38
+
39
+ $psdata = (array)get_option('seo_ultimate', array());
40
+
41
+ //Module statuses
42
+ $export['modules'] = apply_filters("su_modules_export_array", $psdata['modules']);
43
+
44
+ //Module settings
45
+ $modules = array_keys($psdata['modules']);
46
+ $module_settings = array();
47
+ foreach($modules as $module) {
48
+ $msdata = (array)get_option("su_$module", array());
49
+ if ($msdata) $module_settings[$module] = $msdata;
50
  }
51
+ $export['settings'] = apply_filters("su_settings_export_array", $module_settings);
52
+
53
+ //Encode
54
  $export = base64_encode(serialize($export));
55
 
56
+ //Output
57
  echo $export;
58
  die();
59
 
67
  if (is_serialized($import)) {
68
  $import = unserialize($import);
69
 
70
+ //Module statuses
71
+ $psdata = (array)get_option('seo_ultimate', array());
72
+ $psdata['modules'] = array_merge($psdata['modules'], $import['modules']);
73
+ update_option('seo_ultimate', $psdata);
74
+
75
+ //Module settings
76
+ foreach ($import['settings'] as $module => $module_settings) {
77
+ $msdata = (array)get_option("seo_ultimate_module_$module", array());
78
+ $msdata = array_merge($msdata, $module_settings);
79
+ update_option("seo_ultimate_module_$module", $msdata);
80
  }
81
 
82
  $this->queue_message('success', __('Settings successfully imported.', 'seo-ultimate'));
90
 
91
  } elseif ($this->is_action('su-reset')) {
92
 
93
+ $psdata = (array)get_option('seo_ultimate', array());
94
+ $modules = array_keys($psdata['modules']);
95
+ foreach ($modules as $module) delete_option("su_$module");
96
+ unset($psdata['modules']);
97
+ update_option('seo_ultimate', $psdata);
98
+
99
  $this->load_default_settings();
100
 
101
  } elseif ($this->is_action('dj-export')) {
152
  foreach ($import as $link) {
153
 
154
  //Validate destination type
155
+ if ($link['to_type'] != 'url' && !sustr::startswith($link['to_type'], 'posttype_'))
156
+ $link['to_type'] = 'url';
157
 
158
  //Validate nofollow
159
  if (!is_bool($link['nofollow']))
modules/titles/titles.php CHANGED
@@ -151,10 +151,16 @@ class SU_Titles extends SU_Module {
151
  //Load post/page titles
152
  $post_id = 0;
153
  $post_title = '';
 
154
  if (is_singular()) {
155
  $post = $wp_query->get_queried_object();
156
  $post_title = strip_tags( apply_filters( 'single_post_title', $post->post_title ) );
157
  $post_id = $post->ID;
 
 
 
 
 
158
  }
159
 
160
  //Load date-based archive titles
@@ -221,6 +227,7 @@ class SU_Titles extends SU_Module {
221
  , '{tagline}' => get_bloginfo('description')
222
  , '{post}' => $post_title
223
  , '{page}' => $post_title
 
224
  , '{category}' => $cat_title
225
  , '{categories}' => $cat_titles
226
  , '{category_description}' => $cat_desc
151
  //Load post/page titles
152
  $post_id = 0;
153
  $post_title = '';
154
+ $parent_title = '';
155
  if (is_singular()) {
156
  $post = $wp_query->get_queried_object();
157
  $post_title = strip_tags( apply_filters( 'single_post_title', $post->post_title ) );
158
  $post_id = $post->ID;
159
+
160
+ if ($parent = $post->post_parent) {
161
+ $parent = &get_post($parent);
162
+ $parent_title = strip_tags( apply_filters( 'single_post_title', $parent->post_title ) );
163
+ }
164
  }
165
 
166
  //Load date-based archive titles
227
  , '{tagline}' => get_bloginfo('description')
228
  , '{post}' => $post_title
229
  , '{page}' => $post_title
230
+ , '{page_parent}' => $parent_title
231
  , '{category}' => $cat_title
232
  , '{categories}' => $cat_titles
233
  , '{category_description}' => $cat_desc
plugin/class.seo-ultimate.php CHANGED
@@ -32,14 +32,6 @@ class SEO_Ultimate {
32
  */
33
  var $default_menu_module = 'modules';
34
 
35
- /**
36
- * Stores all database data.
37
- *
38
- * @since 0.8
39
- * @var array
40
- */
41
- var $dbdata = array();
42
-
43
  /**
44
  * The server path of the main plugin file.
45
  * Example: /home/user/public_html/wp-content/plugins/seo-ultimate/seo-ultimate.php
@@ -107,8 +99,6 @@ class SEO_Ultimate {
107
  * PHP5-style constructor.
108
  *
109
  * @since 0.1
110
- * @uses $dbdata
111
- * @uses save_dbdata() Hooked into WordPress's "shutdown" action.
112
  * @uses save_hit() Hooked into WordPress's "shutdown" action.
113
  * @uses load_plugin_data()
114
  * @uses SU_VERSION
@@ -130,15 +120,12 @@ class SEO_Ultimate {
130
  */
131
  function __construct($plugin_file) {
132
 
133
- /********** LOAD/SAVE DATABASE DATA **********/
134
-
135
- //Load
136
- $this->dbdata = maybe_unserialize(get_option('seo_ultimate', array()));
137
- if (!is_array($this->dbdata)) $this->dbdata = array();
138
  $this->upgrade_to_08();
139
  $this->upgrade_to_40();
 
140
 
141
- //Save
142
  add_action('shutdown', array(&$this, 'save_hit'));
143
 
144
  /********** CLASS CONSTRUCTION **********/
@@ -149,12 +136,15 @@ class SEO_Ultimate {
149
 
150
  /********** VERSION CHECKING **********/
151
 
 
 
 
152
  //Get the current version
153
  $version = SU_VERSION;
154
 
155
  //Get the version when the plugin last ran.
156
- if (isset($this->dbdata['version']))
157
- $oldversion = $this->dbdata['version'];
158
  else
159
  $oldversion = get_option('su_version', false);
160
 
@@ -169,8 +159,8 @@ class SEO_Ultimate {
169
  }
170
 
171
  //Store the current version in the database.
172
- $this->dbdata['version'] = $version;
173
- if ($oldversion != $version) $this->save_dbdata();
174
 
175
  /********** INITIALIZATION **********/
176
 
@@ -266,15 +256,7 @@ class SEO_Ultimate {
266
  *
267
  * @since 0.1
268
  */
269
- function install() {
270
-
271
- //Load settings file if present
272
- if (!isset($this->dbdata['settings']) && is_readable($settingsfile = $this->plugin_dir_path.'settings.txt')) {
273
- $import = base64_decode(file_get_contents($settingsfile));
274
- if (is_serialized($import)) $this->dbdata['settings'] = unserialize($import);
275
- $this->save_dbdata();
276
- }
277
- }
278
 
279
  /**
280
  * This will be called if the plugin's version has increased since the last run.
@@ -289,50 +271,76 @@ class SEO_Ultimate {
289
 
290
  /**
291
  * Upgrades SEO Ultimate to version 0.8.
292
- * Version 0.8 uses 1 wp_options entry instead of 4.
293
  *
294
  * @since 0.8
295
- * @uses $dbdata
296
  */
297
  function upgrade_to_08() {
 
 
298
  $options = array('cron', 'modules', 'settings', 'version');
 
299
  foreach ($options as $option) {
300
  if (($value = get_option("su_$option", false)) !== false) {
301
- $this->dbdata[$option] = maybe_unserialize($value);
 
 
 
 
 
 
 
 
302
  delete_option("su_$option");
303
  }
304
  }
305
- $this->save_dbdata();
306
  }
307
 
308
  /**
309
  * Upgrades SEO Ultimate to version 4.0.
310
  *
311
  * @since 4.0
312
- * @uses $dbdata
313
  */
314
  function upgrade_to_40() {
315
  $this->copy_module_states(array('meta' => array('meta-descriptions', 'meta-keywords', 'webmaster-verify'), 'noindex' => 'meta-robots'));
316
  }
317
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
  /**
319
  * Copies the enabled/disabled/etc. states from one module to others.
320
  *
321
  * @since 4.0
322
- * @uses $dbdata
323
  *
324
  * @param array $copy
325
  */
326
  function copy_module_states($copy) {
 
327
  $save = false;
328
  foreach ($copy as $from => $tos)
329
- if (isset($this->dbdata['modules'][$from]))
330
  foreach ((array)$tos as $to)
331
- if (!isset($this->dbdata['modules'][$to])) {
332
- $this->dbdata['modules'][$to] = $this->dbdata['modules'][$from];
333
  $save = true;
334
  }
335
- if ($save) $this->save_dbdata();
336
  }
337
 
338
  /**
@@ -359,14 +367,10 @@ class SEO_Ultimate {
359
  //Unschedule all cron jobs
360
  $this->remove_cron_jobs(true);
361
 
362
- //Delete module records, so that modules are re-activated if the plugin is.
363
- unset($this->dbdata['modules']);
364
-
365
  //Delete all cron job records, since the jobs no longer exist
366
- unset($this->dbdata['cron']);
367
-
368
- //Save to database
369
- $this->save_dbdata();
370
  }
371
 
372
  /**
@@ -383,7 +387,6 @@ class SEO_Ultimate {
383
  do_action('su_uninstall');
384
 
385
  //Delete all database data
386
- $this->dbdata = array();
387
  delete_option('seo_ultimate');
388
  }
389
 
@@ -419,7 +422,6 @@ class SEO_Ultimate {
419
  *
420
  * @since 0.1
421
  * @uses $plugin_dir_path
422
- * @uses $dbdata
423
  * @uses $modules Stores module classes in this array.
424
  * @uses $disabled_modules
425
  * @uses module_sort_callback() Passes this function to uasort() to sort the $modules array.
@@ -429,15 +431,17 @@ class SEO_Ultimate {
429
  */
430
  function load_modules() {
431
 
 
 
432
  //The plugin_dir_path variable must be set before calling this function!
433
  if (!$this->plugin_dir_path) return false;
434
 
435
  //If no modules list is found, then create a new, empty list.
436
- if (!isset($this->dbdata['modules']))
437
- $this->dbdata['modules'] = array();
438
 
439
  //Get the modules list from last time the plugin was loaded.
440
- $oldmodules = $this->dbdata['modules'];
441
 
442
  //The modules are in the "modules" subdirectory of the plugin folder.
443
  $dirpath = $this->plugin_dir_path.'modules';
@@ -543,8 +547,8 @@ class SEO_Ultimate {
543
  }
544
 
545
  //Save the new modules list
546
- $this->dbdata['modules'] = $newmodules;
547
- if ($newmodules != $oldmodules) $this->save_dbdata();
548
 
549
  //Remove the cron jobs of deleted modules
550
  $this->remove_cron_jobs();
@@ -614,27 +618,6 @@ class SEO_Ultimate {
614
  return $default;
615
  }
616
 
617
- /**
618
- * Saves settings data to the database.
619
- *
620
- * @since 0.8
621
- * @uses $dbdata
622
- * @uses get_setting()
623
- */
624
- function save_dbdata() {
625
-
626
- //If we don't clear the cache, we sometimes end up with multiple seo_ultimate options entries
627
- wp_cache_delete('seo_ultimate', 'options');
628
- wp_cache_delete('notoptions', 'options');
629
-
630
- if (empty($this->dbdata))
631
- //If we don't have any data to save, then delete the option instead of saving an empty array
632
- delete_option('seo_ultimate');
633
- else
634
- //Save our data to the database
635
- update_option('seo_ultimate', $this->dbdata);
636
- }
637
-
638
  /**
639
  * Saves the hit data to the database if so instructed by a module.
640
  *
@@ -740,10 +723,12 @@ class SEO_Ultimate {
740
  */
741
  function add_menus() {
742
 
 
 
743
  //If subitems have numeric bubbles, then add them up and show the total by the main menu item
744
  $count = 0;
745
  foreach ($this->modules as $key => $module) {
746
- if ( ($this->dbdata['modules'][$key] > SU_MODULE_SILENCED || !count($this->dbdata['modules']))
747
  && $module->get_menu_count() > 0
748
  && $module->get_menu_parent() == 'seo'
749
  && $module->is_independent_module()
@@ -768,12 +753,12 @@ class SEO_Ultimate {
768
 
769
  //If the module is hidden, put the module under a non-existent menu parent
770
  //(this will let the module's admin page be loaded, but it won't show up on the menu)
771
- if ($this->dbdata['modules'][$key] > SU_MODULE_HIDDEN || !count($this->dbdata['modules']))
772
  $parent = $module->get_menu_parent();
773
  else
774
  $parent = 'su-hidden-modules';
775
 
776
- if ($this->dbdata['modules'][$key] > SU_MODULE_SILENCED || !count($this->dbdata['modules']))
777
  $count_code = $this->get_menu_count_code($module->get_menu_count());
778
  else
779
  $count_code = '';
@@ -1522,7 +1507,10 @@ class SEO_Ultimate {
1522
  * @param bool $remove_all Whether to remove all cron jobs. Optional.
1523
  */
1524
  function remove_cron_jobs($remove_all = false) {
1525
- $crondata = $this->dbdata['cron'];
 
 
 
1526
  if (is_array($crondata)) {
1527
  $newcrondata = $crondata;
1528
 
@@ -1533,9 +1521,9 @@ class SEO_Ultimate {
1533
  }
1534
  }
1535
 
1536
- $this->dbdata['cron'] = $newcrondata;
1537
 
1538
- $this->save_dbdata();
1539
  }
1540
  }
1541
 
32
  */
33
  var $default_menu_module = 'modules';
34
 
 
 
 
 
 
 
 
 
35
  /**
36
  * The server path of the main plugin file.
37
  * Example: /home/user/public_html/wp-content/plugins/seo-ultimate/seo-ultimate.php
99
  * PHP5-style constructor.
100
  *
101
  * @since 0.1
 
 
102
  * @uses save_hit() Hooked into WordPress's "shutdown" action.
103
  * @uses load_plugin_data()
104
  * @uses SU_VERSION
120
  */
121
  function __construct($plugin_file) {
122
 
123
+ //Upgrade
 
 
 
 
124
  $this->upgrade_to_08();
125
  $this->upgrade_to_40();
126
+ $this->upgrade_to_50();
127
 
128
+ //Save hit data
129
  add_action('shutdown', array(&$this, 'save_hit'));
130
 
131
  /********** CLASS CONSTRUCTION **********/
136
 
137
  /********** VERSION CHECKING **********/
138
 
139
+ $psdata = get_option('seo_ultimate', array());
140
+ if (!is_array($psdata)) $psdata = array();
141
+
142
  //Get the current version
143
  $version = SU_VERSION;
144
 
145
  //Get the version when the plugin last ran.
146
+ if (isset($psdata['version']))
147
+ $oldversion = $psdata['version'];
148
  else
149
  $oldversion = get_option('su_version', false);
150
 
159
  }
160
 
161
  //Store the current version in the database.
162
+ $psdata['version'] = $version;
163
+ if ($oldversion != $version) update_option('seo_ultimate', $psdata);
164
 
165
  /********** INITIALIZATION **********/
166
 
256
  *
257
  * @since 0.1
258
  */
259
+ function install() { }
 
 
 
 
 
 
 
 
260
 
261
  /**
262
  * This will be called if the plugin's version has increased since the last run.
271
 
272
  /**
273
  * Upgrades SEO Ultimate to version 0.8.
 
274
  *
275
  * @since 0.8
 
276
  */
277
  function upgrade_to_08() {
278
+ $psdata = (array)get_option('seo_ultimate', array());
279
+
280
  $options = array('cron', 'modules', 'settings', 'version');
281
+ $save = false;
282
  foreach ($options as $option) {
283
  if (($value = get_option("su_$option", false)) !== false) {
284
+
285
+ if ('settings' == $option) {
286
+ foreach ((array)$value as $module => $module_data)
287
+ update_option("seo_ultimate_module_$module", $module_data);
288
+ } else {
289
+ $psdata[$option] = $value;
290
+ $save = true;
291
+ }
292
+
293
  delete_option("su_$option");
294
  }
295
  }
296
+ if ($save) update_option('seo_ultimate', $psdata);
297
  }
298
 
299
  /**
300
  * Upgrades SEO Ultimate to version 4.0.
301
  *
302
  * @since 4.0
 
303
  */
304
  function upgrade_to_40() {
305
  $this->copy_module_states(array('meta' => array('meta-descriptions', 'meta-keywords', 'webmaster-verify'), 'noindex' => 'meta-robots'));
306
  }
307
 
308
+ /**
309
+ * Upgrades SEO Ultimate to version 5.0.
310
+ *
311
+ * @since 5.0
312
+ */
313
+ function upgrade_to_50() {
314
+ $psdata = (array)get_option('seo_ultimate', array());
315
+
316
+ if ($psdata && isset($psdata['settings']) && is_array($psdata['settings'])) {
317
+
318
+ foreach ($psdata['settings'] as $module => $module_data)
319
+ update_option("seo_ultimate_module_$module", $module_data);
320
+
321
+ unset($psdata['settings']);
322
+ update_option('seo_ultimate', $psdata);
323
+ }
324
+ }
325
+
326
  /**
327
  * Copies the enabled/disabled/etc. states from one module to others.
328
  *
329
  * @since 4.0
 
330
  *
331
  * @param array $copy
332
  */
333
  function copy_module_states($copy) {
334
+ $psdata = (array)get_option('seo_ultimate', array());
335
  $save = false;
336
  foreach ($copy as $from => $tos)
337
+ if (isset($psdata['modules'][$from]))
338
  foreach ((array)$tos as $to)
339
+ if (!isset($psdata['modules'][$to])) {
340
+ $psdata['modules'][$to] = $psdata['modules'][$from];
341
  $save = true;
342
  }
343
+ if ($save) update_option('seo_ultimate', array());
344
  }
345
 
346
  /**
367
  //Unschedule all cron jobs
368
  $this->remove_cron_jobs(true);
369
 
 
 
 
370
  //Delete all cron job records, since the jobs no longer exist
371
+ $psdata = (array)get_option('seo_ultimate', array());
372
+ unset($psdata['cron']);
373
+ update_option('seo_ultimate', $psdata);
 
374
  }
375
 
376
  /**
387
  do_action('su_uninstall');
388
 
389
  //Delete all database data
 
390
  delete_option('seo_ultimate');
391
  }
392
 
422
  *
423
  * @since 0.1
424
  * @uses $plugin_dir_path
 
425
  * @uses $modules Stores module classes in this array.
426
  * @uses $disabled_modules
427
  * @uses module_sort_callback() Passes this function to uasort() to sort the $modules array.
431
  */
432
  function load_modules() {
433
 
434
+ $psdata = (array)get_option('seo_ultimate', array());
435
+
436
  //The plugin_dir_path variable must be set before calling this function!
437
  if (!$this->plugin_dir_path) return false;
438
 
439
  //If no modules list is found, then create a new, empty list.
440
+ if (!isset($psdata['modules']))
441
+ $psdata['modules'] = array();
442
 
443
  //Get the modules list from last time the plugin was loaded.
444
+ $oldmodules = $psdata['modules'];
445
 
446
  //The modules are in the "modules" subdirectory of the plugin folder.
447
  $dirpath = $this->plugin_dir_path.'modules';
547
  }
548
 
549
  //Save the new modules list
550
+ $psdata['modules'] = $newmodules;
551
+ if ($newmodules != $oldmodules) update_option('seo_ultimate', $psdata);
552
 
553
  //Remove the cron jobs of deleted modules
554
  $this->remove_cron_jobs();
618
  return $default;
619
  }
620
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
621
  /**
622
  * Saves the hit data to the database if so instructed by a module.
623
  *
723
  */
724
  function add_menus() {
725
 
726
+ $psdata = (array)get_option('seo_ultimate', array());
727
+
728
  //If subitems have numeric bubbles, then add them up and show the total by the main menu item
729
  $count = 0;
730
  foreach ($this->modules as $key => $module) {
731
+ if ( ($psdata['modules'][$key] > SU_MODULE_SILENCED || !count($psdata['modules']))
732
  && $module->get_menu_count() > 0
733
  && $module->get_menu_parent() == 'seo'
734
  && $module->is_independent_module()
753
 
754
  //If the module is hidden, put the module under a non-existent menu parent
755
  //(this will let the module's admin page be loaded, but it won't show up on the menu)
756
+ if ($psdata['modules'][$key] > SU_MODULE_HIDDEN || !count($psdata['modules']))
757
  $parent = $module->get_menu_parent();
758
  else
759
  $parent = 'su-hidden-modules';
760
 
761
+ if ($psdata['modules'][$key] > SU_MODULE_SILENCED || !count($psdata['modules']))
762
  $count_code = $this->get_menu_count_code($module->get_menu_count());
763
  else
764
  $count_code = '';
1507
  * @param bool $remove_all Whether to remove all cron jobs. Optional.
1508
  */
1509
  function remove_cron_jobs($remove_all = false) {
1510
+
1511
+ $psdata = (array)get_option('seo_ultimate', array());
1512
+ $crondata = $psdata['cron'];
1513
+
1514
  if (is_array($crondata)) {
1515
  $newcrondata = $crondata;
1516
 
1521
  }
1522
  }
1523
 
1524
+ $psdata['cron'] = $newcrondata;
1525
 
1526
+ update_option('seo_ultimate', $psdata);
1527
  }
1528
  }
1529
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.0
5
  Tested up to: 3.1
6
- Stable tag: 4.9
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,17 +11,17 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
11
 
12
  = Recent Releases =
13
 
 
14
  * Version 4.9 adds autogenerated meta descriptions
15
  * Version 4.8 adds Deeplink Juggernaut features
16
  * Version 4.7 adds the Link Mask Generator module
17
  * Version 4.6 adds a meta keywords mass-editor
18
- * Version 4.5 adds bugfixes
19
 
20
  = Features =
21
 
22
  SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin with these powerful features:
23
 
24
- * **Title Tag Rewriter**
25
  * Out-of-the-box functionality puts your post titles at the beginning of the `<title>` tag for improved keyword SEO.
26
  * Easily override the entire `<title>` tag contents for any individual post, page, attachment, category, or post tag on your blog. Also supports custom post types.
27
  * Customize your homepage's `<title>` tag.
@@ -226,9 +226,15 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
226
 
227
  == Changelog ==
228
 
229
- = Version 4.9 =
 
 
 
 
 
 
230
  * Feature: You can now change the Link Mask Generator's alias directory to something other than `/go/`
231
- * Feature: You can now use the `{excerpt::autogen}` variable in the Meta Description Editor to auto-generate an excerpt if the post doesn't have one ( la the `the_excerpt()` template tag)
232
  * Compatibility: SEO Ultimate now requires WordPress 3.0 or above
233
 
234
  = Version 4.8.1 (March 1, 2011) =
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.0
5
  Tested up to: 3.1
6
+ Stable tag: 5.0
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
11
 
12
  = Recent Releases =
13
 
14
+ * Version 5.0 increases database usage efficiency
15
  * Version 4.9 adds autogenerated meta descriptions
16
  * Version 4.8 adds Deeplink Juggernaut features
17
  * Version 4.7 adds the Link Mask Generator module
18
  * Version 4.6 adds a meta keywords mass-editor
 
19
 
20
  = Features =
21
 
22
  SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin with these powerful features:
23
 
24
+ * **Title Tag Rewriter** -- UPDATED in Version 5.0
25
  * Out-of-the-box functionality puts your post titles at the beginning of the `<title>` tag for improved keyword SEO.
26
  * Easily override the entire `<title>` tag contents for any individual post, page, attachment, category, or post tag on your blog. Also supports custom post types.
27
  * Customize your homepage's `<title>` tag.
226
 
227
  == Changelog ==
228
 
229
+ = Version 5.0 (May 13, 2011) =
230
+ * Improvement: Revamped database infrastructure for improved efficiency
231
+ * Feature: Title Tag Rewriter supports a new `{page_parent}` variable
232
+ * Bugfix: Links' "Destination Type" values are now preserved when importing Deeplink Juggernaut CSV files
233
+ * This is a major upgrade, so please backup your database first!
234
+
235
+ = Version 4.9 (May 12, 2011) =
236
  * Feature: You can now change the Link Mask Generator's alias directory to something other than `/go/`
237
+ * Feature: You can now use the `{excerpt::autogen}` variable in the Meta Description Editor to auto-generate an excerpt if the post doesn't have one (a la the `the_excerpt()` template tag)
238
  * Compatibility: SEO Ultimate now requires WordPress 3.0 or above
239
 
240
  = Version 4.8.1 (March 1, 2011) =
seo-ultimate.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
- Version: 4.9
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 4.9
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.0');
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
- define('SU_VERSION', '4.9');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/4.9');
54
 
55
  /********** INCLUDES **********/
56
 
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
+ Version: 5.0
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
+ * @version 5.0
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
+ define('SU_VERSION', '5.0');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/5.0');
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 4.8\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
- "POT-Creation-Date: 2011-02-07 19:43:56+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,277 +19,72 @@ msgid ""
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
- #. #-#-#-#-# plugin.pot (SEO Ultimate 4.8) #-#-#-#-#
23
- #. Plugin Name of the plugin/theme
24
- #: plugin/class.seo-ultimate.php:756 modules/settings/settings.php:14
25
- msgid "SEO Ultimate"
26
- msgstr ""
27
-
28
- #: plugin/class.seo-ultimate.php:756
29
- msgid "SEO"
30
- msgstr ""
31
-
32
- #: plugin/class.seo-ultimate.php:1034
33
- msgid "SEO Settings Help"
34
- msgstr ""
35
-
36
- #: plugin/class.seo-ultimate.php:1036
37
- msgid "The SEO Settings box lets you customize these settings:"
38
- msgstr ""
39
-
40
- #: plugin/class.seo-ultimate.php:1038
41
- msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
42
- msgstr ""
43
-
44
- #: plugin/class.seo-ultimate.php:1093
45
- msgid ""
46
- "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
47
- "1$s to avoid plugin conflicts."
48
- msgstr ""
49
-
50
- #: plugin/class.seo-ultimate.php:1134
51
- msgid "new feature"
52
- msgstr ""
53
-
54
- #: plugin/class.seo-ultimate.php:1134
55
- msgid "new features"
56
- msgstr ""
57
-
58
- #: plugin/class.seo-ultimate.php:1135
59
- msgid "bugfix"
60
- msgstr ""
61
-
62
- #: plugin/class.seo-ultimate.php:1135
63
- msgid "bugfixes"
64
- msgstr ""
65
-
66
- #: plugin/class.seo-ultimate.php:1136
67
- msgid "improvement"
68
- msgstr ""
69
-
70
- #: plugin/class.seo-ultimate.php:1136
71
- msgid "improvements"
72
- msgstr ""
73
-
74
- #: plugin/class.seo-ultimate.php:1137
75
- msgid "security fix"
76
- msgstr ""
77
-
78
- #: plugin/class.seo-ultimate.php:1137
79
- msgid "security fixes"
80
- msgstr ""
81
-
82
- #: plugin/class.seo-ultimate.php:1168
83
- msgid "%d %s"
84
- msgstr ""
85
-
86
- #: plugin/class.seo-ultimate.php:1174
87
- msgid "Upgrade now to get %s. %s."
88
- msgstr ""
89
-
90
- #: plugin/class.seo-ultimate.php:1176
91
- msgid "View changelog"
92
- msgstr ""
93
-
94
- #: plugin/class.seo-ultimate.php:1243 modules/settings/uninstall.php:18
95
- msgid "Uninstall"
96
- msgstr ""
97
-
98
- #: plugin/class.seo-ultimate.php:1263
99
- msgid "Active Modules: "
100
- msgstr ""
101
-
102
- #: plugin/class.seo-ultimate.php:1324
103
  msgid ""
104
- "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
105
- "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
106
- "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
107
- "to everyone."
108
- msgstr ""
109
-
110
- #: plugin/class.seo-ultimate.php:1434
111
- msgid "SEO Settings"
112
- msgstr ""
113
-
114
- #: plugin/su-functions.php:77 includes/jlfunctions/str.php:94
115
- msgid "%s and %s"
116
- msgstr ""
117
-
118
- #: plugin/su-functions.php:80 includes/jlfunctions/str.php:97
119
- msgid ", "
120
- msgstr ""
121
-
122
- #: plugin/su-functions.php:81 includes/jlfunctions/str.php:98
123
- msgid "%s, and %s"
124
- msgstr ""
125
-
126
- #: plugin/class.su-installer.php:9
127
- msgid "Package not available."
128
- msgstr ""
129
-
130
- #: plugin/class.su-installer.php:12
131
- msgid "Removing the current version of the plugin&#8230;"
132
- msgstr ""
133
-
134
- #: plugin/class.su-installer.php:13
135
- msgid "Could not remove the current version of the plugin."
136
- msgstr ""
137
-
138
- #: plugin/class.su-installer.php:17
139
- msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
140
- msgstr ""
141
-
142
- #: plugin/class.su-installer.php:18
143
- msgid "Unpacking the downgrade&#8230;"
144
- msgstr ""
145
-
146
- #: plugin/class.su-installer.php:19
147
- msgid "Installing the downgrade&#8230;"
148
- msgstr ""
149
-
150
- #: plugin/class.su-installer.php:20
151
- msgid "Plugin downgrade failed."
152
- msgstr ""
153
-
154
- #: plugin/class.su-installer.php:21
155
- msgid "Plugin downgraded successfully."
156
- msgstr ""
157
-
158
- #: plugin/class.su-installer.php:24
159
- msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
160
- msgstr ""
161
-
162
- #: plugin/class.su-installer.php:25
163
- msgid "Unpacking the reinstall&#8230;"
164
- msgstr ""
165
-
166
- #: plugin/class.su-installer.php:26
167
- msgid "Reinstalling the current version&#8230;"
168
- msgstr ""
169
-
170
- #: plugin/class.su-installer.php:27
171
- msgid "Plugin reinstallation failed."
172
- msgstr ""
173
-
174
- #: plugin/class.su-installer.php:28
175
- msgid "Plugin reinstalled successfully."
176
- msgstr ""
177
-
178
- #: plugin/class.su-installer.php:32
179
- msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
180
- msgstr ""
181
-
182
- #: plugin/class.su-installer.php:33
183
- msgid "Unpacking the upgrade&#8230;"
184
- msgstr ""
185
-
186
- #: plugin/class.su-installer.php:34
187
- msgid "Installing the upgrade&#8230;"
188
- msgstr ""
189
-
190
- #: plugin/class.su-installer.php:35
191
- msgid "Plugin upgrade failed."
192
- msgstr ""
193
-
194
- #: plugin/class.su-installer.php:36
195
- msgid "Plugin upgraded successfully."
196
- msgstr ""
197
-
198
- #: modules/more-links/more-links.php:12
199
- msgid "More Link Customizer"
200
- msgstr ""
201
-
202
- #: modules/more-links/more-links.php:27
203
- msgid "Default More Link Text"
204
- msgstr ""
205
-
206
- #: modules/more-links/more-links.php:48
207
- msgid "More Link Text:"
208
- msgstr ""
209
-
210
- #: modules/sds-blog/sds-blog.php:12
211
- msgid "Whitepapers"
212
- msgstr ""
213
-
214
- #: modules/sds-blog/sds-blog.php:13
215
- msgid "SEO Design Solutions Whitepapers"
216
- msgstr ""
217
-
218
- #. #-#-#-#-# plugin.pot (SEO Ultimate 4.8) #-#-#-#-#
219
- #. Author of the plugin/theme
220
- #: modules/sds-blog/sds-blog.php:49
221
- msgid "SEO Design Solutions"
222
  msgstr ""
223
 
224
- #: modules/sds-blog/sds-blog.php:50
225
- msgid ""
226
- "The search engine optimization articles below are loaded from the website of "
227
- "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
228
- "an article&#8217;s title to read it."
229
  msgstr ""
230
 
231
- #: modules/linkbox/linkbox.php:12
232
- msgid "Linkbox Inserter"
233
  msgstr ""
234
 
235
- #: modules/linkbox/linkbox.php:18
236
- msgid "Link to this post!"
237
  msgstr ""
238
 
239
- #: modules/linkbox/linkbox.php:45
240
- msgid "At the end of posts"
241
  msgstr ""
242
 
243
- #: modules/linkbox/linkbox.php:46
244
- msgid "At the end of pages"
245
  msgstr ""
246
 
247
- #: modules/linkbox/linkbox.php:47
248
- msgid "When called by the su_linkbox hook"
249
  msgstr ""
250
 
251
- #: modules/linkbox/linkbox.php:48
252
- msgid "Display linkboxes..."
253
  msgstr ""
254
 
255
- #: modules/linkbox/linkbox.php:49
256
- msgid "Linkbox HTML"
257
  msgstr ""
258
 
259
- #: modules/import-aiosp/import-aiosp.php:12
260
- msgid "Import from All in One SEO Pack"
261
  msgstr ""
262
 
263
- #: modules/import-aiosp/import-aiosp.php:13
264
- msgid "AIOSP Import"
265
  msgstr ""
266
 
267
- #: modules/import-aiosp/import-aiosp.php:15
268
- msgid "All in One SEO Pack"
269
  msgstr ""
270
 
271
- #: modules/import-aiosp/import-aiosp.php:16
272
- msgid "AIOSP"
273
  msgstr ""
274
 
275
- #: modules/import-aiosp/import-aiosp.php:17
276
- msgid "Import post data (custom title tags and meta tags)."
277
  msgstr ""
278
 
279
- #: modules/import-aiosp/import-aiosp.php:21
280
  msgid ""
281
- "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
282
- "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
283
- "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
284
- "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
285
- "to be currently installed or activated for the import to take place."
286
  msgstr ""
287
 
288
- #: modules/import-aiosp/import-aiosp.php:23
289
- msgid ""
290
- "The import tool can only move over data from AIOSP version 1.6 or above. If "
291
- "you use an older version of AIOSP, you should update to the latest version "
292
- "first and run AIOSP&#8217;s upgrade process."
293
  msgstr ""
294
 
295
  #: modules/class.su-importmodule.php:49
@@ -404,25 +199,199 @@ msgid_plural ""
404
  msgstr[0] ""
405
  msgstr[1] ""
406
 
407
- #: modules/titles/titles.php:12
408
- msgid "Title Tag Rewriter"
409
  msgstr ""
410
 
411
- #: modules/titles/titles.php:23 modules/meta/meta-descriptions.php:24
412
- msgid "Default Formats"
 
 
413
  msgstr ""
414
 
415
- #: modules/titles/titles.php:24 modules/404s/fofs-settings.php:17
416
- msgid "Settings"
417
  msgstr ""
418
 
419
- #: modules/titles/titles.php:30
420
- msgid "Title Tag"
421
  msgstr ""
422
 
423
- #: modules/titles/titles.php:43
424
- msgid ""
425
- "Convert lowercase category/tag names to title case when used in title tags."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
426
  msgstr ""
427
 
428
  #: modules/titles/titles.php:43
@@ -525,11 +494,11 @@ msgstr ""
525
  msgid "Pagination Title Format"
526
  msgstr ""
527
 
528
- #: modules/titles/titles.php:299
529
  msgid "Title Tag:"
530
  msgstr ""
531
 
532
- #: modules/titles/titles.php:304
533
  msgid ""
534
  "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
535
  "tag. The title appears in visitors&#8217; title bars and in search engine "
@@ -537,190 +506,120 @@ msgid ""
537
  "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
538
  msgstr ""
539
 
540
- #: modules/class.su-module.php:368
541
- msgid ""
542
- "(Note: This translated documentation was designed for an older version of "
543
- "SEO Ultimate and may be outdated.)"
544
- msgstr ""
545
-
546
- #: modules/class.su-module.php:1010
547
- msgid "%s %s|Dropdown Title"
548
- msgstr ""
549
-
550
- #: modules/class.su-module.php:1038
551
- msgid "%1$s | %2$s %3$s by %4$s"
552
  msgstr ""
553
 
554
- #: modules/class.su-module.php:1095
555
- msgid "Name"
556
  msgstr ""
557
 
558
- #: modules/class.su-module.php:1106
559
- msgid "Your site currently doesn&#8217;t have any public items of this type."
 
 
560
  msgstr ""
561
 
562
- #: modules/class.su-module.php:1190
563
- msgid "&laquo;"
564
  msgstr ""
565
 
566
- #: modules/class.su-module.php:1191
567
- msgid "&raquo;"
568
  msgstr ""
569
 
570
- #: modules/class.su-module.php:1198
571
- msgid "Displaying %s&#8211;%s of %s"
572
  msgstr ""
573
 
574
- #: modules/class.su-module.php:1211 modules/404s/fofs-log.php:115
575
- msgid "Actions"
576
  msgstr ""
577
 
578
- #: modules/class.su-module.php:1212
579
- msgid "ID"
580
  msgstr ""
581
 
582
- #: modules/class.su-module.php:1245
583
- msgid "View"
 
584
  msgstr ""
585
 
586
- #: modules/class.su-module.php:1245
587
- msgid "Edit"
588
  msgstr ""
589
 
590
- #: modules/class.su-module.php:1400
591
- msgid "Settings updated."
592
  msgstr ""
593
 
594
- #: modules/class.su-module.php:1424
595
- msgid "Save Changes"
596
  msgstr ""
597
 
598
- #: modules/class.su-module.php:1912
599
  msgid ""
600
- "Are you sure you want to replace the textbox contents with this default "
601
- "value?"
602
  msgstr ""
603
 
604
- #: modules/class.su-module.php:1927 modules/settings/settings-data.php:23
605
- msgid "Reset"
606
  msgstr ""
607
 
608
- #: modules/noindex/noindex.php:12
609
- msgid "Noindex Manager"
610
  msgstr ""
611
 
612
- #: modules/noindex/noindex.php:13
613
- msgid "Noindex"
614
  msgstr ""
615
 
616
- #: modules/noindex/noindex.php:44
617
  msgid ""
618
- "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
619
- "block indexing of the entire site, regardless of which options are set below."
620
  msgstr ""
621
 
622
- #: modules/noindex/noindex.php:47
623
- msgid "Prevent indexing of..."
624
  msgstr ""
625
 
626
- #: modules/noindex/noindex.php:48
627
- msgid "Administration back-end pages"
628
  msgstr ""
629
 
630
- #: modules/noindex/noindex.php:49
631
- msgid "Author archives"
632
  msgstr ""
633
 
634
- #: modules/noindex/noindex.php:50
635
- msgid "Blog search pages"
 
636
  msgstr ""
637
 
638
- #: modules/noindex/noindex.php:51
639
- msgid "Category archives"
640
  msgstr ""
641
 
642
- #: modules/noindex/noindex.php:52
643
- msgid "Comment feeds"
644
- msgstr ""
645
-
646
- #: modules/noindex/noindex.php:53
647
- msgid "Comment subpages"
648
- msgstr ""
649
-
650
- #: modules/noindex/noindex.php:54
651
- msgid "Date-based archives"
652
- msgstr ""
653
-
654
- #: modules/noindex/noindex.php:55
655
- msgid "Subpages of the homepage"
656
- msgstr ""
657
-
658
- #: modules/noindex/noindex.php:56
659
- msgid "Tag archives"
660
- msgstr ""
661
-
662
- #: modules/noindex/noindex.php:57
663
- msgid "User login/registration pages"
664
- msgstr ""
665
-
666
- #: modules/noindex/noindex.php:110
667
- msgid "Noindex: Tell search engines not to index this webpage."
668
- msgstr ""
669
-
670
- #: modules/noindex/noindex.php:111
671
- msgid "Nofollow: Tell search engines not to spider links on this webpage."
672
- msgstr ""
673
-
674
- #: modules/noindex/noindex.php:112
675
- msgid "Meta Robots Tag:"
676
- msgstr ""
677
-
678
- #: modules/meta/meta-descriptions.php:12
679
- msgid "Meta Description Editor"
680
- msgstr ""
681
-
682
- #: modules/meta/meta-descriptions.php:13
683
- msgid "Meta Descriptions"
684
- msgstr ""
685
-
686
- #: modules/meta/meta-descriptions.php:25 modules/meta/meta-keywords.php:25
687
- msgid "Blog Homepage"
688
- msgstr ""
689
-
690
- #: modules/meta/meta-descriptions.php:31
691
- msgid "Meta Description"
692
- msgstr ""
693
-
694
- #: modules/meta/meta-descriptions.php:46
695
- msgid "Post Description Format"
696
- msgstr ""
697
-
698
- #: modules/meta/meta-descriptions.php:53
699
- msgid "Blog Homepage Meta Description"
700
- msgstr ""
701
-
702
- #: modules/meta/meta-descriptions.php:55
703
- msgid "Use this blog&#8217s tagline as the default homepage description."
704
  msgstr ""
705
 
706
- #: modules/meta/meta-descriptions.php:56
707
- msgid "Default Value"
708
  msgstr ""
709
 
710
- #: modules/meta/meta-descriptions.php:95
711
- msgid "Meta Description:"
712
  msgstr ""
713
 
714
- #: modules/meta/meta-descriptions.php:98
715
- msgid "You&#8217;ve entered %s characters. Most search engines use up to 160."
716
  msgstr ""
717
 
718
- #: modules/meta/meta-descriptions.php:106
719
- msgid ""
720
- "<strong>Description</strong> &mdash; The value of the meta description tag. "
721
- "The description will often appear underneath the title in search engine "
722
- "results. Writing an accurate, attention-grabbing description for every post "
723
- "is important to ensuring a good search results clickthrough rate."
724
  msgstr ""
725
 
726
  #: modules/meta/meta-keywords.php:12
@@ -735,6 +634,10 @@ msgstr ""
735
  msgid "Default Values"
736
  msgstr ""
737
 
 
 
 
 
738
  #: modules/meta/meta-keywords.php:38
739
  msgid "Sitewide Keywords"
740
  msgstr ""
@@ -806,246 +709,334 @@ msgstr ""
806
  msgid "Don&#8217t cache or archive this site."
807
  msgstr ""
808
 
809
- #: modules/canonical/canonical.php:12
810
- msgid "Canonicalizer"
811
  msgstr ""
812
 
813
- #: modules/canonical/canonical.php:33
814
- msgid "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> tags."
815
  msgstr ""
816
 
817
- #: modules/canonical/canonical.php:34
818
- msgid "Redirect requests for nonexistent pagination."
819
  msgstr ""
820
 
821
- #: modules/competition-queries/competition-queries.php:12
822
- msgid "Competition Researcher"
823
  msgstr ""
824
 
825
- #: modules/competition-queries/competition-queries.php:13
826
- msgid "Comp. Researcher"
827
  msgstr ""
828
 
829
- #: modules/competition-queries/competition-queries.php:17
830
- msgid ""
831
- "The Competition Researcher provides you with easy access to various search "
832
- "engine tools which you can use to research multiple search queries or URLs."
833
  msgstr ""
834
 
835
- #: modules/competition-queries/competition-queries.php:21
836
- msgid "Step 1: Choose Your Research Tool"
837
  msgstr ""
838
 
839
- #: modules/competition-queries/competition-queries.php:25
840
- msgid "Keywords"
841
  msgstr ""
842
 
843
- #: modules/competition-queries/competition-queries.php:25
844
- msgid "Normal Search"
845
  msgstr ""
846
 
847
- #: modules/competition-queries/competition-queries.php:25
848
- msgid "Find out how many pages contain the words in each query"
 
 
 
 
849
  msgstr ""
850
 
851
- #: modules/competition-queries/competition-queries.php:26
852
- msgid "Phrase Match"
853
  msgstr ""
854
 
855
- #: modules/competition-queries/competition-queries.php:26
856
- msgid ""
857
- "Find out how many &#8220;actual&#8221; pages are competing for each query"
858
  msgstr ""
859
 
860
- #: modules/competition-queries/competition-queries.php:27
861
- msgid "Allinanchor"
862
  msgstr ""
863
 
864
- #: modules/competition-queries/competition-queries.php:27
865
- msgid "Find out which sites have the most links for each query"
866
  msgstr ""
867
 
868
- #: modules/competition-queries/competition-queries.php:28
869
- msgid "Allintitle"
870
  msgstr ""
871
 
872
- #: modules/competition-queries/competition-queries.php:28
873
  msgid ""
874
- "Find out which sites have the highest relevance in the title for each query"
 
 
 
 
875
  msgstr ""
876
 
877
- #: modules/competition-queries/competition-queries.php:29
878
- msgid "Allintext"
 
 
 
879
  msgstr ""
880
 
881
- #: modules/competition-queries/competition-queries.php:29
882
- msgid "Find out which sites have the most relevant content/text on their pages"
883
  msgstr ""
884
 
885
- #: modules/competition-queries/competition-queries.php:30
886
- msgid "Allinurl"
887
  msgstr ""
888
 
889
- #: modules/competition-queries/competition-queries.php:30
 
 
 
 
 
 
890
  msgid ""
891
- "Find out which sites have the most relevant naming conventions for each "
892
- "keyword"
 
893
  msgstr ""
894
 
895
- #: modules/competition-queries/competition-queries.php:32
896
- msgid "URLs"
897
  msgstr ""
898
 
899
- #: modules/competition-queries/competition-queries.php:32
900
- msgid "Site"
901
  msgstr ""
902
 
903
- #: modules/competition-queries/competition-queries.php:32
904
- msgid "Find out how many pages are indexed for each domain"
 
 
 
 
 
905
  msgstr ""
906
 
907
- #: modules/competition-queries/competition-queries.php:33
908
- #: modules/competition-queries/competition-queries.php:38
909
- msgid "Inbound Links"
 
910
  msgstr ""
911
 
912
- #: modules/competition-queries/competition-queries.php:33
913
- msgid "Find out how many sites link to the domains"
914
  msgstr ""
915
 
916
- #: modules/competition-queries/competition-queries.php:34
917
- #: modules/competition-queries/competition-queries.php:38
918
- msgid "Outbound Links"
919
  msgstr ""
920
 
921
- #: modules/competition-queries/competition-queries.php:34
922
- msgid "Find out how many sites the domains link to"
923
  msgstr ""
924
 
925
- #: modules/competition-queries/competition-queries.php:56
926
- msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
927
  msgstr ""
928
 
929
- #: modules/competition-queries/competition-queries.php:58
930
- msgid "(Type in one per line)"
931
  msgstr ""
932
 
933
- #: modules/competition-queries/competition-queries.php:60
934
- msgid "Step 3: Set Options and Submit"
935
  msgstr ""
936
 
937
- #: modules/competition-queries/competition-queries.php:62
938
- #: modules/site-keyword-queries/site-keyword-queries.php:28
939
- msgid "Show 100 results per page"
940
  msgstr ""
941
 
942
- #: modules/competition-queries/competition-queries.php:64
943
- #: modules/site-keyword-queries/site-keyword-queries.php:30
944
- msgid "Use Google&#8217;s minimal mode"
945
  msgstr ""
946
 
947
- #: modules/competition-queries/competition-queries.php:70
948
- #: modules/site-keyword-queries/site-keyword-queries.php:33
949
- msgid "Submit"
950
  msgstr ""
951
 
952
- #: modules/site-keyword-queries/site-keyword-queries.php:12
953
- msgid "Internal Relevance Researcher"
954
  msgstr ""
955
 
956
- #: modules/site-keyword-queries/site-keyword-queries.php:13
957
- msgid "Int. Rel. Researcher"
958
  msgstr ""
959
 
960
- #: modules/site-keyword-queries/site-keyword-queries.php:21
961
- msgid "Step 1: Enter Keywords"
962
  msgstr ""
963
 
964
- #: modules/site-keyword-queries/site-keyword-queries.php:23
965
- msgid "(Type one keyword per line)"
966
  msgstr ""
967
 
968
- #: modules/site-keyword-queries/site-keyword-queries.php:25
969
- msgid "Step 2: Set Options and Submit"
970
  msgstr ""
971
 
972
- #: modules/site-keyword-queries/site-keyword-queries.php:27
973
- msgid "Put keywords in quotes"
974
  msgstr ""
975
 
976
- #: modules/user-code/user-code.php:12
977
- msgid "Code Inserter"
978
  msgstr ""
979
 
980
- #: modules/user-code/user-code.php:27
981
- msgid "Everywhere"
982
  msgstr ""
983
 
984
- #: modules/user-code/user-code.php:34
985
- msgid "&lt;head&gt; Tag"
986
  msgstr ""
987
 
988
- #: modules/user-code/user-code.php:35
989
- msgid "Before Item Content"
990
  msgstr ""
991
 
992
- #: modules/user-code/user-code.php:36
993
- msgid "After Item Content"
994
  msgstr ""
995
 
996
- #: modules/user-code/user-code.php:37
997
- msgid "Footer"
998
  msgstr ""
999
 
1000
- #: modules/user-code/user-code.php:51
1001
- msgid "Code Inserter module"
1002
  msgstr ""
1003
 
1004
- #: modules/modules/modules.php:12
1005
- msgid "Module Manager"
1006
  msgstr ""
1007
 
1008
- #: modules/modules/modules.php:13
1009
- msgid "Modules"
1010
  msgstr ""
1011
 
1012
- #: modules/modules/modules.php:33
1013
- msgid ""
1014
- "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
1015
- "&#8221; By default, most of these modules are listed in the &#8220;"
1016
- "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
1017
- "you can view documentation by clicking the tabs in the upper-right-hand "
1018
- "corner of your administration screen."
1019
  msgstr ""
1020
 
1021
- #: modules/modules/modules.php:35
1022
  msgid ""
1023
- "The Module Manager lets you disable or hide modules you don&#8217;t use. "
1024
- "You can also silence modules from displaying bubble alerts on the menu."
1025
  msgstr ""
1026
 
1027
- #: modules/modules/modules.php:41
1028
- msgid "Status"
1029
  msgstr ""
1030
 
1031
- #: modules/modules/modules.php:42
1032
- msgid "Module"
1033
  msgstr ""
1034
 
1035
- #: modules/modules/modules.php:55
1036
- msgid "Enabled"
1037
  msgstr ""
1038
 
1039
- #: modules/modules/modules.php:56
1040
- msgid "Silenced"
1041
  msgstr ""
1042
 
1043
- #: modules/modules/modules.php:57
1044
- msgid "Hidden"
1045
  msgstr ""
1046
 
1047
- #: modules/modules/modules.php:58
1048
- msgid "Disabled"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1049
  msgstr ""
1050
 
1051
  #: modules/files/files.php:14
@@ -1103,12 +1094,44 @@ msgid ""
1103
  "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1104
  msgstr ""
1105
 
1106
- #: modules/settings/settings.php:12
1107
- msgid "Plugin Settings"
1108
  msgstr ""
1109
 
1110
- #: modules/settings/settings.php:13
1111
- msgid "SEO Ultimate Plugin Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1112
  msgstr ""
1113
 
1114
  #: modules/settings/settings-data.php:16
@@ -1127,50 +1150,50 @@ msgstr ""
1127
  msgid "Export"
1128
  msgstr ""
1129
 
1130
- #: modules/settings/settings-data.php:64
1131
  msgid "Settings successfully imported."
1132
  msgstr ""
1133
 
1134
- #: modules/settings/settings-data.php:66
1135
  msgid ""
1136
  "The uploaded file is not in the proper format. Settings could not be "
1137
  "imported."
1138
  msgstr ""
1139
 
1140
- #: modules/settings/settings-data.php:68
1141
  msgid "The settings file could not be uploaded successfully."
1142
  msgstr ""
1143
 
1144
- #: modules/settings/settings-data.php:71
1145
  msgid ""
1146
  "Settings could not be imported because no settings file was selected. Please "
1147
  "click the &#8220;Browse&#8221; button and select a file to import."
1148
  msgstr ""
1149
 
1150
- #: modules/settings/settings-data.php:112
1151
  msgid ""
1152
  "The uploaded file is not in the proper format. Links could not be imported."
1153
  msgstr ""
1154
 
1155
- #: modules/settings/settings-data.php:151
1156
  msgid "Links successfully imported."
1157
  msgstr ""
1158
 
1159
- #: modules/settings/settings-data.php:154
1160
  msgid "The CSV file could not be uploaded successfully."
1161
  msgstr ""
1162
 
1163
- #: modules/settings/settings-data.php:157
1164
  msgid ""
1165
  "Links could not be imported because no CSV file was selected. Please click "
1166
  "the &#8220;Browse&#8221; button and select a file to import."
1167
  msgstr ""
1168
 
1169
- #: modules/settings/settings-data.php:167
1170
  msgid "Import SEO Ultimate Settings File"
1171
  msgstr ""
1172
 
1173
- #: modules/settings/settings-data.php:169
1174
  msgid ""
1175
  "You can use this form to upload and import an SEO Ultimate settings file "
1176
  "stored on your computer. (These files can be created using the Export tool.) "
@@ -1178,21 +1201,21 @@ msgid ""
1178
  "in the file."
1179
  msgstr ""
1180
 
1181
- #: modules/settings/settings-data.php:173
1182
  msgid ""
1183
  "Are you sure you want to import this settings file? This will overwrite your "
1184
  "current settings and cannot be undone."
1185
  msgstr ""
1186
 
1187
- #: modules/settings/settings-data.php:174
1188
  msgid "Import Settings File"
1189
  msgstr ""
1190
 
1191
- #: modules/settings/settings-data.php:180
1192
  msgid "Import Deeplink Juggernaut CSV File"
1193
  msgstr ""
1194
 
1195
- #: modules/settings/settings-data.php:182
1196
  msgid ""
1197
  "You can use this form to upload and import a Deeplink Juggernaut CSV file "
1198
  "stored on your computer. (These files can be created using the Export tool.) "
@@ -1200,38 +1223,38 @@ msgid ""
1200
  "the file."
1201
  msgstr ""
1202
 
1203
- #: modules/settings/settings-data.php:186
1204
  msgid ""
1205
  "Are you sure you want to import this CSV file? This will overwrite your "
1206
  "current Deeplink Juggernaut links and cannot be undone."
1207
  msgstr ""
1208
 
1209
- #: modules/settings/settings-data.php:187
1210
  msgid "Import CSV File"
1211
  msgstr ""
1212
 
1213
- #: modules/settings/settings-data.php:202
1214
  msgid "Import from Other Plugins"
1215
  msgstr ""
1216
 
1217
- #: modules/settings/settings-data.php:204
1218
  msgid ""
1219
  "You can import settings and data from these plugins. Clicking a plugin&#8217;"
1220
  "s name will take you to the importer page, where you can customize "
1221
  "parameters and start the import."
1222
  msgstr ""
1223
 
1224
- #: modules/settings/settings-data.php:224
1225
  msgid "Export SEO Ultimate Settings File"
1226
  msgstr ""
1227
 
1228
- #: modules/settings/settings-data.php:226
1229
  msgid ""
1230
  "You can use this export tool to download an SEO Ultimate settings file to "
1231
  "your computer."
1232
  msgstr ""
1233
 
1234
- #: modules/settings/settings-data.php:228
1235
  msgid ""
1236
  "A settings file includes the data of every checkbox and textbox of every "
1237
  "installed module. It does NOT include site-specific data like logged 404s or "
@@ -1239,15 +1262,15 @@ msgid ""
1239
  "database backup, however)."
1240
  msgstr ""
1241
 
1242
- #: modules/settings/settings-data.php:231
1243
  msgid "Download Settings File"
1244
  msgstr ""
1245
 
1246
- #: modules/settings/settings-data.php:236
1247
  msgid "Export Deeplink Juggernaut CSV File"
1248
  msgstr ""
1249
 
1250
- #: modules/settings/settings-data.php:238
1251
  msgid ""
1252
  "You can use this export tool to download a CSV file (comma-separated values "
1253
  "file) that contains your Deeplink Juggernaut links. Once you download this "
@@ -1256,33 +1279,71 @@ msgid ""
1256
  "the Import tool."
1257
  msgstr ""
1258
 
1259
- #: modules/settings/settings-data.php:241
1260
  msgid "Download CSV File"
1261
  msgstr ""
1262
 
1263
- #: modules/settings/settings-data.php:248
1264
  msgid "All settings have been erased and defaults have been restored."
1265
  msgstr ""
1266
 
1267
- #: modules/settings/settings-data.php:250
1268
  msgid ""
1269
  "You can erase all your SEO Ultimate settings and restore them to &#8220;"
1270
  "factory defaults&#8221; by clicking the button below."
1271
  msgstr ""
1272
 
1273
- #: modules/settings/settings-data.php:253
1274
  msgid ""
1275
  "Are you sure you want to erase all module settings? This cannot be undone."
1276
  msgstr ""
1277
 
1278
- #: modules/settings/settings-data.php:254
1279
  msgid "Restore Default Settings"
1280
  msgstr ""
1281
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1282
  #: modules/settings/uninstall.php:17
1283
  msgid "Uninstaller"
1284
  msgstr ""
1285
 
 
 
 
 
1286
  #: modules/settings/uninstall.php:27
1287
  msgid ""
1288
  "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
@@ -1319,36 +1380,16 @@ msgstr ""
1319
  msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1320
  msgstr ""
1321
 
1322
- #: modules/settings/global-settings.php:18
1323
- msgid "Global Settings"
1324
  msgstr ""
1325
 
1326
- #: modules/settings/global-settings.php:40
1327
- msgid "Enable nofollow&#8217;d attribution link"
1328
  msgstr ""
1329
 
1330
- #: modules/settings/global-settings.php:41
1331
- msgid "Enable attribution link CSS styling"
1332
- msgstr ""
1333
-
1334
- #: modules/settings/global-settings.php:42
1335
- msgid "Notify me about unnecessary active plugins"
1336
- msgstr ""
1337
-
1338
- #: modules/settings/global-settings.php:43
1339
- msgid "Insert comments around HTML code insertions"
1340
- msgstr ""
1341
-
1342
- #: modules/settings/install.php:18
1343
- msgid "Upgrade/Downgrade/Reinstall"
1344
- msgstr ""
1345
-
1346
- #: modules/settings/install.php:19
1347
- msgid "Installer"
1348
- msgstr ""
1349
-
1350
- #: modules/settings/install.php:23 modules/settings/install.php:48
1351
- msgid "Upgrade"
1352
  msgstr ""
1353
 
1354
  #: modules/settings/install.php:24 modules/settings/install.php:71
@@ -1391,7 +1432,9 @@ msgid ""
1391
  msgstr ""
1392
 
1393
  #: modules/settings/install.php:74
1394
- msgid "Downgrading to versions earlier than %s is not supported."
 
 
1395
  msgstr ""
1396
 
1397
  #: modules/settings/install.php:76
@@ -1432,416 +1475,379 @@ msgstr ""
1432
  msgid "Upgrade to SEO Ultimate %s"
1433
  msgstr ""
1434
 
1435
- #: modules/404s/fofs.php:11
1436
- msgid "404 Monitor"
1437
- msgstr ""
1438
-
1439
- #: modules/404s/fofs-log.php:16
1440
- msgid "404 Monitor Log"
1441
  msgstr ""
1442
 
1443
- #: modules/404s/fofs-log.php:17
1444
- msgid "Log"
1445
  msgstr ""
1446
 
1447
- #: modules/404s/fofs-log.php:116
1448
- msgid "Hits"
1449
  msgstr ""
1450
 
1451
- #: modules/404s/fofs-log.php:117
1452
- msgid "URL with 404 Error"
1453
  msgstr ""
1454
 
1455
- #: modules/404s/fofs-log.php:118
1456
- msgid "Date of Most Recent Hit"
1457
  msgstr ""
1458
 
1459
- #: modules/404s/fofs-log.php:119
1460
- msgid "Referers"
1461
  msgstr ""
1462
 
1463
- #: modules/404s/fofs-log.php:120 modules/404s/fofs-log.php:223
1464
- msgid "User Agents"
1465
  msgstr ""
1466
 
1467
- #: modules/404s/fofs-log.php:136
1468
- msgid ""
1469
- "New 404 errors will not be recorded because 404 logging is disabled on the "
1470
- "Settings tab."
1471
  msgstr ""
1472
 
1473
- #: modules/404s/fofs-log.php:143
1474
- msgid "The log entry was successfully deleted."
1475
  msgstr ""
1476
 
1477
- #: modules/404s/fofs-log.php:145
1478
- msgid "This log entry has already been deleted."
 
 
1479
  msgstr ""
1480
 
1481
- #: modules/404s/fofs-log.php:154
1482
- msgid "The log was successfully cleared."
1483
  msgstr ""
1484
 
1485
- #: modules/404s/fofs-log.php:158
1486
- msgid "No 404 errors in the log."
1487
  msgstr ""
1488
 
1489
- #: modules/404s/fofs-log.php:182
1490
- msgid "Open URL in new window (will not be logged)"
1491
  msgstr ""
1492
 
1493
- #: modules/404s/fofs-log.php:183
1494
- msgid "Query Google for cached version of URL (opens in new window)"
1495
  msgstr ""
1496
 
1497
- #: modules/404s/fofs-log.php:184
1498
- msgid "Remove this URL from the log"
1499
  msgstr ""
1500
 
1501
- #: modules/404s/fofs-log.php:187
1502
- msgid "%s at %s"
1503
  msgstr ""
1504
 
1505
- #: modules/404s/fofs-log.php:191
1506
- msgid "View list of referring URLs"
1507
  msgstr ""
1508
 
1509
- #: modules/404s/fofs-log.php:192
1510
- msgid "View list of user agents"
1511
  msgstr ""
1512
 
1513
- #: modules/404s/fofs-log.php:202
1514
- msgid "Referring URLs"
1515
  msgstr ""
1516
 
1517
- #: modules/404s/fofs-log.php:203 modules/404s/fofs-log.php:224
1518
- msgid "Hide list"
1519
  msgstr ""
1520
 
1521
- #: modules/404s/fofs-log.php:254
1522
- msgid "Are you sure you want to delete all 404 log entries?"
1523
  msgstr ""
1524
 
1525
- #: modules/404s/fofs-log.php:256
1526
- msgid "Clear Log"
1527
  msgstr ""
1528
 
1529
- #: modules/404s/fofs-settings.php:16
1530
- msgid "404 Monitor Settings"
1531
  msgstr ""
1532
 
1533
- #: modules/404s/fofs-settings.php:33
1534
- msgid "Continue monitoring for new 404 errors"
1535
  msgstr ""
1536
 
1537
- #: modules/404s/fofs-settings.php:33
1538
- msgid "Monitoring Settings"
1539
  msgstr ""
1540
 
1541
- #: modules/404s/fofs-settings.php:35
1542
- msgid "Only log these types of 404 errors:"
1543
  msgstr ""
1544
 
1545
- #: modules/404s/fofs-settings.php:36
1546
- msgid "404s generated by search engine spiders"
1547
  msgstr ""
1548
 
1549
- #: modules/404s/fofs-settings.php:37
1550
- msgid "404s with referring URLs"
 
 
1551
  msgstr ""
1552
 
1553
- #: modules/404s/fofs-settings.php:38
1554
- msgid "Log Restrictions"
1555
  msgstr ""
1556
 
1557
- #: modules/404s/fofs-settings.php:39
1558
- msgid "Maximum Log Entries"
1559
  msgstr ""
1560
 
1561
- #: modules/404s/fofs-settings.php:40
1562
- msgid "URLs to Ignore"
1563
  msgstr ""
1564
 
1565
- #: modules/404s/fofs-settings.php:40
1566
- msgid "(Use * as wildcard)"
1567
  msgstr ""
1568
 
1569
- #: modules/slugs/slugs.php:12
1570
- msgid "Slug Optimizer"
1571
  msgstr ""
1572
 
1573
- #: modules/slugs/slugs.php:16
1574
- msgid "Words to Remove"
1575
  msgstr ""
1576
 
1577
- #: modules/internal-link-aliases/internal-link-aliases.php:13
1578
- msgid "Link Mask Generator"
1579
  msgstr ""
1580
 
1581
- #: modules/internal-link-aliases/internal-link-aliases.php:25
1582
- msgid "Link Masks"
1583
  msgstr ""
1584
 
1585
- #: modules/internal-link-aliases/internal-link-aliases.php:28
1586
  #: modules/autolinks/content-autolinks.php:196
1587
- msgid "URL"
1588
- msgstr ""
1589
-
1590
- #: modules/internal-link-aliases/internal-link-aliases.php:28
1591
- msgid "Mask URL"
1592
- msgstr ""
1593
-
1594
- #: modules/internal-link-aliases/internal-link-aliases.php:48
1595
- msgid ""
1596
- "You can stop search engines from following a link by typing in a mask for "
1597
- "its URL."
1598
- msgstr ""
1599
-
1600
- #: modules/internal-link-aliases/internal-link-aliases.php:100
1601
- msgid "Added by Link Alias Generator (LAG) module"
1602
- msgstr ""
1603
-
1604
- #: modules/internal-link-aliases/internal-link-aliases.php:109
1605
- msgid "End LAG"
1606
- msgstr ""
1607
-
1608
- #: modules/rich-snippets/rich-snippets.php:12
1609
- msgid "Rich Snippet Creator"
1610
- msgstr ""
1611
-
1612
- #: modules/rich-snippets/rich-snippets.php:17
1613
- msgid ""
1614
- "Reviews\n"
1615
- "Review"
1616
  msgstr ""
1617
 
1618
- #: modules/rich-snippets/rich-snippets.php:28
1619
- msgid "Data Format"
1620
  msgstr ""
1621
 
1622
- #: modules/rich-snippets/rich-snippets.php:29
1623
- msgid "Categories/Tags That Indicate Reviews"
1624
  msgstr ""
1625
 
1626
- #: modules/rich-snippets/rich-snippets.php:37
1627
- msgid "Microformats (recommended)"
1628
  msgstr ""
1629
 
1630
- #: modules/rich-snippets/rich-snippets.php:43
1631
- msgid "HTML5 Microdata"
1632
  msgstr ""
1633
 
1634
- #: modules/rich-snippets/rich-snippets.php:49
1635
- msgid "RDFa"
1636
  msgstr ""
1637
 
1638
- #: modules/rich-snippets/rich-snippets.php:62
1639
- #: modules/rich-snippets/rich-snippets.php:218
1640
- msgid "Review"
1641
  msgstr ""
1642
 
1643
- #: modules/rich-snippets/rich-snippets.php:70
1644
- msgid "Star Rating"
 
 
 
 
 
 
 
1645
  msgstr ""
1646
 
1647
- #: modules/rich-snippets/rich-snippets.php:79
1648
- msgid "Review Author"
1649
  msgstr ""
1650
 
1651
- #: modules/rich-snippets/rich-snippets.php:85
1652
- msgid "Date Reviewed"
1653
  msgstr ""
1654
 
1655
- #: modules/rich-snippets/rich-snippets.php:217
1656
- #: modules/rich-snippets/rich-snippets.php:223
1657
- msgid "None"
1658
  msgstr ""
1659
 
1660
- #: modules/rich-snippets/rich-snippets.php:219
1661
- msgid "Rich Snippet Type:"
1662
  msgstr ""
1663
 
1664
- #: modules/rich-snippets/rich-snippets.php:224
1665
- msgid "0.5 stars"
 
 
1666
  msgstr ""
1667
 
1668
- #: modules/rich-snippets/rich-snippets.php:225
1669
- msgid "1 star"
1670
  msgstr ""
1671
 
1672
- #: modules/rich-snippets/rich-snippets.php:226
1673
- msgid "1.5 stars"
1674
  msgstr ""
1675
 
1676
- #: modules/rich-snippets/rich-snippets.php:227
1677
- msgid "2 stars"
1678
  msgstr ""
1679
 
1680
- #: modules/rich-snippets/rich-snippets.php:228
1681
- msgid "2.5 stars"
1682
  msgstr ""
1683
 
1684
- #: modules/rich-snippets/rich-snippets.php:229
1685
- msgid "3 stars"
1686
  msgstr ""
1687
 
1688
- #: modules/rich-snippets/rich-snippets.php:230
1689
- msgid "3.5 stars"
1690
  msgstr ""
1691
 
1692
- #: modules/rich-snippets/rich-snippets.php:231
1693
- msgid "4 stars"
1694
  msgstr ""
1695
 
1696
- #: modules/rich-snippets/rich-snippets.php:232
1697
- msgid "4.5 stars"
1698
  msgstr ""
1699
 
1700
- #: modules/rich-snippets/rich-snippets.php:233
1701
- msgid "5 stars"
1702
  msgstr ""
1703
 
1704
- #: modules/rich-snippets/rich-snippets.php:234
1705
- msgid "Star Rating for Reviewed Item:"
1706
  msgstr ""
1707
 
1708
- #: modules/sharing-buttons/sharing-buttons.php:12
1709
- msgid "Sharing Facilitator"
1710
  msgstr ""
1711
 
1712
- #: modules/sharing-buttons/sharing-buttons.php:22
1713
- msgid "Bookmark and Share"
1714
  msgstr ""
1715
 
1716
- #: modules/sharing-buttons/sharing-buttons.php:28
1717
- msgid "Providers"
1718
  msgstr ""
1719
 
1720
- #: modules/sharing-buttons/sharing-buttons.php:34
1721
- msgid "Which provider would you like to use for your sharing buttons?"
1722
  msgstr ""
1723
 
1724
- #: modules/sharing-buttons/sharing-buttons.php:36
1725
- msgid "None; disable sharing buttons"
1726
  msgstr ""
1727
 
1728
- #: modules/sharing-buttons/sharing-buttons.php:37
1729
- msgid "Use the ShareThis button"
1730
  msgstr ""
1731
 
1732
- #: modules/sharing-buttons/sharing-buttons.php:38
1733
- msgid "Use the AddThis button"
1734
  msgstr ""
1735
 
1736
- #: modules/autolinks/autolinks.php:11
1737
- msgid "Deeplink Juggernaut"
1738
  msgstr ""
1739
 
1740
- #: modules/autolinks/content-autolinks-settings.php:16
1741
- msgid "Content Deeplink Juggernaut Settings"
1742
  msgstr ""
1743
 
1744
- #: modules/autolinks/content-autolinks-settings.php:17
1745
- msgid "Content Link Settings"
1746
  msgstr ""
1747
 
1748
- #: modules/autolinks/content-autolinks-settings.php:21
1749
- msgid "Allow posts to link to themselves."
1750
  msgstr ""
1751
 
1752
- #: modules/autolinks/content-autolinks-settings.php:22
1753
- msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1754
  msgstr ""
1755
 
1756
- #: modules/autolinks/content-autolinks-settings.php:23
1757
- msgid ""
1758
- "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1759
- "etc."
1760
  msgstr ""
1761
 
1762
- #: modules/autolinks/content-autolinks.php:16
1763
- msgid "Content Deeplink Juggernaut"
1764
  msgstr ""
1765
 
1766
- #: modules/autolinks/content-autolinks.php:17
1767
- msgid "Content Links"
1768
  msgstr ""
1769
 
1770
- #: modules/autolinks/content-autolinks.php:100
1771
  msgid ""
1772
- "The Content Links section of Deeplink Juggernaut lets you automatically link "
1773
- "a certain word or phrase in your post/page content to a URL you specify."
1774
- msgstr ""
1775
-
1776
- #: modules/autolinks/content-autolinks.php:136
1777
- msgid "Edit Existing Links"
1778
- msgstr ""
1779
-
1780
- #: modules/autolinks/content-autolinks.php:140
1781
- msgid "Add a New Link"
1782
  msgstr ""
1783
 
1784
- #: modules/autolinks/content-autolinks.php:148
1785
- msgid "Anchor Text"
1786
  msgstr ""
1787
 
1788
- #: modules/autolinks/content-autolinks.php:149
1789
- msgid "Destination Type"
1790
  msgstr ""
1791
 
1792
- #: modules/autolinks/content-autolinks.php:150
1793
- msgid "Destination"
1794
  msgstr ""
1795
 
1796
- #: modules/autolinks/content-autolinks.php:151
1797
- msgid "Title Attribute"
1798
  msgstr ""
1799
 
1800
- #: modules/autolinks/content-autolinks.php:152
1801
- msgid "Options"
1802
  msgstr ""
1803
 
1804
- #: modules/autolinks/content-autolinks.php:154
1805
- msgid "Delete"
1806
  msgstr ""
1807
 
1808
- #: modules/autolinks/content-autolinks.php:196
1809
- msgid "Custom"
1810
  msgstr ""
1811
 
1812
- #: modules/autolinks/content-autolinks.php:197
1813
- msgid "Content Items"
1814
  msgstr ""
1815
 
1816
- #: modules/autolinks/content-autolinks.php:204
1817
- msgid "Nofollow"
1818
  msgstr ""
1819
 
1820
- #: modules/autolinks/content-autolinks.php:205
1821
- msgid "New window"
1822
  msgstr ""
1823
 
1824
- #: modules/autolinks/content-autolinks.php:269
1825
- msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
1826
  msgstr ""
1827
 
1828
- #: modules/autolinks/content-autolinks.php:270
1829
- msgid "Don&#8217;t add autolinks to anchor texts found in this post."
1830
  msgstr ""
1831
 
1832
- #: modules/autolinks/content-autolinks.php:270
1833
- msgid "Autolink Exclusion:"
 
 
 
 
1834
  msgstr ""
1835
 
1836
- #: modules/autolinks/content-autolinks.php:275
1837
- msgid ""
1838
- "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
1839
- "into this box, Deeplink Juggernaut will search for that anchor in all your "
1840
- "other posts and link it to this post. For example, if the post you&#8217;re "
1841
- "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
1842
- "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
1843
- "Deeplink Juggernaut will automatically build internal links to this post "
1844
- "with that anchor text (assuming other posts contain that text)."
1845
  msgstr ""
1846
 
1847
  #: includes/jlwp/functions.php:56
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEO Ultimate 5.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
+ "POT-Creation-Date: 2011-05-13 21:55:20+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
+ #: modules/class.su-module.php:368
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:971
29
+ msgid "%s %s|Dropdown Title"
 
 
 
30
  msgstr ""
31
 
32
+ #: modules/class.su-module.php:999
33
+ msgid "%1$s | %2$s %3$s by %4$s"
34
  msgstr ""
35
 
36
+ #: modules/class.su-module.php:1056
37
+ msgid "Name"
38
  msgstr ""
39
 
40
+ #: modules/class.su-module.php:1067
41
+ msgid "Your site currently doesn&#8217;t have any public items of this type."
42
  msgstr ""
43
 
44
+ #: modules/class.su-module.php:1150
45
+ msgid "&laquo;"
46
  msgstr ""
47
 
48
+ #: modules/class.su-module.php:1151
49
+ msgid "&raquo;"
50
  msgstr ""
51
 
52
+ #: modules/class.su-module.php:1158
53
+ msgid "Displaying %s&#8211;%s of %s"
54
  msgstr ""
55
 
56
+ #: modules/class.su-module.php:1171 modules/404s/fofs-log.php:115
57
+ msgid "Actions"
58
  msgstr ""
59
 
60
+ #: modules/class.su-module.php:1172
61
+ msgid "ID"
62
  msgstr ""
63
 
64
+ #: modules/class.su-module.php:1205
65
+ msgid "View"
66
  msgstr ""
67
 
68
+ #: modules/class.su-module.php:1205
69
+ msgid "Edit"
70
  msgstr ""
71
 
72
+ #: modules/class.su-module.php:1360
73
+ msgid "Settings updated."
74
  msgstr ""
75
 
76
+ #: modules/class.su-module.php:1381
77
+ msgid "Save Changes"
78
  msgstr ""
79
 
80
+ #: modules/class.su-module.php:1869
81
  msgid ""
82
+ "Are you sure you want to replace the textbox contents with this default "
83
+ "value?"
 
 
 
84
  msgstr ""
85
 
86
+ #: modules/class.su-module.php:1884 modules/settings/settings-data.php:23
87
+ msgid "Reset"
 
 
 
88
  msgstr ""
89
 
90
  #: modules/class.su-importmodule.php:49
199
  msgstr[0] ""
200
  msgstr[1] ""
201
 
202
+ #: modules/rich-snippets/rich-snippets.php:12
203
+ msgid "Rich Snippet Creator"
204
  msgstr ""
205
 
206
+ #: modules/rich-snippets/rich-snippets.php:17
207
+ msgid ""
208
+ "Reviews\n"
209
+ "Review"
210
  msgstr ""
211
 
212
+ #: modules/rich-snippets/rich-snippets.php:28
213
+ msgid "Data Format"
214
  msgstr ""
215
 
216
+ #: modules/rich-snippets/rich-snippets.php:29
217
+ msgid "Categories/Tags That Indicate Reviews"
218
  msgstr ""
219
 
220
+ #: modules/rich-snippets/rich-snippets.php:37
221
+ msgid "Microformats (recommended)"
222
+ msgstr ""
223
+
224
+ #: modules/rich-snippets/rich-snippets.php:43
225
+ msgid "HTML5 Microdata"
226
+ msgstr ""
227
+
228
+ #: modules/rich-snippets/rich-snippets.php:49
229
+ msgid "RDFa"
230
+ msgstr ""
231
+
232
+ #: modules/rich-snippets/rich-snippets.php:62
233
+ #: modules/rich-snippets/rich-snippets.php:218
234
+ msgid "Review"
235
+ msgstr ""
236
+
237
+ #: modules/rich-snippets/rich-snippets.php:70
238
+ msgid "Star Rating"
239
+ msgstr ""
240
+
241
+ #: modules/rich-snippets/rich-snippets.php:79
242
+ msgid "Review Author"
243
+ msgstr ""
244
+
245
+ #: modules/rich-snippets/rich-snippets.php:85
246
+ msgid "Date Reviewed"
247
+ msgstr ""
248
+
249
+ #: modules/rich-snippets/rich-snippets.php:217
250
+ #: modules/rich-snippets/rich-snippets.php:223
251
+ msgid "None"
252
+ msgstr ""
253
+
254
+ #: modules/rich-snippets/rich-snippets.php:219
255
+ msgid "Rich Snippet Type:"
256
+ msgstr ""
257
+
258
+ #: modules/rich-snippets/rich-snippets.php:224
259
+ msgid "0.5 stars"
260
+ msgstr ""
261
+
262
+ #: modules/rich-snippets/rich-snippets.php:225
263
+ msgid "1 star"
264
+ msgstr ""
265
+
266
+ #: modules/rich-snippets/rich-snippets.php:226
267
+ msgid "1.5 stars"
268
+ msgstr ""
269
+
270
+ #: modules/rich-snippets/rich-snippets.php:227
271
+ msgid "2 stars"
272
+ msgstr ""
273
+
274
+ #: modules/rich-snippets/rich-snippets.php:228
275
+ msgid "2.5 stars"
276
+ msgstr ""
277
+
278
+ #: modules/rich-snippets/rich-snippets.php:229
279
+ msgid "3 stars"
280
+ msgstr ""
281
+
282
+ #: modules/rich-snippets/rich-snippets.php:230
283
+ msgid "3.5 stars"
284
+ msgstr ""
285
+
286
+ #: modules/rich-snippets/rich-snippets.php:231
287
+ msgid "4 stars"
288
+ msgstr ""
289
+
290
+ #: modules/rich-snippets/rich-snippets.php:232
291
+ msgid "4.5 stars"
292
+ msgstr ""
293
+
294
+ #: modules/rich-snippets/rich-snippets.php:233
295
+ msgid "5 stars"
296
+ msgstr ""
297
+
298
+ #: modules/rich-snippets/rich-snippets.php:234
299
+ msgid "Star Rating for Reviewed Item:"
300
+ msgstr ""
301
+
302
+ #: modules/site-keyword-queries/site-keyword-queries.php:12
303
+ msgid "Internal Relevance Researcher"
304
+ msgstr ""
305
+
306
+ #: modules/site-keyword-queries/site-keyword-queries.php:13
307
+ msgid "Int. Rel. Researcher"
308
+ msgstr ""
309
+
310
+ #: modules/site-keyword-queries/site-keyword-queries.php:21
311
+ msgid "Step 1: Enter Keywords"
312
+ msgstr ""
313
+
314
+ #: modules/site-keyword-queries/site-keyword-queries.php:23
315
+ msgid "(Type one keyword per line)"
316
+ msgstr ""
317
+
318
+ #: modules/site-keyword-queries/site-keyword-queries.php:25
319
+ msgid "Step 2: Set Options and Submit"
320
+ msgstr ""
321
+
322
+ #: modules/site-keyword-queries/site-keyword-queries.php:27
323
+ msgid "Put keywords in quotes"
324
+ msgstr ""
325
+
326
+ #: modules/site-keyword-queries/site-keyword-queries.php:28
327
+ #: modules/competition-queries/competition-queries.php:62
328
+ msgid "Show 100 results per page"
329
+ msgstr ""
330
+
331
+ #: modules/site-keyword-queries/site-keyword-queries.php:30
332
+ #: modules/competition-queries/competition-queries.php:64
333
+ msgid "Use Google&#8217;s minimal mode"
334
+ msgstr ""
335
+
336
+ #: modules/site-keyword-queries/site-keyword-queries.php:33
337
+ #: modules/competition-queries/competition-queries.php:70
338
+ msgid "Submit"
339
+ msgstr ""
340
+
341
+ #: modules/internal-link-aliases/internal-link-aliases.php:20
342
+ msgid "Link Mask Generator"
343
+ msgstr ""
344
+
345
+ #: modules/internal-link-aliases/internal-link-aliases.php:24
346
+ msgid "Alias Directory"
347
+ msgstr ""
348
+
349
+ #: modules/internal-link-aliases/internal-link-aliases.php:43
350
+ msgid "Link Masks"
351
+ msgstr ""
352
+
353
+ #: modules/internal-link-aliases/internal-link-aliases.php:46
354
+ #: modules/autolinks/content-autolinks.php:196
355
+ msgid "URL"
356
+ msgstr ""
357
+
358
+ #: modules/internal-link-aliases/internal-link-aliases.php:46
359
+ msgid "Mask URL"
360
+ msgstr ""
361
+
362
+ #: modules/internal-link-aliases/internal-link-aliases.php:66
363
+ msgid ""
364
+ "You can stop search engines from following a link by typing in a mask for "
365
+ "its URL."
366
+ msgstr ""
367
+
368
+ #: modules/internal-link-aliases/internal-link-aliases.php:122
369
+ msgid "Added by Link Alias Generator (LAG) module"
370
+ msgstr ""
371
+
372
+ #: modules/internal-link-aliases/internal-link-aliases.php:133
373
+ msgid "End LAG"
374
+ msgstr ""
375
+
376
+ #: modules/titles/titles.php:12
377
+ msgid "Title Tag Rewriter"
378
+ msgstr ""
379
+
380
+ #: modules/titles/titles.php:23 modules/meta/meta-descriptions.php:24
381
+ msgid "Default Formats"
382
+ msgstr ""
383
+
384
+ #: modules/titles/titles.php:24 modules/404s/fofs-settings.php:17
385
+ msgid "Settings"
386
+ msgstr ""
387
+
388
+ #: modules/titles/titles.php:30
389
+ msgid "Title Tag"
390
+ msgstr ""
391
+
392
+ #: modules/titles/titles.php:43
393
+ msgid ""
394
+ "Convert lowercase category/tag names to title case when used in title tags."
395
  msgstr ""
396
 
397
  #: modules/titles/titles.php:43
494
  msgid "Pagination Title Format"
495
  msgstr ""
496
 
497
+ #: modules/titles/titles.php:307
498
  msgid "Title Tag:"
499
  msgstr ""
500
 
501
+ #: modules/titles/titles.php:312
502
  msgid ""
503
  "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
504
  "tag. The title appears in visitors&#8217; title bars and in search engine "
506
  "page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
507
  msgstr ""
508
 
509
+ #: modules/competition-queries/competition-queries.php:12
510
+ msgid "Competition Researcher"
 
 
 
 
 
 
 
 
 
 
511
  msgstr ""
512
 
513
+ #: modules/competition-queries/competition-queries.php:13
514
+ msgid "Comp. Researcher"
515
  msgstr ""
516
 
517
+ #: modules/competition-queries/competition-queries.php:17
518
+ msgid ""
519
+ "The Competition Researcher provides you with easy access to various search "
520
+ "engine tools which you can use to research multiple search queries or URLs."
521
  msgstr ""
522
 
523
+ #: modules/competition-queries/competition-queries.php:21
524
+ msgid "Step 1: Choose Your Research Tool"
525
  msgstr ""
526
 
527
+ #: modules/competition-queries/competition-queries.php:25
528
+ msgid "Keywords"
529
  msgstr ""
530
 
531
+ #: modules/competition-queries/competition-queries.php:25
532
+ msgid "Normal Search"
533
  msgstr ""
534
 
535
+ #: modules/competition-queries/competition-queries.php:25
536
+ msgid "Find out how many pages contain the words in each query"
537
  msgstr ""
538
 
539
+ #: modules/competition-queries/competition-queries.php:26
540
+ msgid "Phrase Match"
541
  msgstr ""
542
 
543
+ #: modules/competition-queries/competition-queries.php:26
544
+ msgid ""
545
+ "Find out how many &#8220;actual&#8221; pages are competing for each query"
546
  msgstr ""
547
 
548
+ #: modules/competition-queries/competition-queries.php:27
549
+ msgid "Allinanchor"
550
  msgstr ""
551
 
552
+ #: modules/competition-queries/competition-queries.php:27
553
+ msgid "Find out which sites have the most links for each query"
554
  msgstr ""
555
 
556
+ #: modules/competition-queries/competition-queries.php:28
557
+ msgid "Allintitle"
558
  msgstr ""
559
 
560
+ #: modules/competition-queries/competition-queries.php:28
561
  msgid ""
562
+ "Find out which sites have the highest relevance in the title for each query"
 
563
  msgstr ""
564
 
565
+ #: modules/competition-queries/competition-queries.php:29
566
+ msgid "Allintext"
567
  msgstr ""
568
 
569
+ #: modules/competition-queries/competition-queries.php:29
570
+ msgid "Find out which sites have the most relevant content/text on their pages"
571
  msgstr ""
572
 
573
+ #: modules/competition-queries/competition-queries.php:30
574
+ msgid "Allinurl"
575
  msgstr ""
576
 
577
+ #: modules/competition-queries/competition-queries.php:30
578
  msgid ""
579
+ "Find out which sites have the most relevant naming conventions for each "
580
+ "keyword"
581
  msgstr ""
582
 
583
+ #: modules/competition-queries/competition-queries.php:32
584
+ msgid "URLs"
585
  msgstr ""
586
 
587
+ #: modules/competition-queries/competition-queries.php:32
588
+ msgid "Site"
589
  msgstr ""
590
 
591
+ #: modules/competition-queries/competition-queries.php:32
592
+ msgid "Find out how many pages are indexed for each domain"
593
  msgstr ""
594
 
595
+ #: modules/competition-queries/competition-queries.php:33
596
+ #: modules/competition-queries/competition-queries.php:38
597
+ msgid "Inbound Links"
598
  msgstr ""
599
 
600
+ #: modules/competition-queries/competition-queries.php:33
601
+ msgid "Find out how many sites link to the domains"
602
  msgstr ""
603
 
604
+ #: modules/competition-queries/competition-queries.php:34
605
+ #: modules/competition-queries/competition-queries.php:38
606
+ msgid "Outbound Links"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
607
  msgstr ""
608
 
609
+ #: modules/competition-queries/competition-queries.php:34
610
+ msgid "Find out how many sites the domains link to"
611
  msgstr ""
612
 
613
+ #: modules/competition-queries/competition-queries.php:56
614
+ msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
615
  msgstr ""
616
 
617
+ #: modules/competition-queries/competition-queries.php:58
618
+ msgid "(Type in one per line)"
619
  msgstr ""
620
 
621
+ #: modules/competition-queries/competition-queries.php:60
622
+ msgid "Step 3: Set Options and Submit"
 
 
 
 
623
  msgstr ""
624
 
625
  #: modules/meta/meta-keywords.php:12
634
  msgid "Default Values"
635
  msgstr ""
636
 
637
+ #: modules/meta/meta-keywords.php:25 modules/meta/meta-descriptions.php:25
638
+ msgid "Blog Homepage"
639
+ msgstr ""
640
+
641
  #: modules/meta/meta-keywords.php:38
642
  msgid "Sitewide Keywords"
643
  msgstr ""
709
  msgid "Don&#8217t cache or archive this site."
710
  msgstr ""
711
 
712
+ #: modules/meta/meta-descriptions.php:12
713
+ msgid "Meta Description Editor"
714
  msgstr ""
715
 
716
+ #: modules/meta/meta-descriptions.php:13
717
+ msgid "Meta Descriptions"
718
  msgstr ""
719
 
720
+ #: modules/meta/meta-descriptions.php:31
721
+ msgid "Meta Description"
722
  msgstr ""
723
 
724
+ #: modules/meta/meta-descriptions.php:46
725
+ msgid "Post Description Format"
726
  msgstr ""
727
 
728
+ #: modules/meta/meta-descriptions.php:53
729
+ msgid "Blog Homepage Meta Description"
730
  msgstr ""
731
 
732
+ #: modules/meta/meta-descriptions.php:55
733
+ msgid "Use this blog&#8217s tagline as the default homepage description."
 
 
734
  msgstr ""
735
 
736
+ #: modules/meta/meta-descriptions.php:56
737
+ msgid "Default Value"
738
  msgstr ""
739
 
740
+ #: modules/meta/meta-descriptions.php:112
741
+ msgid "Meta Description:"
742
  msgstr ""
743
 
744
+ #: modules/meta/meta-descriptions.php:115
745
+ msgid "You&#8217;ve entered %s characters. Most search engines use up to 160."
746
  msgstr ""
747
 
748
+ #: modules/meta/meta-descriptions.php:123
749
+ msgid ""
750
+ "<strong>Description</strong> &mdash; The value of the meta description tag. "
751
+ "The description will often appear underneath the title in search engine "
752
+ "results. Writing an accurate, attention-grabbing description for every post "
753
+ "is important to ensuring a good search results clickthrough rate."
754
  msgstr ""
755
 
756
+ #: modules/import-aiosp/import-aiosp.php:12
757
+ msgid "Import from All in One SEO Pack"
758
  msgstr ""
759
 
760
+ #: modules/import-aiosp/import-aiosp.php:13
761
+ msgid "AIOSP Import"
 
762
  msgstr ""
763
 
764
+ #: modules/import-aiosp/import-aiosp.php:15
765
+ msgid "All in One SEO Pack"
766
  msgstr ""
767
 
768
+ #: modules/import-aiosp/import-aiosp.php:16
769
+ msgid "AIOSP"
770
  msgstr ""
771
 
772
+ #: modules/import-aiosp/import-aiosp.php:17
773
+ msgid "Import post data (custom title tags and meta tags)."
774
  msgstr ""
775
 
776
+ #: modules/import-aiosp/import-aiosp.php:21
777
  msgid ""
778
+ "Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
779
+ "SEO Ultimate. AIOSP&#8217;s data remains in your WordPress database after "
780
+ "AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
781
+ "was active on this blog sometime in the past, AIOSP does <em>not</em> need "
782
+ "to be currently installed or activated for the import to take place."
783
  msgstr ""
784
 
785
+ #: modules/import-aiosp/import-aiosp.php:23
786
+ msgid ""
787
+ "The import tool can only move over data from AIOSP version 1.6 or above. If "
788
+ "you use an older version of AIOSP, you should update to the latest version "
789
+ "first and run AIOSP&#8217;s upgrade process."
790
  msgstr ""
791
 
792
+ #: modules/sds-blog/sds-blog.php:12
793
+ msgid "Whitepapers"
794
  msgstr ""
795
 
796
+ #: modules/sds-blog/sds-blog.php:13
797
+ msgid "SEO Design Solutions Whitepapers"
798
  msgstr ""
799
 
800
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 5.0) #-#-#-#-#
801
+ #. Author of the plugin/theme
802
+ #: modules/sds-blog/sds-blog.php:49
803
+ msgid "SEO Design Solutions"
804
+ msgstr ""
805
+
806
+ #: modules/sds-blog/sds-blog.php:50
807
  msgid ""
808
+ "The search engine optimization articles below are loaded from the website of "
809
+ "SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
810
+ "an article&#8217;s title to read it."
811
  msgstr ""
812
 
813
+ #: modules/modules/modules.php:12
814
+ msgid "Module Manager"
815
  msgstr ""
816
 
817
+ #: modules/modules/modules.php:13
818
+ msgid "Modules"
819
  msgstr ""
820
 
821
+ #: modules/modules/modules.php:37
822
+ msgid ""
823
+ "SEO Ultimate&#8217;s features are located in groups called &#8220;modules."
824
+ "&#8221; By default, most of these modules are listed in the &#8220;"
825
+ "SEO&#8221; menu on the left. Whenever you&#8217;re working with a module, "
826
+ "you can view documentation by clicking the tabs in the upper-right-hand "
827
+ "corner of your administration screen."
828
  msgstr ""
829
 
830
+ #: modules/modules/modules.php:39
831
+ msgid ""
832
+ "The Module Manager lets you disable or hide modules you don&#8217;t use. "
833
+ "You can also silence modules from displaying bubble alerts on the menu."
834
  msgstr ""
835
 
836
+ #: modules/modules/modules.php:45
837
+ msgid "Status"
838
  msgstr ""
839
 
840
+ #: modules/modules/modules.php:46
841
+ msgid "Module"
 
842
  msgstr ""
843
 
844
+ #: modules/modules/modules.php:59
845
+ msgid "Enabled"
846
  msgstr ""
847
 
848
+ #: modules/modules/modules.php:60
849
+ msgid "Silenced"
850
  msgstr ""
851
 
852
+ #: modules/modules/modules.php:61
853
+ msgid "Hidden"
854
  msgstr ""
855
 
856
+ #: modules/modules/modules.php:62
857
+ msgid "Disabled"
858
  msgstr ""
859
 
860
+ #: modules/slugs/slugs.php:12
861
+ msgid "Slug Optimizer"
 
862
  msgstr ""
863
 
864
+ #: modules/slugs/slugs.php:16
865
+ msgid "Words to Remove"
 
866
  msgstr ""
867
 
868
+ #: modules/404s/fofs.php:11
869
+ msgid "404 Monitor"
 
870
  msgstr ""
871
 
872
+ #: modules/404s/fofs-settings.php:16
873
+ msgid "404 Monitor Settings"
874
  msgstr ""
875
 
876
+ #: modules/404s/fofs-settings.php:33
877
+ msgid "Continue monitoring for new 404 errors"
878
  msgstr ""
879
 
880
+ #: modules/404s/fofs-settings.php:33
881
+ msgid "Monitoring Settings"
882
  msgstr ""
883
 
884
+ #: modules/404s/fofs-settings.php:35
885
+ msgid "Only log these types of 404 errors:"
886
  msgstr ""
887
 
888
+ #: modules/404s/fofs-settings.php:36
889
+ msgid "404s generated by search engine spiders"
890
  msgstr ""
891
 
892
+ #: modules/404s/fofs-settings.php:37
893
+ msgid "404s with referring URLs"
894
  msgstr ""
895
 
896
+ #: modules/404s/fofs-settings.php:38
897
+ msgid "Log Restrictions"
898
  msgstr ""
899
 
900
+ #: modules/404s/fofs-settings.php:39
901
+ msgid "Maximum Log Entries"
902
  msgstr ""
903
 
904
+ #: modules/404s/fofs-settings.php:40
905
+ msgid "URLs to Ignore"
906
  msgstr ""
907
 
908
+ #: modules/404s/fofs-settings.php:40
909
+ msgid "(Use * as wildcard)"
910
  msgstr ""
911
 
912
+ #: modules/404s/fofs-log.php:16
913
+ msgid "404 Monitor Log"
914
  msgstr ""
915
 
916
+ #: modules/404s/fofs-log.php:17
917
+ msgid "Log"
918
  msgstr ""
919
 
920
+ #: modules/404s/fofs-log.php:116
921
+ msgid "Hits"
922
  msgstr ""
923
 
924
+ #: modules/404s/fofs-log.php:117
925
+ msgid "URL with 404 Error"
926
  msgstr ""
927
 
928
+ #: modules/404s/fofs-log.php:118
929
+ msgid "Date of Most Recent Hit"
930
  msgstr ""
931
 
932
+ #: modules/404s/fofs-log.php:119
933
+ msgid "Referers"
934
+ msgstr ""
935
+
936
+ #: modules/404s/fofs-log.php:120 modules/404s/fofs-log.php:223
937
+ msgid "User Agents"
 
938
  msgstr ""
939
 
940
+ #: modules/404s/fofs-log.php:136
941
  msgid ""
942
+ "New 404 errors will not be recorded because 404 logging is disabled on the "
943
+ "Settings tab."
944
  msgstr ""
945
 
946
+ #: modules/404s/fofs-log.php:143
947
+ msgid "The log entry was successfully deleted."
948
  msgstr ""
949
 
950
+ #: modules/404s/fofs-log.php:145
951
+ msgid "This log entry has already been deleted."
952
  msgstr ""
953
 
954
+ #: modules/404s/fofs-log.php:154
955
+ msgid "The log was successfully cleared."
956
  msgstr ""
957
 
958
+ #: modules/404s/fofs-log.php:158
959
+ msgid "No 404 errors in the log."
960
  msgstr ""
961
 
962
+ #: modules/404s/fofs-log.php:182
963
+ msgid "Open URL in new window (will not be logged)"
964
  msgstr ""
965
 
966
+ #: modules/404s/fofs-log.php:183
967
+ msgid "Query Google for cached version of URL (opens in new window)"
968
+ msgstr ""
969
+
970
+ #: modules/404s/fofs-log.php:184
971
+ msgid "Remove this URL from the log"
972
+ msgstr ""
973
+
974
+ #: modules/404s/fofs-log.php:187
975
+ msgid "%s at %s"
976
+ msgstr ""
977
+
978
+ #: modules/404s/fofs-log.php:191
979
+ msgid "View list of referring URLs"
980
+ msgstr ""
981
+
982
+ #: modules/404s/fofs-log.php:192
983
+ msgid "View list of user agents"
984
+ msgstr ""
985
+
986
+ #: modules/404s/fofs-log.php:202
987
+ msgid "Referring URLs"
988
+ msgstr ""
989
+
990
+ #: modules/404s/fofs-log.php:203 modules/404s/fofs-log.php:224
991
+ msgid "Hide list"
992
+ msgstr ""
993
+
994
+ #: modules/404s/fofs-log.php:254
995
+ msgid "Are you sure you want to delete all 404 log entries?"
996
+ msgstr ""
997
+
998
+ #: modules/404s/fofs-log.php:256
999
+ msgid "Clear Log"
1000
+ msgstr ""
1001
+
1002
+ #: modules/linkbox/linkbox.php:12
1003
+ msgid "Linkbox Inserter"
1004
+ msgstr ""
1005
+
1006
+ #: modules/linkbox/linkbox.php:18
1007
+ msgid "Link to this post!"
1008
+ msgstr ""
1009
+
1010
+ #: modules/linkbox/linkbox.php:45
1011
+ msgid "At the end of posts"
1012
+ msgstr ""
1013
+
1014
+ #: modules/linkbox/linkbox.php:46
1015
+ msgid "At the end of pages"
1016
+ msgstr ""
1017
+
1018
+ #: modules/linkbox/linkbox.php:47
1019
+ msgid "When called by the su_linkbox hook"
1020
+ msgstr ""
1021
+
1022
+ #: modules/linkbox/linkbox.php:48
1023
+ msgid "Display linkboxes..."
1024
+ msgstr ""
1025
+
1026
+ #: modules/linkbox/linkbox.php:49
1027
+ msgid "Linkbox HTML"
1028
+ msgstr ""
1029
+
1030
+ #: modules/more-links/more-links.php:12
1031
+ msgid "More Link Customizer"
1032
+ msgstr ""
1033
+
1034
+ #: modules/more-links/more-links.php:27
1035
+ msgid "Default More Link Text"
1036
+ msgstr ""
1037
+
1038
+ #: modules/more-links/more-links.php:48
1039
+ msgid "More Link Text:"
1040
  msgstr ""
1041
 
1042
  #: modules/files/files.php:14
1094
  "robots.txt file, since you&#8217;re using <a href=\"%s\">a custom one</a>."
1095
  msgstr ""
1096
 
1097
+ #: modules/canonical/canonical.php:12
1098
+ msgid "Canonicalizer"
1099
  msgstr ""
1100
 
1101
+ #: modules/canonical/canonical.php:33
1102
+ msgid "Generate <code>&lt;link rel=&quot;canonical&quot; /&gt;</code> tags."
1103
+ msgstr ""
1104
+
1105
+ #: modules/canonical/canonical.php:34
1106
+ msgid "Redirect requests for nonexistent pagination."
1107
+ msgstr ""
1108
+
1109
+ #: modules/user-code/user-code.php:12
1110
+ msgid "Code Inserter"
1111
+ msgstr ""
1112
+
1113
+ #: modules/user-code/user-code.php:27
1114
+ msgid "Everywhere"
1115
+ msgstr ""
1116
+
1117
+ #: modules/user-code/user-code.php:34
1118
+ msgid "&lt;head&gt; Tag"
1119
+ msgstr ""
1120
+
1121
+ #: modules/user-code/user-code.php:35
1122
+ msgid "Before Item Content"
1123
+ msgstr ""
1124
+
1125
+ #: modules/user-code/user-code.php:36
1126
+ msgid "After Item Content"
1127
+ msgstr ""
1128
+
1129
+ #: modules/user-code/user-code.php:37
1130
+ msgid "Footer"
1131
+ msgstr ""
1132
+
1133
+ #: modules/user-code/user-code.php:51
1134
+ msgid "Code Inserter module"
1135
  msgstr ""
1136
 
1137
  #: modules/settings/settings-data.php:16
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: modules/settings/settings-data.php:82
1154
  msgid "Settings successfully imported."
1155
  msgstr ""
1156
 
1157
+ #: modules/settings/settings-data.php:84
1158
  msgid ""
1159
  "The uploaded file is not in the proper format. Settings could not be "
1160
  "imported."
1161
  msgstr ""
1162
 
1163
+ #: modules/settings/settings-data.php:86
1164
  msgid "The settings file could not be uploaded successfully."
1165
  msgstr ""
1166
 
1167
+ #: modules/settings/settings-data.php:89
1168
  msgid ""
1169
  "Settings could not be imported because no settings file was selected. Please "
1170
  "click the &#8220;Browse&#8221; button and select a file to import."
1171
  msgstr ""
1172
 
1173
+ #: modules/settings/settings-data.php:134
1174
  msgid ""
1175
  "The uploaded file is not in the proper format. Links could not be imported."
1176
  msgstr ""
1177
 
1178
+ #: modules/settings/settings-data.php:173
1179
  msgid "Links successfully imported."
1180
  msgstr ""
1181
 
1182
+ #: modules/settings/settings-data.php:176
1183
  msgid "The CSV file could not be uploaded successfully."
1184
  msgstr ""
1185
 
1186
+ #: modules/settings/settings-data.php:179
1187
  msgid ""
1188
  "Links could not be imported because no CSV file was selected. Please click "
1189
  "the &#8220;Browse&#8221; button and select a file to import."
1190
  msgstr ""
1191
 
1192
+ #: modules/settings/settings-data.php:189
1193
  msgid "Import SEO Ultimate Settings File"
1194
  msgstr ""
1195
 
1196
+ #: modules/settings/settings-data.php:191
1197
  msgid ""
1198
  "You can use this form to upload and import an SEO Ultimate settings file "
1199
  "stored on your computer. (These files can be created using the Export tool.) "
1201
  "in the file."
1202
  msgstr ""
1203
 
1204
+ #: modules/settings/settings-data.php:195
1205
  msgid ""
1206
  "Are you sure you want to import this settings file? This will overwrite your "
1207
  "current settings and cannot be undone."
1208
  msgstr ""
1209
 
1210
+ #: modules/settings/settings-data.php:196
1211
  msgid "Import Settings File"
1212
  msgstr ""
1213
 
1214
+ #: modules/settings/settings-data.php:202
1215
  msgid "Import Deeplink Juggernaut CSV File"
1216
  msgstr ""
1217
 
1218
+ #: modules/settings/settings-data.php:204
1219
  msgid ""
1220
  "You can use this form to upload and import a Deeplink Juggernaut CSV file "
1221
  "stored on your computer. (These files can be created using the Export tool.) "
1223
  "the file."
1224
  msgstr ""
1225
 
1226
+ #: modules/settings/settings-data.php:208
1227
  msgid ""
1228
  "Are you sure you want to import this CSV file? This will overwrite your "
1229
  "current Deeplink Juggernaut links and cannot be undone."
1230
  msgstr ""
1231
 
1232
+ #: modules/settings/settings-data.php:209
1233
  msgid "Import CSV File"
1234
  msgstr ""
1235
 
1236
+ #: modules/settings/settings-data.php:224
1237
  msgid "Import from Other Plugins"
1238
  msgstr ""
1239
 
1240
+ #: modules/settings/settings-data.php:226
1241
  msgid ""
1242
  "You can import settings and data from these plugins. Clicking a plugin&#8217;"
1243
  "s name will take you to the importer page, where you can customize "
1244
  "parameters and start the import."
1245
  msgstr ""
1246
 
1247
+ #: modules/settings/settings-data.php:246
1248
  msgid "Export SEO Ultimate Settings File"
1249
  msgstr ""
1250
 
1251
+ #: modules/settings/settings-data.php:248
1252
  msgid ""
1253
  "You can use this export tool to download an SEO Ultimate settings file to "
1254
  "your computer."
1255
  msgstr ""
1256
 
1257
+ #: modules/settings/settings-data.php:250
1258
  msgid ""
1259
  "A settings file includes the data of every checkbox and textbox of every "
1260
  "installed module. It does NOT include site-specific data like logged 404s or "
1262
  "database backup, however)."
1263
  msgstr ""
1264
 
1265
+ #: modules/settings/settings-data.php:253
1266
  msgid "Download Settings File"
1267
  msgstr ""
1268
 
1269
+ #: modules/settings/settings-data.php:258
1270
  msgid "Export Deeplink Juggernaut CSV File"
1271
  msgstr ""
1272
 
1273
+ #: modules/settings/settings-data.php:260
1274
  msgid ""
1275
  "You can use this export tool to download a CSV file (comma-separated values "
1276
  "file) that contains your Deeplink Juggernaut links. Once you download this "
1279
  "the Import tool."
1280
  msgstr ""
1281
 
1282
+ #: modules/settings/settings-data.php:263
1283
  msgid "Download CSV File"
1284
  msgstr ""
1285
 
1286
+ #: modules/settings/settings-data.php:270
1287
  msgid "All settings have been erased and defaults have been restored."
1288
  msgstr ""
1289
 
1290
+ #: modules/settings/settings-data.php:272
1291
  msgid ""
1292
  "You can erase all your SEO Ultimate settings and restore them to &#8220;"
1293
  "factory defaults&#8221; by clicking the button below."
1294
  msgstr ""
1295
 
1296
+ #: modules/settings/settings-data.php:275
1297
  msgid ""
1298
  "Are you sure you want to erase all module settings? This cannot be undone."
1299
  msgstr ""
1300
 
1301
+ #: modules/settings/settings-data.php:276
1302
  msgid "Restore Default Settings"
1303
  msgstr ""
1304
 
1305
+ #: modules/settings/global-settings.php:18
1306
+ msgid "Global Settings"
1307
+ msgstr ""
1308
+
1309
+ #: modules/settings/global-settings.php:40
1310
+ msgid "Enable nofollow&#8217;d attribution link"
1311
+ msgstr ""
1312
+
1313
+ #: modules/settings/global-settings.php:41
1314
+ msgid "Enable attribution link CSS styling"
1315
+ msgstr ""
1316
+
1317
+ #: modules/settings/global-settings.php:42
1318
+ msgid "Notify me about unnecessary active plugins"
1319
+ msgstr ""
1320
+
1321
+ #: modules/settings/global-settings.php:43
1322
+ msgid "Insert comments around HTML code insertions"
1323
+ msgstr ""
1324
+
1325
+ #: modules/settings/settings.php:12
1326
+ msgid "Plugin Settings"
1327
+ msgstr ""
1328
+
1329
+ #: modules/settings/settings.php:13
1330
+ msgid "SEO Ultimate Plugin Settings"
1331
+ msgstr ""
1332
+
1333
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 5.0) #-#-#-#-#
1334
+ #. Plugin Name of the plugin/theme
1335
+ #: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:741
1336
+ msgid "SEO Ultimate"
1337
+ msgstr ""
1338
+
1339
  #: modules/settings/uninstall.php:17
1340
  msgid "Uninstaller"
1341
  msgstr ""
1342
 
1343
+ #: modules/settings/uninstall.php:18 plugin/class.seo-ultimate.php:1228
1344
+ msgid "Uninstall"
1345
+ msgstr ""
1346
+
1347
  #: modules/settings/uninstall.php:27
1348
  msgid ""
1349
  "Uninstalling SEO Ultimate will delete your settings and the plugin&#8217;s "
1380
  msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
1381
  msgstr ""
1382
 
1383
+ #: modules/settings/install.php:18
1384
+ msgid "Upgrade/Downgrade/Reinstall"
1385
  msgstr ""
1386
 
1387
+ #: modules/settings/install.php:19
1388
+ msgid "Installer"
1389
  msgstr ""
1390
 
1391
+ #: modules/settings/install.php:23 modules/settings/install.php:48
1392
+ msgid "Upgrade"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1393
  msgstr ""
1394
 
1395
  #: modules/settings/install.php:24 modules/settings/install.php:71
1432
  msgstr ""
1433
 
1434
  #: modules/settings/install.php:74
1435
+ msgid ""
1436
+ "Downgrading to versions earlier than %s is not supported because doing so "
1437
+ "will result in data loss."
1438
  msgstr ""
1439
 
1440
  #: modules/settings/install.php:76
1475
  msgid "Upgrade to SEO Ultimate %s"
1476
  msgstr ""
1477
 
1478
+ #: modules/sharing-buttons/sharing-buttons.php:12
1479
+ msgid "Sharing Facilitator"
 
 
 
 
1480
  msgstr ""
1481
 
1482
+ #: modules/sharing-buttons/sharing-buttons.php:22
1483
+ msgid "Bookmark and Share"
1484
  msgstr ""
1485
 
1486
+ #: modules/sharing-buttons/sharing-buttons.php:28
1487
+ msgid "Providers"
1488
  msgstr ""
1489
 
1490
+ #: modules/sharing-buttons/sharing-buttons.php:34
1491
+ msgid "Which provider would you like to use for your sharing buttons?"
1492
  msgstr ""
1493
 
1494
+ #: modules/sharing-buttons/sharing-buttons.php:36
1495
+ msgid "None; disable sharing buttons"
1496
  msgstr ""
1497
 
1498
+ #: modules/sharing-buttons/sharing-buttons.php:37
1499
+ msgid "Use the ShareThis button"
1500
  msgstr ""
1501
 
1502
+ #: modules/sharing-buttons/sharing-buttons.php:38
1503
+ msgid "Use the AddThis button"
1504
  msgstr ""
1505
 
1506
+ #: modules/noindex/noindex.php:12
1507
+ msgid "Noindex Manager"
 
 
1508
  msgstr ""
1509
 
1510
+ #: modules/noindex/noindex.php:13
1511
+ msgid "Noindex"
1512
  msgstr ""
1513
 
1514
+ #: modules/noindex/noindex.php:44
1515
+ msgid ""
1516
+ "Note: The current <a href=\"options-privacy.php\">privacy settings</a> will "
1517
+ "block indexing of the entire site, regardless of which options are set below."
1518
  msgstr ""
1519
 
1520
+ #: modules/noindex/noindex.php:47
1521
+ msgid "Prevent indexing of..."
1522
  msgstr ""
1523
 
1524
+ #: modules/noindex/noindex.php:48
1525
+ msgid "Administration back-end pages"
1526
  msgstr ""
1527
 
1528
+ #: modules/noindex/noindex.php:49
1529
+ msgid "Author archives"
1530
  msgstr ""
1531
 
1532
+ #: modules/noindex/noindex.php:50
1533
+ msgid "Blog search pages"
1534
  msgstr ""
1535
 
1536
+ #: modules/noindex/noindex.php:51
1537
+ msgid "Category archives"
1538
  msgstr ""
1539
 
1540
+ #: modules/noindex/noindex.php:52
1541
+ msgid "Comment feeds"
1542
  msgstr ""
1543
 
1544
+ #: modules/noindex/noindex.php:53
1545
+ msgid "Comment subpages"
1546
  msgstr ""
1547
 
1548
+ #: modules/noindex/noindex.php:54
1549
+ msgid "Date-based archives"
1550
  msgstr ""
1551
 
1552
+ #: modules/noindex/noindex.php:55
1553
+ msgid "Subpages of the homepage"
1554
  msgstr ""
1555
 
1556
+ #: modules/noindex/noindex.php:56
1557
+ msgid "Tag archives"
1558
  msgstr ""
1559
 
1560
+ #: modules/noindex/noindex.php:57
1561
+ msgid "User login/registration pages"
1562
  msgstr ""
1563
 
1564
+ #: modules/noindex/noindex.php:110
1565
+ msgid "Noindex: Tell search engines not to index this webpage."
1566
  msgstr ""
1567
 
1568
+ #: modules/noindex/noindex.php:111
1569
+ msgid "Nofollow: Tell search engines not to spider links on this webpage."
1570
  msgstr ""
1571
 
1572
+ #: modules/noindex/noindex.php:112
1573
+ msgid "Meta Robots Tag:"
1574
  msgstr ""
1575
 
1576
+ #: modules/autolinks/autolinks.php:11
1577
+ msgid "Deeplink Juggernaut"
1578
  msgstr ""
1579
 
1580
+ #: modules/autolinks/content-autolinks.php:16
1581
+ msgid "Content Deeplink Juggernaut"
1582
  msgstr ""
1583
 
1584
+ #: modules/autolinks/content-autolinks.php:17
1585
+ msgid "Content Links"
1586
  msgstr ""
1587
 
1588
+ #: modules/autolinks/content-autolinks.php:100
1589
+ msgid ""
1590
+ "The Content Links section of Deeplink Juggernaut lets you automatically link "
1591
+ "a certain word or phrase in your post/page content to a URL you specify."
1592
  msgstr ""
1593
 
1594
+ #: modules/autolinks/content-autolinks.php:136
1595
+ msgid "Edit Existing Links"
1596
  msgstr ""
1597
 
1598
+ #: modules/autolinks/content-autolinks.php:140
1599
+ msgid "Add a New Link"
1600
  msgstr ""
1601
 
1602
+ #: modules/autolinks/content-autolinks.php:148
1603
+ msgid "Anchor Text"
1604
  msgstr ""
1605
 
1606
+ #: modules/autolinks/content-autolinks.php:149
1607
+ msgid "Destination Type"
1608
  msgstr ""
1609
 
1610
+ #: modules/autolinks/content-autolinks.php:150
1611
+ msgid "Destination"
1612
  msgstr ""
1613
 
1614
+ #: modules/autolinks/content-autolinks.php:151
1615
+ msgid "Title Attribute"
1616
  msgstr ""
1617
 
1618
+ #: modules/autolinks/content-autolinks.php:152
1619
+ msgid "Options"
1620
  msgstr ""
1621
 
1622
+ #: modules/autolinks/content-autolinks.php:154
1623
+ msgid "Delete"
1624
  msgstr ""
1625
 
 
1626
  #: modules/autolinks/content-autolinks.php:196
1627
+ msgid "Custom"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1628
  msgstr ""
1629
 
1630
+ #: modules/autolinks/content-autolinks.php:197
1631
+ msgid "Content Items"
1632
  msgstr ""
1633
 
1634
+ #: modules/autolinks/content-autolinks.php:204
1635
+ msgid "Nofollow"
1636
  msgstr ""
1637
 
1638
+ #: modules/autolinks/content-autolinks.php:205
1639
+ msgid "New window"
1640
  msgstr ""
1641
 
1642
+ #: modules/autolinks/content-autolinks.php:269
1643
+ msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
1644
  msgstr ""
1645
 
1646
+ #: modules/autolinks/content-autolinks.php:270
1647
+ msgid "Don&#8217;t add autolinks to anchor texts found in this post."
1648
  msgstr ""
1649
 
1650
+ #: modules/autolinks/content-autolinks.php:270
1651
+ msgid "Autolink Exclusion:"
 
1652
  msgstr ""
1653
 
1654
+ #: modules/autolinks/content-autolinks.php:275
1655
+ msgid ""
1656
+ "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
1657
+ "into this box, Deeplink Juggernaut will search for that anchor in all your "
1658
+ "other posts and link it to this post. For example, if the post you&#8217;re "
1659
+ "editing is about &#8220;blue widgets,&#8221; you could type &#8220;blue "
1660
+ "widgets&#8221; into the &#8220;Incoming Autolink Anchors&#8221; box and "
1661
+ "Deeplink Juggernaut will automatically build internal links to this post "
1662
+ "with that anchor text (assuming other posts contain that text)."
1663
  msgstr ""
1664
 
1665
+ #: modules/autolinks/content-autolinks-settings.php:16
1666
+ msgid "Content Deeplink Juggernaut Settings"
1667
  msgstr ""
1668
 
1669
+ #: modules/autolinks/content-autolinks-settings.php:17
1670
+ msgid "Content Link Settings"
1671
  msgstr ""
1672
 
1673
+ #: modules/autolinks/content-autolinks-settings.php:21
1674
+ msgid "Allow posts to link to themselves."
 
1675
  msgstr ""
1676
 
1677
+ #: modules/autolinks/content-autolinks-settings.php:22
1678
+ msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1679
  msgstr ""
1680
 
1681
+ #: modules/autolinks/content-autolinks-settings.php:23
1682
+ msgid ""
1683
+ "Don&#8217;t link the same anchor text any more than %d times per post/page/"
1684
+ "etc."
1685
  msgstr ""
1686
 
1687
+ #: plugin/class.su-installer.php:9
1688
+ msgid "Package not available."
1689
  msgstr ""
1690
 
1691
+ #: plugin/class.su-installer.php:12
1692
+ msgid "Removing the current version of the plugin&#8230;"
1693
  msgstr ""
1694
 
1695
+ #: plugin/class.su-installer.php:13
1696
+ msgid "Could not remove the current version of the plugin."
1697
  msgstr ""
1698
 
1699
+ #: plugin/class.su-installer.php:17
1700
+ msgid "Downloading old version from <span class=\"code\">%s</span>&#8230;"
1701
  msgstr ""
1702
 
1703
+ #: plugin/class.su-installer.php:18
1704
+ msgid "Unpacking the downgrade&#8230;"
1705
  msgstr ""
1706
 
1707
+ #: plugin/class.su-installer.php:19
1708
+ msgid "Installing the downgrade&#8230;"
1709
  msgstr ""
1710
 
1711
+ #: plugin/class.su-installer.php:20
1712
+ msgid "Plugin downgrade failed."
1713
  msgstr ""
1714
 
1715
+ #: plugin/class.su-installer.php:21
1716
+ msgid "Plugin downgraded successfully."
1717
  msgstr ""
1718
 
1719
+ #: plugin/class.su-installer.php:24
1720
+ msgid "Downloading from <span class=\"code\">%s</span>&#8230;"
1721
  msgstr ""
1722
 
1723
+ #: plugin/class.su-installer.php:25
1724
+ msgid "Unpacking the reinstall&#8230;"
1725
  msgstr ""
1726
 
1727
+ #: plugin/class.su-installer.php:26
1728
+ msgid "Reinstalling the current version&#8230;"
1729
  msgstr ""
1730
 
1731
+ #: plugin/class.su-installer.php:27
1732
+ msgid "Plugin reinstallation failed."
1733
  msgstr ""
1734
 
1735
+ #: plugin/class.su-installer.php:28
1736
+ msgid "Plugin reinstalled successfully."
1737
  msgstr ""
1738
 
1739
+ #: plugin/class.su-installer.php:32
1740
+ msgid "Downloading upgrade from <span class=\"code\">%s</span>&#8230;"
1741
  msgstr ""
1742
 
1743
+ #: plugin/class.su-installer.php:33
1744
+ msgid "Unpacking the upgrade&#8230;"
1745
  msgstr ""
1746
 
1747
+ #: plugin/class.su-installer.php:34
1748
+ msgid "Installing the upgrade&#8230;"
1749
  msgstr ""
1750
 
1751
+ #: plugin/class.su-installer.php:35
1752
+ msgid "Plugin upgrade failed."
1753
  msgstr ""
1754
 
1755
+ #: plugin/class.su-installer.php:36
1756
+ msgid "Plugin upgraded successfully."
1757
  msgstr ""
1758
 
1759
+ #: plugin/su-functions.php:77 includes/jlfunctions/str.php:94
1760
+ msgid "%s and %s"
1761
  msgstr ""
1762
 
1763
+ #: plugin/su-functions.php:80 includes/jlfunctions/str.php:97
1764
+ msgid ", "
1765
  msgstr ""
1766
 
1767
+ #: plugin/su-functions.php:81 includes/jlfunctions/str.php:98
1768
+ msgid "%s, and %s"
1769
  msgstr ""
1770
 
1771
+ #: plugin/class.seo-ultimate.php:741
1772
+ msgid "SEO"
1773
  msgstr ""
1774
 
1775
+ #: plugin/class.seo-ultimate.php:1019
1776
+ msgid "SEO Settings Help"
 
 
1777
  msgstr ""
1778
 
1779
+ #: plugin/class.seo-ultimate.php:1021
1780
+ msgid "The SEO Settings box lets you customize these settings:"
1781
  msgstr ""
1782
 
1783
+ #: plugin/class.seo-ultimate.php:1023
1784
+ msgid "(The SEO Settings box is part of the SEO Ultimate plugin.)"
1785
  msgstr ""
1786
 
1787
+ #: plugin/class.seo-ultimate.php:1078
1788
  msgid ""
1789
+ "SEO Ultimate includes the functionality of %1$s. You may want to deactivate %"
1790
+ "1$s to avoid plugin conflicts."
 
 
 
 
 
 
 
 
1791
  msgstr ""
1792
 
1793
+ #: plugin/class.seo-ultimate.php:1119
1794
+ msgid "new feature"
1795
  msgstr ""
1796
 
1797
+ #: plugin/class.seo-ultimate.php:1119
1798
+ msgid "new features"
1799
  msgstr ""
1800
 
1801
+ #: plugin/class.seo-ultimate.php:1120
1802
+ msgid "bugfix"
1803
  msgstr ""
1804
 
1805
+ #: plugin/class.seo-ultimate.php:1120
1806
+ msgid "bugfixes"
1807
  msgstr ""
1808
 
1809
+ #: plugin/class.seo-ultimate.php:1121
1810
+ msgid "improvement"
1811
  msgstr ""
1812
 
1813
+ #: plugin/class.seo-ultimate.php:1121
1814
+ msgid "improvements"
1815
  msgstr ""
1816
 
1817
+ #: plugin/class.seo-ultimate.php:1122
1818
+ msgid "security fix"
1819
  msgstr ""
1820
 
1821
+ #: plugin/class.seo-ultimate.php:1122
1822
+ msgid "security fixes"
1823
  msgstr ""
1824
 
1825
+ #: plugin/class.seo-ultimate.php:1153
1826
+ msgid "%d %s"
1827
  msgstr ""
1828
 
1829
+ #: plugin/class.seo-ultimate.php:1159
1830
+ msgid "Upgrade now to get %s. %s."
1831
  msgstr ""
1832
 
1833
+ #: plugin/class.seo-ultimate.php:1161
1834
+ msgid "View changelog"
1835
  msgstr ""
1836
 
1837
+ #: plugin/class.seo-ultimate.php:1248
1838
+ msgid "Active Modules: "
1839
  msgstr ""
1840
 
1841
+ #: plugin/class.seo-ultimate.php:1309
1842
+ msgid ""
1843
+ "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
1844
+ "search engine spiders. To resolve this, <a href=\"options-privacy.php\" "
1845
+ "target=\"_blank\">go to your Privacy settings</a> and set your blog visible "
1846
+ "to everyone."
1847
  msgstr ""
1848
 
1849
+ #: plugin/class.seo-ultimate.php:1419
1850
+ msgid "SEO Settings"
 
 
 
 
 
 
 
1851
  msgstr ""
1852
 
1853
  #: includes/jlwp/functions.php:56