Changeset 1179 in josm for trunk/src/org/openstreetmap/josm/gui
- Timestamp:
- 2008-12-25T12:25:20+01:00 (16 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/GettingStarted.java
r1169 r1179 51 51 } catch (IOException ioe) { 52 52 motdcontent = "<html><body>\n<h1>" + 53 tr("JOSM, theJava OpenStreetMapeditor") +53 "JOSM - " + tr("Java OpenStreetMap Editor") + 54 54 "</h1>\n<h2 align=\"center\">(" + 55 55 tr ("Message of the day not available") + … … 121 121 content = content.replace("<html>", "<html><style type=\"text/css\">\nbody { font-family: sans-serif; font-weight: bold; }\nh1 {text-align: center;}</style>"); 122 122 /* replace the wiki title */ 123 content = content.replace("J OSM, theJava OpenStreetMapeditor", tr("JOSM, the Java OpenStreetMap editor"));123 content = content.replace("Java OpenStreetMap Editor", tr("Java OpenStreetMap Editor")); 124 124 } 125 125 -
trunk/src/org/openstreetmap/josm/gui/MainApplet.java
r1169 r1179 126 126 127 127 public static void main(String[] args) { 128 final JFrame frame = new JFrame("Java OpenStreetMap Applet");128 final JFrame frame = new JFrame("Java OpenStreetMap Editor"); 129 129 MainApplet applet = new MainApplet(); 130 130 applet.setStub(new AppletStub() { -
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r1171 r1179 216 216 preConstructorInit(args); 217 217 splash.setStatus(tr("Creating main GUI")); 218 JFrame mainFrame = new JFrame(tr("Java OpenStreetMap -Editor"));218 JFrame mainFrame = new JFrame(tr("Java OpenStreetMap Editor")); 219 219 Main.parent = mainFrame; 220 220 final Main main = new MainApplication(mainFrame); -
trunk/src/org/openstreetmap/josm/gui/MapView.java
r1169 r1179 168 168 editLayer.listenerModified.add(new ModifiedChangedListener(){ 169 169 public void modifiedChanged(boolean value, OsmDataLayer source) { 170 JOptionPane.getFrameForComponent(Main.parent).setTitle((value?"*":"")+tr("Java OpenStreetMap - Editor")); 170 JOptionPane.getFrameForComponent(Main.parent).setTitle((value?"*":"") 171 +tr("Java OpenStreetMap Editor")); 171 172 } 172 173 }); -
trunk/src/org/openstreetmap/josm/gui/SplashScreen.java
r1169 r1179 65 65 66 66 // Add the name of this application 67 JLabel caption = new JLabel( tr("JOSM - Java OpenStreetMap Editor"));67 JLabel caption = new JLabel("JOSM - " + tr("Java OpenStreetMap Editor")); 68 68 caption.setFont(new Font("Helvetica", Font.BOLD, 20)); 69 69 gbc.gridheight = 1; … … 165 165 } 166 166 } 167 168 167 }
Note:
See TracChangeset
for help on using the changeset viewer.