[Tex/LaTex] English bibliography in an otherwise german LaTeX document

bibliographieslanguages

I have a LaTeX document in German. The only thing I want in English are the entries of the bibliography. How do I do this?

Here is my minimal working example:

my main.tex document:

\documentclass[ngerman]{MastersDoctoralThesis}
\usepackage[backend=bibtex, style=ieee, citestyle=numeric-comp, natbib=true, sorting=none]{biblatex} 
\addbibresource{bibfile.bib} %The filename of the bibliography

\begin{document}

\chapter{SomeExampleChapter, with Kapitel, not chapter..}
example of a citation \cite{Reference1}.   Here everything is in german, e.g.  Abbildung statt figure,  Kapitel instead of chapter etc...

\printbibliography[heading=bibintoc]  

\end{document}  

and my bibfile.bib:

@article{Reference1,
    Author = {C. J. Hawthorn and K. P. Weber and R. E. Scholten},
    Journal = {Rev. Sci. Instrum.},
    Number = {12},
    Pages = {4477--4479},
    Title = {Littrow Configuration Tunable External Cavity Diode Laser with Fixed Direction Output Beam},
    Year = {2001}
}

So far the bibliography reads: C. J. Hawthorn, K.P. Weber und R.E. Scholten

I want it to be: C. J. Hawthorn, K.P. Weber and R.E. Scholten

The und should be changed to and. Apart from that, nothing should be changed.

I know similar questions have been asked, but I struggled with all the answers there.

Best Answer

As I don't have the MastersDoctoralThesis class, I replaced it with report, und this code works fine for me:

\documentclass[english, ngerman]{report}
\usepackage{babel} 
\usepackage[backend=bibtex, style=ieee, citestyle=numeric-comp, natbib=true, sorting=none, autolang=other]{biblatex}
\usepackage[autostyle]{csquotes}
\addbibresource{bibfile.bib} %The filename of the bibliography

\begin{document}

\chapter{SomeExampleChapter, with Kapitel, not chapter..}
example of a citation \cite{Reference1}. Here everything is in german, e.g. Abbildung statt figure, Kapitel instead of chapter etc...
\nocite{*}
\printbibliography[heading=bibintoc]

\end{document} 

enter image description here