From 6a02abefcdd61ca15acf3e85477ae45ae3f32c2b Mon Sep 17 00:00:00 2001 From: Nino van Hooff Date: Wed, 17 Jun 2020 15:34:13 +0200 Subject: [PATCH] Change copy of "Your are in sync with your account" to "Account synced" Don't think the duplication I found is necessary, but I don't dare to deduplicate it as I found some logic inconsistencies CURA-7418 --- resources/qml/Account/SyncState.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/Account/SyncState.qml b/resources/qml/Account/SyncState.qml index cd8f29b364..4e5543f751 100644 --- a/resources/qml/Account/SyncState.qml +++ b/resources/qml/Account/SyncState.qml @@ -32,7 +32,7 @@ Row // Sync state icon + message name: "up_to_date" when: syncState == Cura.AccountSyncState.SUCCESS PropertyChanges { target: icon; source: UM.Theme.getIcon("checked") } - PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "You are in sync with your account")} + PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "Account synced")} }, State { @@ -80,7 +80,7 @@ Row // Sync state icon + message Label { id: stateLabel - text: catalog.i18nc("@state", catalog.i18nc("@label", "You are in sync with your account")) + text: catalog.i18nc("@state", catalog.i18nc("@label", "Account synced")) color: UM.Theme.getColor("text") font: UM.Theme.getFont("medium") renderType: Text.NativeRendering