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:
Jean-Marc Lasgouttes 2005-02-23 14:29:38 +00:00
parent 4ec18c5c8b
commit a4930289ec
3 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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;

View File

@ -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]