Skip to content

Commit 46e9fe2

Browse files
mlepSiedlerchr
andauthored
Window "Manage field names & content": make title consistent with menu (+ localization) (JabRef#6895)
* Manage field names & content: make window title as menu title (+ localization) * Window "Manage field names and content": same title as the menu (+ localization) * Adding PR number to changelog * Update CHANGELOG.md Co-authored-by: Christoph <[email protected]>
1 parent 6dec174 commit 46e9fe2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
2626
- We completed the rebranding of `bibtexkey` as `citationkey` which was started in JabRef 5.1.
2727
- JabRef no longer opens the entry editor with the first entry on startup [#6855](https://github.com/JabRef/jabref/issues/6855)
2828
- Fetch by ID: (long) "SAO/NASA Astrophysics Data System" replaced by (short) "SAO/NASA ADS" [#6876](https://github.com/JabRef/jabref/pull/6876)
29+
- We changed the title of the window "Manage field names and content": to have the same title as the corresponding menu item [#6895](https://github.com/JabRef/jabref/pull/6895)
2930

3031
### Fixed
3132

src/main/java/org/jabref/gui/edit/MassSetFieldsDialog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public class MassSetFieldsDialog extends BaseDialog<Void> {
6262
this.undoManager = undoManager;
6363

6464
init();
65-
this.setTitle("Set/clear/append/rename fields");
65+
this.setTitle(Localization.lang("Manage field names & content"));
6666
this.getDialogPane().getButtonTypes().addAll(ButtonType.OK, ButtonType.CANCEL);
6767
this.setResultConverter(button -> {
6868
if (button == ButtonType.OK) {

0 commit comments

Comments
 (0)