SEO Ultimate - Version 7.5.4

Version Description

Download this release

Release Info

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

Code changes from version 7.5.3 to 7.5.4

modules/settings/global-settings.php CHANGED
@@ -37,9 +37,9 @@ class SU_GlobalSettings extends SU_Module {
37
  //Plugin Settings
38
  $this->admin_form_start();
39
  $this->checkboxes(array(
40
- 'attribution_link' => __('Enable nofollow’d attribution link', 'seo-ultimate')
41
- , 'attribution_link_css' => __('Enable attribution link CSS styling', 'seo-ultimate')
42
- , 'mark_code' => __('Insert comments around HTML code insertions', 'seo-ultimate')
43
  ));
44
  $this->admin_form_end();
45
  }
37
  //Plugin Settings
38
  $this->admin_form_start();
39
  $this->checkboxes(array(
40
+ 'mark_code' => __('Identify the plugin’s HTML code insertions with HTML comment tags', 'seo-ultimate')
41
+ , 'attribution_link' => __('Enable nofollow’d attribution link on my site', 'seo-ultimate')
42
+ , 'attribution_link_css' => array('description' => __('Add CSS styles to the attribution link', 'seo-ultimate'), 'indent' => true)
43
  ));
44
  $this->admin_form_end();
45
  }
