mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
localizations
This commit is contained in:
parent
a515246213
commit
7124b05715
1 changed files with 3 additions and 3 deletions
|
@ -1083,7 +1083,7 @@ class ElectrumWindow(QMainWindow):
|
||||||
|
|
||||||
d = QDialog(parent)
|
d = QDialog(parent)
|
||||||
d.setModal(1)
|
d.setModal(1)
|
||||||
d.setWindowTitle('Server')
|
d.setWindowTitle(_('Server'))
|
||||||
d.setMinimumSize(375, 20)
|
d.setMinimumSize(375, 20)
|
||||||
|
|
||||||
vbox = QVBoxLayout()
|
vbox = QVBoxLayout()
|
||||||
|
@ -1100,13 +1100,13 @@ class ElectrumWindow(QMainWindow):
|
||||||
hbox = QHBoxLayout()
|
hbox = QHBoxLayout()
|
||||||
host_line = QLineEdit()
|
host_line = QLineEdit()
|
||||||
host_line.setText(server)
|
host_line.setText(server)
|
||||||
hbox.addWidget(QLabel('Connect to:'))
|
hbox.addWidget(QLabel(_('Connect to') + ':'))
|
||||||
hbox.addWidget(host_line)
|
hbox.addWidget(host_line)
|
||||||
vbox.addLayout(hbox)
|
vbox.addLayout(hbox)
|
||||||
|
|
||||||
hbox = QHBoxLayout()
|
hbox = QHBoxLayout()
|
||||||
|
|
||||||
buttonGroup = QGroupBox("protocol")
|
buttonGroup = QGroupBox(_("Protocol"))
|
||||||
radio1 = QRadioButton("tcp", buttonGroup)
|
radio1 = QRadioButton("tcp", buttonGroup)
|
||||||
radio2 = QRadioButton("http", buttonGroup)
|
radio2 = QRadioButton("http", buttonGroup)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue