Changeset 4308 in josm for trunk/src


Ignore:
Timestamp:
2011-08-10T22:50:22+02:00 (13 years ago)
Author:
stoecker
Message:

fix #6683 - i18n fix

Location:
trunk/src/org/openstreetmap/josm/gui/dialogs/relation
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ChildRelationBrowser.java

    r4191 r4308  
    416416            } catch (Exception e) {
    417417                if (cancelled) {
    418                     System.out.println(tr("Warning: ignoring exception because task is cancelled. Exception: {0}", e
     418                    System.out.println(tr("Warning: Ignoring exception because task was cancelled. Exception: {0}", e
    419419                            .toString()));
    420420                    return;
     
    509509            } catch (Exception e) {
    510510                if (cancelled) {
    511                     System.out.println(tr("Warning: ignoring exception because task is cancelled. Exception: {0}", e
     511                    System.out.println(tr("Warning: Ignoring exception because task was cancelled. Exception: {0}", e
    512512                            .toString()));
    513513                    return;
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/DownloadRelationMemberTask.java

    r4154 r4308  
    144144        } catch (Exception e) {
    145145            if (cancelled) {
    146                 System.out.println(tr("Warning: ignoring exception because task is cancelled. Exception: {0}", e
     146                System.out.println(tr("Warning: Ignoring exception because task was cancelled. Exception: {0}", e
    147147                        .toString()));
    148148                return;
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/DownloadRelationTask.java

    r3083 r4308  
    107107        } catch (Exception e) {
    108108            if (cancelled) {
    109                 System.out.println(tr("Warning: ignoring exception because task is cancelled. Exception: {0}", e
     109                System.out.println(tr("Warning: Ignoring exception because task was cancelled. Exception: {0}", e
    110110                        .toString()));
    111111                return;
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ParentRelationLoadingTask.java

    r3225 r4308  
    192192        } catch(Exception e) {
    193193            if (cancelled) {
    194                 System.out.println(tr("Warning: Ignoring exception because task is cancelled. Exception: {0}", e.toString()));
     194                System.out.println(tr("Warning: Ignoring exception because task was cancelled. Exception: {0}", e.toString()));
    195195                return;
    196196            }
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTree.java

    r4191 r4308  
    156156            } catch(Exception e) {
    157157                if (cancelled) {
    158                     System.out.println(tr("Warning: ignoring exception because task was cancelled. Exception was: {0}", e.toString()));
     158                    System.out.println(tr("Warning: Ignoring exception because task was cancelled. Exception: {0}", e.toString()));
    159159                    return;
    160160                }
Note: See TracChangeset for help on using the changeset viewer.