[Tex/LaTex] Mendeley problem displaying URL visiting date with Biblatex

biblatexurls

I'm using Mendeley to create a .bib file for my LaTeX file (I'm using BibLaTeX).
In Mendeley I define the field "Date Accessed" for a Web Page as, for example, 18 Sep 2015, so it automatically becomes 2015-09-18.
When I export to .bib, it shows urldate = {2015-09-18}.
However, when compiled, the bibliography shows "visited on 09/18/2015" (18 is a month that doesn't exist!!).

Strangely, there are other entries that are correct, but I set them exactly the same way, so I'm very confused. In this case, the .bib file shows the urldate in the format {yyyy-dd-mm}, but the output is how I want it (dd-mm-yyyy).

I also tried to force writing in Mendeley 2015-18-09, so that it is the format that BibLaTeX wants, but in that case I get an error saying that the date format is wrong.

Below, you can find an example that shows the correct date (4th Sep 2015) and one that shows the wrong date (18th Sep 2015). Both of them have been input in Mendeley exactly the same way.

@misc{Latitude,
author = {Wikipedia},
file = {:Users/nuri/Library/Application Support/Mendeley Desktop/Downloaded/2e0d0e2cfa61da92bdfb0de9a0276aef68d1ef5b.html:html},
month = sep,
title = {{Latitude}},
url = {https://en.wikipedia.org/wiki/Latitude#Geocentric_latitude},
urldate = {2015-04-09},
year = {2015}
}
@misc{LatLonAlt,
author = {{H. Dana}, Peter},
file = {:Users/nuri/Library/Application Support/Mendeley Desktop/Downloaded/d44961957a5998c59a16ca94005b2ac1a1d715ea.html:html},
institution = {Department of Geography, University of Texas},
month = dec,
title = {{Coordinate Systems Overview}},
url = {http://www.colorado.edu/geography/gcraft/notes/coordsys/coordsys.html},
urldate = {2015-09-18},
year = {1999}
}

Working example: 4th September 2015

Non-working example: it should be 18th September 2015

I know this question is more related to Mendeley, but I just cannot find the answer anywhere. Any help will be appreciated.

Best Answer

In the end, I solved the problem by adding the British babel package as suggested, and deleting and adding again some of the entries in Mendeley that had problems with the date no matter how many times I tried to change it.

\documentclass[11 pt, oneside]{report}
\usepackage[british]{babel}
\usepackage{csquotes}
\usepackage[backend=bibtex, citestyle=ieee, bibstyle=ieee]{biblatex}
\addbibresource{library.bib}

\begin{document}

\printbibliography[heading=bibintoc]

\end{document}

Thank you for your contributions.