SEO Ultimate - Version 4.8

Version Description

Download this release

Release Info

Developer SEO Design Solutions
Plugin Icon 128x128 SEO Ultimate
Version 4.8
Comparing to
See all releases

Code changes from version 4.7.1 to 4.8

modules/autolinks/content-autolinks-settings.php CHANGED
@@ -18,7 +18,9 @@ class SU_ContentAutolinksSettings extends SU_Module {
18
 
19
  function admin_page_contents() {
20
  $this->admin_form_table_start();
 
21
  $this->checkbox('limit_lpp', __('Don’t add any more than %d autolinks per post/page/etc.', 'seo-ultimate'));
 
22
  $this->admin_form_table_end();
23
  }
24
  }
18
 
19
  function admin_page_contents() {
20
  $this->admin_form_table_start();
21
+ $this->checkbox('enable_self_links', __('Allow posts to link to themselves.', 'seo-ultimate'));
22
  $this->checkbox('limit_lpp', __('Don’t add any more than %d autolinks per post/page/etc.', 'seo-ultimate'));
23
+ $this->checkbox('limit_lpa', __('Don’t link the same anchor text any more than %d times per post/page/etc.', 'seo-ultimate'));
24
  $this->admin_form_table_end();
25
  }
26
  }
modules/autolinks/content-autolinks.php CHANGED
@@ -18,8 +18,9 @@ class SU_ContentAutolinks extends SU_Module {
18
 
19
  function get_default_settings() {
20
  return array(
21
- 'limit_lpp_value' => 5
22
- //, 'enable_self_links' => false
 
23
  );
24
  }
25
 
@@ -45,11 +46,14 @@ class SU_ContentAutolinks extends SU_Module {
45
  return $content;
46
  }
47
 
48
- function _autolink_content($content, $links, $limit) {
49
  $limit_enabled = $this->get_setting('limit_lpp', false);
50
  if ($limit_enabled && $limit < 1) return $content;
51
  $oldlimit = $limit;
52
 
 
 
 
53
  foreach ($links as $data) {
54
  $anchor = $data['anchor'];
55
  $to_id = su_esc_attr($data['to_id']);
@@ -67,7 +71,7 @@ class SU_ContentAutolinks extends SU_Module {
67
  } else
68
  continue;
69
 
70
- if (!$this->get_setting('enable_self_links', false) && $url == suurl::current())
71
  continue;
72
 
73
  $rel = $data['nofollow'] ? ' rel="nofollow"' : '';
@@ -76,7 +80,7 @@ class SU_ContentAutolinks extends SU_Module {
76
 
77
  $link = "<a href=\"$url\"$title$rel$target>$1</a>";
78
 
79
- $content = sustr::htmlsafe_str_replace($anchor, $link, $content, $limit_enabled ? 1 : -1, $count);
80
 
81
  if ($limit_enabled) {
82
  $limit -= $count;
@@ -85,8 +89,8 @@ class SU_ContentAutolinks extends SU_Module {
85
  }
86
  }
87
 
88
- if ($limit_enabled && $limit < $oldlimit)
89
- $content = $this->_autolink_content($content, $links, $limit);
90
 
91
  return $content;
92
  }
18
 
19
  function get_default_settings() {
20
  return array(
21
+ 'enable_self_links' => false
22
+ , 'limit_lpp_value' => 5
23
+ , 'limit_lpa_value' => 2
24
  );
25
  }
26
 
46
  return $content;
47
  }
48
 
49
+ function _autolink_content($content, $links, $limit, $round=1) {
50
  $limit_enabled = $this->get_setting('limit_lpp', false);
51
  if ($limit_enabled && $limit < 1) return $content;
52
  $oldlimit = $limit;
53
 
54
+ $lpa_limit_enabled = $this->get_setting('limit_lpa', false);
55
+ $lpa_limit = $lpa_limit_enabled ? $this->get_setting('limit_lpa_value', 5) : -1;
56
+
57
  foreach ($links as $data) {
58
  $anchor = $data['anchor'];
59
  $to_id = su_esc_attr($data['to_id']);
71
  } else
72
  continue;
73
 
74
+ if (!$this->get_setting('enable_self_links', false) && ($url == suurl::current() || $url == get_permalink()))
75
  continue;
76
 
77
  $rel = $data['nofollow'] ? ' rel="nofollow"' : '';
80
 
81
  $link = "<a href=\"$url\"$title$rel$target>$1</a>";
82
 
83
+ $content = sustr::htmlsafe_str_replace($anchor, $link, $content, $limit_enabled ? 1 : $lpa_limit, $count);
84
 
85
  if ($limit_enabled) {
86
  $limit -= $count;
89
  }
90
  }
91
 
92
+ if ($limit_enabled && $limit < $oldlimit && $round < $lpa_limit)
93
+ $content = $this->_autolink_content($content, $links, $limit, $round+1);
94
 
95
  return $content;
96
  }
modules/internal-link-aliases/internal-link-aliases.php CHANGED
@@ -97,13 +97,17 @@ class SU_InternalLinkAliases extends SU_Module {
97
 
98
  function block_aliases_dir() {
99
  echo '# ';
100
- _e('Added by Link Alias Generator module', 'seo-ultimate');
101
  echo "\n";
102
 
103
  $urlinfo = parse_url(get_bloginfo('url'));
104
  $path = $urlinfo['path'];
105
  echo "User-agent: *\n";
106
- echo "Disallow: $path/go/\n\n";
 
 
 
 
107
  }
108
 
109
  }
97
 
98
  function block_aliases_dir() {
99
  echo '# ';
100
+ _e('Added by Link Alias Generator (LAG) module', 'seo-ultimate');
101
  echo "\n";
102
 
103
  $urlinfo = parse_url(get_bloginfo('url'));
104
  $path = $urlinfo['path'];
105
  echo "User-agent: *\n";
106
+ echo "Disallow: $path/go/\n";
107
+
108
+ echo '# ';
109
+ _e('End LAG', 'seo-ultimate');
110
+ echo "\n\n";
111
  }
112
 
113
  }
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: 2.8
5
  Tested up to: 3.0
