Skip to content

Commit ab9c983

Browse files
replacing "Cleanup entries" to "Clean up entries" (JabRef#12710)
* replacing "Cleanup entries" to "Clean up entries" * test formatting changes on CHANGELOG.md * replacing "Cleanup entries" to "Clean up entries" * replacing "Cleanup entries" to "Clean up entries" * Update CHANGELOG.md Co-authored-by: Subhramit Basu Bhowmick <[email protected]> * replacing "Cleanup entries" to "Clean up entries" --------- Co-authored-by: Subhramit Basu Bhowmick <[email protected]>
1 parent adaf10b commit ab9c983

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
4949
- We removed the obsolete Twitter link and added Mastodon and LinkedIn links in Help -> JabRef resources. [#12660](https://github.com/JabRef/jabref/issues/12660)
5050
- We improved the Check Integrity dialog entry interaction so that a single click focuses on the corresponding entry and a double-click both focuses on the entry and closes the dialog. [#12245](https://github.com/JabRef/jabref/issues/12245)
5151
- We improved journal abbreviation lookup with fuzzy matching to handle minor input errors and variations. [#12467](https://github.com/JabRef/jabref/issues/12467)
52+
- We changed the phrase "Cleanup entries" to "Clean up entries". [#12703](https://github.com/JabRef/jabref/issues/12703)
5253

5354
### Fixed
5455

src/main/java/org/jabref/gui/actions/StandardActions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public enum StandardActions implements Action {
150150
GENERATE_CITE_KEY(Localization.lang("Generate citation key"), IconTheme.JabRefIcons.MAKE_KEY, KeyBinding.AUTOGENERATE_CITATION_KEYS),
151151
GENERATE_CITE_KEYS(Localization.lang("Generate citation keys"), IconTheme.JabRefIcons.MAKE_KEY, KeyBinding.AUTOGENERATE_CITATION_KEYS),
152152
DOWNLOAD_FULL_TEXT(Localization.lang("Search full text documents online"), IconTheme.JabRefIcons.FILE_SEARCH, KeyBinding.DOWNLOAD_FULL_TEXT),
153-
CLEANUP_ENTRIES(Localization.lang("Cleanup entries"), IconTheme.JabRefIcons.CLEANUP_ENTRIES, KeyBinding.CLEANUP),
153+
CLEANUP_ENTRIES(Localization.lang("Clean up entries"), IconTheme.JabRefIcons.CLEANUP_ENTRIES, KeyBinding.CLEANUP),
154154
SET_FILE_LINKS(Localization.lang("Automatically set file links"), KeyBinding.AUTOMATICALLY_LINK_FILES),
155155

156156
EDIT_FILE_LINK(Localization.lang("Edit"), IconTheme.JabRefIcons.EDIT, KeyBinding.OPEN_CLOSE_ENTRY_EDITOR),

src/main/java/org/jabref/gui/cleanup/CleanupAction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ private void showResults() {
145145

146146
private void cleanup(BibDatabaseContext databaseContext, CleanupPreferences cleanupPreferences) {
147147
this.failures.clear();
148-
NamedCompound ce = new NamedCompound(Localization.lang("Cleanup entries"));
148+
NamedCompound ce = new NamedCompound(Localization.lang("Clean up entries"));
149149

150150
for (BibEntry entry : stateManager.getSelectedEntries()) {
151151
// undo granularity is on entry level

src/main/java/org/jabref/gui/cleanup/CleanupDialog.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
public class CleanupDialog extends BaseDialog<CleanupPreferences> {
1313
public CleanupDialog(BibDatabaseContext databaseContext, CleanupPreferences initialPreset, FilePreferences filePreferences) {
14-
setTitle(Localization.lang("Cleanup entries"));
14+
setTitle(Localization.lang("Clean up entries"));
1515
getDialogPane().setPrefSize(600, 650);
1616
getDialogPane().getButtonTypes().setAll(ButtonType.OK, ButtonType.CANCEL);
1717

src/main/java/org/jabref/gui/entryeditor/DeprecatedFieldsTab.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public DeprecatedFieldsTab(BibDatabaseContext databaseContext,
5656
setText(Localization.lang("Deprecated fields"));
5757
EasyBind.subscribe(preferences.getWorkspacePreferences().showAdvancedHintsProperty(), advancedHints -> {
5858
if (advancedHints) {
59-
setTooltip(new Tooltip(Localization.lang("Shows fields having a successor in biblatex.\nFor instance, the publication month should be part of the date field.\nUse the Cleanup Entries functionality to convert the entry to biblatex.")));
59+
setTooltip(new Tooltip(Localization.lang("Shows fields having a successor in biblatex.\nFor instance, the publication month should be part of the date field.\nUse the Clean up Entries functionality to convert the entry to biblatex.")));
6060
} else {
6161
setTooltip(new Tooltip(Localization.lang("Shows fields having a successor in biblatex.")));
6262
}

src/main/java/org/jabref/gui/keyboard/KeyBinding.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public enum KeyBinding {
3131
AUTOMATICALLY_LINK_FILES("Automatically link files", Localization.lang("Automatically set file links"), "F7", KeyBindingCategory.QUALITY),
3232
CHECK_INTEGRITY("Check integrity", Localization.lang("Check integrity"), "ctrl+F8", KeyBindingCategory.QUALITY),
3333
CHECK_CONSISTENCY("Check consistency", Localization.lang("Check consistency"), "ctrl+F9", KeyBindingCategory.QUALITY),
34-
CLEANUP("Cleanup", Localization.lang("Cleanup entries"), "alt+F8", KeyBindingCategory.QUALITY),
34+
CLEANUP("Clean up", Localization.lang("Clean up entries"), "alt+F8", KeyBindingCategory.QUALITY),
3535
CLOSE_DATABASE("Close library", Localization.lang("Close library"), "ctrl+W", KeyBindingCategory.FILE),
3636
CLOSE("Close dialog", Localization.lang("Close dialog"), "Esc", KeyBindingCategory.VIEW),
3737
COPY("Copy", Localization.lang("Copy"), "ctrl+C", KeyBindingCategory.EDIT),

src/main/resources/l10n/JabRef_en.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,7 @@ Use\ abbreviated\ firstname\ whenever\ possible=Use abbreviated firstname whenev
12131213
Use\ abbreviated\ and\ full\ firstname=Use abbreviated and full firstname
12141214
Name\ format=Name format
12151215
First\ names=First names
1216-
Cleanup\ entries=Cleanup entries
1216+
Clean\ up\ entries=Clean up entries
12171217
Automatically\ assign\ new\ entry\ to\ selected\ groups=Automatically assign new entry to selected groups
12181218
%0\ mode=%0 mode
12191219
Move\ DOIs\ from\ 'note'\ field\ and\ 'URL'\ field\ to\ 'DOI'\ field\ and\ remove\ http\ prefix=Move DOIs from 'note' field and 'URL' field to 'DOI' field and remove http prefix
@@ -1332,7 +1332,7 @@ Convert\ to\ BibTeX\ format\ (e.g.,\ store\ publication\ date\ in\ year\ and\ mo
13321332
Deprecated\ fields=Deprecated fields
13331333

13341334
Shows\ fields\ having\ a\ successor\ in\ biblatex.=Shows fields having a successor in biblatex.
1335-
Shows\ fields\ having\ a\ successor\ in\ biblatex.\nFor\ instance,\ the\ publication\ month\ should\ be\ part\ of\ the\ date\ field.\nUse\ the\ Cleanup\ Entries\ functionality\ to\ convert\ the\ entry\ to\ biblatex.=Shows fields having a successor in biblatex.\nFor instance, the publication month should be part of the date field.\nUse the Cleanup Entries functionality to convert the entry to biblatex.
1335+
Shows\ fields\ having\ a\ successor\ in\ biblatex.\nFor\ instance,\ the\ publication\ month\ should\ be\ part\ of\ the\ date\ field.\nUse\ the\ Clean\ up\ Entries\ functionality\ to\ convert\ the\ entry\ to\ biblatex.=Shows fields having a successor in biblatex.\nFor instance, the publication month should be part of the date field.\nUse the Clean up Entries functionality to convert the entry to biblatex.
13361336

13371337

13381338
No\ read\ status\ information=No read status information

0 commit comments

Comments
 (0)