Changeset 1676 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2009-06-17T09:02:25+02:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/GpxExportAction.java
r1574 r1676 90 90 JTextField authorName = new JTextField(Main.pref.get("lastAuthorName")); 91 91 p.add(authorName, GBC.eol().fill(GBC.HORIZONTAL)); 92 JLabel emailLabel = new JLabel(tr("E mail"));92 JLabel emailLabel = new JLabel(tr("E-Mail")); 93 93 p.add(emailLabel, GBC.std().insets(10,0,5,0)); 94 94 JTextField email = new JTextField(Main.pref.get("osm-server.username")); -
trunk/src/org/openstreetmap/josm/actions/HelpAction.java
r1520 r1676 205 205 if(url.equals(langurl)) 206 206 { 207 txt = ("<HTML>"+tr("Help page missing. Create it in <A HREF=\"{0}\">english</A>.",207 txt = ("<HTML>"+tr("Help page missing. Create it in <A HREF=\"{0}\">english</A>.", 208 208 url+"?action=edit")+"</HTML>"); 209 209 } 210 210 else 211 211 { 212 txt = ("<HTML>"+tr("Help page missing. Create it in <A HREF=\"{0}\">english</A> or <A HREF=\"{1}\">your language</A>.",212 txt = ("<HTML>"+tr("Help page missing. Create it in <A HREF=\"{0}\">english</A> or <A HREF=\"{1}\">your language</A>.", 213 213 url+"?action=edit", langurl+"?action=edit")+"</HTML>"); 214 214 } -
trunk/src/org/openstreetmap/josm/actions/SaveActionBase.java
r1653 r1676 248 248 * Check the data set if it would be empty on save. It is empty, if it contains 249 249 * no objects (after all objects that are created and deleted without being 250 * transfer ed to the server have been removed).250 * transferred to the server have been removed). 251 251 * 252 252 * @return <code>true</code>, if a save result in an empty data set. -
trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadOsmTaskList.java
r1675 r1676 93 93 if(! errors.equals("")) { 94 94 JOptionPane.showMessageDialog(Main.parent, 95 tr("The following errors occur ed during mass download:") + "\r\n" + errors,95 tr("The following errors occurred during mass download:") + "\r\n" + errors, 96 96 tr("Errors during Download"), 97 97 JOptionPane.ERROR_MESSAGE); -
trunk/src/org/openstreetmap/josm/command/RelationMemberConflictResolverCommand.java
r1631 r1676 50 50 return new DefaultMutableTreeNode( 51 51 new JLabel( 52 tr("Resolve conflicts in member list of ofrelation {0}", my.id),52 tr("Resolve conflicts in member list of relation {0}", my.id), 53 53 ImageProvider.get("data", "object"), 54 54 JLabel.HORIZONTAL -
trunk/src/org/openstreetmap/josm/gui/conflict/properties/PropertiesMerger.java
r1666 r1676 80 80 gc.gridy = 0; 81 81 lblMergedVersion = new JLabel(tr("Merged version")); 82 lblMergedVersion.setToolTipText(tr("Properties in the merged element. They will replace properties in my elements when 82 lblMergedVersion.setToolTipText(tr("Properties in the merged element. They will replace properties in my elements when merge decisions are applied.")); 83 83 add(lblMergedVersion, gc); 84 84 -
trunk/src/org/openstreetmap/josm/gui/preferences/ServerAccessPreference.java
r1195 r1676 34 34 35 35 osmDataServer.setToolTipText(tr("The base URL for the OSM server (REST API)")); 36 osmDataUsername.setToolTipText(tr("Login name (e mail) to the OSM account."));36 osmDataUsername.setToolTipText(tr("Login name (e-mail) to the OSM account.")); 37 37 osmDataPassword.setToolTipText(tr("Login password to the OSM account. Leave blank to not store any password.")); 38 38 39 39 gui.connection.add(new JLabel(tr("Base Server URL")), GBC.std()); 40 40 gui.connection.add(osmDataServer, GBC.eol().fill(GBC.HORIZONTAL).insets(5,0,0,5)); 41 gui.connection.add(new JLabel(tr("OSM username (e mail)")), GBC.std());41 gui.connection.add(new JLabel(tr("OSM username (e-mail)")), GBC.std()); 42 42 gui.connection.add(osmDataUsername, GBC.eol().fill(GBC.HORIZONTAL).insets(5,0,0,5)); 43 43 gui.connection.add(new JLabel(tr("OSM password")), GBC.std()); … … 45 45 JLabel warning = new JLabel(tr("<html>" + 46 46 "WARNING: The password is stored in plain text in the preferences file.<br>" + 47 "The password is transfer ed in plain text to the server, encoded in the URL.<br>" +47 "The password is transferred in plain text to the server, encoded in the URL.<br>" + 48 48 "<b>Do not use a valuable Password.</b></html>")); 49 49 warning.setFont(warning.getFont().deriveFont(Font.ITALIC));
Note:
See TracChangeset
for help on using the changeset viewer.