Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REmove message when opening cleanup entries #11463

Merged
merged 2 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv

### Removed


- We removed the misleading message "Doing a cleanup for X entries" when opening the Cleanup entries dialog [#11463](https://github.com/JabRef/jabref/pull/11463)



Expand Down
3 changes: 0 additions & 3 deletions src/main/java/org/jabref/gui/cleanup/CleanupAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@ public void execute() {
return;
}

dialogService.notify(Localization.lang("Doing a cleanup for %0 entries...",
Integer.toString(stateManager.getSelectedEntries().size())));

isCanceled = false;
modifiedEntriesCount = 0;

Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1167,7 +1167,6 @@ Move\ URL\ in\ note\ field\ to\ url\ field=Move URL in note field to url field
Make\ paths\ of\ linked\ files\ relative\ (if\ possible)=Make paths of linked files relative (if possible)
Rename\ PDFs\ to\ given\ filename\ format\ pattern=Rename PDFs to given filename format pattern
Rename\ only\ PDFs\ having\ a\ relative\ path=Rename only PDFs having a relative path
Doing\ a\ cleanup\ for\ %0\ entries...=Doing a cleanup for %0 entries...
No\ entry\ needed\ a\ clean\ up=No entry needed a clean up
One\ entry\ needed\ a\ clean\ up=One entry needed a clean up
%0\ entries\ needed\ a\ clean\ up=%0 entries needed a clean up
Expand Down
Loading