How can I translate a message into English?

I receive messages in Italian. To date, I copy and paste into a translator. Is there a better method to get the message translated within Thunderbird?

I use quick translator for Firefox and Thunderbird https://addons.mozilla.org/en-US/thunderbird/addon/quick-translator/?src=ss

Similar Messages

  • How can i translate hardcoded messages into particular language

    actually i have a requirement that is
    i have one business object *ZZbus2121*
    in that business object i have some hard coded messages...like "hello"
    so i need to change those messages into korean,japanese,chinese simplified and chinese traditional
    please help me if u know the process.......

    Hello,
    Message which is hard coded cannot be translated automatically.
    You can try the code as shown below, but you need the help of a translator or you should know the languages in which you want to give the message or use google translator
    IF SY-LANGU = 'EN'.
      Message in English.
    ELSEIF SY-LANGU = 'ZH'.
      Message in Chinese.
    ELSEIF SY-LANGU = 'KO'.
      Message in Korean.
    ENDIF.
    or
    PARAMETERS : LANGU TYPE LAISO.
    IF LANGU = 'EN'.
      Message in English.
    ELSEIF LANGU = 'ZH'.
      Message in Chinese.
    ELSEIF LANGU = 'KO'.
      Message in Korean.
    ENDIF.
    or else go for SE63 to translate the messages
    Edited by: dnr_varma on Aug 8, 2011 1:28 PM

  • How can i translate SAP Menu into Vietnamese language?

    how can i translate SAP Menu into Vietnamese language?

    Hello,
    Don't you have the language pack?
    This should not be done by customers manully ...
    And the question is not SCM system specific.
    Maybe you should ask Basis for help ...
    Best Regards,
    Ada

  • TS4002 How can I get my messages into icloud

    How can I get my text messages into icloud from iphone

    Messages are only backed up to iCloud as part of a full iOS device backup, which can be restored in full to another, or the same iOS device.
    Messages are not available separately in iCloud, nor can they be viewed.

  • How can i translate a document into another language?

    I am trying to translate a script into Spanish. The document is secured - which is my first problem - and also - i cannot find a way to translate it?! Any and all help would be much appreciated - thanks!

    Hi elyssap
    If document allows you to copy and paste the text then you can use google Translator to translate to another language.
    Refer ; https://translate.google.com/
    ~Mandy

  • How can I import Entourage messages into Mac OS X Mail?

    Hello,
    I own Mac OS X v10.4 Tiger and Office 2004 Standard Edition. I have used Entourage for e-mail, since the Mac OS X Mail application in Mac OS X Jaguar and Panther was not effective. However, since I have upgraded to Tiger, I have discovered that the Mac OS X Mail 2 application is a much better program for managing my e-mail.
    I have attempted to import my Entourage inbox into Mac OS X Mail, and I am able to see all my imported messages correctly. However, Mail now wants to re-download all messages from the server—even the messages that I have already imported from Entourage. Since I have told Entourage not to delete e-mail messages from my server, I have approximately 127 MB of messages on my mail server that Mail wants to re-download! On a relatively slow wireless connection, this is a problem.
    Aside from deleting all messages from my mail server, is there any other way that I can prevent Mail from re-downloading all my e-mail messages?

    Hello KSG2002.
    That’s how POP mail works (except in the particular case of Gmail). You would have the same problem if you wanted to use any other mail client.
    I have approximately 127 MB of messages on my mail server
    Bad idea. That’s not how POP is supposed to work. Leaving your mail on the POP server for some time is fine. Leaving it there indefinitely is calling for trouble.

  • How can I change I tune into English from another language?

    My itune is set in Korean.  I want to change that to Enlish.  How do I do that?

    Take a look here:
    iTunes: Changing the display language
    Regards.

  • How to translate a message in English to another language on iPhone 6

    How do you translate a message in English to another language on the iPhone 6 Plus?

    To illustrate Meg St. Clair's answer here's your post in Turkish. It's easy with a little practice.
    Aljernon1
    1. Seviye 1
    (0 puan)
    Aljernon1
    13 Aralık 2014 01:35
    Nasıl iPhone 6 Plus başka bir dile İngilizce bir mesaj çevirmek mi?
    iPhone 6 Artı, iOS 8.1.2
    Ben bu soruyu çok 0 Beğeniler göster var (0) Cevap

  • How can i translate a pdf document in japanese language to english language

    how can i translate a pdf document in japanese language to english language

    Hi trueman9299,
    ExportPDF uses OCR (optical character recognition) to convert image (scanned text) to editable/selectable text, but it doesn't translate from one language to another.
    Best,
    Sara

  • How can I translate a document in Adobe fom Spanish to English

    How can I translate a document in Adobe fom Spanish to English

    Hi maximike,
    Which document you are talking about?
    If this is a PDF file then No PDF translation tools exist, that make a new PDF, so far as I know. If the document is public you can put the URL into an online translation service like http://translate.google.com/. If it doesn't have a public URL you can copy and paste the text into it.
    Regards,
    Florence

  • How can I translate this from PL/SQL into embedded SQL!?

    CURSOR TEMP1 is
    SELECT emp.fname fname, emp.lname lname, emp.ssn, dname,emp.salary salary, emp1.fname supervisor_fname, emp1.minit supervisor_mdlname,emp1.lname supervisor_lname FROM employee emp, employee emp1,department d
    WHERE emp.superssn=emp1.ssn(+) and emp.dno=dnumber order by ssn;
    PNTR_TEMP1 TEMP1%ROWTYPE;
    --calcualting values for the cursor TEMP1
    for PNTR_TEMP1 in TEMP1 loop
    fname:= PNTR_TEMP1.fname;
    lname:= PNTR_TEMP1.lname;
    ssn := PNTR_TEMP1.ssn;
    dname:=PNTR_TEMP1.dname;
    sup_name:=PNTR_TEMP1.supervisor_fname||' '|| PNTR_TEMP1.supervisor_mdlname||' '||PNTR_TEMP1.supervisor_lname;
    salary := PNTR_TEMP1.salary;
    n_deps:=0 ;
    /* how can I translate this to embedded SQL...I'm using C++*/

    Hi,
    you can follow this link to use cursor in Pro*c /C++
    http://www.csee.umbc.edu/help/oracle8/server.815/a68022/sql.htm
    Regards

  • How can i rewrite this code into java?

    How can i rewrite this code into a java that has a return value?
    this code is written in vb6
    Private Function IsOdd(pintNumberIn) As Boolean
        If (pintNumberIn Mod 2) = 0 Then
            IsOdd = False
        Else
            IsOdd = True
        End If
    End Function   
    Private Sub cmdTryIt_Click()
              Dim intNumIn  As Integer
              Dim blnNumIsOdd     As Boolean
              intNumIn = Val(InputBox("Enter a number:", "IsOdd Test"))
              blnNumIsOdd = IsOdd(intNumIn)
              If blnNumIsOdd Then
           Print "The number that you entered is odd."
        Else
           Print "The number that you entered is not odd."
        End If
    End Sub

    873221 wrote:
    I'm sorry I'am New to Java.Are you new to communication? You don't have to know anything at all about Java to know that "I have an error," doesn't say anything useful.
    I'm just trying to get you to think about what your post actually says, and what others will take from it.
    what does this error mean? what code should i replace and add? thanks for all response
    C:\EvenOdd.java:31: isOdd(int) in EvenOdd cannot be applied to ()
    isOdd()=true;
    ^
    C:\EvenOdd.java:35: isOdd(int) in EvenOdd cannot be applied to ()
    isOdd()=false;
    ^
    2 errors
    Telling you "what code to change it to" will not help you at all. You need to learn Java, read the error message, and think about what it says.
    It's telling you exactly what is wrong. At line 31 of EvenOdd.java, you're calling isOdd(), with no arguments, but the isOdd() method requires an int argument. If you stop ant think about it, that should make perfect sense. How can you ask "is it odd?" without specifying what "it" is?
    So what is this all about? Is this homework? You googled for even odd, found a solution in some other language, and now you're just trying to translate it to Java rather than actually learning Java well enough to simply write this trivial code yourself?

  • I build databases with appleworks over 10 years on my ibook, and continue to add to them. Now I have a macbook pro. How can I translate the databases to a compatible program?

    Over 10 years I have built several databases with Appleworks. Now I have a macbook pro. How can I translate these databases to a 10.6.8 program?

    Thanks Joe, but that won't work. I've finally found a site that answers the question: http://www.wilmut.webspace.virginmedia.com/notes/aw/page1.html
    I can only say that by Apple I have been royally screwed. I'll never buy another mac -- everything I do would simply disappear into cyberspace.

  • How can i print text message from my iPhone?

    I have an iPhone 5S.  How can I print text messages to save those conversations?

    Did you try to copy and paste the content into another app, like notes or Mail and then send it to the printer?

  • I have 2 games Words with Friends and Cityville that receives a Pop-up message form iTunes...  "Connect to iTunes to use Push Notifications" and will not allow me to exit out of the app or play.  How can I get this message to STOP?

    I have 2 games Words with Friends and Cityville that receives a Pop-up message form iTunes...  "Connect to iTunes to use Push Notifications" and will not allow me to exit out of the app or play.  How can I get this message to STOP?

    Yes - I connected my phone to my computer / Itunes and went into the apps section, but from there I have no idea how to manage the push notifications.  I even tryied going into itunes that is installed on my phone.  I still cannot find anyplace to manage these popups.  I have also gone into settings - notifiations - and tried turning all notifications for these apps all off but that didnt work either.  Any guidance is MUCH appreciated - Im not sure where to go from here.

Maybe you are looking for

  • One bill and customer service complaint

    March of last year I purchased 2 cell phones from Verizon and the wireless store manager told me that I would be entitled to $15 discount per month to which he had also sent me several emails confirming this so after several phone calls I was eventua

  • Urgent! Please help with this

    Hi! in the ../server0/log/application.log we see: Error#1#com.sap.lcr.sagent.BuilderDirector#Plain###Data supplier c ircular redirection. Check data supplier bridge targets. At VA we see only SLD data suplier but no "bridge". Please help. Points guar

  • Basic questions in SRM for Workflows+need material

    Hi All, I have developed Workflows in SAP R3.I am very new to SRM. I have following questions - 1. What is the use of BADI when we implement Workflow? My understanding till now is to provide all approvers to the    Shooping Cart.That means for workfl

  • I had to uninstall my itunes because it said a file was missing, now i am unalble to reinstall because it says I do not have permission for Apple Mobile device? Any ideas

    during my last update I got an error message saying my apple mobile device did not have permissions. I also had a message about a missing file. I tried repairing in the control panel and I then uninstalled my itunes then tried to reinstall it to fix

  • IMessages error on iPad

    I have an iPad and an iPhone, and I decided to change my phone to an android. Now when people who have iphones text me, their phone say it went out as an iMessage to my iPad, I never recieve a normal text on my phone. How can I delete the number from