Skip to content

Commit aa07981

Browse files
authored
Fixed Localizations in citation relations (#13240)
* Fixed Localizations in citation relations * Fix tooltip: 'Add selected entry(s) to library' (follow decision 0041 and localization rules)
1 parent 2d94374 commit aa07981

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

jabgui/src/main/java/org/jabref/gui/entryeditor/citationrelationtab/CitationRelationsTab.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,10 @@ private SplitPane getPaneAndStartSearch(BibEntry entry) {
176176

177177
// Create import buttons for both sides
178178
Button importCitingButton = IconTheme.JabRefIcons.ADD_ENTRY.asButton();
179-
importCitingButton.setTooltip(new Tooltip(Localization.lang("Add selected entries to database")));
179+
importCitingButton.setTooltip(new Tooltip(Localization.lang("Add selected entry(s) to library")));
180180
styleTopBarNode(importCitingButton, 50.0);
181181
Button importCitedByButton = IconTheme.JabRefIcons.ADD_ENTRY.asButton();
182-
importCitedByButton.setTooltip(new Tooltip(Localization.lang("Add selected entries to database")));
182+
importCitedByButton.setTooltip(new Tooltip(Localization.lang("Add selected entry(s) to library")));
183183
styleTopBarNode(importCitedByButton, 50.0);
184184
hideNodes(importCitingButton, importCitedByButton);
185185

jablib/src/main/resources/l10n/JabRef_en.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2768,7 +2768,7 @@ Get\ more\ themes...=Get more themes...
27682768
Miscellaneous=Miscellaneous
27692769
File-related=File-related
27702770
2771-
Add\ selected\ entries\ to\ database=Add selected entries to database
2771+
Add\ selected\ entry(s)\ to\ library=Add selected entry(s) to library
27722772
The\ selected\ entry\ doesn't\ have\ a\ DOI\ linked\ to\ it.\ Lookup\ a\ DOI\ and\ try\ again.=The selected entry doesn't have a DOI linked to it. Lookup a DOI and try again.
27732773
Cited\ By=Cited By
27742774
Cites=Cites

0 commit comments

Comments
 (0)