mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Fix thinko that led 2-authors citations to be displayed with "et al."
(cherry picked from commit d5633f17e5
)
This commit is contained in:
parent
b366a55962
commit
e98334098b
@ -299,8 +299,7 @@ docstring const BibTeXInfo::getAbbreviatedAuthor(bool jurabib_style) const
|
||||
if (authors.size() == 2 && authors[1] != "others")
|
||||
retval = bformat(from_ascii("%1$s and %2$s"),
|
||||
familyName(authors[0]), familyName(authors[1]));
|
||||
|
||||
if (authors.size() >= 2)
|
||||
else if (authors.size() >= 2)
|
||||
retval = bformat(from_ascii("%1$s et al."),
|
||||
familyName(authors[0]));
|
||||
|
||||
|
@ -40,6 +40,10 @@ What's new
|
||||
|
||||
* USER INTERFACE
|
||||
|
||||
- Fix display of citations with two authors.
|
||||
|
||||
- Fix display of multi-author citations when the GUI language is not English.
|
||||
|
||||
|
||||
* INTERNALS
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user