SEO Ultimate - Version 4.2

Version Description

Download this release

Release Info

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

Code changes from version 4.1 to 4.2

modules/autolinks/content-autolinks.php CHANGED
@@ -33,6 +33,8 @@ class SU_ContentAutolinks extends SU_Module {
33
 
34
  function autolink_content($content) {
35
 
 
 
36
  $links = $this->get_setting('links', array());
37
  if (!count($links)) return $content;
38
 
@@ -253,6 +255,7 @@ class SU_ContentAutolinks extends SU_Module {
253
 
254
  function postmeta_fields($fields) {
255
  $fields['35|autolinks'] = $this->get_postmeta_textarea('autolinks', __('Incoming Autolink Anchors:<br /><em>(one per line)</em>', 'seo-ultimate'));
 
256
  return $fields;
257
  }
258
 
33
 
34
  function autolink_content($content) {
35
 
36
+ if ($this->get_postmeta('disable_autolinks')) return $content;
37
+
38
  $links = $this->get_setting('links', array());
39
  if (!count($links)) return $content;
40
 
255
 
256
  function postmeta_fields($fields) {
257
  $fields['35|autolinks'] = $this->get_postmeta_textarea('autolinks', __('Incoming Autolink Anchors:<br /><em>(one per line)</em>', 'seo-ultimate'));
258
+ $fields['38|disable_autolinks'] = $this->get_postmeta_checkbox('disable_autolinks', __('Don&#8217;t add autolinks to anchor texts found in this post.', 'seo-ultimate'), __('Autolink Exclusion:', 'seo-ultimate'));
259
  return $fields;
260
  }
261
 
readme.txt CHANGED
@@ -3,19 +3,19 @@ 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
4
  Requires at least: 2.8
5
  Tested up to: 3.0
6
- Stable tag: 4.1
7
 
8
- This all-in-one SEO plugin gives you control over titles, noindex/nofollow, meta tags, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
9
 
10
  == Description ==
11
 
12
  = Recent Releases =
13
 
 
14
  * Version 4.1 adds tag title capitalization for title tags
15
  * Version 4.0 adds meta description mass-editor for posts, pages, attachments, and custom post types
16
  * Version 3.9 adds the ability to build internal links to posts from within the WordPress post editor (as well as other Deeplink Juggernaut improvements)
17
  * Version 3.8 adds direct post/page link support to Deeplink Juggernaut
18
- * Version 3.7 adds the "SEO Settings" box to custom post type editors
19
 
20
  = Features =
21
 
@@ -79,8 +79,9 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
79
  * Determine which of your webpages Google most strongly associates with the keywords you specify.
80
  * Use the information to determine ideal targets for incoming links or ideal sources of outgoing links.
81
 
82
- * **Deeplink Juggernaut** -- UPDATED in Version 3.9
83
  * Automatically link phrases in your posts/pages to other posts/pages or to custom URLs.
 
84
  * Use the power of anchor text to boost your internal ranking SEO paradigm.
85
  * Control the maximum number of autolinks added to each post/page.
86
  * Apply the nofollow attribute on a per-link basis. (Perfect for automatic affiliate links.)
@@ -213,6 +214,9 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
213
 
214
  == Changelog ==
215
 
 
 
 
216
  = Version 4.1 (August 4, 2010) =
217
  * Feature: Title Tag Rewriter now automatically converts lowercase category/tag names into title case when used in title tags (can be adjusted under the new "Settings" tab of Title Tag Rewriter)
218
 
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
4
  Requires at least: 2.8
5
  Tested up to: 3.0
6
+ Stable tag: 4.2
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
 
10
  == Description ==
11
 
12
  = Recent Releases =
13
 
14
+ * Version 4.2 adds the option to exclude specific posts/pages from being autolinked
15
  * Version 4.1 adds tag title capitalization for title tags
16
  * Version 4.0 adds meta description mass-editor for posts, pages, attachments, and custom post types
17
  * Version 3.9 adds the ability to build internal links to posts from within the WordPress post editor (as well as other Deeplink Juggernaut improvements)
18
  * Version 3.8 adds direct post/page link support to Deeplink Juggernaut
 
19
 
20
  = Features =
21
 
79
  * Determine which of your webpages Google most strongly associates with the keywords you specify.
80
  * Use the information to determine ideal targets for incoming links or ideal sources of outgoing links.
81
 
82
+ * **Deeplink Juggernaut** -- UPDATED in Version 4.2
83
  * Automatically link phrases in your posts/pages to other posts/pages or to custom URLs.
84
+ * Exclude specific posts/pages from having links added to them, if desired (e.g. contact pages, the homepage, etc.).
85
  * Use the power of anchor text to boost your internal ranking SEO paradigm.
86
  * Control the maximum number of autolinks added to each post/page.
87
  * Apply the nofollow attribute on a per-link basis. (Perfect for automatic affiliate links.)
214
 
215
  == Changelog ==
216
 
217
+ = Version 4.2 (August 5, 2010) =
218
+ * Feature: Users can now stop autolinks from being added to specific posts/pages
219
+
220
  = Version 4.1 (August 4, 2010) =
221
  * Feature: Title Tag Rewriter now automatically converts lowercase category/tag names into title case when used in title tags (can be adjusted under the new "Settings" tab of Title Tag Rewriter)
222
 
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.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.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.1');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/4.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.2
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.2
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.2');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/4.2');
54
 
55
  /********** INCLUDES **********/
56
 
seo-ultimate.pot CHANGED
@@ -1,4 +1,4 @@
1
- # Translation of the WordPress plugin SEO Ultimate 4.0 by SEO Design Solutions.
2
  # Copyright (C) 2010 SEO Design Solutions
3
  # This file is distributed under the same license as the SEO Ultimate package.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
@@ -6,9 +6,9 @@
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
- "Project-Id-Version: SEO Ultimate 4.0\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
11
- "POT-Creation-Date: 2010-08-03 17:03+0000\n"
12
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -158,7 +158,7 @@ msgstr ""
158
  msgid "404 Monitor Settings"
159
  msgstr ""
160
 
161
- #: modules/404s/fofs-settings.php:17
162
  msgid "Settings"
163
  msgstr ""
164
 
@@ -227,69 +227,77 @@ msgstr ""
227
  msgid "Content Links"
228
  msgstr ""
229
 
230
- #: modules/autolinks/content-autolinks.php:94
231
  msgid ""
232
  "The Content Links section of Deeplink Juggernaut lets you automatically link "
233
  "a certain word or phrase in your post/page content to a URL you specify."
234
  msgstr ""
235
 
236
- #: modules/autolinks/content-autolinks.php:127
237
  msgid "Edit Existing Links"
238
  msgstr ""
239
 
240
- #: modules/autolinks/content-autolinks.php:131
241
  msgid "Add a New Link"
242
  msgstr ""
243
 
244
- #: modules/autolinks/content-autolinks.php:139
245
  msgid "Anchor Text"
246
  msgstr ""
247
 
248
- #: modules/autolinks/content-autolinks.php:140
249
  msgid "Destination Type"
250
  msgstr ""
251
 
252
- #: modules/autolinks/content-autolinks.php:141
253
  msgid "Destination"
254
  msgstr ""
255
 
256
- #: modules/autolinks/content-autolinks.php:142
257
  msgid "Title Attribute"
258
  msgstr ""
259
 
260
- #: modules/autolinks/content-autolinks.php:143
261
  msgid "Options"
262
  msgstr ""
263
 
264
- #: modules/autolinks/content-autolinks.php:145
265
  msgid "Delete"
266
  msgstr ""
267
 
268
- #: modules/autolinks/content-autolinks.php:183
269
  msgid "Custom"
270
  msgstr ""
271
 
272
- #: modules/autolinks/content-autolinks.php:183
273
  msgid "URL"
274
  msgstr ""
275
 
276
- #: modules/autolinks/content-autolinks.php:184
277
  msgid "Content Items"
278
  msgstr ""
279
 
280
- #: modules/autolinks/content-autolinks.php:191
281
  msgid "Nofollow"
282
  msgstr ""
283
 
284
- #: modules/autolinks/content-autolinks.php:192
285
  msgid "New window"
286
  msgstr ""
287
 
288
- #: modules/autolinks/content-autolinks.php:255
289
  msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
290
  msgstr ""
291
 
292
- #: modules/autolinks/content-autolinks.php:260
 
 
 
 
 
 
 
 
293
  msgid ""
294
  "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
295
  "into this box, Deeplink Juggernaut will search for that anchor in all your "
@@ -1097,7 +1105,7 @@ msgstr ""
1097
  msgid "SEO Design Solutions Whitepapers"
1098
  msgstr ""
1099
 
1100
- #. #-#-#-#-# plugin.pot (SEO Ultimate 4.0) #-#-#-#-#
1101
  #. Author of the plugin/theme
1102
  #: modules/sds-blog/sds-blog.php:49
1103
  msgid "SEO Design Solutions"
@@ -1403,7 +1411,7 @@ msgstr ""
1403
  msgid "SEO Ultimate Plugin Settings"
1404
  msgstr ""
1405
 
1406
- #. #-#-#-#-# plugin.pot (SEO Ultimate 4.0) #-#-#-#-#
1407
  #. Plugin Name of the plugin/theme
1408
  #: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:756
1409
  msgid "SEO Ultimate"
@@ -1521,111 +1529,120 @@ msgstr ""
1521
  msgid "Default Formats"
1522
  msgstr ""
1523
 
1524
- #: modules/titles/titles.php:29
1525
  msgid "Title Tag"
1526
  msgstr ""
1527
 
1528
- #: modules/titles/titles.php:44
 
 
 
 
 
 
 
 
 
1529
  msgid "{blog}"
1530
  msgstr ""
1531
 
1532
- #: modules/titles/titles.php:45
1533
  msgid "{post} | {blog}"
1534
  msgstr ""
1535
 
1536
- #: modules/titles/titles.php:46
1537
  msgid "{page} | {blog}"
1538
  msgstr ""
1539
 
1540
- #: modules/titles/titles.php:47
1541
  msgid "{category} | {blog}"
1542
  msgstr ""
1543
 
1544
- #: modules/titles/titles.php:48
1545
  msgid "{tag} | {blog}"
1546
  msgstr ""
1547
 
1548
- #: modules/titles/titles.php:49
1549
  msgid "Archives for {month} {day}, {year} | {blog}"
1550
  msgstr ""
1551
 
1552
- #: modules/titles/titles.php:50
1553
  msgid "Archives for {month} {year} | {blog}"
1554
  msgstr ""
1555
 
1556
- #: modules/titles/titles.php:51
1557
  msgid "Archives for {year} | {blog}"
1558
  msgstr ""
1559
 
1560
- #: modules/titles/titles.php:52
1561
  msgid "Posts by {author} | {blog}"
1562
  msgstr ""
1563
 
1564
- #: modules/titles/titles.php:53
1565
  msgid "Search Results for {query} | {blog}"
1566
  msgstr ""
1567
 
1568
- #: modules/titles/titles.php:54
1569
  msgid "404 Not Found | {blog}"
1570
  msgstr ""
1571
 
1572
- #: modules/titles/titles.php:55
1573
  msgid "{title} - Page {num}"
1574
  msgstr ""
1575
 
1576
- #: modules/titles/titles.php:61
1577
  msgid "Blog Homepage Title"
1578
  msgstr ""
1579
 
1580
- #: modules/titles/titles.php:62
1581
  msgid "Post Title Format"
1582
  msgstr ""
1583
 
1584
- #: modules/titles/titles.php:63
1585
  msgid "Page Title Format"
1586
  msgstr ""
1587
 
1588
- #: modules/titles/titles.php:64
1589
  msgid "Category Title Format"
1590
  msgstr ""
1591
 
1592
- #: modules/titles/titles.php:65
1593
  msgid "Tag Title Format"
1594
  msgstr ""
1595
 
1596
- #: modules/titles/titles.php:66
1597
  msgid "Day Archive Title Format"
1598
  msgstr ""
1599
 
1600
- #: modules/titles/titles.php:67
1601
  msgid "Month Archive Title Format"
1602
  msgstr ""
1603
 
1604
- #: modules/titles/titles.php:68
1605
  msgid "Year Archive Title Format"
1606
  msgstr ""
1607
 
1608
- #: modules/titles/titles.php:69
1609
  msgid "Author Archive Title Format"
1610
  msgstr ""
1611
 
1612
- #: modules/titles/titles.php:70
1613
  msgid "Search Title Format"
1614
  msgstr ""
1615
 
1616
- #: modules/titles/titles.php:71
1617
  msgid "404 Title Format"
1618
  msgstr ""
1619
 
1620
- #: modules/titles/titles.php:72
1621
  msgid "Pagination Title Format"
1622
  msgstr ""
1623
 
1624
- #: modules/titles/titles.php:285
1625
  msgid "Title Tag:"
1626
  msgstr ""
1627
 
1628
- #: modules/titles/titles.php:290
1629
  msgid ""
1630
  "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
1631
  "tag. The title appears in visitors&#8217; title bars and in search engine "
1
+ # Translation of the WordPress plugin SEO Ultimate 4.2 by SEO Design Solutions.
2
  # Copyright (C) 2010 SEO Design Solutions
3
  # This file is distributed under the same license as the SEO Ultimate package.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
+ "Project-Id-Version: SEO Ultimate 4.2\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
11
+ "POT-Creation-Date: 2010-08-05 14:41+0000\n"
12
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
158
  msgid "404 Monitor Settings"
159
  msgstr ""
160
 
161
+ #: modules/404s/fofs-settings.php:17 modules/titles/titles.php:24
162
  msgid "Settings"
163
  msgstr ""
164
 
227
  msgid "Content Links"
228
  msgstr ""
229
 
230
+ #: modules/autolinks/content-autolinks.php:96
231
  msgid ""
232
  "The Content Links section of Deeplink Juggernaut lets you automatically link "
233
  "a certain word or phrase in your post/page content to a URL you specify."
234
  msgstr ""
235
 
236
+ #: modules/autolinks/content-autolinks.php:129
237
  msgid "Edit Existing Links"
238
  msgstr ""
239
 
240
+ #: modules/autolinks/content-autolinks.php:133
241
  msgid "Add a New Link"
242
  msgstr ""
243
 
244
+ #: modules/autolinks/content-autolinks.php:141
245
  msgid "Anchor Text"
246
  msgstr ""
247
 
248
+ #: modules/autolinks/content-autolinks.php:142
249
  msgid "Destination Type"
250
  msgstr ""
251
 
252
+ #: modules/autolinks/content-autolinks.php:143
253
  msgid "Destination"
254
  msgstr ""
255
 
256
+ #: modules/autolinks/content-autolinks.php:144
257
  msgid "Title Attribute"
258
  msgstr ""
259
 
260
+ #: modules/autolinks/content-autolinks.php:145
261
  msgid "Options"
262
  msgstr ""
263
 
264
+ #: modules/autolinks/content-autolinks.php:147
265
  msgid "Delete"
266
  msgstr ""
267
 
268
+ #: modules/autolinks/content-autolinks.php:185
269
  msgid "Custom"
270
  msgstr ""
271
 
272
+ #: modules/autolinks/content-autolinks.php:185
273
  msgid "URL"
274
  msgstr ""
275
 
276
+ #: modules/autolinks/content-autolinks.php:186
277
  msgid "Content Items"
278
  msgstr ""
279
 
280
+ #: modules/autolinks/content-autolinks.php:193
281
  msgid "Nofollow"
282
  msgstr ""
283
 
284
+ #: modules/autolinks/content-autolinks.php:194
285
  msgid "New window"
286
  msgstr ""
287
 
288
+ #: modules/autolinks/content-autolinks.php:257
289
  msgid "Incoming Autolink Anchors:<br /><em>(one per line)</em>"
290
  msgstr ""
291
 
292
+ #: modules/autolinks/content-autolinks.php:258
293
+ msgid "Don&#8217;t add autolinks to anchor texts found in this post."
294
+ msgstr ""
295
+
296
+ #: modules/autolinks/content-autolinks.php:258
297
+ msgid "Autolink Exclusion:"
298
+ msgstr ""
299
+
300
+ #: modules/autolinks/content-autolinks.php:263
301
  msgid ""
302
  "<strong>Incoming Autolink Anchors</strong> &mdash; When you enter anchors "
303
  "into this box, Deeplink Juggernaut will search for that anchor in all your "
1105
  msgid "SEO Design Solutions Whitepapers"
1106
  msgstr ""
1107
 
1108
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 4.2) #-#-#-#-#
1109
  #. Author of the plugin/theme
1110
  #: modules/sds-blog/sds-blog.php:49
1111
  msgid "SEO Design Solutions"
1411
  msgid "SEO Ultimate Plugin Settings"
1412
  msgstr ""
1413
 
1414
+ #. #-#-#-#-# plugin.pot (SEO Ultimate 4.2) #-#-#-#-#
1415
  #. Plugin Name of the plugin/theme
1416
  #: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:756
1417
  msgid "SEO Ultimate"
1529
  msgid "Default Formats"
1530
  msgstr ""
1531
 
1532
+ #: modules/titles/titles.php:30
1533
  msgid "Title Tag"
1534
  msgstr ""
1535
 
1536
+ #: modules/titles/titles.php:43
1537
+ msgid ""
1538
+ "Convert lowercase category/tag names to title case when used in title tags."
1539
+ msgstr ""
1540
+
1541
+ #: modules/titles/titles.php:43
1542
+ msgid "Title Tag Variables"
1543
+ msgstr ""
1544
+
1545
+ #: modules/titles/titles.php:51
1546
  msgid "{blog}"
1547
  msgstr ""
1548
 
1549
+ #: modules/titles/titles.php:52
1550
  msgid "{post} | {blog}"
1551
  msgstr ""
1552
 
1553
+ #: modules/titles/titles.php:53
1554
  msgid "{page} | {blog}"
1555
  msgstr ""
1556
 
1557
+ #: modules/titles/titles.php:54
1558
  msgid "{category} | {blog}"
1559
  msgstr ""
1560
 
1561
+ #: modules/titles/titles.php:55
1562
  msgid "{tag} | {blog}"
1563
  msgstr ""
1564
 
1565
+ #: modules/titles/titles.php:56
1566
  msgid "Archives for {month} {day}, {year} | {blog}"
1567
  msgstr ""
1568
 
1569
+ #: modules/titles/titles.php:57
1570
  msgid "Archives for {month} {year} | {blog}"
1571
  msgstr ""
1572
 
1573
+ #: modules/titles/titles.php:58
1574
  msgid "Archives for {year} | {blog}"
1575
  msgstr ""
1576
 
1577
+ #: modules/titles/titles.php:59
1578
  msgid "Posts by {author} | {blog}"
1579
  msgstr ""
1580
 
1581
+ #: modules/titles/titles.php:60
1582
  msgid "Search Results for {query} | {blog}"
1583
  msgstr ""
1584
 
1585
+ #: modules/titles/titles.php:61
1586
  msgid "404 Not Found | {blog}"
1587
  msgstr ""
1588
 
1589
+ #: modules/titles/titles.php:62
1590
  msgid "{title} - Page {num}"
1591
  msgstr ""
1592
 
1593
+ #: modules/titles/titles.php:70
1594
  msgid "Blog Homepage Title"
1595
  msgstr ""
1596
 
1597
+ #: modules/titles/titles.php:71
1598
  msgid "Post Title Format"
1599
  msgstr ""
1600
 
1601
+ #: modules/titles/titles.php:72
1602
  msgid "Page Title Format"
1603
  msgstr ""
1604
 
1605
+ #: modules/titles/titles.php:73
1606
  msgid "Category Title Format"
1607
  msgstr ""
1608
 
1609
+ #: modules/titles/titles.php:74
1610
  msgid "Tag Title Format"
1611
  msgstr ""
1612
 
1613
+ #: modules/titles/titles.php:75
1614
  msgid "Day Archive Title Format"
1615
  msgstr ""
1616
 
1617
+ #: modules/titles/titles.php:76
1618
  msgid "Month Archive Title Format"
1619
  msgstr ""
1620
 
1621
+ #: modules/titles/titles.php:77
1622
  msgid "Year Archive Title Format"
1623
  msgstr ""
1624
 
1625
+ #: modules/titles/titles.php:78
1626
  msgid "Author Archive Title Format"
1627
  msgstr ""
1628
 
1629
+ #: modules/titles/titles.php:79
1630
  msgid "Search Title Format"
1631
  msgstr ""
1632
 
1633
+ #: modules/titles/titles.php:80
1634
  msgid "404 Title Format"
1635
  msgstr ""
1636
 
1637
+ #: modules/titles/titles.php:81
1638
  msgid "Pagination Title Format"
1639
  msgstr ""
1640
 
1641
+ #: modules/titles/titles.php:299
1642
  msgid "Title Tag:"
1643
  msgstr ""
1644
 
1645
+ #: modules/titles/titles.php:304
1646
  msgid ""
1647
  "<strong>Title Tag</strong> &mdash; The exact contents of the &lt;title&gt; "
1648
  "tag. The title appears in visitors&#8217; title bars and in search engine "