From de5d542b8e5d00a9cce971a95871409b8680e15d Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Mon, 15 Jun 2020 12:52:41 -0400 Subject: [PATCH] fix: change text strings to qsTr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: RichΛrd --- ui/onboarding/KeysMain.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/onboarding/KeysMain.qml b/ui/onboarding/KeysMain.qml index d7ce4a3fb4..9b2467fe0b 100644 --- a/ui/onboarding/KeysMain.qml +++ b/ui/onboarding/KeysMain.qml @@ -67,12 +67,12 @@ Page { anchors.top: txtDesc1.bottom anchors.topMargin: 40 anchors.horizontalCenter: parent.horizontalCenter - label: "I'm new, generate keys" + label: qsTr("I'm new, generate keys") } StyledButton { id: btnExistingKey - label: "Access existing key" + label: qsTr("Access existing key") anchors.top: btnGenKey.bottom anchors.topMargin: Theme.padding anchors.horizontalCenter: parent.horizontalCenter