From 43e3aa659d23415ab4c035bda38387e8224f0fe0 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Tue, 20 Mar 2018 22:39:41 +0100 Subject: Translatable strings --- views/people/qml/People.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/views/people/qml/People.qml b/views/people/qml/People.qml index 38a95d75..c890e1b5 100644 --- a/views/people/qml/People.qml +++ b/views/people/qml/People.qml @@ -50,8 +50,8 @@ FocusScope { left: parent.left leftMargin: Kube.Units.smallSpacing } - text: "New Contact" visible: stack.depth == 1 + text: qsTr("New Contact") onClicked: { stack.push(personComposer) @@ -77,7 +77,7 @@ FocusScope { focus: true anchors.horizontalCenter: parent.horizontalCenter width: parent.width * 0.5 - placeholderText: "Search..." + placeholderText: qsTr("Search...") } } @@ -233,7 +233,7 @@ FocusScope { right: parent.right margins: Kube.Units.largeSpacing } - text: "Edit" + text: qsTr("Edit") onClicked: { stack.push(personComposer) -- cgit v1.2.3