How to change multiple commands label text from default "Menu" to "Go to"

I m new in J2me and J2me polish and having problems in label of command.

Here I code that add multiple commands

Command chPinCom = new Command("Change Pin", Command.SCREEN, 2);

Command accCom = new Command("Account", Command.SCREEN, 2);

Command favCom = new Command("Favourites", Command.SCREEN, 2);

the code that add commands in list

listScr.addCommand(chPinCom);

listScr.addCommand(accCom);

listScr.addCommand(favNumCom);

listScr is the type of LIst

Please help that hoe I change commands label text from default "Menu" to "Go to" that showed in right bottom on the screen

[644 byte] By [basit_cheetaa] at [2007-10-3 11:31:24]
# 1
as far as i know, there is no way to do that...if your phone (or emulator) only has 2 soft keys, once you assign 3 or more commands, they will be put together under the "menu" key...
B_Bzrra at 2007-7-15 13:58:03 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2

It's possible see book "Pro J2ME Polish Open Source Wireless Java Tools Suite"on page 90 ....see Localizing the J2ME Polish GUI

I just change my build.xml file and add one more variable like

<variable name="polish.command.options" value="Go To"/>

and it's working fine..

basit_cheetaa at 2007-7-15 13:58:03 > top of Java-index,Java Mobility Forums,Java ME Technologies...