Changeset 2828 in josm for trunk/src/org


Ignore:
Timestamp:
2010-01-12T17:18:56+01:00 (14 years ago)
Author:
stoecker
Message:

removed wrong translation calls

Location:
trunk/src/org/openstreetmap/josm
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/io/CredentialDialog.java

    r2711 r2828  
    185185            gc.weightx = 1.0;
    186186            gc.weighty = 0.0;
    187             lblWarning = new JMultilineLabel(tr(""));
     187            lblWarning = new JMultilineLabel("");
    188188            lblWarning.setFont(lblWarning.getFont().deriveFont(Font.ITALIC));
    189189            add(lblWarning, gc);
  • trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorisationUI.java

    r2806 r2828  
    379379        public TestAccessTokenAction() {
    380380            putValue(NAME, tr("Test Access Token"));
    381             putValue(SHORT_DESCRIPTION, tr(""));
     381            /* putValue(SHORT_DESCRIPTION, ""); */
    382382            putValue(SMALL_ICON, ImageProvider.get("about"));
    383383        }
  • trunk/src/org/openstreetmap/josm/io/OsmChangesetContentParser.java

    r2822 r2828  
    304304        }
    305305        try {
    306             progressMonitor.beginTask(tr(""));
     306            progressMonitor.beginTask("");
    307307            progressMonitor.indeterminateSubTask(tr("Parsing changeset content ..."));
    308308            SAXParserFactory.newInstance().newSAXParser().parse(source, new Parser());
  • trunk/src/org/openstreetmap/josm/io/OsmChangesetParser.java

    r2688 r2828  
    213213        OsmChangesetParser parser = new OsmChangesetParser();
    214214        try {
    215             progressMonitor.beginTask(tr(""));
     215            progressMonitor.beginTask("");
    216216            progressMonitor.indeterminateSubTask(tr("Parsing list of changesets..."));
    217217            InputSource inputSource = new InputSource(new InputStreamReader(source, "UTF-8"));
  • trunk/src/org/openstreetmap/josm/io/OsmServerUserInfoReader.java

    r2781 r2828  
    123123    public UserInfo fetchUserInfo(ProgressMonitor monitor) throws OsmTransferException {
    124124        try {
    125             monitor.beginTask(tr(""));
     125            monitor.beginTask("");
    126126            monitor.indeterminateSubTask(tr("Reading user info ..."));
    127127            InputStream in = getInputStream("user/details", monitor.createSubTaskMonitor(1, true));
Note: See TracChangeset for help on using the changeset viewer.