How to make BibLaTeX print
"27. évf. 1. sz. pp. 5-23"
instead of
"vol. 27, no. 1, pp. 5-23"
?
MWE:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[magyar]{babel}
\usepackage{lmodern, filecontents}
\usepackage[style=ieee]{biblatex}
\begin{filecontents}{\jobname.bib}
@article{zarandy_art_temdesign,
author = {Zarándy, Ákos},
title = {The art of {CNN} template design},
journal = {International Journal of Circuit Theory and Applications},
volume = {27},
number = {1},
publisher = {John Wiley & Sons, Ltd.},
issn = {1097-007X},
url = {http://digitus.itk.ppke.hu/~lazar/cnn/SegedFileok/ZA_TemplTervArt.pdf},
urldate = {2014-04-22},
pages = {5--23},
year = {1999}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\cite{zarandy_art_temdesign}
\printbibliography
\end{document}
My magyar.lbx contains, among other things
\DeclareBibliographyStrings{
% ...
page = {{oldal}{p\adddot}},
pages = {{oldalak}{pp\adddot}},
volume = {{évfolyam}{évf\adddot}},
volumes = {{évfolyam}{évf\adddot}},
number = {{szám}{sz\adddot}},
}
so the strings are already there but in incorrect order with the numbers.

Package biblatex Warning: Language 'magyar' not supported.– egreg Dec 20 '14 at 17:47