How to translate welcome screen?

Some way to put in Spanish the welcome screen AccretionDisk?

Maybe editing /home/krovikan/.local/share/plasma/look-and-feel/AccretionDisk/contents/splash/Splash.qml but I don’t know how to do.

Regards

Thanks to this solved thread (for Plasma 5 but works for Plasma 6) I made one change in the /home/krovikan/.local/share/plasma/look-and-feel/AccretionDisk/contents/splash/Splash.qml :

Before was (and displays the above screenshot in my OP):

Text {
id: date
text:Qt.formatDateTime(new Date(),“dddd dd ‘ | ‘ MMMM yyyy”) // Date & time formats cheatsheet
font.pointSize: 36
color: “#3399cc
opacity:1.0
font { family: “NotoSans MED”; weight: Font.Bold ;capitalization: Font.MixedCase}
anchors.horizontalCenter: parent.horizontalCenter
y: (parent.height - height) / 1.1

Now is (and displays the below screenshot after the code):

Text {
id: date
text:Qt.locale().toString(new Date(), “dddd dd ’ | ’ MMMM yyyy”) // Date & time formats cheatsheet
font.pointSize: 36
color: “#3399cc
opacity:1.0
font { family: “NotoSans MED”; weight: Font.Bold ;capitalization: Font.MixedCase}
anchors.horizontalCenter: parent.horizontalCenter
y: (parent.height - height) / 1.1

The day and the month starts with lowercase when, before, starts with capital letters.

Some idea?

Maybe for this:

But how I can put it “Lunes 18 | Agosto 2025”?

Regards