diff --git a/src/qtquick/qml/EntryDetails.qml b/src/qtquick/qml/EntryDetails.qml --- a/src/qtquick/qml/EntryDetails.qml +++ b/src/qtquick/qml/EntryDetails.qml @@ -79,7 +79,7 @@ } else if (status == NewStuff.ItemsModel.UpdatingStatus) { statusCard.message = i18nc("Status message to be shown when the entry is in the process of being updated", "Currently updating the item %1 by %2. Please wait...", component.name, entryAuthor.name); } else { - statusCard.message = i18nc("Status message which should only be shown when the entry has been given some unknown or invalid status.", "This item is currently in an invalid or unknown state. Please report this to the KDE Community in a bug report."); + statusCard.message = i18nc("Status message which should only be shown when the entry has been given some unknown or invalid status.", "This item is currently in an invalid or unknown state. Please report this to the KDE Community in a bug report."); } } } @@ -146,7 +146,6 @@ left: parent.left } running: statusCard.opacity > 0 - Rectangle { anchors.fill: parent; color: "red"; opacity: 0.3; } } QtControls.Label { id: statusLabel @@ -158,7 +157,7 @@ } text: statusCard.message wrapMode: Text.Wrap - Rectangle { anchors.fill: parent; color: "blue"; opacity: 0.3; } + onLinkActivated: Qt.openUrlExternally(link); } } } diff --git a/src/qtquick/qml/private/entrygriddelegates/FeedbackOverlay.qml b/src/qtquick/qml/private/entrygriddelegates/FeedbackOverlay.qml --- a/src/qtquick/qml/private/entrygriddelegates/FeedbackOverlay.qml +++ b/src/qtquick/qml/private/entrygriddelegates/FeedbackOverlay.qml @@ -60,10 +60,11 @@ } else if (status == NewStuff.ItemsModel.UpdatingStatus) { statusLabel.text = i18nc("Label for the busy indicator showing an item is in the process of being updated", "Updating..."); } else { - statusLabel.text = i18nc("Label for the busy indicator which should only be shown when the entry has been given some unknown or invalid status.", "Invalid or unknown state. Please report this to the KDE Community in a bug report."); + statusLabel.text = i18nc("Label for the busy indicator which should only be shown when the entry has been given some unknown or invalid status.", "Invalid or unknown state. Please report this to the KDE Community in a bug report."); } } } + onLinkActivated: Qt.openUrlExternally(link); anchors { top: parent.verticalCenter left: parent.left