mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
RemoteNodeDialog, RemoteNodeList: use "Trusted remote node" instead of "Trusted daemon"; add tooltip in checkbox
This commit is contained in:
parent
51828babbb
commit
89f3b890b0
2 changed files with 4 additions and 2 deletions
|
@ -122,7 +122,9 @@ MoneroComponents.Dialog {
|
||||||
MoneroComponents.CheckBox {
|
MoneroComponents.CheckBox {
|
||||||
id: setTrustedDaemonCheckBox
|
id: setTrustedDaemonCheckBox
|
||||||
activeFocusOnTab: true
|
activeFocusOnTab: true
|
||||||
text: qsTr("Mark as Trusted Daemon") + translationManager.emptyString
|
text: qsTr("Trusted remote node") + translationManager.emptyString
|
||||||
|
tooltip: qsTr("Check this box if this remote node is under your control (i.e. a dedicated server of your own).") + translationManager.emptyString
|
||||||
|
tooltipIconVisible: true
|
||||||
}
|
}
|
||||||
|
|
||||||
RowLayout {
|
RowLayout {
|
||||||
|
|
|
@ -116,7 +116,7 @@ ColumnLayout {
|
||||||
styleName: "Solid"
|
styleName: "Solid"
|
||||||
visible: trusted
|
visible: trusted
|
||||||
text: FontAwesome.shieldAlt
|
text: FontAwesome.shieldAlt
|
||||||
tooltip: qsTr("Trusted daemon") + translationManager.emptyString
|
tooltip: qsTr("Trusted remote node") + translationManager.emptyString
|
||||||
themeTransition: false
|
themeTransition: false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue