Convert English to Thai Language

Hi everyone.
Is there anybody know how to convert English word to Thai ???
I very tired searching and asking.
Let say I want to convert a name Uthit to Thai.
Any one who expert or Thai people.
Thanks
Regards
hairi

Once more, don't call it translation. It will only confuse the issue (and everybody trying to help you).
The code you post has to do with yet another concept, that of character encoding conversion from one encoding to another. Two issues with that code:
1. It will not work correctly for conversion from one encoding to another because it attempts to convert between incompatible encodings (do not cover the same character set). And ISO8859-7 covers Greek, as far as I know, so I don't know why that would be useful in connection with Thai.
2. It will never do any kind of transcription or transliteration.
But since you now bring encoding conversion into the mix via your code example I am in doubt again about what you want to do. And it looks as if you don't understand the various terms used with respect to this whole internationalization area. That makes it difficult to help you.

Similar Messages

  • How do I export a PDF that contains both English and Thai to Microsoft Word?

    My PDF file has both English and Thai language content. When I export it to Microsoft Word, the Thai words are missing. I am using Acrobat XI Pro and Windows 7 Professional 64-bit.

    Hi Teng,
    Try changing the pdfmaker preferences and 'embed all fonts' as per the screenshot below:
    Regards,
    Rave

  • I want to convert the day into THAI language

    Hi All,
          I write a simple query using date conversion for THAI language. But the NLS_CALENDAR does not convert the DAY to Thai language but month and year shows in THAI only
    Please give the date format for THAI language.
    Query
    select
    DECODE (:p_language_id,
                   'th', TO_CHAR (sysdate,
                                  'DAY MONTH YYYY',
                                  'NLS_CALENDAR=''THAI BUDDHA'''
                   TO_CHAR (sysdate, 'Day MONTHYYYY') ) dates from dual
    Output:
    FRIDAY    สิงหาคม    2556

    Try this
    alter session set nls_language = 'THAI';
    select to_char (sysdate,'DAY MONTH YYYY')
      from dual;
    NLS_LANGUAGE
    Edit.. Perhaps NLS_DATE_LANGUAGE is much suited for your requirement. Check Hoek's solution.
    Message was edited by: Karthick_Arp

  • PDF is converting the Thai Language characters into Junk Characters

    Hi,
    While converting the SAP Script form to PDF, it is converting the Thai Language characters into Junk Characters. But it is showing correctly if we issue it to a printer. Also it is showing correctly in print preview.
    Urgent Help is needed.
    Thanks,
    srini.

    Cross post:
    Re: PDF is converting the Thai Language characters into Junk Characters

  • Why is my itunes in THAI language? how do i set it back to english ?

    why is my itunes in THAI language? how do i set it back to english ?
    thanks !

    scroll down to the very bottom of itunes and change the country?

  • I live in thailand. my firefox homepage comes up with a google mark and is in thai language. how do i remove the google link and get english language?

    I live in thailand. I just downloaded firefox 3.6.12. I have uninstalled google chrome. My firefox homepage comes up with a google mark and is in thai language. How do i remove the google link and get english language?

    You can set the Interface Language via the Search settings link on the http://www.google.com/ncr site. That should work for the Google Firefox page as well.<br />
    That setting is stored in a Google PREF cookie that you need to keep (allow).

  • Asked to sign agreement in Thai language. How to change for English?

    TTried to update the apps. Software asked for a consent in THAI LANGUAGE.
    Hto ow to revert to ENGLISH ?

    scroll down to the very bottom of itunes and change the country?

  • HT1222 i live in Thailand and suddenly while updating my itunes, everything is in Thai language.  How do i change this back to English?

    I live in Thailand and for some reason, when my mac updated the software for my itunes, it changed everything from English into Thai.  How can i change the language back to English?

    scroll down to the very bottom of itunes and change the country?

  • I live in Thailand and I just downloaded Itunes (windows) --- unfortunately it displays everything in the Thai language --- how can I change to English?

    I just downloaded Itunes on my laptop (windows). As I live in Thailand it displays only the Thai language which I cannot read. How can I change the display language to English?

    Uninstall your current Firefox version
    * https://support.mozilla.com/en-US/kb/Uninstalling%20Firefox
    * DO NOT SELECT TO REMOVE USER DATA AND SETTINGS
    Download Firefox 6.0 English(US) version from here:
    * http://www.mozilla.com/en-US/firefox/all.html
    Installing Firefox on Windows
    * https://support.mozilla.com/en-US/kb/Installing%20Firefox%20on%20Windows
    Check and tell if its working.

  • Pdf converter  thai language

    I need a pdf converter that uses thai language

    douglas ringhiser wrote:
    yes i have a thai pdf 
    What happens if you try to copy/paste into TextEdit?  Have you tried this from both Preview and Adobe Reader?  Do you have a scanner?

  • Overlapping characters displayed in spool for dunning in thai language

    Hi Experts,
                     Our requirement is to create a dunning form for Thailand(displayed in thai language).
    We have created a thai oriented printer(Thl1).We have also created a smart style and the font is helvetica(in order to display thai characters).
    We have a problem when the spool is generated.The characters in the spool(both english and thai) appear overlapped.
    What can be the reason for this?
    My hunch is that since we are using helvetica font the spool is not generated properly.(ie spool cannot take helvetica font)
    Since dunning is a sap standard program we cannot directly convert to otf format instead of generating a spool.
    This problem has been bugging us for a long time.
    Can any of the sap mates please suggest a solution for this?

    This is a duplicate of
    Link : [Overlapping characters displayed in spool for dunning in thai language]

  • Re: Encode THAI Language into BASE64 Format

    Hi  Guru's,
            Have a requirement  to encode particular IDOC text fields which are in  THAI language to BASE64 format . We are able to encode the same for english but not able to do the same for Thai language so can any one help with the coding to create custom UDF  which can convert.
    Regards
    Sathish Kumar K.C

    Hi ,
       Please find below my code...
    public class Base64a {
    //     Mapping table from 6-bit nibbles to Base64 characters.
    private static char[]    map1 = new char[64];
         static {
            int i=0;
            for (char c='A'; c<='Z'; c+) map1[i+] = c;
            for (char c='a'; c<='z'; c+) map1[i+] = c;
            for (char c='0'; c<='9'; c+) map1[i+] = c;
            map1[i+] = ''; map1[i++] = '/'; }
    //     Mapping table from Base64 characters to 6-bit nibbles.
    private static byte[]    map2 = new byte[128];
         static {
            for (int i=0; i<map2.length; i++) map2<i> = -1;
            for (int i=0; i<64; i++) map2[map1<i>] = (byte)i; }
    Encodes a string into Base64 format.
    No blanks or line breaks are inserted.
    @param s  a String to be encoded.
    @return   A String with the Base64 encoded data.
    public static String encode (String s) {
         return new String(encode(s.getBytes())); }
    Encodes a byte array into Base64 format.
    No blanks or line breaks are inserted.
    @param in  an array containing the data bytes to be encoded.
    @return    A character array with the Base64 encoded data.
    public static char[] encode (byte[] in) {
         int iLen = in.length;
         int oDataLen = (iLen*4+2)/3;       // output length without padding
         int oLen = ((iLen+2)/3)*4;         // output length including padding
         char[] out = new char[oLen];
         int ip = 0;
         int op = 0;
         while (ip < iLen) {
            int i0 = in[ip++] & 0xff;
            int i1 = ip < iLen ? in[ip++] & 0xff : 0;
            int i2 = ip < iLen ? in[ip++] & 0xff : 0;
            int o0 = i0 >>> 2;
            int o1 = ((i0 &   3) << 4) | (i1 >>> 4);
            int o2 = ((i1 & 0xf) << 2) | (i2 >>> 6);
            int o3 = i2 & 0x3F;
            out[op++] = map1[o0];
            out[op++] = map1[o1];
            out[op] = op < oDataLen ? map1[o2] : '='; op++;
            out[op] = op < oDataLen ? map1[o3] : '='; op++; }
         return out; }
    Regards
    Sathish Kumar

  • Thai language characters not displaying correctly in browser

    Hello all
    I am starting to develop a multilingual application which will include both english and thai.
    The problem Im having is that the browser displays only garbage when Im fetching a report on a table that includes Thai characters in a column.
    What Im seeing is something like this:
    Language Id     Short     Name
    0     ENG     English
    1     THA     à¸„นไทย
    Things that I have checked:
    - The database character set is AL32UTF8
    - The same is set for NLS_LANG when starting the database, listener, OHS
    - The same is configured in dads.conf
    - The browser is set to Unicode as well ( and can display normal thai websites without any problems)
    I have tested on a windows 7 client, as well as locally to the database on the linux box using firefox, both show the same result.
    In xterm I have no problems inserting and querying thai characters. Its all shown correctly.
    I tried with chinese characters as well, and I see the same result.
    Any ideas please let me know
    Cheers
    Stefan

    Hi Stefan,
    Sorry to interrupt you in this thread, Me too having the saming requirement of displaying my apex application in both Arabic and English.
    Hence i have accomplished of displaying the page name, labels, and all the other stuff related to page in arabic expect the data, im not sure of displaying the data in arabic soon after the user select the Arabic language.
    From your thread i can see that you are seeing your data in Thai it seems, if you dont mind can you share the stesp you did for showing the data in thai so that i can try the same for my Arabic too.
    Also sorry my post couldnt help your question.
    Thanks in advance.
    Brgds,
    Mini

  • Which Language version of Indesign CC supports Thai language?

    Greetings,
    I'm trying to troubleshoot floating vowel characters in our selected font (Sukhumvit) in Indesign CC, and can't find which version I should be using to be able to mark my text as thai language. I can of course download any version, but right now am in the English/arabic version.
    The troubleshooting involves what can and can't be done in terms of tracking and kerning, and I'm helping to author guidelines for Thai usage for this font for global use.
    I'm running a Mac Pro (not the cool new one, yet) Mavericks 10.9.1 and using the most recent update for Indesign
    Please help?
    Thanks
    Mo

    I thought that Sukhumvit was a Mac system font, but I was of course completely wrong. Turns out it's an iOS system font, so I couldn't do any testing at all. I assume that you purchased the font directly from Cadson Demak, and I'd take my questions directly to them. It's probably a font build issue.
    If I were using a font where I knew the foundry wouldn't listen to my concerns, I might write a fistful of GREP styles that would remove tracking from the floating vowels. Or I might use Peter Kahrel's kerning table script. It's brilliant.
    But the most important bit is this: I would also write my style guide so that tracking wasn't indiscriminately applied to all writing systems. That strikes me as a no-brainer. Perhaps your default Latin-script font needs some brathing room at body text sizes in the language(s) you read, and the easiest way to get said breathing room in your workflow is to use tracking instead of a different font or careful kerning. but once again I'd rather use the kerning table script than just track everything willy-nilly.
    That being said, It's likely that I'll have to recommend that no tracking or kerning be used with this language. Our creatives won't like that at all, as they like to be able to control every facet.
    If your creatives can't read Thai then they should absolutely have that control taken away from them. I'm a localization wonk, not a "creative" so perhaps I'm judging a bit harshly, but if they want to "control every facet" then they'd best understand exactly how Thai is supposed to look - an understanding best achieved by literacy.

  • Thai Language

    Hi experts
        Tities for the PopUp screen, window screen, subscreens,... including all the SAP standard screens the title messages is not displaying in the Title bar other than English Login
    so I want to know that any Gui patches have to install , or any setting have to be done ..
    My requirement is displaying the Titles in Thai language, in Thai Login
    In English Login Every thing is displaying.
    I was checked in SE63, TRDIRT table, SNL3 transaction but of no Use
    looking for your great help
    Satya vani

    Hi Satya,
    Have you checked if Thai Language is installed completely on the PC you are working.
    If not it can be done from Control Panel --> Regional and Language Options. Here check with Regional Options and Advanced Tabs whether Thai has been installed.
    One more thing which you can try/see if it is done or not is on any SAP screen on the top right icon see whether everthing has been set properly in Options (I18N)...
    Thanks & Regards,
    YJR.

Maybe you are looking for