[TASK] replace Freitag with Markttag for phipsi

This commit is contained in:
Marie Birner 2023-04-10 22:56:47 +02:00 committed by philipp
parent 4ef88ba6c5
commit 36d86b079b

View File

@ -223,6 +223,10 @@ function initTripSidebar(triggerElement: HTMLElement) {
function replaceStrings() {
const weekdays = document.querySelectorAll('.weekday-js');
Array.prototype.forEach.call(weekdays, (weekday: HTMLElement) => {
<<<<<<< HEAD
=======
//weekday.innerHTML = weekday.innerHTML.replace('Donnerstag', 'Dönerstag');
>>>>>>> 8797bfd ([TASK] replace Freitag with Markttag for phipsi)
weekday.innerHTML = weekday.innerHTML.replace('Freitag', 'Markttag');
});
}