Changeset 15492
- Timestamp:
- 07/18/07 17:51:11 (1 year ago)
- Files:
-
- wp-email/trunk/email/email-options.php (modified) (4 diffs)
- wp-email/trunk/email/email.php (modified) (5 diffs)
- wp-email/trunk/email/wp-email.mo (modified) (previous)
- wp-email/trunk/email/wp-email.pot (modified) (7 diffs)
- wp-email/trunk/readme.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wp-email/trunk/email/email-options.php
r15235 r15492 34 34 $email_smtp_password = strip_tags(trim($_POST['email_smtp_password'])); 35 35 $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); 37 37 $email_options = array(); 38 38 $email_options['post_text'] = addslashes(trim($_POST['email_post_text'])); … … 112 112 $email_options = get_option('email_options'); 113 113 $email_fields = get_option('email_fields'); 114 $emai_smtp = get_option('email_smtp'); 114 115 ?> 115 116 <script type="text/javascript"> … … 166 167 <fieldset class="options"> 167 168 <legend><?php _e('SMTP Settings', 'wp-email'); ?></legend> 168 <?php169 $smtp_info = get_option('email_smtp');170 $smtp_info = explode('|', $smtp_info);171 ?>172 169 <table width="100%" border="0" cellspacing="3" cellpadding="3"> 173 170 <tr valign="top"> 174 171 <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> 176 173 </tr> 177 174 <tr valign="top"> 178 175 <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> 180 177 </tr> 181 178 <tr valign="top"> 182 179 <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> 184 181 </tr> 185 182 </table> … … 272 269 <input type="checkbox" name="email_field_yourremarks" value="1"<?php checked('1', $email_fields['yourremarks']); ?> /> <?php _e('Your Remarks', 'wp-email'); ?><br /> 273 270 <input type="checkbox" name="email_field_friendname" value="1"<?php checked('1', $email_fields['friendname']); ?> /> <?php _e('Friend\'s Name', 'wp-email'); ?><br /> 274 <input type="checkbox" name="email_field_friendemail" value="1" <?php checked('1', $email_fields['friendemail']); ?>/> <?php _e('Friend\'s E-Mail', 'wp-email'); ?>271 <input type="checkbox" name="email_field_friendemail" value="1" checked="checked" disabled="disabled" /> <?php _e('Friend\'s E-Mail', 'wp-email'); ?> 275 272 </td> 276 273 </tr> wp-email/trunk/email/email.php
r14870 r15492 664 664 // SMTP 665 665 $imageverify = $_POST['imageverify']; 666 $smtp_info = get_option('email_smtp'); 667 $smtp_info = explode('|', $smtp_info); 666 $email_smtp = get_option('email_smtp'); 668 667 $error = ''; 669 668 // Multiple Names/Emails … … 711 710 } 712 711 // 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>»</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>»</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; 726 723 } 727 724 } 728 725 } 729 726 // 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) { 731 728 if(sizeof($friends) > $multiple_max) { 732 729 $error .= '<br /><strong>»</strong> '.sprintf(__('Maximum %s entries allowed', 'wp-email'), $multiple_max); 733 730 } 734 731 } 735 if(intval($email_fields['friendname']) == 1 && intval($email_fields['friendemail']) == 1) {732 if(intval($email_fields['friendname']) == 1) { 736 733 if($friendname_count != $friendemail_count) { 737 734 $error .= '<br /><strong>»</strong> '.__('Friends\' name count does not tally with friends\' email count.', 'wp-email'); … … 803 800 $mail->AddAddress($friend['email'], $friend['name']); 804 801 } 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']; 808 805 $mail->Mailer = get_option('email_mailer'); 809 806 $mail->ContentType = get_option('email_contenttype'); … … 905 902 $output .= '</p>'."\n"; 906 903 } 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"; 913 908 if($email_image_verify) { 914 909 $output .= '<p>'."\n"; … … 1068 1063 maybe_create_table($wpdb->email, $create_table); 1069 1064 // 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'); 1071 1066 add_option('email_contenttype', 'text/html', 'Your E-Mail Type'); 1072 1067 add_option('email_mailer', 'php', 'Your Mailer Type'); wp-email/trunk/email/wp-email.pot
r15235 r15492 3 3 "Project-Id-Version: WP-EMail 2.20\n" 4 4 "POT-Creation-Date: \n" 5 "PO-Revision-Date: 2007-07-1 4 02:30+0800\n"5 "PO-Revision-Date: 2007-07-19 01:47+0800\n" 6 6 "Last-Translator: Lester 'GaMerZ' Chan <gamerz84@hotmail.com>\n" 7 7 "Language-Team: Lester Chan <gamerz84@hotmail.com>\n" … … 94 94 #: email.php:416 95 95 #: email.php:544 96 #: email.php:81 997 #: email.php:86 798 #: email.php:102 696 #: email.php:816 97 #: email.php:864 98 #: email.php:1021 99 99 msgid "Success" 100 100 msgstr "" … … 102 102 #: email-manager.php:127 103 103 #: email.php:558 104 #: email.php:8 31105 #: email.php:102 7104 #: email.php:828 105 #: email.php:1022 106 106 msgid "Failed" 107 107 msgstr "" … … 300 300 msgstr "" 301 301 302 #: email-options.php:12 1303 #: email.php:109 8302 #: email-options.php:122 303 #: email.php:1093 304 304 msgid "E-Mail '%EMAIL_POST_TITLE%' To A Friend" 305 305 msgstr "" 306 306 307 #: email-options.php:12 4308 #: email.php:109 9307 #: email-options.php:125 308 #: email.php:1094 309 309 msgid "Email a copy of <strong>'%EMAIL_POST_TITLE%'</strong> to a friend" 310 310 msgstr "" 311 311 312 #: email-options.php:12 7313 #: email.php:10 73312 #: email-options.php:128 313 #: email.php:1068 314 314 msgid "Recommended Article By %EMAIL_YOUR_NAME%: %EMAIL_POST_TITLE%" 315 315 msgstr "" 316 316 317 #: email-options.php:13 0317 #: email-options.php:131 318 318 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 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>" 319 319 msgstr "" 320 320 321 #: email-options.php:13 3321 #: email-options.php:134 322 322 msgid "" 323 323 "Hi %EMAIL_FRIEND_NAME%,\\n" … … 334 334 msgstr "" 335 335 336 #: email-options.php:13 6336 #: email-options.php:137 337 337 msgid "Article: <strong>%EMAIL_POST_TITLE%</strong> Has Been Sent To <strong>%EMAIL_FRIEND_NAME% (%EMAIL_FRIEND_EMAIL%)</strong>" 338 338 msgstr "" 339 339 340 #: email-options.php:1 39341 #: email.php:108 5340 #: email-options.php:140 341 #: email.php:1080 342 342 msgid "An Error Has Occured When Trying To Send The E-Mail" 343 343 msgstr "" 344 344 345 #: email-options.php:14 2346 #: email.php:108 6345 #: email-options.php:143 346 #: email.php:1081 347 347 msgid "An Error Has Occured" 348 348 msgstr "" 349 349 350 #: email-options.php:16 4350 #: email-options.php:165 351 351 #: email.php:47 352 352 msgid "E-Mail Options" 353 353 msgstr "" 354 354 355 #: email-options.php:16 7355 #: email-options.php:168 356 356 msgid "SMTP Settings" 357 357 msgstr "" 358 358 359 #: email-options.php:17 4359 #: email-options.php:171 360 360 msgid "SMTP Username:" 361 361 msgstr "" 362 362 363 #: email-options.php:17 8363 #: email-options.php:175 364 364 msgid "SMTP Password:" 365 365 msgstr "" 366 366 367 #: email-options.php:1 82367 #: email-options.php:179 368 368 msgid "SMTP Server:" 369 369 msgstr "" 370 370 371 #: email-options.php:18 3371 #: email-options.php:180 372 372 msgid "You may leave the above fields blank if you do not use a SMTP server." 373 373 msgstr "" 374 374 375 #: email-options.php:186 376 msgid "E-Mail Styles" 377 msgstr "" 378 375 379 #: email-options.php:189 376 msgid "E-Mail Styles"377 msgstr ""378 379 #: email-options.php:192380 380 msgid "E-Mail Text Link For Post" 381 381 msgstr "" 382 382 383 #: email-options.php:19 8383 #: email-options.php:195 384 384 msgid "E-Mail Text Link For Page" 385 385 msgstr "" 386 386 387 #: email-options.php:20 4387 #: email-options.php:201 388 388 msgid "E-Mail Icon" 389 389 msgstr "" 390 390 391 #: email-options.php:229 392 msgid "E-Mail Link Type" 393 msgstr "" 394 391 395 #: email-options.php:232 392 msgid "E-Mail Link Type"393 msgstr ""394 395 #: email-options.php:235396 396 msgid "E-Mail Standalone Page" 397 397 msgstr "" 398 398 399 #: email-options.php:23 6399 #: email-options.php:233 400 400 msgid "E-Mail Popup" 401 401 msgstr "" 402 402 403 #: email-options.php:238 404 msgid "E-Mail Text Link Style" 405 msgstr "" 406 403 407 #: email-options.php:241 404 msgid "E-Mail Text Link Style" 408 msgid "E-Mail Icon With Text Link" 409 msgstr "" 410 411 #: email-options.php:242 412 msgid "E-Mail Icon Only" 413 msgstr "" 414 415 #: email-options.php:243 416 msgid "E-Mail Text Link Only" 405 417 msgstr "" 406 418 407 419 #: email-options.php:244 408 msgid "E-Mail Icon With Text Link"409 msgstr ""410 411 #: email-options.php:245412 msgid "E-Mail Icon Only"413 msgstr ""414 415 #: email-options.php:246416 msgid "E-Mail Text Link Only"417 msgstr ""418 419 #: email-options.php:247420 420 msgid "Custom" 421 421 msgstr "" 422 422 423 #: email-options.php:248 424 msgid "HTML is allowed." 425 msgstr "" 426 427 #: email-options.php:249 428 msgid "URL to the email post/page." 429 msgstr "" 430 431 #: email-options.php:250 432 msgid "It will produce the onclick html code which is nescassary for popup." 433 msgstr "" 434 423 435 #: 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." 436 msgid "Example Popup Template:" 429 437 msgstr "" 430 438 431 439 #: email-options.php:253 432 msgid " It will produce the onclick html code which is nescassary for popup."440 msgid "E-Mail text link of the post/page that you have typed in above." 433 441 msgstr "" 434 442 435 443 #: email-options.php:254 436 msgid "Example Popup Template:"437 msgstr ""438 439 #: email-options.php:256440 msgid "E-Mail text link of the post/page that you have typed in above."441 msgstr ""442 443 #: email-options.php:257444 444 msgid "URL to the email icon you have chosen above." 445 445 msgstr "" 446 446 447 #: email-options.php:25 8448 #: email-options.php:3 71449 #: email-options.php:38 6450 #: email-options.php:40 8451 #: email-options.php:4 30452 #: email-options.php:4 52453 #: email-options.php:4 71454 #: email-options.php:48 6455 #: email-options.php:50 3447 #: 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 456 456 msgid "Restore Default Template" 457 457 msgstr "" 458 458 459 #: email-options.php:262 460 msgid "E-Mail Settings" 461 msgstr "" 462 459 463 #: email-options.php:265 460 msgid "E-Mail Settings" 464 msgid "E-Mail Fields:" 465 msgstr "" 466 467 #: email-options.php:267 468 msgid "Your Name" 461 469 msgstr "" 462 470 463 471 #: email-options.php:268 464 msgid "E-Mail Fields:" 472 msgid "Your E-Mail" 473 msgstr "" 474 475 #: email-options.php:269 476 msgid "Your Remarks" 465 477 msgstr "" 466 478 467 479 #: email-options.php:270 468 msgid " YourName"480 msgid "Friend's Name" 469 481 msgstr "" 470 482 471 483 #: email-options.php:271 472 msgid "Your E-Mail"473 msgstr ""474 475 #: email-options.php:272476 msgid "Your Remarks"477 msgstr ""478 479 #: email-options.php:273480 msgid "Friend's Name"481 msgstr ""482 483 #: email-options.php:274484 484 msgid "Friend's E-Mail" 485 485 msgstr "" 486 486 487 #: email-options.php:275 488 msgid "E-Mail Content Type:" 489 msgstr "" 490 487 491 #: email-options.php:278 488 msgid "E-Mail Content Type:"489 msgstr ""490 491 #: email-options.php:281492 492 msgid "Plain Text" 493 493 msgstr "" 494 494 495 #: email-options.php:2 82495 #: email-options.php:279 496 496 msgid "HTML" 497 497 msgstr "" 498 498 499 #: email-options.php:284 500 msgid "Method Used To Send E-Mail:" 501 msgstr "" 502 499 503 #: email-options.php:287 500 msgid "Method Used To Send E-Mail:"501 msgstr ""502 503 #: email-options.php:290504 504 msgid "PHP" 505 505 msgstr "" 506 506 507 #: email-options.php:288 508 msgid "SendMail" 509 msgstr "" 510 511 #: email-options.php:289 512 msgid "SMTP" 513 msgstr "" 514 507 515 #: email-options.php:291 508 msgid "SendMail"509 msgstr ""510 511 #: email-options.php:292512 msgid "SMTP"513 msgstr ""514 515 #: email-options.php:294516 516 msgid "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." 517 517 msgstr "" 518 518 519 #: email-options.php:29 8519 #: email-options.php:295 520 520 msgid "No. Of Words Before Cutting Off:" 521 521 msgstr "" 522 522 523 #: email-options.php:296 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 523 527 #: 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:302528 528 msgid "Interval Between E-Mails:" 529 529 msgstr "" 530 530 531 #: email-options.php:300 532 msgid "Mins" 533 msgstr "" 534 535 #: email-options.php:300 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 531 539 #: email-options.php:303 532 msgid "Mins"533 msgstr ""534 535 #: email-options.php:303536 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:306540 540 msgid "Max Number Of Multiple E-Mails:" 541 541 msgstr "" 542 542 543 #: email-options.php:304 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." 545 msgstr "" 546 543 547 #: 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."548 msgid "Enable Image Verification:" 545 549 msgstr "" 546 550 547 551 #: email-options.php:310 548 msgid "Enable Image Verification:"549 msgstr ""550 551 #: email-options.php:313552 552 #: email-uninstall.php:130 553 553 msgid "Yes" 554 554 msgstr "" 555 555 556 #: email-options.php:31 4556 #: email-options.php:311 557 557 msgid "No" 558 558 msgstr "" 559 559 560 #: email-options.php:31 5560 #: email-options.php:312 561 561 msgid "It is recommanded to choose <strong>Yes</strong> unless your server does not support PHP GD Library." 562 562 msgstr "" 563 563 564 #: email-options.php:318 565 msgid "Template Variables" 566 msgstr "" 567 564 568 #: email-options.php:321 565 msgid "Template Variables"566 msgstr ""567 568 #: email-options.php:324569 569 msgid "Display the sender's name" 570 570 msgstr "" 571 571 572 #: email-options.php:322 573 msgid "Display the post's title" 574 msgstr "" 575 572 576 #: email-options.php:325 573 msgid "Display the post's title"574 msgstr ""575 576 #: email-options.php:328577 577 msgid "Display the sender's email" 578 578 msgstr "" 579 579 580 #: email-options.php:326 581 msgid "Display the post's author" 582 msgstr "" 583 580 584 #: email-options.php:329 581 msgid "Display the post's author"582 msgstr ""583 584 #: email-options.php:332585 585 msgid "Display the sender's remarks" 586 586 msgstr "" 587 587 588 #: email-options.php:330 589 msgid "Display the post's date" 590 msgstr "" 591 588 592 #: email-options.php:333 589 msgid "Display the post's date"590 msgstr ""591 592 #: email-options.php:336593 593 msgid "Display the friend's name" 594 594 msgstr "" 595 595 596 #: email-options.php:334 597 msgid "Display the post's category" 598 msgstr "" 599 596 600 #: email-options.php:337 597 msgid "Display the post's category"598 msgstr ""599 600 #: email-options.php:340601 601 msgid "Display the friend's email" 602 602 msgstr "" 603 603 604 #: email-options.php:338 605 msgid "Display the post's excerpt" 606 msgstr "" 607 604 608 #: email-options.php:341 605 msgid "Display the post's excerpt"606 msgstr ""607 608 #: email-options.php:344609 609 msgid "Display the error message" 610 610 msgstr "" 611 611 612 #: email-options.php:342 613 msgid "Display the post's content" 614 msgstr "" 615 612 616 #: email-options.php:345 613 msgid "Display the post's content"614 msgstr ""615 616 #: email-options.php:348617 617 msgid "Display the blog's name" 618 618 msgstr "" 619 619 620 #: email-options.php:346 621 msgid "Display the permalink of the post" 622 msgstr "" 623 620 624 #: email-options.php:349 621 msgid "Display the permalink of the post"622 msgstr ""623 624 #: email-options.php:352625 625 msgid "Display the blog's url" 626 626 msgstr "" 627 627 628 #: email-options.php:35 8628 #: email-options.php:355 629 629 msgid "E-Mail Page Templates" 630 630 msgstr "" 631 631 632 #: email-options.php:3 62632 #: email-options.php:359 633 633 msgid "E-Mail Page Title:" 634 634 msgstr "" 635 635 636 #: email-options.php:36 3637 #: email-options.php:37 8638 #: email-options.php:39 8639 #: email-options.php:41 5640 #: email-options.php:43 7641 #: email-options.php:46 4642 #: email-options.php:47 8643 #: email-options.php:49 8636 #: 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 644 644 msgid "Allowed Variables:" 645 645 msgstr "" 646 646 647 #: email-options.php:37 7647 #: email-options.php:374 648 648 msgid "E-Mail Page Subtitle:" 649 649 msgstr "" 650 650 651 #: email-options.php:39 3651 #: email-options.php:390 652 652 msgid "E-Mail Templates" 653 653 msgstr "" 654 654 655 #: email-options.php:39 7655 #: email-options.php:394 656 656 msgid "E-Mail Subject:" 657 657 msgstr "" 658 658 659 #: email-options.php:41 4659 #: email-options.php:411 660 660 msgid "E-Mail Body:" 661 661 msgstr "" 662 662 663 #: email-options.php:43 6663 #: email-options.php:433 664 664 msgid "E-Mail Alternate Body:" 665 665 msgstr "" 666 666 667 #: email-options.php:45 9667 #: email-options.php:456 668 668 msgid "After Sending E-Mail Templates" 669 669 msgstr "" 670 670 671 #: email-options.php:46 3671 #: email-options.php:460 672 672 msgid "Sent Successfully:" 673 673 msgstr "" 674 674 675 #: email-options.php:47 7675 #: email-options.php:474 676 676 msgid "Sent Failed:" 677 677 msgstr "" 678 678 679 #: email-options.php:49 3679 #: email-options.php:490 680 680 msgid "E-Mail Misc Templates" 681 681 msgstr "" 682 682 683 #: email-options.php:49 7683 #: email-options.php:494 684 684 msgid "E-Mail Error:" 685 685 msgstr "" 686 686 687 #: email-options.php:5 10687 #: email-options.php:507 688 688 msgid "Update Options" 689 689 msgstr "" 690 690 691 #: email-options.php:5 10691 #: email-options.php:507 692 692 msgid "Cancel" 693 693 msgstr "" … … 820 820 821 821 #: email.php:595 822 #: email.php:75 4823 #: email.php:8 30822 #: email.php:751 823 #: email.php:827 824 824 msgid "N/A" 825 825 msgstr "" 826 826 827 #: email.php:6 80827 #: email.php:679 828 828 msgid "Your name is empty." 829 829 msgstr "" 830 830 831 #: email.php:68 6831 #: email.php:685 832 832 msgid "Your email is invalid or is empty." 833 833 msgstr "" 834 834 835 #: email.php:69 2835 #: email.php:691 836 836 msgid "Your remark is invalid." 837 837 msgstr "" 838 838 839 #: email.php:70 1839 #: email.php:700 840 840 #, php-format 841 841 msgid "Friend's name (%s) is empty." 842 842 msgstr "" 843 843 844 #: email.php:71 8844 #: email.php:716 845 845 #, php-format 846 846 msgid "Friend's email (%s) is invalid or is empty." 847 847 msgstr "" 848 848 849 #: email.php:7 32849 #: email.php:729 850 850 #, php-format 851 851 msgid "Maximum %s entries allowed" 852 852 msgstr "" 853 853 854 #: email.php:73 7854 #: email.php:734 855 855 msgid "Friends' name count does not tally with friends' email count." 856 856 msgstr "" 857 857 858 #: email.php:741 859 msgid "Image verification is empty." 860 msgstr "" 861 858 862 #: email.php:744 859 msgid "Image verification is empty."860 msgstr ""861 862 #: email.php:747863 863 msgid "Image verification failed." 864 864 msgstr "" 865 865 866 #: email.php:879 867 msgid "* Required Field" 868 msgstr "" 869 866 870 #: email.php:882 867 msgid "* Required Field"868 msgstr ""869 870 #: email.php:885871 871 msgid "Your Name: *" 872 872 msgstr "" 873 873 874 #: email.php:8 91874 #: email.php:888 875 875 msgid "Your E-Mail: *" 876 876 msgstr "" 877 877 878 #: email.php:89 7878 #: email.php:894 879 879 msgid "Your Remark:" 880 880 msgstr "" 881 881 882 #: email.php:90 3882 #: email.php:900 883 883 msgid "Friend's Name: *" 884 884 msgstr "" 885 885 886 #: email.php:90 9886 #: email.php:905 887 887 msgid "Friend's E-Mail: *" 888 888 msgstr "" 889 889 890 #: email.php:91 5890 #: email.php:910 891 891 msgid "Image Verification: *" 892 892 msgstr "" 893 893 894 #: email.php:91 6894 #: email.php:911 895 895 msgid "E-Mail Image Verification" 896 896 msgstr "" 897 897 898 #: email.php:91 9898 #: email.php:914 899 899 msgid " Mail It! " 900 900 msgstr "" 901 901 902 #: email.php:92 5902 #: email.php:920 903 903 #, php-format 904 904 msgid "Please wait for <strong>%s Minutes</strong> before sending the next article." 905 905 msgstr "" 906 906 907 #: email.php:98 8908 #: email.php:9 90909 #: email.php:10 23907 #: email.php:983 908 #: email.php:985 909 #: email.php:1018 910 910 msgid "WP-EMail" 911 911 msgstr "" 912 912 913 #: email.php: 1001914 #: email.php: 1003913 #: email.php:996 914 #: email.php:998 915 915 msgid "Most Emailed Posts" 916 916 msgstr "" 917 917 918 #: email.php:102 5918 #: email.php:1020 919 919 msgid "emails were sent." 920 920 msgstr "" 921 921 922 #: email.php:102 6922 #: email.php:1021 923 923 msgid "emails were sent successfully." 924 924 msgstr "" 925 925 926 #: email.php:102 7926 #: email.php:1022 927 927 msgid "emails failed to send." 928 928 msgstr "" 929 929 930 #: email.php:103 9930 #: email.php:1034 931 931 msgid "Most Emailed Post" 932 932 msgstr "" 933 933 934 #: email.php:1069 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 938 #: email.php:1070 939 msgid "Hi %EMAIL_FRIEND_NAME%," 940 msgstr "" 941 942 #: email.php:1070 943 #: email.php:1072 934 944 #: 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 938 945 #: email.php:1075 939 msgid "Hi %EMAIL_FRIEND_NAME%," 940 msgstr "" 941 942 #: email.php:1075 946 #: email.php:1076 943 947 #: email.php:1077 944 #: email.php:1079945 #: email.php:1080946 #: email.php:1081947 #: email.php:1082948 948 msgid "\n" 949 949 msgstr "" 950 950 951 #: email.php:107 6951 #: email.php:1071 952 952 msgid "Your friend, %EMAIL_YOUR_NAME%, has recommended this article entitled '%EMAIL_POST_TITLE%' to you." 953 953 msgstr "" 954 954 955 #: email.php:107 6956 #: email.php:107 8955 #: email.php:1071 956 #: email.php:1073 957 957 msgid "" 958 958 "\n" … … 960 960 msgstr "" 961 961 962 #: email.php:1072 963 msgid "Here is his/her remarks:" 964 msgstr "" 965 966 #: email.php:1073 967 msgid "%EMAIL_YOUR_REMARKS%" 968 msgstr "" 969 970 #: email.php:1074 971 msgid "%EMAIL_POST_TITLE%" 972 msgstr "" 973 974 #: email.php:1075 975 msgid "Posted By %EMAIL_POST_AUTHOR% On %EMAIL_POST_DATE% In %EMAIL_POST_CATEGORY%" 976 msgstr "" 977 978 #: email.php:1076 979 msgid "%EMAIL_POST_CONTENT%" 980 msgstr "" 981 962 982 #: email.php:1077 963 msgid " Here is his/her remarks:"983 msgid "Article taken from %EMAIL_BLOG_NAME% - %EMAIL_BLOG_URL%" 964 984 msgstr "" 965 985 966 986 #: email.php:1078 967 msgid " %EMAIL_YOUR_REMARKS%"987 msgid "URL to article: %EMAIL_PERMALINK%" 968 988 msgstr "" 969 989 970 990 #: email.php:1079 971 msgid "%EMAIL_POST_TITLE%"972 msgstr ""973 974 #: email.php:1080975 msgid "Posted By %EMAIL_POST_AUTHOR% On %EMAIL_POST_DATE% In %EMAIL_POST_CATEGORY%"976 msgstr ""977 978 #: email.php:1081979 msgid "%EMAIL_POST_CONTENT%"980 msgstr ""981 982 #: email.php:1082983 msgid "Article taken from %EMAIL_BLOG_NAME% - %EMAIL_BLOG_URL%"984 msgstr ""985 986 #: email.php:1083987 msgid "URL to article: %EMAIL_PERMALINK%"988 msgstr ""989 990 #: email.php:1084991 991 msgid "Article: <strong>%EMAIL_POST_TITLE%</strong> Has Been Sent To <strong>%EMAIL_FRIEND_NAME% (%EMAIL_FRIEND_EMAIL%)</strong></p>" 992 992 msgstr "" 993 993 994 #: email.php:10 93994 #: email.php:1088 995 995 msgid "Email This Post" 996 996 msgstr "" 997 997 998 #: email.php:10 93998 #: email.php:1088 999 999 msgid "Email This Page" 1000 1000 msgstr "" wp-email/trunk/readme.html
r14640 r15492 290 290 <li> 291 291 <strong>Version 2.20 (01-10-2007)</strong> 292 <ul> 292 <ul> 293 293 <li>NEW: Most Emailed Widget Added</li> 294 294 <li>NEW: Ability To Uninstall WP-EMail</li> 295 295 <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> 296 298 </ul> 297 299 </li>
