From 792f5dc293ddbe9670e0e72b5560829787e490f2 Mon Sep 17 00:00:00 2001 From: MLEP Date: Mon, 5 Oct 2020 10:06:54 +0200 Subject: [PATCH 01/10] BibTeX field => following field --- src/main/java/org/jabref/gui/groups/GroupDialog.fxml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/jabref/gui/groups/GroupDialog.fxml b/src/main/java/org/jabref/gui/groups/GroupDialog.fxml index 442ffd000c7..abd2bd2696b 100644 --- a/src/main/java/org/jabref/gui/groups/GroupDialog.fxml +++ b/src/main/java/org/jabref/gui/groups/GroupDialog.fxml @@ -123,7 +123,7 @@ + text="Generate groups from keywords in the following field"/> From d17b49582ca0a40e8e8b6737a3dc345246d504ba Mon Sep 17 00:00:00 2001 From: MLEP Date: Mon, 5 Oct 2020 10:23:07 +0200 Subject: [PATCH 02/10] Update Changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44012b3400e..dcabc8b6d63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve - 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) - We improved the detection of "short" DOIs [6880](https://github.com/JabRef/jabref/issues/6880) - We improved the duplicate detection when identifiers like DOI or arxiv are semantiaclly the same, but just syntactically differ (e.g. with or without http(s):// prefix). [#6707](https://github.com/JabRef/jabref/issues/6707) +- We changed in the group interface "Generate groups from keywords in a BibTeX field" by "Generate groups from keywords in the following field". ### Fixed From 099e34414175631f7f0dc5c6d1e81ed87a425253 Mon Sep 17 00:00:00 2001 From: MLEP Date: Mon, 5 Oct 2020 10:27:59 +0200 Subject: [PATCH 03/10] Adding issue number to changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dcabc8b6d63..1787e0657d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,7 +32,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve - 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) - We improved the detection of "short" DOIs [6880](https://github.com/JabRef/jabref/issues/6880) - We improved the duplicate detection when identifiers like DOI or arxiv are semantiaclly the same, but just syntactically differ (e.g. with or without http(s):// prefix). [#6707](https://github.com/JabRef/jabref/issues/6707) -- We changed in the group interface "Generate groups from keywords in a BibTeX field" by "Generate groups from keywords in the following field". +- We changed in the group interface "Generate groups from keywords in a BibTeX field" by "Generate groups from keywords in the following field". [#6983](https://github.com/JabRef/jabref/issues/6983) ### Fixed From b838c61ade8a80020baa24c411e96af83dffac8d Mon Sep 17 00:00:00 2001 From: MLEP Date: Mon, 5 Oct 2020 10:56:23 +0200 Subject: [PATCH 04/10] Get BibTeX data ==> Get bibliographic data --- src/main/java/org/jabref/gui/actions/StandardActions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/jabref/gui/actions/StandardActions.java b/src/main/java/org/jabref/gui/actions/StandardActions.java index c3b6238d0f9..e3880399355 100644 --- a/src/main/java/org/jabref/gui/actions/StandardActions.java +++ b/src/main/java/org/jabref/gui/actions/StandardActions.java @@ -33,7 +33,7 @@ public enum StandardActions implements Action { OPEN_EXTERNAL_FILE(Localization.lang("Open file"), IconTheme.JabRefIcons.FILE, KeyBinding.OPEN_FILE), OPEN_URL(Localization.lang("Open URL or DOI"), IconTheme.JabRefIcons.WWW, KeyBinding.OPEN_URL_OR_DOI), SEARCH_SHORTSCIENCE(Localization.lang("Search ShortScience")), - MERGE_WITH_FETCHED_ENTRY(Localization.lang("Get BibTeX data from %0", "DOI/ISBN/...")), + MERGE_WITH_FETCHED_ENTRY(Localization.lang("Get bibliographic data from %0", "DOI/ISBN/...")), ATTACH_FILE(Localization.lang("Attach file"), IconTheme.JabRefIcons.ATTACH_FILE), PRIORITY(Localization.lang("Priority"), IconTheme.JabRefIcons.PRIORITY), CLEAR_PRIORITY(Localization.lang("Clear priority")), From a20a2cc81aa9ecaf9761264038cb4fdc5a18ad54 Mon Sep 17 00:00:00 2001 From: MLEP Date: Mon, 5 Oct 2020 10:57:51 +0200 Subject: [PATCH 05/10] "Get BibTeX data" ==> "Get bibliographic data" --- src/main/java/org/jabref/gui/fieldeditors/IdentifierEditor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/jabref/gui/fieldeditors/IdentifierEditor.java b/src/main/java/org/jabref/gui/fieldeditors/IdentifierEditor.java index cbc572f5216..2d2eb46be71 100644 --- a/src/main/java/org/jabref/gui/fieldeditors/IdentifierEditor.java +++ b/src/main/java/org/jabref/gui/fieldeditors/IdentifierEditor.java @@ -40,7 +40,7 @@ public IdentifierEditor(Field field, TaskExecutor taskExecutor, DialogService di textArea.textProperty().bindBidirectional(viewModel.textProperty()); fetchInformationByIdentifierButton.setTooltip( - new Tooltip(Localization.lang("Get BibTeX data from %0", field.getDisplayName()))); + new Tooltip(Localization.lang("Get bibliographic data from %0", field.getDisplayName()))); lookupIdentifierButton.setTooltip( new Tooltip(Localization.lang("Look up %0", field.getDisplayName()))); From 1c1ba8d5d7acc808d3d54ada397bc7d62c42c668 Mon Sep 17 00:00:00 2001 From: MLEP Date: Mon, 5 Oct 2020 11:04:20 +0200 Subject: [PATCH 06/10] Localization EN --- src/main/resources/l10n/JabRef_en.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/l10n/JabRef_en.properties b/src/main/resources/l10n/JabRef_en.properties index df341a21cd6..44d2b363d47 100644 --- a/src/main/resources/l10n/JabRef_en.properties +++ b/src/main/resources/l10n/JabRef_en.properties @@ -1591,7 +1591,7 @@ remove\ entry\ %0=remove entry %0 remove\ string\ %0=remove string %0 undefined=undefined Cannot\ get\ info\ based\ on\ given\ %0\:\ %1=Cannot get info based on given %0: %1 -Get\ BibTeX\ data\ from\ %0=Get BibTeX data from %0 +Get\ bibliographic\ data\ from\ %0=Get bibliographic data from %0 No\ %0\ found=No %0 found Entry\ from\ %0=Entry from %0 Merge\ entry\ with\ %0\ information=Merge entry with %0 information From 92a3607d0a24d5114b44cfa0dd9eb9fe179f9453 Mon Sep 17 00:00:00 2001 From: MLEP Date: Mon, 5 Oct 2020 15:57:25 +0200 Subject: [PATCH 07/10] Localizing strings in New group UI --- src/main/java/org/jabref/gui/groups/GroupDialog.fxml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/jabref/gui/groups/GroupDialog.fxml b/src/main/java/org/jabref/gui/groups/GroupDialog.fxml index abd2bd2696b..5a4043cc930 100644 --- a/src/main/java/org/jabref/gui/groups/GroupDialog.fxml +++ b/src/main/java/org/jabref/gui/groups/GroupDialog.fxml @@ -107,8 +107,8 @@ - - + + @@ -117,13 +117,13 @@ - - + + + text="%Generate groups from keywords in the following field"/> @@ -154,7 +154,7 @@ + text="%Generate groups for author last names"/> From 26df9e985e062020af1f53d093f67d8cb20332c8 Mon Sep 17 00:00:00 2001 From: MLEP Date: Mon, 5 Oct 2020 16:01:11 +0200 Subject: [PATCH 08/10] Adding localization strings to EN file --- src/main/resources/l10n/JabRef_en.properties | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/resources/l10n/JabRef_en.properties b/src/main/resources/l10n/JabRef_en.properties index 44d2b363d47..9350d589bbd 100644 --- a/src/main/resources/l10n/JabRef_en.properties +++ b/src/main/resources/l10n/JabRef_en.properties @@ -2273,3 +2273,6 @@ Check\ Proxy\ Setting=Check Proxy Setting Check\ connection=Check connection Connection\ failed\!=Connection failed\! Connection\ successful\!=Connection successful\! +Generate\ groups\ from\ keywords\ in\ the\ following\ field=Generate groups from keywords in the following field +Generate\ groups\ for\ author\ last\ names=Generate groups for author last names +Regular\ expression=regular expression From 5ab3fec9c888df2bb2fafb3779824bba21f2aabd Mon Sep 17 00:00:00 2001 From: MLEP Date: Tue, 6 Oct 2020 20:18:55 +0200 Subject: [PATCH 09/10] Localization formatting --- src/main/resources/l10n/JabRef_en.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/l10n/JabRef_en.properties b/src/main/resources/l10n/JabRef_en.properties index 9350d589bbd..89abfa2418c 100644 --- a/src/main/resources/l10n/JabRef_en.properties +++ b/src/main/resources/l10n/JabRef_en.properties @@ -2275,4 +2275,4 @@ Connection\ failed\!=Connection failed\! Connection\ successful\!=Connection successful\! Generate\ groups\ from\ keywords\ in\ the\ following\ field=Generate groups from keywords in the following field Generate\ groups\ for\ author\ last\ names=Generate groups for author last names -Regular\ expression=regular expression +Regular\ expression=Regular expression From ef8a732bad3b2aa53c69bfd8c9300ecc61d4644e Mon Sep 17 00:00:00 2001 From: MLEP Date: Tue, 6 Oct 2020 20:52:19 +0200 Subject: [PATCH 10/10] Tidying up --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1787e0657d0..359b1e57663 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve ### Fixed -- We fixed an issue changing the icon link_variation_off that is not meaningful. [#6834][https://github.com/JabRef/jabref/issues/6834] +- We fixed an issue changing the icon link_variation_off that is not meaningful. [#6834](https://github.com/JabRef/jabref/issues/6834) - We fixed an issue where the `.sav` file was not deleted upon exiting JabRef. [#6109](https://github.com/JabRef/jabref/issues/6109) - We fixed a linked identifier icon inconsistency. [#6705](https://github.com/JabRef/jabref/issues/6705) - We fixed the wrong behavior that font size changes are not reflected in dialogs. [#6039](https://github.com/JabRef/jabref/issues/6039) @@ -44,7 +44,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve - We fixed an issue where the sort order of the entry table was reset after a restart of JabRef. [#6898](https://github.com/JabRef/jabref/pull/6898) - We fixed an issue where no longer a warning was displayed when inserting references into LibreOffice with an invalid "ReferenceParagraphFormat". [#6907](https://github.com/JabRef/jabref/pull/60907). - We fixed an issue where a selected field was not removed after the first click in the custom entry types dialog. [#6934](https://github.com/JabRef/jabref/issues/6934) -- We fixed an issue where a remove icon was shown for standard entry types in the custom entry types dialog. [6906](https://github.com/JabRef/jabref/issues/6906) +- We fixed an issue where a remove icon was shown for standard entry types in the custom entry types dialog. [#6906](https://github.com/JabRef/jabref/issues/6906) - We fixed an issue where it was impossible to connect to OpenOffice/LibreOffice on Mac OSX. [#6970](https://github.com/JabRef/jabref/pull/6970) - We fixed an issue with the python script used by browser plugins that failed to locate JabRef if not installed in its default location. [#6963](https://github.com/JabRef/jabref/pull/6963/files)