Changeset 13842 in josm for trunk/src/org/openstreetmap/josm/actions
- Timestamp:
- 2018-05-26T17:11:30+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/org/openstreetmap/josm/actions/AbstractInfoAction.java ¶
r13434 r13842 75 75 new ButtonSpec( 76 76 tr("Continue"), 77 ImageProvider .get("ok"),77 new ImageProvider("ok"), 78 78 trn("Click to continue and to open {0} browser", "Click to continue and to open {0} browsers", 79 79 numBrowsers, numBrowsers), … … 82 82 new ButtonSpec( 83 83 tr("Cancel"), 84 ImageProvider .get("cancel"),84 new ImageProvider("cancel"), 85 85 tr("Click to abort launching external browsers"), 86 86 null // no specific help topic -
TabularUnified trunk/src/org/openstreetmap/josm/actions/MergeNodesAction.java ¶
r13611 r13842 222 222 new ButtonSpec( 223 223 tr("Abort Merging"), 224 ImageProvider .get("cancel"),224 new ImageProvider("cancel"), 225 225 tr("Click to abort merging nodes"), 226 226 null /* no special help topic */ -
TabularUnified trunk/src/org/openstreetmap/josm/actions/RestartAction.java ¶
r13647 r13842 22 22 import org.openstreetmap.josm.spi.preferences.Config; 23 23 import org.openstreetmap.josm.tools.ImageProvider; 24 import org.openstreetmap.josm.tools.ImageProvider.ImageSizes; 24 25 import org.openstreetmap.josm.tools.Logging; 25 26 import org.openstreetmap.josm.tools.Shortcut; … … 205 206 return new ButtonSpec( 206 207 tr("Restart"), 207 ImageProvider .get("restart"),208 new ImageProvider("restart").setSize(ImageSizes.LARGEICON).get(), 208 209 tr("Restart the application."), 209 210 ht("/Action/Restart"), … … 219 220 return new ButtonSpec( 220 221 tr("Cancel"), 221 ImageProvider .get("cancel"),222 new ImageProvider("cancel"), 222 223 tr("Click to restart later."), 223 224 null /* no specific help context */ -
TabularUnified trunk/src/org/openstreetmap/josm/actions/SimplifyWayAction.java ¶
r13540 r13842 72 72 new ButtonSpec( 73 73 tr("Yes"), 74 ImageProvider .get("ok"),74 new ImageProvider("ok"), 75 75 tr("Simplify all selected ways"), 76 null 77 ), 78 new ButtonSpec( 79 tr("Cancel"), 80 ImageProvider.get("cancel"), 81 tr("Cancel operation"), 82 null 83 ) 76 null), 77 new ButtonSpec( 78 tr("Cancel"), 79 new ImageProvider("cancel"), 80 tr("Cancel operation"), 81 null) 84 82 }; 85 83 return 0 == HelpAwareOptionPane.showOptionDialog( 86 84 Main.parent, 87 tr( 88 "The selection contains {0} ways. Are you sure you want to simplify them all?", 89 numWays 90 ), 91 tr("Simplify ways?"), 92 JOptionPane.WARNING_MESSAGE, 93 null, // no special icon 94 options, 95 options[0], 96 ht("/Action/SimplifyWay#ConfirmSimplifyAll") 85 tr("The selection contains {0} ways. Are you sure you want to simplify them all?", numWays), 86 tr("Simplify ways?"), 87 JOptionPane.WARNING_MESSAGE, 88 null, // no special icon 89 options, 90 options[0], 91 ht("/Action/SimplifyWay#ConfirmSimplifyAll") 97 92 ); 98 93 } -
TabularUnified trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadTaskList.java ¶
r13612 r13842 164 164 new ButtonSpec( 165 165 tr("Check on the server"), 166 ImageProvider .get("ok"),166 new ImageProvider("ok"), 167 167 tr("Click to check whether objects in your local dataset are deleted on the server"), 168 null /* no specific help topic */ 169 ), 170 new ButtonSpec( 171 tr("Ignore"), 172 ImageProvider.get("cancel"), 173 tr("Click to abort and to resume editing"), 174 null /* no specific help topic */ 175 ), 168 null /* no specific help topic */), 169 new ButtonSpec( 170 tr("Ignore"), 171 new ImageProvider("cancel"), 172 tr("Click to abort and to resume editing"), 173 null /* no specific help topic */), 176 174 }; 177 175
Note:
See TracChangeset
for help on using the changeset viewer.