From 53d5fd7ef940cd89e1430788b44569def1f01c29 Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Wed, 23 Sep 2026 15:32:05 +0200 Subject: [PATCH 1/2] Rename "Create backup" preference to "Create backups" JabRef keeps several backup versions, so the plural fits. Co-Authored-By: Claude Opus 5.5 --- .../java/org/jabref/gui/preferences/general/GeneralTab.java | 2 +- jablib/src/main/resources/l10n/JabRef_en.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jabgui/src/main/java/org/jabref/gui/preferences/general/GeneralTab.java b/jabgui/src/main/java/org/jabref/gui/preferences/general/GeneralTab.java index b7018cf887db..c04cbd151889 100644 --- a/jabgui/src/main/java/org/jabref/gui/preferences/general/GeneralTab.java +++ b/jabgui/src/main/java/org/jabref/gui/preferences/general/GeneralTab.java @@ -123,7 +123,7 @@ private void buildView() { .checkbox(Localization.lang("Always reformat library on save and export"), viewModel.alwaysReformatBibProperty()) .checkbox(Localization.lang("Autosave local libraries"), viewModel.autosaveLocalLibrariesProperty(), autosave -> autosave.help(HelpFile.AUTOSAVE)) - .checkWithField(Localization.lang("Create backup"), viewModel.createBackupProperty(), + .checkWithField(Localization.lang("Create backups"), viewModel.createBackupProperty(), viewModel.backupDirectoryProperty(), directory -> directory .grow() diff --git a/jablib/src/main/resources/l10n/JabRef_en.properties b/jablib/src/main/resources/l10n/JabRef_en.properties index 63c933b56930..c85082d22320 100644 --- a/jablib/src/main/resources/l10n/JabRef_en.properties +++ b/jablib/src/main/resources/l10n/JabRef_en.properties @@ -2987,7 +2987,7 @@ Search\ from\ history...=Search from history... your\ search\ history\ is\ empty=your search history is empty Clear\ history=Clear history -Create\ backup=Create backup +Create\ backups=Create backups Experimental\ search\ (Postgres)=Experimental search (Postgres) Automatically\ search\ and\ show\ unlinked\ files\ in\ the\ entry\ editor=Automatically search and show unlinked files in the entry editor From 1755d749eecbb290d2c0ed5927c7c29e1b1db135 Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Wed, 23 Sep 2026 16:00:11 +0200 Subject: [PATCH 2/2] Add CHANGELOG entry Co-Authored-By: Claude Opus 5.5 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93eef956b96a..8e2e1ebb1bec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv ### Changed +- We renamed the preference "Create backup" to "Create backups", because JabRef keeps multiple backup versions. [#780](https://github.com/JabRef/jabref-koppor/pull/780) + ### Fixed - We re-enabled the [Grobid](https://github.com/grobidOrg/grobid) citation fetcher again. It is now reachable via https. [#16668](https://github.com/JabRef/jabref/issues/16668)