From f2147bb259a92d18984bef7906e66a7d2281bb47 Mon Sep 17 00:00:00 2001 From: jspijker Date: Wed, 9 Nov 2022 10:09:22 +0100 Subject: [PATCH] Enumerate steps Contributes to CURA-8689 --- resources/qml/WelcomePages/AddUltimakerPrinter.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/qml/WelcomePages/AddUltimakerPrinter.qml b/resources/qml/WelcomePages/AddUltimakerPrinter.qml index a8a1c65af7..015ecf0f64 100644 --- a/resources/qml/WelcomePages/AddUltimakerPrinter.qml +++ b/resources/qml/WelcomePages/AddUltimakerPrinter.qml @@ -66,9 +66,9 @@ Control wrapMode: Text.WordWrap text: { const steps = [ - catalog.i18nc("@info", "Sign in into Ultimaker Digilal Factory"), - catalog.i18nc("@info", "Follow the procedure to add a new printer"), - catalog.i18nc("@info", "Your new printer will automatically appear in Cura"), + catalog.i18nc("@info", "1. Sign in into Ultimaker Digilal Factory"), + catalog.i18nc("@info", "2. Follow the procedure to add a new printer"), + catalog.i18nc("@info", "3. Your new printer will automatically appear in Cura"), ]; return steps.join("
"); }