src/eric7/Preferences/ConfigurationPages/Ui_NetworkPage.py

branch
eric7
changeset 10743
5d3a5a05114e
child 10745
2921faddeaec
equal deleted inserted replaced
10742:7aa41173b44b 10743:5d3a5a05114e
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Preferences/ConfigurationPages/NetworkPage.ui'
2 #
3 # Created by: PyQt6 UI code generator 6.7.0
4 #
5 # WARNING: Any manual changes made to this file will be lost when pyuic6 is
6 # run again. Do not edit this file unless you know what you are doing.
7
8
9 from PyQt6 import QtCore, QtGui, QtWidgets
10
11
12 class Ui_NetworkPage(object):
13 def setupUi(self, NetworkPage):
14 NetworkPage.setObjectName("NetworkPage")
15 NetworkPage.resize(589, 1129)
16 self.verticalLayout_7 = QtWidgets.QVBoxLayout(NetworkPage)
17 self.verticalLayout_7.setObjectName("verticalLayout_7")
18 self.headerLabel = QtWidgets.QLabel(parent=NetworkPage)
19 self.headerLabel.setObjectName("headerLabel")
20 self.verticalLayout_7.addWidget(self.headerLabel)
21 self.line9_3 = QtWidgets.QFrame(parent=NetworkPage)
22 self.line9_3.setFrameShape(QtWidgets.QFrame.Shape.HLine)
23 self.line9_3.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
24 self.line9_3.setFrameShape(QtWidgets.QFrame.Shape.HLine)
25 self.line9_3.setObjectName("line9_3")
26 self.verticalLayout_7.addWidget(self.line9_3)
27 self.groupBox_3 = QtWidgets.QGroupBox(parent=NetworkPage)
28 self.groupBox_3.setObjectName("groupBox_3")
29 self.verticalLayout_5 = QtWidgets.QVBoxLayout(self.groupBox_3)
30 self.verticalLayout_5.setObjectName("verticalLayout_5")
31 self.dynamicOnlineCheckBox = QtWidgets.QCheckBox(parent=self.groupBox_3)
32 self.dynamicOnlineCheckBox.setObjectName("dynamicOnlineCheckBox")
33 self.verticalLayout_5.addWidget(self.dynamicOnlineCheckBox)
34 self.verticalLayout_7.addWidget(self.groupBox_3)
35 self.groupBox_2 = QtWidgets.QGroupBox(parent=NetworkPage)
36 self.groupBox_2.setObjectName("groupBox_2")
37 self.verticalLayout_6 = QtWidgets.QVBoxLayout(self.groupBox_2)
38 self.verticalLayout_6.setObjectName("verticalLayout_6")
39 self.horizontalLayout = QtWidgets.QHBoxLayout()
40 self.horizontalLayout.setObjectName("horizontalLayout")
41 self.label_6 = QtWidgets.QLabel(parent=self.groupBox_2)
42 self.label_6.setObjectName("label_6")
43 self.horizontalLayout.addWidget(self.label_6)
44 self.downloadDirPicker = EricPathPicker(parent=self.groupBox_2)
45 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Preferred)
46 sizePolicy.setHorizontalStretch(0)
47 sizePolicy.setVerticalStretch(0)
48 sizePolicy.setHeightForWidth(self.downloadDirPicker.sizePolicy().hasHeightForWidth())
49 self.downloadDirPicker.setSizePolicy(sizePolicy)
50 self.downloadDirPicker.setFocusPolicy(QtCore.Qt.FocusPolicy.StrongFocus)
51 self.downloadDirPicker.setObjectName("downloadDirPicker")
52 self.horizontalLayout.addWidget(self.downloadDirPicker)
53 self.verticalLayout_6.addLayout(self.horizontalLayout)
54 self.requestFilenameCheckBox = QtWidgets.QCheckBox(parent=self.groupBox_2)
55 self.requestFilenameCheckBox.setObjectName("requestFilenameCheckBox")
56 self.verticalLayout_6.addWidget(self.requestFilenameCheckBox)
57 self.cleanupGroup = QtWidgets.QGroupBox(parent=self.groupBox_2)
58 self.cleanupGroup.setObjectName("cleanupGroup")
59 self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.cleanupGroup)
60 self.verticalLayout_2.setObjectName("verticalLayout_2")
61 self.cleanupNeverButton = QtWidgets.QRadioButton(parent=self.cleanupGroup)
62 self.cleanupNeverButton.setObjectName("cleanupNeverButton")
63 self.verticalLayout_2.addWidget(self.cleanupNeverButton)
64 self.cleanupExitButton = QtWidgets.QRadioButton(parent=self.cleanupGroup)
65 self.cleanupExitButton.setObjectName("cleanupExitButton")
66 self.verticalLayout_2.addWidget(self.cleanupExitButton)
67 self.cleanupSuccessfulButton = QtWidgets.QRadioButton(parent=self.cleanupGroup)
68 self.cleanupSuccessfulButton.setObjectName("cleanupSuccessfulButton")
69 self.verticalLayout_2.addWidget(self.cleanupSuccessfulButton)
70 self.verticalLayout_6.addWidget(self.cleanupGroup)
71 self.displayGroup = QtWidgets.QGroupBox(parent=self.groupBox_2)
72 self.displayGroup.setObjectName("displayGroup")
73 self.verticalLayout_3 = QtWidgets.QVBoxLayout(self.displayGroup)
74 self.verticalLayout_3.setObjectName("verticalLayout_3")
75 self.openOnStartCheckBox = QtWidgets.QCheckBox(parent=self.displayGroup)
76 self.openOnStartCheckBox.setObjectName("openOnStartCheckBox")
77 self.verticalLayout_3.addWidget(self.openOnStartCheckBox)
78 self.closeOnFinishedCheckBox = QtWidgets.QCheckBox(parent=self.displayGroup)
79 self.closeOnFinishedCheckBox.setObjectName("closeOnFinishedCheckBox")
80 self.verticalLayout_3.addWidget(self.closeOnFinishedCheckBox)
81 self.verticalLayout_6.addWidget(self.displayGroup)
82 self.verticalLayout_7.addWidget(self.groupBox_2)
83 self.proxyGroup = QtWidgets.QGroupBox(parent=NetworkPage)
84 self.proxyGroup.setCheckable(False)
85 self.proxyGroup.setChecked(False)
86 self.proxyGroup.setObjectName("proxyGroup")
87 self.verticalLayout_4 = QtWidgets.QVBoxLayout(self.proxyGroup)
88 self.verticalLayout_4.setObjectName("verticalLayout_4")
89 self.noProxyButton = QtWidgets.QRadioButton(parent=self.proxyGroup)
90 self.noProxyButton.setChecked(True)
91 self.noProxyButton.setObjectName("noProxyButton")
92 self.verticalLayout_4.addWidget(self.noProxyButton)
93 self.systemProxyButton = QtWidgets.QRadioButton(parent=self.proxyGroup)
94 self.systemProxyButton.setObjectName("systemProxyButton")
95 self.verticalLayout_4.addWidget(self.systemProxyButton)
96 self.manualProxyButton = QtWidgets.QRadioButton(parent=self.proxyGroup)
97 self.manualProxyButton.setChecked(False)
98 self.manualProxyButton.setObjectName("manualProxyButton")
99 self.verticalLayout_4.addWidget(self.manualProxyButton)
100 self.groupBox = QtWidgets.QGroupBox(parent=self.proxyGroup)
101 self.groupBox.setEnabled(False)
102 self.groupBox.setFlat(False)
103 self.groupBox.setObjectName("groupBox")
104 self.verticalLayout = QtWidgets.QVBoxLayout(self.groupBox)
105 self.verticalLayout.setObjectName("verticalLayout")
106 self.groupBox_6 = QtWidgets.QGroupBox(parent=self.groupBox)
107 self.groupBox_6.setObjectName("groupBox_6")
108 self.gridLayout_2 = QtWidgets.QGridLayout(self.groupBox_6)
109 self.gridLayout_2.setObjectName("gridLayout_2")
110 self.label_13 = QtWidgets.QLabel(parent=self.groupBox_6)
111 self.label_13.setObjectName("label_13")
112 self.gridLayout_2.addWidget(self.label_13, 0, 0, 1, 1)
113 self.httpProxyHostEdit = QtWidgets.QLineEdit(parent=self.groupBox_6)
114 self.httpProxyHostEdit.setObjectName("httpProxyHostEdit")
115 self.gridLayout_2.addWidget(self.httpProxyHostEdit, 0, 1, 1, 1)
116 self.label_2 = QtWidgets.QLabel(parent=self.groupBox_6)
117 self.label_2.setObjectName("label_2")
118 self.gridLayout_2.addWidget(self.label_2, 0, 2, 1, 1)
119 self.httpProxyPortSpin = QtWidgets.QSpinBox(parent=self.groupBox_6)
120 self.httpProxyPortSpin.setAlignment(QtCore.Qt.AlignmentFlag.AlignRight)
121 self.httpProxyPortSpin.setMinimum(1)
122 self.httpProxyPortSpin.setMaximum(65535)
123 self.httpProxyPortSpin.setProperty("value", 80)
124 self.httpProxyPortSpin.setObjectName("httpProxyPortSpin")
125 self.gridLayout_2.addWidget(self.httpProxyPortSpin, 0, 3, 1, 1)
126 self.httpProxyForAllCheckBox = QtWidgets.QCheckBox(parent=self.groupBox_6)
127 self.httpProxyForAllCheckBox.setObjectName("httpProxyForAllCheckBox")
128 self.gridLayout_2.addWidget(self.httpProxyForAllCheckBox, 1, 0, 1, 4)
129 self.verticalLayout.addWidget(self.groupBox_6)
130 self.groupBox_5 = QtWidgets.QGroupBox(parent=self.groupBox)
131 self.groupBox_5.setObjectName("groupBox_5")
132 self.horizontalLayout_2 = QtWidgets.QHBoxLayout(self.groupBox_5)
133 self.horizontalLayout_2.setObjectName("horizontalLayout_2")
134 self.label_12 = QtWidgets.QLabel(parent=self.groupBox_5)
135 self.label_12.setObjectName("label_12")
136 self.horizontalLayout_2.addWidget(self.label_12)
137 self.httpsProxyHostEdit = QtWidgets.QLineEdit(parent=self.groupBox_5)
138 self.httpsProxyHostEdit.setObjectName("httpsProxyHostEdit")
139 self.horizontalLayout_2.addWidget(self.httpsProxyHostEdit)
140 self.label_5 = QtWidgets.QLabel(parent=self.groupBox_5)
141 self.label_5.setObjectName("label_5")
142 self.horizontalLayout_2.addWidget(self.label_5)
143 self.httpsProxyPortSpin = QtWidgets.QSpinBox(parent=self.groupBox_5)
144 self.httpsProxyPortSpin.setAlignment(QtCore.Qt.AlignmentFlag.AlignRight)
145 self.httpsProxyPortSpin.setMinimum(1)
146 self.httpsProxyPortSpin.setMaximum(65535)
147 self.httpsProxyPortSpin.setProperty("value", 443)
148 self.httpsProxyPortSpin.setObjectName("httpsProxyPortSpin")
149 self.horizontalLayout_2.addWidget(self.httpsProxyPortSpin)
150 self.verticalLayout.addWidget(self.groupBox_5)
151 self.groupBox_4 = QtWidgets.QGroupBox(parent=self.groupBox)
152 self.groupBox_4.setObjectName("groupBox_4")
153 self.gridLayout = QtWidgets.QGridLayout(self.groupBox_4)
154 self.gridLayout.setObjectName("gridLayout")
155 self.label_8 = QtWidgets.QLabel(parent=self.groupBox_4)
156 self.label_8.setObjectName("label_8")
157 self.gridLayout.addWidget(self.label_8, 0, 0, 1, 1)
158 self.ftpProxyTypeCombo = QtWidgets.QComboBox(parent=self.groupBox_4)
159 self.ftpProxyTypeCombo.setObjectName("ftpProxyTypeCombo")
160 self.gridLayout.addWidget(self.ftpProxyTypeCombo, 0, 1, 1, 3)
161 self.label_3 = QtWidgets.QLabel(parent=self.groupBox_4)
162 self.label_3.setObjectName("label_3")
163 self.gridLayout.addWidget(self.label_3, 1, 0, 1, 1)
164 self.ftpProxyHostEdit = QtWidgets.QLineEdit(parent=self.groupBox_4)
165 self.ftpProxyHostEdit.setObjectName("ftpProxyHostEdit")
166 self.gridLayout.addWidget(self.ftpProxyHostEdit, 1, 1, 1, 1)
167 self.label_7 = QtWidgets.QLabel(parent=self.groupBox_4)
168 self.label_7.setObjectName("label_7")
169 self.gridLayout.addWidget(self.label_7, 1, 2, 1, 1)
170 self.ftpProxyPortSpin = QtWidgets.QSpinBox(parent=self.groupBox_4)
171 self.ftpProxyPortSpin.setAlignment(QtCore.Qt.AlignmentFlag.AlignRight)
172 self.ftpProxyPortSpin.setMinimum(1)
173 self.ftpProxyPortSpin.setMaximum(65535)
174 self.ftpProxyPortSpin.setProperty("value", 21)
175 self.ftpProxyPortSpin.setObjectName("ftpProxyPortSpin")
176 self.gridLayout.addWidget(self.ftpProxyPortSpin, 1, 3, 1, 1)
177 self.label_9 = QtWidgets.QLabel(parent=self.groupBox_4)
178 self.label_9.setObjectName("label_9")
179 self.gridLayout.addWidget(self.label_9, 2, 0, 1, 1)
180 self.ftpProxyUserEdit = QtWidgets.QLineEdit(parent=self.groupBox_4)
181 self.ftpProxyUserEdit.setObjectName("ftpProxyUserEdit")
182 self.gridLayout.addWidget(self.ftpProxyUserEdit, 2, 1, 1, 3)
183 self.label_10 = QtWidgets.QLabel(parent=self.groupBox_4)
184 self.label_10.setObjectName("label_10")
185 self.gridLayout.addWidget(self.label_10, 3, 0, 1, 1)
186 self.ftpProxyPasswordEdit = QtWidgets.QLineEdit(parent=self.groupBox_4)
187 self.ftpProxyPasswordEdit.setEchoMode(QtWidgets.QLineEdit.EchoMode.Password)
188 self.ftpProxyPasswordEdit.setObjectName("ftpProxyPasswordEdit")
189 self.gridLayout.addWidget(self.ftpProxyPasswordEdit, 3, 1, 1, 3)
190 self.label_11 = QtWidgets.QLabel(parent=self.groupBox_4)
191 self.label_11.setObjectName("label_11")
192 self.gridLayout.addWidget(self.label_11, 4, 0, 1, 1)
193 self.ftpProxyAccountEdit = QtWidgets.QLineEdit(parent=self.groupBox_4)
194 self.ftpProxyAccountEdit.setObjectName("ftpProxyAccountEdit")
195 self.gridLayout.addWidget(self.ftpProxyAccountEdit, 4, 1, 1, 3)
196 self.verticalLayout.addWidget(self.groupBox_4)
197 self.verticalLayout_4.addWidget(self.groupBox)
198 self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
199 self.horizontalLayout_3.setObjectName("horizontalLayout_3")
200 self.label = QtWidgets.QLabel(parent=self.proxyGroup)
201 self.label.setObjectName("label")
202 self.horizontalLayout_3.addWidget(self.label)
203 self.exceptionsEdit = QtWidgets.QLineEdit(parent=self.proxyGroup)
204 self.exceptionsEdit.setObjectName("exceptionsEdit")
205 self.horizontalLayout_3.addWidget(self.exceptionsEdit)
206 self.verticalLayout_4.addLayout(self.horizontalLayout_3)
207 self.clearProxyPasswordsButton = QtWidgets.QPushButton(parent=self.proxyGroup)
208 self.clearProxyPasswordsButton.setObjectName("clearProxyPasswordsButton")
209 self.verticalLayout_4.addWidget(self.clearProxyPasswordsButton)
210 self.verticalLayout_7.addWidget(self.proxyGroup)
211 spacerItem = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding)
212 self.verticalLayout_7.addItem(spacerItem)
213
214 self.retranslateUi(NetworkPage)
215 self.manualProxyButton.toggled['bool'].connect(self.groupBox.setEnabled) # type: ignore
216 self.httpProxyForAllCheckBox.toggled['bool'].connect(self.groupBox_5.setDisabled) # type: ignore
217 self.httpProxyForAllCheckBox.toggled['bool'].connect(self.groupBox_4.setDisabled) # type: ignore
218 QtCore.QMetaObject.connectSlotsByName(NetworkPage)
219 NetworkPage.setTabOrder(self.dynamicOnlineCheckBox, self.downloadDirPicker)
220 NetworkPage.setTabOrder(self.downloadDirPicker, self.requestFilenameCheckBox)
221 NetworkPage.setTabOrder(self.requestFilenameCheckBox, self.cleanupNeverButton)
222 NetworkPage.setTabOrder(self.cleanupNeverButton, self.cleanupExitButton)
223 NetworkPage.setTabOrder(self.cleanupExitButton, self.cleanupSuccessfulButton)
224 NetworkPage.setTabOrder(self.cleanupSuccessfulButton, self.openOnStartCheckBox)
225 NetworkPage.setTabOrder(self.openOnStartCheckBox, self.closeOnFinishedCheckBox)
226 NetworkPage.setTabOrder(self.closeOnFinishedCheckBox, self.noProxyButton)
227 NetworkPage.setTabOrder(self.noProxyButton, self.systemProxyButton)
228 NetworkPage.setTabOrder(self.systemProxyButton, self.manualProxyButton)
229 NetworkPage.setTabOrder(self.manualProxyButton, self.httpProxyHostEdit)
230 NetworkPage.setTabOrder(self.httpProxyHostEdit, self.httpProxyPortSpin)
231 NetworkPage.setTabOrder(self.httpProxyPortSpin, self.httpProxyForAllCheckBox)
232 NetworkPage.setTabOrder(self.httpProxyForAllCheckBox, self.httpsProxyHostEdit)
233 NetworkPage.setTabOrder(self.httpsProxyHostEdit, self.httpsProxyPortSpin)
234 NetworkPage.setTabOrder(self.httpsProxyPortSpin, self.ftpProxyTypeCombo)
235 NetworkPage.setTabOrder(self.ftpProxyTypeCombo, self.ftpProxyHostEdit)
236 NetworkPage.setTabOrder(self.ftpProxyHostEdit, self.ftpProxyPortSpin)
237 NetworkPage.setTabOrder(self.ftpProxyPortSpin, self.ftpProxyUserEdit)
238 NetworkPage.setTabOrder(self.ftpProxyUserEdit, self.ftpProxyPasswordEdit)
239 NetworkPage.setTabOrder(self.ftpProxyPasswordEdit, self.ftpProxyAccountEdit)
240 NetworkPage.setTabOrder(self.ftpProxyAccountEdit, self.exceptionsEdit)
241 NetworkPage.setTabOrder(self.exceptionsEdit, self.clearProxyPasswordsButton)
242
243 def retranslateUi(self, NetworkPage):
244 _translate = QtCore.QCoreApplication.translate
245 self.headerLabel.setText(_translate("NetworkPage", "<b>Configure Network</b>"))
246 self.groupBox_3.setTitle(_translate("NetworkPage", "Reachability Status"))
247 self.dynamicOnlineCheckBox.setToolTip(_translate("NetworkPage", "Select to determine the Internet reachability status dynamically (assume Internet reachability if unchecked)"))
248 self.dynamicOnlineCheckBox.setText(_translate("NetworkPage", "Dynamic Reachability Status Determination"))
249 self.groupBox_2.setTitle(_translate("NetworkPage", "Downloads"))
250 self.label_6.setText(_translate("NetworkPage", "Download directory:"))
251 self.downloadDirPicker.setToolTip(_translate("NetworkPage", "Enter the download directory (leave empty to use the default location)"))
252 self.requestFilenameCheckBox.setToolTip(_translate("NetworkPage", "Select to ask the user for a download filename"))
253 self.requestFilenameCheckBox.setText(_translate("NetworkPage", "Request name of downloaded file"))
254 self.cleanupGroup.setTitle(_translate("NetworkPage", "Download Manager Cleanup Policy"))
255 self.cleanupNeverButton.setToolTip(_translate("NetworkPage", "Select to never cleanup automatically"))
256 self.cleanupNeverButton.setText(_translate("NetworkPage", "Never"))
257 self.cleanupExitButton.setToolTip(_translate("NetworkPage", "Select to cleanup upon exiting"))
258 self.cleanupExitButton.setText(_translate("NetworkPage", "When exiting the application"))
259 self.cleanupSuccessfulButton.setToolTip(_translate("NetworkPage", "Select to cleanup after a successful download"))
260 self.cleanupSuccessfulButton.setText(_translate("NetworkPage", "When download finished successfully"))
261 self.displayGroup.setTitle(_translate("NetworkPage", "Download Manager Display Policy"))
262 self.openOnStartCheckBox.setToolTip(_translate("NetworkPage", "Select to open the download manager dialog when starting a download"))
263 self.openOnStartCheckBox.setText(_translate("NetworkPage", "Open when starting download"))
264 self.closeOnFinishedCheckBox.setToolTip(_translate("NetworkPage", "Select to close the download manager dialog when the last download is finished"))
265 self.closeOnFinishedCheckBox.setText(_translate("NetworkPage", "Close when downloads finished"))
266 self.proxyGroup.setToolTip(_translate("NetworkPage", "Select to use a web proxy"))
267 self.proxyGroup.setTitle(_translate("NetworkPage", "Network Proxy"))
268 self.noProxyButton.setToolTip(_translate("NetworkPage", "Select to not use a network proxy"))
269 self.noProxyButton.setText(_translate("NetworkPage", "Do not use proxy"))
270 self.systemProxyButton.setToolTip(_translate("NetworkPage", "Select to use the system proxy configuration"))
271 self.systemProxyButton.setText(_translate("NetworkPage", "Use system proxy configuration"))
272 self.manualProxyButton.setToolTip(_translate("NetworkPage", "Select to use an application specific proxy configuration"))
273 self.manualProxyButton.setText(_translate("NetworkPage", "Manual proxy configuration:"))
274 self.groupBox.setTitle(_translate("NetworkPage", "Manual proxy settings"))
275 self.groupBox_6.setTitle(_translate("NetworkPage", "HTTP-Proxy"))
276 self.label_13.setText(_translate("NetworkPage", "Hostname:"))
277 self.httpProxyHostEdit.setToolTip(_translate("NetworkPage", "Enter the name of the HTTP proxy host"))
278 self.label_2.setText(_translate("NetworkPage", "Port:"))
279 self.httpProxyPortSpin.setToolTip(_translate("NetworkPage", "Enter the HTTP proxy port"))
280 self.httpProxyForAllCheckBox.setToolTip(_translate("NetworkPage", "Select to use the HTTP proxy for all"))
281 self.httpProxyForAllCheckBox.setText(_translate("NetworkPage", "Use this proxy for all protocols"))
282 self.groupBox_5.setTitle(_translate("NetworkPage", "HTTPS-Proxy"))
283 self.label_12.setText(_translate("NetworkPage", "Hostname:"))
284 self.httpsProxyHostEdit.setToolTip(_translate("NetworkPage", "Enter the name of the HTTPS proxy host"))
285 self.label_5.setText(_translate("NetworkPage", "Port:"))
286 self.httpsProxyPortSpin.setToolTip(_translate("NetworkPage", "Enter the HTTPS proxy port"))
287 self.groupBox_4.setTitle(_translate("NetworkPage", "FTP-Proxy"))
288 self.label_8.setText(_translate("NetworkPage", "Proxy Type:"))
289 self.ftpProxyTypeCombo.setToolTip(_translate("NetworkPage", "Select the type of the FTP proxy"))
290 self.label_3.setText(_translate("NetworkPage", "Hostname:"))
291 self.ftpProxyHostEdit.setToolTip(_translate("NetworkPage", "Enter the name of the FTP proxy host"))
292 self.label_7.setText(_translate("NetworkPage", "Port:"))
293 self.ftpProxyPortSpin.setToolTip(_translate("NetworkPage", "Enter the FTP proxy port"))
294 self.label_9.setText(_translate("NetworkPage", "User Name:"))
295 self.ftpProxyUserEdit.setToolTip(_translate("NetworkPage", "Enter the user name for the proxy authentication"))
296 self.label_10.setText(_translate("NetworkPage", "Password:"))
297 self.ftpProxyPasswordEdit.setToolTip(_translate("NetworkPage", "Enter the password for the proxy authentication"))
298 self.label_11.setText(_translate("NetworkPage", "Account:"))
299 self.ftpProxyAccountEdit.setToolTip(_translate("NetworkPage", "Enter the account info for the proxy authentication"))
300 self.label.setText(_translate("NetworkPage", "Exceptions:"))
301 self.exceptionsEdit.setToolTip(_translate("NetworkPage", "Enter host names or IP-addresses for which the proxy is to be circumvented separated by \',\' (wildcards * or ? may be used)"))
302 self.clearProxyPasswordsButton.setToolTip(_translate("NetworkPage", "Press to clear the saved passwords for the Http(s) proxy"))
303 self.clearProxyPasswordsButton.setText(_translate("NetworkPage", "Clear HTTP(S) Proxy Passwords"))
304 from eric7.EricWidgets.EricPathPicker import EricPathPicker

eric ide

mercurial