[Tex/LaTex] BibTex – polish letter “ł” in translation from chapter

bibtexcharacterspolish

I'm using \bibliographystyle{plabbrv} and utf8 coding. I have problem with displaying polish letter "ł" in word "rozdział", which is automatically added when typing the chapter section.

I get something like this:

Result

main.tex file:

\documentclass[10pt]{article}
\usepackage{polski} 
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc} 

\begin{document}
\bibliographystyle{plabbrv} 

Cite for the first time \cite{Resnick}.
And this is the second resource \cite{Tchon}.

\bibliography{bibliografia} 
\end{document}

bibliografia.bib file:

@InBook{Resnick,
author = {David Halliday and Robert Resnick and Jearl Walker},
title = {Podstawy fizyki Tom 1},
chapter = {4},
publisher = {PWN},
year = {2015},
pages = {87--92}
}

@InBook{Tchon,
author = {Krzysztof Tchoń and Alicja Mazur and Ignacy Dulęba and Robert Hossa and Robert Muszyński},
title = {Manipulatory i roboty mobilne},
chapter = {3},
publisher = {PLJ},
year = {2000},
pages = {111-119}
}

Best Answer

Because you can probably use package polski (I am writing this post from Technical Univerity Wrocław :-) ), it is enough to write \prefixing before your bibliography (and return to \nonprefixing after it).