Is it possible to mix two different languages in the same bibliography made with Biblalex?
I would like to get this output:

Instead of this:

I have tried using langid field, but it localizes only hyphenation.
paper.tex:
\documentclass{article}
\usepackage{polyglossia}
\setdefaultlanguage{english}
\usepackage[backend=biber, style=alphabetic]{biblatex}
\bibliography{biblio}
\begin{document}
\cite{paperES, paperEN}
\printbibliography
\end{document}
biblio.bib:
@article{paperES,
author={Adan Cruz and Brisa Carmelo},
title={Titulo},
journal={Título de la revista},
year={2011},
volume={IV},
pages={8-17},
langid={spanish},
}
@article{paperEN,
author={John Smith and James Brown},
title={Title},
journal={Journal title},
year={2012},
volume={V},
pages={3-15},
langid={english},
}
Any hints would be appreciated.
and, Inwith English andy, Enwith the Spanish articles. – niekas Feb 04 '15 at 20:02\setotherlanguage{spanish}after you set the main language and in yourbiblatexoptions addbabel=other. – Alan Munn Feb 04 '15 at 20:19Package biblatex Warning: 'babel' option is deprecated, use 'autolang' instead.I was reading BibLaTeX v1.9 documentation, but Ubuntu package manager installed BibLaTeX v1.8. – niekas Feb 05 '15 at 10:43