Ignore:
Timestamp:
2011-08-11T00:26:21+02:00 (13 years ago)
Author:
stoecker
Message:

fix #6680, fix #6677 - i18n issues

Location:
trunk/src/org/openstreetmap/josm/actions/upload
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/upload/ApiPreconditionCheckerHook.java

    r3719 r4310  
    1717import org.openstreetmap.josm.io.OsmApi;
    1818import org.openstreetmap.josm.io.OsmApiInitializationException;
    19 import org.openstreetmap.josm.io.OsmTransferCancelledException;
     19import org.openstreetmap.josm.io.OsmTransferCanceledException;
    2020
    2121public class ApiPreconditionCheckerHook implements UploadHook {
     
    3939                    return false;
    4040            }
    41         } catch(OsmTransferCancelledException e){
     41        } catch(OsmTransferCanceledException e){
    4242            return false;
    4343        } catch (OsmApiInitializationException e) {
  • trunk/src/org/openstreetmap/josm/actions/upload/ValidateUploadHook.java

    r4097 r4310  
    133133
    134134        ExtendedDialog ed = new ExtendedDialog(Main.parent,
    135                 tr("Supicious data found. Upload anyway?"),
     135                tr("Suspicious data found. Upload anyway?"),
    136136                new String[] {tr("Continue upload"), tr("Cancel")});
    137137        ed.setButtonIcons(new String[] {"ok.png", "cancel.png"});
Note: See TracChangeset for help on using the changeset viewer.