6
- Stable tag: 4.7.1
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
@@ -11,11 +11,11 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
11
 
12
  = Recent Releases =
13
 
 
14
  * Version 4.7 adds the Link Mask Generator module
15
  * Version 4.6 adds a meta keywords mass-editor
16
  * Version 4.5 adds bugfixes
17
  * Version 4.4 adds a new field for entering sitewide meta keywords
18
- * Version 4.3 adds the ability to use the post's excerpt as its default meta description
19
 
20
  = Features =
21
 
@@ -27,7 +27,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
27
  * Customize your homepage's `<title>` tag.
28
  * Format the `<title>` tags of posts, pages, categories, tags, archives, search results, and more!
29
 
30
- * **Meta Description Editor** -- UPDATED in Version 4.3
31
  * Edit the `<meta>` description tags for posts, pages, and the homepage.
32
  * Increase SERP clickthrough rates by influence search engine result snippets.
33
  * Mass-editor makes it a cinch to go back and add descriptions to old posts.
@@ -82,7 +82,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
82
  * Determine which of your webpages Google most strongly associates with the keywords you specify.
83
  * Use the information to determine ideal targets for incoming links or ideal sources of outgoing links.
84
 
85
- * **Deeplink Juggernaut**
86
  * Automatically link phrases in your posts/pages to other posts/pages or to custom URLs.
87
  * Exclude specific posts/pages from having links added to them, if desired (e.g. contact pages, the homepage, etc.).
88
  * Use the power of anchor text to boost your internal ranking SEO paradigm.
@@ -224,6 +224,11 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
224
 
225
  == Changelog ==
226
 
 
 
 
 
 
227
  = Version 4.7.1 (December 30, 2010) =
228
  * Bugfix: Editing link mask slugs now removes the old link mask instead of just adding a second one
229
  * Bugfix: Link Mask Generator now runs before WordPress' canonical function in order to stop WordPress from overriding a link mask
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: 2.8
5
  Tested up to: 3.0
6
+ Stable tag: 4.8
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 4.8 adds Deeplink Juggernaut features
15
  * Version 4.7 adds the Link Mask Generator module
16
  * Version 4.6 adds a meta keywords mass-editor
17
  * Version 4.5 adds bugfixes
18
  * Version 4.4 adds a new field for entering sitewide meta keywords
 
19
 
20
  = Features =
21
 
27
  * Customize your homepage's `<title>` tag.
28
  * Format the `<title>` tags of posts, pages, categories, tags, archives, search results, and more!
29
 
30
+ * **Meta Description Editor**
31
  * Edit the `<meta>` description tags for posts, pages, and the homepage.
32
  * Increase SERP clickthrough rates by influence search engine result snippets.
33
  * Mass-editor makes it a cinch to go back and add descriptions to old posts.
82
  * Determine which of your webpages Google most strongly associates with the keywords you specify.
83
  * Use the information to determine ideal targets for incoming links or ideal sources of outgoing links.
84
 
85
+ * **Deeplink Juggernaut** -- UPDATED in Version 4.8
86
  * Automatically link phrases in your posts/pages to other posts/pages or to custom URLs.
87
  * Exclude specific posts/pages from having links added to them, if desired (e.g. contact pages, the homepage, etc.).
88
  * Use the power of anchor text to boost your internal ranking SEO paradigm.
224
 
225
  == Changelog ==
226
 
227
+ = Version 4.8 (February 7, 2011) =
228
+ * Feature: Deeplink Juggernaut now lets you limit the number of times per post the same anchor text is linked
229
+ * Feature: Deeplink Juggernaut now lets you toggle whether posts can link to themselves
230
+ * Improvement: When configured to prevent posts from linking to themselves, Deeplink Juggernaut now does so across the whole site, not just on the post's own single page
231
+
232
  = Version 4.7.1 (December 30, 2010) =
233
  * Bugfix: Editing link mask slugs now removes the old link mask instead of just adding a second one
