Website in hindi, gujrati, urdu, marathi

i have created a web site in english
i want my web site to be in some of the local languages
like hindi, gujrati, urdu, marathi
can any one help me how to display those characters in browser

The following tells characters which a specified encoding can encode.
//import java.nio.charset.*;
Charset chset = Charset.forName("ISO-8859-1"); // choose character set you are to test
CharsetEncoder encoder = chset.newEncoder();
for(int j=0;j<Character.MAX_VALUE;j++){
    if(encoder.canEncode((char)j)) {
      System.out.print("0x");
      System.out.print(Integer.toHexString(j));// unicode hex value will be printed
      System.out.print(" ");
System.out.println();And the Unicode code charts will be obtained here.
http://www.unicode.org/charts/

Similar Messages

  • Help with website in Hindi

    I am creting a (DW CS5) website in the hindi language. Copy was provided as translated Word docs (in Mangal font) from customer which I have been copying/pasting into my DW pages. I have the encoding set to UTF-8, and the page previews fine/as it should, UNTIL I get it on the server which then shows only black question mark boxes. I have tried testing it on diferent servers, have also tried numerous encoding and charset combinations to no avail. (browser encoding shows UTF-8) I've tried with and without CSS. Other hindi websites view fine.
    I am creating the files on an Intel Mac 10.6, test viewing in safari and firefox (boxes with question marks also show in Windows). After countless searches for a solution, I am at my wits end. Most help blogs merely say to encode as UTF-8, which I already have. Can ayone out there PLEASE help and tell me what I am missing/doing wrong? Below is a snippet showing headers and a few lines of sample text...
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="hi">
    <head>
    <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8">
    <meta http-equiv="Content-Language" content="hi">
    <title>test2</title>
    <body>
    <p>ड्रॉबार स्प्रिंग सम्भावित अधिक भार स्थितियों में प्रयोग किए जाने के लिए उत्कृष्ट हैं और इनमें ऐसी अंतर्निमित सुरक्षा विशेषता होती है जिसके अंतर्गत टूटने पर स्थिर भार उठाना जारी रहता है। ड्रॉबार स्प्रिंग मे, भार उन लम्बे स्टील लूपों के सिरों पर लगाया जाता है जो स्प्रिंग के मध्य से गुज़रते हैं और विपरीत सिरे में हुक में डाले गए होते हैं, इस प्रकार ये लदान पर स्प्रिंग को संपीडित करते हैं। ड्रॉबार स्प्रिंग के आम अनुप्रयोग का तब प्रयोग किया जाता है जब बरामदे के झूले को सहारा दिया जाता है।</p>
    </body>
    </html>

    G'day Hans-G,
    When I copy the text from your online sample page and paste it into DW when in design view, then preview the result in a browser, the characters show as they do on your sample page.
    I do have charset="utf-8" and it would seem (something I did not know until someone on this forum pointed this out) that escape characters are not required
    This is the resulting code view
    <p>चीनी एवं अन्ग्रेज़ी के बाद हिन्दी विश्व में सबसे ज़्यादा    बोली जाने वाली भाषा है । भारत और विदेश में ६० करोड़ (६००    मिलियन) से अधिक लोग हिन्दी बोलते, पढ़ते और लिखते हैं ।    फ़िजी, मॉरिशस, गयाना, सूरीनाम और नेपाल की अधिकतर जनता    हिन्दी बोलती है ।</p>
    <p>भाषाविद हिन्दी एवं <a href="http://hansgd.de/urdu.htm">उर्दू</a> को एक ही भाषा समझते हैं । हिन्दी <a href="http://hansgd.de/devnagri.htm">देवनागरी</a> लिपि में लिखी जाती है और शब्दावली के स्तर पर    अधिकांशत: <a href="http://hansgd.de/sanskrit.htm">संस्कृत</a> के शब्दों का प्रयोग करती है । उर्दू    नस्तालिक़ में लिखी जाती है और शब्दावली के स्तर पर उस पर    फारसी और अरबी भाषाओं का ज़्यादा असर है । व्याकरणिक रुप से    उर्दू और हिन्दी में लगभग शत-प्रतिशत समानता है - सिर्फ़ कुछ    खास क्षेत्रों में शब्दावली के स्त्रोत (जैसा कि उपर लिखा गया    है) में अंतर होता है। कुछ खास ध्वनियाँ उर्दू में अरबी और    फारसी से ली गयी हैं और इसी तरह फारसी और अरबी के कुछ खास    व्याकरणिक संरचना भी प्रयोग की जाती है।</p>
    Gramps
    PS IdRatherBeInAustralia

  • Maintaining databases in hindi using oracle 9i

    Hello all !!
    I am currently designing a website in hindi in which a hindi database is to be maintained..I am using java server pages and servlets to design the website.Kindly suggest me the step by step process as to how data can be saved and retrieved in hindi and what all steps have to be taken to configure oracle9i accordingly..I am looking forward for for ur help as i am a novice in this regard..thanx
    Surabhi Paliwal
    [email protected]

    A forum is not a right place for a step by step tutorial. Anyway, my advice is to look at:
    (i) The database character set: use AL32UTF8. You can theoretically use IN8ISCII, which would give you space savings, but as both Java and Windows support Hindi (actually: the Devanagari script) through Unicode, you should use Unicode. This way your database will be prepared for other languages, including other Indian and South Asian languages.
    (ii) Look at character length semantics as in:
    CREATE TABLE tab ( col VARCHAR2(20 CHAR), ...
    As each Devanagari character occupies 3 bytes in AL32UTF8, working in terms of characters instead of bytes, may be easier.
    (iii) Make sure your JSP pages are properly declared as encoded in UTF-8.
    (iv) Be prepared that you can store only up to 1333 Devanagari characters in VARCHAR2(4000). Declaring the column as VARCHAR2(4000 CHAR) will not change this. Therefore, for columns longer than 1333 characters, use CLOB.
    (v) I do not really know the Devanagari script, but I can imagine that because of its structure, i.e. syllables combined with vowel marks, you should not shorten words blindly using the SUBSTR function as a syllable without its following vowel mark may make no sense. Anyway, verify the rules associated with shortening words and implement more sophisticated substring functionality if necessary.
    (vi) A JDBC connection between an AL32UTF8 database and UTF-8 JSP pages should not need any extra configuration for Devanagari.
    (vii) Prepare instructions for your users regarding configuration of browsers. IE6 and Firefox seem to be already preconfigured for Devanagari. You may need to make sure that the client operating system is also configured to support Devanagari. On US or European versions of Windows 2000 and later, you may need to check the appropriate option in Control Panel->Regional Settings for the necessary support files to be added to the system. Mangal and Arial Unicode MS seem to be the fonts to use with Devanagari.
    -- Sergiusz

  • Urgent!! Plz help.. Fonts issue

    Hi all,
    Does anyone know if Adobe CS4 supports the following fonts? If yes, can you please tell me where do I get it and how to install them?
    Hindi
    Kannada
    Malayalam
    Marathi
    Tamil
    Telugu
    Punjabi
    Urdu
    Any help will be greatly appreciated.
    OS used: Windows Xp
    Many thanks
    Shri

    The ME edition won't even help at all. Many of these languages can be typeset in plain-vanilla English ID with some help from scripting, knowing about unsupported features, et cetera, but what the OP really needs to do is to contact Metadesign Solutions.
    I'd offer to help, but frankly, this post sounds like at least 50 hours of consulting work, not five minutes of how-to posting.

  • [SOLVED] TeXLive: Installing font package and updating font map fails

    I am trying to install the newtx package, which is available here at CTAN [1].
    Since I don't want to mess with my TeXLive installation, I am trying to do that as a local user only.
    So I placed the package into ~/texmf/tex/latex/. , ran texhash on texmf/ to update my local ls-R, and so far everything works nicely; for example, the .sty files in that package can be seen:
    $ texhash texmf
    texhash: Updating /home/$USER/texmf/ls-R...
    texhash: Done.
    $ kpsewhich newtxmath.sty
    /home/$USER/texmf/tex/latex/newtx/newtxmath.sty
    Now, following the packages README [2], I need to update the my TeX font maps. Seems like 'updmap' is the right tool to do that for my user only:
    $ updmap --enable Map=ntx.map
    copy /etc/texmf/web2c/updmap.cfg => /home/$USER/.texlive/texmf-config/web2c/updmap.cfg
    Config file: "/home/$USER/.texlive/texmf-config/web2c/updmap.cfg"
    dvips output dir: "/home/$USER/.texlive/texmf-var/fonts/map/dvips/updmap"
    pdftex output dir: "/home/$USER/.texlive/texmf-var/fonts/map/pdftex/updmap"
    dvipdfm output dir: "/home/$USER/.texlive/texmf-var/fonts/map/dvipdfm/updmap"
    pxdvi output dir: "/home/$USER/.texlive/texmf-var/fonts/map/pxdvi/updmap"
    /usr/bin/updmap is creating new map files
    using the following configuration:
    LW35 font names : URWkb
    prefer outlines : true
    texhash enabled : true
    download standard fonts (dvips) : true
    download standard fonts (pdftex) : true
    create a mapfile for pxdvi : false
    Scanning for LW35 support files [ 3 files]
    Scanning for MixedMap entries [ 36 files]
    Scanning for KanjiMap entries [ 0 files]
    Scanning for Map entries [129 files]
    ERROR: The following map file(s) couldn't be found:
    ntx.map
    Did you run mktexlsr?
    You can delete non-existent map entries using the option
    --syncwithtrees.
    That's my problem: it can't find ntx.map, although I ran mktexlsr (which is texhash). So what to do?
    1: http://www.ctan.org/pkg/newtx
    2: http://ftp.uni-erlangen.de/mirrors/CTAN … wtx/README
    SOLUTION: The trick consists in placing all files into the necessary folders: *.map goes to fonts/map/newtx/, *.vf to fonts/vf/newtx/, and *.tfm to fonts/tfm/newtx/. Also, *.pfb needs to be placed in fonts/pfb/newtx/. *.enc files go to fonts/enc/newt/, and everything else remains in tex/latex/newtx/.
    Last edited by Stalafin (2012-06-20 12:32:16)

    ConnorBehan wrote:Oh it's part of the mlocate package. It will search your entire filesystem for a filename but there are other programs that do the same. I just meant, can you find ntx.map yourself? If so, you could put it in a new directory or let tex know with the TEXINPUTS environment variable.
    I really don't think that this makes a lot of sense as regards TeXlive; I have checked (with kpsewhich --var-value) if indeed all variables TEXMFHOME, TEXMFVAR, and TEXMFCONFIG are pointing to reasonable places, and indeed they do.
    I have found this guide:
    http://people.debian.org/~preining/TeX/ … n/ch4.html
    Although it is Debian, I figure one can easily adapt it. So I tried that, and placed ntx.map in TEXMFHOME/fonts/map/$SYNTAX/newtx/ntx.map . I wasn't sure about $SYNTAX, so I just tried it with dvips. This time, $ updmap --enable Map=ntx.map did actually work, and there were not errors:
    $ updmap --enable Map=ntx.map
    copy /etc/texmf/web2c/updmap.cfg => /home/janis/.texlive/texmf-config/web2c/updmap.cfg
    Config file: "/home/$USER/.texlive/texmf-config/web2c/updmap.cfg"
    dvips output dir: "/home/$USER/.texlive/texmf-var/fonts/map/dvips/updmap"
    pdftex output dir: "/home/$USER/.texlive/texmf-var/fonts/map/pdftex/updmap"
    dvipdfm output dir: "/home/$USER/.texlive/texmf-var/fonts/map/dvipdfm/updmap"
    pxdvi output dir: "/home/$USER/.texlive/texmf-var/fonts/map/pxdvi/updmap"
    /usr/bin/updmap is creating new map files
    using the following configuration:
    LW35 font names : URWkb
    prefer outlines : true
    texhash enabled : true
    download standard fonts (dvips) : true
    download standard fonts (pdftex) : true
    create a mapfile for pxdvi : false
    Scanning for LW35 support files [ 3 files]
    Scanning for MixedMap entries [ 36 files]
    Scanning for KanjiMap entries [ 0 files]
    Scanning for Map entries [130 files]
    Generating output for dvipdfm...
    Generating output for ps2pk...
    Generating output for dvips...
    Generating output for pdftex...
    Files generated:
    /home/$USER/.texlive/texmf-var/fonts/map/dvips/updmap:
    11493 2012-06-19 21:57:22 builtin35.map
    15956 2012-06-19 21:57:22 download35.map
    523074 2012-06-19 21:57:22 psfonts_pk.map
    747564 2012-06-19 21:57:22 psfonts_t1.map
    747559 2012-06-19 21:57:22 ps2pk.map
    14 2012-06-19 21:57:24 psfonts.map -> psfonts_t1.map
    /home/$USER/.texlive/texmf-var/fonts/map/pdftex/updmap:
    747566 2012-06-19 21:57:23 pdftex_dl14.map
    745992 2012-06-19 21:57:23 pdftex_ndl14.map
    15 2012-06-19 21:57:24 pdftex.map -> pdftex_dl14.map
    /home/$USER/.texlive/texmf-var/fonts/map/dvipdfm/updmap:
    339 2012-06-19 21:57:22 kanjix.map
    Transcript written on "/home/$USER/.texlive/texmf-var/web2c/updmap.log".
    /usr/bin/updmap: Updating ls-R files.
    There indeed now is a 'Map ntx.map' at ~/.texlive/texmf-config/web2c/updmap.cfg . However, compilation of a document containg `\usepackage{newtx}` still fails (see the bttom of this wall of text):
    pdflatex test.tex
    This is pdfTeX, Version 3.1415926-2.3-1.40.12 (TeX Live 2012/dev/Arch Linux)
    restricted \write18 enabled.
    entering extended mode
    (./test.tex
    LaTeX2e <2011/06/27>
    Babel <v3.8m> and hyphenation patterns for english, dumylang, nohyphenation, ge
    rman-x-2011-07-01, ngerman-x-2011-07-01, afrikaans, ancientgreek, ibycus, arabi
    c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian, czech, danis
    h, dutch, ukenglish, usenglishmax, esperanto, estonian, ethiopic, farsi, finnis
    h, french, galician, german, ngerman, swissgerman, monogreek, greek, hungarian,
    icelandic, assamese, bengali, gujarati, hindi, kannada, malayalam, marathi, or
    iya, panjabi, tamil, telugu, indonesian, interlingua, irish, italian, kurmanji,
    lao, latin, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk, pol
    ish, portuguese, romanian, russian, sanskrit, serbian, serbianc, slovak, sloven
    ian, spanish, swedish, turkish, turkmen, ukrainian, uppersorbian, welsh, loaded
    (/usr/share/texmf-dist/tex/latex/base/minimal.cls
    Document Class: minimal 2001/05/25 Standard LaTeX minimal class
    ) (/usr/share/texmf-dist/tex/latex/libertine/libertine.sty
    (/usr/share/texmf-dist/tex/latex/graphics/keyval.sty)
    (/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty)
    (/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty)
    (/usr/share/texmf-dist/tex/latex/lettrine/lettrine.sty
    Loading lettrine.cfg
    (/usr/share/texmf-dist/tex/latex/lettrine/lettrine.cfg))
    (/usr/share/texmf-dist/tex/latex/tools/calc.sty)
    (/usr/share/texmf-dist/tex/latex/libertine/fxl.inc)
    (/usr/share/texmf-dist/tex/latex/libertine/fxb.inc)
    (/usr/share/texmf-dist/tex/latex/libertine/fxk.inc)
    (/usr/share/texmf-dist/tex/latex/libertine/fxi.inc))
    (/usr/share/texmf-dist/tex/latex/base/fontenc.sty
    (/usr/share/texmf-dist/tex/latex/base/t1enc.def))
    (/usr/share/texmf-dist/tex/latex/mh/mathtools.sty
    (/usr/share/texmf-dist/tex/latex/mh/mhsetup.sty)
    (/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty
    For additional information on amsmath, use the `?' option.
    (/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty
    (/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty))
    (/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty)
    (/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty)))
    (/home/janis/texmf/tex/latex/newtx/newtxmath.sty
    `newtxmath' v0.96, 2012/06/05 Math macros based on txfonts (msharpe)
    (/usr/share/texmf-dist/tex/generic/kastrup/binhex.tex)
    (/usr/share/texmf-dist/tex/latex/xkeyval/xkeyval.sty
    (/usr/share/texmf-dist/tex/generic/xkeyval/xkeyval.tex))) (./test.aux)
    (/home/janis/texmf/tex/latex/newtx/omlntxmi.fd)
    (/home/janis/texmf/tex/latex/newtx/omsntxsy.fd)
    (/home/janis/texmf/tex/latex/newtx/omxntxex.fd)
    (/home/janis/texmf/tex/latex/newtx/untxexa.fd)
    (/usr/share/texmf-dist/tex/latex/libertine/t1fxl.fd)
    (/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
    (/usr/share/texmf-dist/tex/latex/graphics/graphics.sty
    (/usr/share/texmf-dist/tex/latex/graphics/trig.sty)
    (/usr/share/texmf-dist/tex/latex/latexconfig/graphics.cfg)
    (/usr/share/texmf-dist/tex/latex/pdftex-def/pdftex.def
    (/usr/share/texmf-dist/tex/generic/oberdiek/infwarerr.sty)
    (/usr/share/texmf-dist/tex/generic/oberdiek/ltxcmds.sty)
    (/usr/share/texmf-dist/tex/context/base/supp-pdf.mkii
    [Loading MPS to PDF converter (version 2006.09.02).]
    ))) (/usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
    (/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty))
    (/usr/share/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
    (/usr/share/texmf-dist/tex/latex/oberdiek/grfext.sty
    (/usr/share/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty))
    (/usr/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty
    (/usr/share/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
    (/usr/share/texmf-dist/tex/generic/oberdiek/etexcmds.sty)))
    (/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg)))
    kpathsea: Running mktextfm ntxmi
    /usr/share/texmf/web2c/mktexnam: Could not map typeface abbreviation tx for ntxmi.
    /usr/share/texmf/web2c/mktexnam: Need to update /usr/share/texmf-dist/fonts/map/fontname/special.map?
    mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input ntxmi
    This is METAFONT, Version 2.718281 (TeX Live 2012/dev/Arch Linux)
    kpathsea: Running mktexmf ntxmi
    ! I can't find file `ntxmi'.
    <*> ...e:=ljfour; mag:=1; nonstopmode; input ntxmi
    Please type another input file name
    ! Emergency stop.
    <*> ...e:=ljfour; mag:=1; nonstopmode; input ntxmi
    Transcript written on mfput.log.
    grep: ntxmi.log: No such file or directory
    mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input ntxmi' failed to make ntxmi.tfm.
    kpathsea: Appending font creation commands to missfont.log.
    ! Font OML/ntxmi/m/it/10=ntxmi at 10.0pt not loadable: Metric (TFM) file not fo
    und.
    <to be read again>
    relax
    l.13 \begin{equation*}
    EDIT: Of course, everything else from the newtx pacakge was still in TEXMFHOME/tex/latex/newtx/ .
    Last edited by Stalafin (2012-06-19 20:08:30)

  • E71 does not connect to gps after ovi map 3.0 upgr...

    Hello.
    I have just upgraded my maps application and now I can not seem to connect to gps, the indicator is red. I tried settings and in positioning it says waiting for gps. Pls advise how I can use my maps again.
    Thank you.

    ballistictushar wrote:
    Phones with free navigation
    Nokia E72
    Nokia E71
    Nokia E66
    Nokia N97 mini Gold Edition
    Nokia N97mini
    Nokia N97
    Nokia N86 8MP
    Nokia X6 16GB
    Nokia 5800 XpressMusic
    Nokia 5235 Ovi Music Unlimited
    Nokia 5230
    To find Ovi Maps for other phones visit Maps Support-http://www.nokia.co.in/get-support-and-software/download-software/maps-support/compatibility-and-dow...
    How to install and setup GPS in nokia E-71.
    Firstly Install Nokia Ovi Suite (advance version of PC Suite) in your respected computer.
    http://www.nokia.co.in/get-support-and-software/download-software/nokia-ovi-suite
    After installation of Nokia Ovi Suite go to following link
    http://www.nokia.co.in/explore-services/ovi-maps/downloads?intc=ncomexpserv-fw-ilc-lft-con-na-ncomex...
    Now install the the second link file into your phone, i.e., "nokia_maps_3.03_10wk11_b04_s60_3.1_rom.Nocs.sis".
    After successful installation connect your phone with data cable in PC Suite (DON'T run PC suite application in your system) mode and open Nokia Ovi Suite application in your system.
    Now in Nokia Ovi Suite application click on View-Go to-Maps (make sure your system is connected to Internet and your mobile phone key pad doesn't get locked, if keypad autolock period is on switch it off for that moment and your phone is fully charged, now in maps select Asia in that India and download that India Map (103 MB) into your phone.
    Please Note that do not disconnect your phone from data cable else maps will not get downloaded and will not to be
    transferred to your phone.
    After successful installation of maps into your phone download "Voice Guidance Languages", which ever is preferred by you, if you really want to enjoy it. Like- English(UK)-with street names or in Hindi, Tamil, Urdu.
    Now you are almost done, just take your phone into your hand,
    Go to Maps then select Options-then Settings
    Internet-Connection-Offline ( don't worry your GPS will work fine as data bearer is Nokia which is free of charge, so just relax).
    Navigation-Drive Guidance-Select the desired Voice
    Walk Guidance-Select the desired Voice or you can set it to Beeps and Vibrations (if downloaded).
    Home Location- define you home location by searching in maps, this will make easier to drive back to home by simply selecting Drive Home option while using navigation.
    Now go to option Map-Categories-select the categories you want to be shown on the map.
    Its DONE, now search for any desired location press the selection button and then select Drive to or Walk to option and you will be connected to GPS.
    Please Note as GPS needs free environment so it may not work in home and generally it takes 10-15 minutes to connect so please be patient.
    Worked perfectly for me
    By the way, why doesn't the maps application work if I doenload all the maps instead of only India map??

  • E71 - how can i use the gps, please help

    I have never used GPS before, i got E71 last week, it says in the manual that there is an inbuilt gps receiver in it.
    From the discussion here it looked like i still need something else to use the GPS. I saw someone
    mentioned 'Mapping', does E71 come with this program or do i need to get it from somewhere?
    Can someone tell me how i can use the GPS in the E71? Is it possible to use gps in this phone without paying additional charges?
    Many thanks.
    Solved!
    Go to Solution.

    Phones with free navigation
    Nokia E72
    Nokia E71
    Nokia E66
    Nokia N97 mini Gold Edition
    Nokia N97mini
    Nokia N97
    Nokia N86 8MP
    Nokia X6 16GB
    Nokia 5800 XpressMusic
    Nokia 5235 Ovi Music Unlimited
    Nokia 5230
    To find Ovi Maps for other phones visit Maps Support-http://www.nokia.co.in/get-support-and-software/download-software/maps-support/compatibility-and-dow...
    How to install and setup GPS in nokia E-71.
    Firstly Install Nokia Ovi Suite (advance version of PC Suite) in your respected computer.
    http://www.nokia.co.in/get-support-and-software/download-software/nokia-ovi-suite
    After installation of Nokia Ovi Suite go to following link
    http://www.nokia.co.in/explore-services/ovi-maps/downloads?intc=ncomexpserv-fw-ilc-lft-con-na-ncomex...
    Now install the the second link file into your phone, i.e., "nokia_maps_3.03_10wk11_b04_s60_3.1_rom.Nocs.sis".
    After successful installation connect your phone with data cable in PC Suite (DON'T run PC suite application in your system) mode and open Nokia Ovi Suite application in your system.
    Now in Nokia Ovi Suite application click on View-Go to-Maps (make sure your system is connected to Internet and your mobile phone key pad doesn't get locked, if keypad autolock period is on switch it off for that moment and your phone is fully charged, now in maps select Asia in that India and download that India Map (103 MB) into your phone.
    Please Note that do not disconnect your phone from data cable else maps will not get downloaded and will not to be
    transferred to your phone.
    After successful installation of maps into your phone download "Voice Guidance Languages", which ever is preferred by you, if you really want to enjoy it. Like- English(UK)-with street names or in Hindi, Tamil, Urdu.
    Now you are almost done, just take your phone into your hand,
    Go to Maps then select Options-then Settings
    Internet-Connection-Offline ( don't worry your GPS will work fine as data bearer is Nokia which is free of charge, so just relax).
    Navigation-Drive Guidance-Select the desired Voice
    Walk Guidance-Select the desired Voice or you can set it to Beeps and Vibrations (if downloaded).
    Home Location- define you home location by searching in maps, this will make easier to drive back to home by simply selecting Drive Home option while using navigation.
    Now go to option Map-Categories-select the categories you want to be shown on the map.
    Its DONE, now search for any desired location press the selection button and then select Drive to or Walk to option and you will be connected to GPS.
    Please Note as GPS needs free environment so it may not work in home and generally it takes 10-15 minutes to connect so please be patient.

  • Language support for Hindi was there in previous version of Mozilla, but its missing in the latest version, whh? all the hindi websites are un-comprehencebile, I tried the OS but my OS does not have Hindi language in it.

    I have tried doing it through OS but to no avail for it does not have the Hindi language in its list. But the older version of Mozilla did supported the Hindi language websites (and that was the only reason i used Mozilla.) .This version does not supports that version(
    Firefox 4.0.1).

    Many thanks b Noir
    This is a copy of ONEof the keys  in the registry I changed  as told by Apple support today. I also have changed others as instructed by GEAR  software support to manually delete GEAR drivers (that I had installed but couldn't delete some of the others  they mentioned from Windows system 32. Then some bright spark at work told me I need the Gear drivers so  I downloaded the software and installed again.
    Sorry, just this minute went to insert image  and it is giving me a message saying this sort of content  is not allowed?.
    The most recent key I altered is in: HKey _local _machine. System\class - 4D36E965-E325-11CEBFC1-08002BE10318. Upper Filter data: Upper filter NTIDrvr  SiRem GEARAspiWDN.
    The GEARsoftware info about manually deleting  GEAR drive is from:
    http://www.gearsoftware.com/wiki/index.php?title=DRIVERS:_Windows_-_Updating%2C_ removing%2C_64_bit_versions%2C_etc
    I hope you can help

  • In Firefox 10.0.1 I am not able to see Marathi or Hindi script in gmail. Do I have to reset character encoding ? If so to what?

    In gmail there is a provision to type in Devanagari (Hindi or Marathi) but this does not work when I'm in Firefox 10.0.1
    If I use Google Chrome browser there is no problem

    I read a previous blog from a Mac user who was having an AirDrop issue. He resolved it by deleting his icloud account and reinstalling it. I figured what will it hurt to try this with my iPhone 5S. Well I am happy to say it worked. I recall recently changing my Apple ID password. This must have affected the Airdrop feature. When I reloaded my IClould account it started working. I don't know why but it's something you can try if all else fails. Hope this helps someone.

  • How to insert encoding  UTF8-unicode(hindi, marathi) in firebird ?

    hi
    i want to insert the data in firebired but the data is in "hindi" and "marathi".i am using java and servlet, then how to insert data in firebird with example, please reply, its urgent.

    hi
    i want to insert the data in firebired but the data is in "hindi" and "marathi".i am using java and servlet, then how to insert data in firebird with example, please reply, its urgent.

  • Marathi/Hindi font in Nokia Asha 503

    Hello
    Yesterday I bought Nokia Asha 503 and updated phone to latest software update by Nokia.
    It doesn't support Marathi/Hindi font. Can somebody please help me here?
    Thanks in advance.
    Abhijeet

    Hi jabhijeet,
    Welcome to the Nokia Support Discussions! 
    The language pack made available on a Nokia phone is market and country dependent. The Marathi/Hindi language is only available on Nokia phones intended for countries where the language is mainly used so it should be available in your device if it was originally purchased in India.
    BTW, before updating it to the latest software, are you able to see Marathi/Hindi font? 

  • Can not see Hindi/ Marathi font on my mobile

    I have blackberry 9810 and can not see marathi or hindi masseges in my mobile. I have downloaded blackberry software and tra to change the setting but i could not change the seting please do somethning regarding this  

    Hi and Welcome to the Community! Please start with this:Article ID: KB05305 Localization support for BlackBerry smartphonesIf the language(s) you desire is(are) listed there, then it is a matter of obtaining the proper OS package, one which contains your desired language(s). Then, it is a matter of installing that to your device, and while doing so including the language(s) you desire. Lastly, it is a matter of activating, on your device, your chosen language(s). So, given that, can you explain more fully exactly what you attempted? From your brief words, I cannot determine what you did at each of those steps. Good luck and let us know!

  • No marathi and Hindi langue support for nokia e 61

    Nokia E 61 is a popular baseness phone used in India but we face a great in convenience because at present the phone browser of E61 is not supporting marathi and Hindi fonts
    there are so many nokia users in India they are facing the problem Pl see the fact and do needful to solve this problem

    10-Sep-2008 06:30 PM
    nakhuda wrote:
    My exact feelings has been transformed into words. I fully agree that without Black Berry connect software stop calling E71 Business Phone. Mail for Exchange support is available but how many small to medium size companies can afford? It seems that Nokia is just intrested to sell phone without any customer Care but Nokia do remember that once you lose your customers then you will not be in a position to be number 1. Only and only customers can make you number 1 or 0. So pls act quickly on so many customers demand and launch Black Berry connect. Once Nokia will announce i am sure that atleast 20-30% customers who are using Black berry will shift to E-71. No doubt its a great phone but without black berry connect its nothing else then the normal mobile phone.
    Regards
    I agree with you but, nokia is starting their own email, problem is MFE & Nokia email doesnt support multiple email accounts, at one stage you really want few mail id's like personal, currently official, future official, etc. BB supports multiple email accounts at one go. So I strongly agree that Nokia should act now and get BB in all their new e-series phone.
    Jasdeep

  • How to enable/download/display hindi/marathi language in bb9790 bold os 7.1

    Please help on display/enable hindi lang in bb9790 bold os 7.1. Before os upgrade i was able to see msgs bt I'm not able to see them now. All appears as black box. Plz suggest

    Hi and Welcome to the Community!
    You need to ensure that you have an OS package installed to your device that contains the language you desire, as well as ensure that you have on your device fully activated the language. The simplest way is to, on a PC (you cannot do this on MAC):
    1) Make sure you have a current and complete backup of your BB...you can find complete instructions via the link in my auto-sig below.
    2) Uninstall, from your PC, any BB OS packages
    3) Make sure you have the BB Desktop Software already installed
    http://us.blackberry.com/software/desktop.html
    4) Download and install, to your PC, the BB OS package you desire:
    http://us.blackberry.com/support/downloads/download_sites.jsp
    It is sorted first by carrier -- so if all you want are the OS levels your carrier supports, your search will be quick. However, some carriers are much slower than others to release updates. To truly seek out the most up-to-date OS package for your BB, you must dig through and find all carriers that support your specific model BB, and then compare the OS levels that they support.
    Please use this KB as reference to make your selection:
    Article ID: KB05305 Localization support for BlackBerry smartphones
    5) Delete, on your PC, all copies of VENDOR.XML...there will be at least one, and perhaps 2, and they will be located in or similarly to (it changes based on your Windows version) these folders:
    C:\Program Files (x86)\Common Files\Research In Motion\AppLoader
    C:\Users\(your Windows UserName)\AppData\Roaming\Research In Motion\BlackBerry\Loader XML
    6a) For changing your installed BB OS level (upgrade or downgrade), you can launch the Desktop Software and connect your BB...the software should offer you the OS package you installed to your PC.
    6b) Or, for reloading your currently installed BB OS level as well as for changing it, bypass the Desktop Software and use LOADER.EXE directly, by proceeding to step 2 in this process:
    http://supportforums.blackberry.com/t5/BlackBerry-Device-Software/How-To-Reload-Your-Operating-Syste...
    Note that while written for "reload" and the Storm, it can be used to upgrade, downgrade, or reload any BB device model -- it all depends on the OS package you download and install to your PC.
    If, during the processes of 6a or 6b, your BB presents a "507" error, simply unplug the USB cord from the BB and re-insert it...don't do anything else...this should allow the install to continue.
    If you are on MAC, you are limited to only your carriers sanctioned OS packages...but can still use any levels that they currently sanction. See this procedure:
    KB19915How to perform a clean reload of BlackBerry smartphone application software using BlackBerry Desktop Software
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Does it support regional languages like marathi, gujrati, kannada etc for writing as well as reading ?

    Does Mac book pro with retina display support regonal languages like marathi,gujarati,kannada etc for typing any documents ?
    If it supports then what i need to do ?

    Dhiru50 wrote:
    Does Mac book pro with retina display support regonal languages like marathi,gujarati,kannada etc for typing any documents ?
    Yes, here is a list of keyboards:
    https://dl.dropboxusercontent.com/u/46870715/s/m10lmac8.html#typing
    You turn them on in system preferences/language & text/input sources.  Fonts take care of the themselves.

Maybe you are looking for

  • Error while creating table 'EDISEGMENT' entry for Transfer Structures

    Hi Guyz... I've been facing a few issues regarding activation of transfer structures. I'll explain the whole process...so it makes sense to you guys. I've initially activated the Transfer Structures in BI Content for Master Data. Later on we faced so

  • SPOP3 in MAIL ADAPTER

    Hi all! Is it possible to use a SPOP3 connection in mail_sender_adapter in order to get mails? Thank you all! Ignasi

  • How to create one form without table acces or view

    I am using portal 9.0.3; i want to create one form without acces to any table or view. There will be only 5 LOV ( radio group) and one botton . With this button i would like to read a specific file form the DB portal ( the name of the file will be th

  • Cover Flow Graphics

    My iTunes library has graphics that don't work. On the album photo, it looks fine - but in Cover Flow view, the album graphic is distorted (pixels of color show). I have uninstalled iTunes and reinstalled, but hasn't fixed problem. I am running ver.

  • Convert AND REPLACE all my Songs to MP3

    I want to save space on my iPod, so I want to convert my entire library to MP3. None of the songs are protected. I'm on a PC. I know I can select all the songs, and choose Advanced/Create MP3 version, but then I'll have two versions of every tune, an