I'm writing a paper in traditional Norwegian, in which language you can't have a passive sentence with an expressed agent. This means that the usual string "Edited by X" in the bibliography needs to be changed into "X edited". Although I can easily change the string "Edited by" into the proper Norwegian string, it seems to be hardwired somewhere that the editor name will follow whatever string you give it. As a result, it will print the equivalent of "Edited X". My question is, how can I change this so that the editor name appears before the verb?
\documentclass{article}
\usepackage[citestyle = authoryear-comp, bibstyle = authoryear, abbreviate = false, sorting = nyt, language = nynorsk, sortlocale = nn_NO, backend = biber]{biblatex}
\DefineBibliographyStrings{nynorsk}{%
bibliography = {Tilvisingar},
editor = {styrar},
editors = {styrarar},
founder = {grunnar},
founders = {grunnarar},
references = {Tilvisingar},
byeditor ={styrde},
byfounder ={grunnade},
volume = {band},
volumes = {band},
}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@BOOK{flo1906,
AUTHOR = "R. Flo",
TITLE = "Midlandsmaal",
YEAR = "1906",
EDITOR = "Arne Garborg",
LOCATION = "Kristiania",
PUBLISHER = "Olaf Norli"}
@BOOK{ordbogoverdetdanskesprog,
TITLE = "Ordbog over det danske sprog",
YEAR = "1919--56",
EDITOR = "H. Juul-Jensen",
EDITORA = "Verner Dahlerup",
EDITORATYPE = "founder",
LOCATION = "K{\o}benhavn",
PUBLISHER = "Gyldendalske boghandel. Nordisk forlag",
VOLUMES = "28"}
\end{filecontents*}
\addbibresource{\jobname.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}


