Language of the map data shown

I use N8 T Chinese.  would like to use English in all layout and function key of the phone but want to show map data in Chinese.  Can I do that?

Hi parickngai,
The Map data normally follow the language set in the mobile before installing it. For instance, if you want the Map data in Chinese, you will have to set your phone to Chinese language first then install the map. The process goes as follows:
- Connect your phone to the computer and open Ovi Suite
- Make sure Ovi Suite picks up the phone
- Click on the Maps icon on Ovi Suite
- Click on your phone icon at the bottom left side
- Select "Delete Map Data" or "Remove Map Data"
- The Map Data will then be deleted from your phone
- Once done, go to the settings of your phone and change the language (if you are using a new Nokia device, e.g. E7, the phone will restart)
- Wait until Ovi Suite picks up the phone again
- The phone now is in the selected language
- Click on the Map icon on Ovi Suite
- Select Continent, then country and finally click on Download
Then Map data will then be transferred to your phone in the language set on the phone. Make sure that it is in Chinese language.
At this point, try to change the language of the phone again to English and hopefully this will not affect the Map data
Best of Luck
If the above post was helpful, please feel free to click on the green start on the left side.

Similar Messages

  • How do I submit a correction to the mapping data?

    I live next door to a '4WD track' that is inaccessible to cars (and most 4WD's!), yet the mapping data on Nokia handsets shows this track as a road - we've had numerous people using the GPS on their Nokia trying to get up the track with a car an either a) getting stuck or b) having to reverse all the way back down the track (being a track there is no where to turn around).
    How do I submit a correction to the mapping data to flag this track as inaccessible and prevent more cars from following the GPS up the track?
    Thanks,
    Michael

    u can try this link to report stuff: http://europe.nokia.com/get-support-and-software/product-support/maps-support/feedback
    if my post helped u out, please click the Star next to it to add some KUDOS to my name

  • TS1702 the mapping data in ios6.01 is terrible.

    For Australia we do not navigate by local government 'voting' areas, we navigate by suburbs. When will this terrible oversight be fixed??

    Well, thats an obscure 'greyed out' selection in maps - without glasses no one would have known it was there!!!!
    I have reported the bug, but hold no hope - might just revert back to ios5!

  • I live in an area with poor data reception. Will the Maps app work without internet access?

    I live in an area with poor data reception. Will the Maps app work without internet access?

    Google Maps
    Type in 'Ok maps' (no quotes) in the search and press enter
    It will download the map area shown on the screen for offline use

  • Maps Language - map data vs phone system

    Ovi Maps stores all available language versions of map data for a certain city (e.g. both Chinese & English for Hong Kong), but will only display the language according to the phone system settings.
    If I want to switch map languages I need to change phone settings then reboot then restart Ovi Maps and restore afterwards. Would really appreciate if such option made locally instead of system wide.

    I have suggested it on betalabs.nokia.com when ovi maps was 3.01 in beta.
    As you wrote, OM language interface depends by the phone language interface

  • Where is the map in a calendar's meeting?

    Hi,
    after installing OSX Mavericks I tried to insert a address to a meeting. But the map – as shown in Craig Federighi's demo – is not appearing.
    Is there a special format for addresses? Is it only for the US market (I am in Germany and have German language activated)?
    Thanks for a hint.
    CK

    Swipe Home page to the right and search for Maps
    http://i1224.photobucket.com/albums/ee374/Diavonex/1b09005d7a370df0e6d125d1a2d0d 919.jpg

  • RE: Dynamically mapping data to widgets

    One quick and dirty solution would be something like this (though not
    terribly efficient):
    newPanel : Panel;
    newPanel = <panelCreatedFromWindowWorkshop>.Clone(deep = TRUE);for childWidget in newPanel.children do
    -- check if the childWidget field name matches field name to be
    set
    if childWidget.name.isEqual(source=<..FieldNameToSet..>,
    ignoreCase=TRUE) then
    dataWidget : dataField = dataField(childWidget);
    if dataWidget.textvalue = NIL then
    dataWidget.textvalue = new;
    end if;
    -- set the textvalue of the childWidget to required
    value
    dataWidget.textvalue.setvalue('WORKS !');
    end if;
    end for;
    Your problem would have been directly solved if the Forte library class
    CompoundField provided a SetDataObject( ) method corresponding to the
    GetDataObject( ) method.
    According to Forte Help - "The GetDataObject method returns the object
    that the compound field is mapped to. If the compound field is not
    mapped to an object, this method returns NIL."
    Maybe Forte could consider providing this in a future release.
    Another option would have been to use the GetFieldByName( ) method on
    the newly created panel to get at the child widgets directly.
    According to Forte help - "GetFieldByName is designed for use in dynamic
    applications. For example, you can use GetFieldByName to retrieve the
    names of dynamically created fields for immediate use in dynamic
    applications."
    This works fine for compile-time named widgets, but I couldn't get it to
    work for the newPanel child widgets using the code below, or maybe I am
    missing something here.
    newPanel : Panel;
    newPanel = <panelCreatedFromWindowWorkshop>.Clone(deep = TRUE);newPanel.name.setvalue('newPanel');
    newPanel.parent = <aGridField>;
    dataWidget : dataField = dataField(newPanel.getFieldByName('age'));
    (OR)
    dataWidget : dataField =
    dataField(<aGridField>.getFieldByName('newPanel.age'));
    (OR)
    dataWidget : dataField =
    dataField(self.window.getFieldByName('newPanel.age'));
    In all cases the return value was NIL.
    Maybe someone from Forte could shed more light on this.
    Hope this helps.
    Prashant.
    From: Richard Finegan[SMTP:[email protected]]
    Reply To: Richard Finegan
    Sent: Thursday, August 13, 1998 2:27 PM
    To: 'Forte Users Mailing List'
    Subject: Dynamically mapping data to widgets
    Here's what I'm trying to do:
    I have a panel with a bunch of data fields that I've mapped to an
    object.
    I want to replicate the panel several times to programmatically
    populate a
    TabFolder (although the TabFolder bit isn't really relevant here, I
    think).
    But I can't figure out how to get at the mapped data in the replicas
    of my
    object...
    newPanel : Panel;
    newPanel = <panelCreatedFromWindowWorkshop>.Clone(deep = TRUE);
    panelCreatedFromWindowWorkshop.anAttributeOfObjMappedToPanel =
    something;
    // tada! "something" appears in a data field of the original panel
    newPanel.? = something; // how to do the same thing with the new
    panel?
    How do I map an object to the replicated panel? I've experimented
    with
    assigning "Widget.AppData" to a new object, but I can't seem to get it
    to
    do anything...
    Thanks in advance for your help.
    Richard Finegan
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Michael,
    did you find any solution?
    I've the same problem.

  • Photoshop CC on Windows 7 is saving the file "date" as the created date not the modified date

    I have been using a much older version of PS (CS2) and just decided to update to PS CC. I have installed the trial version of PS CC and will begin the CC subscription as soon as the trial expires.
    I have noticed that PS CC saves the (main) date of the files as the "created date" not the "modified date" as it pertains to Windows Explorer and the Windows OS.
    Here is what is happening: I have a file that I created in 2007 that I use for a template. It is sized to specific dimensions, etc. and when I do my save as, it automatically saves into the desired file folder, so that's why I use this as a template. I setup a new photo and then drag and drop it into my template, flatten the image and save as. When doing this with PS CS2, the date for the newly saved file was assigned as the modified date (current date and time). So, when I searched for the file in Windows Explorer or when I went to open the file, the date shown for the file was the modified date. NOW, with PS CC when I perform the exact same process and do a save as, the file date shown in Windows Explorer and/or when I go to open the file is showing as the created date (3/9/2007), the date that I created and saved the template I use. This is aggravating to me because now when I want to open a file and sort by date, the date shown in Windows Explorer is not accurate. As far as I can tell, this only happens in PS CC. When I open an old file with ID CC and do a save as, it applies the current date, not the created date. And, when I was using PS CS2, whenever I did a save as the current date was applied as well.
    In summary, when performing a save as, the created date is being applied as the main date instead of the modified date. The question is: Is there a way to change this so that the modified date can be applied as the main date for the file when performing a save as?

    Below are two files created the exact same way on the exact same computer: the top one was saved in PS CS2 and the bottom one was saved in PS CC. Both were saved using the "Save As" command. You will notice that when the "Save As" command was used in CS2 it updated the "Created:" date, however, in the CC version the "Created:" date was not updated, only the "Modified:" date was updated. Is there a way to update the "Created:" date when performing a "Save As" in PS CC?

  • Any official word on Maps data update for Symbian?

    Hello,
    if anyone else still is using Symbian phone...
    The wonders of the world are not over..
    I'm just updating new maps to my Nokia 808 with Nokia Suite 3.8.54.
    1/3 done and loading, will give later more comments as the full update is done...
    BR jeeveeas

    jeeveeas wrote: After little driving, I can see that the maps data is still little old. I'd estimete it's nearly 1 year old, maybe early summer 2014 (as my area was build some new motorways and part of it is already in data but not all).
    Confirmation HERE in Message 3

  • N95-2 Maps data missing

    Hi, I had downloaded Asia and Europe maps 2 days ago. It was working fine this morning but then all the maps data disappeared. I can only see the green background and the landmarks....... have anyone encountered this problem ?
    N95-2, RM-320, V31.0.015, Vista
    Ovi Maps 3.0, PCSuite 7.1.30.9

    Very strange. Never had this happen before. The maps may have gotten corrupted for some reason. Did you try downloading the maps again?

  • Why does map data space on N900 is limited to 5.5 ...

    Can anyone tell me the reason why there is a limit to the map data space on N900? Currently, I can only down load the map data (using Map Loader) up to 5.5 GBs even though I still have over 20 GBs left on my /home/user/Mydocs.
    Thanks

    1) Connect nokia n900 in the mass storage mode.
    2) Open windows explorer and make sure you are able to view hidden files.
    3) Go to the drive on n900 where the .qf and the qf (hidden) files are present.  
    4) Open both (I changed in both, make a copy if you are uncomfortable), replace the numeric value against "quota" with 8589934592 (for 8GB or whatever size u want), save and reboot n900 (remove the battery and replace to ensure the reboot is clean).
    5) Reconnect in mass storage mode and voila your map loader will see the 8GB

  • Why do the maps app bookmarks are erased every time I switch to another app?

    I am encountering several problems with the new maps application which are not related to the mapping data itself.
    My problems are:
    Every bookmark I keep dissapears after a while (mostly after I switch to another app, but sometimes it takes a little more switching before the bookmark is gone).
    I cannot access bookmarks when I try to set a route. There is no option to choose a starting/end point from a contact address or bookmark.
    Am I doing something wrong? I could not find any reference in other forums describing this problem and would appreciate any help.
    P.S.
    The first problem I describe was present also for the old maps application on iPhone 4S and iPhone 3.

    Thanks for explaining how app's loss of state can happen. However, I'm sure that the behavior of the four apps I mentioned is much worse than just a few months ago. Something must have changed, and iOS 7 is the main difference. The Kindle app behaves as it used to, but the others do not. Maybe I should note the problem in reviews of the apps themselves in the App Store -- and down rate the apps.

  • How do I parse map data?

    The data i want to parse looks something like this:
    sdf,dfffffs,safsf,asasrw,re6546eg,dfgert;
    gfgr,trt546,rgert,egrg,erg,ergretgreg,erg;
    basically its items seperate with a , and they are ended with a ;
    i want to make a 2d array out of that.
    my pseudocode:
    new string array [amountoflines] [amountofitemsinfirstline]
    for i=0 to amountoflines do (i++)
    while j>0 do
      while k>0 do
       array[i][j] = array[i][j]+characterat(k);
       if( "," ) k=-1;
       if( ";" ) j = -1;
    }would it work? what kind of methods do you suggest i use?

    Did i get iit?
    // inputstr = the map data
    String inputstr= new String("Sad,asf,sdf,dst;ret,ert,yyt,ryt;ry,tr,yt,ry;");
    // Creates an array and assigns it like this:
    // Line 1 : Sad,asf,sdf,dst;  (does it also assign the ";" ?)
    // Line 2 : ret,ert,yyt,ryt;
    // Line 3 : ry,tr,yt,ry;
    String[] tmpstr=inputstr.split(";");
    // Defines the "Map" Array
    ArrayList _2DArray=new ArrayList();
    // Goes through Line 1-3 (mentioned above)
    // For each line it:
    // Splits the items along the "," and stores them in a 1Dimensilnall String Array
    // Ads/Insterts that array into the correct spot for the 2D array
    for(int i=0;i<tmpstr.length;i++)_2DArray.add(i,tmpstr.split(","));Does When it splits test,test1 with "," does it also return the , ?

  • TS1702 Why is the icon for street view not showing up on the left side of the location on the maps app?

    Why is the icon for street view not showing up on the left side of the location on the maps app?

    Because the included Maps app no longer gets the maps data from Google, so no more street view.
    You can get a free Google Maps app from the iTunes App Store.

  • Direct download of Nokia Maps data

    Hi, 
    I am using Nokia 5235, and Nokia Ovi Suite 2.2.0.241, and when I am trying to update the map, it's making troubles, it erases my phone data but not completely download and updates with new map data, the application is being reset during download.
    So, is there any way to download the map data directly, and place in my mobile?

    There isn't an option to download chunks for map data for example for a whole country directly to the phone. You can allow your phone to download map data on the fly. To do this, you need to set Maps to Online and map data for the surrounding area will be downloaded as you drive along. You could scroll around the map to increase the area downloaded but it will be very tedious if you wanted to download the map data for a whole country.
    The current map download issue is related to the latest version of Ovi Suite. I personally got around this issue by downloading and installing the previous version of Ovi Suite which is V2.1.1.1. That worked fine for me earlier this week.

