Changeset 39610
- Timestamp:
- 04/10/08 18:18:07 (3 months ago)
- Files:
-
- wp-email/trunk/email-manager.php (modified) (4 diffs)
- wp-email/trunk/readme.html (modified) (2 diffs)
- wp-email/trunk/wp-email.mo (modified) (previous)
- wp-email/trunk/wp-email.php (modified) (1 diff)
- wp-email/trunk/wp-email.pot (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wp-email/trunk/email-manager.php
r36851 r39610 168 168 <p><?php printf(__('Dispaying <strong>%s</strong> To <strong>%s</strong> Of <strong>%s</strong> E-Mail Logs', 'wp-email'), $display_on_page, $max_on_page, $total_email); ?></p> 169 169 <p><?php printf(__('Sorted By <strong>%s</strong> In <strong>%s</strong> Order', 'wp-email'), $email_sortby_text, $email_sortorder_text); ?></p> 170 <?php 171 $colspan = 7; 172 if(EMAIL_SHOW_REMARKS) { 173 $colspan++; 174 } 175 ?> 170 176 <table class="widefat"> 171 177 <thead> 172 178 <tr> 173 <th width="5%"><?php _e('ID', 'wp-email'); ?></th> 174 <th width="17%"><?php _e('From', 'wp-email'); ?></th> 175 <th width="17%"><?php _e('To', 'wp-email'); ?></th> 176 <th width="17%"><?php _e('Date / Time', 'wp-email'); ?></th> 177 <th width="17%"><?php _e('IP / Host', 'wp-email'); ?></th> 178 <th width="17%"><?php _e('Post Title', 'wp-email'); ?></th> 179 <th width="10%"><?php _e('Status', 'wp-email'); ?></th> 179 <th><?php _e('ID', 'wp-email'); ?></th> 180 <th><?php _e('From', 'wp-email'); ?></th> 181 <th><?php _e('To', 'wp-email'); ?></th> 182 <th><?php _e('Date / Time', 'wp-email'); ?></th> 183 <th><?php _e('IP / Host', 'wp-email'); ?></th> 184 <?php 185 if(EMAIL_SHOW_REMARKS) { 186 echo '<th>'.__('Remarks', 'wp-email').'</th>'; 187 } 188 ?> 189 <th><?php _e('Post Title', 'wp-email'); ?></th> 190 <th><?php _e('Status', 'wp-email'); ?></th> 180 191 </tr> 181 192 </thead> … … 195 206 $email_friendemail = stripslashes($email_log->email_friendemail); 196 207 $email_postid = intval($email_log->email_postid); 208 $email_remarks = htmlspecialchars(stripslashes($email_log->email_yourremarks)); 197 209 $email_posttitle = htmlspecialchars(stripslashes($email_log->email_posttitle)); 198 210 $email_date = mysql2date(sprintf(__('%s @ %s', 'wp-email'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $email_log->email_timestamp)); … … 206 218 echo "<td>$email_date</td>\n"; 207 219 echo "<td>$email_ip<br />$email_host</td>\n"; 220 if(EMAIL_SHOW_REMARKS) { 221 echo '<td>'.$email_remarks.'</td>'; 222 } 208 223 echo "<td>$email_posttitle</td>\n"; 209 224 echo "<td>$email_status</td>\n"; … … 212 227 } 213 228 } else { 214 echo '<tr><td colspan=" 7" align="center"><strong>'.__('No E-Mail Logs Found', 'wp-email').'</strong></td></tr>';229 echo '<tr><td colspan="'.$colspan.'" align="center"><strong>'.__('No E-Mail Logs Found', 'wp-email').'</strong></td></tr>'; 215 230 } 216 231 ?> wp-email/trunk/readme.html
r36851 r39610 292 292 <li>NEW: Changed wp-email-popup.php To email-popup.php</li> 293 293 <li>NEW: Use number_format_i18n() Instead</li> 294 <li>NEW: Show 'Remarks' In 'WP-Admin -> E-Mail -> E-Mail Logs' Page By Default. See Usage Tab On How To Hide It.</li> 294 295 </ul> 295 296 </li> … … 599 600 </li> 600 601 </ul> 602 <div class="SubSubTitle">To Hide Remarks When Viewing Email Logs In WP-Admin</div> 603 <ol> 604 <li> 605 Open <strong>wp-email.php</strong> 606 </li> 607 <li> 608 Find: 609 <blockquote> 610 define('EMAIL_SHOW_REMARKS', true); 611 </blockquote> 612 </li> 613 <li> 614 Replace: 615 <blockquote> 616 define('EMAIL_SHOW_REMARKS', false); 617 </blockquote> 618 </li> 619 </ol> 601 620 <div class="SubSubTitle">Note</div> 602 621 <ul> wp-email/trunk/wp-email.php
r38496 r39610 27 27 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 28 28 */ 29 30 31 ### Define: Show Email Remarks In Logs? 32 define('EMAIL_SHOW_REMARKS', true); 29 33 30 34 wp-email/trunk/wp-email.pot
r38496 r39610 2 2 msgstr "" 3 3 "Project-Id-Version: WP-EMail 2.30\n" 4 "POT-Creation-Date: \n" 5 "PO-Revision-Date: 2008-04-06 03:17+0800\n" 6 "Last-Translator: Lester 'GaMerZ' Chan <gamerz84@hotmail.com>\n" 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2008-04-11 02:13+0800\n" 6 "PO-Revision-Date: 2008-04-11 02:13+0800\n" 7 "Last-Translator: Lester Chan <lesterchan@gmail.com>\n" 7 8 "Language-Team: Lester Chan <lesterchan@gmail.com>\n" 8 9 "MIME-Version: 1.0\n" 9 "Content-Type: text/plain; charset= utf-8\n"10 "Content-Type: text/plain; charset=UTF-8\n" 10 11 "Content-Transfer-Encoding: 8bit\n" 11 12 "X-Poedit-Language: English\n" … … 16 17 17 18 #: email-manager.php:54 18 #: email-manager.php:17 319 #: email-manager.php:2 8219 #: email-manager.php:179 20 #: email-manager.php:297 20 21 msgid "ID" 21 22 msgstr "" 22 23 23 24 #: email-manager.php:58 24 #: email-manager.php:2 8325 #: email-manager.php:298 25 26 msgid "From Name" 26 27 msgstr "" 27 28 28 29 #: email-manager.php:62 29 #: email-manager.php:2 8430 #: email-manager.php:299 30 31 msgid "From E-Mail" 31 32 msgstr "" 32 33 33 34 #: email-manager.php:66 34 #: email-manager.php: 28535 #: email-manager.php:300 35 36 msgid "To Name" 36 37 msgstr "" 37 38 38 39 #: email-manager.php:70 39 #: email-manager.php: 28640 #: email-manager.php:301 40 41 msgid "To E-Mail" 41 42 msgstr "" 42 43 43 44 #: email-manager.php:74 44 #: email-manager.php: 28845 #: email-manager.php:303 45 46 msgid "Post ID" 46 47 msgstr "" 47 48 48 49 #: email-manager.php:78 49 #: email-manager.php:1 7850 #: email-manager.php: 28950 #: email-manager.php:189 51 #: email-manager.php:304 51 52 msgid "Post Title" 52 53 msgstr "" 53 54 54 55 #: email-manager.php:82 55 #: email-manager.php: 29056 #: email-manager.php:305 56 57 msgid "IP" 57 58 msgstr "" 58 59 59 60 #: email-manager.php:86 60 #: email-manager.php: 29161 #: email-manager.php:306 61 62 msgid "Host" 62 63 msgstr "" 63 64 64 65 #: email-manager.php:90 65 #: email-manager.php:1 7966 #: email-manager.php: 29266 #: email-manager.php:190 67 #: email-manager.php:307 67 68 msgid "Status" 68 69 msgstr "" 69 70 70 71 #: email-manager.php:95 71 #: email-manager.php: 28772 #: email-manager.php:302 72 73 msgid "Date" 73 74 msgstr "" 74 75 75 76 #: email-manager.php:103 76 #: email-manager.php: 29677 #: email-manager.php:311 77 78 msgid "Ascending" 78 79 msgstr "" 79 80 80 81 #: email-manager.php:108 81 #: email-manager.php: 29782 #: email-manager.php:312 82 83 msgid "Descending" 83 84 msgstr "" … … 92 93 93 94 #: email-manager.php:126 94 #: wp-email.php:52 395 #: wp-email.php:66 096 #: wp-email.php:95 397 #: wp-email.php:99 098 #: wp-email.php:120 195 #: wp-email.php:527 96 #: wp-email.php:664 97 #: wp-email.php:957 98 #: wp-email.php:994 99 #: wp-email.php:1205 99 100 msgid "Success" 100 101 msgstr "" 101 102 102 103 #: email-manager.php:127 103 #: wp-email.php:67 4104 #: wp-email.php:96 5105 #: wp-email.php:120 2104 #: wp-email.php:678 105 #: wp-email.php:969 106 #: wp-email.php:1206 106 107 msgid "Failed" 107 108 msgstr "" … … 121 122 msgstr "" 122 123 123 #: email-manager.php:1 74124 #: email-manager.php:180 124 125 msgid "From" 125 126 msgstr "" 126 127 127 #: email-manager.php:1 75128 #: email-manager.php:181 128 129 msgid "To" 129 130 msgstr "" 130 131 131 #: email-manager.php:1 76132 #: email-manager.php:182 132 133 msgid "Date / Time" 133 134 msgstr "" 134 135 135 #: email-manager.php:1 77136 #: email-manager.php:183 136 137 msgid "IP / Host" 137 138 msgstr "" 138 139 139 #: email-manager.php:198 140 #: email-manager.php:186 141 msgid "Remarks" 142 msgstr "" 143 144 #: email-manager.php:210 140 145 #, php-format 141 146 msgid "%s @ %s" 142 147 msgstr "" 143 148 144 #: email-manager.php:2 14149 #: email-manager.php:229 145 150 msgid "No E-Mail Logs Found" 146 151 msgstr "" 147 152 148 #: email-manager.php:2 28153 #: email-manager.php:243 149 154 msgid "Previous Page" 150 155 msgstr "" 151 156 152 #: email-manager.php:2 37157 #: email-manager.php:252 153 158 msgid "Next Page" 154 159 msgstr "" 155 160 156 #: email-manager.php:2 46161 #: email-manager.php:261 157 162 msgid "Pages" 158 163 msgstr "" 159 164 160 #: email-manager.php:2 49165 #: email-manager.php:264 161 166 msgid "Go to First Page" 162 167 msgstr "" 163 168 164 #: email-manager.php:2 49169 #: email-manager.php:264 165 170 msgid "First" 166 171 msgstr "" 167 172 168 #: email-manager.php:2 52169 #: email-manager.php:2 64173 #: email-manager.php:267 174 #: email-manager.php:279 170 175 msgid "Go to Page" 171 176 msgstr "" 172 177 173 #: email-manager.php:2 59178 #: email-manager.php:274 174 179 #: wp-email-widget.php:84 175 180 msgid "Page" 176 181 msgstr "" 177 182 178 #: email-manager.php:2 67183 #: email-manager.php:282 179 184 msgid "Go to Last Page" 180 185 msgstr "" 181 186 182 #: email-manager.php:2 67187 #: email-manager.php:282 183 188 msgid "Last" 184 189 msgstr "" 185 190 186 #: email-manager.php:2 80191 #: email-manager.php:295 187 192 msgid "Sort Options:" 188 193 msgstr "" 189 194 190 #: email-manager.php:3 04191 #: email-manager.php:3 06195 #: email-manager.php:319 196 #: email-manager.php:321 192 197 msgid "Per Page" 193 198 msgstr "" 194 199 195 #: email-manager.php:3 11200 #: email-manager.php:326 196 201 msgid "Sort" 197 202 msgstr "" 198 203 199 #: email-manager.php:3 18204 #: email-manager.php:333 200 205 msgid "E-Mail Logs Stats" 201 206 msgstr "" 202 207 203 #: email-manager.php:3 22208 #: email-manager.php:337 204 209 msgid "Total E-Mails:" 205 210 msgstr "" 206 211 207 #: email-manager.php:3 26212 #: email-manager.php:341 208 213 msgid "Total E-Mail Sent:" 209 214 msgstr "" 210 215 211 #: email-manager.php:3 30216 #: email-manager.php:345 212 217 msgid "Total E-Mail Failed:" 213 218 msgstr "" 214 219 215 #: email-manager.php:3 39220 #: email-manager.php:354 216 221 msgid "Delete E-Mail Logs" 217 222 msgstr "" 218 223 219 #: email-manager.php:3 43224 #: email-manager.php:358 220 225 msgid "Are You Sure You Want To Delete All E-Mail Logs?" 221 226 msgstr "" 222 227 223 #: email-manager.php:3 45228 #: email-manager.php:360 224 229 msgid "" 225 230 "You Are About To Delete All E-Mail Logs\\n" … … 306 311 307 312 #: email-options.php:122 308 #: wp-email.php:12 79313 #: wp-email.php:1283 309 314 msgid "E-Mail '%EMAIL_POST_TITLE%' To A Friend" 310 315 msgstr "" 311 316 312 317 #: email-options.php:125 313 #: wp-email.php:128 0318 #: wp-email.php:1284 314 319 msgid "Email a copy of <strong>'%EMAIL_POST_TITLE%'</strong> to a friend" 315 320 msgstr "" 316 321 317 322 #: email-options.php:128 318 #: wp-email.php:125 4323 #: wp-email.php:1258 319 324 msgid "Recommended Article By %EMAIL_YOUR_NAME%: %EMAIL_POST_TITLE%" 320 325 msgstr "" … … 344 349 345 350 #: email-options.php:137 346 #: wp-email.php:126 5351 #: wp-email.php:1269 347 352 msgid "Back to %EMAIL_POST_TITLE%" 348 353 msgstr "" 349 354 350 355 #: email-options.php:140 351 #: wp-email.php:12 66356 #: wp-email.php:1270 352 357 msgid "An error has occurred when trying to send this email: " 353 358 msgstr "" 354 359 355 360 #: email-options.php:143 356 #: wp-email.php:12 67361 #: wp-email.php:1271 357 362 msgid "An error has occurred: " 358 363 msgstr "" 359 364 360 365 #: email-options.php:166 361 #: wp-email.php: 57366 #: wp-email.php:61 362 367 msgid "E-Mail Options" 363 368 msgstr "" … … 729 734 #: email-uninstall.php:81 730 735 #: email-uninstall.php:91 731 #: wp-email.php: 58736 #: wp-email.php:62 732 737 msgid "Uninstall WP-EMail" 733 738 msgstr "" … … 806 811 msgstr "" 807 812 808 #: wp-email.php:5 3809 #: wp-email.php:34 0813 #: wp-email.php:57 814 #: wp-email.php:344 810 815 msgid "E-Mail" 811 816 msgstr "" 812 817 813 #: wp-email.php: 56818 #: wp-email.php:60 814 819 msgid "Manage E-Mail" 815 820 msgstr "" 816 821 817 #: wp-email.php:15 1822 #: wp-email.php:155 818 823 msgid "The Following Error Occurs:" 819 824 msgstr "" 820 825 821 #: wp-email.php:15 2826 #: wp-email.php:156 822 827 msgid "- Your Name is empty/invalid" 823 828 msgstr "" 824 829 825 #: wp-email.php:15 3830 #: wp-email.php:157 826 831 msgid "- Your Email is empty/invalid" 827 832 msgstr "" 828 833 829 #: wp-email.php:15 4834 #: wp-email.php:158 830 835 msgid "- Your Remarks is invalid" 831 836 msgstr "" 832 837 833 #: wp-email.php:15 5838 #: wp-email.php:159 834 839 msgid "- Friend Name(s) is empty" 835 840 msgstr "" 836 841 837 #: wp-email.php:1 56842 #: wp-email.php:160 838 843 msgid "- Friend Name is empty/invalid:" 839 844 msgstr "" 840 845 841 #: wp-email.php:1 57846 #: wp-email.php:161 842 847 #, php-format 843 848 msgid "- Maximum %s Friend Name(s) allowed" 844 849 msgstr "" 845 850 846 #: wp-email.php:1 58851 #: wp-email.php:162 847 852 msgid "- Friend Email(s) is empty" 848 853 msgstr "" 849 854 850 #: wp-email.php:1 59855 #: wp-email.php:163 851 856 msgid "- Friend Email is invalid:" 852 857 msgstr "" 853 858 854 #: wp-email.php:16 0859 #: wp-email.php:164 855 860 #, php-format 856 861 msgid "- Maximum %s Friend Email(s) allowed" 857 862 msgstr "" 858 863 859 #: wp-email.php:16 1864 #: wp-email.php:165 860 865 msgid "- Friend Name(s) count does not tally with Friend Email(s) count" 861 866 msgstr "" 862 867 863 #: wp-email.php:16 2868 #: wp-email.php:166 864 869 msgid "- Image Verification is empty" 865 870 msgstr "" 866 871 867 #: wp-email.php:2 88872 #: wp-email.php:292 868 873 msgid "Note: There is an email link embedded within this post, please visit this post to email it." 869 874 msgstr "" 870 875 871 #: wp-email.php:3 59876 #: wp-email.php:363 872 877 #, php-format 873 878 msgid "Protected: %s" 874 879 msgstr "" 875 880 876 #: wp-email.php:36 1881 #: wp-email.php:365 877 882 #, php-format 878 883 msgid "Private: %s" 879 884 msgstr "" 880 885 881 #: wp-email.php:4 28886 #: wp-email.php:432 882 887 msgid "Password Protected Post" 883 888 msgstr "" 884 889 885 #: wp-email.php:63 2890 #: wp-email.php:636 886 891 #, php-format 887 892 msgid "Separate multiple entries with a comma. Maximum %s entries." 888 893 msgstr "" 889 894 890 #: wp-email.php:70 1891 #: wp-email.php:7 07895 #: wp-email.php:705 896 #: wp-email.php:711 892 897 msgid "emails" 893 898 msgstr "" 894 899 895 #: wp-email.php:71 1896 #: wp-email.php:88 2897 #: wp-email.php:96 4900 #: wp-email.php:715 901 #: wp-email.php:886 902 #: wp-email.php:968 898 903 msgid "N/A" 899 904 msgstr "" 900 905 901 #: wp-email.php:79 4906 #: wp-email.php:798 902 907 msgid "Your Name is empty" 903 908 msgstr "" 904 909 905 #: wp-email.php: 797910 #: wp-email.php:801 906 911 msgid "Your Name is invalid" 907 912 msgstr "" 908 913 909 #: wp-email.php:80 3914 #: wp-email.php:807 910 915 msgid "Your Email is empty" 911 916 msgstr "" 912 917 913 #: wp-email.php:8 06918 #: wp-email.php:810 914 919 msgid "Your Email is invalid" 915 920 msgstr "" 916 921 917 #: wp-email.php:81 2922 #: wp-email.php:816 918 923 msgid "Your Remarks is invalid" 919 924 msgstr "" 920 925 921 #: wp-email.php:8 18926 #: wp-email.php:822 922 927 msgid "Friend Name(s) is empty" 923 928 msgstr "" 924 929 925 #: wp-email.php:82 4930 #: wp-email.php:828 926 931 #, php-format 927 932 msgid "Friend Name is empty: %s" 928 933 msgstr "" 929 934 930 #: wp-email.php:8 26935 #: wp-email.php:830 931 936 #, php-format 932 937 msgid "Friend Name is invalid: %s" 933 938 msgstr "" 934 939 935 #: wp-email.php:84 0940 #: wp-email.php:844 936 941 msgid "Friend Email(s) is empty" 937 942 msgstr "" 938 943 939 #: wp-email.php:8 46944 #: wp-email.php:850 940 945 #, php-format 941 946 msgid "Friend Email is empty: %s" 942 947 msgstr "" 943 948 944 #: wp-email.php:8 48949 #: wp-email.php:852 945 950 #, php-format 946 951 msgid "Friend Email is invalid: %s" 947 952 msgstr "" 948 953 949 #: wp-email.php:86 1954 #: wp-email.php:865 950 955 #, php-format 951 956 msgid "Maximum %s Friend(s) allowed" 952 957 msgstr "" 953 958 954 #: wp-email.php:86 5959 #: wp-email.php:869 955 960 msgid "Friend Name(s) count does not tally with Friend Email(s) count" 956 961 msgstr "" 957 962 958 #: wp-email.php:87 2963 #: wp-email.php:876 959 964 msgid "Image Verification is empty" 960 965 msgstr "" 961 966 962 #: wp-email.php:87 5967 #: wp-email.php:879 963 968 msgid "Image Verification failed" 964 969 msgstr "" 965 970 966 #: wp-email.php:10 57971 #: wp-email.php:1061 967 972 msgid "* Required Field" 968 973 msgstr "" 969 974 970 #: wp-email.php:106 0975 #: wp-email.php:1064 971 976 msgid "Your Name: *" 972 977 msgstr "" 973 978 974 #: wp-email.php:10 66979 #: wp-email.php:1070 975 980 msgid "Your E-Mail: *" 976 981 msgstr "" 977 982 978 #: wp-email.php:107 2983 #: wp-email.php:1076 979 984 msgid "Your Remark:" 980 985 msgstr "" 981 986 982 #: wp-email.php:10 78987 #: wp-email.php:1082 983 988 msgid "Friend's Name: *" 984 989 msgstr "" 985 990 986 #: wp-email.php:108 3991 #: wp-email.php:1087 987 992 msgid "Friend's E-Mail: *" 988 993 msgstr "" 989 994 990 #: wp-email.php:10 88995 #: wp-email.php:1092 991 996 msgid "Image Verification: *" 992 997 msgstr "" 993 998 994 #: wp-email.php:10 89999 #: wp-email.php:1093 995 1000 msgid "E-Mail Image Verification" 996 1001 msgstr "" 997 1002 998 #: wp-email.php:109 21003 #: wp-email.php:1096 999 1004 msgid " Mail It! " 1000 1005 msgstr "" 1001 1006 1002 #: wp-email.php:1 0981007 #: wp-email.php:1102 1003 1008 #, php-format 1004 1009 msgid "Please wait for <strong>%s Minutes</strong> before sending the next article." 1005 1010 msgstr "" 1006 1011 1007 #: wp-email.php:110 01012 #: wp-email.php:1104 1008 1013 msgid "Loading" 1009 1014 msgstr "" 1010 1015 1011 #: wp-email.php:116 31012 #: wp-email.php:116 51013 #: wp-email.php:1 1981016 #: wp-email.php:1167 1017 #: wp-email.php:1169 1018 #: wp-email.php:1202 1014 1019 msgid "WP-EMail" 1015 1020 msgstr "" 1016 1021 1017 #: wp-email.php:11 761018 #: wp-email.php:11 781022 #: wp-email.php:1180 1023 #: wp-email.php:1182 1019 1024 msgid "Most Emailed Posts" 1020 1025 msgstr "" 1021 1026 1022 #: wp-email.php:120 01027 #: wp-email.php:1204 1023 1028 msgid "emails were sent." 1024 1029 msgstr "" 1025 1030 1026 #: wp-email.php:120 11031 #: wp-email.php:1205 1027 1032 msgid "emails were sent successfully." 1028 1033 msgstr "" 1029 1034 1030 #: wp-email.php:120 21035 #: wp-email.php:1206 1031 1036 msgid "emails failed to send." 1032 1037 msgstr "" 1033 1038 1034 #: wp-email.php:121 41039 #: wp-email.php:1218 1035 1040 msgid "Most Emailed Post" 1036 1041 msgstr "" 1037 1042 1038 #: wp-email.php:125 51043 #: wp-email.php:1259 1039 1044 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>" 1040 1045 msgstr "" 1041 1046 1042 #: wp-email.php:12561043 msgid "Hi %EMAIL_FRIEND_NAME%,"1044 msgstr ""1045 1046 #: wp-email.php:12561047 #: wp-email.php:12581048 1047 #: wp-email.php:1260 1049 #: wp-email.php:12611050 #: wp-email.php:12621051 #: wp-email.php:12631052 msgid "\n"1053 msgstr ""1054 1055 #: wp-email.php:12571056 msgid "Your friend, %EMAIL_YOUR_NAME%, has recommended this article entitled '%EMAIL_POST_TITLE%' to you."1057 msgstr ""1058 1059 #: wp-email.php:12571060 #: wp-email.php:12591061 1048 msgid "" 1049 "Hi %EMAIL_FRIEND_NAME%,\n" 1050 "Your friend, %EMAIL_YOUR_NAME%, has recommended this article entitled '%EMAIL_POST_TITLE%' to you.\n" 1062 1051 "\n" 1052 "Here is his/her remarks:\n" 1053 "%EMAIL_YOUR_REMARKS%\n" 1063 1054 "\n" 1064 msgstr "" 1065 1066 #: wp-email.php:1258 1067 msgid "Here is his/her remarks:" 1068 msgstr "" 1069 1070 #: wp-email.php:1259 1071 msgid "%EMAIL_YOUR_REMARKS%" 1072 msgstr "" 1073 1074 #: wp-email.php:1260 1075 msgid "%EMAIL_POST_TITLE%" 1076 msgstr "" 1077 1078 #: wp-email.php:1261 1079 msgid "Posted By %EMAIL_POST_AUTHOR% On %EMAIL_POST_DATE% In %EMAIL_POST_CATEGORY%" 1080 msgstr "" 1081 1082 #: wp-email.php:1262 1083 msgid "%EMAIL_POST_CONTENT%" 1084 msgstr "" 1085 1086 #: wp-email.php:1263 1087 msgid "Article taken from %EMAIL_BLOG_NAME% - %EMAIL_BLOG_URL%" 1088 msgstr "" 1089 1090 #: wp-email.php:1264 1091 msgid "URL to article: %EMAIL_PERMALINK%" 1092 msgstr "" 1093 1094 #: wp-email.php:1265 1055 "%EMAIL_POST_TITLE%\n" 1056 "Posted By %EMAIL_POST_AUTHOR% On %EMAIL_POST_DATE% In %EMAIL_POST_CATEGORY%\n" 1057 "%EMAIL_POST_CONTENT%\n" 1058 "Article taken from %EMAIL_BLOG_NAME% - %EMAIL_BLOG_URL%\n" 1059 "URL to article: %EMAIL_PERMALINK%" 1060 msgstr "" 1061 1062 #: wp-email.php:1269 1095 1063 msgid "Article: <strong>%EMAIL_POST_TITLE%</strong> has been sent to <strong>%EMAIL_FRIEND_NAME% (%EMAIL_FRIEND_EMAIL%)</strong></p><p>« <a href=\"%EMAIL_PERMALINK%\">" 1096 1064 msgstr "" 1097 1065 1098 #: wp-email.php:1265 1099 msgid "</a></p>" 1100 msgstr "" 1101 1102 #: wp-email.php:1274 1066 #: wp-email.php:1278 1103 1067 msgid "Email This Post" 1104 1068 msgstr "" 1105 1069 1106 #: wp-email.php:127 41070 #: wp-email.php:1278 1107 1071 msgid "Email This Page" 1108 1072 msgstr ""
