Changeset 3080 in josm
- Timestamp:
- 2010-03-05T02:26:00+01:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/oauth
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUI.java
r2990 r3080 94 94 kit.getStyleSheet().addRule(".warning-body {background-color:rgb(253,255,221);padding: 10pt; border-color:rgb(128,128,128);border-style: solid;border-width: 1px;}"); 95 95 kit.getStyleSheet().addRule("ol {margin-left: 1cm}"); 96 pnlMessage.setText("<html><body> "97 + "Please enter your OSM user name and password. The password will <strong>not</strong> be saved "98 + "in clear text in the JOSM preferences and it will be submitted to the OSM server <strong>only once</strong>. "99 + "Subsequent data upload requests don't use your password any more. "100 + "</p>"101 + "</body></html>"96 pnlMessage.setText("<html><body><p class=\"warning-body\">" 97 + tr("Please enter your OSM user name and password. The password will <strong>not</strong> be saved " 98 + "in clear text in the JOSM preferences and it will be submitted to the OSM server <strong>only once</strong>. " 99 + "Subsequent data upload requests don't use your password any more.") 100 + "</p>" 101 + "</body></html>" 102 102 ); 103 103 pnl.add(pnlMessage, gc); … … 146 146 pnlMessage.setText("<html><body>" 147 147 + "<p class=\"warning-body\">" 148 + "<strong>Warning:</strong> The password is transferred <strong>once</strong> in clear text "149 + "to the OSM website. <strong>Do not</strong> use a sensitive "150 + "password until the OSM server provides an encrypted communication channel (HTTPS)."151 + "</p>"152 + "</body></html>"148 + tr("<strong>Warning:</strong> The password is transferred <strong>once</strong> in clear text " 149 + "to the OSM website. <strong>Do not</strong> use a sensitive " 150 + "password until the OSM server provides an encrypted communication channel (HTTPS).") 151 + "</p>" 152 + "</body></html>" 153 153 ); 154 154 pnl.add(pnlMessage, gc); -
trunk/src/org/openstreetmap/josm/gui/oauth/OAuthAuthorizationWizard.java
r2990 r3080 110 110 pnlMessage = new HtmlPanel(); 111 111 pnlMessage.setText("<html><body>" 112 + "With OAuth you grant JOSM the right to upload map data and GPS tracks "113 + "on your behalf (<a href=\"urn:josm-oauth-info\">more info...</a>)."114 + "</body></html>"112 + tr("With OAuth you grant JOSM the right to upload map data and GPS tracks " 113 + "on your behalf (<a href=\"urn:josm-oauth-info\">more info...</a>).") 114 + "</body></html>" 115 115 ); 116 116 pnl.add(pnlMessage, gc);
Note:
See TracChangeset
for help on using the changeset viewer.