SourceForge: jmec64/jmec64: changeset 364:ae0030d9525b
use correct localization for the Select and Back buttons in the menus
authorjoergjahnke
Sun Oct 25 19:30:59 2009 +0100 (8 weeks ago)
changeset 364ae0030d9525b
parent 363 d0e4e40483c4
child 365 adef882c55f4
use correct localization for the Select and Back buttons in the menus
src/de/joergjahnke/c64/jme/BtMEC64MIDlet.java
src/de/joergjahnke/c64/jme/MEC64MIDlet.java
     1.1 --- a/src/de/joergjahnke/c64/jme/BtMEC64MIDlet.java	Sat Oct 24 13:07:24 2009 +0200
     1.2 +++ b/src/de/joergjahnke/c64/jme/BtMEC64MIDlet.java	Sun Oct 25 19:30:59 2009 +0100
     1.3 @@ -71,6 +71,8 @@
     1.4              this.btMenu = new Menu(btMenuText);
     1.5              this.btMenu.addItem(sendFileMenuText, getMenuIcon("send_sm.png"));
     1.6              this.btMenu.addItem(receiveFileMenuText, getMenuIcon("receive_sm.png"));
     1.7 +            this.btMenu.setSelectCommandText(LocalizationSupport.getMessage("Select"));
     1.8 +            this.btMenu.setBackCommandText(LocalizationSupport.getMessage("Back"));
     1.9              this.btMenu.setMenuListener(this);
    1.10  
    1.11              // add Bluetooth related menu items
     2.1 --- a/src/de/joergjahnke/c64/jme/MEC64MIDlet.java	Sat Oct 24 13:07:24 2009 +0200
     2.2 +++ b/src/de/joergjahnke/c64/jme/MEC64MIDlet.java	Sun Oct 25 19:30:59 2009 +0100
     2.3 @@ -366,6 +366,8 @@
     2.4          this.mainMenu.addItem(showLogMenuText, getMenuIcon("log_sm.png"));
     2.5          this.mainMenu.addItem(suspendMenuText, getMenuIcon("suspend_sm.png"));
     2.6          this.mainMenu.addItem(exitMenuText, getMenuIcon("exit_sm.png"));
     2.7 +        this.mainMenu.setSelectCommandText(LocalizationSupport.getMessage("Select"));
     2.8 +        this.mainMenu.setBackCommandText(LocalizationSupport.getMessage("Back"));
     2.9          this.mainMenu.setMenuListener(this);
    2.10  
    2.11          // create the C64 and a canvas to display its content