Update all references to "Bitcoin" and "Electrum" in the UI and codebase to "Palladium" and "Pallectrum" respectively. This includes network names, wallet types, error messages, and other user-facing text. Also updates the BIP21 URI scheme from 'bitcoin' to 'palladium'.
74 lines
1.9 KiB
QML
74 lines
1.9 KiB
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Material
|
|
|
|
Pane {
|
|
objectName: 'About'
|
|
|
|
property string title: qsTr("About Pallectrum")
|
|
|
|
Flickable {
|
|
anchors.fill: parent
|
|
contentHeight: rootLayout.height
|
|
interactive: height < contentHeight
|
|
|
|
GridLayout {
|
|
id: rootLayout
|
|
columns: 2
|
|
width: parent.width
|
|
|
|
Item {
|
|
Layout.columnSpan: 2
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.preferredWidth: parent.width
|
|
Layout.preferredHeight: parent.width * 3/4 // reduce height, empty space in png
|
|
|
|
Image {
|
|
id: electrum_logo
|
|
width: parent.width
|
|
height: width
|
|
source: '../../icons/electrum_presplash.png'
|
|
}
|
|
}
|
|
|
|
Label {
|
|
text: qsTr('Version')
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
Label {
|
|
text: BUILD.electrum_version
|
|
}
|
|
Label {
|
|
text: qsTr('Protocol version')
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
Label {
|
|
text: BUILD.protocol_version
|
|
}
|
|
Label {
|
|
text: qsTr('Qt Version')
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
Label {
|
|
text: BUILD.qt_version
|
|
}
|
|
Label {
|
|
text: qsTr('PyQt Version')
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
Label {
|
|
text: BUILD.pyqt_version
|
|
}
|
|
Label {
|
|
text: qsTr('License')
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
Label {
|
|
text: qsTr('MIT License')
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|