34 lines
1.3 KiB
Python
34 lines
1.3 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Form implementation generated from reading ui file 'resources/_ui/save_options.ui'
|
||
|
#
|
||
|
# Created by: PyQt5 UI code generator 5.12.3
|
||
|
#
|
||
|
# WARNING! All changes made in this file will be lost!
|
||
|
|
||
|
|
||
|
from PyQt5 import QtCore, QtGui, QtWidgets
|
||
|
|
||
|
|
||
|
class Ui_Form(object):
|
||
|
def setupUi(self, Form):
|
||
|
Form.setObjectName("Form")
|
||
|
Form.resize(400, 58)
|
||
|
self.verticalLayout = QtWidgets.QVBoxLayout(Form)
|
||
|
self.verticalLayout.setObjectName("verticalLayout")
|
||
|
self.label = QtWidgets.QLabel(Form)
|
||
|
self.label.setObjectName("label")
|
||
|
self.verticalLayout.addWidget(self.label)
|
||
|
self.checkBox = QtWidgets.QCheckBox(Form)
|
||
|
self.checkBox.setObjectName("checkBox")
|
||
|
self.verticalLayout.addWidget(self.checkBox)
|
||
|
|
||
|
self.retranslateUi(Form)
|
||
|
QtCore.QMetaObject.connectSlotsByName(Form)
|
||
|
|
||
|
def retranslateUi(self, Form):
|
||
|
_translate = QtCore.QCoreApplication.translate
|
||
|
Form.setWindowTitle(_translate("Form", "Form"))
|
||
|
self.label.setText(_translate("Form", "<html><head/><body><p>Use <span style=\" font-weight:600;\"><label></span> as placeholder in filename for data label.</p></body></html>"))
|
||
|
self.checkBox.setText(_translate("Form", "Replace spaces with underscore"))
|