1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-07 22:15:38 -05:00

fix bindings in Theme & Colors settings pane

This commit is contained in:
bbedward
2025-10-13 22:12:32 -04:00
parent 13a81eda6f
commit 381df1e949
4 changed files with 76 additions and 35 deletions

View File

@@ -399,7 +399,7 @@ Rectangle {
width: parent.width
text: {
if (!modelData || modelData.allDay) {
return "All day"
return I18n.tr("All day")
} else if (modelData.start && modelData.end) {
const timeFormat = SettingsData.use24HourClock ? "HH:mm" : "h:mm AP"
const startTime = Qt.formatTime(modelData.start, timeFormat)