Changeset 12279
- Timestamp:
- 05/06/07 10:00:37 (1 year ago)
- Files:
-
- wp-email/trunk/email/email-manager.php (modified) (3 diffs)
- wp-email/trunk/email/email-options.php (modified) (7 diffs)
- wp-email/trunk/email/email.php (modified) (13 diffs)
- wp-email/trunk/email/wp-email.pot (modified) (6 diffs)
- wp-email/trunk/readme.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wp-email/trunk/email/email-manager.php
r7946 r12279 225 225 <?php 226 226 if($email_page > 1 && ((($email_page*$email_log_perpage)-($email_log_perpage-1)) <= $total_email)) { 227 echo '<strong>«</strong> <a href="'.$base_page.'&emailpage='.($email_page-1). '" title="« '.__('Previous Page', 'wp-email').'">'.__('Previous Page', 'wp-email').'</a>';227 echo '<strong>«</strong> <a href="'.$base_page.'&emailpage='.($email_page-1).$email_sort_url.'" title="« '.__('Previous Page', 'wp-email').'">'.__('Previous Page', 'wp-email').'</a>'; 228 228 } else { 229 229 echo ' '; … … 234 234 <?php 235 235 if($email_page >= 1 && ((($email_page*$email_log_perpage)+1) <= $total_email)) { 236 echo '<a href="'.$base_page.'&emailpage='.($email_page+1). '" title="'.__('Next Page', 'wp-email').' »">'.__('Next Page', 'wp-email').'</a> <strong>»</strong>';236 echo '<a href="'.$base_page.'&emailpage='.($email_page+1).$email_sort_url.'" title="'.__('Next Page', 'wp-email').' »">'.__('Next Page', 'wp-email').'</a> <strong>»</strong>'; 237 237 } else { 238 238 echo ' '; … … 246 246 <?php 247 247 if ($email_page >= 4) { 248 echo '<strong><a href="'.$base_page.'&emailpage=1'.$email_sort_url. $email_sort_url.'" title="'.__('Go to First Page', 'wp-email').'">« '.__('First', 'wp-email').'</a></strong> ... ';248 echo '<strong><a href="'.$base_page.'&emailpage=1'.$email_sort_url.'" title="'.__('Go to First Page', 'wp-email').'">« '.__('First', 'wp-email').'</a></strong> ... '; 249 249 } 250 250 if($email_page > 1) { wp-email/trunk/email/email-options.php
r7946 r12279 54 54 $email_multiple = intval(trim($_POST['email_multiple'])); 55 55 $email_imageverify = intval(trim($_POST['email_imageverify'])); 56 $email_template_title = trim($_POST['email_template_title']); 57 $email_template_subtitle = trim($_POST['email_template_subtitle']); 56 58 $email_template_subject = strip_tags(trim($_POST['email_template_subject'])); 57 59 $email_template_body = trim($_POST['email_template_body']); … … 71 73 $update_email_queries[] = update_option('email_multiple', $email_multiple); 72 74 $update_email_queries[] = update_option('email_imageverify', $email_imageverify); 75 $update_email_queries[] = update_option('email_template_title', $email_template_title); 76 $update_email_queries[] = update_option('email_template_subtitle', $email_template_subtitle); 73 77 $update_email_queries[] = update_option('email_template_subject', $email_template_subject); 74 78 $update_email_queries[] = update_option('email_template_body', $email_template_body); … … 86 90 $update_email_text[] = __('Multiple E-Mails Option', 'wp-email'); 87 91 $update_email_text[] = __('Image Verification Option', 'wp-email'); 92 $update_email_text[] = __('Page Title Template', 'wp-email'); 93 $update_email_text[] = __('Page Subtitle Template', 'wp-email'); 88 94 $update_email_text[] = __('Subject Template', 'wp-email'); 89 95 $update_email_text[] = __('Body Template', 'wp-email'); … … 112 118 var default_template; 113 119 switch(template) { 120 case "title": 121 default_template = "<?php _e('E-Mail \'%EMAIL_POST_TITLE%\' To A Friend', 'wp-email'); ?>"; 122 break; 123 case "subtitle": 124 default_template = "<p style=\"text-align: center;\"><?php _e('Email a copy of <strong>\'%EMAIL_POST_TITLE%\'</strong> to a friend', 'wp-email'); ?></p>"; 125 break; 114 126 case "subject": 115 127 default_template = "<?php _e('Recommended Article By %EMAIL_YOUR_NAME%: %EMAIL_POST_TITLE%', 'wp-email'); ?>"; … … 119 131 break; 120 132 case "bodyalt": 121 default_template = "<?php _e('Hi %EMAIL_FRIEND_NAME%,\nYour friend, %EMAIL_YOUR_NAME%, has recommended this article entitled \'%EMAIL_POST_TITLE%\' to you.\n\nHere is his/her remark s:\n%EMAIL_YOUR_REMARKS%\n\n%EMAIL_POST_TITLE%\nPosted By %EMAIL_POST_AUTHOR% On %EMAIL_POST_DATE% In %EMAIL_POST_CATEGORY%\n%EMAIL_POST_CONTENT%\nArticle taken from %EMAIL_BLOG_NAME% - %EMAIL_BLOG_URL%\nURL to article: %EMAIL_PERMALINK%', 'wp-email'); ?>";133 default_template = "<?php _e('Hi %EMAIL_FRIEND_NAME%,\nYour friend, %EMAIL_YOUR_NAME%, has recommended this article entitled \'%EMAIL_POST_TITLE%\' to you.\n\nHere is his/her remark:\n%EMAIL_YOUR_REMARKS%\n\n%EMAIL_POST_TITLE%\nPosted By %EMAIL_POST_AUTHOR% On %EMAIL_POST_DATE% In %EMAIL_POST_CATEGORY%\n%EMAIL_POST_CONTENT%\nArticle taken from %EMAIL_BLOG_NAME% - %EMAIL_BLOG_URL%\nURL to article: %EMAIL_PERMALINK%', 'wp-email'); ?>"; 122 134 break; 123 135 case "sentsuccess": … … 343 355 </table> 344 356 </fieldset> 357 <fieldset class="options"> 358 <legend><?php _e('E-Mail Page Templates', 'wp-email'); ?></legend> 359 <table width="100%" border="0" cellspacing="3" cellpadding="3"> 360 <tr valign="top"> 361 <td align="left" width="30%"> 362 <strong><?php _e('E-Mail Page Title:', 'wp-email'); ?></strong><br /><br /> 363 <?php _e('Allowed Variables:', 'wp-email'); ?><br /> 364 - %EMAIL_POST_TITLE%<br /> 365 - %EMAIL_POST_AUTHOR%<br /> 366 - %EMAIL_POST_DATE%<br /> 367 - %EMAIL_POST_CATEGORY%<br /> 368 - %EMAIL_BLOG_NAME%<br /> 369 - %EMAIL_BLOG_URL%<br /> 370 - %EMAIL_PERMALINK%<br /><br /> 371 <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-email'); ?>" onclick="javascript: email_default_templates('title');" class="button" /> 372 </td> 373 <td align="left"><input type="text" id="email_template_title" name="email_template_title" value="<?php echo htmlspecialchars(stripslashes(get_option('email_template_title'))); ?>" size="82" /></td> 374 </tr> 375 <tr valign="top"> 376 <td align="left" width="30%"> 377 <strong><?php _e('E-Mail Page Subtitle:', 'wp-email'); ?></strong><br /><br /> 378 <?php _e('Allowed Variables:', 'wp-email'); ?><br /> 379 - %EMAIL_POST_TITLE%<br /> 380 - %EMAIL_POST_AUTHOR%<br /> 381 - %EMAIL_POST_DATE%<br /> 382 - %EMAIL_POST_CATEGORY%<br /> 383 - %EMAIL_BLOG_NAME%<br /> 384 - %EMAIL_BLOG_URL%<br /> 385 - %EMAIL_PERMALINK%<br /><br /> 386 <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-email'); ?>" onclick="javascript: email_default_templates('subtitle');" class="button" /> 387 </td> 388 <td align="left"><input type="text" id="email_template_subtitle" name="email_template_subtitle" value="<?php echo htmlspecialchars(stripslashes(get_option('email_template_subtitle'))); ?>" size="82" /></td> 389 </tr> 390 </table> 391 </fieldset> 345 392 <fieldset class="options"> 346 393 <legend><?php _e('E-Mail Templates', 'wp-email'); ?></legend> … … 461 508 </fieldset> 462 509 <div align="center"> 463 <input type="submit" name="Submit" class="button" value="<?php _e('Update Options', 'wp-email'); ?>" /> <input type="button" name="cancel" Value="<?php _e('Cancel', 'wp-email'); ?>" class="button" onclick="javascript:history.go(-1)" />510 <input type="submit" name="Submit" class="button" value="<?php _e('Update Options', 'wp-email'); ?>" /> <input type="button" name="cancel" value="<?php _e('Cancel', 'wp-email'); ?>" class="button" onclick="javascript:history.go(-1)" /> 464 511 </div> 465 512 </form> wp-email/trunk/email/email.php
r9811 r12279 90 90 add_action('wp_head', 'email_js'); 91 91 function email_js() { 92 echo "\n".'<!-- Start Of Script Generated By WP-EMail 2.1 0-->'."\n";92 echo "\n".'<!-- Start Of Script Generated By WP-EMail 2.11 -->'."\n"; 93 93 echo '<script type="text/javascript">'."\n"; 94 94 echo '/* <![CDATA[ */'."\n"; … … 99 99 echo '</script>'."\n"; 100 100 echo '<link rel="stylesheet" href="'.get_option('siteurl').'/wp-content/plugins/email/email-css.css" type="text/css" media="screen" />'."\n"; 101 echo '<!-- End Of Script Generated By WP-EMail 2.1 0-->'."\n";101 echo '<!-- End Of Script Generated By WP-EMail 2.11 -->'."\n"; 102 102 } 103 103 104 104 105 105 ### Function: Display E-Mail Link 106 function email_link($deprecated = '', $deprecated2 ='' ) {106 function email_link($deprecated = '', $deprecated2 ='', $echo = true) { 107 107 global $id; 108 $output = ''; 108 109 $using_permalink = get_option('permalink_structure'); 109 110 $email_options = get_option('email_options'); … … 160 161 // Icon + Text Link 161 162 case 1: 162 echo '<img class="WP-EmailIcon" src="'.$email_icon.'" alt="'.$email_text.'" title="'.$email_text.'" style="border: 0px;" /> <a href="'.$email_link.'"'.$onclick.' title="'.$email_text.'" rel="nofollow">'.$email_text.'</a>'."\n";163 $output = '<img class="WP-EmailIcon" src="'.$email_icon.'" alt="'.$email_text.'" title="'.$email_text.'" style="border: 0px;" /> <a href="'.$email_link.'"'.$onclick.' title="'.$email_text.'" rel="nofollow">'.$email_text.'</a>'; 163 164 break; 164 165 // Icon Only 165 166 case 2: 166 echo '<a href="'.$email_link.'"'.$onclick.' title="'.$email_text.'" rel="nofollow"><img class="WP-EmailIcon" src="'.$email_icon.'" alt="'.$email_text.'" title="'.$email_text.'" style="border: 0px;" /></a>'."\n";167 $output = '<a href="'.$email_link.'"'.$onclick.' title="'.$email_text.'" rel="nofollow"><img class="WP-EmailIcon" src="'.$email_icon.'" alt="'.$email_text.'" title="'.$email_text.'" style="border: 0px;" /></a>'; 167 168 break; 168 169 // Text Link Only 169 170 case 3: 170 echo '<a href="'.$email_link.'"'.$onclick.' title="'.$email_text.'" rel="nofollow">'.$email_text.'</a>'."\n";171 $output = '<a href="'.$email_link.'"'.$onclick.' title="'.$email_text.'" rel="nofollow">'.$email_text.'</a>'; 171 172 break; 172 173 case 4: … … 175 176 $email_html = str_replace("%EMAIL_TEXT%", $email_text, $email_html); 176 177 $email_html = str_replace("%EMAIL_ICON_URL%", $email_icon, $email_html); 177 echo$email_html;178 $output = $email_html; 178 179 break; 180 } 181 if($echo) { 182 echo $output."\n"; 183 } else { 184 return $output; 179 185 } 180 186 } … … 185 191 function email_popup($deprecated = '', $deprecated2 ='') { email_link(); } 186 192 function email_popup_image() { email_link(); } 193 194 195 ### Function: Place E-Mail Link 196 add_filter('the_content', 'place_emaillink', 7); 197 function place_emaillink($content){ 198 if(!is_feed()) { 199 $content = preg_replace("/\[email_link\]/ise", "email_link('', '', false)", $content); 200 } else { 201 $content = preg_replace("/\[email_link\]/ise", __('Note: You can email this post by visiting the site.', 'wp-email'), $content); 202 } 203 return $content; 204 } 187 205 188 206 … … 225 243 226 244 ### Function: E-Mail Title 227 function email_title($title) { 228 $title = sprintf(__('E-Mail \'%s\' To A Friend', 'wp-email'), $title); 229 return $title; 245 function email_title() { 246 $post_title = get_the_title(); 247 $post_author = the_author('', false); 248 $post_date = get_the_time(get_option('date_format').' ('.get_option('time_format').')', '', '', false); 249 $post_category = email_category(); 250 $post_category_alt = strip_tags($post_category); 251 $template_title = stripslashes(get_option('email_template_title')); 252 $template_title = str_replace("%EMAIL_POST_TITLE%", $post_title, $template_title); 253 $template_title = str_replace("%EMAIL_POST_AUTHOR%", $post_author, $template_title); 254 $template_title = str_replace("%EMAIL_POST_DATE%", $post_date, $template_title); 255 $template_title = str_replace("%EMAIL_POST_CATEGORY%", $post_category, $template_title); 256 $template_title = str_replace("%EMAIL_BLOG_NAME%", get_bloginfo('name'), $template_title); 257 $template_title = str_replace("%EMAIL_BLOG_URL%", get_bloginfo('url'), $template_title); 258 $template_title = str_replace("%EMAIL_PERMALINK%", get_permalink(), $template_title); 259 return $template_title; 230 260 } 231 261 … … 579 609 global $post_excerpt, $post_content, $post_content_alt, $wpdb; 580 610 // Variables 611 $post_title = get_the_title(); 612 $post_author = the_author('', false); 613 $post_date = get_the_time(get_option('date_format').' ('.get_option('time_format').')', '', '', false); 614 $post_category = email_category(); 615 $post_category_alt = strip_tags($post_category); 581 616 $email_fields = get_option('email_fields'); 582 617 $email_image_verify = intval(get_option('email_imageverify')); … … 587 622 $friendemail = strip_tags(stripslashes(trim($_POST['friendemail']))); 588 623 $output = '<div class="wp-email">'."\n"; 589 $output .= '<p style="text-align: center">'.sprintf(__('Email a copy of <strong>%s</strong> to a Friend.', 'wp-email'), get_the_title()).'</p>'."\n"; 624 $template_subtitle = stripslashes(get_option('email_template_subtitle')); 625 $template_subtitle = str_replace("%EMAIL_POST_TITLE%", $post_title, $template_subtitle); 626 $template_subtitle = str_replace("%EMAIL_POST_AUTHOR%", $post_author, $template_subtitle); 627 $template_subtitle = str_replace("%EMAIL_POST_DATE%", $post_date, $template_subtitle); 628 $template_subtitle = str_replace("%EMAIL_POST_CATEGORY%", $post_category, $template_subtitle); 629 $template_subtitle = str_replace("%EMAIL_BLOG_NAME%", get_bloginfo('name'), $template_subtitle); 630 $template_subtitle = str_replace("%EMAIL_BLOG_URL%", get_bloginfo('url'), $template_subtitle); 631 $template_subtitle = str_replace("%EMAIL_PERMALINK%", get_permalink(), $template_subtitle); 632 $output .= $template_subtitle; 590 633 // If User Click On Mail 591 634 if(!empty($_POST['wp-email'])) { … … 618 661 if(intval($email_fields['yourremarks']) == 1) { 619 662 if(!is_valid_remarks($yourremarks)) { 620 $error .= '<br /><strong>»</strong> '.__('Your remark sis invalid.', 'wp-email');663 $error .= '<br /><strong>»</strong> '.__('Your remark is invalid.', 'wp-email'); 621 664 } 622 665 } … … 680 723 if(empty($error) && not_spamming()) { 681 724 // If Remarks Is Empty, Assign N/A 682 if(empty($yourremarks)) { $yourremarks = 'N/A'; }725 if(empty($yourremarks)) { $yourremarks = __('N/A', 'wp-email'); } 683 726 // Variables Variables Variables 684 727 remove_filter('the_content', 'email_form'); 685 $post_title = get_the_title();686 $post_author = the_author('', false);687 $post_date = get_the_time(get_option('date_format').' ('.get_option('time_format').')', '', '', false);688 $post_category = email_category();689 $post_category_alt = strip_tags($post_category);690 728 // Template For E-Mail Subject 691 729 $template_email_subject = stripslashes(get_option('email_template_subject')); … … 830 868 if(intval($email_fields['yourremarks']) == 1) { 831 869 $output .= '<p>'."\n"; 832 $output .= ' <strong><label for="yourremarks">'.__('Your Remark s:', 'wp-email').'</label></strong><br />'."\n";870 $output .= ' <strong><label for="yourremarks">'.__('Your Remark:', 'wp-email').'</label></strong><br />'."\n"; 833 871 $output .= ' <textarea cols="49" rows="8" id="yourremarks" name="yourremarks" class="Forms">'.$yourremarks.'</textarea>'."\n"; 834 872 $output .= '</p>'."\n"; … … 933 971 add_option('email_mailer', 'php', 'Your Mailer Type'); 934 972 add_option('email_template_subject', __('Recommended Article By %EMAIL_YOUR_NAME%: %EMAIL_POST_TITLE%', 'wp-email'), 'Template For E-Mail Subject'); 935 add_option('email_template_body', __('<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 s:</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>', 'wp-email'), 'Template For E-Mail Body');973 add_option('email_template_body', __('<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>', 'wp-email'), 'Template For E-Mail Body'); 936 974 add_option('email_template_bodyalt', __('Hi %EMAIL_FRIEND_NAME%,'."\n". 937 975 'Your friend, %EMAIL_YOUR_NAME%, has recommended this article entitled \'%EMAIL_POST_TITLE%\' to you.'."\n\n". … … 956 994 add_option('email_options', $email_options, 'Email Options'); 957 995 add_option('email_fields', $email_fields, 'Email Fields'); 996 // Version 2.11 Options 997 add_option('email_template_title', __('E-Mail \'%EMAIL_POST_TITLE%\' To A Friend', 'wp-email'), 'Template For E-Mail Page Title'); 998 add_option('email_template_subtitle', '<p style="text-align: center;">'.__('Email a copy of <strong>\'%EMAIL_POST_TITLE%\'</strong> to a friend', 'wp-email').'</p>', 'Template For E-Mail Page SubTitle'); 958 999 // Set 'manage_email' Capabilities To Administrator 959 1000 $role = get_role('administrator'); wp-email/trunk/email/wp-email.pot
r9130 r12279 3 3 "Project-Id-Version: WP-EMail 2.10\n" 4 4 "POT-Creation-Date: \n" 5 "PO-Revision-Date: 2007-0 3-22 02:01+0800\n"5 "PO-Revision-Date: 2007-05-06 16:12+0800\n" 6 6 "Last-Translator: Lester 'GaMerZ' Chan <gamerz84@hotmail.com>\n" 7 7 "Language-Team: Lester Chan <gamerz84@hotmail.com>\n" … … 92 92 93 93 #: email-manager.php:126 94 #: email.php:3 5795 #: email.php: 47396 #: email.php:7 4297 #: email.php: 79094 #: email.php:387 95 #: email.php:515 96 #: email.php:792 97 #: email.php:840 98 98 msgid "Success" 99 99 msgstr "" 100 100 101 101 #: email-manager.php:127 102 #: email.php: 487103 #: email.php: 754102 #: email.php:529 103 #: email.php:804 104 104 msgid "Failed" 105 105 msgstr "" … … 221 221 msgstr "" 222 222 223 #: email-options.php: 79223 #: email-options.php:83 224 224 msgid "SMTP Information" 225 225 msgstr "" 226 226 227 #: email-options.php:8 0227 #: email-options.php:84 228 228 msgid "E-Mail Style" 229 229 msgstr "" 230 230 231 #: email-options.php:8 1231 #: email-options.php:85 232 232 msgid "E-Mail Fields" 233 233 msgstr "" 234 234 235 #: email-options.php:8 2235 #: email-options.php:86 236 236 msgid "E-Mail Content Type" 237 237 msgstr "" 238 238 239 #: email-options.php:8 3239 #: email-options.php:87 240 240 msgid "Send E-Mail Method" 241 241 msgstr "" 242 242 243 #: email-options.php:8 4243 #: email-options.php:88 244 244 msgid "Snippet Option" 245 245 msgstr "" 246 246 247 #: email-options.php:8 5247 #: email-options.php:89 248 248 msgid "Interval Option" 249 249 msgstr "" 250 250 251 #: email-options.php: 86251 #: email-options.php:90 252 252 msgid "Multiple E-Mails Option" 253 253 msgstr "" 254 254 255 #: email-options.php: 87255 #: email-options.php:91 256 256 msgid "Image Verification Option" 257 257 msgstr "" 258 258 259 #: email-options.php:88 259 #: email-options.php:92 260 msgid "Page Title Template" 261 msgstr "" 262 263 #: email-options.php:93 264 msgid "Page Subtitle Template" 265 msgstr "" 266 267 #: email-options.php:94 260 268 msgid "Subject Template" 261 269 msgstr "" 262 270 263 #: email-options.php: 89271 #: email-options.php:95 264 272 msgid "Body Template" 265 273 msgstr "" 266 274 267 #: email-options.php:9 0275 #: email-options.php:96 268 276 msgid "Alternate Body Template" 269 277 msgstr "" 270 278 271 #: email-options.php:9 1279 #: email-options.php:97 272 280 msgid "Sent Success Template" 273 281 msgstr "" 274 282 275 #: email-options.php:9 2283 #: email-options.php:98 276 284 msgid "Sent Failed Template" 277 285 msgstr "" 278 286 279 #: email-options.php:9 3287 #: email-options.php:99 280 288 msgid "Error Template" 281 289 msgstr "" 282 290 283 #: email-options.php: 98291 #: email-options.php:104 284 292 msgid "Updated" 285 293 msgstr "" 286 294 287 #: email-options.php:10 3295 #: email-options.php:109 288 296 msgid "No E-Mail Option Updated" 289 297 msgstr "" 290 298 291 #: email-options.php:115 292 #: email.php:922 299 #: email-options.php:121 300 #: email.php:997 301 msgid "E-Mail '%EMAIL_POST_TITLE%' To A Friend" 302 msgstr "" 303 304 #: email-options.php:124 305 #: email.php:998 306 msgid "Email a copy of <strong>'%EMAIL_POST_TITLE%'</strong> to a friend" 307 msgstr "" 308 309 #: email-options.php:127 310 #: email.php:972 293 311 msgid "Recommended Article By %EMAIL_YOUR_NAME%: %EMAIL_POST_TITLE%" 294 312 msgstr "" 295 313 296 #: email-options.php:1 18314 #: email-options.php:130 297 315 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>" 298 316 msgstr "" 299 317 300 #: email-options.php:1 21318 #: email-options.php:133 301 319 msgid "" 302 320 "Hi %EMAIL_FRIEND_NAME%,\\n" 303 321 "Your friend, %EMAIL_YOUR_NAME%, has recommended this article entitled '%EMAIL_POST_TITLE%' to you.\\n" 304 322 "\\n" 305 "Here is his/her remark s:\\n"323 "Here is his/her remark:\\n" 306 324 "%EMAIL_YOUR_REMARKS%\\n" 307 325 "\\n" … … 313 331 msgstr "" 314 332 315 #: email-options.php:1 24333 #: email-options.php:136 316 334 msgid "Article: <strong>%EMAIL_POST_TITLE%</strong> Has Been Sent To <strong>%EMAIL_FRIEND_NAME% (%EMAIL_FRIEND_EMAIL%)</strong>" 317 335 msgstr "" 318 336 319 #: email-options.php:1 27320 #: email.php:9 34337 #: email-options.php:139 338 #: email.php:984 321 339 msgid "An Error Has Occured When Trying To Send The E-Mail" 322 340 msgstr "" 323 341 324 #: email-options.php:1 30325 #: email.php:9 35342 #: email-options.php:142 343 #: email.php:985 326 344 msgid "An Error Has Occured" 327 345 msgstr "" 328 346 329 #: email-options.php:1 52347 #: email-options.php:164 330 348 #: email.php:47 331 349 msgid "E-Mail Options" 332 350 msgstr "" 333 351 334 #: email-options.php:1 55352 #: email-options.php:167 335 353 msgid "SMTP Settings" 336 354 msgstr "" 337 355 338 #: email-options.php:1 62356 #: email-options.php:174 339 357 msgid "SMTP Username:" 340 358 msgstr "" 341 359 342 #: email-options.php:1 66360 #: email-options.php:178 343 361 msgid "SMTP Password:" 344 362 msgstr "" 345 363 346 #: email-options.php:1 70364 #: email-options.php:182 347 365 msgid "SMTP Server:" 348 366 msgstr "" 349 367 350 #: email-options.php:1 71368 #: email-options.php:183 351 369 msgid "You may leave the above fields blank if you do not use a SMTP server." 352 370 msgstr "" 353 371 354 #: email-options.php:1 77372 #: email-options.php:189 355 373 msgid "E-Mail Styles" 356 374 msgstr "" 357 375 358 #: email-options.php:1 80376 #: email-options.php:192 359 377 msgid "E-Mail Text Link For Post" 360 378 msgstr "" 361 379 362 #: email-options.php:1 86380 #: email-options.php:198 363 381 msgid "E-Mail Text Link For Page" 364 382 msgstr "" 365 383 366 #: email-options.php: 192384 #: email-options.php:204 367 385 msgid "E-Mail Icon" 368 386 msgstr "" 369 387 370 #: email-options.php:2 20388 #: email-options.php:232 371 389 msgid "E-Mail Link Type" 372 390 msgstr "" 373 391 374 #: email-options.php:2 23392 #: email-options.php:235 375 393 msgid "E-Mail Standalone Page" 376 394 msgstr "" 377 395 378 #: email-options.php:2 24396 #: email-options.php:236 379 397 msgid "E-Mail Popup" 380 398 msgstr "" 381 399 382 #: email-options.php:2 29400 #: email-options.php:241 383 401 msgid "E-Mail Text Link Style" 384 402 msgstr "" 385 403 386 #: email-options.php:2 32404 #: email-options.php:244 387 405 msgid "E-Mail Icon With Text Link" 388 406 msgstr "" 389 407 390 #: email-options.php:2 33408 #: email-options.php:245 391 409 msgid "E-Mail Icon Only" 392 410 msgstr "" 393 411 394 #: email-options.php:2 34412 #: email-options.php:246 395 413 msgid "E-Mail Text Link Only" 396 414 msgstr "" 397 415 398 #: email-options.php:2 35416 #: email-options.php:247 399 417 msgid "Custom" 400 418 msgstr "" 401 419 402 #: email-options.php:2 39420 #: email-options.php:251 403 421 msgid "HTML is allowed." 404 422 msgstr "" 405 423 406 #: email-options.php:2 40424 #: email-options.php:252 407 425 msgid "URL to the email post/page." 408 426 msgstr "" 409 427 410 #: email-options.php:2 41428 #: email-options.php:253 411 429 msgid "It will produce the onclick html code which is nescassary for popup." 412 430 msgstr "" 413 431 414 #: email-options.php:2 42432 #: email-options.php:254 415 433 msgid "Example Popup Template:" 416 434 msgstr "" 417 435 418 #: email-options.php:2 44436 #: email-options.php:256 419 437 msgid "E-Mail text link of the post/page that you have typed in above." 420 438 msgstr "" 421 439 422 #: email-options.php:2 45440 #: email-options.php:257 423 441 msgid "URL to the email icon you have chosen above." 424 442 msgstr "" 425 443 426 #: email-options.php:246 427 #: email-options.php:361 428 #: email-options.php:383 429 #: email-options.php:405 430 #: email-options.php:424 431 #: email-options.php:439 432 #: email-options.php:456 444 #: email-options.php:258 445 #: email-options.php:371 446 #: email-options.php:386 447 #: email-options.php:408 448 #: email-options.php:430 449 #: email-options.php:452 450 #: email-options.php:471 451 #: email-options.php:486 452 #: email-options.php:503 433 453 msgid "Restore Default Template" 434 454 msgstr "" 435 455 436 #: email-options.php:2 53456 #: email-options.php:265 437 457 msgid "E-Mail Settings" 438 458 msgstr "" 439 459 440 #: email-options.php:2 56460 #: email-options.php:268 441 461 msgid "E-Mail Fields:" 442 462 msgstr "" 443 463 444 #: email-options.php:2 58464 #: email-options.php:270 445 465 msgid "Your Name" 446 466 msgstr "" 447 467 448 #: email-options.php:2 59468 #: email-options.php:271 449 469 msgid "Your E-Mail" 450 470 msgstr "" 451 471 452 #: email-options.php:2 60472 #: email-options.php:272 453 473 msgid "Your Remarks" 454 474 msgstr "" 455 475 456 #: email-options.php:2 61476 #: email-options.php:273 457 477 msgid "Friend's Name" 458 478 msgstr "" 459 479 460 #: email-options.php:2 62480 #: email-options.php:274 461 481 msgid "Friend's E-Mail" 462 482 msgstr "" 463 483 464 #: email-options.php:2 66484 #: email-options.php:278 465 485 msgid "E-Mail Content Type:" 466 486 msgstr "" 467 487 468 #: email-options.php:2 69488 #: email-options.php:281 469 489 msgid "Plain Text" 470 490 msgstr "" 471 491 472 #: email-options.php:2 70492 #: email-options.php:282 473 493 msgid "HTML" 474 494 msgstr "" 475 495 476 #: email-options.php:2 75496 #: email-options.php:287 477 497 msgid "Method Used To Send E-Mail:" 478 498 msgstr "" 479 499 480 #: email-options.php:2 78500 #: email-options.php:290 481 501 msgid "PHP" 482 502 msgstr "" 483 503 484 #: email-options.php:2 79504 #: email-options.php:291 485 505 msgid "SendMail" 486 506 msgstr "" 487 507 488 #: email-options.php:2 80508 #: email-options.php:292 489 509 msgid "SMTP" 490 510 msgstr "" 491 511 492 #: email-options.php:2 82512 #: email-options.php:294 493 513 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." 494 514 msgstr "" 495 515 496 #: email-options.php:2 86516 #: email-options.php:298 497 517 msgid "No. Of Words Before Cutting Off:" 498 518 msgstr "" 499 519 500 #: email-options.php:2 87520 #: email-options.php:299 501 521 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." 502 522 msgstr "" 503 523 504 #: email-options.php: 290524 #: email-options.php:302 505 525 msgid "Interval Between E-Mails:" 506 526 msgstr "" 507 527 508 #: email-options.php: 291528 #: email-options.php:303 509 529 msgid "Mins" 510 530 msgstr "" 511 531 512 #: email-options.php: 291532 #: email-options.php:303 513 533 msgid "It allows you to specify the interval in minutes between each email sent per user based on IP to prevent spam and flood." 514 534 msgstr "" 515 535 516 #: email-options.php: 294536 #: email-options.php:306 517 537 msgid "Max Number Of Multiple E-Mails:" 518 538 msgstr "" 519 539 520 #: email-options.php: 295540 #: email-options.php:307 521 541 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." 522 542 msgstr "" 523 543 524 #: email-options.php: 298544 #: email-options.php:310 525 545 msgid "Enable Image Verification:" 526 546 msgstr "" 527 547 528 #: email-options.php:3 01548 #: email-options.php:313 529 549 msgid "Yes" 530 550 msgstr "" 531 551 532 #: email-options.php:3 02552 #: email-options.php:314 533 553 msgid "No" 534 554 msgstr "" 535 555 536 #: email-options.php:3 03556 #: email-options.php:315 537 557 msgid "It is recommanded to choose <strong>Yes</strong> unless your server does not support PHP GD Library." 538 558 msgstr "" 539 559 540 #: email-options.php:3 09560 #: email-options.php:321 541 561 msgid "Template Variables" 542 562 msgstr "" 543 563 544 #: email-options.php:3 12564 #: email-options.php:324 545 565 msgid "Display the sender's name" 546 566 msgstr "" 547 567 548 #: email-options.php:3 13568 #: email-options.php:325 549 569 msgid "Display the post's title" 550 570 msgstr "" 551 571 552 #: email-options.php:3 16572 #: email-options.php:328 553 573 msgid "Display the sender's email" 554 574 msgstr "" 555 575 556 #: email-options.php:3 17576 #: email-options.php:329 557 577 msgid "Display the post's author" 558 578 msgstr "" 559 579 560 #: email-options.php:3 20580 #: email-options.php:332 561 581 msgid "Display the sender's remarks" 562 582 msgstr "" 563 583 564 #: email-options.php:3 21584 #: email-options.php:333 565 585 msgid "Display the post's date" 566 586 msgstr "" 567 587 568 #: email-options.php:3 24588 #: email-options.php:336 569 589 msgid "Display the friend's name" 570 590 msgstr "" 571 591 572 #: email-options.php:3 25592 #: email-options.php:337 573 593 msgid "Display the post's category" 574 594 msgstr "" 575 595 576 #: email-options.php:3 28596 #: email-options.php:340 577 597 msgid "Display the friend's email" 578 598 msgstr "" 579 599 580 #: email-options.php:3 29600 #: email-options.php:341 581 601 msgid "Display the post's excerpt" 582 602 msgstr "" 583 603 584 #: email-options.php:3 32604 #: email-options.php:344 585 605 msgid "Display the error message" 586 606 msgstr "" 587 607 588 #: email-options.php:3 33608 #: email-options.php:345 589 609 msgid "Display the post's content" 590 610 msgstr "" 591 611 592 #: email-options.php:3 36612 #: email-options.php:348 593 613 msgid "Display the blog's name" 594 614 msgstr "" 595 615 596 #: email-options.php:3 37616 #: email-options.php:349 597 617 msgid "Display the permalink of the post" 598 618 msgstr "" 599 619 600 #: email-options.php:3 40620 #: email-options.php:352 601 621 msgid "Display the blog's url" 602 622 msgstr "" 603 623 604 #: email-options.php:346 624 #: email-options.php:358 625 msgid "E-Mail Page Templates" 626 msgstr "" 627 628 #: email-options.php:362 629 msgid "E-Mail Page Title:" 630 msgstr "" 631 632 #: email-options.php:363 633 #: email-options.php:378 634 #: email-options.php:398 635 #: email-options.php:415 636 #: email-options.php:437 637 #: email-options.php:464 638 #: email-options.php:478 639 #: email-options.php:498 640 msgid "Allowed Variables:" 641 msgstr "" 642 643 #: email-options.php:377 644 msgid "E-Mail Page Subtitle:" 645 msgstr "" 646 647 #: email-options.php:393 605 648 msgid "E-Mail Templates" 606 649 msgstr "" 607 650 608 #: email-options.php:3 50651 #: email-options.php:397 609 652 msgid "E-Mail Subject:" 610 653 msgstr "" 611 654 612 #: email-options.php:351 613 #: email-options.php:368 614 #: email-options.php:390 615 #: email-options.php:417 616 #: email-options.php:431 617 #: email-options.php:451 618 msgid "Allowed Variables:" 619 msgstr "" 620 621 #: email-options.php:367 655 #: email-options.php:414 622 656 msgid "E-Mail Body:" 623 657 msgstr "" 624 658 625 #: email-options.php: 389659 #: email-options.php:436 626 660 msgid "E-Mail Alternate Body:" 627 661 msgstr "" 628 662 629 #: email-options.php:4 12663 #: email-options.php:459 630 664 msgid "After Sending E-Mail Templates" 631 665 msgstr "" 632 666 633 #: email-options.php:4 16667 #: email-options.php:463 634 668 msgid "Sent Successfully:" 635 669 msgstr "" 636 670 637 #: email-options.php:4 30671 #: email-options.php:477 638 672 msgid "Sent Failed:" 639 673 msgstr "" 640 674 641 #: email-options.php:4 46675 #: email-options.php:493 642 676 msgid "E-Mail Misc Templates" 643 677 msgstr "" 644 678 645 #: email-options.php:4 50679 #: email-options.php:497 646 680 msgid "E-Mail Error:" 647 681 msgstr "" 648 682 649 #: email-options.php: 463683 #: email-options.php:510 650 684 msgid "Update Options" 651 685 msgstr "" 652 686 653 #: email-options.php: 463687 #: email-options.php:510 654 688 msgid "Cancel" 655 689 msgstr "" 656 690 657 691 #: email.php:43 658 #: email.php:2 12692 #: email.php:230 659 693 msgid "E-Mail" 660 694 msgstr "" … … 664 698 msgstr "" 665 699 666 #: email.php:228 667 #, php-format 668 msgid "E-Mail '%s' To A Friend" 669 msgstr "" 670 671 #: email.php:272 700 #: email.php:201 701 msgid "Note: You can email this post by visiting the site." 702 msgstr "" 703 704 #: email.php:302 672 705 msgid "Password Protected Post" 673 706 msgstr "" 674 707 675 #: email.php:4 45708 #: email.php:487 676 709 #, php-format 677 710 msgid "Separate multiple entries with a comma. Maximum %s entries." 678 711 msgstr "" 679 712 680 #: email.php:5 14681 #: email.php:5 20713 #: email.php:556 714 #: email.php:562 682 715 msgid "Emails" 683 716 msgstr "" 684 717 685 #: email.php:524 686 #: email.php:753 718 #: email.php:566 719 #: email.php:725 720 #: email.php:803 687 721 msgid "N/A" 688 722 msgstr "" 689 723 690 #: email.php:577 691 #, php-format 692 msgid "Email a copy of <strong>%s</strong> to a Friend." 693 msgstr "" 694 695 #: email.php:596 724 #: email.php:651 696 725 msgid "Your name is empty." 697 726 msgstr "" 698 727 699 #: email.php:6 02728 #: email.php:657 700 729 msgid "Your email is invalid or is empty." 701 730 msgstr "" 702 731 703 #: email.php:6 08704 msgid "Your remark sis invalid."705 msgstr "" 706 707 #: email.php:6 17732 #: email.php:663 733 msgid "Your remark is invalid." 734 msgstr "" 735 736 #: email.php:672 708 737 #, php-format 709 738 msgid "Friend's name (%s) is empty." 710 739 msgstr "" 711 740 712 #: email.php:6 34741 #: email.php:689 713 742 #, php-format 714 743 msgid "Friend's email (%s) is invalid or is empty." 715 744 msgstr "" 716 745 717 #: email.php: 648746 #: email.php:703 718 747 #, php-format 719 748 msgid "Maximum %s entries allowed" 720 749
