From b0bb684be50ee53a2016749d1640bd523bb8d407 Mon Sep 17 00:00:00 2001 From: notiant <238434866+notiant@users.noreply.github.com> Date: Mon, 6 Apr 2026 19:13:53 +0200 Subject: [PATCH 1/3] NComboBox: remove hover animation --- Widgets/NComboBox.qml | 12 ------------ Widgets/NSearchableComboBox.qml | 10 ---------- 2 files changed, 22 deletions(-) diff --git a/Widgets/NComboBox.qml b/Widgets/NComboBox.qml index a669696c0..bcc9309d6 100644 --- a/Widgets/NComboBox.qml +++ b/Widgets/NComboBox.qml @@ -274,12 +274,6 @@ RowLayout { radius: Style.iRadiusS color: isHighlighted ? Color.mHover : "transparent" - Behavior on color { - ColorAnimation { - duration: Style.animationFast - } - } - NText { id: delegateText anchors.fill: parent @@ -293,12 +287,6 @@ RowLayout { var item = root.getItem(delegateRect.index); return item && item.name ? item.name : ""; } - - Behavior on color { - ColorAnimation { - duration: Style.animationFast - } - } } MouseArea { diff --git a/Widgets/NSearchableComboBox.qml b/Widgets/NSearchableComboBox.qml index 7e5893028..3d3d8c326 100644 --- a/Widgets/NSearchableComboBox.qml +++ b/Widgets/NSearchableComboBox.qml @@ -336,11 +336,6 @@ RowLayout { verticalAlignment: Text.AlignVCenter elide: Text.ElideRight Layout.fillWidth: true - Behavior on color { - ColorAnimation { - duration: Style.animationFast - } - } } RowLayout { @@ -396,11 +391,6 @@ RowLayout { anchors.fill: parent color: highlighted ? Color.mHover : "transparent" radius: Style.iRadiusS - Behavior on color { - ColorAnimation { - duration: Style.animationFast - } - } } } } From 747b4aa715f017055bbcd4cb2798dcb64976fc1a Mon Sep 17 00:00:00 2001 From: notiant <238434866+notiant@users.noreply.github.com> Date: Mon, 6 Apr 2026 21:04:16 +0200 Subject: [PATCH 2/3] update date formats for lock screen --- Commons/I18n.qml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Commons/I18n.qml b/Commons/I18n.qml index 8248adc38..44d141701 100644 --- a/Commons/I18n.qml +++ b/Commons/I18n.qml @@ -21,11 +21,12 @@ Singleton { // Default date format per language (used by lock screen, etc.) readonly property var dateFormats: ({ + "cs": "dddd d. MMMM", "de": "dddd, d. MMMM", "en": "dddd, MMMM d", "es": "dddd, d 'de' MMMM", "fr": "dddd d MMMM", - "hu": "dddd, MMMM d.", + "hu": "MMMM d., dddd", "it": "dddd d MMMM", "ja": "yyyy年M月d日 dddd", "ko": "yyyy년 M월 d일 dddd", @@ -34,11 +35,12 @@ Singleton { "nn": "dddd d. MMMM", "pl": "dddd, d MMMM", "pt": "dddd, d 'de' MMMM", + "ro": "dddd, d MMMM", "ru": "dddd, d MMMM", "sv": "dddd d MMMM", - "tr": "dddd, d MMMM", + "tr": "d MMMM dddd", "uk": "dddd, d MMMM", - "vi": "dddd, d MMMM", + "vi": "dddd, d 'tháng' M", "zh": "yyyy年M月d日 dddd" }) From 4e99e5db9265f774665ba974cfb84666884233aa Mon Sep 17 00:00:00 2001 From: notiant <238434866+notiant@users.noreply.github.com> Date: Mon, 6 Apr 2026 21:09:03 +0200 Subject: [PATCH 3/3] update I18n.qml --- Commons/I18n.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Commons/I18n.qml b/Commons/I18n.qml index 44d141701..e8197620a 100644 --- a/Commons/I18n.qml +++ b/Commons/I18n.qml @@ -38,7 +38,7 @@ Singleton { "ro": "dddd, d MMMM", "ru": "dddd, d MMMM", "sv": "dddd d MMMM", - "tr": "d MMMM dddd", + "tr": "dddd, d MMMM", "uk": "dddd, d MMMM", "vi": "dddd, d 'tháng' M", "zh": "yyyy年M月d日 dddd"