Changeset 4522 in osm for applications
- Timestamp:
- 2007-09-12T08:55:00+02:00 (17 years ago)
- Location:
- applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/AutoSaveEditLayerTimerTask.java
r4277 r4522 61 61 x.printStackTrace(); 62 62 JOptionPane.showMessageDialog(Main.parent, 63 tr("Error while exporting {0} ", file.getAbsoluteFile())+":\n" + x.getMessage(),63 tr("Error while exporting {0}: {1}", file.getAbsoluteFile(), x.getMessage()), 64 64 tr("Error"), 65 65 JOptionPane.ERROR_MESSAGE); -
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/AutoSaveGpsLayerTimerTask.java
r4277 r4522 77 77 x.printStackTrace(); 78 78 JOptionPane.showMessageDialog(Main.parent, 79 tr("Error while exporting {0} ", file.getAbsoluteFile())+":\n" + x.getMessage(),79 tr("Error while exporting {0}: {1}", file.getAbsoluteFile(), x.getMessage()), 80 80 tr("Error"), 81 81 JOptionPane.ERROR_MESSAGE); -
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/SurveyorPlugin.java
r4277 r4522 82 82 gpsPlugin.getLgpsMenu().add(surveyorMenuItem); 83 83 84 AutoSaveAction autoSaveAction = new AutoSaveAction( "AutoSave LiveData");84 AutoSaveAction autoSaveAction = new AutoSaveAction(tr("AutoSave LiveData")); 85 85 autoSaveAction.putValue(AbstractAction.ACCELERATOR_KEY, KeyStroke.getKeyStroke("alt ctrl S")); 86 86 JCheckBoxMenuItem autoSaveMenu = new JCheckBoxMenuItem(autoSaveAction); -
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/SurveyorShowAction.java
r4277 r4522 139 139 } catch (SAXException e) { 140 140 e.printStackTrace(); 141 JOptionPane.showMessageDialog(Main.parent, tr("Error parsing {0}: ", source)+e.getMessage());141 JOptionPane.showMessageDialog(Main.parent, tr("Error parsing {0}: {1}", source, e.getMessage())); 142 142 } 143 143 return component;
Note:
See TracChangeset
for help on using the changeset viewer.