234
  * Bugfix: Link Mask Generator now runs before WordPress' canonical function in order to stop WordPress from overriding a link mask
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.7.1
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.7.1
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '2.8');
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.7.1');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/4.7.1');
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: 4.8
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 4.8
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', '4.8');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/4.8');
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.7\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
- "POT-Creation-Date: 2010-12-28 18:13:25+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,7 +19,7 @@ msgid ""
19
  "Ultimate to remove this notice."
20
  msgstr ""
21
 
22
- #. #-#-#-#-# plugin.pot (SEO Ultimate 4.7) #-#-#-#-#
23
  #. Plugin Name of the plugin/theme
24
  #: plugin/class.seo-ultimate.php:756 modules/settings/settings.php:14
25
  msgid "SEO Ultimate"
@@ -215,7 +215,7 @@ msgstr ""
215
  msgid "SEO Design Solutions Whitepapers"
216
  msgstr ""
217
 
218
- #. #-#-#-#-# plugin.pot (SEO Ultimate 4.7) #-#-#-#-#
219
  #. Author of the plugin/theme
220
  #: modules/sds-blog/sds-blog.php:49
221
  msgid "SEO Design Solutions"
@@ -1583,7 +1583,7 @@ msgid "Link Masks"
1583
  msgstr ""
1584
 
1585
  #: modules/internal-link-aliases/internal-link-aliases.php:28
1586
- #: modules/autolinks/content-autolinks.php:192
1587
  msgid "URL"
1588
  msgstr ""
1589
 
@@ -1597,8 +1597,12 @@ msgid ""
1597
  "its URL."
1598
  msgstr ""
1599
 
1600
- #: modules/internal-link-aliases/internal-link-aliases.php:99
1601
- msgid "Added by Link Alias Generator module"
 
 
 
 
1602
  msgstr ""
1603
 
1604
  #: modules/rich-snippets/rich-snippets.php:12
@@ -1742,9 +1746,19 @@ msgid "Content Link Settings"
1742
  msgstr ""
1743
 
1744
  #: modules/autolinks/content-autolinks-settings.php:21
 
 
 
 
1745
  msgid "Don&#8217;t add any more than %d autolinks per post/page/etc."
1746
  msgstr ""
1747
 
 
 
 
 
 
 
1748
  #: modules/autolinks/content-autolinks.php:16
1749
  msgid "Content Deeplink Juggernaut"
1750
  msgstr ""
@@ -1753,73 +1767,73 @@ msgstr ""
1753
  msgid "Content Links"
1754
  msgstr ""
1755
 
1756
- #: modules/autolinks/content-autolinks.php:96
1757
  msgid ""
1758
  "The Content Links section of Deeplink Juggernaut lets you automatically link "
1759
  "a certain word or phrase in your post/page content to a URL you specify."
1760
  msgstr ""
1761
 
1762
- #: modules/autolinks/content-autolinks.php:132
1763
  msgid "Edit Existing Links"
1764
  msgstr ""
1765
 
1766
- #: modules/autolinks/content-autolinks.php:136
1767
  msgid "Add a New Link"
1768
  msgstr ""
1769
 
1770
- #: modules/autolinks/content-autolinks.php:144
1771
  msgid "Anchor Text"
1772
  msgstr ""
1773
 
1774
- #: modules/autolinks/content-autolinks.php:145
1775
  msgid "Destination Type"
1776
  msgstr ""
1777
 
1778
- #: modules/autolinks/content-autolinks.php:146
1779
  msgid "Destination"
1780
  msgstr ""
1781
 
1782
- #: modules/autolinks/content-autolinks.php:147
1783
  msgid "Title Attribute"
1784
  msgstr ""
1785
 
1786
- #: modules/autolinks/content-autolinks.php:148
1787
  msgid "Options"
1788
  msgstr ""
1789
 
1790
- #: modules/autolinks/content-autolinks.php:150
1791
  msgid "Delete"
1792
  msgstr ""
1793
 
1794
- #: modules/autolinks/content-autolinks.php:192
1795
  msgid "Custom"
1796
  msgstr ""
1797
 
1798
- #: modules/autolinks/content-autolinks.php:193
1799
  msgid "Content Items"
1800
  msgstr ""
1801
 
1802
- #: modules/autolinks/content-autolinks.php:200
1803
  msgid "Nofollow"
1804
  msgstr ""
1805
 
1806
- #: modules/autolinks/content-autolinks.php:201
1807
  msgid "New window"
1808
  msgstr ""
1809
 
1810
- #: modules/autolinks/content-autolinks.php:265
1811
  msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
1812
  msgstr ""
1813
 
1814
- #: modules/autolinks/content-autolinks.php:266
1815
  msgid "Don&#8217;t add autolinks to anchor texts found in this post."
1816
  msgstr ""
1817
 
1818
- #: modules/autolinks/content-autolinks.php:266
1819
  msgid "Autolink Exclusion:"
1820
  msgstr ""
1821
 
1822
- #: modules/autolinks/content-autolinks.php:271
1823
  msgid ""
1824
  "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
1825
  "into this box, Deeplink Juggernaut will search for that anchor in all your "
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
  "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"
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"
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
 
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
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 ""
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 "