Merge branch 'noctalia-dev:main' into fix/heuristic-lookup
This commit is contained in:
commit
38e3d9909f
25 changed files with 389 additions and 92 deletions
|
|
@ -13,6 +13,7 @@ Singleton {
|
|||
*/
|
||||
|
||||
// Font size
|
||||
property real fontSizeXXS: 8
|
||||
property real fontSizeXS: 9
|
||||
property real fontSizeS: 10
|
||||
property real fontSizeM: 11
|
||||
|
|
|
|||
|
|
@ -18,7 +18,8 @@ Singleton {
|
|||
dayName = dayName.charAt(0).toUpperCase() + dayName.slice(1)
|
||||
let day = date.getDate()
|
||||
let month = date.toLocaleDateString(Qt.locale(), "MMM")
|
||||
return timeString + " - " + dayName + ", " + day + " " + month
|
||||
|
||||
return timeString + " - " + (Settings.data.location.reverseDayMonth ? `${dayName}, ${month} ${day}` : `${dayName}, ${day} ${month}`)
|
||||
}
|
||||
|
||||
return timeString
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue