Ignore:
Timestamp:
2013-03-29T20:04:22+01:00 (12 years ago)
Author:
zverik
Message:

string fixes, button and menu update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/imagery_offset_db/src/iodb/SimpleOffsetQueryTask.java

    r29384 r29430  
    3030     */
    3131    public SimpleOffsetQueryTask( String query, String title ) {
    32         super(tr("Uploading"));
     32        super(ImageryOffsetTools.DIALOG_TITLE);
    3333        this.query = query;
    3434        this.title = title;
     
    121121    protected void finish() {
    122122        if( errorMessage != null ) {
    123             JOptionPane.showMessageDialog(Main.parent, errorMessage, tr("Imagery Offset"), JOptionPane.ERROR_MESSAGE);
     123            JOptionPane.showMessageDialog(Main.parent, errorMessage,
     124                    ImageryOffsetTools.DIALOG_TITLE, JOptionPane.ERROR_MESSAGE);
    124125        } else if( listener != null ) {
    125126            listener.queryPassed();
Note: See TracChangeset for help on using the changeset viewer.