Changeset 26355 in osm for applications
- Timestamp:
- 2011-07-17T12:43:35+02:00 (13 years ago)
- 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 320 320 HtmlPanel l = new HtmlPanel(); 321 321 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>"); 323 323 rbClear = new JRadioButton("<html>"+tr("Erase and transfer to password manager")+"</html>"); 324 324 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 232 232 } 233 233 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))); 238 235 } 239 236 pnlMessage.setText(text.toString());
Note:
See TracChangeset
for help on using the changeset viewer.