diff --git a/ScreenPlay/assets/images/trayIcon_windows.png b/ScreenPlay/assets/images/trayIcon_windows.png index 5f57f23b..a03f84c4 100644 Binary files a/ScreenPlay/assets/images/trayIcon_windows.png and b/ScreenPlay/assets/images/trayIcon_windows.png differ diff --git a/ScreenPlay/qml/Navigation/ExitPopup.qml b/ScreenPlay/qml/Navigation/ExitPopup.qml index 931f092a..0818f7e4 100644 --- a/ScreenPlay/qml/Navigation/ExitPopup.qml +++ b/ScreenPlay/qml/Navigation/ExitPopup.qml @@ -27,7 +27,7 @@ Util.Popup { spacing: 20 Text { - text: qsTr("You have active Wallpaper. ScreenPlay will keep running in the background.") + text: qsTr("You have active Wallpaper.\nScreenPlay will only quit if no Wallpaper are running.") Layout.fillWidth: true Layout.fillHeight: true wrapMode: Text.WrapAtWordBoundaryOrAnywhere @@ -46,10 +46,10 @@ Util.Popup { Text { text: { if (Qt.platform.os === "windows") { - return qsTr("You can exit ScreenPlay via the bottom right Tray-Icon.") + return qsTr("You can quit ScreenPlay via the bottom right Tray-Icon.") } if (Qt.platform.os === "osx") { - return qsTr("You can exit ScreenPlay via the top right Tray-Icon.") + return qsTr("You can quit ScreenPlay via the top right Tray-Icon.") } } @@ -69,7 +69,7 @@ Util.Popup { Layout.alignment: Qt.AlignHCenter Layout.fillWidth: true Button { - text: qsTr("Exit ScreenPlay now") + text: qsTr("Quit ScreenPlay now") onClicked: Qt.quit() } Button { diff --git a/ScreenPlayUtil/qml/TrayIcon.qml b/ScreenPlayUtil/qml/TrayIcon.qml index 54847649..88133a7e 100644 --- a/ScreenPlayUtil/qml/TrayIcon.qml +++ b/ScreenPlayUtil/qml/TrayIcon.qml @@ -78,7 +78,7 @@ SystemTrayIcon { } MenuItem { - text: qsTr("Quit") + text: qsTr("Quit ScreenPlay") onTriggered: App.exit() } }