I'm trying to perfect my bibliography and I have a small issue with the bibstyle I'm using. Bear in mind that I searched for ages to find something that matched my expectations even to this degree, so I don't really want answers that tell me to just search for a new precoded style altogether. So I'm using the style trad-abbrv that I found here. My problem is with the entry type incollection, where it just seperates the word 'editors' with a comma. I would love for it to look exactly the same, only the word 'editors' is in brackets (see example below). Is there an easy way to do this?
MWE:
\documentclass{article}
\usepackage[style=trad-abbrv]{biblatex}
\addbibresource{ref.bib}
\setlength{\parindent}{0pt}
\begin{document}
This is the reference \cite{ref}.\medskip
How I would like it to look:
A. Author and B. Buthor. Title. In E. Editor and F. Fditor (editors) \textit{Booktitle}, pages 50-100. Publisher, 2021\medskip
How it actually looks:
\printbibliography
\end{document}


\biblstrings in\renewbibmacro*{editorlstr}above to\bibstringand load the style with the optionabbreviate = true,or change the two\biblstrings in\renewbibmacro*{editorlstr}above to\bibsstring. The first approach will also influence other bits of the style and will generally abbreviate other strings as well, the second approach only makes this instance of "editors" short. This works for all languages supported bybiblatex(provided they define a short form different from the long from), so in particular also for German. – moewe Jul 16 '21 at 12:11