mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-18 23:53:41 +02:00
Added missing AddressBook translations
This commit is contained in:
parent
e3daa4b16e
commit
1a1a7a991b
@ -57,7 +57,7 @@ Rectangle {
|
|||||||
anchors.top: newEntryText.bottom
|
anchors.top: newEntryText.bottom
|
||||||
anchors.leftMargin: 17
|
anchors.leftMargin: 17
|
||||||
anchors.topMargin: 17
|
anchors.topMargin: 17
|
||||||
text: qsTr("Address")
|
text: qsTr("Address") + translationManager.emptyString
|
||||||
fontSize: 14
|
fontSize: 14
|
||||||
tipText: qsTr("<b>Tip tekst test</b>") + translationManager.emptyString
|
tipText: qsTr("<b>Tip tekst test</b>") + translationManager.emptyString
|
||||||
}
|
}
|
||||||
@ -158,11 +158,11 @@ Rectangle {
|
|||||||
informationPopup.title = qsTr("Error") + translationManager.emptyString;
|
informationPopup.title = qsTr("Error") + translationManager.emptyString;
|
||||||
// TODO: check currentWallet.addressBook.errorString() instead.
|
// TODO: check currentWallet.addressBook.errorString() instead.
|
||||||
if(currentWallet.addressBook.errorCode() === AddressBook.Invalid_Address)
|
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)
|
else if(currentWallet.addressBook.errorCode() === AddressBook.Invalid_Payment_Id)
|
||||||
informationPopup.text = currentWallet.addressBook.errorString()
|
informationPopup.text = currentWallet.addressBook.errorString()
|
||||||
else
|
else
|
||||||
informationPopup.text = qsTr("Can't create entry")
|
informationPopup.text = qsTr("Can't create entry") + translationManager.emptyString
|
||||||
|
|
||||||
informationPopup.onCloseCallback = null
|
informationPopup.onCloseCallback = null
|
||||||
informationPopup.open();
|
informationPopup.open();
|
||||||
|
Loading…
Reference in New Issue
Block a user