From 12a9530bd1a76d7b41c98af1453811b6d4649a61 Mon Sep 17 00:00:00 2001 From: mmenzo Date: Thu, 1 Dec 2016 06:34:46 +0100 Subject: [PATCH] Fix the date format for the Dutch language (#102) --- translations/nl.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/translations/nl.php b/translations/nl.php index e20fb62..77b2718 100644 --- a/translations/nl.php +++ b/translations/nl.php @@ -32,10 +32,10 @@ return array( '(~ approximate)' => '(~ ongeveer)', 'until %date%' => 'tot en met %date%', // e.g. every year until July 4, 2014 'day_date' => function ($str, $params) use ($days, $months) { // outputs a day date, e.g. July 4, 2014 - return $months[date('n', $params['date']) - 1] . ' '. date('j, Y', $params['date']); + return date('j', $params['date']).' '.$months[date('n', $params['date']) - 1] . ' '. date('Y', $params['date']); }, 'day_month' => function ($str, $params) use ($days, $months) { // outputs a day month, e.g. July 4 - return $months[$params['month'] - 1].' '.$params['day']; + return $params['day'].' '.$months[$params['month'] - 1]; }, 'day_names' => $days, 'month_names' => $months,