Index: /trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUI.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUI.java	(revision 3079)
+++ /trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUI.java	(revision 3080)
@@ -94,10 +94,10 @@
         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;}");
         kit.getStyleSheet().addRule("ol {margin-left: 1cm}");
-        pnlMessage.setText("<html><body>"
-                + "Please enter your OSM user name and password. The password will <strong>not</strong> be saved "
-                + "in clear text in the JOSM preferences and it will be submitted to the OSM server <strong>only once</strong>. "
-                + "Subsequent data upload requests don't use your password any more. "
-                + "</p>"
-                + "</body></html>"
+        pnlMessage.setText("<html><body><p class=\"warning-body\">"
+                + tr("Please enter your OSM user name and password. The password will <strong>not</strong> be saved "
+                        + "in clear text in the JOSM preferences and it will be submitted to the OSM server <strong>only once</strong>. "
+                        + "Subsequent data upload requests don't use your password any more.")
+                        + "</p>"
+                        + "</body></html>"
         );
         pnl.add(pnlMessage, gc);
@@ -146,9 +146,9 @@
         pnlMessage.setText("<html><body>"
                 + "<p class=\"warning-body\">"
-                + "<strong>Warning:</strong> The password is transferred <strong>once</strong> in clear text "
-                + "to the OSM website. <strong>Do not</strong> use a sensitive "
-                + "password until the OSM server provides an encrypted communication channel (HTTPS)."
-                + "</p>"
-                + "</body></html>"
+                + tr("<strong>Warning:</strong> The password is transferred <strong>once</strong> in clear text "
+                        + "to the OSM website. <strong>Do not</strong> use a sensitive "
+                        + "password until the OSM server provides an encrypted communication channel (HTTPS).")
+                        + "</p>"
+                        + "</body></html>"
         );
         pnl.add(pnlMessage, gc);
Index: /trunk/src/org/openstreetmap/josm/gui/oauth/OAuthAuthorizationWizard.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/oauth/OAuthAuthorizationWizard.java	(revision 3079)
+++ /trunk/src/org/openstreetmap/josm/gui/oauth/OAuthAuthorizationWizard.java	(revision 3080)
@@ -110,7 +110,7 @@
         pnlMessage = new HtmlPanel();
         pnlMessage.setText("<html><body>"
-                + "With OAuth you grant JOSM the right to upload map data and GPS tracks "
-                + "on your behalf (<a href=\"urn:josm-oauth-info\">more info...</a>)."
-                + "</body></html>"
+                + tr("With OAuth you grant JOSM the right to upload map data and GPS tracks "
+                        + "on your behalf (<a href=\"urn:josm-oauth-info\">more info...</a>).")
+                        + "</body></html>"
         );
         pnl.add(pnlMessage, gc);
