I\'m brazilian and there\'s a wordpress plugin that uses
\" . date(\"d F Y (H:i)\",$date) . \"
Output: 16 January 2013 (00:54)
WordPress has date_i18n to retrieve the date in localized format, based on timestamp.
Try:
echo date_i18n("d F Y (H:i)",$date) ;