diff --git a/pages/AddressBook.qml b/pages/AddressBook.qml index 39b7a8d6..88b0d701 100644 --- a/pages/AddressBook.qml +++ b/pages/AddressBook.qml @@ -57,7 +57,7 @@ Rectangle { anchors.top: newEntryText.bottom anchors.leftMargin: 17 anchors.topMargin: 17 - text: qsTr("Address") + text: qsTr("Address") + translationManager.emptyString fontSize: 14 tipText: qsTr("Tip tekst test") + translationManager.emptyString } @@ -158,11 +158,11 @@ Rectangle { informationPopup.title = qsTr("Error") + translationManager.emptyString; // TODO: check currentWallet.addressBook.errorString() instead. if(currentWallet.addressBook.errorCode() === AddressBook.Invalid_Address) - informationPopup.text = qsTr("Invalid address") + informationPopup.text = qsTr("Invalid address") + translationManager.emptyString else if(currentWallet.addressBook.errorCode() === AddressBook.Invalid_Payment_Id) informationPopup.text = currentWallet.addressBook.errorString() else - informationPopup.text = qsTr("Can't create entry") + informationPopup.text = qsTr("Can't create entry") + translationManager.emptyString informationPopup.onCloseCallback = null informationPopup.open();