Ignore:
Timestamp:
2011-07-17T12:43:35+02:00 (13 years ago)
Author:
stoecker
Message:

i18n fixes

Location:
applications/editors/josm/plugins/native-password-manager/src/org/openstreetmap/josm/plugins/npm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/native-password-manager/src/org/openstreetmap/josm/plugins/npm/InitializationWizard.java

    r26354 r26355  
    320320            HtmlPanel l = new HtmlPanel();
    321321            l.setText("<html><b>"+tr("Found sensitive data that is still saved"
    322                     + " in JOSM's preference file (plain text).")+"<b></html>");
     322                    + " in JOSM''s preference file (plain text).")+"<b></html>");
    323323            rbClear = new JRadioButton("<html>"+tr("Erase and transfer to password manager")+"</html>");
    324324            rbKeep = new JRadioButton("<html>"+tr("No, just keep it")+"</html>");
  • applications/editors/josm/plugins/native-password-manager/src/org/openstreetmap/josm/plugins/npm/NPMCredentialsAgent.java

    r26335 r26355  
    232232        }
    233233        if (!sensitive.isEmpty()) {
    234             text.append(tr("<br><strong>Warning:</strong> There may be sensitive data left in your preference file. (")
    235                     + Utils.join(", ", sensitive)
    236                     + ")"
    237             );
     234            text.append(tr("<br><strong>Warning:</strong> There may be sensitive data left in your preference file. ({0})", Utils.join(", ", sensitive)));
    238235        }
    239236        pnlMessage.setText(text.toString());
Note: See TracChangeset for help on using the changeset viewer.