I recently updated my MiKTeX including biblatex (v3.11) and now I am getting strange results when using a custom language file, e.g. given the example below:
Package biblatex Warning: Bibliography string 'volume' untranslated
The result looks like
This has worked perfectly before and it still works when removing the line \DeclareLanguageMapping{ngerman}{ngerman-myveryown} from the bbx file.
I am not aware of an internal biblatex change causing this behaviour. Therefore I seek for your expertise.
\begin{filecontents}{myveryown.bbx}
\ProvidesFile{myveryown.bbx}[2018/04/24 v1.0 biblatex bibliography style]
\RequireBibliographyStyle{authortitle}
\DeclareLanguageMapping{ngerman}{ngerman-myveryown}
\end{filecontents}
\begin{filecontents}{ngerman-myveryown.lbx}
\ProvidesFile{ngerman-myveryown.lbx}[2018/04/24 v1.0 biblatex localization]
\InheritBibliographyExtras{ngerman}
\DeclareBibliographyStrings{%
byeditor = {{herausgegeben von}{hgg\adddotspace v\adddot}},
}
\end{filecontents}
\begin{filecontents}{abibfile.bib}
@book{akey,
address = {Zürich and Wiesbaden},
edition = {My very own edition},
title = {A very long title},
volume = {1},
publisher = {My publisher},
author = {Author, An},
year = {1999},
}
\end{filecontents}
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage[bibstyle=myveryown]{biblatex}
\addbibresource{abibfile.bib}
\begin{document}
Test\nocite{*}
\printbibliography
\end{document}

I saw the
– Martin Apr 24 '18 at 12:50inheritline in the documentation (it is even printed in blue) for the lbx file, but did not realize, that I it. Sorry for not seeing that.