-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
BibTeX information in web search import screen. (#560) #10784
Changes from 5 commits
1cb357b
3e18d17
26dc996
654fd1c
fae3f8b
1181abe
5c0496e
e58f5f3
aba5118
a8272f4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1986,6 +1986,8 @@ Total\ items\ found\:=Total items found: | |
Selected\ items\:=Selected items: | ||
Download\ linked\ online\ files=Download linked online files | ||
Select\ the\ entries\ to\ be\ imported\:=Select the entries to be imported\: | ||
Entry\ BibTeX\ data\:=Entry BibTeX data\: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There should not be new translations for this heading. The Entry Editor uses "BibTeX". Please re-use that string. Add the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
Show\ entry\ information=Show entry information | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It should be "Show BibTeX", because "information" is more general and could be more. For instance: citation data, is this entry already contained in the library, completeness of the bibtex data, ... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
Add\ new\ String=Add new String | ||
Must\ not\ be\ empty\!=Must not be empty\! | ||
Open\ Help\ page=Open Help page | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In Java, one should avoid
null
, because this leads to NullPointerExceptions, which are hard to debug.In your case, you can fallback to a default value - the empty string.
You could also include the erorr message, but I think, this is not helpful for the user.