diff --git a/src/org/openstreetmap/josm/gui/io/CredentialDialog.java b/src/org/openstreetmap/josm/gui/io/CredentialDialog.java
old mode 100644
new mode 100755
index 5406ce9..cde3e51
|
a
|
b
|
import org.openstreetmap.josm.gui.JMultilineLabel;
|
| 34 | 34 | import org.openstreetmap.josm.gui.SideButton; |
| 35 | 35 | import org.openstreetmap.josm.gui.help.ContextSensitiveHelpAction; |
| 36 | 36 | import org.openstreetmap.josm.gui.help.HelpUtil; |
| | 37 | import org.openstreetmap.josm.gui.preferences.server.ProxyPreferencesPanel; |
| 37 | 38 | import org.openstreetmap.josm.io.OsmApi; |
| 38 | 39 | import org.openstreetmap.josm.tools.ImageProvider; |
| 39 | 40 | import org.openstreetmap.josm.tools.WindowGeometry; |
| … |
… |
public class CredentialDialog extends JDialog {
|
| 263 | 264 | tfPassword.setToolTipText(tr("Please enter the password for authenticating at your proxy server")); |
| 264 | 265 | lblHeading.setText( |
| 265 | 266 | "<html>" + tr("Authenticating at the HTTP proxy ''{0}'' failed. Please enter a valid username and a valid password.", |
| 266 | | System.getProperty("http.proxyHost") + ":" + System.getProperty("http.proxyPort")) + "</html>"); |
| | 267 | Main.pref.get(ProxyPreferencesPanel.PROXY_HTTP_HOST) + ":" + Main.pref.get(ProxyPreferencesPanel.PROXY_HTTP_PORT)) + "</html>"); |
| 267 | 268 | lblWarning.setText("<html>" + tr("Warning: depending on the authentication method the proxy server uses the password may be transferred unencrypted.") + "</html>"); |
| 268 | 269 | } |
| 269 | 270 | |