Index: sources/gui/qml/pages/settings/SettingsDateTime.qml =================================================================== diff -u -r3738eb975493a36efae6b1a060624abab72c6871 -r86df7ff03ea32f9cd8a18bbbc7b2e01de64c783f --- sources/gui/qml/pages/settings/SettingsDateTime.qml (.../SettingsDateTime.qml) (revision 3738eb975493a36efae6b1a060624abab72c6871) +++ sources/gui/qml/pages/settings/SettingsDateTime.qml (.../SettingsDateTime.qml) (revision 86df7ff03ea32f9cd8a18bbbc7b2e01de64c783f) @@ -84,11 +84,10 @@ width : Variables.adjustmentLabelUnitContainerWidth height : Variables.adjustmentLabelUnitContainerHeight text : qsTr("Time") - unitText : qsTr("HH:MM") + unitText : vDateTime.timeFormat enabled : ! _ntpSwitch.checked contentItem: Row { // time - spacing : 10 anchors.centerIn: parent TextEntry { id: _hours @@ -130,11 +129,10 @@ width : Variables.adjustmentLabelUnitContainerWidth height : Variables.adjustmentLabelUnitContainerHeight text : qsTr("Date") - unitText : qsTr("MM/DD/YYYY") + unitText : vDateTime.dateFormat enabled : ! _ntpSwitch.checked contentItem: Row { // time - spacing : 10 anchors.centerIn: parent TextEntry { id: _month @@ -151,7 +149,7 @@ } Label { id : _slashMonthDay - text : qsTr(":") + text : qsTr("/") color : _root.entryTextColor width : 5 } @@ -170,7 +168,7 @@ } Label { id : _slashDayYear - text : qsTr(":") + text : qsTr("/") color : _root.entryTextColor width : 5 }