[i18n] adding missing i18n key for the 'Hide details' button of the initialization dialog

This commit is contained in:
Vinicius Moreira
2020-05-03 12:09:13 -03:00
parent 600f0068bf
commit 9d3c12c10e
9 changed files with 9 additions and 1 deletions

View File

@@ -188,7 +188,7 @@ class PreparePanel(QWidget, TaskManager):
self.bottom_widget = QWidget()
self.bottom_widget.setLayout(QHBoxLayout())
self.bottom_widget.layout().addStretch()
bt_hide_output = QPushButton('Hide details')
bt_hide_output = QPushButton(self.i18n['prepare.bt_hide_details'])
bt_hide_output.setStyleSheet('QPushButton { text-decoration: underline; border: 0px; background: none } ')
bt_hide_output.clicked.connect(self.hide_output)
bt_hide_output.setCursor(QCursor(Qt.PointingHandCursor))