In the following MWE, \today prints the date in British format, e.g. 14th January 2013. However, \datedate prints the date as January 28, 2013. I wonder how the latter can be changed to the former.
\documentclass{article}
\usepackage{datenumber}
\usepackage[british]{babel}
\begin{document}
\today
\setdatetoday
\addtocounter{datenumber}{14}%
\setdatebynumber{\thedatenumber}%
In 14 days is \datedate
\end{document}

