I'm trying to set up my bibliography with Biblatex, styled with biblatex-apa. My document is in Spanish language. So I set up the package in the preamble as follows:
\usepackage[babel, spanish=quotes]{csquotes}
\usepackage[backend=biber, style=apa,sortlocale=auto]{biblatex}
\DeclareLanguageMapping{spanish}{spanish-apa}
Citations inside the text works as desired. But \printbibliography produces following output:

That ampersand in the first citation should be a "y". And the nodate string should be "sin fecha". The weird thing is that neither in spanish-apa.lbx or american-apa.lbx is defined the bibstring nodate. Anyway, adding to the spanish-apa.lbx the obvious:
\NewBibliographyString{nodate}
%into the \DeclareBibliographyStrings{
nodate = {{sin\space fecha}{{}s\adddot f\adddot}},
Does not make any difference.
I've prepared a MWE, tested online in writeLatex, to debug the nodate issue. Changing english to spanish, both in babel and in DeclareLanguageMapping, reproduce the issue.
\documentclass[endnotes]{apa6e}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage[style=apa]{biblatex}
\DeclareLanguageMapping{english}{english-apa}
\usepackage[T1]{fontenc}
\title{A title}
\author{An Author}
\shorttitle{A title}
\authornote{}
\abstract{An abstract}
\begin{filecontents}{apa-test-bib1.bib}
@book{Saussure1995,
Author = {Ferdinand de Saussure},
Origyear = {1916},
Publisher = {Payot},
Title = {Cours de Linguistique G{\'e}n{\'e}rale},
Year = {1995}}
@book{Labov1972,
Address = {Philadelphia},
Author = {William Labov},
Publisher = {University of Pennsylvania Press},
Title = {Sociolinguistic Patterns},
}
\end{filecontents}
\addbibresource{apa-test-bib1.bib}
\begin{document}
This is some text. \cite{Saussure1995,Labov1972}
\printbibliography
\end{document}

classicthesis-config.texsave for the three lines you added at the top of your question (and thebabelcall), also a lot of the options you pass toscrreprthave no bearing on the matter whatsoever and could be removed. (This answer in the MWE question has quite some hints on how to make a short and concise MWE.) – moewe Oct 12 '14 at 14:31\DeclareLabeldate{% \field{pubstate} \field{date} \literal{s.f.} }– Pablo B. Oct 12 '14 at 21:07biblatex-apabug tracker. – moewe Oct 13 '14 at 04:23