Changeset 7376 in josm for trunk/src/org
- Timestamp:
- 2014-08-10T14:59:31+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java
r7082 r7376 5 5 6 6 import java.awt.Component; 7 import java.awt.GridBagConstraints; 7 8 import java.awt.GridBagLayout; 8 9 import java.io.ByteArrayOutputStream; … … 162 163 p.add(new JMultilineLabel( 163 164 tr("You have encountered an error in JOSM. Before you file a bug report " + 164 "make sure you have updated to the latest version of JOSM here:")), GBC.eol()); 165 "make sure you have updated to the latest version of JOSM here:")), 166 GBC.eol().fill(GridBagConstraints.HORIZONTAL)); 165 167 p.add(new UrlLabel(Main.getJOSMWebsite(),2), GBC.eop().insets(8,0,0,0)); 166 168 p.add(new JMultilineLabel( 167 169 tr("You should also update your plugins. If neither of those help please " + 168 "file a bug report in our bugtracker using this link:")), GBC.eol()); 170 "file a bug report in our bugtracker using this link:")), 171 GBC.eol().fill(GridBagConstraints.HORIZONTAL)); 169 172 p.add(getBugReportUrlLabel(urltext), GBC.eop().insets(8,0,0,0)); 170 173 p.add(new JMultilineLabel( 171 174 tr("There the error information provided below should already be " + 172 175 "filled in for you. Please include information on how to reproduce " + 173 "the error and try to supply as much detail as possible.")), GBC.eop()); 176 "the error and try to supply as much detail as possible.")), 177 GBC.eop().fill(GridBagConstraints.HORIZONTAL)); 174 178 p.add(new JMultilineLabel( 175 179 tr("Alternatively, if that does not work you can manually fill in the information " + 176 "below at this URL:")), GBC.eol() );180 "below at this URL:")), GBC.eol().fill(GridBagConstraints.HORIZONTAL)); 177 181 p.add(new UrlLabel(Main.getJOSMWebsite()+"/newticket",2), GBC.eop().insets(8,0,0,0)); 178 182 if (Utils.copyToClipboard(text)) { 179 p.add(new JLabel(tr("(The text has already been copied to your clipboard.)")), GBC.eop()); 183 p.add(new JLabel(tr("(The text has already been copied to your clipboard.)")), 184 GBC.eop().fill(GridBagConstraints.HORIZONTAL)); 180 185 } 181 186
Note:
See TracChangeset
for help on using the changeset viewer.