Moving HTML out of strings and updating some tags to XHTML
authorjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 8 May 2004 16:19:27 +0000 (16:19 +0000)
committerjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 8 May 2004 16:19:27 +0000 (16:19 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7396 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/mailbox_display.php
plugins/bug_report/bug_report.php
plugins/filters/options.php
plugins/filters/spamoptions.php
plugins/spamcop/options.php
plugins/squirrelspell/modules/crypto_badkey.mod
plugins/squirrelspell/modules/forget_me.mod
plugins/squirrelspell/modules/lang_change.mod
po/squirrelmail.pot

index c010ba8abc72de17bb5476b725a735a85b293406..107d2d968f0e2a8c8d662b7808b5838e54754359 100644 (file)
@@ -598,7 +598,7 @@ function showMessagesForMailbox($imapConnection, $mailbox, $num_msgs,
                 $msgs = getThreadMessages($imapConnection, $start_msg, $show_num, $num_msgs);
                 if ($msgs === false) {
                     echo '<b><small><center><font color=red>' .
-                         _("Thread sorting is not supported by your IMAP server.") . "<br />" .
+                         _("Thread sorting is not supported by your IMAP server.") . '<br />' .
                         _("Please report this to the system administrator.").
                          '</center></small></b>';
                     $thread_sort_messages = 0;
@@ -613,7 +613,7 @@ function showMessagesForMailbox($imapConnection, $mailbox, $num_msgs,
                                               $num_msgs, $sort, $mbxresponse);
                 if ($msgs === false) {
                     echo '<b><small><center><font color=red>' .
-                         _( "Server-side sorting is not supported by your IMAP server.") . "<br />" .
+                         _( "Server-side sorting is not supported by your IMAP server.") . '<br />' .
                         _("Please report this to the system administrator.").
                          '</center></small></b>';
                     $sort = $server_sort_order;
@@ -926,12 +926,7 @@ function mail_message_listing_beginning ($imapConnection,
           <td>
             <table bgcolor="<?php echo $color[4]; ?>" border="0" width="100%" cellpadding="1"  cellspacing="0">
               <tr>
-                <td align="left"><small>
-                   <?php
-                       echo $paginator; 
-                       echo $thread_link_str; 
-                   ?>
-               </small></td>
+                <td align="left"><small><?php echo $paginator . $thread_link_str; ?></small></td>
                 <td align="center"></td>
                 <td align="right"><small><?php echo $msg_cnt_str; ?></small></td>
               </tr>
@@ -1132,7 +1127,7 @@ function ShowSortButton($sort, $mailbox, $Down, $Up ) {
          . '&amp;startMessage=1&amp;mailbox=' . urlencode($mailbox)
          . '"><img src="../images/' . $img
          . '" border="0" width="12" height="10" alt="sort" title="'
-         . _("Click here to change the sorting of the message list") .'"></a>';
+         . _("Click here to change the sorting of the message list") .' /"></a>';
 }
 
 /**
@@ -1360,7 +1355,7 @@ function get_paginator_str($box, $start_msg, $end_msg, $num_msgs,
          * I am leaving this debug code here, commented out, because
          * it is a really nice way to see what the above code is doing.
          * echo "qts =  $q1_pgs/$q2_pgs/$q3_pgs/$q4_pgs = "
-         *    . ($q1_pgs + $q2_pgs + $q3_pgs + $q4_pgs) . '<br>';
+         *    . ($q1_pgs + $q2_pgs + $q3_pgs + $q4_pgs) . '<br />';
          */
 
         /* Print out the page links from the compute page quarters. */
index f75d69fc895684da09003058354b5d5e96f0c41f..d480a097b1d09fe43084b28df58d6ed28170eee3 100644 (file)
@@ -51,7 +51,7 @@ $body_top = "I subscribe to the squirrelmail-users mailing list.\n" .
 $body = htmlspecialchars($body_top) . $body;
 
 ?>
-   <br>
+   <br />
    <table width="95%" align="center" border="0" cellpadding="2" cellspacing="0"><tr>
       <?php echo html_tag('td',"<b>"._("Submit a Bug Report")."</b>",'center',$color[0]); ?>
    </tr></table>
@@ -64,12 +64,12 @@ $body = htmlspecialchars($body_top) . $body;
 
    echo "<ul>";
    echo "<li>";
-   echo _("Make sure that you are running the most recent copy of <a href=\"http://www.squirrelmail.org/\">SquirrelMail</a>.");
-   echo sprintf(_("You are currently using version %s."),$version);
+   printf(_("Make sure that you are running the most recent copy of %s.") . '<a href="http://www.squirrelmail.org/">SquirrelMail</a>');
+   printf(_("You are currently using version %s."),$version);
    echo "</li>\n";
 
    echo "<li>";
-   echo _("Check to see if your bug is already listed in the <a href=\"http://sourceforge.net/bugs/?group_id=311\">Bug List</a> on SourceForge. If it is, we already know about it and are trying to fix it.");
+   printf(_("Check to see if your bug is already listed in the %sBug List%s on SourceForge. If it is, we already know about it and are trying to fix it."), '<a href="http://sourceforge.net/bugs/?group_id=311">', '</a>');
    echo "</li>\n";
    
    echo "<li>";
@@ -77,7 +77,7 @@ $body = htmlspecialchars($body_top) . $body;
    echo "</li>\n";
 
    echo "<li>";
-   echo _("If there were warnings displayed above, try to resolve them yourself. Read the guides in the <tt>doc/</tt> directory where SquirrelMail was installed.");
+   printf(_("If there were warnings displayed above, try to resolve them yourself. Read the guides in the %s directory where SquirrelMail was installed."), '<tt>doc/</tt>');
    echo "</li>\n";
    echo "</ul>\n";
 
index f439ad07e0b331bd1fed78a7bef65623c5ef3f07..5706aad5fec39f10dc561981290c6a0d06546ede 100644 (file)
@@ -85,7 +85,7 @@ if (sqgetGlobalVar('filter_submit',$filter_submit,SQ_POST)) {
         $filter_what = str_replace('"', '&quot;', $filter_what);
 
         if (($filter_where == 'Header') && (strchr($filter_what,':') == '')) {
-           do_error(_("WARNING! Header filters should be of the format \"Header: value\""));
+           do_error(_("WARNING! Header filters should be of the format &quot;Header: value&quot;"));
            $action = 'edit';
        }
        setPref($data_dir, $username, 'filter'.$theid, $filter_where.','.$filter_what.','.$filter_folder);
index 730086cf6bc788496d49cbcb4862a7ec4e4f6aca..a31ebaa5540de191898da2eee1a39a366c57c318 100644 (file)
@@ -59,7 +59,7 @@ if (sqgetGlobalVar('spam_submit',$spam_submit,SQ_POST)) {
     if (isset($filters_spam_folder_set)) {
         setPref($data_dir, $username, 'filters_spam_folder', $filters_spam_folder_set);
     } else {
-       echo _("You must select spam folder.");
+       echo _("You must select spam folder.");
     }
 
     // setting scan type
@@ -67,7 +67,7 @@ if (sqgetGlobalVar('spam_submit',$spam_submit,SQ_POST)) {
     if (isset($filters_spam_scan_set)) {
        setPref($data_dir, $username, 'filters_spam_scan', $filters_spam_scan_set);
     } else {
-       echo _("You must select scan type.");
+       echo _("You must select scan type.");
     }
 
     foreach ($spam_filters as $Key => $Value) {
@@ -93,7 +93,7 @@ echo html_tag( 'table',
 if ($SpamFilters_YourHop == ' ') {
     echo '<br />' .
         html_tag( 'div', '<b>' .
-            sprintf(_("WARNING! Tell your admin to set the %s variable"),'SpamFilters_YourHop') .
+            sprintf(_("WARNING! Tell the adminstrator to set the %s variable."), '&quot;SpamFilters_YourHop&quot;') .
             '</b>' ,
         'center' ) .
         '<br />';
@@ -148,14 +148,14 @@ if (isset($action) && $action == 'spam') {
     if ($filters_spam_scan == 'new') {
         echo ' selected';
     }
-    echo '>' . _("Only unread messages") . '</option>' .
+    echo '>' . _("Unread messages only") . '</option>' .
             '</select>'.
         '</td>'.
     '</tr>'.
     html_tag( 'tr',
           html_tag( 'td', '&nbsp;' ) .
           html_tag( 'td',
-              _("The more messages you scan, the longer it takes. I would suggest that you scan only new messages. If you make a change to your filters, I would set it to scan all messages, then go view my INBOX, then come back and set it to scan only new messages. That way, your new spam filters will be applied and you'll scan even the spam you read with the new filters.") ,
+              _("The more messages scanned, the longer it takes. It's recommended to scan unread messages only. If a change to the filters is made, it's recommended to set it to scan all messages, then go view the INBOX, then come back and set it to scan unread messages only. That way, the new spam filters will be applied and even the spam you didn't catch with the old filters will be scanned.") ,
           'left' )
       );
 
@@ -199,9 +199,9 @@ if (isset($action) && $action == 'spam') {
     echo html_tag( 'p', '', 'center' ) .
          '[<a href="spamoptions.php?action=spam">' . _("Edit") . '</a>]' .
          ' - [<a href="../../src/options.php">' . _("Done") . '</a>]</center><br /><br />';
-    printf( _("Spam is sent to %s"), ($filters_spam_folder?'<b>'.imap_utf7_decode_local($filters_spam_folder).'</b>':'[<i>'._("not set yet").'</i>]' ) );
-    echo '<br>';
-    printf( _("Spam scan is limited to <b>%s</b>"), (($filters_spam_scan == 'new')?_("New Messages Only"):_("All Messages") ) );
+    printf( _("Spam is sent to %s."), ($filters_spam_folder?'<b>'.imap_utf7_decode_local($filters_spam_folder).'</b>':'[<i>'._("not set yet").'</i>]' ) );
+    echo '<br />';
+    printf( _("Spam scan is limited to %s."), '<b>' . ( ($filters_spam_scan == 'new')?_("Unread messages only"):_("All Messages") ) . '</b>' );
     echo '</p>'.
         '<table border="0" cellpadding="3" cellspacing="0" align="center" bgcolor="' . $color[0] . "\">\n";
 
index a64e304da99907dd47f16ad15cd43b8d4c426d8a..146e8308095c2c6add7add12fb29b3e7e6795275 100755 (executable)
@@ -178,46 +178,46 @@ spamcop_load();
        </tr>
       </table>
 <?php
-echo "<p>";
+echo '<p><b>' . _("About SpamCop") . '</b><br />';
 echo _("SpamCop is a free service that greatly assists in finding the true source of the spam and helps in letting the proper people know about the abuse.");
 echo "</p>\n";
 
-echo "<p>";
-echo _("To use it, you must get a SpamCop authorization code. There is a free <a href=\"http://spamcop.net/anonsignup.shtml\">sign up page</a> so you can use SpamCop.");
+echo '<p>';
+printf(_("To use it, you must get a SpamCop authorization code. There is a free %ssign up page%s so you can use SpamCop."), '<a href="http://spamcop.net/anonsignup.shtml">', '</a>');
 echo "</p>\n";
 
-echo "<p>";
-echo _("<b>Before you sign up, be warned:</b> Some users have reported that the email addresses used with SpamCop find their way onto spam lists. To be safe, you can just create an email forwarding account and have all SpamCop reports get sent to there. Also, if it gets flooded with spam, you can then just delete that account with no worries about losing your real email address. Just go create an email forwarder somewhere (<a href=\"http://www.yahoo.com/\">Yahoo!</a> has a <a href=\"http://dir.yahoo.com/Business_and_Economy/Business_to_Business/Communications_and_Networking/Internet_and_World_Wide_Web/Email_Providers/Forwarding_Services/Free_Forwarding/\">list of places</a>) so that messages from system administrators and whatnot can be sent to you.");
+echo '<p><b>' . _("Before you sign up, be warned") . '</b><br />';
+printf(_("Some users have reported that the email addresses used with SpamCop find their way onto spam lists. To be safe, you can just create an email forwarding account and have all SpamCop reports get sent to there. Also, if it gets flooded with spam, you can then just delete that account with no worries about losing your real email address. Just go create an email forwarder somewhere (%s has a %slist of places%s) so that messages from system administrators and what not can be sent to you."), '<a href="http://www.yahoo.com/">Yahoo!</a>', '<a href="http://dir.yahoo.com/Business_and_Economy/Business_to_Business/Communications_and_Networking/Internet_and_World_Wide_Web/Email_Providers/Forwarding_Services/Free_Forwarding/">', '</a>');
 echo "</p>\n";
 
-echo "<p>";
-echo _("Once you have signed up with SpamCop and have received your SpamCop authorization code, you need to enable this plugin -- just click the link above. Once enabled, you go about your normal life. If you encounter a spam message in your mailbox, just view it. On the right-hand side, near the top of where the message is displayed, you will see a link to report this message as spam. Clicking on it brings you to a confirmation page. Confirming that you want the spam report sent will do different things with different reporting methods.");
+echo '<p>';
+echo _("Once you have signed up with SpamCop and have received your SpamCop authorization code, you need to enable this plugin by clicking the link above. Once enabled, you go about your normal life. If you encounter a spam message in your mailbox, just view it. On the right-hand side, near the top of where the message is displayed, you will see a link to report this message as spam. Clicking on it brings you to a confirmation page. Confirming that you want the spam report sent will do different things with different reporting methods.");
 echo "</p>\n";
 
-echo "<p><b>" . _("Email-based Reporting") . "</b><br />";
+echo '<p><b>' . _("Email-based reporting") . '</b><br />';
 echo _("Pressing the button forwards the message to the SpamCop service and will optionally delete the message. From there, you just need to go to your INBOX and quite soon a message should appear from SpamCop. (It gets sent to the account you registered with, so make sure that your mail forwarder works!) Open it up, click on the appropriate link at the top, and a new browser window will open.");
-echo "</p>";
+echo "</p>\n";
 
 if ($spamcop_quick_report) {
-echo "<p>";
-echo _("Currently, the quick reporting just forwards the request to the thorough reporting. Also, it appears that this is for members (non-free) only. Hopefully this will change soon.");
-echo "</p>\n";
+    echo '<p>';
+    echo _("Currently, the quick reporting just forwards the request to the thorough reporting. Also, it appears that this is for members (non-free) only. Hopefully this will change soon.");
+    echo "</p>\n";
 }
 
-echo "<p><b>" . _("Web-based Reporting") . "</b><br />";
+echo '<p><b>' . _("Web-based reporting") . '</b><br />';
 echo _("When you press the button on the confirmation page, this will pop open a new browser window and the SpamCop service should appear inside. The message will not be deleted (working on that part), but you won't need to wait for a response email to start the spam reporting.");
 echo "</p>\n";
 
-echo "<p>";
+echo '<p>';
 echo _("The SpamCop service will display information as it finds it, so scroll down until you see a form button. It might pause a little while it is looking up information, so be a little patient. Read what it says, and submit the spam. Close the browser window. Press Cancel or click on the appropriate mail folder to see messages and/or delete the spam.");
 echo "</p>\n";
 
-echo "<p><b>". _("Spamcop Service Type") . "</b><br />\n";
+echo '<p><b>' . _("Spamcop service type") . '</b><br />';
 echo _("Service type option allows selecting which spamcop services you are using. Member services use different web reporting forms and does not display nags. You can purchase these services, if you want to support SpamCop.");
 echo "</p>\n";
 
-echo "<p>";
-echo _("<b>For more information</b> about SpamCop, it's services, spam in general, and many related topics, try reading through SpamCop's <a href=\"http://spamcop.net/help.shtml\">Help and Feedback</a> section.");
+echo '<p><b>' . _("More information") . '</b><br />';
+printf(_("For more information about SpamCop, it's services, spam in general, and many related topics, try reading through SpamCop's %sHelp and Feedback%s section."), '<a href="http://spamcop.net/help.shtml">', '</a>');
 echo "</p>\n";
 ?>
 </body></html>
index b817f531bfe9470d1ae00295d0ed815af670f702..e8e8497908411bce8c8dc6387f1ecf96d64465a8 100644 (file)
@@ -48,7 +48,7 @@ if ($delete_words=='ON'){
        . '</p> '
        . '<p align="center"><form>'
        . '<input type="button" value=" '
-       . _("Close this Window") . ' " onclick="self.close()">'
+       . _("Close this Window") . ' " onclick="self.close()" />'
        . '</form></p>';
     sqspell_makeWindow(null, _("Dictionary Erased"), null, $msg);
   }
@@ -75,13 +75,13 @@ if ($old_key){
     $msg = '<p>'
        . _("Your personal dictionary was re-encrypted successfully. Now return to the &quot;SpellChecker options&quot; menu and make your selection again." ) 
        . '</p>';
-    sqspell_makePage(_("Successful Re-encryption"), null, $msg);
+    sqspell_makePage(_("Successful re-encryption"), null, $msg);
   } else {
     $msg = '<p>'
        . _("Your personal dictionary was re-encrypted successfully. Please close this window and click \"Check Spelling\" button again to start your spellcheck over.") 
        . '</p><form><p align="center"><input type="button" value=" ' 
        . _("Close this Window") . ' "'
-       . 'onclick="self.close()"></p></form>';
+       . 'onclick="self.close()" /></p></form>';
     sqspell_makeWindow(null, _("Dictionary re-encrypted"), null, $msg);
   }
   exit;
index f33a69f1770d04f516b952e21ab1a1396178316f..129c3af9aa4ace4f74514ecd0d0748e37970baf7 100644 (file)
@@ -29,7 +29,7 @@ if (sizeof($words_ary)){
   $words=sqspell_getWords();
   $lang_words = sqspell_getLang($words, $sqspell_use_app);
   $msg = '<p>'
-     . sprintf(_("Deleting the following entries from <strong>%s</strong> dictionary:"), $sqspell_use_app)
+     . sprintf(_("Deleting the following entries from %s dictionary:"), '<strong>'.$sqspell_use_app.'</strong>')
      . '</p>'
      . "<ul>\n";
   for ($i=0; $i<sizeof($words_ary); $i++){
index 909b0441b9878a96d13e15db5c23ae6972e065bc..3617e5fed8084b9a7aecc0493a10b023b454cc5a 100644 (file)
@@ -73,14 +73,14 @@ if (sizeof($use_langs)){
   }
   $dsp_string = substr( $dsp_string, 0, -2 );
   $msg = '<p>'
-    . sprintf(_("Settings adjusted to: <strong>%s</strong> with <strong>%s</strong> as default dictionary."), $dsp_string, _($lang_default))
+    . sprintf(_("Settings adjusted to: %s with %s as default dictionary."), '<strong>'.$dsp_string.'</strong>', '<strong>'._($lang_default).'</strong>')
     . '</p>';
 } else {
   /**
    * No dictionaries selected. Use system default.
    */
   $msg = '<p>'
-    . sprintf(_("Using <strong>%s</strong> dictionary (system default) for spellcheck." ), $SQSPELL_APP_DEFAULT)
+    . sprintf(_("Using %s dictionary (system default) for spellcheck." ), '<strong>'.$SQSPELL_APP_DEFAULT.'</strong>')
     . '</p>';
   $lang_string = $SQSPELL_APP_DEFAULT;
 }
index 2d29d6de51bbe259faa21c3c5dfa1f686573a557..dcfcdfe9ac6a5567aa9580318bf676673b6b15d8 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2004-05-06 00:25+0200\n"
+"POT-Creation-Date: 2004-05-08 18:31+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2247,19 +2247,18 @@ msgid ""
 "for any common problems."
 msgstr ""
 
-msgid ""
-"Make sure that you are running the most recent copy of <a href=\"http://www."
-"squirrelmail.org/\">SquirrelMail</a>."
+#, c-format
+msgid "Make sure that you are running the most recent copy of %s."
 msgstr ""
 
 #, c-format
 msgid "You are currently using version %s."
 msgstr ""
 
+#, c-format
 msgid ""
-"Check to see if your bug is already listed in the <a href=\"http://"
-"sourceforge.net/bugs/?group_id=311\">Bug List</a> on SourceForge. If it is, "
-"we already know about it and are trying to fix it."
+"Check to see if your bug is already listed in the %sBug List%s on "
+"SourceForge. If it is, we already know about it and are trying to fix it."
 msgstr ""
 
 msgid ""
@@ -2268,9 +2267,10 @@ msgid ""
 "view a specific message, keep that message around so maybe we can see it."
 msgstr ""
 
+#, c-format
 msgid ""
 "If there were warnings displayed above, try to resolve them yourself. Read "
-"the guides in the <tt>doc/</tt> directory where SquirrelMail was installed."
+"the guides in the %s directory where SquirrelMail was installed."
 msgstr ""
 
 msgid ""
@@ -2309,6 +2309,9 @@ msgstr ""
 msgid "Show button in toolbar"
 msgstr ""
 
+msgid "Show system specs"
+msgstr ""
+
 msgid "TODAY"
 msgstr ""
 
@@ -2555,7 +2558,8 @@ msgstr ""
 msgid "FREE - Distributed Sender Boycott List - UN-Confirmed Relays"
 msgstr ""
 
-msgid "WARNING! Header filters should be of the format \"Header: value\""
+msgid ""
+"WARNING! Header filters should be of the format &quot;Header: value&quot;"
 msgstr ""
 
 msgid "Saved Scan type"
@@ -2605,17 +2609,17 @@ msgid ""
 "junk email in your INBOX and move it to another folder (like Trash)."
 msgstr ""
 
-msgid "You must select spam folder."
+msgid "You must select spam folder."
 msgstr ""
 
-msgid "You must select scan type."
+msgid "You must select scan type."
 msgstr ""
 
 msgid "Spam Filtering"
 msgstr ""
 
 #, c-format
-msgid "WARNING! Tell your admin to set the %s variable"
+msgid "WARNING! Tell the adminstrator to set the %s variable."
 msgstr ""
 
 msgid "Move spam to:"
@@ -2629,26 +2633,27 @@ msgid ""
 "around."
 msgstr ""
 
+msgid "Unread messages only"
+msgstr ""
+
 msgid ""
-"The more messages you scan, the longer it takes. I would suggest that you "
-"scan only new messages. If you make a change to your filters, I would set it "
-"to scan all messages, then go view my INBOX, then come back and set it to "
-"scan only new messages. That way, your new spam filters will be applied and "
-"you'll scan even the spam you read with the new filters."
+"The more messages scanned, the longer it takes. It's recommended to scan "
+"unread messages only. If a change to the filters is made, it's recommended "
+"to set it to scan all messages, then go view the INBOX, then come back and "
+"set it to scan unread messages only. That way, the new spam filters will be "
+"applied and even the spam you didn't catch with the old filters will be "
+"scanned."
 msgstr ""
 
 #, c-format
-msgid "Spam is sent to %s"
+msgid "Spam is sent to %s."
 msgstr ""
 
 msgid "not set yet"
 msgstr ""
 
 #, c-format
-msgid "Spam scan is limited to <b>%s</b>"
-msgstr ""
-
-msgid "New Messages Only"
+msgid "Spam scan is limited to %s."
 msgstr ""
 
 msgid "All Messages"
@@ -3228,34 +3233,37 @@ msgstr ""
 msgid "Save ID"
 msgstr ""
 
+msgid "About SpamCop"
+msgstr ""
+
 msgid ""
 "SpamCop is a free service that greatly assists in finding the true source of "
 "the spam and helps in letting the proper people know about the abuse."
 msgstr ""
 
+#, c-format
 msgid ""
-"To use it, you must get a SpamCop authorization code. There is a free <a "
-"href=\"http://spamcop.net/anonsignup.shtml\">sign up page</a> so you can use "
-"SpamCop."
+"To use it, you must get a SpamCop authorization code. There is a free %ssign "
+"up page%s so you can use SpamCop."
+msgstr ""
+
+msgid "Before you sign up, be warned"
 msgstr ""
 
+#, c-format
 msgid ""
-"<b>Before you sign up, be warned:</b> Some users have reported that the "
-"email addresses used with SpamCop find their way onto spam lists. To be "
-"safe, you can just create an email forwarding account and have all SpamCop "
-"reports get sent to there. Also, if it gets flooded with spam, you can then "
-"just delete that account with no worries about losing your real email "
-"address. Just go create an email forwarder somewhere (<a href=\"http://www."
-"yahoo.com/\">Yahoo!</a> has a <a href=\"http://dir.yahoo.com/"
-"Business_and_Economy/Business_to_Business/Communications_and_Networking/"
-"Internet_and_World_Wide_Web/Email_Providers/Forwarding_Services/"
-"Free_Forwarding/\">list of places</a>) so that messages from system "
-"administrators and whatnot can be sent to you."
+"Some users have reported that the email addresses used with SpamCop find "
+"their way onto spam lists. To be safe, you can just create an email "
+"forwarding account and have all SpamCop reports get sent to there. Also, if "
+"it gets flooded with spam, you can then just delete that account with no "
+"worries about losing your real email address. Just go create an email "
+"forwarder somewhere (%s has a %slist of places%s) so that messages from "
+"system administrators and what not can be sent to you."
 msgstr ""
 
 msgid ""
 "Once you have signed up with SpamCop and have received your SpamCop "
-"authorization code, you need to enable this plugin -- just click the link "
+"authorization code, you need to enable this plugin by clicking the link "
 "above. Once enabled, you go about your normal life. If you encounter a spam "
 "message in your mailbox, just view it. On the right-hand side, near the top "
 "of where the message is displayed, you will see a link to report this "
@@ -3264,7 +3272,7 @@ msgid ""
 "different reporting methods."
 msgstr ""
 
-msgid "Email-based Reporting"
+msgid "Email-based reporting"
 msgstr ""
 
 msgid ""
@@ -3282,7 +3290,7 @@ msgid ""
 "Hopefully this will change soon."
 msgstr ""
 
-msgid "Web-based Reporting"
+msgid "Web-based reporting"
 msgstr ""
 
 msgid ""
@@ -3300,7 +3308,7 @@ msgid ""
 "folder to see messages and/or delete the spam."
 msgstr ""
 
-msgid "Spamcop Service Type"
+msgid "Spamcop service type"
 msgstr ""
 
 msgid ""
@@ -3309,10 +3317,13 @@ msgid ""
 "You can purchase these services, if you want to support SpamCop."
 msgstr ""
 
+msgid "More information"
+msgstr ""
+
+#, c-format
 msgid ""
-"<b>For more information</b> about SpamCop, it's services, spam in general, "
-"and many related topics, try reading through SpamCop's <a href=\"http://"
-"spamcop.net/help.shtml\">Help and Feedback</a> section."
+"For more information about SpamCop, it's services, spam in general, and many "
+"related topics, try reading through SpamCop's %sHelp and Feedback%s section."
 msgstr ""
 
 msgid "Report as Spam"
@@ -3514,7 +3525,7 @@ msgid ""
 "&quot;SpellChecker options&quot; menu and make your selection again."
 msgstr ""
 
-msgid "Successful Re-encryption"
+msgid "Successful re-encryption"
 msgstr ""
 
 msgid ""
@@ -3598,7 +3609,7 @@ msgid ""
 msgstr ""
 
 #, c-format
-msgid "Deleting the following entries from <strong>%s</strong> dictionary:"
+msgid "Deleting the following entries from %s dictionary:"
 msgstr ""
 
 msgid "All done!"
@@ -3622,13 +3633,11 @@ msgid "SquirrelSpell Initiating"
 msgstr ""
 
 #, c-format
-msgid ""
-"Settings adjusted to: <strong>%s</strong> with <strong>%s</strong> as "
-"default dictionary."
+msgid "Settings adjusted to: %s with %s as default dictionary."
 msgstr ""
 
 #, c-format
-msgid "Using <strong>%s</strong> dictionary (system default) for spellcheck."
+msgid "Using %s dictionary (system default) for spellcheck."
 msgstr ""
 
 msgid "International Dictionaries Preferences Updated"