I have Fullcalendar in my Vue application and set the language to "da" But it doesn't translate everything.
The button "today" in the corner is not translated, but everything else is.
I have tried to import the locale files. Both all and "da".
import daLocale from '@fullcalendar/core/locales/da'
import allLocales from '@fullcalendar/core/locales-all'
I have also tried to put "allLocales" directly on the <fullCalender>
tag
<FullCalendar
class="demo-app-calendar"
ref="fullCalendar"
defaultView="dayGridMonth"
:plugins="calendarPlugins"
:events="calendarEvents"
locale="da"
:locales="allLocales"
/>
and I have tried setting the CDN's in <head>
<script src='fullcalendar/core/locales-all.js'></script>
<script src='fullcalendar/core/locales/da.js'></script>
I have read everything in the docs, and in the docs about locales, it doesn't show how to do it in Vue.js DOCS
Is there any other setting I should do to get the full translation?