Modify ↓
#18913 closed defect (fixed)
[Patch] Contradicting Changeset manager Captions
Reported by: | Hb--- | Owned by: | team |
---|---|---|---|
Priority: | trivial | Milestone: | 20.05 |
Component: | Core | Version: | |
Keywords: | changeset | Cc: |
Description
The Changeset manager uses different captions for the same data in one dialog, see screenshot.
Suggestions are:
- Replace "Changeset Management Dialog" with
Changeset Manager
. - Replace "User" and "Created by:" with
Author
resp.Author:
. - Replace "Created on:" with
Created at:
. - Replace "Closed on:" with
Closed at:
.
The key "created_by" is nowadays used for the editor software.
I18n effects:
- "Changeset Management Dialog", "Created on:" and "Closed on:" would drop from translation.
Closed at:
would be new to translate.
-
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManager.java
a b 285 285 } 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(); 291 291 -
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetDetailPanel.java
a b 152 152 pnl.add(tfOpen, gc); 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; 163 163 gc.weightx = 1.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; 176 176 gc.gridx = 1; … … 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; 188 188 gc.gridx = 1; -
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheTableColumnModel.java
a b 38 38 createColumn(2, tr("Open"), 25, -1); 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 44 44 createColumn(4, tr("Created at"), 100, -1);
Attachments (1)
Change History (5)
by , 5 years ago
Attachment: | changesetmanager-suggestions.png added |
---|
comment:1 by , 5 years ago
Keywords: | changeset added |
---|---|
Milestone: | → 20.04 |
comment:2 by , 5 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
In 16305/josm: