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

Change instances of 'Search Selected' to 'Search Pre-configured' #11871

Merged
merged 5 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
- We improved the DOI detection in PDF imports. [#11782](https://github.com/JabRef/jabref/pull/11782)
- We improved the performance when pasting and importing entries in an existing library. [#11843](https://github.com/JabRef/jabref/pull/11843)
- When fulltext search is selected but indexing is deactivated, a dialog is now shown asking if the user wants to enable indexing now [#9491](https://github.com/JabRef/jabref/issues/9491)
- We changed instances of 'Search Selected' to 'Search Pre-configured' in Web Search Preferences UI. [#11871](https://github.com/JabRef/jabref/pull/11871)

### Fixed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<CheckBox fx:id="useCustomDOI" text="%Use custom DOI base URI for article access"/>
<TextField fx:id="useCustomDOIName" HBox.hgrow="ALWAYS"/>
</HBox>
<Label styleClass="sectionHeader" text="%Catalogues used for 'Search Selected'"/>
<Label styleClass="sectionHeader" text="%Catalogues used for 'Search Pre-configured'"/>
<TableView
fx:id="catalogTable"
VBox.vgrow="ALWAYS"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/logic/importer/WebFetchers.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public static Set<CustomizableKeyFetcher> getCustomizableKeyFetchers(ImportForma
}

/**
* Places "Search Selected" to the first of the set
* Places "Search Pre-configured" to the first of the set
*/
class CompositeSearchFirstComparator implements Comparator<SearchBasedFetcher> {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

public class CompositeSearchBasedFetcher implements SearchBasedFetcher {

public static final String FETCHER_NAME = "Search Selected";
public static final String FETCHER_NAME = "Search Pre-configured";

private static final Logger LOGGER = LoggerFactory.getLogger(CompositeSearchBasedFetcher.class);

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 @@ -125,7 +125,7 @@ Case\ sensitive=Case sensitive

change\ assignment\ of\ entries=change assignment of entries

Catalogues\ used\ for\ 'Search\ Selected'=Catalogues used for 'Search Selected'
Catalogues\ used\ for\ 'Search\ Pre-configured'=Catalogues used for 'Search Pre-configured'

Change\ case=Change case

Expand Down
Loading