Changeset 16305 in josm for trunk/src/org
- Timestamp:
- 2020-04-15T21:12:23+02:00 (5 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManager.java
r16216 r16305 286 286 287 287 protected void build() { 288 setTitle(tr("Changeset Manage ment Dialog"));288 setTitle(tr("Changeset Manager")); 289 289 setIconImage(ImageProvider.get("dialogs/changeset", "changesetmanager").getImage()); 290 290 Container cp = getContentPane(); -
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheTableColumnModel.java
r14231 r16305 39 39 40 40 // column 3 - User 41 createColumn(3, tr(" User"), 50, -1);41 createColumn(3, tr("Author"), 50, -1); 42 42 43 43 // column 4 - Created at -
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetDetailPanel.java
r15899 r16305 153 153 tfOpen.setEditable(false); 154 154 155 //-- Created by:155 //-- Author: 156 156 gc.gridx = 0; 157 157 gc.gridy = 3; 158 158 gc.fill = GridBagConstraints.HORIZONTAL; 159 159 gc.weightx = 0.0; 160 pnl.add(new JLabel(tr(" Created by:")), gc);160 pnl.add(new JLabel(tr("Author:")), gc); 161 161 162 162 gc.fill = GridBagConstraints.HORIZONTAL; … … 166 166 tfUser.setEditable(false); 167 167 168 //-- Created On:168 //-- Created at: 169 169 gc.gridx = 0; 170 170 gc.gridy = 4; 171 171 gc.fill = GridBagConstraints.HORIZONTAL; 172 172 gc.weightx = 0.0; 173 pnl.add(new JLabel(tr("Created on:")), gc);173 pnl.add(new JLabel(tr("Created at:")), gc); 174 174 175 175 gc.fill = GridBagConstraints.HORIZONTAL; … … 178 178 tfCreatedOn.setEditable(false); 179 179 180 //-- Closed On:180 //-- Closed at: 181 181 gc.gridx = 0; 182 182 gc.gridy = 5; 183 183 gc.fill = GridBagConstraints.HORIZONTAL; 184 184 gc.weightx = 0.0; 185 pnl.add(new JLabel(tr("Closed on:")), gc);185 pnl.add(new JLabel(tr("Closed at:")), gc); 186 186 187 187 gc.fill = GridBagConstraints.HORIZONTAL;
Note:
See TracChangeset
for help on using the changeset viewer.