I need to translate emails from mandarin to english

i have found a new friend in china but she does not speak english so i need to translate what she has written & would also like my emails to be sent in mandarin..her native toungue..what is available for this to happen?

Hello,
Try use one addon:
*[https://addons.mozilla.org/thunderbird/search/?q=translate]

Similar Messages

  • I need to move email from windows notebook, outlook to mac mail on my new macbook pro

    i need to move email from windows notebook-outlook to mac
    mail? need help?

    Hi Linc, I started setting up my new computer a few months ago so don't remember the details.  I did not use migration assistant, nor do I wish to, I believe it was set up through icloud.   Now that I needed my calendar while doing taxes I discover there are no events for 2014 and earlier (except 2 oddly enough).  I do remember that iCloud instructions were not clear as to what would happen in the choices it gave.
    I copied my old user files over from my external back up after my old computer stopped working, was hoping I could put ical folders in the right place to be used by Calendar or import somehow.

  • Need to read Email from Lotusnotes and Outlook using Oracle

    Dear All,
    My database version Oracle 10.2
    I need to read Email from Lotusnotes and Outlook using Oracle.
    I have tried with below link
    http://sourceforge.net/projects/plsqlmailclient/The problem is i am getting some java error.
    Can anyone suggest me to proceed further.
    Cheers,
    San

    I am using the another function to read an email from pop3 server
    create or replace
    FUNCTION pop3 (
       username   VARCHAR2,
       PASSWORD   VARCHAR2,
       msgnum     NUMBER
       RETURN tstrings PIPELINED
    IS
       --POP3_SERVER             constant varchar2(19) := '127.0.0.1';
       pop3_server   CONSTANT VARCHAR2 (100)     := 'xxxxxx';
       pop3_port     CONSTANT NUMBER             := 110;
       --POP3_TIMEOUT            constant number := 10;
       pop3_ok       CONSTANT VARCHAR2 (10)      := '+OK';
       e_pop3_error           EXCEPTION;
       --E_READ_TIMEOUT  exception;
       --pragma exception_init( E_READ_TIMEOUT, -29276 );
       socket                 UTL_TCP.connection;
       line                   VARCHAR2 (30000);
       BYTES                  INTEGER;
       -- send a POP3 command
       -- (we expect each command to respond with a +OK)
       FUNCTION writetopop (command VARCHAR2)
          RETURN VARCHAR2
       IS
          len    INTEGER;
          resp   VARCHAR2 (30000);
       BEGIN
          len := UTL_TCP.write_line (socket, command);
          UTL_TCP.FLUSH (socket);
          -- using a hack to check the popd response
          len := UTL_TCP.read_line (socket, resp);
          IF SUBSTR (resp, 1, 3) != pop3_ok
         THEN
           RAISE e_pop3_error;
          END IF;
          RETURN (resp);
       END;
    BEGIN
    --UTL_TCP.CLOSE_CONNECTION (SOCKET);
       PIPE ROW ('pop3:' || pop3_server || ' port:' || pop3_port);
       -- Just to make sure there are no previously opened connections
       UTL_TCP.close_all_connections;
       -- open a socket connection to the POP3 server
       socket :=
          UTL_TCP.open_connection (remote_host      => pop3_server,
                                   remote_port      => pop3_port,
                                   --tx_timeout => POP3_TIMEOUT,
                                   CHARSET          => 'US7ASCII'
       -- read the server banner/response from the pop3 daemon
       PIPE ROW (UTL_TCP.get_line (socket));
       -- authenticate with the POP3 server using the USER and PASS commands
       PIPE ROW ('USER ' || username);
       PIPE ROW (writetopop ('USER ' || username));
       PIPE ROW ('PASS ' || PASSWORD);
       PIPE ROW (writetopop ('PASS ' || PASSWORD));
       -- retrieve the specific message
       PIPE ROW ('RETR ' || msgnum);
       PIPE ROW (writetopop ('RETR ' || msgnum));
       --PIPE ROW( 'LIST '||msgNum ); PIPE ROW( WriteToPop('LIST '||msgNum) );
       PIPE ROW ('*** START OF INTERNET MESSAGE BODY ***');
       LOOP
       dbms_output.put_line('entering');
          BYTES := UTL_TCP.available (socket);
         IF BYTES > 0
          THEN
             BYTES := UTL_TCP.read_line (socket, line);
             line := REPLACE (line, CHR (13) || CHR (10), '');
             -- WILL HAVE TO USE PLSQL FUNCTIONS (HAVE BOOKMARKED) TO GET THE MAIL
             -- IN THE PREFERRED FORMAT. CAN USE "REPLACE()"
             IF LENGTH (line) = 1 AND line = '.'
             THEN
                PIPE ROW ('*** END OF INTERNET MESSAGE BODY ***');
             ELSE
                PIPE ROW (line);
             end if;
         END IF;
          EXIT when length (LINE) = 1 and LINE = '.';
          -- PIPE ROW (line);
       END LOOP;
       --PIPE ROW( '*** END OF INTERNET MESSAGE BODY ***' );
       -- close connection
       PIPE ROW ('QUIT');
       PIPE ROW (writetopop ('QUIT'));
       UTL_TCP.CLOSE_CONNECTION (SOCKET);
    EXCEPTION
       WHEN e_pop3_error
       THEN
          PIPE ROW ('There are no mails !');
    END;I am getting the below output .
    21     pop3:sbssld1 port:110
    75     "+OK Lotus Notes POP3 server version Release 8.0.1 ready on SBSSLD1/SBPSS.
    47     USER [email protected]
    69     "+OK [email protected], your papers please.
    13     PASS password
    63     "+OK [email protected] has 1 message.
    6     RETR 1
    17     "+OK 1546 octets
    38     *** START OF INTERNET MESSAGE BODY ***
    9     Subject:
    48     X-KeepSent: A231D6D0:8485FE4B-65257AB1:0022E60F;
    23      type=4; name=$KeepSent
    46     To: [email protected]
    53     X-Mailer: Lotus Notes Release 8.0.1 February 07, 2008
    95     Message-ID: <[email protected]mbnpparibasfs.in>
    48     From: [email protected]
    36     Date: Fri, 9 Nov 2012 11:51:14 +0530
    90     X-MIMETrack: Serialize by POP3 Server on SBSSLD1/SBPSS(Release 8.0.1|February 07, 2008) at
    23      11/09/2012 11:51:21 AM
    17     MIME-Version: 1.0
    37     Content-type: multipart/alternative;
    68     "     Boundary="0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6""
    27     Content-Disposition: inline
    (null)     (null)
    58     --0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6
    39     Content-type: text/plain; charset=UTF-8
    33     Content-transfer-encoding: base64
    (null)     (null)
    (null)     (null)
    76     DQoNCg0KUmVnYXJkcywNClNoYW5tdWdhbSBOYXRhcmFqYW4uDQpNb2IgOiA5NjI5MjUyNDI1DQpP
    76     ZmYgOiAwNDQgMjI1MDQ3MDAgRXh0biA0Nzc5DQoNCiB+SWYgdGhlIGZhY3RzIGRvbuKAmXQgZml0
    68     IHRoZSB0aGVvcnksIGNoYW5nZSB0aGUgZmFjdHMu4oCdIC0gQWxiZXJ0IEVpbnN0ZWlu
    (null)     (null)
    58     --0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6
    38     Content-type: text/html; charset=UTF-8
    27     Content-Disposition: inline
    33     Content-transfer-encoding: base64
    (null)     (null)
    76     PGh0bWw+PGJvZHk+DQo8cD5SZWdhcmRzLDxicj4NClNoYW5tdWdhbSBOYXRhcmFqYW4uPGJyPg0K
    76     TW9iIDogOTYyOTI1MjQyNTxicj4NCk9mZiA6IDA0NCAyMjUwNDcwMCBFeHRuIDQ3Nzk8YnI+DQo8
    76     YnI+DQogfklmIHRoZSBmYWN0cyBkb27igJl0IGZpdCB0aGUgdGhlb3J5LCBjaGFuZ2UgdGhlIGZh
    60     Y3RzLuKAnSAtIEFsYmVydCBFaW5zdGVpbjxicj4NCjwvYm9keT48L2h0bWw+
    (null)     (null)
    60     --0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6--
    (null)     (null)
    36     *** END OF INTERNET MESSAGE BODY ***
    4     QUIT
    42     "+OK Lotus Notes POP3 server signing off.
    "Now pls suggest me how can i store the sender mail id, receiver mail id, subject and body of the mail in a table.
    So that i can display the saved data in the above table as a mail in my separate application.
    Thanks in advance.
    Cheers,
    San

  • How to receive emails from skype in english?

    Can you read this? http://skype.m.delivery.net/w/webView?cid=21356219​356&mid=4387626762&pid=28400&vid=13846&ee=a3VycmVu​...
    I cant. And I cannot see anywhere to get it english. 
    This is what skype keeps sending to me.
    Does anyone know why skype desided to send me emails in another language? Whos bright idea was that?
    Where can I undo this and get my emails from skype in english?

    I have the same problem .
    All my settings in Skype are for the english language, but I still cannot find where to inform you of my email notifications from YOU, Skype to be able to recive them in my own language, English. I have tried several months ago and was told to change my settings in my account to English, they where ALLWAYS English, I never changed them.
    Please this could be just a few lines of code that can be added to ones profile that will make Skype better. Thank you for listening!

  • Urgently need to download emails from server

    Hello - my webmail server is about to wipe my emails in the next couple of days. I am running Mavericks on a Macbook and want to download all emails from the server so that they stay on my Mail app when the server finally deletes all the emails. Can anyone please advise me?
    Many thanks
    Paul

    HI - so far as I know it's a standard webmail operation. In this case it is with Virginmedia. The problem is that i have closed my account with them and a 3 month grace-period where my email account is still active is about to come to an end. After that I won't have access to my emails. So I need to download them from the server. I can currently access them but i do not know what settings to put into either the webmail or my Mac Mail app.
    (in other words I want to store all my emails permanently on my Macbook and not on any server).
    I'm very grateful for any guidance on this. I don't want to lose the emails.
    Paul

  • Need help on emailing  from java

    I need help on how to send an Email from a java application.
    Can any body help me by providing correct code for that?
    Thanks!

    It worked.Thanks!So, are you gonna award the Dukes to prometheuzz or are you donating them to the forum pickle jar?
    db

  • I desperately need to send emails from Sage Accounts linked with Firefox and not Outlook Express. Tried everything

    I am using Sage Instant Accounts and need to email customers their invoices directly. I have recently changed computer and upgraded Sage and I can no longer do this although could do it last week. I used to be able to go into email in Sage and Firefox would automatically come up with my contacts etc.
    I think Sage looks to Outlook Express. If I delete Outlook Exp will that be an answer?
    Have phoned Sage but they have no further answers. So need help as spent too much time!

    I use Outlook so this might not be quite the same with Outlook Express.
    After I set up an email account I can 'Test' the account settings which effectively sends a test email from the account to itself. If that is possible then check which way works i.e. the sending or the receiving of the email. If it is just the incoming part then this could be that you need to tick the box in the account settings that says 'My outgoing server requires authentication'.
    Other than that check your incoming and outgoing servers which, if you're using btinternet should be both set as mail.btinternet.com, I also suggest you check your username and password.
    Good luck!

  • I need to recover emails from trash; on iBook 21.5; latest OS

    I accidentaly deleted all the emails from my wife's iMac. I can see the mails but  can't get  them back in Mail. HELP!

    Worked perfectly...I was not aware the trash for Mail was for only Mail.  Learn something new every day!
    Thanks,
    John

  • Translation widget: from russian to english

    trying to translate from russian to english - it's not working. only strange symbols. from english to russian - works well.

    kpreobra, welcome to Apple Discussions.
    Try Google translate http://translate.google.com/translate_t?hl=en#
     Cheers, Tom

  • HT3228 Need help sending email from iPhone 5S

    Have a new iPhone 5S and can receive email but every email I try to send is copied to the outbox and message says the recipient was rejected by the server. How do I fix that?

    You can't use iCloud to do that.  Any photos in iCloud must also be on your phone.  If you delete them from your phone, they will also be deleted from iCloud and they will be lost.  You might want to try updating your phone using iTunes on your computer (as explained at the bottom of this article: Update your iPhone, iPad, or iPod touch iOS software).  It requires much less space than updating over the air. 

  • Need help translating menu from as2 to as3

    Ive been at this for a week now, trying to build a
    straightforward accordian menu, translating an existing as2 menu
    into as3. I desperately need help, I've reach my conceptual ends in
    terms of code knowledge. Could someone please take a look at what
    I've got and what I need to do to get it working? I've included the
    AS3 file I've been working on and well as the AS2 files I've been
    referencing and attempting to translate. Any help really be
    appreciated...also, here is the code I have so far below.

    you have a 4 enterframe loops running continually when they
    only need to run after a menu item has been clicked and can stop
    after all menu items have reached their final positions.
    and you need to compute the final positions for each menu
    item after one of them is clicked.
    you might do better to check for an as3 tutorial for an
    accordian menu. it's a bit more involved than you're thinking.

  • When my husband bought IPhone 4S like mine we need to sync with ITunes and share all information (except music). We need to access emails from the same account. We need 250 business contact info as well. Can this be done?

    When my husband bought IPhone 4S last year like mine we could not sync it and share our business email account and 250 business contacts. It wiped out everything in my IPhone and was a mess. Can you share an email account and contacts between two IPhones? Only thing is, we don't want each other's music. He still uses an old fashion phone because we can't be a two-IPhone household (home-based business) and share the same emails and contact information. What's up with that?
    Nancy in Dover, NH

    "Can you share an email account and contacts between two IPhones?
    Yes.
    " He still uses an old fashion phone because we can't be a two-IPhone household (home-based business) and share the same emails and contact information. What's up with that?"
    Not sure I understand.  You can set it up however you like.
    You can certainly share contacts and e-mail while not sharing anything else.
    Ope itunes, connect iphone, select the contact program/service that you would like, select the calendar service program and calendars,  select the music, photos, apps, books, etc,  sync.  Set up whtever e-mail address(es) you like on the iphone itself.
    Do the same for all of the other idevces that you like.

  • Send email from PA30 user exit

    When I try to send an email from user exit in ZXPADU02 it never makes it to SOST.  WIll always go to SBWP outbox if I set the flag but never gets sent to receiver address.
    If I paste the following code into a report it works fine.  Is there some other parameter for this FM or some additional process needed to send email from a user exit?
        DATA: maildata TYPE sodocchgi1.
        DATA: mailtxt  TYPE TABLE OF solisti1 WITH HEADER LINE.
        DATA: mailrec  TYPE TABLE OF somlrec90 WITH HEADER LINE.
          CLEAR maildata.
          REFRESH: mailtxt, mailrec.
          maildata-obj_name = 'SRVC_EMAIL'.
          maildata-obj_descr = 'Email test'.
          maildata-obj_langu = sy-langu.
          mailtxt-line = 'Test line from user exit'.
          APPEND mailtxt.
          mailrec-receiver = '[email protected]'.
          mailrec-rec_type  = 'U'.
          APPEND mailrec.
          CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
            EXPORTING
              document_data              = maildata
              document_type              = 'RAW'
              put_in_outbox                = 'X'
              commit_work                  = 'X'
            TABLES
              object_header                = mailtxt
              object_content               = mailtxt
              receivers                       = mailrec
            EXCEPTIONS
              too_many_receivers            = 1
              document_not_sent            = 2
              document_type_not_exist    = 3
              operation_no_authorization  = 4
              parameter_error                  = 5
              x_error                              = 6
              enqueue_error                    = 7
              others                           = 8.

    Put the function call 'SO_NEW_DOCUMENT_SEND_API1'
    in a report Program & SUBMIT that report from ZXPADU02.
    Arya

  • Send email from the server

    I need to send email from the database.
    Two ways that I am familiar with -
    1. using VB/ODBC controls;
    2. dbms_pipe
    Anyone knows a more 'direct' solution?
    Regards
    Anatoliy Smirnov
    null

    by the way how can u send attchments with mails from database.
    chetan
    try this...(thanks for the subject line help)
    the first message line will be read by non MIME compliant readers, the second message line with be in the body of the note, the nest 2 (third and fourth) will come in as attachments ( text ). Change the Content-type for things like word docs or other 8bit docs (Content-type: application/msword) and write_raw_data for the 8Bit parts
    CREATE OR REPLACE PROCEDURE send_mail_test (sender IN VARCHAR2,
    recipient IN VARCHAR2, subject IN VARCHAR2,
    message IN VARCHAR2)
    IS
    mailhost VARCHAR2(30) := 'smtp.naxs.net';
    mail_conn utl_smtp.connection;
    cv_cCRLF VARCHAR2(10) := UTL_TCP.CRLF;
    lv_message varchar2(4000);
    BEGIN
    mail_conn := utl_smtp.open_connection(mailhost, 25);
    utl_smtp.helo(mail_conn, mailhost);
    utl_smtp.mail(mail_conn, sender);
    utl_smtp.rcpt(mail_conn, recipient);
    utl_smtp.open_data(mail_conn);
    utl_smtp.write_data(mail_conn,'From: ' | | sender | | cv_cCRLF);
    utl_smtp.write_data(mail_conn,'To: ' | | recipient | | cv_cCRLF);
    utl_smtp.write_data(mail_conn,'Subject:' | | subject | | cv_cCRLF);
    utl_smtp.write_data(mail_conn,'MIME-Version: 1.0' | | cv_cCRLF);
    utl_smtp.write_data(mail_conn,'Content-Type: multipart/mixed; ');
    utl_smtp.write_data(mail_conn,'boundary="NextPart_000_01C002D3.EB460626"' | | cv_cCRLF);
    utl_smtp.write_data(mail_conn, cv_cCRLF | | message| |' first mess part'| | cv_cCRLF);
    utl_smtp.write_data(mail_conn,'--NextPart_000_01C002D3.EB460626' | | cv_cCRLF);
    utl_smtp.write_data(mail_conn, cv_cCRLF | | message| | ' second mess part'| | cv_cCRLF);
    utl_smtp.write_data(mail_conn,'--NextPart_000_01C002D3.EB460626' | | cv_cCRLF);
    utl_smtp.write_data(mail_conn,'Content-Type: text/plain; charset=us-ascii'| | cv_cCRLF);
    utl_smtp.write_data(mail_conn, cv_cCRLF | | message| | ' third mess part'| |cv_cCRLF);
    utl_smtp.write_data(mail_conn,'--NextPart_000_01C002D3.EB460626' | | cv_cCRLF);
    utl_smtp.write_data(mail_conn,'Content-Type: text/plain; charset=us-ascii'| | cv_cCRLF);
    utl_smtp.write_data(mail_conn, cv_cCRLF | | message| | ' fourth mess part'| |cv_cCRLF);
    utl_smtp.write_data(mail_conn,'--NextPart_000_01C002D3.EB460626--' | | cv_cCRLF);
    utl_smtp.close_data(mail_conn);
    -- utl_smtp.data(mail_conn, message);
    utl_smtp.quit(mail_conn);
    EXCEPTION
    WHEN OTHERS
    THEN
    DECLARE
    error_code NUMBER := SQLCODE;
    error_msg VARCHAR2(2000) := SQLERRM;
    error_info VARCHAR2(30);
    BEGIN
    DBMS_OUTPUT.PUT_LINE('We have an error: '| |error_code| |' '| |error_msg);
    END;
    END;
    show errors;
    null

  • Can't move emails from one account to another in native Mail app IOS 7.0.3

    I can select an email and click on move, and MAIL looks like working (the animation seems to move the email to a different account folder) but indeed is not moving the email! This was working with the previous release of IOS
    Mail works if I try to move email to a folder belonging to the same account.
    I need to move email from my university account to my gmail to store it! And I can't create an alias in gmail because of my university (stupid) security policies.
    Thank a lot for your help.

    Hi Kobe Zhang
    Option 1:
    Your MSN account might be deleted but the eprintcenter wont be deleted along with it.
    You should be still able to login to eprintcenter account using the old msn id and the same old password for eprintcenter account which you used regularly.
    If you have forgot the password, i dont know how can you recover it. 
    If you get a chance to login then you can remove the printer from the old account and then claim it in your new account created usign hotmail ID.
    If you are not worried about changing your printers email ID, here is option 2.
    One more option is to de register the printer and register it again to cloud to get a new email address which can be used to claim the printer in your new account and then customize your email ID there. But be aware that you might not be able to set the same customised email ID which you have used in your old account.
    Kind Regards,
    Olilloyd
    "Although I work for HP, I'm speaking for myself and not on behalf of HP"--Please mark the post that solves your problem as "Accepted Solution"
    "Say "Thanks" by clicking the Kudos Star in the post that helped you.

Maybe you are looking for

  • OLT 12.2.0.1 & ADF 11g R2 (11.1.2.3)

    Hi, I am evaluating the OLT ADF Module for testing applications developed with JDeveloper/ADF 11g R2. Unfortunately, the latest version of JDeveloper/ADF 11.1.2.3(PS3) looks like not compatible with OLT release 12.2.0.1 (Openscript 12.2.0.1 Build 238

  • Outer Glow problem

    Hi, I'm using outer glow effect. When it reaches certain blur values, it draw a strange borders outside the object. I can't find a solution. Example:

  • Need help in configuring work email

    recently purchased 8310 curve. i have tried configuring using outlook web access option and outlook exchange option but some how not able to connect ot the server. have been able to configure yahoo email address. Message Edited by asv on 08-20-2009 0

  • Feature request: modifier key to enable snap when working with lines

    In order to connect lines and close shapes more quickly, I would like to use a modifier key to get a point to snap. Otherwise it's an extra step to use keyboard shortcut or clicking the toolbar icon (which doesn't always display). I would like to clo

  • Long running onMessage() method

    I have an application in which the onMessage() method implemented within an MDB would never complete. The onMessage() method calls a bean which executes in a while(TRUE) loop. If I were to use CMT to control my MDB, the message would not be dequeued