mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +00:00
add a space before "et al." (cosmetic)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@9671 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4ec18c5c8b
commit
a4930289ec
@ -1,3 +1,8 @@
|
||||
2005-02-23 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* biblio.C (getAbbreviatedAuthor): add missing space before `et
|
||||
al.' in the non boost:format case
|
||||
|
||||
2005-01-17 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* tex_helpers.C (rescanTexStyles): prepend the name of the
|
||||
|
@ -106,7 +106,7 @@ string const getAbbreviatedAuthor(InfoMap const & map, string const & key)
|
||||
if (authors.size() == 2)
|
||||
msg = familyName(authors[0]) + _(" and ") + familyName(authors[1]);
|
||||
else if (authors.size() > 2)
|
||||
msg = familyName(authors[0]) + _("et al.");
|
||||
msg = familyName(authors[0]) + _(" et al.");
|
||||
else
|
||||
msg = familyName(authors[0]);
|
||||
return msg;
|
||||
|
@ -79,6 +79,8 @@ What's new
|
||||
|
||||
- Semantic improvements in the Insert>Cross reference dialog.
|
||||
|
||||
- Fix display of citations when using 'et al.'
|
||||
|
||||
- Fix server function server-get-tip [Bug 1781]
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user