Skip to content

Commit

Permalink
Fix for issue 9304 (#9313)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditya31398 authored Oct 26, 2022
1 parent 945a540 commit b757d0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/gui/groups/GroupTreeView.java
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ private ContextMenu createContextMenuForGroup(GroupNodeViewModel group) {
viewModel.removeSubgroups(group);
});

MenuItem sortSubgroups = new MenuItem(Localization.lang("Sort subgroups"));
MenuItem sortSubgroups = new MenuItem(Localization.lang("Sort subgroups A-Z"));
sortSubgroups.setOnAction(event -> viewModel.sortAlphabeticallyRecursive(group.getGroupNode()));

MenuItem addEntries = new MenuItem(Localization.lang("Add selected entries to this group"));
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ Please\ check\ your\ library\ file\ for\ wrong\ syntax.=Please check your librar
SourceTab\ error=SourceTab error
User\ input\ via\ entry-editor\ in\ `{}bibtex\ source`\ tab\ led\ to\ failure.=User input via entry-editor in `{}bibtex source` tab led to failure.

Sort\ subgroups=Sort subgroups
Sort\ subgroups\ A-Z=Sort subgroups A-Z

source\ edit=source edit
Special\ name\ formatters=Special name formatters
Expand Down

0 comments on commit b757d0a

Please sign in to comment.