fix: show German month name with calendar

This commit is contained in:
Björn Fromme
2026-06-10 16:25:34 +02:00
parent 33ad901937
commit 27e78b4952
2 changed files with 2 additions and 2 deletions
@@ -153,7 +153,7 @@ class AjaxCalendarController extends ActionController
} }
return [ return [
'label' => $firstOfMonth->format('F Y'), 'date' => $firstOfMonth,
'weeks' => $weeks, 'weeks' => $weeks,
]; ];
} }
@@ -49,7 +49,7 @@
</tbody> </tbody>
</table> </table>
<div class="px-2 pt-2 text-sm font-semibold text-zinc-700"> <div class="px-2 pt-2 text-sm font-semibold text-zinc-700">
{month.label} <f:format.date format="%B %Y">{month.date}</f:format.date>
</div> </div>
</div> </div>
</f:section> </f:section>