Skip to content

Commit

Permalink
Window "Manage field names & content": make title consistent with men…
Browse files Browse the repository at this point in the history
…u (+ localization) (#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 <cschwentker@gmail.com>
  • Loading branch information
mlep and Siedlerchr authored Sep 9, 2020
1 parent 6dec174 commit 46e9fe2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
- We completed the rebranding of `bibtexkey` as `citationkey` which was started in JabRef 5.1.
- JabRef no longer opens the entry editor with the first entry on startup [#6855](https://github.com/JabRef/jabref/issues/6855)
- Fetch by ID: (long) "SAO/NASA Astrophysics Data System" replaced by (short) "SAO/NASA ADS" [#6876](https://github.com/JabRef/jabref/pull/6876)
- 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)

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/gui/edit/MassSetFieldsDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class MassSetFieldsDialog extends BaseDialog<Void> {
this.undoManager = undoManager;

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

0 comments on commit 46e9fe2

Please sign in to comment.