I start using BibLaTeX and have a little problem. At the moment, the citation of an article looks like this:
I want to delete the "Übers." in front of the article title. My MWE looks like this:
@article{asher_indirect_2001,
title = {Indirect speech acts},
volume = {128},
url = {http://www.springerlink.com/index/K4V421247052432T.pdf},
pages = {183--228},
number = {1},
journaltitle = {Synthese},
author = {Asher, Nicholas and Lascarides, Alex},
urldate = {2017-09-05},
date = {2001},
file = {Asher & Lascarides (2006)_ Indirect speech acts.pdf:files/131/Asher & Lascarides (2006)_ Indirect speech acts.pdf:application/pdf}
}
\documentclass[10pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage[english, german]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage[
backend=biber,
bibencoding=latin1,
isbn = false,
doi = false,
url = false,
style = authoryear,
]
{biblatex}
\renewcommand{\postnotedelim}{\addcolon\addspace} % Doppeltpunkt in der Kurzzitierweise nach Jahr
\DeclareFieldFormat{postnote}{#1} % kein S. in der Kurzzitierweise vor der Seitenzahl
\renewcommand{\labelnamepunct}{\addcolon\addspace} %Doppelpunkt statt Punkt hinter der Jahresangabe im Literaturverzeichnis
\AtEveryBibitem{\clearfield{pagetotal}}
\DeclareFieldFormat[article]{citetitle}{#1\midsentence}
\DeclareFieldFormat[article]{title}{#1\midsentence} %Titel bei Artikeln nicht in ""
\DeclareFieldFormat[incollection]{citetitle}{#1\midsentence}
\DeclareFieldFormat[incollection]{title}{#1\midsentence} %Titel bei Sammelbänden nicht in ""
\DeclareFieldFormat[thesis]{citetitle}{#1\midsentence}
\DeclareFieldFormat[thesis]{title}{#1\midsentence} %Titel bei Diss. nicht in ""
\DeclareFieldFormat[unpublished]{citetitle}{#1\midsentence}
\DeclareFieldFormat[unpublished]{title}{#1\midsentence}
%Titel bei unpublished nicht in ""
\DeclareFieldFormat{pages}{#1} % das S. bei Artikeln im Literaturverzeichnis löschen
\renewcommand{\multinamedelim}{\space \& \space}
\renewcommand{\finalnamedelim}{\space \& \space} %Schrägstriche zwischen den Autoren
\DefineBibliographyStrings{german}{%
andothers = {et\ al\adddot}, %et al. statt u.a.
editors = {\mkbibparens{Hgg\adddot}}, %Hgg. plural
}
% kein Komma zwischen Namen und (Hrsg.)
\makeatletter
\renewbibmacro*{bbx:editor}[1]{%
\ifthenelse{\ifuseeditor\AND\NOT\ifnameundef{editor}}
{\ifthenelse{\iffieldequals{fullhash}{\bbx@lasthash}\AND
\NOT\iffirstonpage\AND
\(\NOT\boolean{bbx@inset}\OR
\iffieldequalstr{entrysetcount}{1}\)}
{\bibnamedash}
{\printnames{editor}%
\setunit{\addspace}
\usebibmacro{bbx:savehash}}%
\usebibmacro{#1}%
\clearname{editor}%
\setunit{\addspace}}%
{\global\undef\bbx@lasthash
\usebibmacro{labeltitle}%
\setunit*{\addspace}}%
\usebibmacro{date+extrayear}}
%Schriftenreihen in (=)
\renewbibmacro*{series+number}{%
\iffieldundef{series}
{}
{\printtext[parens]{%
\printtext{=\addspace}%
\printfield{series}%
\setunit*{\addcomma\space}%
\printfield{number}%
\printtext{\addperiod}}
\nopunct}}
%Schriftenreihen an das Ende der Literaturangabe packen
% Herausgeber vor Titel des Sammelbandes
\renewbibmacro*{in:}{%
\printtext{\bibstring{in}\intitlepunct}%
\ifnameundef{bookauthor}
{\ifnameundef{editor}
{\printnames[byeditor]{editor}%
\setunit{\addcomma\space}%
\usebibmacro{translator+othersstrg}%
\clearname{translator}}
{\printnames{editor}%
\setunit{\addcomma\space}%
\usebibmacro{editor+othersstrg}%
\clearname{editor}}}
{\ifnamesequal{author}{bookauthor}
{}
{\printnames{bookauthor}%
\clearname{bookauthor}}}%
\newunit\newblock}
%(Hrsg.) anstelle von hrsg. von bei Schriftenreihen
\renewbibmacro*{byeditor+others}{%
\ifnameundef{editor}
{}
{\printnames[byeditor]{editor}%
\setunit{\addspace}%
\usebibmacro{byeditor+othersstrg}%
\clearname{editor}%
\newunit}%
\usebibmacro{byeditorx}%
\usebibmacro{bytranslator+others}}
%bei Journals die Heftnummer in () nach der Jahreszahlnummer
\renewbibmacro*{journal+issuetitle}{%
\usebibmacro{journal}%
\setunit*{\addspace}%
\iffieldundef{series}
{}
{\newunit
\printfield{series}%
\setunit{\addspace}}%
\printfield{volume}%
\iffieldundef{number}
{}
{\mkbibparens{\printfield{number}}}%
\setunit{\addcomma\space}%
\printfield{eid}%
\setunit{\addspace}%
\usebibmacro{issue+date}%
\setunit{\addcolon\space}%
\usebibmacro{issue}%
\newunit}
\addbibresource{Linguistik.bib}
\begin{document}
\nocite{asher_indirect_2001}
\printbibliography
\end{document}

\renewbibmacro*{in:}{you use? – moewe Nov 07 '17 at 17:24