Maybe you are looking for

  • Why will itunes not install on my windows 8.1 machines

    I've tried 4 times to install iTunes on a new Sony windows 8.1 machine but it keeps telling me that the program is incompatible.  I have been using iTunes for years and had it on my old machine running Win 7.  With win 8.1 I keep getting error msgs t

  • Adobe Acrobat Pro 9.1.0 CPU at 100%

    I just install Acrobat 9.0 on a Dual Core 3.16gig with 4gig of ram. I'm on Windows XP SP2. I open Adobe and the CPU usage is at 50% all the time Adobe is open so i upgrade to 9.1.0 and try and i have the same problem. I don't do anything on the appli

  • Cannot open a layered pdf file (64mb only) inside PS CS5 "not enough memory"

    Hi! I cannot seem to open a pdf file inside PS CS5, I also created the file some 3 months ago, saving all the phostoshop layers in it. But now I can't open it inside the photoshop to retrieve the layers as I will be doing some changes. Unfortunately,

  • Create Adobe PDF Online Printer - Windows 7

    Has anyone successfully created a printer on Windows 7? I can't get it to work and I can't find instructions for Windows 7 and, so far, I'm not even sure the Help Ticket support person even understands what I'm asking.

  • Getting status as ERROR while instantiating Business Object in work flow?

    Hi, Getting status as ERROR while instantiating Business Object in work flow. How to rectify it. Tahnks in Advance. Moderator message: please have a look at the dedicated Workflow forum on SCN. Edited by: Thomas Zloch on Jan 19, 2012