Changeset 39610

Show
Ignore:
Timestamp:
04/10/08 18:18:07 (3 months ago)
Author:
GamerZ
Message:

Added Back Remarks Column

Files:

Legend:

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

    r36851 r39610  
    168168      <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> 
    169169      <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      ?>     
    170176      <table class="widefat"> 
    171177            <thead> 
    172178            <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> 
    180191            </tr> 
    181192      </thead> 
     
    195206                        $email_friendemail = stripslashes($email_log->email_friendemail); 
    196207                        $email_postid = intval($email_log->email_postid); 
     208                        $email_remarks = htmlspecialchars(stripslashes($email_log->email_yourremarks)); 
    197209                        $email_posttitle = htmlspecialchars(stripslashes($email_log->email_posttitle)); 
    198210                        $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)); 
     
    206218                        echo "<td>$email_date</td>\n"; 
    207219                        echo "<td>$email_ip<br />$email_host</td>\n"; 
     220                        if(EMAIL_SHOW_REMARKS) { 
     221                              echo '<td>'.$email_remarks.'</td>'; 
     222                        } 
    208223                        echo "<td>$email_posttitle</td>\n"; 
    209224                        echo "<td>$email_status</td>\n"; 
     
    212227                  } 
    213228            } 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>'; 
    215230            } 
    216231      ?> 
  • wp-email/trunk/readme.html

    r36851 r39610  
    292292                                    <li>NEW: Changed wp-email-popup.php To email-popup.php</li> 
    293293                                    <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> 
    294295                              </ul> 
    295296                        </li> 
     
    599600                        </li> 
    600601                  </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> 
    601620                  <div class="SubSubTitle">Note</div> 
    602621                  <ul> 
  • wp-email/trunk/wp-email.php

    r38496 r39610  
    2727    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
    2828*/ 
     29 
     30 
     31### Define: Show Email Remarks In Logs? 
     32define('EMAIL_SHOW_REMARKS', true); 
    2933 
    3034 
  • wp-email/trunk/wp-email.pot

    r38496 r39610  
    22msgstr "" 
    33"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" 
    78"Language-Team: Lester Chan <lesterchan@gmail.com>\n" 
    89"MIME-Version: 1.0\n" 
    9 "Content-Type: text/plain; charset=utf-8\n" 
     10"Content-Type: text/plain; charset=UTF-8\n" 
    1011"Content-Transfer-Encoding: 8bit\n" 
    1112"X-Poedit-Language: English\n" 
     
    1617 
    1718#: email-manager.php:54 
    18 #: email-manager.php:173 
    19 #: email-manager.php:282 
     19#: email-manager.php:179 
     20#: email-manager.php:297 
    2021msgid "ID" 
    2122msgstr "" 
    2223 
    2324#: email-manager.php:58 
    24 #: email-manager.php:283 
     25#: email-manager.php:298 
    2526msgid "From Name" 
    2627msgstr "" 
    2728 
    2829#: email-manager.php:62 
    29 #: email-manager.php:284 
     30#: email-manager.php:299 
    3031msgid "From E-Mail" 
    3132msgstr "" 
    3233 
    3334#: email-manager.php:66 
    34 #: email-manager.php:285 
     35#: email-manager.php:300 
    3536msgid "To Name" 
    3637msgstr "" 
    3738 
    3839#: email-manager.php:70 
    39 #: email-manager.php:286 
     40#: email-manager.php:301 
    4041msgid "To E-Mail" 
    4142msgstr "" 
    4243 
    4344#: email-manager.php:74 
    44 #: email-manager.php:288 
     45#: email-manager.php:303 
    4546msgid "Post ID" 
    4647msgstr "" 
    4748 
    4849#: email-manager.php:78 
    49 #: email-manager.php:178 
    50 #: email-manager.php:289 
     50#: email-manager.php:189 
     51#: email-manager.php:304 
    5152msgid "Post Title" 
    5253msgstr "" 
    5354 
    5455#: email-manager.php:82 
    55 #: email-manager.php:290 
     56#: email-manager.php:305 
    5657msgid "IP" 
    5758msgstr "" 
    5859 
    5960#: email-manager.php:86 
    60 #: email-manager.php:291 
     61#: email-manager.php:306 
    6162msgid "Host" 
    6263msgstr "" 
    6364 
    6465#: email-manager.php:90 
    65 #: email-manager.php:179 
    66 #: email-manager.php:292 
     66#: email-manager.php:190 
     67#: email-manager.php:307 
    6768msgid "Status" 
    6869msgstr "" 
    6970 
    7071#: email-manager.php:95 
    71 #: email-manager.php:287 
     72#: email-manager.php:302 
    7273msgid "Date" 
    7374msgstr "" 
    7475 
    7576#: email-manager.php:103 
    76 #: email-manager.php:296 
     77#: email-manager.php:311 
    7778msgid "Ascending" 
    7879msgstr "" 
    7980 
    8081#: email-manager.php:108 
    81 #: email-manager.php:297 
     82#: email-manager.php:312 
    8283msgid "Descending" 
    8384msgstr "" 
     
    9293 
    9394#: email-manager.php:126 
    94 #: wp-email.php:523 
    95 #: wp-email.php:660 
    96 #: wp-email.php:953 
    97 #: wp-email.php:990 
    98 #: wp-email.php:1201 
     95#: wp-email.php:527 
     96#: wp-email.php:664 
     97#: wp-email.php:957 
     98#: wp-email.php:994 
     99#: wp-email.php:1205 
    99100msgid "Success" 
    100101msgstr "" 
    101102 
    102103#: email-manager.php:127 
    103 #: wp-email.php:674 
    104 #: wp-email.php:965 
    105 #: wp-email.php:1202 
     104#: wp-email.php:678 
     105#: wp-email.php:969 
     106#: wp-email.php:1206 
    106107msgid "Failed" 
    107108msgstr "" 
     
    121122msgstr "" 
    122123 
    123 #: email-manager.php:174 
     124#: email-manager.php:180 
    124125msgid "From" 
    125126msgstr "" 
    126127 
    127 #: email-manager.php:175 
     128#: email-manager.php:181 
    128129msgid "To" 
    129130msgstr "" 
    130131 
    131 #: email-manager.php:176 
     132#: email-manager.php:182 
    132133msgid "Date / Time" 
    133134msgstr "" 
    134135 
    135 #: email-manager.php:177 
     136#: email-manager.php:183 
    136137msgid "IP / Host" 
    137138msgstr "" 
    138139 
    139 #: email-manager.php:198 
     140#: email-manager.php:186 
     141msgid "Remarks" 
     142msgstr "" 
     143 
     144#: email-manager.php:210 
    140145#, php-format 
    141146msgid "%s @ %s" 
    142147msgstr "" 
    143148 
    144 #: email-manager.php:214 
     149#: email-manager.php:229 
    145150msgid "No E-Mail Logs Found" 
    146151msgstr "" 
    147152 
    148 #: email-manager.php:228 
     153#: email-manager.php:243 
    149154msgid "Previous Page" 
    150155msgstr "" 
    151156 
    152 #: email-manager.php:237 
     157#: email-manager.php:252 
    153158msgid "Next Page" 
    154159msgstr "" 
    155160 
    156 #: email-manager.php:246 
     161#: email-manager.php:261 
    157162msgid "Pages" 
    158163msgstr "" 
    159164 
    160 #: email-manager.php:249 
     165#: email-manager.php:264 
    161166msgid "Go to First Page" 
    162167msgstr "" 
    163168 
    164 #: email-manager.php:249 
     169#: email-manager.php:264 
    165170msgid "First" 
    166171msgstr "" 
    167172 
    168 #: email-manager.php:252 
    169 #: email-manager.php:264 
     173#: email-manager.php:267 
     174#: email-manager.php:279 
    170175msgid "Go to Page" 
    171176msgstr "" 
    172177 
    173 #: email-manager.php:259 
     178#: email-manager.php:274 
    174179#: wp-email-widget.php:84 
    175180msgid "Page" 
    176181msgstr "" 
    177182 
    178 #: email-manager.php:267 
     183#: email-manager.php:282 
    179184msgid "Go to Last Page" 
    180185msgstr "" 
    181186 
    182 #: email-manager.php:267 
     187#: email-manager.php:282 
    183188msgid "Last" 
    184189msgstr "" 
    185190 
    186 #: email-manager.php:280 
     191#: email-manager.php:295 
    187192msgid "Sort Options:" 
    188193msgstr "" 
    189194 
    190 #: email-manager.php:304 
    191 #: email-manager.php:306 
     195#: email-manager.php:319 
     196#: email-manager.php:321 
    192197msgid "Per Page" 
    193198msgstr "" 
    194199 
    195 #: email-manager.php:311 
     200#: email-manager.php:326 
    196201msgid "Sort" 
    197202msgstr "" 
    198203 
    199 #: email-manager.php:318 
     204#: email-manager.php:333 
    200205msgid "E-Mail Logs Stats" 
    201206msgstr "" 
    202207 
    203 #: email-manager.php:322 
     208#: email-manager.php:337 
    204209msgid "Total E-Mails:" 
    205210msgstr "" 
    206211 
    207 #: email-manager.php:326 
     212#: email-manager.php:341 
    208213msgid "Total E-Mail Sent:" 
    209214msgstr "" 
    210215 
    211 #: email-manager.php:330 
     216#: email-manager.php:345 
    212217msgid "Total E-Mail Failed:" 
    213218msgstr "" 
    214219 
    215 #: email-manager.php:339 
     220#: email-manager.php:354 
    216221msgid "Delete E-Mail Logs" 
    217222msgstr "" 
    218223 
    219 #: email-manager.php:343 
     224#: email-manager.php:358 
    220225msgid "Are You Sure You Want To Delete All E-Mail Logs?" 
    221226msgstr "" 
    222227 
    223 #: email-manager.php:345 
     228#: email-manager.php:360 
    224229msgid "" 
    225230"You Are About To Delete All E-Mail Logs\\n" 
     
    306311 
    307312#: email-options.php:122 
    308 #: wp-email.php:1279 
     313#: wp-email.php:1283 
    309314msgid "E-Mail '%EMAIL_POST_TITLE%' To A Friend" 
    310315msgstr "" 
    311316 
    312317#: email-options.php:125 
    313 #: wp-email.php:1280 
     318#: wp-email.php:1284 
    314319msgid "Email a copy of <strong>'%EMAIL_POST_TITLE%'</strong> to a friend" 
    315320msgstr "" 
    316321 
    317322#: email-options.php:128 
    318 #: wp-email.php:1254 
     323#: wp-email.php:1258 
    319324msgid "Recommended Article By %EMAIL_YOUR_NAME%: %EMAIL_POST_TITLE%" 
    320325msgstr "" 
     
    344349 
    345350#: email-options.php:137 
    346 #: wp-email.php:1265 
     351#: wp-email.php:1269 
    347352msgid "Back to %EMAIL_POST_TITLE%" 
    348353msgstr "" 
    349354 
    350355#: email-options.php:140 
    351 #: wp-email.php:1266 
     356#: wp-email.php:1270 
    352357msgid "An error has occurred when trying to send this email: " 
    353358msgstr "" 
    354359 
    355360#: email-options.php:143 
    356 #: wp-email.php:1267 
     361#: wp-email.php:1271 
    357362msgid "An error has occurred: " 
    358363msgstr "" 
    359364 
    360365#: email-options.php:166 
    361 #: wp-email.php:57 
     366#: wp-email.php:61 
    362367msgid "E-Mail Options" 
    363368msgstr "" 
     
    729734#: email-uninstall.php:81 
    730735#: email-uninstall.php:91 
    731 #: wp-email.php:58 
     736#: wp-email.php:62 
    732737msgid "Uninstall WP-EMail" 
    733738msgstr "" 
     
    806811msgstr "" 
    807812 
    808 #: wp-email.php:53 
    809 #: wp-email.php:340 
     813#: wp-email.php:57 
     814#: wp-email.php:344 
    810815msgid "E-Mail" 
    811816msgstr "" 
    812817 
    813 #: wp-email.php:56 
     818#: wp-email.php:60 
    814819msgid "Manage E-Mail" 
    815820msgstr "" 
    816821 
    817 #: wp-email.php:151 
     822#: wp-email.php:155 
    818823msgid "The Following Error Occurs:" 
    819824msgstr "" 
    820825 
    821 #: wp-email.php:152 
     826#: wp-email.php:156 
    822827msgid "- Your Name is empty/invalid" 
    823828msgstr "" 
    824829 
    825 #: wp-email.php:153 
     830#: wp-email.php:157 
    826831msgid "- Your Email is empty/invalid" 
    827832msgstr "" 
    828833 
    829 #: wp-email.php:154 
     834#: wp-email.php:158 
    830835msgid "- Your Remarks is invalid" 
    831836msgstr "" 
    832837 
    833 #: wp-email.php:155 
     838#: wp-email.php:159 
    834839msgid "- Friend Name(s) is empty" 
    835840msgstr "" 
    836841 
    837 #: wp-email.php:156 
     842#: wp-email.php:160 
    838843msgid "- Friend Name is empty/invalid:" 
    839844msgstr "" 
    840845 
    841 #: wp-email.php:157 
     846#: wp-email.php:161 
    842847#, php-format 
    843848msgid "- Maximum %s Friend Name(s) allowed" 
    844849msgstr "" 
    845850 
    846 #: wp-email.php:158 
     851#: wp-email.php:162 
    847852msgid "- Friend Email(s) is empty" 
    848853msgstr "" 
    849854 
    850 #: wp-email.php:159 
     855#: wp-email.php:163 
    851856msgid "- Friend Email is invalid:" 
    852857msgstr "" 
    853858 
    854 #: wp-email.php:160 
     859#: wp-email.php:164 
    855860#, php-format 
    856861msgid "- Maximum %s Friend Email(s) allowed" 
    857862msgstr "" 
    858863 
    859 #: wp-email.php:161 
     864#: wp-email.php:165 
    860865msgid "- Friend Name(s) count does not tally with Friend Email(s) count" 
    861866msgstr "" 
    862867 
    863 #: wp-email.php:162 
     868#: wp-email.php:166 
    864869msgid "- Image Verification is empty" 
    865870msgstr "" 
    866871 
    867 #: wp-email.php:288 
     872#: wp-email.php:292 
    868873msgid "Note: There is an email link embedded within this post, please visit this post to email it." 
    869874msgstr "" 
    870875 
    871 #: wp-email.php:359 
     876#: wp-email.php:363 
    872877#, php-format 
    873878msgid "Protected: %s" 
    874879msgstr "" 
    875880 
    876 #: wp-email.php:361 
     881#: wp-email.php:365 
    877882#, php-format 
    878883msgid "Private: %s" 
    879884msgstr "" 
    880885 
    881 #: wp-email.php:428 
     886#: wp-email.php:432 
    882887msgid "Password Protected Post" 
    883888msgstr "" 
    884889 
    885 #: wp-email.php:632 
     890#: wp-email.php:636 
    886891#, php-format 
    887892msgid "Separate multiple entries with a comma. Maximum %s entries." 
    888893msgstr "" 
    889894 
    890 #: wp-email.php:701 
    891 #: wp-email.php:707 
     895#: wp-email.php:705 
     896#: wp-email.php:711 
    892897msgid "emails" 
    893898msgstr "" 
    894899 
    895 #: wp-email.php:711 
    896 #: wp-email.php:882 
    897 #: wp-email.php:964 
     900#: wp-email.php:715 
     901#: wp-email.php:886 
     902#: wp-email.php:968 
    898903msgid "N/A" 
    899904msgstr "" 
    900905 
    901 #: wp-email.php:794 
     906#: wp-email.php:798 
    902907msgid "Your Name is empty" 
    903908msgstr "" 
    904909 
    905 #: wp-email.php:797 
     910#: wp-email.php:801 
    906911msgid "Your Name is invalid" 
    907912msgstr "" 
    908913 
    909 #: wp-email.php:803 
     914#: wp-email.php:807 
    910915msgid "Your Email is empty" 
    911916msgstr "" 
    912917 
    913 #: wp-email.php:806 
     918#: wp-email.php:810 
    914919msgid "Your Email is invalid" 
    915920msgstr "" 
    916921 
    917 #: wp-email.php:812 
     922#: wp-email.php:816 
    918923msgid "Your Remarks is invalid" 
    919924msgstr "" 
    920925 
    921 #: wp-email.php:818 
     926#: wp-email.php:822 
    922927msgid "Friend Name(s) is empty" 
    923928msgstr "" 
    924929 
    925 #: wp-email.php:824 
     930#: wp-email.php:828 
    926931#, php-format 
    927932msgid "Friend Name is empty: %s" 
    928933msgstr "" 
    929934 
    930 #: wp-email.php:826 
     935#: wp-email.php:830 
    931936#, php-format 
    932937msgid "Friend Name is invalid: %s" 
    933938msgstr "" 
    934939 
    935 #: wp-email.php:840 
     940#: wp-email.php:844 
    936941msgid "Friend Email(s) is empty" 
    937942msgstr "" 
    938943 
    939 #: wp-email.php:846 
     944#: wp-email.php:850 
    940945#, php-format 
    941946msgid "Friend Email is empty: %s" 
    942947msgstr "" 
    943948 
    944 #: wp-email.php:848 
     949#: wp-email.php:852 
    945950#, php-format 
    946951msgid "Friend Email is invalid: %s" 
    947952msgstr "" 
    948953 
    949 #: wp-email.php:861 
     954#: wp-email.php:865 
    950955#, php-format 
    951956msgid "Maximum %s Friend(s) allowed" 
    952957msgstr "" 
    953958 
    954 #: wp-email.php:865 
     959#: wp-email.php:869 
    955960msgid "Friend Name(s) count does not tally with Friend Email(s) count" 
    956961msgstr "" 
    957962 
    958 #: wp-email.php:872 
     963#: wp-email.php:876 
    959964msgid "Image Verification is empty" 
    960965msgstr "" 
    961966 
    962 #: wp-email.php:875 
     967#: wp-email.php:879 
    963968msgid "Image Verification failed" 
    964969msgstr "" 
    965970 
    966 #: wp-email.php:1057 
     971#: wp-email.php:1061 
    967972msgid "* Required Field" 
    968973msgstr "" 
    969974 
    970 #: wp-email.php:1060 
     975#: wp-email.php:1064 
    971976msgid "Your Name: *" 
    972977msgstr "" 
    973978 
    974 #: wp-email.php:1066 
     979#: wp-email.php:1070 
    975980msgid "Your E-Mail: *" 
    976981msgstr "" 
    977982 
    978 #: wp-email.php:1072 
     983#: wp-email.php:1076 
    979984msgid "Your Remark:" 
    980985msgstr "" 
    981986 
    982 #: wp-email.php:1078 
     987#: wp-email.php:1082 
    983988msgid "Friend's Name: *" 
    984989msgstr "" 
    985990 
    986 #: wp-email.php:1083 
     991#: wp-email.php:1087 
    987992msgid "Friend's E-Mail: *" 
    988993msgstr "" 
    989994 
    990 #: wp-email.php:1088 
     995#: wp-email.php:1092 
    991996msgid "Image Verification: *" 
    992997msgstr "" 
    993998 
    994 #: wp-email.php:1089 
     999#: wp-email.php:1093 
    9951000msgid "E-Mail Image Verification" 
    9961001msgstr "" 
    9971002 
    998 #: wp-email.php:1092 
     1003#: wp-email.php:1096 
    9991004msgid "     Mail It!     " 
    10001005msgstr "" 
    10011006 
    1002 #: wp-email.php:1098 
     1007#: wp-email.php:1102 
    10031008#, php-format 
    10041009msgid "Please wait for <strong>%s Minutes</strong> before sending the next article." 
    10051010msgstr "" 
    10061011 
    1007 #: wp-email.php:1100 
     1012#: wp-email.php:1104 
    10081013msgid "Loading" 
    10091014msgstr "" 
    10101015 
    1011 #: wp-email.php:1163 
    1012 #: wp-email.php:1165 
    1013 #: wp-email.php:1198 
     1016#: wp-email.php:1167 
     1017#: wp-email.php:1169 
     1018#: wp-email.php:1202 
    10141019msgid "WP-EMail" 
    10151020msgstr "" 
    10161021 
    1017 #: wp-email.php:1176 
    1018 #: wp-email.php:1178 
     1022#: wp-email.php:1180 
     1023#: wp-email.php:1182 
    10191024msgid "Most Emailed Posts" 
    10201025msgstr "" 
    10211026 
    1022 #: wp-email.php:1200 
     1027#: wp-email.php:1204 
    10231028msgid "emails were sent." 
    10241029msgstr "" 
    10251030 
    1026 #: wp-email.php:1201 
     1031#: wp-email.php:1205 
    10271032msgid "emails were sent successfully." 
    10281033msgstr "" 
    10291034 
    1030 #: wp-email.php:1202 
     1035#: wp-email.php:1206 
    10311036msgid "emails failed to send." 
    10321037msgstr "" 
    10331038 
    1034 #: wp-email.php:1214 
     1039#: wp-email.php:1218 
    10351040msgid "Most Emailed Post" 
    10361041msgstr "" 
    10371042 
    1038 #: wp-email.php:1255 
     1043#: wp-email.php:1259 
    10391044msgid "<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>" 
    10401045msgstr "" 
    10411046 
    1042 #: wp-email.php:1256 
    1043 msgid "Hi %EMAIL_FRIEND_NAME%," 
    1044 msgstr "" 
    1045  
    1046 #: wp-email.php:1256 
    1047 #: wp-email.php:1258 
    10481047#: wp-email.php:1260 
    1049 #: wp-email.php:1261 
    1050 #: wp-email.php:1262 
    1051 #: wp-email.php:1263 
    1052 msgid "\n" 
    1053 msgstr "" 
    1054  
    1055 #: wp-email.php:1257 
    1056 msgid "Your friend, %EMAIL_YOUR_NAME%, has recommended this article entitled '%EMAIL_POST_TITLE%' to you." 
    1057 msgstr "" 
    1058  
    1059 #: wp-email.php:1257 
    1060 #: wp-email.php:1259 
    10611048msgid "" 
     1049"Hi %EMAIL_FRIEND_NAME%,\n" 
     1050"Your friend, %EMAIL_YOUR_NAME%, has recommended this article entitled '%EMAIL_POST_TITLE%' to you.\n" 
    10621051"\n" 
     1052"Here is his/her remarks:\n" 
     1053"%EMAIL_YOUR_REMARKS%\n" 
    10631054"\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%" 
     1060msgstr "" 
     1061 
     1062#: wp-email.php:1269 
    10951063msgid "Article: <strong>%EMAIL_POST_TITLE%</strong> has been sent to <strong>%EMAIL_FRIEND_NAME% (%EMAIL_FRIEND_EMAIL%)</strong></p><p>&laquo; <a href=\"%EMAIL_PERMALINK%\">" 
    10961064msgstr "" 
    10971065 
    1098 #: wp-email.php:1265 
    1099 msgid "</a></p>" 
    1100 msgstr "" 
    1101  
    1102 #: wp-email.php:1274 
     1066#: wp-email.php:1278 
    11031067msgid "Email This Post" 
    11041068msgstr "" 
    11051069 
    1106 #: wp-email.php:1274 
     1070#: wp-email.php:1278 
    11071071msgid "Email This Page" 
    11081072msgstr ""