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

i18n fixes

Location:
applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/DownloadSignedOsmDataTask.java

    r25269 r26509  
    2525public class DownloadSignedOsmDataTask  extends PleaseWaitRunnable {
    2626
    27         private boolean cancelled;
     27        private boolean canceled;
    2828        private Exception lastException;
    2929        private final Collection<OsmPrimitive> missing;
     
    4444        @Override
    4545        protected void cancel() {
    46                 cancelled = true;
     46                canceled = true;
    4747                synchronized(this) {
    4848                        if (objectReader != null) {
     
    5555        protected void finish() {
    5656                Main.map.repaint();
    57                 if (cancelled)
     57                if (canceled)
    5858                        return;
    5959                if (lastException != null) {
     
    7575                try {
    7676                        synchronized (this) {
    77                                 if (cancelled) return;
     77                                if (canceled) return;
    7878                                objectReader = new MultiFetchServerObjectReader();
    7979                        }
     
    8787                                return;
    8888                        synchronized (this) {
    89                                 if (cancelled) return;
     89                                if (canceled) return;
    9090                                objectReader = null;
    9191                        }
     
    103103
    104104                } catch (Exception e) {
    105                         if (cancelled) {
    106                                 System.out.println(tr("Warning: ignoring exception because task is cancelled. Exception: {0}", e.toString()));
     105                        if (canceled) {
     106                                System.out.println(tr("Warning: ignoring exception because task is canceled. Exception: {0}", e.toString()));
    107107                                return;
    108108                        }
  • applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/KeyGenerationTask.java

    r24389 r26509  
    1212public class KeyGenerationTask extends PleaseWaitRunnable {
    1313
    14         private boolean cancelled;
     14        private boolean canceled;
    1515        private Exception lastException;
    1616
     
    2121        @Override
    2222        protected void cancel() {
    23                 cancelled = true;
     23                canceled = true;
    2424                synchronized(this) {
    2525                        /*              if (objectReader != null) {
     
    3131        @Override
    3232        protected void finish() {
    33                 if (cancelled)
     33                if (canceled)
    3434                        return;
    3535                if (lastException != null) {
     
    4444                try {
    4545                        /*                      synchronized (this) {
    46                                 if (cancelled) return;
     46                                if (canceled) return;
    4747                                objectReader = new MultiFetchServerObjectReader();
    4848                        }
     
    5656                                return;
    5757                        synchronized (this) {
    58                                 if (cancelled) return;
     58                                if (canceled) return;
    5959                                objectReader = null;
    6060                        }
     
    7171                         */
    7272                } catch (Exception e) {
    73                         if (cancelled) {
    74                                 System.out.println(tr("Warning: ignoring exception because task is cancelled. Exception: {0}", e
     73                        if (canceled) {
     74                                System.out.println(tr("Warning: ignoring exception because task is canceled. Exception: {0}", e
    7575                                                .toString()));
    7676                                return;
Note: See TracChangeset for help on using the changeset viewer.