How to display estimated delivery date in German?

Hello,
I want to display estimated delivery dates to my costumers in Shopify.

I found this great article and implemented their code as described.: How to Display Estimated Delivery Date and Time in Shopify

The code is:

<p> <img src="https://cdn-icons-png.flaticon.com/512/1670/1670915.png" style="height:25px;float:left;margin-right:10px;padding-bottom: 4px;"/>
Get it between <strong><span id="fromDate"></span> - <span id="toDate"></span></strong></p>
{{ '//cdnjs.cloudflare.com/ajax/libs/datejs/1.0/date.min.js' | script_tag }}
<script>
var fromDate = Date.today().addDays(5);
if (fromDate.is().saturday() || fromDate.is().sunday()) {
fromDate = fromDate.next().monday();
}
var toDate = Date.today().addDays(10);
if (toDate.is().saturday() || toDate.is().sunday()) {
toDate = toDate.next().monday();
}
document.getElementById('fromDate').innerHTML = fromDate.toString('dddd MMMM dS');
document.getElementById('toDate').innerHTML = toDate.toString('dddd MMMM dS');
</script>

The problem with it: It displays the date in English.
I can change the “Get it between” part, no problem.

But the dates and formatting is pulled from a database that is English as far as I know.

Does anyone have an idea how to change the database to a German one?

Help would be greatly appreciated!

Kind regards
Thea

Solved the problem myself,

for anyone interested:

Lieferung zwischen und bei Bestellungen heute bis 14.00 Uhr

{{ '//cdnjs.cloudflare.com/ajax/libs/datejs/1.0/date.min.js' | script_tag }}