From 0f8a30d37ba7cf445c0b06fa9f28ec07cf3b3956 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 14 Mar 2019 14:30:57 +0100 Subject: [PATCH] Add period to tooltip sentence A lot of translators got this wrong. Contributes to issue CURA-6257. --- .../Recommended/RecommendedQualityProfileSelector.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml index 801e76382b..ecf606d574 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml @@ -352,7 +352,7 @@ Item enabled: !Cura.MachineManager.hasCustomQuality onEntered: { - var tooltipContent = catalog.i18nc("@tooltip", "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile") + var tooltipContent = catalog.i18nc("@tooltip", "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile.") base.showTooltip(qualityRow, Qt.point(-UM.Theme.getSize("thick_margin").width, customisedSettings.height), tooltipContent) } onExited: base.hideTooltip()