modules/settings/settings-data.php CHANGED
@@ -77,10 +77,10 @@ class SU_SettingsData extends SU_Module {
77
 
78
  //Module settings
79
  $module_settings = apply_filters('su_settings_import_array', $import['settings']);
80
- foreach ($module_settings as $module => $module_settings) {
81
- $msdata = (array)get_option("seo_ultimate_module_$module", array());
82
  $msdata = array_merge($msdata, $module_settings);
83
- update_option("seo_ultimate_module_$module", $msdata);
84
  }
85
 
86
  $this->queue_message('success', __('Settings successfully imported.', 'seo-ultimate'));
@@ -96,7 +96,13 @@ class SU_SettingsData extends SU_Module {
96
 
97
  $psdata = (array)get_option('seo_ultimate', array());
98
  $modules = array_keys($psdata['modules']);
99
- foreach ($modules as $module) delete_option("su_$module");
 
 
 
 
 
 
100
  unset($psdata['modules']);
101
  update_option('seo_ultimate', $psdata);
102
 
77
 
78
  //Module settings
79
  $module_settings = apply_filters('su_settings_import_array', $import['settings']);
80
+ foreach ($module_settings as $key => $module_settings) {
81
+ $msdata = (array)get_option("seo_ultimate_module_$key", array());
82
  $msdata = array_merge($msdata, $module_settings);
83
+ update_option("seo_ultimate_module_$key", $msdata);
84
  }
85
 
86
  $this->queue_message('success', __('Settings successfully imported.', 'seo-ultimate'));
96
 
97
  $psdata = (array)get_option('seo_ultimate', array());
98
  $modules = array_keys($psdata['modules']);
99
+ foreach ($modules as $module) {
100
+
101
+ if (!$this->plugin->call_module_func($module, 'get_settings_key', $key) || !$key)
102
+ $key = $module;
103
+
104
+ delete_option("seo_ultimate_module_$key");
105
+ }
106
  unset($psdata['modules']);
107
  update_option('seo_ultimate', $psdata);
108
 
modules/settings/settings.php CHANGED
@@ -71,9 +71,8 @@ class SU_Settings extends SU_Module {
71
  , 'content' => __("
72
  <p>Here&#8217;s information on some of the settings:</p>
73
  <ul>
74
- <li><strong>Enable nofollow&#8217;d attribution link</strong> &mdash; If enabled, the plugin will display an attribution link on your site.</li>
75
- <li><strong>Notify me about unnecessary active plugins</strong> &mdash; If enabled, SEO Ultimate will add notices to your &#8220;Plugins&#8221; administration page if you have any other plugins installed whose functionality SEO Ultimate replaces.</li>
76
- <li><strong>Insert comments around HTML code insertions</strong> &mdash; If enabled, SEO Ultimate will use HTML comments to identify all code it inserts into your <code>&lt;head&gt;</code> tag. This is useful if you&#8217;re trying to figure out whether or not SEO Ultimate is inserting a certain piece of header code.</li>
77
  </ul>
78
  ", 'seo-ultimate')));
79
 
71
  , 'content' => __("
72
  <p>Here&#8217;s information on some of the settings:</p>
73
  <ul>
74
+ <li><strong>Identify the plugin&#8217;s HTML code insertions with HTML comment tags</strong> &mdash; If enabled, SEO Ultimate will use HTML comments to identify all code it inserts into your <code>&lt;head&gt;</code> tag. This is useful if you&#8217;re trying to figure out whether or not SEO Ultimate is inserting a certain piece of header code.</li>
75
+ <li><strong>Enable nofollow&#8217;d attribution link on my site</strong> &mdash; If enabled, the plugin will display an attribution link on your site.</li>
 
76
  </ul>
77
  ", 'seo-ultimate')));
78
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions, JohnLamansky
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate, Open Graph, og, microdata, Facebook, Twitter, Schema.org
4
  Requires at least: 3.3
5
  Tested up to: 3.4.1
6
- Stable tag: 7.5.3
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, Open Graph, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
@@ -238,7 +238,7 @@ To install the plugin manually:
238
  Open the editor, click the "Screen Options" tab in the upper-right-hand corner, and uncheck the "SEO Settings" checkbox. Note that the box's visibility is a per-user preference.
239
 
240
  * **Why did some of the textboxes disappear from the "SEO Settings" box?**
241
- The "SEO Settings" fields are added by your modules. The "Title Tag" field is added by the Title Tag Rewriter module, the "Description" and "Keywords" fields are added by the Meta Editor module, etc. If you disable a module using the Module Manager, its fields in the "SEO Settings" box will be disabled too. You can re-enable the field in question by re-enabling the corresponding module.
242
 
243
 
244
  = Module FAQ =
@@ -277,9 +277,12 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
277
 
278
  == Changelog ==
279
 
 
 
 
280
  = Version 7.5.3 (August 11, 2012) =
281
  * Bugfix: The Autolink Exclusion checkbox now appears when adding posts, not just when editing them
282
- * Bugfix: Documentation for the SEO Settings box now appears on the post editor screen's "Help" dropdown under the "SEO Settings" tab instead of under generic "Overview" tab
283
  * Removed Feature: Webmaster Verification Assistant no longer supports verification tags for the now-defunct Yahoo! Site Explorer
284
  * Compatibility: SEO Ultimate will now refuse to activate on any version of WordPress older than 3.3
285
 
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate, Open Graph, og, microdata, Facebook, Twitter, Schema.org
4
  Requires at least: 3.3
5
  Tested up to: 3.4.1
6
+ Stable tag: 7.5.4
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, Open Graph, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
238
  Open the editor, click the "Screen Options" tab in the upper-right-hand corner, and uncheck the "SEO Settings" checkbox. Note that the box's visibility is a per-user preference.
239
 
240
  * **Why did some of the textboxes disappear from the "SEO Settings" box?**
241
+ The "SEO Settings" fields are added by your modules. The "Title Tag" field is added by the Title Tag Rewriter module, the "Meta Description" field is added by the Meta Description Editor module, etc. If you disable a module using the Module Manager, its fields in the "SEO Settings" box will be disabled too. You can re-enable the field in question by re-enabling the corresponding module.
242
 
243
 
244
  = Module FAQ =
277
 
278
  == Changelog ==
279
 
280
+ = Version 7.5.4 (August 11, 2012) =
281
+ * Bugfix: Fixed broken settings reset function (bug introduced in 5.0)
282
+
283
  = Version 7.5.3 (August 11, 2012) =
284
  * Bugfix: The Autolink Exclusion checkbox now appears when adding posts, not just when editing them
285
+ * Bugfix: Documentation for the SEO Settings box now appears on the post editor screen's "Help" dropdown under the "SEO Settings" tab instead of under the generic "Overview" tab
286
  * Removed Feature: Webmaster Verification Assistant no longer supports verification tags for the now-defunct Yahoo! Site Explorer
287
  * Compatibility: SEO Ultimate will now refuse to activate on any version of WordPress older than 3.3
288
 
seo-ultimate.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
- Version: 7.5.3
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
- * @version 7.5.3
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.3');
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
- define('SU_VERSION', '7.5.3');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/7.5.3');
54
 
55
  /********** INCLUDES **********/
56
 
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
+ Version: 7.5.4
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
+ * @version 7.5.4
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
+ define('SU_VERSION', '7.5.4');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/7.5.4');
54
 
55
  /********** INCLUDES **********/
56
 
translations/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 7.5.3\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
- "POT-Creation-Date: 2012-08-11 18:20:17+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -966,7 +966,7 @@ msgstr ""
966
  #: modules/files/files.php:155 modules/meta/meta-descriptions.php:216
967
  #: modules/meta/meta-keywords.php:191 modules/modules/modules.php:190
968
  #: modules/more-links/more-links.php:105 modules/more-links/more-links.php:116
969
- #: modules/settings/settings.php:82 modules/slugs/slugs.php:113
970
  #: modules/slugs/slugs.php:125 modules/titles/titles.php:458
971
  msgid "FAQ"
972
  msgstr ""
@@ -2408,7 +2408,7 @@ msgstr ""
2408
  msgid "SEO Design Solutions Whitepapers"
2409
  msgstr ""
2410
 
2411
- #. #-#-#-#-# plugin.pot (SEO Ultimate 7.5.3) #-#-#-#-#
2412
  #. Author of the plugin/theme
2413
  #: modules/sds-blog/sds-blog.php:49
2414
  msgid "SEO Design Solutions"
@@ -2426,15 +2426,15 @@ msgid "Global Settings"
2426
  msgstr ""
2427
 
2428
  #: modules/settings/global-settings.php:40
2429
- msgid "Enable nofollow&#8217;d attribution link"
2430
  msgstr ""
2431
 
2432
  #: modules/settings/global-settings.php:41
2433
- msgid "Enable attribution link CSS styling"
2434
  msgstr ""
2435
 
2436
  #: modules/settings/global-settings.php:42
2437
- msgid "Insert comments around HTML code insertions"
2438
  msgstr ""
2439
 
2440
  #: modules/settings/install.php:18
@@ -2576,30 +2576,30 @@ msgid ""
2576
  "click the &#8220;Browse&#8221; button and select a file to import."
2577
  msgstr ""
2578
 
2579
- #: modules/settings/settings-data.php:134
2580
  msgid ""
2581
  "The uploaded file is not in the proper format. Links could not be imported."
2582
  msgstr ""
2583
 
2584
- #: modules/settings/settings-data.php:176
2585
  msgid "Links successfully imported."
2586
  msgstr ""
2587
 
2588
- #: modules/settings/settings-data.php:179
2589
  msgid "The CSV file could not be uploaded successfully."
2590
  msgstr ""
2591
 
2592
- #: modules/settings/settings-data.php:182
2593
  msgid ""
2594
  "Links could not be imported because no CSV file was selected. Please click "
2595
  "the &#8220;Browse&#8221; button and select a file to import."
2596
  msgstr ""
2597
 
2598
- #: modules/settings/settings-data.php:192
2599
  msgid "Import SEO Ultimate Settings File"
2600
  msgstr ""
2601
 
2602
- #: modules/settings/settings-data.php:194
2603
  msgid ""
2604
  "You can use this form to upload and import an SEO Ultimate settings file "
2605
  "stored on your computer. (These files can be created using the Export tool.) "
@@ -2607,21 +2607,21 @@ msgid ""
2607
  "in the file."
2608
  msgstr ""
2609
 
2610
- #: modules/settings/settings-data.php:198
2611
  msgid ""
2612
  "Are you sure you want to import this settings file? This will overwrite your "
2613
  "current settings and cannot be undone."
2614
  msgstr ""
2615
 
2616
- #: modules/settings/settings-data.php:199
2617
  msgid "Import Settings File"
2618
  msgstr ""
2619
 
2620
- #: modules/settings/settings-data.php:205
2621
  msgid "Import Deeplink Juggernaut CSV File"
2622
  msgstr ""
2623
 
2624
- #: modules/settings/settings-data.php:207
2625
  msgid ""
2626
  "You can use this form to upload and import a Deeplink Juggernaut CSV file "
2627
  "stored on your computer. (These files can be created using the Export tool.) "
@@ -2629,38 +2629,38 @@ msgid ""
2629
  "the file."
2630
  msgstr ""
2631
 
2632
- #: modules/settings/settings-data.php:211
2633
  msgid ""
2634
  "Are you sure you want to import this CSV file? This will overwrite your "
2635
  "current Deeplink Juggernaut links and cannot be undone."
2636
  msgstr ""
2637
 
2638
- #: modules/settings/settings-data.php:212
2639
  msgid "Import CSV File"
2640
  msgstr ""
2641
 
2642
- #: modules/settings/settings-data.php:227
2643
  msgid "Import from Other Plugins"
2644
  msgstr ""
2645
 
2646
- #: modules/settings/settings-data.php:229
2647
  msgid ""
2648
  "You can import settings and data from these plugins. Clicking a plugin&#8217;"
2649
  "s name will take you to the importer page, where you can customize "
2650
  "parameters and start the import."
2651
  msgstr ""
2652
 
2653
- #: modules/settings/settings-data.php:249
2654
  msgid "Export SEO Ultimate Settings File"
2655
  msgstr ""
2656
 
2657
- #: modules/settings/settings-data.php:251
2658
  msgid ""
2659
  "You can use this export tool to download an SEO Ultimate settings file to "
2660
  "your computer."
2661
  msgstr ""
2662
 
2663
- #: modules/settings/settings-data.php:253
2664
  msgid ""
2665
  "A settings file includes the data of every checkbox and textbox of every "
2666
  "installed module. It does NOT include site-specific data like logged 404s or "
@@ -2668,15 +2668,15 @@ msgid ""
2668
  "database backup, however)."
2669
  msgstr ""
2670
 
2671
- #: modules/settings/settings-data.php:256
2672
  msgid "Download Settings File"
2673
  msgstr ""
2674
 
2675
- #: modules/settings/settings-data.php:261
2676
  msgid "Export Deeplink Juggernaut CSV File"
2677
  msgstr ""
2678
 
2679
- #: modules/settings/settings-data.php:263
2680
  msgid ""
2681
  "You can use this export tool to download a CSV file (comma-separated values "
2682
  "file) that contains your Deeplink Juggernaut links. Once you download this "
@@ -2685,26 +2685,26 @@ msgid ""
2685
  "the Import tool."
2686
  msgstr ""
2687
 
2688
- #: modules/settings/settings-data.php:266
2689
  msgid "Download CSV File"
2690
  msgstr ""
2691
 
2692
- #: modules/settings/settings-data.php:273
2693
  msgid "All settings have been erased and defaults have been restored."
2694
  msgstr ""
2695
 
2696
- #: modules/settings/settings-data.php:275
2697
  msgid ""
2698
  "You can erase all your SEO Ultimate settings and restore them to &#8220;"
2699
  "factory defaults&#8221; by clicking the button below."
2700
  msgstr ""
2701
 
2702
- #: modules/settings/settings-data.php:278
2703
  msgid ""
2704
  "Are you sure you want to erase all module settings? This cannot be undone."
2705
  msgstr ""
2706
 
2707
- #: modules/settings/settings-data.php:279
2708
  msgid "Restore Default Settings"
2709
  msgstr ""
2710
 
@@ -2724,7 +2724,7 @@ msgstr ""
2724
  msgid "SEO Ultimate Plugin Settings"
2725
  msgstr ""
2726
 
2727
- #. #-#-#-#-# plugin.pot (SEO Ultimate 7.5.3) #-#-#-#-#
2728
  #. Plugin Name of the plugin/theme
2729
  #: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:861
2730
  msgid "SEO Ultimate"
@@ -2742,21 +2742,18 @@ msgid ""
2742
  "\r\n"
2743
  "<p>Here&#8217;s information on some of the settings:</p>\r\n"
2744
  "<ul>\r\n"
2745
- "\t<li><strong>Enable nofollow&#8217;d attribution link</strong> &mdash; If "
2746
- "enabled, the plugin will display an attribution link on your site.</li>\r\n"
2747
- "\t<li><strong>Notify me about unnecessary active plugins</strong> &mdash; If "
2748
- "enabled, SEO Ultimate will add notices to your &#8220;Plugins&#8221; "
2749
- "administration page if you have any other plugins installed whose "
2750
- "functionality SEO Ultimate replaces.</li>\r\n"
2751
- "\t<li><strong>Insert comments around HTML code insertions</strong> &mdash; "
2752
- "If enabled, SEO Ultimate will use HTML comments to identify all code it "
2753
- "inserts into your <code>&lt;head&gt;</code> tag. This is useful if you&#8217;"
2754
- "re trying to figure out whether or not SEO Ultimate is inserting a certain "
2755
- "piece of header code.</li>\r\n"
2756
  "</ul>\r\n"
2757
  msgstr ""
2758
 
2759
- #: modules/settings/settings.php:83
2760
  msgid ""
2761
  "\r\n"
2762
  "<ul>\r\n"
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEO Ultimate 7.5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
+ "POT-Creation-Date: 2012-08-11 19:01:05+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
966
  #: modules/files/files.php:155 modules/meta/meta-descriptions.php:216
967
  #: modules/meta/meta-keywords.php:191 modules/modules/modules.php:190
968
  #: modules/more-links/more-links.php:105 modules/more-links/more-links.php:116
969
+ #: modules/settings/settings.php:81 modules/slugs/slugs.php:113
970
  #: modules/slugs/slugs.php:125 modules/titles/titles.php:458
971
  msgid "FAQ"
972
  msgstr ""
2408
  msgid "SEO Design Solutions Whitepapers"
2409
  msgstr ""
2410
 
2411
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 7.5.4) #-#-#-#-#
2412
  #. Author of the plugin/theme
2413
  #: modules/sds-blog/sds-blog.php:49
2414
  msgid "SEO Design Solutions"
2426
  msgstr ""
2427
 
2428
  #: modules/settings/global-settings.php:40
2429
+ msgid "Identify the plugin&#8217;s HTML code insertions with HTML comment tags"
2430
  msgstr ""
2431
 
2432
  #: modules/settings/global-settings.php:41
2433
+ msgid "Enable nofollow&#8217;d attribution link on my site"
2434
  msgstr ""
2435
 
2436
  #: modules/settings/global-settings.php:42
2437
+ msgid "Add CSS styles to the attribution link"
2438
  msgstr ""
2439
 
2440
  #: modules/settings/install.php:18
2576
  "click the &#8220;Browse&#8221; button and select a file to import."
2577
  msgstr ""
2578
 
2579
+ #: modules/settings/settings-data.php:140
2580
  msgid ""
2581
  "The uploaded file is not in the proper format. Links could not be imported."
2582
  msgstr ""
2583
 
2584
+ #: modules/settings/settings-data.php:182
2585
  msgid "Links successfully imported."
2586
  msgstr ""
2587
 
2588
+ #: modules/settings/settings-data.php:185
2589
  msgid "The CSV file could not be uploaded successfully."
2590
  msgstr ""
2591
 
2592
+ #: modules/settings/settings-data.php:188
2593
  msgid ""
2594
  "Links could not be imported because no CSV file was selected. Please click "
2595
  "the &#8220;Browse&#8221; button and select a file to import."
2596
  msgstr ""
2597
 
2598
+ #: modules/settings/settings-data.php:198
2599
  msgid "Import SEO Ultimate Settings File"
2600
  msgstr ""
2601
 
2602
+ #: modules/settings/settings-data.php:200
2603
  msgid ""
2604
  "You can use this form to upload and import an SEO Ultimate settings file "
2605
  "stored on your computer. (These files can be created using the Export tool.) "
2607
  "in the file."
2608
  msgstr ""
2609
 
2610
+ #: modules/settings/settings-data.php:204
2611
  msgid ""
2612
  "Are you sure you want to import this settings file? This will overwrite your "
2613
  "current settings and cannot be undone."
2614
  msgstr ""
2615
 
2616
+ #: modules/settings/settings-data.php:205
2617
  msgid "Import Settings File"
2618
  msgstr ""
2619
 
2620
+ #: modules/settings/settings-data.php:211
2621
  msgid "Import Deeplink Juggernaut CSV File"
2622
  msgstr ""
2623
 
2624
+ #: modules/settings/settings-data.php:213
2625
  msgid ""
2626
  "You can use this form to upload and import a Deeplink Juggernaut CSV file "
2627
  "stored on your computer. (These files can be created using the Export tool.) "
2629
  "the file."
2630
  msgstr ""
2631
 
2632
+ #: modules/settings/settings-data.php:217
2633
  msgid ""
2634
  "Are you sure you want to import this CSV file? This will overwrite your "
2635
  "current Deeplink Juggernaut links and cannot be undone."
2636
  msgstr ""
2637
 
2638
+ #: modules/settings/settings-data.php:218
2639
  msgid "Import CSV File"
2640
  msgstr ""
2641
 
2642
+ #: modules/settings/settings-data.php:233
2643
  msgid "Import from Other Plugins"
2644
  msgstr ""
2645
 
2646
+ #: modules/settings/settings-data.php:235
2647
  msgid ""
2648
  "You can import settings and data from these plugins. Clicking a plugin&#8217;"
2649
  "s name will take you to the importer page, where you can customize "
2650
  "parameters and start the import."
2651
  msgstr ""
2652
 
2653
+ #: modules/settings/settings-data.php:255
2654
  msgid "Export SEO Ultimate Settings File"
2655
  msgstr ""
2656
 
2657
+ #: modules/settings/settings-data.php:257
2658
  msgid ""
2659
  "You can use this export tool to download an SEO Ultimate settings file to "
2660
  "your computer."
2661
  msgstr ""
2662
 
2663
+ #: modules/settings/settings-data.php:259
2664
  msgid ""
2665
  "A settings file includes the data of every checkbox and textbox of every "
2666
  "installed module. It does NOT include site-specific data like logged 404s or "
2668
  "database backup, however)."
2669
  msgstr ""
2670
 
2671
+ #: modules/settings/settings-data.php:262
2672
  msgid "Download Settings File"
2673
  msgstr ""
2674
 
2675
+ #: modules/settings/settings-data.php:267
2676
  msgid "Export Deeplink Juggernaut CSV File"
2677
  msgstr ""
2678
 
2679
+ #: modules/settings/settings-data.php:269
2680
  msgid ""
2681
  "You can use this export tool to download a CSV file (comma-separated values "
2682
  "file) that contains your Deeplink Juggernaut links. Once you download this "
2685
  "the Import tool."
2686
  msgstr ""
2687
 
2688
+ #: modules/settings/settings-data.php:272
2689
  msgid "Download CSV File"
2690
  msgstr ""
2691
 
2692
+ #: modules/settings/settings-data.php:279
2693
  msgid "All settings have been erased and defaults have been restored."
2694
  msgstr ""
2695
 
2696
+ #: modules/settings/settings-data.php:281
2697
  msgid ""
2698
  "You can erase all your SEO Ultimate settings and restore them to &#8220;"
2699
  "factory defaults&#8221; by clicking the button below."
2700
  msgstr ""
2701
 
2702
+ #: modules/settings/settings-data.php:284
2703
  msgid ""
2704
  "Are you sure you want to erase all module settings? This cannot be undone."
2705
  msgstr ""
2706
 
2707
+ #: modules/settings/settings-data.php:285
2708
  msgid "Restore Default Settings"
2709
  msgstr ""
2710
 
2724
  msgid "SEO Ultimate Plugin Settings"
2725
  msgstr ""
2726
 
2727
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 7.5.4) #-#-#-#-#
2728
  #. Plugin Name of the plugin/theme
2729
  #: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:861
2730
  msgid "SEO Ultimate"
2742
  "\r\n"
2743
  "<p>Here&#8217;s information on some of the settings:</p>\r\n"
2744
  "<ul>\r\n"
2745
+ "\t<li><strong>Identify the plugin&#8217;s HTML code insertions with HTML "
2746
+ "comment tags</strong> &mdash; If enabled, SEO Ultimate will use HTML "
2747
+ "comments to identify all code it inserts into your <code>&lt;head&gt;</code> "
2748
+ "tag. This is useful if you&#8217;re trying to figure out whether or not SEO "
2749
+ "Ultimate is inserting a certain piece of header code.</li>\r\n"
2750
+ "\t<li><strong>Enable nofollow&#8217;d attribution link on my site</strong> "
2751
+ "&mdash; If enabled, the plugin will display an attribution link on your site."
2752
+ "</li>\r\n"
 
 
 
2753
  "</ul>\r\n"
2754
  msgstr ""
2755
 
2756
+ #: modules/settings/settings.php:82
2757
  msgid ""
2758
  "\r\n"
2759
  "<ul>\r\n"