Changeset 23474 in osm for applications/editors/josm


Ignore:
Timestamp:
2010-10-05T00:42:20+02:00 (14 years ago)
Author:
postfix
Message:

'some new internationalized messages'

Location:
applications/editors/josm/plugins/smed
Files:
4 added
6 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed/build.xml

    r23473 r23474  
    120120                                <attribute name="Plugin-Link" value="http://openseamap.org/"/>
    121121                                <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
     122                                <!--
    122123                                <attribute name="Plugin-Version" value="23456"/>
    123                                 <!--
     124                                -->
    124125                                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    125                                  -->
     126                                 
    126127                        </manifest>
    127128                </jar>
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/OSeaM.java

    r23445 r23474  
    11package oseam;
     2
     3import static org.openstreetmap.josm.tools.I18n.tr;
    24
    35import javax.swing.ImageIcon;
     
    1921                osm = new OSeaMAction();
    2022                osm.init();
    21                 manager.setString("it works realy fine");
     23                manager.setString(tr("it works realy fine"));
    2224                return osm.getPM01SeaMap();
    2325        }
    2426
    2527        @Override
    26         public String getInfo() {return "mapping seamarks"; }
     28        public String getInfo() {return tr("mapping seamarks"); }
    2729
    2830        @Override
    29         public String getName() {return "Seamarks"; }
     31        public String getName() {return tr("Seamarks"); }
    3032
    3133        @Override
    3234        public void setPluginManager(SmedPluginManager manager) {
    33                 this.manager = manager;
     35                OSeaM.manager = manager;
    3436        }
    3537
  • applications/editors/josm/plugins/smed/src/smed/Smed.java

    r23459 r23474  
    88import java.net.URL;
    99import java.net.URLClassLoader;
    10 import java.util.Arrays;
    1110import java.util.Enumeration;
    12 import java.util.List;
     11import java.util.ResourceBundle;
    1312import java.util.jar.JarEntry;
    1413import java.util.jar.JarFile;
     
    2322
    2423import smed.io.SmedFile;
    25 import smed.plug.SmedPluginApp;
    26 import smed.plug.ifc.SmedPluggable;
    2724import smed.plug.util.JARFileFilter;
    28 import smed.plug.util.SmedPluginLoader;
    2925import smed.tabs.SmedTabAction;
    3026
  • applications/editors/josm/plugins/smed/src/smed/menu/SmedMenuBar.java

    r23382 r23474  
    11package smed.menu;
    22
     3import static org.openstreetmap.josm.tools.I18n.tr;
     4
    35import java.awt.event.KeyEvent;
    4 import java.util.ArrayList;
    5 import java.util.List;
     6import java.util.ResourceBundle;
    67
    7 import javax.swing.DefaultListModel;
    88import javax.swing.JMenu;
    99import javax.swing.JMenuBar;
     
    1111
    1212import smed.menu.file.TabManager;
    13 import smed.plug.ifc.SmedPluggable;
    14 import smed.tabs.SmedTabbedPane;
    1513
    1614public class SmedMenuBar extends JMenuBar {
     
    2422     JMenu menu, submenu;
    2523     JMenuItem menuItem;
    26      private List<SmedPluggable> plugins = null;
    2724     
    2825     public SmedMenuBar() {
     26        ResourceBundle keyEvents = ResourceBundle.getBundle("smed.keys.Events");
     27       
    2928        menuBar = new JMenuBar();
    3029
    31         menu = new JMenu("File");
    32         menu.setMnemonic(KeyEvent.VK_F);
     30        menu = new JMenu(tr("File"));
     31        // menu.setMnemonic(KeyEvent.VK_F);
     32        menu.setMnemonic((Integer) keyEvents.getObject("SmedMenuBar.001"));
     33       
    3334        menu.getAccessibleContext().setAccessibleDescription(
    3435                "The only menu in this program that has menu items");
  • applications/editors/josm/plugins/smed/src/smed/menu/file/TabManager.java

    r23419 r23474  
    11package smed.menu.file;
    22
     3import static org.openstreetmap.josm.tools.I18n.tr;
    34
    45import javax.swing.DefaultListModel;
     
    186187                        tabButtonCancel.setBounds(new Rectangle(254, 44, 130, 30));
    187188                        tabButtonCancel.setFont(new Font("Dialog", Font.BOLD, 12));
    188                         tabButtonCancel.setText("Cancel");
     189                        tabButtonCancel.setText(tr("Cancel"));
    189190                        tabButtonCancel.addActionListener(this);
    190191                        tabButtonCancel.setActionCommand("cancel");
     
    203204                        tabButtonUndo.setBounds(new Rectangle(254, 84, 130, 30));
    204205                        tabButtonUndo.setFont(new Font("Dialog", Font.BOLD, 12));
    205                         tabButtonUndo.setText("Undo");
     206                        tabButtonUndo.setText(tr("Undo"));
    206207                        tabButtonUndo.addActionListener(this);
    207208                        tabButtonUndo.setActionCommand("undo");
     
    220221                        tabButtonLoad.setBounds(new Rectangle(186, 328, 104, 30));
    221222                        tabButtonLoad.setFont(new Font("Dialog", Font.PLAIN, 12));
    222                         tabButtonLoad.setText("Load");
     223                        tabButtonLoad.setText(tr("Load"));
    223224                        tabButtonLoad.addActionListener(this);
    224225                        tabButtonLoad.setActionCommand("load");
     
    237238                        tabButtonSave.setBounds(new Rectangle(293, 328, 104, 30));
    238239                        tabButtonSave.setFont(new Font("Dialog", Font.PLAIN, 12));
    239                         tabButtonSave.setText("Save");
     240                        tabButtonSave.setText(tr("Save"));
    240241                        tabButtonSave.addActionListener(this);
    241242                        tabButtonSave.setActionCommand("save");
     
    254255                        tabButtonDelete.setBounds(new Rectangle(186, 362, 104, 30));
    255256                        tabButtonDelete.setFont(new Font("Dialog", Font.PLAIN, 12));
    256                         tabButtonDelete.setText("Delete");
     257                        tabButtonDelete.setText(tr("Delete"));
    257258                        tabButtonDelete.addActionListener(this);
    258259                        tabButtonDelete.setActionCommand("delete");
     
    271272                        tabButtonVisible.setBounds(new Rectangle(293, 362, 104, 30));
    272273                        tabButtonVisible.setFont(new Font("Dialog", Font.PLAIN, 12));
    273                         tabButtonVisible.setText("invisible");
     274                        tabButtonVisible.setText(tr("invisible"));
    274275                        tabButtonVisible.addActionListener(this);
    275276                        tabButtonVisible.setActionCommand("invisible");
     
    288289                        tabButtonAll.setBounds(new Rectangle(92, 300, 72, 20));
    289290                        tabButtonAll.setFont(new Font("Dialog", Font.PLAIN, 12));
    290                         tabButtonAll.setText("all");
     291                        tabButtonAll.setText(tr("all"));
    291292                        tabButtonAll.addActionListener(this);
    292293                        tabButtonAll.setActionCommand("all");
     
    305306                        tabButtonNone.setBounds(new Rectangle(166, 300, 72, 20));
    306307                        tabButtonNone.setFont(new Font("Dialog", Font.PLAIN, 12));
    307                         tabButtonNone.setText("none");
     308                        tabButtonNone.setText(tr("none"));
    308309                        tabButtonNone.addActionListener(this);
    309310                        tabButtonNone.setActionCommand("none");
  • applications/editors/josm/plugins/smed/src/smed/tabs/SmedTabAction.java

    r23459 r23474  
    1313import javax.swing.JTextField;
    1414import javax.swing.SwingUtilities;
    15 import javax.swing.UIManager;
    1615import javax.swing.WindowConstants;
    1716
     
    3433        private JMenuItem osmItem =null;
    3534        public static JTextField smedStatusBar = null;
     35        private static String editor =tr("SeaMap Editor");
    3636       
    3737    public SmedTabAction() {
    38         super( tr("Seamap Editor"), "Smed",tr("Seanap Editor"), Shortcut.registerShortcut(
     38        super( editor, "Smed",editor, Shortcut.registerShortcut(
    3939                                "tools:Semmaps",
    40                                 tr("Tool: {0}", tr("Seamap Editor")), KeyEvent.VK_K, //$NON-NLS-1$ //$NON-NLS-2$
     40                                tr("Tool: {0}", editor), KeyEvent.VK_K, //$NON-NLS-1$ //$NON-NLS-2$
    4141                                Shortcut.GROUP_EDIT, Shortcut.SHIFT_DEFAULT), true);
    4242    }
     
    6060    protected void createAndShowTabs() {
    6161        //Create and set up the window.
    62         frame = new JFrame("TabbedPaneDemo");
     62        frame = new JFrame(editor);
    6363        smedStatusBar = new JTextField();
    6464        frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
Note: See TracChangeset for help on using the changeset viewer.