Changeset 15492

Show
Ignore:
Timestamp:
07/18/07 17:51:11 (1 year ago)
Author:
GamerZ
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • wp-email/trunk/email/email-options.php

    r15235 r15492  
    3434      $email_smtp_password = strip_tags(trim($_POST['email_smtp_password'])); 
    3535      $email_smtp_server = strip_tags(trim($_POST['email_smtp_server'])); 
    36       $email_smtp = "$email_smtp_name|$email_smtp_password|$email_smtp_server"
     36      $email_smtp = array('username' => $email_smtp_name, 'password' => $email_smtp_password, 'server' => $email_smtp_server)
    3737      $email_options = array(); 
    3838      $email_options['post_text'] = addslashes(trim($_POST['email_post_text'])); 
     
    112112$email_options = get_option('email_options'); 
    113113$email_fields = get_option('email_fields'); 
     114$emai_smtp = get_option('email_smtp'); 
    114115?> 
    115116<script type="text/javascript"> 
     
    166167            <fieldset class="options"> 
    167168                  <legend><?php _e('SMTP Settings', 'wp-email'); ?></legend> 
    168                   <?php 
    169                         $smtp_info = get_option('email_smtp'); 
    170                         $smtp_info = explode('|', $smtp_info); 
    171                   ?> 
    172169                  <table width="100%"  border="0" cellspacing="3" cellpadding="3"> 
    173170                         <tr valign="top"> 
    174171                              <th align="left" width="20%"><?php _e('SMTP Username:', 'wp-email'); ?></th> 
    175                               <td align="left"><input type="text" name="email_smtp_name" value="<?php echo $smtp_info[0]; ?>" size="30" /></td> 
     172                              <td align="left"><input type="text" name="email_smtp_name" value="<?php echo $emai_smtp['username']; ?>" size="30" /></td> 
    176173                        </tr> 
    177174                        <tr valign="top"> 
    178175                              <th align="left" width="20%"><?php _e('SMTP Password:', 'wp-email'); ?></th> 
    179                               <td align="left"><input type="text" name="email_smtp_password" value="<?php echo $smtp_info[1]; ?>" size="30" /></td> 
     176                              <td align="left"><input type="password" name="email_smtp_password" value="<?php echo $emai_smtp['password']; ?>" size="30" /></td> 
    180177                        </tr> 
    181178                        <tr valign="top"> 
    182179                              <th align="left" width="20%"><?php _e('SMTP Server:', 'wp-email'); ?></th> 
    183                               <td align="left"><input type="text" name="email_smtp_server" value="<?php echo $smtp_info[2]; ?>" size="30" /><br /><?php _e('You may leave the above fields blank if you do not use a SMTP server.', 'wp-email'); ?></td> 
     180                              <td align="left"><input type="text" name="email_smtp_server" value="<?php echo $emai_smtp['server']; ?>" size="30" /><br /><?php _e('You may leave the above fields blank if you do not use a SMTP server.', 'wp-email'); ?></td> 
    184181                        </tr> 
    185182                  </table> 
     
    272269                                    <input type="checkbox" name="email_field_yourremarks" value="1"<?php checked('1', $email_fields['yourremarks']); ?> />&nbsp;<?php _e('Your Remarks', 'wp-email'); ?><br /> 
    273270                                    <input type="checkbox" name="email_field_friendname" value="1"<?php checked('1', $email_fields['friendname']); ?> />&nbsp;<?php _e('Friend\'s Name', 'wp-email'); ?><br /> 
    274                                     <input type="checkbox" name="email_field_friendemail" value="1"<?php checked('1', $email_fields['friendemail']); ?> />&nbsp;<?php _e('Friend\'s E-Mail', 'wp-email'); ?> 
     271                                    <input type="checkbox" name="email_field_friendemail" value="1" checked="checked" disabled="disabled" />&nbsp;<?php _e('Friend\'s E-Mail', 'wp-email'); ?> 
    275272                              </td> 
    276273                        </tr> 
  • wp-email/trunk/email/email.php

    r14870 r15492  
    664664            // SMTP 
    665665            $imageverify = $_POST['imageverify']; 
    666             $smtp_info = get_option('email_smtp'); 
    667             $smtp_info = explode('|', $smtp_info); 
     666            $email_smtp = get_option('email_smtp'); 
    668667            $error = ''; 
    669668            // Multiple Names/Emails 
     
    711710            } 
    712711            // Checking Friend's E-Mail Field For Errors 
    713             if(intval($email_fields['friendemail']) == 1) { 
    714                   if($multiple_emails) { 
    715                         foreach($multiple_emails as $multiple_email) { 
    716                               $multiple_email = trim($multiple_email); 
    717                               if(!is_valid_email($multiple_email) || empty($multiple_email)) { 
    718                                     $error .= '<br /><strong>&raquo;</strong> '.sprintf(__('Friend\'s email (%s) is invalid or is empty.', 'wp-email'), $multiple_email); 
    719                               } else { 
    720                                     $friends[$friendemail_count]['email'] = $multiple_email; 
    721                                     $friendemail_count++; 
    722                               } 
    723                               if($friendemail_count > $multiple_max) { 
    724                                     break; 
    725                               } 
     712            if($multiple_emails) { 
     713                  foreach($multiple_emails as $multiple_email) { 
     714                        $multiple_email = trim($multiple_email); 
     715                        if(!is_valid_email($multiple_email) || empty($multiple_email)) { 
     716                              $error .= '<br /><strong>&raquo;</strong> '.sprintf(__('Friend\'s email (%s) is invalid or is empty.', 'wp-email'), $multiple_email); 
     717                        } else { 
     718                              $friends[$friendemail_count]['email'] = $multiple_email; 
     719                              $friendemail_count++; 
     720                        } 
     721                        if($friendemail_count > $multiple_max) { 
     722                              break; 
    726723                        } 
    727724                  } 
    728725            } 
    729726            // Checking If The Fields Exceed The Size Of Maximum Entries Allowed 
    730             if(intval($email_fields['friendname']) == 1 || intval($email_fields['friendemail']) == 1) { 
     727            if(intval($email_fields['friendname']) == 1) { 
    731728                  if(sizeof($friends) > $multiple_max) { 
    732729                        $error .= '<br /><strong>&raquo;</strong> '.sprintf(__('Maximum %s entries allowed', 'wp-email'), $multiple_max); 
    733730                  } 
    734731            } 
    735             if(intval($email_fields['friendname']) == 1 && intval($email_fields['friendemail']) == 1) { 
     732            if(intval($email_fields['friendname']) == 1) { 
    736733                  if($friendname_count != $friendemail_count) { 
    737734                        $error .= '<br /><strong>&raquo;</strong> '.__('Friends\' name count does not tally with friends\' email count.', 'wp-email'); 
     
    803800                        $mail->AddAddress($friend['email'], $friend['name']); 
    804801                  } 
    805                   $mail->Username = $smtp_info[0];  
    806                   $mail->Password = $smtp_info[1]; 
    807                   $mail->Host     = $smtp_info[2]; 
     802                  $mail->Username = $email_smtp['username'];  
     803                  $mail->Password = $email_smtp['password']; 
     804                  $mail->Host     = $email_smtp['server']; 
    808805                  $mail->Mailer   = get_option('email_mailer'); 
    809806                  $mail->ContentType =  get_option('email_contenttype'); 
     
    905902                              $output .= '</p>'."\n"; 
    906903                        } 
    907                         if(intval($email_fields['friendemail']) == 1) { 
    908                               $output .= '<p>'."\n"; 
    909                               $output .= '<strong><label for="friendemail">'.__('Friend\'s E-Mail: *', 'wp-email').'</label></strong><br />'."\n"; 
    910                               $output .= '<input type="text" size="50" id="friendemail" name="friendemail" class="Forms" value="'.$friendemail.'" />'.email_multiple(false)."\n"; 
    911                               $output .= '</p>'."\n"; 
    912                         } 
     904                        $output .= '<p>'."\n"; 
     905                        $output .= '<strong><label for="friendemail">'.__('Friend\'s E-Mail: *', 'wp-email').'</label></strong><br />'."\n"; 
     906                        $output .= '<input type="text" size="50" id="friendemail" name="friendemail" class="Forms" value="'.$friendemail.'" />'.email_multiple(false)."\n"; 
     907                        $output .= '</p>'."\n"; 
    913908                        if($email_image_verify) { 
    914909                              $output .= '<p>'."\n"; 
     
    10681063      maybe_create_table($wpdb->email, $create_table); 
    10691064      // Add In Options (12 Records) 
    1070       add_option('email_smtp', '', 'Your SMTP Name, Password, Server'); 
     1065      add_option('email_smtp', array('username' => '', 'password' => '', 'server' => ''), 'Your SMTP Name, Password, Server'); 
    10711066      add_option('email_contenttype', 'text/html', 'Your E-Mail Type'); 
    10721067      add_option('email_mailer', 'php', 'Your Mailer Type'); 
  • wp-email/trunk/email/wp-email.pot

    r15235 r15492  
    33"Project-Id-Version: WP-EMail 2.20\n" 
    44"POT-Creation-Date: \n" 
    5 "PO-Revision-Date: 2007-07-14 02:30+0800\n" 
     5"PO-Revision-Date: 2007-07-19 01:47+0800\n" 
    66"Last-Translator: Lester 'GaMerZ' Chan <gamerz84@hotmail.com>\n" 
    77"Language-Team: Lester Chan <gamerz84@hotmail.com>\n" 
     
    9494#: email.php:416 
    9595#: email.php:544 
    96 #: email.php:819 
    97 #: email.php:867 
    98 #: email.php:1026 
     96#: email.php:816 
     97#: email.php:864 
     98#: email.php:1021 
    9999msgid "Success" 
    100100msgstr "" 
     
    102102#: email-manager.php:127 
    103103#: email.php:558 
    104 #: email.php:831 
    105 #: email.php:1027 
     104#: email.php:828 
     105#: email.php:1022 
    106106msgid "Failed" 
    107107msgstr "" 
     
    300300msgstr "" 
    301301 
    302 #: email-options.php:121 
    303 #: email.php:1098 
     302#: email-options.php:122 
     303#: email.php:1093 
    304304msgid "E-Mail '%EMAIL_POST_TITLE%' To A Friend" 
    305305msgstr "" 
    306306 
    307 #: email-options.php:124 
    308 #: email.php:1099 
     307#: email-options.php:125 
     308#: email.php:1094 
    309309msgid "Email a copy of <strong>'%EMAIL_POST_TITLE%'</strong> to a friend" 
    310310msgstr "" 
    311311 
    312 #: email-options.php:127 
    313 #: email.php:1073 
     312#: email-options.php:128 
     313#: email.php:1068 
    314314msgid "Recommended Article By %EMAIL_YOUR_NAME%: %EMAIL_POST_TITLE%" 
    315315msgstr "" 
    316316 
    317 #: email-options.php:130 
     317#: email-options.php:131 
    318318msgid "<p>Hi <strong>%EMAIL_FRIEND_NAME%</strong>,<br />Your friend, <strong>%EMAIL_YOUR_NAME%</strong>, has recommended this article entitled '<strong>%EMAIL_POST_TITLE%</strong>' to you.</p><p><strong>Here is his/her remarks:</strong><br />%EMAIL_YOUR_REMARKS%</p><p><strong>%EMAIL_POST_TITLE%</strong><br />Posted By %EMAIL_POST_AUTHOR% On %EMAIL_POST_DATE% In %EMAIL_POST_CATEGORY%</p>%EMAIL_POST_CONTENT%<p>Article taken from %EMAIL_BLOG_NAME% - <a href=\\\"%EMAIL_BLOG_URL%\\\">%EMAIL_BLOG_URL%</a><br />URL to article: <a href=\\\"%EMAIL_PERMALINK%\\\">%EMAIL_PERMALINK%</a></p>" 
    319319msgstr "" 
    320320 
    321 #: email-options.php:133 
     321#: email-options.php:134 
    322322msgid "" 
    323323"Hi %EMAIL_FRIEND_NAME%,\\n" 
     
    334334msgstr "" 
    335335 
    336 #: email-options.php:136 
     336#: email-options.php:137 
    337337msgid "Article: <strong>%EMAIL_POST_TITLE%</strong> Has Been Sent To <strong>%EMAIL_FRIEND_NAME% (%EMAIL_FRIEND_EMAIL%)</strong>" 
    338338msgstr "" 
    339339 
    340 #: email-options.php:139 
    341 #: email.php:1085 
     340#: email-options.php:140 
     341#: email.php:1080 
    342342msgid "An Error Has Occured When Trying To Send The E-Mail" 
    343343msgstr "" 
    344344 
    345 #: email-options.php:142 
    346 #: email.php:1086 
     345#: email-options.php:143 
     346#: email.php:1081 
    347347msgid "An Error Has Occured" 
    348348msgstr "" 
    349349 
    350 #: email-options.php:164 
     350#: email-options.php:165 
    351351#: email.php:47 
    352352msgid "E-Mail Options" 
    353353msgstr "" 
    354354 
    355 #: email-options.php:167 
     355#: email-options.php:168 
    356356msgid "SMTP Settings" 
    357357msgstr "" 
    358358 
    359 #: email-options.php:174 
     359#: email-options.php:171 
    360360msgid "SMTP Username:" 
    361361msgstr "" 
    362362 
    363 #: email-options.php:178 
     363#: email-options.php:175 
    364364msgid "SMTP Password:" 
    365365msgstr "" 
    366366 
    367 #: email-options.php:182 
     367#: email-options.php:179 
    368368msgid "SMTP Server:" 
    369369msgstr "" 
    370370 
    371 #: email-options.php:183 
     371#: email-options.php:180 
    372372msgid "You may leave the above fields blank if you do not use a SMTP server." 
    373373msgstr "" 
    374374 
     375#: email-options.php:186 
     376msgid "E-Mail Styles" 
     377msgstr "" 
     378 
    375379#: email-options.php:189 
    376 msgid "E-Mail Styles" 
    377 msgstr "" 
    378  
    379 #: email-options.php:192 
    380380msgid "E-Mail Text Link For Post" 
    381381msgstr "" 
    382382 
    383 #: email-options.php:198 
     383#: email-options.php:195 
    384384msgid "E-Mail Text Link For Page" 
    385385msgstr "" 
    386386 
    387 #: email-options.php:204 
     387#: email-options.php:201 
    388388msgid "E-Mail Icon" 
    389389msgstr "" 
    390390 
     391#: email-options.php:229 
     392msgid "E-Mail Link Type" 
     393msgstr "" 
     394 
    391395#: email-options.php:232 
    392 msgid "E-Mail Link Type" 
    393 msgstr "" 
    394  
    395 #: email-options.php:235 
    396396msgid "E-Mail Standalone Page" 
    397397msgstr "" 
    398398 
    399 #: email-options.php:236 
     399#: email-options.php:233 
    400400msgid "E-Mail Popup" 
    401401msgstr "" 
    402402 
     403#: email-options.php:238 
     404msgid "E-Mail Text Link Style" 
     405msgstr "" 
     406 
    403407#: email-options.php:241 
    404 msgid "E-Mail Text Link Style" 
     408msgid "E-Mail Icon With Text Link" 
     409msgstr "" 
     410 
     411#: email-options.php:242 
     412msgid "E-Mail Icon Only" 
     413msgstr "" 
     414 
     415#: email-options.php:243 
     416msgid "E-Mail Text Link Only" 
    405417msgstr "" 
    406418 
    407419#: email-options.php:244 
    408 msgid "E-Mail Icon With Text Link" 
    409 msgstr "" 
    410  
    411 #: email-options.php:245 
    412 msgid "E-Mail Icon Only" 
    413 msgstr "" 
    414  
    415 #: email-options.php:246 
    416 msgid "E-Mail Text Link Only" 
    417 msgstr "" 
    418  
    419 #: email-options.php:247 
    420420msgid "Custom" 
    421421msgstr "" 
    422422 
     423#: email-options.php:248 
     424msgid "HTML is allowed." 
     425msgstr "" 
     426 
     427#: email-options.php:249 
     428msgid "URL to the email post/page." 
     429msgstr "" 
     430 
     431#: email-options.php:250 
     432msgid "It will produce the onclick html code which is nescassary for popup." 
     433msgstr "" 
     434 
    423435#: email-options.php:251 
    424 msgid "HTML is allowed." 
    425 msgstr "" 
    426  
    427 #: email-options.php:252 
    428 msgid "URL to the email post/page." 
     436msgid "Example Popup Template:" 
    429437msgstr "" 
    430438 
    431439#: email-options.php:253 
    432 msgid "It will produce the onclick html code which is nescassary for popup." 
     440msgid "E-Mail text link of the post/page that you have typed in above." 
    433441msgstr "" 
    434442 
    435443#: email-options.php:254 
    436 msgid "Example Popup Template:" 
    437 msgstr "" 
    438  
    439 #: email-options.php:256 
    440 msgid "E-Mail text link of the post/page that you have typed in above." 
    441 msgstr "" 
    442  
    443 #: email-options.php:257 
    444444msgid "URL to the email icon you have chosen above." 
    445445msgstr "" 
    446446 
    447 #: email-options.php:258 
    448 #: email-options.php:371 
    449 #: email-options.php:386 
    450 #: email-options.php:408 
    451 #: email-options.php:430 
    452 #: email-options.php:452 
    453 #: email-options.php:471 
    454 #: email-options.php:486 
    455 #: email-options.php:503 
     447#: email-options.php:255 
     448#: email-options.php:368 
     449#: email-options.php:383 
     450#: email-options.php:405 
     451#: email-options.php:427 
     452#: email-options.php:449 
     453#: email-options.php:468 
     454#: email-options.php:483 
     455#: email-options.php:500 
    456456msgid "Restore Default Template" 
    457457msgstr "" 
    458458 
     459#: email-options.php:262 
     460msgid "E-Mail Settings" 
     461msgstr "" 
     462 
    459463#: email-options.php:265 
    460 msgid "E-Mail Settings" 
     464msgid "E-Mail Fields:" 
     465msgstr "" 
     466 
     467#: email-options.php:267 
     468msgid "Your Name" 
    461469msgstr "" 
    462470 
    463471#: email-options.php:268 
    464 msgid "E-Mail Fields:" 
     472msgid "Your E-Mail" 
     473msgstr "" 
     474 
     475#: email-options.php:269 
     476msgid "Your Remarks" 
    465477msgstr "" 
    466478 
    467479#: email-options.php:270 
    468 msgid "Your Name" 
     480msgid "Friend's Name" 
    469481msgstr "" 
    470482 
    471483#: email-options.php:271 
    472 msgid "Your E-Mail" 
    473 msgstr "" 
    474  
    475 #: email-options.php:272 
    476 msgid "Your Remarks" 
    477 msgstr "" 
    478  
    479 #: email-options.php:273 
    480 msgid "Friend's Name" 
    481 msgstr "" 
    482  
    483 #: email-options.php:274 
    484484msgid "Friend's E-Mail" 
    485485msgstr "" 
    486486 
     487#: email-options.php:275 
     488msgid "E-Mail Content Type:" 
     489msgstr "" 
     490 
    487491#: email-options.php:278 
    488 msgid "E-Mail Content Type:" 
    489 msgstr "" 
    490  
    491 #: email-options.php:281 
    492492msgid "Plain Text" 
    493493msgstr "" 
    494494 
    495 #: email-options.php:282 
     495#: email-options.php:279 
    496496msgid "HTML" 
    497497msgstr "" 
    498498 
     499#: email-options.php:284 
     500msgid "Method Used To Send E-Mail:" 
     501msgstr "" 
     502 
    499503#: email-options.php:287 
    500 msgid "Method Used To Send E-Mail:" 
    501 msgstr "" 
    502  
    503 #: email-options.php:290 
    504504msgid "PHP" 
    505505msgstr "" 
    506506 
     507#: email-options.php:288 
     508msgid "SendMail" 
     509msgstr "" 
     510 
     511#: email-options.php:289 
     512msgid "SMTP" 
     513msgstr "" 
     514 
    507515#: email-options.php:291 
    508 msgid "SendMail" 
    509 msgstr "" 
    510  
    511 #: email-options.php:292 
    512 msgid "SMTP" 
    513 msgstr "" 
    514  
    515 #: email-options.php:294 
    516516msgid "If you ARE NOT using a smtp server of if there is a problem sending out email using your smtp server. Please Choose PHP or Send Mail." 
    517517msgstr "" 
    518518 
    519 #: email-options.php:298 
     519#: email-options.php:295 
    520520msgid "No. Of Words Before Cutting Off:" 
    521521msgstr "" 
    522522 
     523#: email-options.php:296 
     524msgid "Setting this value more than 0 will enable the snippet feature. This feature will allow you to send a portion (defined by the text field above) of the article to your friend instead of the whole article." 
     525msgstr "" 
     526 
    523527#: email-options.php:299 
    524 msgid "Setting this value more than 0 will enable the snippet feature. This feature will allow you to send a portion (defined by the text field above) of the article to your friend instead of the whole article." 
    525 msgstr "" 
    526  
    527 #: email-options.php:302 
    528528msgid "Interval Between E-Mails:" 
    529529msgstr "" 
    530530 
     531#: email-options.php:300 
     532msgid "Mins" 
     533msgstr "" 
     534 
     535#: email-options.php:300 
     536msgid "It allows you to specify the interval in minutes between each email sent per user based on IP to prevent spam and flood." 
     537msgstr "" 
     538 
    531539#: email-options.php:303 
    532 msgid "Mins" 
    533 msgstr "" 
    534  
    535 #: email-options.php:303 
    536 msgid "It allows you to specify the interval in minutes between each email sent per user based on IP to prevent spam and flood." 
    537 msgstr "" 
    538  
    539 #: email-options.php:306 
    540540msgid "Max Number Of Multiple E-Mails:" 
    541541msgstr "" 
    542542 
     543#: email-options.php:304 
     544msgid "Setting this value more than 1 will enable this feature. It allows the maximum number of multiple e-mails that can be send at one go." 
     545msgstr "" 
     546 
    543547#: email-options.php:307 
    544 msgid "Setting this value more than 1 will enable this feature. It allows the maximum number of multiple e-mails that can be send at one go.
     548msgid "Enable Image Verification:
    545549msgstr "" 
    546550 
    547551#: email-options.php:310 
    548 msgid "Enable Image Verification:" 
    549 msgstr "" 
    550  
    551 #: email-options.php:313 
    552552#: email-uninstall.php:130 
    553553msgid "Yes" 
    554554msgstr "" 
    555555 
    556 #: email-options.php:314 
     556#: email-options.php:311 
    557557msgid "No" 
    558558msgstr "" 
    559559 
    560 #: email-options.php:315 
     560#: email-options.php:312 
    561561msgid "It is recommanded to choose <strong>Yes</strong> unless your server does not support PHP GD Library." 
    562562msgstr "" 
    563563 
     564#: email-options.php:318 
     565msgid "Template Variables" 
     566msgstr "" 
     567 
    564568#: email-options.php:321 
    565 msgid "Template Variables" 
    566 msgstr "" 
    567  
    568 #: email-options.php:324 
    569569msgid "Display the sender's name" 
    570570msgstr "" 
    571571 
     572#: email-options.php:322 
     573msgid "Display the post's title" 
     574msgstr "" 
     575 
    572576#: email-options.php:325 
    573 msgid "Display the post's title" 
    574 msgstr "" 
    575  
    576 #: email-options.php:328 
    577577msgid "Display the sender's email" 
    578578msgstr "" 
    579579 
     580#: email-options.php:326 
     581msgid "Display the post's author" 
     582msgstr "" 
     583 
    580584#: email-options.php:329 
    581 msgid "Display the post's author" 
    582 msgstr "" 
    583  
    584 #: email-options.php:332 
    585585msgid "Display the sender's remarks" 
    586586msgstr "" 
    587587 
     588#: email-options.php:330 
     589msgid "Display the post's date" 
     590msgstr "" 
     591 
    588592#: email-options.php:333 
    589 msgid "Display the post's date" 
    590 msgstr "" 
    591  
    592 #: email-options.php:336 
    593593msgid "Display the friend's name" 
    594594msgstr "" 
    595595 
     596#: email-options.php:334 
     597msgid "Display the post's category" 
     598msgstr "" 
     599 
    596600#: email-options.php:337 
    597 msgid "Display the post's category" 
    598 msgstr "" 
    599  
    600 #: email-options.php:340 
    601601msgid "Display the friend's email" 
    602602msgstr "" 
    603603 
     604#: email-options.php:338 
     605msgid "Display the post's excerpt" 
     606msgstr "" 
     607 
    604608#: email-options.php:341 
    605 msgid "Display the post's excerpt" 
    606 msgstr "" 
    607  
    608 #: email-options.php:344 
    609609msgid "Display the error message" 
    610610msgstr "" 
    611611 
     612#: email-options.php:342 
     613msgid "Display the post's content" 
     614msgstr "" 
     615 
    612616#: email-options.php:345 
    613 msgid "Display the post's content" 
    614 msgstr "" 
    615  
    616 #: email-options.php:348 
    617617msgid "Display the blog's name" 
    618618msgstr "" 
    619619 
     620#: email-options.php:346 
     621msgid "Display the permalink of the post" 
     622msgstr "" 
     623 
    620624#: email-options.php:349 
    621 msgid "Display the permalink of the post" 
    622 msgstr "" 
    623  
    624 #: email-options.php:352 
    625625msgid "Display the blog's url" 
    626626msgstr "" 
    627627 
    628 #: email-options.php:358 
     628#: email-options.php:355 
    629629msgid "E-Mail Page Templates" 
    630630msgstr "" 
    631631 
    632 #: email-options.php:362 
     632#: email-options.php:359 
    633633msgid "E-Mail Page Title:" 
    634634msgstr "" 
    635635 
    636 #: email-options.php:363 
    637 #: email-options.php:378 
    638 #: email-options.php:398 
    639 #: email-options.php:415 
    640 #: email-options.php:437 
    641 #: email-options.php:464 
    642 #: email-options.php:478 
    643 #: email-options.php:498 
     636#: email-options.php:360 
     637#: email-options.php:375 
     638#: email-options.php:395 
     639#: email-options.php:412 
     640#: email-options.php:434 
     641#: email-options.php:461 
     642#: email-options.php:475 
     643#: email-options.php:495 
    644644msgid "Allowed Variables:" 
    645645msgstr "" 
    646646 
    647 #: email-options.php:377 
     647#: email-options.php:374 
    648648msgid "E-Mail Page Subtitle:" 
    649649msgstr "" 
    650650 
    651 #: email-options.php:393 
     651#: email-options.php:390 
    652652msgid "E-Mail Templates" 
    653653msgstr "" 
    654654 
    655 #: email-options.php:397 
     655#: email-options.php:394 
    656656msgid "E-Mail Subject:" 
    657657msgstr "" 
    658658 
    659 #: email-options.php:414 
     659#: email-options.php:411 
    660660msgid "E-Mail Body:" 
    661661msgstr "" 
    662662 
    663 #: email-options.php:436 
     663#: email-options.php:433 
    664664msgid "E-Mail Alternate Body:" 
    665665msgstr "" 
    666666 
    667 #: email-options.php:459 
     667#: email-options.php:456 
    668668msgid "After Sending E-Mail Templates" 
    669669msgstr "" 
    670670 
    671 #: email-options.php:463 
     671#: email-options.php:460 
    672672msgid "Sent Successfully:" 
    673673msgstr "" 
    674674 
    675 #: email-options.php:477 
     675#: email-options.php:474 
    676676msgid "Sent Failed:" 
    677677msgstr "" 
    678678 
    679 #: email-options.php:493 
     679#: email-options.php:490 
    680680msgid "E-Mail Misc Templates" 
    681681msgstr "" 
    682682 
    683 #: email-options.php:497 
     683#: email-options.php:494 
    684684msgid "E-Mail Error:" 
    685685msgstr "" 
    686686 
    687 #: email-options.php:510 
     687#: email-options.php:507 
    688688msgid "Update Options" 
    689689msgstr "" 
    690690 
    691 #: email-options.php:510 
     691#: email-options.php:507 
    692692msgid "Cancel" 
    693693msgstr "" 
     
    820820 
    821821#: email.php:595 
    822 #: email.php:754 
    823 #: email.php:830 
     822#: email.php:751 
     823#: email.php:827 
    824824msgid "N/A" 
    825825msgstr "" 
    826826 
    827 #: email.php:680 
     827#: email.php:679 
    828828msgid "Your name is empty." 
    829829msgstr "" 
    830830 
    831 #: email.php:686 
     831#: email.php:685 
    832832msgid "Your email is invalid or is empty." 
    833833msgstr "" 
    834834 
    835 #: email.php:692 
     835#: email.php:691 
    836836msgid "Your remark is invalid." 
    837837msgstr "" 
    838838 
    839 #: email.php:701 
     839#: email.php:700 
    840840#, php-format 
    841841msgid "Friend's name (%s) is empty." 
    842842msgstr "" 
    843843 
    844 #: email.php:718 
     844#: email.php:716 
    845845#, php-format 
    846846msgid "Friend's email (%s) is invalid or is empty." 
    847847msgstr "" 
    848848 
    849 #: email.php:732 
     849#: email.php:729 
    850850#, php-format 
    851851msgid "Maximum %s entries allowed" 
    852852msgstr "" 
    853853 
    854 #: email.php:737 
     854#: email.php:734 
    855855msgid "Friends' name count does not tally with friends' email count." 
    856856msgstr "" 
    857857 
     858#: email.php:741 
     859msgid "Image verification is empty." 
     860msgstr "" 
     861 
    858862#: email.php:744 
    859 msgid "Image verification is empty." 
    860 msgstr "" 
    861  
    862 #: email.php:747 
    863863msgid "Image verification failed." 
    864864msgstr "" 
    865865 
     866#: email.php:879 
     867msgid "* Required Field" 
     868msgstr "" 
     869 
    866870#: email.php:882 
    867 msgid "* Required Field" 
    868 msgstr "" 
    869  
    870 #: email.php:885 
    871871msgid "Your Name: *" 
    872872msgstr "" 
    873873 
    874 #: email.php:891 
     874#: email.php:888 
    875875msgid "Your E-Mail: *" 
    876876msgstr "" 
    877877 
    878 #: email.php:897 
     878#: email.php:894 
    879879msgid "Your Remark:" 
    880880msgstr "" 
    881881 
    882 #: email.php:903 
     882#: email.php:900 
    883883msgid "Friend's Name: *" 
    884884msgstr "" 
    885885 
    886 #: email.php:909 
     886#: email.php:905 
    887887msgid "Friend's E-Mail: *" 
    888888msgstr "" 
    889889 
    890 #: email.php:915 
     890#: email.php:910 
    891891msgid "Image Verification: *" 
    892892msgstr "" 
    893893 
    894 #: email.php:916 
     894#: email.php:911 
    895895msgid "E-Mail Image Verification" 
    896896msgstr "" 
    897897 
    898 #: email.php:919 
     898#: email.php:914 
    899899msgid "     Mail It!     " 
    900900msgstr "" 
    901901 
    902 #: email.php:925 
     902#: email.php:920 
    903903#, php-format 
    904904msgid "Please wait for <strong>%s Minutes</strong> before sending the next article." 
    905905msgstr "" 
    906906 
    907 #: email.php:988 
    908 #: email.php:990 
    909 #: email.php:1023 
     907#: email.php:983 
     908#: email.php:985 
     909#: email.php:1018 
    910910msgid "WP-EMail" 
    911911msgstr "" 
    912912 
    913 #: email.php:1001 
    914 #: email.php:1003 
     913#: email.php:996 
     914#: email.php:998 
    915915msgid "Most Emailed Posts" 
    916916msgstr "" 
    917917 
    918 #: email.php:1025 
     918#: email.php:1020 
    919919msgid "emails were sent." 
    920920msgstr "" 
    921921 
    922 #: email.php:1026 
     922#: email.php:1021 
    923923msgid "emails were sent successfully." 
    924924msgstr "" 
    925925 
    926 #: email.php:1027 
     926#: email.php:1022 
    927927msgid "emails failed to send." 
    928928msgstr "" 
    929929 
    930 #: email.php:1039 
     930#: email.php:1034 
    931931msgid "Most Emailed Post" 
    932932msgstr "" 
    933933 
     934#: email.php:1069 
     935msgid "<p>Hi <strong>%EMAIL_FRIEND_NAME%</strong>,<br />Your friend, <strong>%EMAIL_YOUR_NAME%</strong>, has recommended this article entitled '<strong>%EMAIL_POST_TITLE%</strong>' to you.</p><p><strong>Here is his/her remark:</strong><br />%EMAIL_YOUR_REMARKS%</p><p><strong>%EMAIL_POST_TITLE%</strong><br />Posted By %EMAIL_POST_AUTHOR% On %EMAIL_POST_DATE% In %EMAIL_POST_CATEGORY%</p>%EMAIL_POST_CONTENT%<p>Article taken from %EMAIL_BLOG_NAME% - <a href=\"%EMAIL_BLOG_URL%\">%EMAIL_BLOG_URL%</a><br />URL to article: <a href=\"%EMAIL_PERMALINK%\">%EMAIL_PERMALINK%</a></p>" 
     936msgstr "" 
     937 
     938#: email.php:1070 
     939msgid "Hi %EMAIL_FRIEND_NAME%," 
     940msgstr "" 
     941 
     942#: email.php:1070 
     943#: email.php:1072 
    934944#: email.php:1074 
    935 msgid "<p>Hi <strong>%EMAIL_FRIEND_NAME%</strong>,<br />Your friend, <strong>%EMAIL_YOUR_NAME%</strong>, has recommended this article entitled '<strong>%EMAIL_POST_TITLE%</strong>' to you.</p><p><strong>Here is his/her remark:</strong><br />%EMAIL_YOUR_REMARKS%</p><p><strong>%EMAIL_POST_TITLE%</strong><br />Posted By %EMAIL_POST_AUTHOR% On %EMAIL_POST_DATE% In %EMAIL_POST_CATEGORY%</p>%EMAIL_POST_CONTENT%<p>Article taken from %EMAIL_BLOG_NAME% - <a href=\"%EMAIL_BLOG_URL%\">%EMAIL_BLOG_URL%</a><br />URL to article: <a href=\"%EMAIL_PERMALINK%\">%EMAIL_PERMALINK%</a></p>" 
    936 msgstr "" 
    937  
    938945#: email.php:1075 
    939 msgid "Hi %EMAIL_FRIEND_NAME%," 
    940 msgstr "" 
    941  
    942 #: email.php:1075 
     946#: email.php:1076 
    943947#: email.php:1077 
    944 #: email.php:1079 
    945 #: email.php:1080 
    946 #: email.php:1081 
    947 #: email.php:1082 
    948948msgid "\n" 
    949949msgstr "" 
    950950 
    951 #: email.php:1076 
     951#: email.php:1071 
    952952msgid "Your friend, %EMAIL_YOUR_NAME%, has recommended this article entitled '%EMAIL_POST_TITLE%' to you." 
    953953msgstr "" 
    954954 
    955 #: email.php:1076 
    956 #: email.php:1078 
     955#: email.php:1071 
     956#: email.php:1073 
    957957msgid "" 
    958958"\n" 
     
    960960msgstr "" 
    961961 
     962#: email.php:1072 
     963msgid "Here is his/her remarks:" 
     964msgstr "" 
     965 
     966#: email.php:1073 
     967msgid "%EMAIL_YOUR_REMARKS%" 
     968msgstr "" 
     969 
     970#: email.php:1074 
     971msgid "%EMAIL_POST_TITLE%" 
     972msgstr "" 
     973 
     974#: email.php:1075 
     975msgid "Posted By %EMAIL_POST_AUTHOR% On %EMAIL_POST_DATE% In %EMAIL_POST_CATEGORY%" 
     976msgstr "" 
     977 
     978#: email.php:1076 
     979msgid "%EMAIL_POST_CONTENT%" 
     980msgstr "" 
     981 
    962982#: email.php:1077 
    963 msgid "Here is his/her remarks:
     983msgid "Article taken from %EMAIL_BLOG_NAME% - %EMAIL_BLOG_URL%
    964984msgstr "" 
    965985 
    966986#: email.php:1078 
    967 msgid "%EMAIL_YOUR_REMARKS%" 
     987msgid "URL to article: %EMAIL_PERMALINK%" 
    968988msgstr "" 
    969989 
    970990#: email.php:1079 
    971 msgid "%EMAIL_POST_TITLE%" 
    972 msgstr "" 
    973  
    974 #: email.php:1080 
    975 msgid "Posted By %EMAIL_POST_AUTHOR% On %EMAIL_POST_DATE% In %EMAIL_POST_CATEGORY%" 
    976 msgstr "" 
    977  
    978 #: email.php:1081 
    979 msgid "%EMAIL_POST_CONTENT%" 
    980 msgstr "" 
    981  
    982 #: email.php:1082 
    983 msgid "Article taken from %EMAIL_BLOG_NAME% - %EMAIL_BLOG_URL%" 
    984 msgstr "" 
    985  
    986 #: email.php:1083 
    987 msgid "URL to article: %EMAIL_PERMALINK%" 
    988 msgstr "" 
    989  
    990 #: email.php:1084 
    991991msgid "Article: <strong>%EMAIL_POST_TITLE%</strong> Has Been Sent To <strong>%EMAIL_FRIEND_NAME% (%EMAIL_FRIEND_EMAIL%)</strong></p>" 
    992992msgstr "" 
    993993 
    994 #: email.php:1093 
     994#: email.php:1088 
    995995msgid "Email This Post" 
    996996msgstr "" 
    997997 
    998 #: email.php:1093 
     998#: email.php:1088 
    999999msgid "Email This Page" 
    10001000msgstr "" 
  • wp-email/trunk/readme.html

    r14640 r15492  
    290290                        <li> 
    291291                              <strong>Version 2.20 (01-10-2007)</strong> 
    292                               <ul> 
     292                              <ul>                                
    293293                                    <li>NEW: Most Emailed Widget Added</li> 
    294294                                    <li>NEW: Ability To Uninstall WP-EMail</li> 
    295295                                    <li>NEW: Uses WP-Stats Filter To Add Stats Into WP-Stats Page</li> 
     296                                    <li>FIXED: Displaying Friend's E-Mail Field Is Compulsory To Prevent Error</li> 
     297                                    <li>FIXED: Method Of Storing SMTP Information Updated</li> 
    296298                              </ul> 
    297299                        </li>