Wed, 20 Mar 2019 19:41:04 +0100
Unit Test: added the capability to select the virtual environment for the unittest run.
--- a/APIs/Python3/eric6.api Wed Mar 20 19:23:12 2019 +0100 +++ b/APIs/Python3/eric6.api Wed Mar 20 19:41:04 2019 +0100 @@ -527,7 +527,7 @@ eric6.Debugger.DebugServer.DebugServer.remoteStepOver?4() eric6.Debugger.DebugServer.DebugServer.remoteStepQuit?4() eric6.Debugger.DebugServer.DebugServer.remoteThreadList?4() -eric6.Debugger.DebugServer.DebugServer.remoteUTPrepare?4(fn, tn, tfn, failed, cov, covname, coverase, clientType="") +eric6.Debugger.DebugServer.DebugServer.remoteUTPrepare?4(fn, tn, tfn, failed, cov, covname, coverase, clientType="", forProject=False, venvName="") eric6.Debugger.DebugServer.DebugServer.remoteUTRun?4() eric6.Debugger.DebugServer.DebugServer.remoteUTStop?4() eric6.Debugger.DebugServer.DebugServer.setCallTraceEnabled?4(on) @@ -8394,6 +8394,8 @@ eric6.PyUnit.UnittestDialog.UnittestDialog.on_testsuitePicker_aboutToShowPathPickerDialog?4() eric6.PyUnit.UnittestDialog.UnittestDialog.on_testsuitePicker_editTextChanged?4(txt) eric6.PyUnit.UnittestDialog.UnittestDialog.on_testsuitePicker_pathSelected?4(suite) +eric6.PyUnit.UnittestDialog.UnittestDialog.on_venvComboBox_currentTextChanged?4(venvName) +eric6.PyUnit.UnittestDialog.UnittestDialog.setProjectMode?4(forProject) eric6.PyUnit.UnittestDialog.UnittestDialog.testErrored?4(test, exc, testId) eric6.PyUnit.UnittestDialog.UnittestDialog.testFailed?4(test, exc, testId) eric6.PyUnit.UnittestDialog.UnittestDialog.testFailedExpected?4(test, exc, testId) @@ -8403,7 +8405,7 @@ eric6.PyUnit.UnittestDialog.UnittestDialog.testSucceededUnexpected?4(test, testId) eric6.PyUnit.UnittestDialog.UnittestDialog.unittestFile?7 eric6.PyUnit.UnittestDialog.UnittestDialog.unittestStopped?7 -eric6.PyUnit.UnittestDialog.UnittestDialog?1(prog=None, dbs=None, ui=None, fromEric=False, parent=None, name=None) +eric6.PyUnit.UnittestDialog.UnittestDialog?1(prog=None, dbs=None, ui=None, parent=None, name=None) eric6.PyUnit.UnittestDialog.UnittestWindow.eventFilter?4(obj, event) eric6.PyUnit.UnittestDialog.UnittestWindow?1(prog=None, parent=None) eric6.QScintilla.APIsManager.APIs.apiPreparationCancelled?7
--- a/Debugger/DebugServer.py Wed Mar 20 19:23:12 2019 +0100 +++ b/Debugger/DebugServer.py Wed Mar 20 19:41:04 2019 +0100 @@ -1313,22 +1313,31 @@ self.debuggerInterface.remoteCompletion(text) def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase, - clientType=""): + clientType="", forProject=False, venvName=""): """ Public method to prepare a new unittest run. - @param fn the filename to load (string) - @param tn the testname to load (string) - @param tfn the test function name to load tests from (string) + @param fn the filename to load + @type str + @param tn the testname to load + @type str + @param tfn the test function name to load tests from + @type str @param failed list of failed test, if only failed test should be run - (list of strings) + @type list of str @param cov flag indicating collection of coverage data is requested - (boolean) + @type bool @param covname filename to be used to assemble the coverage caches - filename (string) + filename + @type str @param coverase flag indicating erasure of coverage data is requested - (boolean) - @keyparam clientType client type to be used (string) + @type bool + @param clientType client type to be used + @type str + @param forProject flag indicating a project related action + @type bool + @param venvName name of a virtual environment + @type str """ if clientType not in self.getSupportedLanguages(): # a not supported client language was requested @@ -1350,7 +1359,7 @@ self.__findLanguageForExtension(os.path.splitext(fn)[1])) except KeyError: self.__setClientType('Python3') # assume it is a Python3 file - self.startClient(False) + self.startClient(False, forProject=forProject, venvName=venvName) self.debuggerInterface.remoteUTPrepare( fn, tn, tfn, failed, cov, covname, coverase)
--- a/Documentation/Help/source.qhp Wed Mar 20 19:23:12 2019 +0100 +++ b/Documentation/Help/source.qhp Wed Mar 20 19:41:04 2019 +0100 @@ -16968,6 +16968,8 @@ <keyword name="UnittestDialog.on_testsuitePicker_aboutToShowPathPickerDialog" id="UnittestDialog.on_testsuitePicker_aboutToShowPathPickerDialog" ref="eric6.PyUnit.UnittestDialog.html#UnittestDialog.on_testsuitePicker_aboutToShowPathPickerDialog" /> <keyword name="UnittestDialog.on_testsuitePicker_editTextChanged" id="UnittestDialog.on_testsuitePicker_editTextChanged" ref="eric6.PyUnit.UnittestDialog.html#UnittestDialog.on_testsuitePicker_editTextChanged" /> <keyword name="UnittestDialog.on_testsuitePicker_pathSelected" id="UnittestDialog.on_testsuitePicker_pathSelected" ref="eric6.PyUnit.UnittestDialog.html#UnittestDialog.on_testsuitePicker_pathSelected" /> + <keyword name="UnittestDialog.on_venvComboBox_currentTextChanged" id="UnittestDialog.on_venvComboBox_currentTextChanged" ref="eric6.PyUnit.UnittestDialog.html#UnittestDialog.on_venvComboBox_currentTextChanged" /> + <keyword name="UnittestDialog.setProjectMode" id="UnittestDialog.setProjectMode" ref="eric6.PyUnit.UnittestDialog.html#UnittestDialog.setProjectMode" /> <keyword name="UnittestDialog.testErrored" id="UnittestDialog.testErrored" ref="eric6.PyUnit.UnittestDialog.html#UnittestDialog.testErrored" /> <keyword name="UnittestDialog.testFailed" id="UnittestDialog.testFailed" ref="eric6.PyUnit.UnittestDialog.html#UnittestDialog.testFailed" /> <keyword name="UnittestDialog.testFailedExpected" id="UnittestDialog.testFailedExpected" ref="eric6.PyUnit.UnittestDialog.html#UnittestDialog.testFailedExpected" />
--- a/Documentation/Source/eric6.Debugger.DebugServer.html Wed Mar 20 19:23:12 2019 +0100 +++ b/Documentation/Source/eric6.Debugger.DebugServer.html Wed Mar 20 19:41:04 2019 +0100 @@ -1542,38 +1542,41 @@ Public method to request the list of threads from the client. </p><a NAME="DebugServer.remoteUTPrepare" ID="DebugServer.remoteUTPrepare"></a> <h4>DebugServer.remoteUTPrepare</h4> -<b>remoteUTPrepare</b>(<i>fn, tn, tfn, failed, cov, covname, coverase, clientType=""</i>) +<b>remoteUTPrepare</b>(<i>fn, tn, tfn, failed, cov, covname, coverase, clientType="", forProject=False, venvName=""</i>) <p> Public method to prepare a new unittest run. </p><dl> -<dt><i>fn</i></dt> +<dt><i>fn</i> (str)</dt> <dd> -the filename to load (string) -</dd><dt><i>tn</i></dt> +the filename to load +</dd><dt><i>tn</i> (str)</dt> <dd> -the testname to load (string) -</dd><dt><i>tfn</i></dt> +the testname to load +</dd><dt><i>tfn</i> (str)</dt> <dd> -the test function name to load tests from (string) -</dd><dt><i>failed</i></dt> +the test function name to load tests from +</dd><dt><i>failed</i> (list of str)</dt> <dd> list of failed test, if only failed test should be run - (list of strings) -</dd><dt><i>cov</i></dt> +</dd><dt><i>cov</i> (bool)</dt> <dd> flag indicating collection of coverage data is requested - (boolean) -</dd><dt><i>covname</i></dt> +</dd><dt><i>covname</i> (str)</dt> <dd> filename to be used to assemble the coverage caches - filename (string) -</dd><dt><i>coverase</i></dt> + filename +</dd><dt><i>coverase</i> (bool)</dt> <dd> flag indicating erasure of coverage data is requested - (boolean) -</dd><dt><i>clientType=</i></dt> +</dd><dt><i>clientType</i> (str)</dt> +<dd> +client type to be used +</dd><dt><i>forProject</i> (bool)</dt> <dd> -client type to be used (string) +flag indicating a project related action +</dd><dt><i>venvName</i> (str)</dt> +<dd> +name of a virtual environment </dd> </dl><a NAME="DebugServer.remoteUTRun" ID="DebugServer.remoteUTRun"></a> <h4>DebugServer.remoteUTRun</h4>
--- a/Documentation/Source/eric6.PyUnit.UnittestDialog.html Wed Mar 20 19:23:12 2019 +0100 +++ b/Documentation/Source/eric6.PyUnit.UnittestDialog.html Wed Mar 20 19:41:04 2019 +0100 @@ -277,6 +277,12 @@ <td><a href="#UnittestDialog.on_testsuitePicker_pathSelected">on_testsuitePicker_pathSelected</a></td> <td>Private slot called after a test suite has been selected.</td> </tr><tr> +<td><a href="#UnittestDialog.on_venvComboBox_currentTextChanged">on_venvComboBox_currentTextChanged</a></td> +<td>Private slot to handle the selection of a virtual environment.</td> +</tr><tr> +<td><a href="#UnittestDialog.setProjectMode">setProjectMode</a></td> +<td>Public method to set the project mode of the dialog.</td> +</tr><tr> <td><a href="#UnittestDialog.testErrored">testErrored</a></td> <td>Public method called if a test errors.</td> </tr><tr> @@ -305,30 +311,26 @@ </table> <a NAME="UnittestDialog.__init__" ID="UnittestDialog.__init__"></a> <h4>UnittestDialog (Constructor)</h4> -<b>UnittestDialog</b>(<i>prog=None, dbs=None, ui=None, fromEric=False, parent=None, name=None</i>) +<b>UnittestDialog</b>(<i>prog=None, dbs=None, ui=None, parent=None, name=None</i>) <p> Constructor </p><dl> -<dt><i>prog</i></dt> +<dt><i>prog</i> (str)</dt> <dd> filename of the program to open -</dd><dt><i>dbs</i></dt> +</dd><dt><i>dbs</i> (DebugServer)</dt> <dd> reference to the debug server object. It is an indication - whether we were called from within the eric6 IDE -</dd><dt><i>ui</i></dt> + whether we were called from within the eric6 IDE. +</dd><dt><i>ui</i> (UserInterface)</dt> <dd> reference to the UI object -</dd><dt><i>fromEric</i></dt> +</dd><dt><i>parent</i> (QWidget)</dt> <dd> -flag indicating an instantiation from within the - eric IDE (boolean) -</dd><dt><i>parent</i></dt> +parent widget of this dialog +</dd><dt><i>name</i> (str)</dt> <dd> -parent widget of this dialog (QWidget) -</dd><dt><i>name</i></dt> -<dd> -name of this dialog (string) +name of this dialog </dd> </dl><a NAME="UnittestDialog.__UTPrepared" ID="UnittestDialog.__UTPrepared"></a> <h4>UnittestDialog.__UTPrepared</h4> @@ -516,6 +518,26 @@ <dd> file name of the test suite </dd> +</dl><a NAME="UnittestDialog.on_venvComboBox_currentTextChanged" ID="UnittestDialog.on_venvComboBox_currentTextChanged"></a> +<h4>UnittestDialog.on_venvComboBox_currentTextChanged</h4> +<b>on_venvComboBox_currentTextChanged</b>(<i>venvName</i>) +<p> + Private slot to handle the selection of a virtual environment. +</p><dl> +<dt><i>venvName</i> (str)</dt> +<dd> +name of the selected virtual environment +</dd> +</dl><a NAME="UnittestDialog.setProjectMode" ID="UnittestDialog.setProjectMode"></a> +<h4>UnittestDialog.setProjectMode</h4> +<b>setProjectMode</b>(<i>forProject</i>) +<p> + Public method to set the project mode of the dialog. +</p><dl> +<dt><i>forProject</i> (bool)</dt> +<dd> +flag indicating to run for the open project +</dd> </dl><a NAME="UnittestDialog.testErrored" ID="UnittestDialog.testErrored"></a> <h4>UnittestDialog.testErrored</h4> <b>testErrored</b>(<i>test, exc, testId</i>)
--- a/PyUnit/UnittestDialog.py Wed Mar 20 19:23:12 2019 +0100 +++ b/PyUnit/UnittestDialog.py Wed Mar 20 19:41:04 2019 +0100 @@ -44,19 +44,21 @@ unittestFile = pyqtSignal(str, int, int) unittestStopped = pyqtSignal() - def __init__(self, prog=None, dbs=None, ui=None, fromEric=False, - parent=None, name=None): + def __init__(self, prog=None, dbs=None, ui=None, parent=None, name=None): """ Constructor @param prog filename of the program to open + @type str @param dbs reference to the debug server object. It is an indication - whether we were called from within the eric6 IDE + whether we were called from within the eric6 IDE. + @type DebugServer @param ui reference to the UI object - @param fromEric flag indicating an instantiation from within the - eric IDE (boolean) - @param parent parent widget of this dialog (QWidget) - @param name name of this dialog (string) + @type UserInterface + @param parent parent widget of this dialog + @type QWidget + @param name name of this dialog + @type str """ super(UnittestDialog, self).__init__(parent) if name: @@ -93,8 +95,8 @@ self.startButton.setDefault(True) self.startFailedButton.setEnabled(False) - self.dbs = dbs - self.__fromEric = fromEric + self.__dbs = dbs + self.__forProject = False self.setWindowFlags( self.windowFlags() | Qt.WindowFlags( @@ -109,6 +111,12 @@ self.progressLed.setDarkFactor(150) self.progressLed.off() + self.venvComboBox.addItem("") + self.venvComboBox.addItems( + sorted(e5App().getObject("VirtualEnvManager") + .getVirtualenvNames())) + self.venvComboBox.setEnabled(bool(self.__dbs)) + self.fileHistory = [] self.testNameHistory = [] self.running = False @@ -128,16 +136,16 @@ self.__failedTests = [] # now connect the debug server signals if called from the eric6 IDE - if self.dbs: - self.dbs.utPrepared.connect(self.__UTPrepared) - self.dbs.utFinished.connect(self.__setStoppedMode) - self.dbs.utStartTest.connect(self.testStarted) - self.dbs.utStopTest.connect(self.testFinished) - self.dbs.utTestFailed.connect(self.testFailed) - self.dbs.utTestErrored.connect(self.testErrored) - self.dbs.utTestSkipped.connect(self.testSkipped) - self.dbs.utTestFailedExpected.connect(self.testFailedExpected) - self.dbs.utTestSucceededUnexpected.connect( + if self.__dbs: + self.__dbs.utPrepared.connect(self.__UTPrepared) + self.__dbs.utFinished.connect(self.__setStoppedMode) + self.__dbs.utStartTest.connect(self.testStarted) + self.__dbs.utStopTest.connect(self.testFinished) + self.__dbs.utTestFailed.connect(self.testFailed) + self.__dbs.utTestErrored.connect(self.testErrored) + self.__dbs.utTestSkipped.connect(self.testSkipped) + self.__dbs.utTestFailedExpected.connect(self.testFailedExpected) + self.__dbs.utTestSucceededUnexpected.connect( self.testSucceededUnexpected) self.__editors = [] @@ -148,7 +156,7 @@ @param evt key press event to handle (QKeyEvent) """ - if evt.key() == Qt.Key_Escape and self.__fromEric: + if evt.key() == Qt.Key_Escape and self.__dbs: self.close() def __setProgressColor(self, color): @@ -158,7 +166,16 @@ @param color colour to be shown (string) """ self.progressLed.setColor(QColor(color)) + + def setProjectMode(self, forProject): + """ + Public method to set the project mode of the dialog. + @param forProject flag indicating to run for the open project + @type bool + """ + self.__forProject = forProject + def insertProg(self, prog): """ Public slot to insert the filename prog into the testsuitePicker @@ -195,13 +212,13 @@ """ Private slot called before the test suite selection dialog is shown. """ - if self.dbs: + if self.__dbs: py2Extensions = \ ' '.join(["*{0}".format(ext) - for ext in self.dbs.getExtensions('Python2')]) + for ext in self.__dbs.getExtensions('Python2')]) py3Extensions = \ ' '.join(["*{0}".format(ext) - for ext in self.dbs.getExtensions('Python3')]) + for ext in self.__dbs.getExtensions('Python3')]) fileFilter = self.tr( "Python3 Files ({1});;Python2 Files ({0});;All Files (*)")\ .format(py2Extensions, py3Extensions) @@ -226,20 +243,23 @@ @param txt name of the test file (string) """ - if self.dbs: - exts = self.dbs.getExtensions("Python2") + fileTypes = { + "Python2": ("Python", "Python2"), + "Python3": ("Python3", ) + } + if self.__dbs: + ver = sys.version_info[0] + variant = "Python{0}".format(ver) + exts = self.__dbs.getExtensions(variant) flags = Utilities.extractFlagsFromFile(txt) - if txt.endswith(exts) or \ + if not txt.endswith(exts) or \ ("FileType" in flags and - flags["FileType"] in ["Python", "Python2"]): - self.coverageCheckBox.setChecked(False) - self.coverageCheckBox.setEnabled(False) + flags["FileType"] not in fileTypes[variant]): self.localCheckBox.setChecked(False) self.localCheckBox.setEnabled(False) return - self.coverageCheckBox.setEnabled(True) - self.localCheckBox.setEnabled(True) + self.localCheckBox.setEnabled(bool(self.__dbs)) def on_buttonBox_clicked(self, button): """ @@ -286,10 +306,11 @@ # build the module name from the filename without extension self.testName = os.path.splitext(os.path.basename(prog))[0] - if self.dbs and not self.localCheckBox.isChecked(): + if self.__dbs and not self.localCheckBox.isChecked(): # we are cooperating with the eric6 IDE project = e5App().getObject("Project") - if project.isOpen() and project.isProjectSource(prog): + if self.__forProject and project.isOpen() and \ + project.isProjectSource(prog): mainScript = project.getMainScript(True) clientType = project.getProjectLanguage() else: @@ -307,10 +328,12 @@ else: failed = [] self.__failedTests = [] - self.dbs.remoteUTPrepare( + self.__dbs.remoteUTPrepare( prog, self.testName, testFunctionName, failed, self.coverageCheckBox.isChecked(), mainScript, - self.coverageEraseCheckBox.isChecked(), clientType=clientType) + self.coverageEraseCheckBox.isChecked(), clientType=clientType, + forProject=self.__forProject, + venvName=self.venvComboBox.currentText()) else: # we are running as an application or in local mode sys.path = [os.path.dirname(os.path.abspath(prog))] + \ @@ -353,7 +376,7 @@ # now set up the coverage stuff if self.coverageCheckBox.isChecked(): - if self.dbs: + if self.__dbs: # we are cooperating with the eric6 IDE project = e5App().getObject("Project") if project.isOpen() and project.isProjectSource(prog): @@ -409,15 +432,15 @@ self.totalTests = nrTests self.__setRunningMode() - self.dbs.remoteUTRun() + self.__dbs.remoteUTRun() @pyqtSlot() def on_stopButton_clicked(self): """ Private slot to stop the test. """ - if self.dbs and not self.localCheckBox.isChecked(): - self.dbs.remoteUTStop() + if self.__dbs and not self.localCheckBox.isChecked(): + self.__dbs.remoteUTStop() elif self.testResult: self.testResult.stop() @@ -589,7 +612,7 @@ if doc: self.testsListWidget.insertItem(0, " {0}".format(doc)) self.testsListWidget.insertItem(0, test) - if self.dbs is None or self.localCheckBox.isChecked(): + if self.__dbs is None or self.localCheckBox.isChecked(): QApplication.processEvents() def testFinished(self): @@ -664,7 +687,7 @@ break if fmatch: fn, ln = fmatch.group(1, 2) - if self.dbs: + if self.__dbs: # running as part of eric IDE self.unittestFile.emit(fn, int(ln), 1) else: @@ -712,6 +735,20 @@ except Exception: # ignore all exceptions pass + + @pyqtSlot(str) + def on_venvComboBox_currentTextChanged(self, venvName): + """ + Private slot to handle the selection of a virtual environment. + + @param venvName name of the selected virtual environment + @type str + """ + if venvName: + self.localCheckBox.setChecked(False) + self.localCheckBox.setEnabled(False) + else: + self.localCheckBox.setEnabled(True) class QtTestResult(unittest.TestResult): @@ -812,7 +849,7 @@ @param parent reference to the parent widget (QWidget) """ super(UnittestWindow, self).__init__(parent) - self.cw = UnittestDialog(prog=prog, parent=self) + self.cw = UnittestDialog(prog, parent=self) self.cw.installEventFilter(self) size = self.cw.size() self.setCentralWidget(self.cw)
--- a/PyUnit/UnittestDialog.ui Wed Mar 20 19:23:12 2019 +0100 +++ b/PyUnit/UnittestDialog.ui Wed Mar 20 19:41:04 2019 +0100 @@ -13,7 +13,7 @@ <property name="windowTitle"> <string>Unittest</string> </property> - <layout class="QVBoxLayout" name="verticalLayout_2"> + <layout class="QVBoxLayout" name="verticalLayout_3"> <item> <widget class="QGroupBox" name="groupBox"> <property name="title"> @@ -84,39 +84,73 @@ <property name="title"> <string>Run Parameters</string> </property> - <layout class="QHBoxLayout" name="_5"> + <layout class="QVBoxLayout" name="verticalLayout_2"> <item> - <widget class="QCheckBox" name="localCheckBox"> - <property name="toolTip"> - <string>Select whether you want to run the test locally</string> - </property> - <property name="text"> - <string>Run &local</string> - </property> - </widget> + <layout class="QHBoxLayout" name="horizontalLayout_3"> + <item> + <widget class="QLabel" name="label_2"> + <property name="text"> + <string>Virtual Environment:</string> + </property> + <property name="buddy"> + <cstring>venvComboBox</cstring> + </property> + </widget> + </item> + <item> + <widget class="QComboBox" name="venvComboBox"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="toolTip"> + <string>Select the virtual environment to be used</string> + </property> + <property name="whatsThis"> + <string><b>Virtual Environment</b>\n<p>Enter the virtual environment to be used. Leave it empty to use the default environment, i.e. the one configured globally or per project.</p></string> + </property> + </widget> + </item> + </layout> </item> <item> - <widget class="QCheckBox" name="coverageCheckBox"> - <property name="toolTip"> - <string>Select whether coverage data should be collected</string> - </property> - <property name="text"> - <string>C&ollect coverage data</string> - </property> - </widget> - </item> - <item> - <widget class="QCheckBox" name="coverageEraseCheckBox"> - <property name="enabled"> - <bool>false</bool> - </property> - <property name="toolTip"> - <string>Select whether old coverage data should be erased</string> - </property> - <property name="text"> - <string>&Erase coverage data</string> - </property> - </widget> + <layout class="QHBoxLayout" name="horizontalLayout_4"> + <item> + <widget class="QCheckBox" name="localCheckBox"> + <property name="toolTip"> + <string>Select whether you want to run the test locally</string> + </property> + <property name="text"> + <string>Run &local</string> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="coverageCheckBox"> + <property name="toolTip"> + <string>Select whether coverage data should be collected</string> + </property> + <property name="text"> + <string>C&ollect coverage data</string> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="coverageEraseCheckBox"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="toolTip"> + <string>Select whether old coverage data should be erased</string> + </property> + <property name="text"> + <string>&Erase coverage data</string> + </property> + </widget> + </item> + </layout> </item> </layout> </widget> @@ -417,6 +451,7 @@ <tabstops> <tabstop>testsuitePicker</tabstop> <tabstop>testComboBox</tabstop> + <tabstop>venvComboBox</tabstop> <tabstop>localCheckBox</tabstop> <tabstop>coverageCheckBox</tabstop> <tabstop>coverageEraseCheckBox</tabstop>
--- a/UI/UserInterface.py Wed Mar 20 19:23:12 2019 +0100 +++ b/UI/UserInterface.py Wed Mar 20 19:41:04 2019 +0100 @@ -4492,7 +4492,7 @@ if self.unittestDialog is None: from PyUnit.UnittestDialog import UnittestDialog self.unittestDialog = UnittestDialog( - None, self.debuggerUI.debugServer, self, fromEric=True) + None, self.debuggerUI.debugServer, self) self.unittestDialog.unittestFile.connect( self.viewmanager.setFileLine) self.unittestDialog.unittestStopped.connect(self.__unittestStopped) @@ -4531,6 +4531,7 @@ prog = fn self.__createUnitTestDialog() + self.unittestDialog.setProjectMode(False) self.unittestDialog.insertProg(prog) self.unittestDialog.show() self.unittestDialog.raise_() @@ -4559,6 +4560,7 @@ return self.__createUnitTestDialog() + self.unittestDialog.setProjectMode(True) self.unittestDialog.insertProg(prog) self.unittestDialog.show() self.unittestDialog.raise_()
--- a/changelog Wed Mar 20 19:23:12 2019 +0100 +++ b/changelog Wed Mar 20 19:41:04 2019 +0100 @@ -19,6 +19,9 @@ -- changed the Google Mail interface to not use obsoleted packages anymore - Multi Project -- added capability to the multi project browser to copy a project +- Unit Test + -- added the capability to select the virtual environment for the unittest + run - Web Browser (NG) -- added these search engines to the default list: --- MetaGer
--- a/eric6.e4p Wed Mar 20 19:23:12 2019 +0100 +++ b/eric6.e4p Wed Mar 20 19:41:04 2019 +0100 @@ -2841,6 +2841,15 @@ <value> <dict> <key> + <string>BlankLines</string> + </key> + <value> + <tuple> + <int>2</int> + <int>1</int> + </tuple> + </value> + <key> <string>BuiltinsChecker</string> </key> <value> @@ -2899,7 +2908,7 @@ <string>ExcludeMessages</string> </key> <value> - <string>C101, E265, E266, E305, E402, W504, M811, N802, N803, N807, N808, N821, W293, M201</string> + <string>C101, E265, E266, E305, E402, M201, M811, M834, N802, N803, N807, N808, N821, W293, W504</string> </value> <key> <string>FixCodes</string> @@ -2950,6 +2959,12 @@ <int>10</int> </value> <key> + <string>MaxDocLineLength</string> + </key> + <value> + <int>79</int> + </value> + <key> <string>MaxLineLength</string> </key> <value>
--- a/i18n/eric6_cs.ts Wed Mar 20 19:23:12 2019 +0100 +++ b/i18n/eric6_cs.ts Wed Mar 20 19:41:04 2019 +0100 @@ -6273,7 +6273,7 @@ <translation>Spojení z ilegálního hosta</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1515"/> + <location filename="../Debugger/DebugServer.py" line="1524"/> <source> Not connected </source> @@ -6287,13 +6287,13 @@ <translation><p>Pokus o spojení z ilegálního hosta <b>{0}</b>. Přijmout toto spojení?</p></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1708"/> + <location filename="../Debugger/DebugServer.py" line="1717"/> <source>Passive debug connection received </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1722"/> + <location filename="../Debugger/DebugServer.py" line="1731"/> <source>Passive debug connection closed </source> <translation type="unfinished"></translation> @@ -6309,12 +6309,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source>Start Debugger</source> <translation type="unfinished">Spustit debuger</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source><p>The debugger type <b>{0}</b> is not supported or not configured.</p></source> <translation type="unfinished"></translation> </message> @@ -48264,47 +48264,47 @@ <context> <name>NetworkManager</name> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="197"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> <source>SSL Certificate Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="199"/> <source><b>{0}</b><p>The page you are trying to access has errors in the SSL certificate.</p><ul><li>{1}</li></ul><p>Would you like to make an exception?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="208"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="209"/> <source>&Permanent accept</source> <translation type="unfinished">Akce&ptovat natrvalo</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="210"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="211"/> <source>&Temporary accept</source> <translation type="unfinished">Akcep&tovat dočasně</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="212"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="213"/> <source>&Reject</source> <translation type="unfinished">&Odmítnout</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="245"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="246"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation type="unfinished"><b>Zadejte uživatelské jméno a heslo pro {0}', realm '{1}'</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="248"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="249"/> <source><b>Enter username and password for '{0}'</b></source> <translation type="unfinished"><b>Zadejte uživatelské jméno a heslo pro '{0}'</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="291"/> - <source>Authentication required</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../WebBrowser/Network/NetworkManager.py" line="292"/> + <source>Authentication required</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../WebBrowser/Network/NetworkManager.py" line="293"/> <source>Authentication is required to access:</source> <translation type="unfinished"></translation> </message> @@ -75898,7 +75898,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source>Unittest</source> <translation></translation> </message> @@ -75939,97 +75939,97 @@ <translation>Zadejte jméno &souboru s testem:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="91"/> + <location filename="../PyUnit/UnittestDialog.ui" line="123"/> <source>Select whether you want to run the test locally</source> <translation>Vybrat, jestliže chcete aby test běžel lokálně</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="94"/> + <location filename="../PyUnit/UnittestDialog.ui" line="126"/> <source>Run &local</source> <translation>Spustit &lokálně</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="101"/> + <location filename="../PyUnit/UnittestDialog.ui" line="133"/> <source>Select whether coverage data should be collected</source> <translation>Vybrat, mají-li být data o pokrytí sbírána</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="104"/> + <location filename="../PyUnit/UnittestDialog.ui" line="136"/> <source>C&ollect coverage data</source> <translation>Sbírat údaje &o pokrytí</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="114"/> + <location filename="../PyUnit/UnittestDialog.ui" line="146"/> <source>Select whether old coverage data should be erased</source> <translation>Vybrat jestliže mají být stará data vymazána</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="117"/> + <location filename="../PyUnit/UnittestDialog.ui" line="149"/> <source>&Erase coverage data</source> <translation>&Vymazat data pokrytí</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="135"/> + <location filename="../PyUnit/UnittestDialog.ui" line="169"/> <source>Progress:</source> <translation>Stav procesu:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="175"/> + <location filename="../PyUnit/UnittestDialog.ui" line="209"/> <source>Run:</source> <translation>Běží:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="182"/> + <location filename="../PyUnit/UnittestDialog.ui" line="216"/> <source>Number of tests run</source> <translation>Počet běžících testů</translation> </message> <message> + <location filename="../PyUnit/UnittestDialog.ui" line="260"/> + <source>Failures:</source> + <translation>Selhalo:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="267"/> + <source>Number of test failures</source> + <translation>Počet testů, které selhaly</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="277"/> + <source>Errors:</source> + <translation>Chyby:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="284"/> + <source>Number of test errors</source> + <translation>Počet testů s chybami</translation> + </message> + <message> <location filename="../PyUnit/UnittestDialog.ui" line="226"/> - <source>Failures:</source> - <translation>Selhalo:</translation> + <source>Remaining:</source> + <translation>Zbývá:</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="233"/> - <source>Number of test failures</source> - <translation>Počet testů, které selhaly</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="243"/> - <source>Errors:</source> - <translation>Chyby:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="250"/> - <source>Number of test errors</source> - <translation>Počet testů s chybami</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="192"/> - <source>Remaining:</source> - <translation>Zbývá:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="199"/> <source>Number of tests to be run</source> <translation>Počet testů, které se ještě mají vykonat</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="332"/> + <location filename="../PyUnit/UnittestDialog.ui" line="366"/> <source>Tests performed:</source> <translation>Provedeno testů:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="342"/> + <location filename="../PyUnit/UnittestDialog.ui" line="376"/> <source>Failures and errors:</source> <translation>Selhání a chyby:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="349"/> + <location filename="../PyUnit/UnittestDialog.ui" line="383"/> <source>Failures and Errors list</source> <translation>Seznam selhání a chyb</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="352"/> + <location filename="../PyUnit/UnittestDialog.ui" line="386"/> <source><b>Failures and Errors list</b> <p>This list shows all failed and errored tests. Double clicking on an entry will show the respective traceback.</p></source> @@ -76038,167 +76038,167 @@ Dvojklik na položku zobrazí výpis zásobníku.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="379"/> + <location filename="../PyUnit/UnittestDialog.ui" line="413"/> <source>Idle</source> <translation>V běhu</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="71"/> - <source>Start</source> - <translation>Spustit</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="73"/> - <source>Start the selected testsuite</source> - <translation>Spustit vybranou soupravu testů</translation> + <source>Start</source> + <translation>Spustit</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="75"/> + <source>Start the selected testsuite</source> + <translation>Spustit vybranou soupravu testů</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="77"/> <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> <translation><b>Spustit test</b><p>Toto tlačítko spustí vybranou soupravu testů.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="86"/> - <source>Stop</source> - <translation>Zastavit</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="88"/> + <source>Stop</source> + <translation>Zastavit</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="90"/> <source>Stop the running unittest</source> <translation>Zastaví běžící unittest</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="89"/> + <location filename="../PyUnit/UnittestDialog.py" line="91"/> <source><b>Stop Test</b><p>This button stops a running unittest.</p></source> <translation><b>Zastavit test</b><p>Toto tlačítko zastaví běžící unittest.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="121"/> + <location filename="../PyUnit/UnittestDialog.py" line="129"/> <source>^Failure: </source> <translation>^Selhalo: </translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="122"/> + <location filename="../PyUnit/UnittestDialog.py" line="130"/> <source>^Error: </source> <translation>^Chyby: </translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="271"/> + <location filename="../PyUnit/UnittestDialog.py" line="291"/> <source>You must enter a test suite file.</source> <translation>Musíte zadat soubor soupravy testu.</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="279"/> + <location filename="../PyUnit/UnittestDialog.py" line="299"/> <source>Preparing Testsuite</source> <translation>Příprava soupravy testu</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="477"/> + <location filename="../PyUnit/UnittestDialog.py" line="500"/> <source>Running</source> <translation>Běží</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="642"/> + <location filename="../PyUnit/UnittestDialog.py" line="665"/> <source>Show Source</source> <translation>Zobrazit zdroj</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="211"/> + <location filename="../PyUnit/UnittestDialog.py" line="228"/> <source>Python Files (*.py);;All Files (*)</source> <translation>Python soubory (*.py);;Všechny soubory (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="207"/> + <location filename="../PyUnit/UnittestDialog.py" line="224"/> <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source> <translation>Python3 soubory ({1});;Python2 soubory ({0});;Všechny soubory (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source><p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p></source> <translation><p>Nelze spustit test <b>{0}</b>.<br>{1}<br>{2}</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="501"/> + <location filename="../PyUnit/UnittestDialog.py" line="524"/> <source>Ran {0} test in {1:.3f}s</source> <translation>Doběhl {0} test za {1:.3f}s</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="505"/> + <location filename="../PyUnit/UnittestDialog.py" line="528"/> <source>Ran {0} tests in {1:.3f}s</source> <translation>Doběhlo {0} testů za {1:.3f}s</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="522"/> + <location filename="../PyUnit/UnittestDialog.py" line="545"/> <source>Failure: {0}</source> <translation>Selhalo: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="537"/> + <location filename="../PyUnit/UnittestDialog.py" line="560"/> <source>Error: {0}</source> <translation>Chyby: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="260"/> - <source>Skipped:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="267"/> - <source>Number of tests skipped</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="277"/> - <source>Expected Failures:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="284"/> - <source>Number of tests with expected failure</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.ui" line="294"/> - <source>Unexpected Successes:</source> + <source>Skipped:</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="301"/> + <source>Number of tests skipped</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="311"/> + <source>Expected Failures:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="318"/> + <source>Number of tests with expected failure</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="328"/> + <source>Unexpected Successes:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="335"/> <source>Number of tests with unexpected success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="552"/> + <location filename="../PyUnit/UnittestDialog.py" line="575"/> <source> Skipped: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="567"/> + <location filename="../PyUnit/UnittestDialog.py" line="590"/> <source> Expected Failure</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="581"/> + <location filename="../PyUnit/UnittestDialog.py" line="604"/> <source> Unexpected Success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="78"/> - <source>Rerun Failed</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="80"/> - <source>Reruns failed tests of the selected testsuite</source> + <source>Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="82"/> + <source>Reruns failed tests of the selected testsuite</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="84"/> <source><b>Rerun Failed</b><p>This button reruns all failed tests of the selected testsuite.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="166"/> + <location filename="../PyUnit/UnittestDialog.ui" line="200"/> <source>%v/%m Tests</source> <translation type="unfinished"></translation> </message> @@ -76213,10 +76213,25 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="127"/> + <location filename="../PyUnit/UnittestDialog.ui" line="161"/> <source>Progress</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="93"/> + <source>Virtual Environment:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="109"/> + <source>Select the virtual environment to be used</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="112"/> + <source><b>Virtual Environment</b>\n<p>Enter the virtual environment to be used. Leave it empty to use the default environment, i.e. the one configured globally or per project.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UrlBar</name> @@ -76691,7 +76706,7 @@ <translation><b>Unittest Script</b><p>Spustit unittest s aktuálním skriptem.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>Unittest Project</source> <translation>Unittest Projekt</translation> </message> @@ -76861,7 +76876,7 @@ <translation><b>Klávesové zkratky</b><p>Nastavení klávesových zkratek aplikace podle zvyklostí uživatele.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6014"/> + <location filename="../UI/UserInterface.py" line="6016"/> <source>Export Keyboard Shortcuts</source> <translation>Exportovat klávesové zkratky</translation> </message> @@ -76881,7 +76896,7 @@ <translation><b>Export klávesových zkratek</b><p>Exportují se klávesové zkratky z aplikace.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Import Keyboard Shortcuts</source> <translation>Import klávesových zkratek</translation> </message> @@ -77006,7 +77021,7 @@ <translation>Nastavení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Help</source> <translation>Nápověda</translation> </message> @@ -77021,7 +77036,7 @@ <translation><h3>Čísla verzí</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7003"/> + <location filename="../UI/UserInterface.py" line="7005"/> <source></table></source> <translation></table></translation> </message> @@ -77046,67 +77061,67 @@ <translation>&Vestavěné nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>There is no main script defined for the current project. Aborting</source> <translation>V aktuálním projektu není definován hlavní skript. Zrušeno</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source>Problem</source> <translation>Problém</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source>Process Generation Error</source> <translation>Chyba v procesu generování</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Aktuálně není vybrán žádný prohlížeč. Prosím otevřete Nastavení a nějaký vyberte.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4853"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Nemohu spustit prohlížeč nápovědy.<br>Ověřte jestli je dostupný jako <b>hh</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source>Documentation Missing</source> <translation>Dokumentace chybí</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source>Documentation</source> <translation>Dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5417"/> + <location filename="../UI/UserInterface.py" line="5419"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>Počátek dokumentace PySide nebyl nastaven.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source>Save tasks</source> <translation>Uložit úlohy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source>Read tasks</source> <translation>Načíst úlohy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Error during updates check</source> <translation>Chyba během zjišťování aktualizací</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>Update available</source> <translation>Byla nalezena aktualizace</translation> </message> @@ -77121,17 +77136,17 @@ <translation>Zobrazit externí nás&troje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Could not perform updates check.</source> <translation>Kontrolu updatů nelze provést.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>&Cancel</source> <translation>&Zrušit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>First time usage</source> <translation>Spuštěno poprvé</translation> </message> @@ -77226,7 +77241,7 @@ <translation>Zobrazit dostupné verze ke stažení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6989"/> + <location filename="../UI/UserInterface.py" line="6991"/> <source><h3>Available versions</h3><table></source> <translation><h3>Dostupné verze</h3><table></translation> </message> @@ -77306,7 +77321,7 @@ <translation>Obnovit manažer nástrojových lišt...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>External Tools</source> <translation>Externí nástroje</translation> </message> @@ -77321,12 +77336,12 @@ <translation>Prohlížeč &multiprojektu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6335"/> <source>Save session</source> <translation>Uložit relaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source>Read session</source> <translation>Načíst relaci</translation> </message> @@ -77556,7 +77571,7 @@ <translation>Editor &ikon...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt 3 support</source> <translation>Qt 3 podpora</translation> </message> @@ -77596,106 +77611,106 @@ <translation>Externí nástroje/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Soubor <b>{0}</b> neexistuje nebo má nulovou délku.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4667"/> + <location filename="../UI/UserInterface.py" line="4669"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Qt-Designer.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4738"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Qt-Linguist.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4791"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Qt-Assistant.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4831"/> + <location filename="../UI/UserInterface.py" line="4833"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit aktuální prohlížeč.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4899"/> + <location filename="../UI/UserInterface.py" line="4901"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit UI Previewer.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4954"/> + <location filename="../UI/UserInterface.py" line="4956"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Previewer překladů.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4975"/> + <location filename="../UI/UserInterface.py" line="4977"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nelze spustit SQL Browser.<br>Ujistěte se, že je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5070"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>V externím nástroji '{0}' ve skupině '{1}' nebyl záznam nástroje nalezen.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>No toolgroup entry '{0}' found.</source> <translation>Skupina nástrojů '{0}' nenalezena. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5116"/> + <location filename="../UI/UserInterface.py" line="5118"/> <source>Starting process '{0} {1}'. </source> <translation>Spouštím proces '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Nemohu spustit příkaz <b>{0}</b><br>Ověřte jestli je dostupný jako <b>{1}</b>. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5208"/> + <location filename="../UI/UserInterface.py" line="5210"/> <source>Process '{0}' has exited. </source> <translation>Proces '{0}' byl ukončen. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Adresář dokumentace "<b>{0}</b>" nebyl nalezen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Do souboru s úlohami <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor s úlohami <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6270"/> + <location filename="../UI/UserInterface.py" line="6272"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Zápis do souboru relace session <b>{0}</b> se nezdařil.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor relace session <b>{0}</b> nelze přečíst.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> není soubor.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6787"/> + <location filename="../UI/UserInterface.py" line="6789"/> <source>Trying host {0}</source> <translation>Zkouším host {0}</translation> </message> @@ -77730,7 +77745,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> @@ -77770,27 +77785,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6844"/> + <location filename="../UI/UserInterface.py" line="6846"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -77876,12 +77891,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5045"/> + <location filename="../UI/UserInterface.py" line="5047"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7059"/> + <location filename="../UI/UserInterface.py" line="7061"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -78256,7 +78271,7 @@ <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5480"/> + <location filename="../UI/UserInterface.py" line="5482"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>Adresář PyQt4 dokumentace není nakonfigurován.</p> {5 ?}</translation> </message> @@ -78266,7 +78281,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -78286,7 +78301,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782"/> + <location filename="../UI/UserInterface.py" line="6784"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -78356,27 +78371,27 @@ <translation type="unfinished"><b>Eric API dokumentace</b><p>Zobrazit Eric API dokumentaci. Umístění dokumentace je v podadresáři Documentation/Source v instalačním adresáři eric5.</p> {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished">Qt v.3 není podporováno v eric5. {3 ?} {6.?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished">Aktualizace <b>{0}</b> eric5 je připravena na <b>{1}</b>. Chcete ji stáhnout a nainstalovat? {0}?} {6 ?} {1}?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric5 je aktuální {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>You are using the latest version of eric6</source> <translation type="unfinished">Používáte poslední verzi eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">eric5 nebyl ještě nakonfigurován. Bude spuštěn konfigurační dialog. {6 ?}</translation> </message> @@ -78396,7 +78411,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6798"/> + <location filename="../UI/UserInterface.py" line="6800"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -78441,7 +78456,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>Load session</source> <translation type="unfinished">Načíst relaci</translation> </message> @@ -78456,17 +78471,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -78481,17 +78496,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6923"/> + <location filename="../UI/UserInterface.py" line="6925"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -78546,7 +78561,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> @@ -78622,17 +78637,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source>Start Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5710"/> + <location filename="../UI/UserInterface.py" line="5712"/> <source>The eric6 web browser could not be started.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source><p>The eric6 web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_de.ts Wed Mar 20 19:23:12 2019 +0100 +++ b/i18n/eric6_de.ts Wed Mar 20 19:41:04 2019 +0100 @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage=""> +<!DOCTYPE TS> +<TS version="2.1" language="de"> <context> <name>AboutDialog</name> <message> @@ -1972,8 +1973,8 @@ </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="170"/> - <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>In neuem Register öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open in New Tab Ctrl+LMB</source> + <translation>In neuem Register öffnen Strg+LMK</translation> </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="174"/> @@ -2051,8 +2052,8 @@ </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="91"/> - <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>In neuem Register öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open in New Tab Ctrl+LMB</source> + <translation>In neuem Register öffnen Strg+LMK</translation> </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="95"/> @@ -6280,7 +6281,7 @@ <translation>Verbindung von ungültigem Rechner</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1515"/> + <location filename="../Debugger/DebugServer.py" line="1524"/> <source> Not connected </source> @@ -6294,14 +6295,14 @@ <translation><p>Es wurde versucht, eine Verbindung von dem nicht zugelassenen Rechner <b>{0}</b> aufzubauen. Soll die Verbindung angenommen werden?</p></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1708"/> + <location filename="../Debugger/DebugServer.py" line="1717"/> <source>Passive debug connection received </source> <translation>Verbindung für passives Debuggen empfangen </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1722"/> + <location filename="../Debugger/DebugServer.py" line="1731"/> <source>Passive debug connection closed </source> <translation>Verbindung für passives Debuggen geschlossen @@ -6318,12 +6319,12 @@ <translation><p>Die Debuggerschnittstelle <b>{0}</b> wurde bereits registriert. Anfrage wird ignoriert.</p></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source>Start Debugger</source> <translation>Debugger starten</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source><p>The debugger type <b>{0}</b> is not supported or not configured.</p></source> <translation><p>Der Debuggertyp <b>{0}</b> wird nicht unterstützt oder ist nicht konfiguriert.</p></translation> </message> @@ -26205,8 +26206,8 @@ </message> <message> <location filename="../Helpviewer/HelpBrowserWV.py" line="1223"/> - <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>Link in neuem Fenster öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open Link in New Tab Ctrl+LMB</source> + <translation>Link in neuem Fenster öffnen Strg+LMK</translation> </message> <message> <location filename="../Helpviewer/HelpBrowserWV.py" line="1314"/> @@ -48340,47 +48341,47 @@ <context> <name>NetworkManager</name> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="197"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> <source>SSL Certificate Error</source> <translation>SSL Zertifikatsfehler</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="199"/> <source><b>{0}</b><p>The page you are trying to access has errors in the SSL certificate.</p><ul><li>{1}</li></ul><p>Would you like to make an exception?</p></source> <translation><b>{0}</b><p>Die Seite, auf die zugegriffen werden soll, besitzt Fehler in ihrem SSL Zertifikat.</p><ul><li>{1}</li></ul><p>Soll eine Ausnahme erstellt werden?</p></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="208"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="209"/> <source>&Permanent accept</source> <translation>&Immer akzeptieren</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="210"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="211"/> <source>&Temporary accept</source> <translation>&Vorläufig akzeptieren</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="212"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="213"/> <source>&Reject</source> <translation>&Ablehnen</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="245"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="246"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation><b>Gib Nutzernamen und Kennwort für „{0}“ und Realm „{1}“ ein</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="248"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="249"/> <source><b>Enter username and password for '{0}'</b></source> <translation><b>Gib Nutzernamen und Kennwort für „{0}“ ein</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="291"/> - <source>Authentication required</source> - <translation>Authentisierung erforderlich</translation> - </message> - <message> <location filename="../WebBrowser/Network/NetworkManager.py" line="292"/> + <source>Authentication required</source> + <translation>Authentisierung erforderlich</translation> + </message> + <message> + <location filename="../WebBrowser/Network/NetworkManager.py" line="293"/> <source>Authentication is required to access:</source> <translation>Eine Authentisierung ist zum Zugriff auf diese URL erforderlich:</translation> </message> @@ -76091,47 +76092,47 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source>Unittest</source> <translation>Modultest</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="271"/> + <location filename="../PyUnit/UnittestDialog.py" line="291"/> <source>You must enter a test suite file.</source> <translation>Sie müssen eine Modultestdatei angeben.</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="279"/> + <location filename="../PyUnit/UnittestDialog.py" line="299"/> <source>Preparing Testsuite</source> <translation>Bereite Modultest vor</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="522"/> + <location filename="../PyUnit/UnittestDialog.py" line="545"/> <source>Failure: {0}</source> <translation>Misserfolge: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="537"/> + <location filename="../PyUnit/UnittestDialog.py" line="560"/> <source>Error: {0}</source> <translation>Fehler: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="121"/> + <location filename="../PyUnit/UnittestDialog.py" line="129"/> <source>^Failure: </source> <translation>^Misserfolge: </translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="122"/> + <location filename="../PyUnit/UnittestDialog.py" line="130"/> <source>^Error: </source> <translation>^Fehler: </translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="477"/> + <location filename="../PyUnit/UnittestDialog.py" line="500"/> <source>Running</source> <translation>Führe aus</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source><p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p></source> <translation><p>Modultest <b>{0}</b> kann nicht ausgeführt werden.<br>{1}<br>{2}</p></translation> </message> @@ -76175,97 +76176,97 @@ <translation>Test&dateiname:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="91"/> + <location filename="../PyUnit/UnittestDialog.ui" line="123"/> <source>Select whether you want to run the test locally</source> <translation>Auswählen, um den Test lokal durchzuführen</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="94"/> + <location filename="../PyUnit/UnittestDialog.ui" line="126"/> <source>Run &local</source> <translation>&Lokal ausführen</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="101"/> + <location filename="../PyUnit/UnittestDialog.ui" line="133"/> <source>Select whether coverage data should be collected</source> <translation>Auswählen, um Abdeckungsdaten zu sammeln</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="104"/> + <location filename="../PyUnit/UnittestDialog.ui" line="136"/> <source>C&ollect coverage data</source> <translation>Abdeckungsdaten &sammeln</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="114"/> + <location filename="../PyUnit/UnittestDialog.ui" line="146"/> <source>Select whether old coverage data should be erased</source> <translation>Auswählen, um die Abdeckungsdaten zu löschen</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="117"/> + <location filename="../PyUnit/UnittestDialog.ui" line="149"/> <source>&Erase coverage data</source> <translation>Abdeckungsdaten &löschen</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="135"/> + <location filename="../PyUnit/UnittestDialog.ui" line="169"/> <source>Progress:</source> <translation>Fortschritt:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="175"/> + <location filename="../PyUnit/UnittestDialog.ui" line="209"/> <source>Run:</source> <translation>Ausgeführt:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="182"/> + <location filename="../PyUnit/UnittestDialog.ui" line="216"/> <source>Number of tests run</source> <translation>Anzahl durchgeführter Tests</translation> </message> <message> + <location filename="../PyUnit/UnittestDialog.ui" line="260"/> + <source>Failures:</source> + <translation>Misserfolge:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="267"/> + <source>Number of test failures</source> + <translation>Anzahl der Misserfolge</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="277"/> + <source>Errors:</source> + <translation>Fehler:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="284"/> + <source>Number of test errors</source> + <translation>Anzahl fehlerhafter Tests</translation> + </message> + <message> <location filename="../PyUnit/UnittestDialog.ui" line="226"/> - <source>Failures:</source> - <translation>Misserfolge:</translation> + <source>Remaining:</source> + <translation>Verbleibend:</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="233"/> - <source>Number of test failures</source> - <translation>Anzahl der Misserfolge</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="243"/> - <source>Errors:</source> - <translation>Fehler:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="250"/> - <source>Number of test errors</source> - <translation>Anzahl fehlerhafter Tests</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="192"/> - <source>Remaining:</source> - <translation>Verbleibend:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="199"/> <source>Number of tests to be run</source> <translation>Anzahl verbleibender Tests</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="332"/> + <location filename="../PyUnit/UnittestDialog.ui" line="366"/> <source>Tests performed:</source> <translation>Durchgeführte Tests:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="342"/> + <location filename="../PyUnit/UnittestDialog.ui" line="376"/> <source>Failures and errors:</source> <translation>Misserfolge und Fehler:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="349"/> + <location filename="../PyUnit/UnittestDialog.ui" line="383"/> <source>Failures and Errors list</source> <translation>Liste der Misserfolge und Fehler</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="352"/> + <location filename="../PyUnit/UnittestDialog.ui" line="386"/> <source><b>Failures and Errors list</b> <p>This list shows all failed and errored tests. Double clicking on an entry will show the respective traceback.</p></source> @@ -76274,127 +76275,127 @@ Ein Doppelklick auf einen Eintrag zeigt den zugehörigen Traceback an.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="73"/> + <location filename="../PyUnit/UnittestDialog.py" line="75"/> <source>Start the selected testsuite</source> <translation>Startet den ausgewählten Modultest</translation> </message> <message> + <location filename="../PyUnit/UnittestDialog.py" line="90"/> + <source>Stop the running unittest</source> + <translation>Halte den laufenden Modultest an</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="413"/> + <source>Idle</source> + <translation>Leerlauf</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="73"/> + <source>Start</source> + <translation>Start</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="77"/> + <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> + <translation><b>Starte Modultest</b><p>Dieser Knopf startet den ausgewählten Modultest.</p></translation> + </message> + <message> <location filename="../PyUnit/UnittestDialog.py" line="88"/> - <source>Stop the running unittest</source> - <translation>Halte den laufenden Modultest an</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="379"/> - <source>Idle</source> - <translation>Leerlauf</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.py" line="71"/> - <source>Start</source> - <translation>Start</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.py" line="75"/> - <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> - <translation><b>Starte Modultest</b><p>Dieser Knopf startet den ausgewählten Modultest.</p></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.py" line="86"/> <source>Stop</source> <translation>Anhalten</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="89"/> + <location filename="../PyUnit/UnittestDialog.py" line="91"/> <source><b>Stop Test</b><p>This button stops a running unittest.</p></source> <translation><b>Modultest anhalten</b><p>Dieser Knopf hält den laufenden Modultest an.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="642"/> + <location filename="../PyUnit/UnittestDialog.py" line="665"/> <source>Show Source</source> <translation>Zeige Quelltext</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="211"/> + <location filename="../PyUnit/UnittestDialog.py" line="228"/> <source>Python Files (*.py);;All Files (*)</source> <translation>Python-Dateien (*.py);;Alle Dateien (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="207"/> + <location filename="../PyUnit/UnittestDialog.py" line="224"/> <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source> <translation>Python 3-Dateien ({1});;Python 2-Dateien ({0});;Alle Dateien (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="501"/> + <location filename="../PyUnit/UnittestDialog.py" line="524"/> <source>Ran {0} test in {1:.3f}s</source> <translation>{0} Test in {1:.3f}s ausgeführt</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="505"/> + <location filename="../PyUnit/UnittestDialog.py" line="528"/> <source>Ran {0} tests in {1:.3f}s</source> <translation>{0} Tests in {1:.3f}s ausgeführt</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="260"/> - <source>Skipped:</source> - <translation>Übersprungen:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="267"/> - <source>Number of tests skipped</source> - <translation>Anzahl übersprungener Tests</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="277"/> - <source>Expected Failures:</source> - <translation>Erwartete Misserfolge:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="284"/> - <source>Number of tests with expected failure</source> - <translation>Anzahl der Test, deren Misserfolg erwartet wurde</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.ui" line="294"/> - <source>Unexpected Successes:</source> - <translation>Unerwartete Erfolge:</translation> + <source>Skipped:</source> + <translation>Übersprungen:</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="301"/> + <source>Number of tests skipped</source> + <translation>Anzahl übersprungener Tests</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="311"/> + <source>Expected Failures:</source> + <translation>Erwartete Misserfolge:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="318"/> + <source>Number of tests with expected failure</source> + <translation>Anzahl der Test, deren Misserfolg erwartet wurde</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="328"/> + <source>Unexpected Successes:</source> + <translation>Unerwartete Erfolge:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="335"/> <source>Number of tests with unexpected success</source> <translation>Anzahl der Tests, die unerwartet erfolgreich waren</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="552"/> + <location filename="../PyUnit/UnittestDialog.py" line="575"/> <source> Skipped: {0}</source> <translation> Übersprungen: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="567"/> + <location filename="../PyUnit/UnittestDialog.py" line="590"/> <source> Expected Failure</source> <translation> Erwarteter Mißerfolg</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="581"/> + <location filename="../PyUnit/UnittestDialog.py" line="604"/> <source> Unexpected Success</source> <translation> Unerwarteter Erfolg</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="78"/> - <source>Rerun Failed</source> - <translation>Fehlerhafte wiederholen</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="80"/> - <source>Reruns failed tests of the selected testsuite</source> - <translation>Fehlerhafte Tests des ausgewählten Modultests wiederholen</translation> + <source>Rerun Failed</source> + <translation>Fehlerhafte wiederholen</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="82"/> + <source>Reruns failed tests of the selected testsuite</source> + <translation>Fehlerhafte Tests des ausgewählten Modultests wiederholen</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="84"/> <source><b>Rerun Failed</b><p>This button reruns all failed tests of the selected testsuite.</p></source> <translation><b>Fehlerhafte wiederholen</b><p>Dieser Knopf wiederholt alle fehlerhaften Tests des ausgewählten Modultests.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="166"/> + <location filename="../PyUnit/UnittestDialog.ui" line="200"/> <source>%v/%m Tests</source> <translation>%v/%m Tests</translation> </message> @@ -76409,10 +76410,26 @@ <translation>Ausführungsparameter</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="127"/> + <location filename="../PyUnit/UnittestDialog.ui" line="161"/> <source>Progress</source> <translation>Fortschritt</translation> </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="93"/> + <source>Virtual Environment:</source> + <translation>Virtuelle Umgebung:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="109"/> + <source>Select the virtual environment to be used</source> + <translation>Wähle die zu verwendende virtuelle Umgebung</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="112"/> + <source><b>Virtual Environment</b>\n<p>Enter the virtual environment to be used. Leave it empty to use the default environment, i.e. the one configured globally or per project.</p></source> + <translation><b>Virtuelle Umgebung</b> +<p>Wähle die zu verwendende virtuelle Umgebung aus. Leer lassen, um die Standardumgebung (d.h. die global oder per Projekt konfigurierte) zu verwenden.</p></translation> + </message> </context> <context> <name>UrlBar</name> @@ -76642,7 +76659,7 @@ <translation>Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Help</source> <translation>Hilfe</translation> </message> @@ -76652,7 +76669,7 @@ <translation>&Werkzeugleisten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source>Problem</source> <translation>Problem</translation> </message> @@ -76672,7 +76689,7 @@ <translation>&Was ist das?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> @@ -76762,7 +76779,7 @@ <translation><b>Fehler berichten...</b><p>Öffnet einen Dialog zum Senden eines Fehlerberichtes.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6014"/> + <location filename="../UI/UserInterface.py" line="6016"/> <source>Export Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle exportieren</translation> </message> @@ -76782,7 +76799,7 @@ <translation><b>Tastaturkurzbefehle exportieren</b><p>Exportiert die Tastaturkurzbefehle der Applikation.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Import Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle importieren</translation> </message> @@ -76872,7 +76889,7 @@ <translation><b>Modultest (Skript)</b><p>Modultest für aktuelles Skript ausführen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>Unittest Project</source> <translation>Modultest (Projekt)</translation> </message> @@ -76892,7 +76909,7 @@ <translation>&Modultests</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation> </message> @@ -76942,7 +76959,7 @@ <translation><b>Dateien Seite an Seite vergleichen</b><p>Öffnet einen Dialog zum Vergleich zweier Dateien und zur Anzeige des Ergebnisse Seite an Seite.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source>Drop Error</source> <translation>Drop-Fehler</translation> </message> @@ -77012,32 +77029,32 @@ <translation><b>Ansichtenprofile</b><p>Ansichtenprofile konfigurieren. Mit diesem Dialog kann die Sichtbarkeit der verschiedenen Fenster für die vorbestimmten Ansichtenprofile eingestellt werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Die Datei <b>{0}</b> existiert nicht oder hat die Größe Null.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4667"/> + <location filename="../UI/UserInterface.py" line="4669"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Designer konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4738"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Linguist konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4791"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Assistant konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Der Werkzeugeeintrag <b>{0}</b> konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{1}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> @@ -77062,7 +77079,7 @@ <translation><b>UI-Vorschau</b><p>Starte die UI-Vorschau.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4899"/> + <location filename="../UI/UserInterface.py" line="4901"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die UI-Vorschau konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> @@ -77087,7 +77104,7 @@ <translation><b>Übersetzungsvorschau</b><p>Dies startet das Programm zur Vorschau von Übersetzungen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4954"/> + <location filename="../UI/UserInterface.py" line="4956"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die Übersetzungsvorschau konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> @@ -77127,42 +77144,42 @@ <translation>Aufgabenanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source>Save tasks</source> <translation>Aufgaben speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source>Read tasks</source> <translation>Aufgaben lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Momentan ist kein Betrachter angegeben. Bitte benutzen Sie den Einstellungsdialog, um einen festzulegen.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4831"/> + <location filename="../UI/UserInterface.py" line="4833"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der Betrachter konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source>Documentation Missing</source> <translation>Dokumentation fehlt</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Der Dokumentationsstartpunkt „<b>{0}</b>“ konnte nicht gefunden werden.</p></translation> </message> @@ -77262,7 +77279,7 @@ <translation>Öffne die Eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4853"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Die Hilfeanzeige konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>hh</b> verfügbar ist.</p></translation> </message> @@ -77343,36 +77360,36 @@ <translation>&Eingebaute Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5116"/> + <location filename="../UI/UserInterface.py" line="5118"/> <source>Starting process '{0} {1}'. </source> <translation>Starte Prozess „{0} {1}“. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5208"/> + <location filename="../UI/UserInterface.py" line="5210"/> <source>Process '{0}' has exited. </source> <translation>Prozess „{0}“ ist beendet. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source>Documentation</source> <translation>Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5417"/> + <location filename="../UI/UserInterface.py" line="5419"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>Der PyQt4-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Error during updates check</source> <translation>Fehler während der Aktualisierungsprüfung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>Update available</source> <translation>Aktualisierung verfügbar</translation> </message> @@ -77382,7 +77399,7 @@ <translation><h3>Versionsnummern</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7003"/> + <location filename="../UI/UserInterface.py" line="7005"/> <source></table></source> <translation></table></translation> </message> @@ -77407,22 +77424,22 @@ <translation>Zeige externe &Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Could not perform updates check.</source> <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>&Cancel</source> <translation>&Abbrechen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6787"/> + <location filename="../UI/UserInterface.py" line="6789"/> <source>Trying host {0}</source> <translation>Prüfe Host {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>First time usage</source> <translation>Erstmalige Nutzung</translation> </message> @@ -77517,7 +77534,7 @@ <translation>Zeige die verfügbaren eric-Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6989"/> + <location filename="../UI/UserInterface.py" line="6991"/> <source><h3>Available versions</h3><table></source> <translation><h3>Verfügbare Versionen</h3><table></translation> </message> @@ -77602,17 +77619,17 @@ <translation>Externe Werkzeuge/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>External Tools</source> <translation>Externe Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5070"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>Kein Eintrag für das externe Werkzeug „{0}“ in der Gruppe „{1}“ gefunden.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>No toolgroup entry '{0}' found.</source> <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation> </message> @@ -77627,22 +77644,22 @@ <translation>&Mehrfachprojektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6335"/> <source>Save session</source> <translation>Sitzung speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6270"/> + <location filename="../UI/UserInterface.py" line="6272"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Die Sitzungsdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source>Read session</source> <translation>Sitzung lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Die Sitzungsdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> @@ -77862,7 +77879,7 @@ <translation><b>SQL-Browser</b><p>Erforsche eine SQL-Datenbank.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4975"/> + <location filename="../UI/UserInterface.py" line="4977"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der SQL-Browser konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> @@ -77877,7 +77894,7 @@ <translation>&Icon-Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt 3 support</source> <translation>Qt3-Unterstützung</translation> </message> @@ -77927,7 +77944,7 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Tastaturkurzbefehlsdatei (*.e4k)</translation> </message> @@ -77967,27 +77984,27 @@ <translation><b>Python 2-Dokumentation</b><p>Zeigt die Python 2-Dokumentation an. Ist kein Dokumentationsverzeichnis konfiguriert, so ist der Ort, an dem die Python 2-Dokumentation gesucht wird, unter Windows das Verzeichnis <i>doc</i> unter dem Verzeichnis, in dem der konfigurierte Python 2-Interpreter installiert ist, und unter Unix das Verzeichnis <i>/usr/share/doc/packages/python/html/python-docs-html</i>. Um dies zu überschreiben, können Sie die Umgebungsvariable PYTHON2DOCDIR setzen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>Error getting versions information</source> <translation>Fehler beim Herunterladen der Versionsinformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6844"/> + <location filename="../UI/UserInterface.py" line="6846"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>Die Versionsinformationen konnten nicht heruntergeladen werden. Bitte gehen Sie online und versuchen Sie es erneut.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Open Browser</source> <translation>Browser starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Could not start a web browser</source> <translation>Der Systemwebbrowser konnte nicht gestartet werden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>Die Versionsinformationen konnten seit 7 Tagen nicht heruntergeladen werden. Bitte gehen Sie online und versuchen Sie es erneut.</translation> </message> @@ -78073,12 +78090,12 @@ <translation><b>Bildschirmfoto</b><p>Dies öffnet einen Dialog, um ein Bildschirmfoto aufzunehmen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5045"/> + <location filename="../UI/UserInterface.py" line="5047"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die Bildschirmfotoanwendung konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7059"/> + <location filename="../UI/UserInterface.py" line="7061"/> <source>Select Workspace Directory</source> <translation>Wähle Arbeitsverzeichnis</translation> </message> @@ -78453,7 +78470,7 @@ <translation>Öffne die PyQt5-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5480"/> + <location filename="../UI/UserInterface.py" line="5482"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation><p>Der PyQt5-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> @@ -78463,7 +78480,7 @@ <translation><b>Python 3-Dokumentation</b><p>Zeigt die Python 3-Dokumentation an. Ist kein Dokumentationsverzeichnis konfiguriert, so ist der Ort, an dem die Python 3-Dokumentation gesucht wird, unter Windows das Verzeichnis <i>doc</i> unter dem Verzeichnis, in dem der Python 3-Interpreter installiert ist, und unter Unix das Verzeichnis <i>/usr/share/doc/packages/python/html</i>. Um dies zu überschreiben, können Sie die Umgebungsvariable PYTHON3DOCDIR setzen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> @@ -78483,7 +78500,7 @@ <translation><b>Zeige Fehlerbericht...</b><p>Dies öffnet einen Dialog zur Anzeige des aktuellsten Fehlerberichtes.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782"/> + <location filename="../UI/UserInterface.py" line="6784"/> <source>Version Check</source> <translation>Versionsprüfung</translation> </message> @@ -78554,27 +78571,27 @@ <translation><b>Eric-API-Dokumentation</b><p>Zeige die Eric-API-Dokumentation an. Der Pfad für die Dokumentation ist das Unterverzeichnis Documentation/Source im eric6-Installationverzeichnis.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt v.3 wird von eric6 nicht unterstützt.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>Eine Aktualisierung auf <b>{0}</b> von Eric6 ist unter <b>{1}</b> verfügbar. Wollen Sie sie laden?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>Eric6 is up to date</source> <translation>Eric6 ist aktuell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>You are using the latest version of eric6</source> <translation>Sie verwenden die aktuellste Version von eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>eric6 wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation> </message> @@ -78594,7 +78611,7 @@ <translation>Keine Benutzerwerkzeuge konfiguriert</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6798"/> + <location filename="../UI/UserInterface.py" line="6800"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation>Die Versionsinformationen konnten nicht heruntergeladen werden, da sie <b>nicht verbunden</b> sind. Bitte gehen Sie online und versuchen Sie es erneut.</translation> </message> @@ -78639,7 +78656,7 @@ <translation><b>Sitzung speichern...</b><p>Dies speichert die aktuelle Sitzung in eine Datei. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>Load session</source> <translation>Sitzung laden</translation> </message> @@ -78654,17 +78671,17 @@ <translation><b>Sitzung laden...</b><p>Dies lädt eine zuvor gesicherte Sitzung. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>eric6 Session Files (*.e5s)</source> <translation>eric6 Sitzungsdateien (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>Crash Session found!</source> <translation>Absturzsitzung gefunden!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation>Eine Sitzungsdatei einer abgestürzten Sitzung wurde gefunden. Soll diese Sitzung wiederhergestellt werden?</translation> </message> @@ -78679,17 +78696,17 @@ <translation>Initialisiere Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>Update Check</source> <translation>Aktualisierungsprüfung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation>Eric wurde direkt von vom Quelltext installiert. Eine Aktualitätsprüfung ist daher nicht möglich.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6923"/> + <location filename="../UI/UserInterface.py" line="6925"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation>Sie verwenden ein Snapshot-Release von eri6. Eine neueres, stabiles Release könnte verfügbar sein.</translation> </message> @@ -78744,7 +78761,7 @@ <translation><b>PySide2-Dokumentation</b><p>Zeige die PySide2-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><p>Der PySide{0}-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> @@ -78820,17 +78837,17 @@ <translation><b>Neustart der Entwicklungsumgebung</b><p>Dies startet die Entwicklungsumgebung neu. Ungesicherte Änderungen können zuvor gesichert werden. Ein Python-Programm, das gerade debuggt wird, wird beendet und sämtliche Einstellungen werden gespeichert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source>Start Web Browser</source> <translation>Webbrowser starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5710"/> + <location filename="../UI/UserInterface.py" line="5712"/> <source>The eric6 web browser could not be started.</source> <translation>Der eric6 Webbrowser konnte nicht gestartet werden.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source><p>The eric6 web browser is not started.</p><p>Reason: {0}</p></source> <translation><p>Der eric6 Webbrowser ist nicht gestartet.</p><p>Ursache: {0}</p></translation> </message> @@ -85940,8 +85957,8 @@ </message> <message> <location filename="../WebBrowser/WebBrowserView.py" line="650"/> - <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>Link in neuem Fenster öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open Link in New Tab Ctrl+LMB</source> + <translation>Link in neuem Fenster öffnen Strg+LMK</translation> </message> <message> <location filename="../WebBrowser/WebBrowserView.py" line="656"/>
--- a/i18n/eric6_empty.ts Wed Mar 20 19:23:12 2019 +0100 +++ b/i18n/eric6_empty.ts Wed Mar 20 19:41:04 2019 +0100 @@ -6238,31 +6238,31 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1515"/> + <location filename="../Debugger/DebugServer.py" line="1524"/> <source> Not connected </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1708"/> + <location filename="../Debugger/DebugServer.py" line="1717"/> <source>Passive debug connection received </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1722"/> + <location filename="../Debugger/DebugServer.py" line="1731"/> <source>Passive debug connection closed </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source>Start Debugger</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source><p>The debugger type <b>{0}</b> is not supported or not configured.</p></source> <translation type="unfinished"></translation> </message> @@ -48096,47 +48096,47 @@ <context> <name>NetworkManager</name> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="197"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> <source>SSL Certificate Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="199"/> <source><b>{0}</b><p>The page you are trying to access has errors in the SSL certificate.</p><ul><li>{1}</li></ul><p>Would you like to make an exception?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="208"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="209"/> <source>&Permanent accept</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="210"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="211"/> <source>&Temporary accept</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="212"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="213"/> <source>&Reject</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="245"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="246"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="248"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="249"/> <source><b>Enter username and password for '{0}'</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="291"/> - <source>Authentication required</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../WebBrowser/Network/NetworkManager.py" line="292"/> + <source>Authentication required</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../WebBrowser/Network/NetworkManager.py" line="293"/> <source>Authentication is required to access:</source> <translation type="unfinished"></translation> </message> @@ -75472,7 +75472,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source>Unittest</source> <translation type="unfinished"></translation> </message> @@ -75521,272 +75521,287 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="91"/> + <location filename="../PyUnit/UnittestDialog.ui" line="123"/> <source>Select whether you want to run the test locally</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="94"/> + <location filename="../PyUnit/UnittestDialog.ui" line="126"/> <source>Run &local</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="101"/> + <location filename="../PyUnit/UnittestDialog.ui" line="133"/> <source>Select whether coverage data should be collected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="104"/> + <location filename="../PyUnit/UnittestDialog.ui" line="136"/> <source>C&ollect coverage data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="114"/> + <location filename="../PyUnit/UnittestDialog.ui" line="146"/> <source>Select whether old coverage data should be erased</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="117"/> + <location filename="../PyUnit/UnittestDialog.ui" line="149"/> <source>&Erase coverage data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="127"/> + <location filename="../PyUnit/UnittestDialog.ui" line="161"/> <source>Progress</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="135"/> + <location filename="../PyUnit/UnittestDialog.ui" line="169"/> <source>Progress:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="166"/> + <location filename="../PyUnit/UnittestDialog.ui" line="200"/> <source>%v/%m Tests</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="175"/> + <location filename="../PyUnit/UnittestDialog.ui" line="209"/> <source>Run:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="182"/> + <location filename="../PyUnit/UnittestDialog.ui" line="216"/> <source>Number of tests run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="192"/> - <source>Remaining:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="199"/> - <source>Number of tests to be run</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.ui" line="226"/> - <source>Failures:</source> + <source>Remaining:</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="233"/> - <source>Number of test failures</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="243"/> - <source>Errors:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="250"/> - <source>Number of test errors</source> + <source>Number of tests to be run</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="260"/> - <source>Skipped:</source> + <source>Failures:</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="267"/> - <source>Number of tests skipped</source> + <source>Number of test failures</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="277"/> - <source>Expected Failures:</source> + <source>Errors:</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="284"/> - <source>Number of tests with expected failure</source> + <source>Number of test errors</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="294"/> - <source>Unexpected Successes:</source> + <source>Skipped:</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="301"/> + <source>Number of tests skipped</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="311"/> + <source>Expected Failures:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="318"/> + <source>Number of tests with expected failure</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="328"/> + <source>Unexpected Successes:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="335"/> <source>Number of tests with unexpected success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="332"/> + <location filename="../PyUnit/UnittestDialog.ui" line="366"/> <source>Tests performed:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="342"/> + <location filename="../PyUnit/UnittestDialog.ui" line="376"/> <source>Failures and errors:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="349"/> + <location filename="../PyUnit/UnittestDialog.ui" line="383"/> <source>Failures and Errors list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="352"/> + <location filename="../PyUnit/UnittestDialog.ui" line="386"/> <source><b>Failures and Errors list</b> <p>This list shows all failed and errored tests. Double clicking on an entry will show the respective traceback.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="379"/> + <location filename="../PyUnit/UnittestDialog.ui" line="413"/> <source>Idle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="71"/> - <source>Start</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="73"/> - <source>Start the selected testsuite</source> + <source>Start</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="75"/> + <source>Start the selected testsuite</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="77"/> <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="78"/> - <source>Rerun Failed</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="80"/> - <source>Reruns failed tests of the selected testsuite</source> + <source>Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="82"/> + <source>Reruns failed tests of the selected testsuite</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="84"/> <source><b>Rerun Failed</b><p>This button reruns all failed tests of the selected testsuite.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="86"/> - <source>Stop</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="88"/> + <source>Stop</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="90"/> <source>Stop the running unittest</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="89"/> + <location filename="../PyUnit/UnittestDialog.py" line="91"/> <source><b>Stop Test</b><p>This button stops a running unittest.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="121"/> + <location filename="../PyUnit/UnittestDialog.py" line="129"/> <source>^Failure: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="122"/> + <location filename="../PyUnit/UnittestDialog.py" line="130"/> <source>^Error: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="207"/> + <location filename="../PyUnit/UnittestDialog.py" line="224"/> <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="211"/> + <location filename="../PyUnit/UnittestDialog.py" line="228"/> <source>Python Files (*.py);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="271"/> + <location filename="../PyUnit/UnittestDialog.py" line="291"/> <source>You must enter a test suite file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="279"/> + <location filename="../PyUnit/UnittestDialog.py" line="299"/> <source>Preparing Testsuite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source><p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="477"/> + <location filename="../PyUnit/UnittestDialog.py" line="500"/> <source>Running</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="501"/> + <location filename="../PyUnit/UnittestDialog.py" line="524"/> <source>Ran {0} test in {1:.3f}s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="505"/> + <location filename="../PyUnit/UnittestDialog.py" line="528"/> <source>Ran {0} tests in {1:.3f}s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="522"/> + <location filename="../PyUnit/UnittestDialog.py" line="545"/> <source>Failure: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="537"/> + <location filename="../PyUnit/UnittestDialog.py" line="560"/> <source>Error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="552"/> + <location filename="../PyUnit/UnittestDialog.py" line="575"/> <source> Skipped: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="567"/> + <location filename="../PyUnit/UnittestDialog.py" line="590"/> <source> Expected Failure</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="581"/> + <location filename="../PyUnit/UnittestDialog.py" line="604"/> <source> Unexpected Success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="642"/> + <location filename="../PyUnit/UnittestDialog.py" line="665"/> <source>Show Source</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="93"/> + <source>Virtual Environment:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="109"/> + <source>Select the virtual environment to be used</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="112"/> + <source><b>Virtual Environment</b>\n<p>Enter the virtual environment to be used. Leave it empty to use the default environment, i.e. the one configured globally or per project.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UrlBar</name> @@ -76782,7 +76797,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>Unittest Project</source> <translation type="unfinished"></translation> </message> @@ -77187,7 +77202,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6014"/> + <location filename="../UI/UserInterface.py" line="6016"/> <source>Export Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -77207,7 +77222,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Import Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -77587,7 +77602,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Help</source> <translation type="unfinished"></translation> </message> @@ -77647,7 +77662,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7003"/> + <location filename="../UI/UserInterface.py" line="7005"/> <source></table></source> <translation type="unfinished"></translation> </message> @@ -77707,294 +77722,294 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source>Problem</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4667"/> + <location filename="../UI/UserInterface.py" line="4669"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4738"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4791"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4831"/> + <location filename="../UI/UserInterface.py" line="4833"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4853"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4899"/> + <location filename="../UI/UserInterface.py" line="4901"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4954"/> + <location filename="../UI/UserInterface.py" line="4956"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4975"/> + <location filename="../UI/UserInterface.py" line="4977"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5045"/> + <location filename="../UI/UserInterface.py" line="5047"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>External Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5070"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5116"/> + <location filename="../UI/UserInterface.py" line="5118"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5208"/> + <location filename="../UI/UserInterface.py" line="5210"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source>Documentation Missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source>Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5417"/> + <location filename="../UI/UserInterface.py" line="5419"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5480"/> + <location filename="../UI/UserInterface.py" line="5482"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6335"/> <source>Save session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6270"/> + <location filename="../UI/UserInterface.py" line="6272"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source>Read session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>&Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782"/> + <location filename="../UI/UserInterface.py" line="6784"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6787"/> + <location filename="../UI/UserInterface.py" line="6789"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6798"/> + <location filename="../UI/UserInterface.py" line="6800"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6844"/> + <location filename="../UI/UserInterface.py" line="6846"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>Eric6 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Error during updates check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Could not perform updates check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6989"/> + <location filename="../UI/UserInterface.py" line="6991"/> <source><h3>Available versions</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>First time usage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7059"/> + <location filename="../UI/UserInterface.py" line="7061"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -78009,7 +78024,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>Load session</source> <translation type="unfinished"></translation> </message> @@ -78024,17 +78039,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -78049,17 +78064,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6923"/> + <location filename="../UI/UserInterface.py" line="6925"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -78114,7 +78129,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> @@ -78190,17 +78205,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source>Start Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5710"/> + <location filename="../UI/UserInterface.py" line="5712"/> <source>The eric6 web browser could not be started.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source><p>The eric6 web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_en.ts Wed Mar 20 19:23:12 2019 +0100 +++ b/i18n/eric6_en.ts Wed Mar 20 19:41:04 2019 +0100 @@ -6235,20 +6235,20 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1515"/> + <location filename="../Debugger/DebugServer.py" line="1524"/> <source> Not connected </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1708"/> + <location filename="../Debugger/DebugServer.py" line="1717"/> <source>Passive debug connection received </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1722"/> + <location filename="../Debugger/DebugServer.py" line="1731"/> <source>Passive debug connection closed </source> <translation type="unfinished"></translation> @@ -6264,12 +6264,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source>Start Debugger</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source><p>The debugger type <b>{0}</b> is not supported or not configured.</p></source> <translation type="unfinished"></translation> </message> @@ -48141,47 +48141,47 @@ <context> <name>NetworkManager</name> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="197"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> <source>SSL Certificate Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="199"/> <source><b>{0}</b><p>The page you are trying to access has errors in the SSL certificate.</p><ul><li>{1}</li></ul><p>Would you like to make an exception?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="208"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="209"/> <source>&Permanent accept</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="210"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="211"/> <source>&Temporary accept</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="212"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="213"/> <source>&Reject</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="245"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="246"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="248"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="249"/> <source><b>Enter username and password for '{0}'</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="291"/> - <source>Authentication required</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../WebBrowser/Network/NetworkManager.py" line="292"/> + <source>Authentication required</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../WebBrowser/Network/NetworkManager.py" line="293"/> <source>Authentication is required to access:</source> <translation type="unfinished"></translation> </message> @@ -75521,7 +75521,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source>Unittest</source> <translation type="unfinished"></translation> </message> @@ -75560,264 +75560,264 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="91"/> + <location filename="../PyUnit/UnittestDialog.ui" line="123"/> <source>Select whether you want to run the test locally</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="94"/> + <location filename="../PyUnit/UnittestDialog.ui" line="126"/> <source>Run &local</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="101"/> + <location filename="../PyUnit/UnittestDialog.ui" line="133"/> <source>Select whether coverage data should be collected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="104"/> + <location filename="../PyUnit/UnittestDialog.ui" line="136"/> <source>C&ollect coverage data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="114"/> + <location filename="../PyUnit/UnittestDialog.ui" line="146"/> <source>Select whether old coverage data should be erased</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="117"/> + <location filename="../PyUnit/UnittestDialog.ui" line="149"/> <source>&Erase coverage data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="135"/> + <location filename="../PyUnit/UnittestDialog.ui" line="169"/> <source>Progress:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="175"/> + <location filename="../PyUnit/UnittestDialog.ui" line="209"/> <source>Run:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="182"/> + <location filename="../PyUnit/UnittestDialog.ui" line="216"/> <source>Number of tests run</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../PyUnit/UnittestDialog.ui" line="260"/> + <source>Failures:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="267"/> + <source>Number of test failures</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="277"/> + <source>Errors:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="284"/> + <source>Number of test errors</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../PyUnit/UnittestDialog.ui" line="226"/> - <source>Failures:</source> + <source>Remaining:</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="233"/> - <source>Number of test failures</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="243"/> - <source>Errors:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="250"/> - <source>Number of test errors</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="192"/> - <source>Remaining:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="199"/> <source>Number of tests to be run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="332"/> + <location filename="../PyUnit/UnittestDialog.ui" line="366"/> <source>Tests performed:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="342"/> + <location filename="../PyUnit/UnittestDialog.ui" line="376"/> <source>Failures and errors:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="349"/> + <location filename="../PyUnit/UnittestDialog.ui" line="383"/> <source>Failures and Errors list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="352"/> + <location filename="../PyUnit/UnittestDialog.ui" line="386"/> <source><b>Failures and Errors list</b> <p>This list shows all failed and errored tests. Double clicking on an entry will show the respective traceback.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="379"/> + <location filename="../PyUnit/UnittestDialog.ui" line="413"/> <source>Idle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="71"/> - <source>Start</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="73"/> - <source>Start the selected testsuite</source> + <source>Start</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="75"/> + <source>Start the selected testsuite</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="77"/> <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="86"/> - <source>Stop</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="88"/> + <source>Stop</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="90"/> <source>Stop the running unittest</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="89"/> + <location filename="../PyUnit/UnittestDialog.py" line="91"/> <source><b>Stop Test</b><p>This button stops a running unittest.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="121"/> + <location filename="../PyUnit/UnittestDialog.py" line="129"/> <source>^Failure: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="122"/> + <location filename="../PyUnit/UnittestDialog.py" line="130"/> <source>^Error: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="207"/> + <location filename="../PyUnit/UnittestDialog.py" line="224"/> <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="211"/> + <location filename="../PyUnit/UnittestDialog.py" line="228"/> <source>Python Files (*.py);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="271"/> + <location filename="../PyUnit/UnittestDialog.py" line="291"/> <source>You must enter a test suite file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="279"/> + <location filename="../PyUnit/UnittestDialog.py" line="299"/> <source>Preparing Testsuite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source><p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="477"/> + <location filename="../PyUnit/UnittestDialog.py" line="500"/> <source>Running</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="501"/> + <location filename="../PyUnit/UnittestDialog.py" line="524"/> <source>Ran {0} test in {1:.3f}s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="505"/> + <location filename="../PyUnit/UnittestDialog.py" line="528"/> <source>Ran {0} tests in {1:.3f}s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="522"/> + <location filename="../PyUnit/UnittestDialog.py" line="545"/> <source>Failure: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="537"/> + <location filename="../PyUnit/UnittestDialog.py" line="560"/> <source>Error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="642"/> + <location filename="../PyUnit/UnittestDialog.py" line="665"/> <source>Show Source</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="260"/> - <source>Skipped:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="267"/> - <source>Number of tests skipped</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="277"/> - <source>Expected Failures:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="284"/> - <source>Number of tests with expected failure</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.ui" line="294"/> - <source>Unexpected Successes:</source> + <source>Skipped:</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="301"/> + <source>Number of tests skipped</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="311"/> + <source>Expected Failures:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="318"/> + <source>Number of tests with expected failure</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="328"/> + <source>Unexpected Successes:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="335"/> <source>Number of tests with unexpected success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="552"/> + <location filename="../PyUnit/UnittestDialog.py" line="575"/> <source> Skipped: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="567"/> + <location filename="../PyUnit/UnittestDialog.py" line="590"/> <source> Expected Failure</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="581"/> + <location filename="../PyUnit/UnittestDialog.py" line="604"/> <source> Unexpected Success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="78"/> - <source>Rerun Failed</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="80"/> - <source>Reruns failed tests of the selected testsuite</source> + <source>Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="82"/> + <source>Reruns failed tests of the selected testsuite</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="84"/> <source><b>Rerun Failed</b><p>This button reruns all failed tests of the selected testsuite.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="166"/> + <location filename="../PyUnit/UnittestDialog.ui" line="200"/> <source>%v/%m Tests</source> <translation type="unfinished"></translation> </message> @@ -75832,10 +75832,25 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="127"/> + <location filename="../PyUnit/UnittestDialog.ui" line="161"/> <source>Progress</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="93"/> + <source>Virtual Environment:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="109"/> + <source>Select the virtual environment to be used</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="112"/> + <source><b>Virtual Environment</b>\n<p>Enter the virtual environment to be used. Leave it empty to use the default environment, i.e. the one configured globally or per project.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UrlBar</name> @@ -76485,7 +76500,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>Unittest Project</source> <translation type="unfinished"></translation> </message> @@ -76770,7 +76785,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6014"/> + <location filename="../UI/UserInterface.py" line="6016"/> <source>Export Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -76790,7 +76805,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Import Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -77035,7 +77050,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Help</source> <translation type="unfinished"></translation> </message> @@ -77090,7 +77105,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7003"/> + <location filename="../UI/UserInterface.py" line="7005"/> <source></table></source> <translation type="unfinished"></translation> </message> @@ -77140,214 +77155,214 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source>Problem</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4667"/> + <location filename="../UI/UserInterface.py" line="4669"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4738"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4791"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4831"/> + <location filename="../UI/UserInterface.py" line="4833"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4853"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4899"/> + <location filename="../UI/UserInterface.py" line="4901"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4954"/> + <location filename="../UI/UserInterface.py" line="4956"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4975"/> + <location filename="../UI/UserInterface.py" line="4977"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>External Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5070"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5116"/> + <location filename="../UI/UserInterface.py" line="5118"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5208"/> + <location filename="../UI/UserInterface.py" line="5210"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source>Documentation Missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source>Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5417"/> + <location filename="../UI/UserInterface.py" line="5419"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6335"/> <source>Save session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6270"/> + <location filename="../UI/UserInterface.py" line="6272"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source>Read session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>&Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6787"/> + <location filename="../UI/UserInterface.py" line="6789"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Error during updates check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Could not perform updates check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6989"/> + <location filename="../UI/UserInterface.py" line="6991"/> <source><h3>Available versions</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>First time usage</source> <translation type="unfinished"></translation> </message> @@ -77387,27 +77402,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6844"/> + <location filename="../UI/UserInterface.py" line="6846"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -77493,12 +77508,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5045"/> + <location filename="../UI/UserInterface.py" line="5047"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7059"/> + <location filename="../UI/UserInterface.py" line="7061"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -77873,7 +77888,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5480"/> + <location filename="../UI/UserInterface.py" line="5482"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> @@ -77883,7 +77898,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -77903,7 +77918,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782"/> + <location filename="../UI/UserInterface.py" line="6784"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -77973,27 +77988,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>Eric6 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished"></translation> </message> @@ -78013,7 +78028,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6798"/> + <location filename="../UI/UserInterface.py" line="6800"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -78058,7 +78073,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>Load session</source> <translation type="unfinished"></translation> </message> @@ -78073,17 +78088,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -78098,17 +78113,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6923"/> + <location filename="../UI/UserInterface.py" line="6925"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -78163,7 +78178,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> @@ -78239,17 +78254,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source>Start Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5710"/> + <location filename="../UI/UserInterface.py" line="5712"/> <source>The eric6 web browser could not be started.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source><p>The eric6 web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_es.ts Wed Mar 20 19:23:12 2019 +0100 +++ b/i18n/eric6_es.ts Wed Mar 20 19:41:04 2019 +0100 @@ -6273,7 +6273,7 @@ <translation>Conexión desde un host ilegal</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1515"/> + <location filename="../Debugger/DebugServer.py" line="1524"/> <source> Not connected </source> @@ -6287,14 +6287,14 @@ <translation><p>Se ha intentado una conexión desde el host ilegal <b>{0}</b>. ¿Aceptar esta conexión?.</p></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1708"/> + <location filename="../Debugger/DebugServer.py" line="1717"/> <source>Passive debug connection received </source> <translation>Recibida conexión pasiva de depuración </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1722"/> + <location filename="../Debugger/DebugServer.py" line="1731"/> <source>Passive debug connection closed </source> <translation>Cerrada conexión pasiva de depuración @@ -6311,12 +6311,12 @@ <translation><p>La interfaz de depurador <b>{0}</b> ya está registrada. Se ignorará esta solicitud.</p></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source>Start Debugger</source> <translation>Iniciar Depurador</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source><p>The debugger type <b>{0}</b> is not supported or not configured.</p></source> <translation><p>Este tipo de depurador, <b>{0}</b>, no está soportado o no está configurado.</p></translation> </message> @@ -48399,47 +48399,47 @@ <context> <name>NetworkManager</name> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="197"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> <source>SSL Certificate Error</source> <translation>Error de Certificado SSL</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="199"/> <source><b>{0}</b><p>The page you are trying to access has errors in the SSL certificate.</p><ul><li>{1}</li></ul><p>Would you like to make an exception?</p></source> <translation><b>{0}</b><p>La página a la que se intenta acceder tiene errores en el certificado SSL.</p><ul><li>{1}</li></ul><p>¿Quiere añadir una excepción?</p></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="208"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="209"/> <source>&Permanent accept</source> <translation>Aceptar &Permanentemente</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="210"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="211"/> <source>&Temporary accept</source> <translation>Aceptar &temporalmente</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="212"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="213"/> <source>&Reject</source> <translation>&Rechazar</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="245"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="246"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation><b>Introducir nombre de usuario y contraseña para '{0}', reino {1}'</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="248"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="249"/> <source><b>Enter username and password for '{0}'</b></source> <translation><b>Introducir nombre de usuario y contraseña para '{0}'</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="291"/> - <source>Authentication required</source> - <translation>Autenticación necesaria</translation> - </message> - <message> <location filename="../WebBrowser/Network/NetworkManager.py" line="292"/> + <source>Authentication required</source> + <translation>Autenticación necesaria</translation> + </message> + <message> + <location filename="../WebBrowser/Network/NetworkManager.py" line="293"/> <source>Authentication is required to access:</source> <translation>Es necesaria autenticación para acceder:</translation> </message> @@ -76130,7 +76130,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source>Unittest</source> <translation>Test Unitario</translation> </message> @@ -76173,97 +76173,97 @@ <translation>Introducir nombre de &archivo de test:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="91"/> + <location filename="../PyUnit/UnittestDialog.ui" line="123"/> <source>Select whether you want to run the test locally</source> <translation>Seleccionar si desea ejecutar el test en local</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="94"/> + <location filename="../PyUnit/UnittestDialog.ui" line="126"/> <source>Run &local</source> <translation>Ejecuta&r en local</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="101"/> + <location filename="../PyUnit/UnittestDialog.ui" line="133"/> <source>Select whether coverage data should be collected</source> <translation>Seleccione si se deben recoger datos de cobertura</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="104"/> + <location filename="../PyUnit/UnittestDialog.ui" line="136"/> <source>C&ollect coverage data</source> <translation>Rec&oger datos de cobertura</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="114"/> + <location filename="../PyUnit/UnittestDialog.ui" line="146"/> <source>Select whether old coverage data should be erased</source> <translation>Seleccionar si se deben borrar antiguos datos de cobertura</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="117"/> + <location filename="../PyUnit/UnittestDialog.ui" line="149"/> <source>&Erase coverage data</source> <translation>Borrar datos de cob&ertura</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="135"/> + <location filename="../PyUnit/UnittestDialog.ui" line="169"/> <source>Progress:</source> <translation>Progreso:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="175"/> + <location filename="../PyUnit/UnittestDialog.ui" line="209"/> <source>Run:</source> <translation>Ejecutar:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="182"/> + <location filename="../PyUnit/UnittestDialog.ui" line="216"/> <source>Number of tests run</source> <translation>Número de tests ejecutados</translation> </message> <message> + <location filename="../PyUnit/UnittestDialog.ui" line="260"/> + <source>Failures:</source> + <translation>Fallidos:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="267"/> + <source>Number of test failures</source> + <translation>Número de tests fallidos</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="277"/> + <source>Errors:</source> + <translation>Errores:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="284"/> + <source>Number of test errors</source> + <translation>Número de errores de test</translation> + </message> + <message> <location filename="../PyUnit/UnittestDialog.ui" line="226"/> - <source>Failures:</source> - <translation>Fallidos:</translation> + <source>Remaining:</source> + <translation>Quedan:</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="233"/> - <source>Number of test failures</source> - <translation>Número de tests fallidos</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="243"/> - <source>Errors:</source> - <translation>Errores:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="250"/> - <source>Number of test errors</source> - <translation>Número de errores de test</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="192"/> - <source>Remaining:</source> - <translation>Quedan:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="199"/> <source>Number of tests to be run</source> <translation>Número de tests a ejecutar</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="332"/> + <location filename="../PyUnit/UnittestDialog.ui" line="366"/> <source>Tests performed:</source> <translation>Tests ejecutados:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="342"/> + <location filename="../PyUnit/UnittestDialog.ui" line="376"/> <source>Failures and errors:</source> <translation>Fallidos y con error:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="349"/> + <location filename="../PyUnit/UnittestDialog.ui" line="383"/> <source>Failures and Errors list</source> <translation>Lista de fallidos y con error</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="352"/> + <location filename="../PyUnit/UnittestDialog.ui" line="386"/> <source><b>Failures and Errors list</b> <p>This list shows all failed and errored tests. Double clicking on an entry will show the respective traceback.</p></source> @@ -76272,167 +76272,167 @@ Un doble click en una entrada mostrará el trazado correspondiente.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="379"/> + <location filename="../PyUnit/UnittestDialog.ui" line="413"/> <source>Idle</source> <translation>Desocupado</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="71"/> - <source>Start</source> - <translation>Comenzar</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="73"/> - <source>Start the selected testsuite</source> - <translation>Comenzar la suite de tests seleccionada</translation> + <source>Start</source> + <translation>Comenzar</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="75"/> + <source>Start the selected testsuite</source> + <translation>Comenzar la suite de tests seleccionada</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="77"/> <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> <translation><b>Comenzar Test</b><p>Este botón comienza la suite de tests seleccionada.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="86"/> - <source>Stop</source> - <translation>PararDetener</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="88"/> + <source>Stop</source> + <translation>PararDetener</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="90"/> <source>Stop the running unittest</source> <translation>Detener el test unitario en ejecución</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="89"/> + <location filename="../PyUnit/UnittestDialog.py" line="91"/> <source><b>Stop Test</b><p>This button stops a running unittest.</p></source> <translation><b>Detener Test</b><p>Este botón detiene un test unitario en ejecución.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="121"/> + <location filename="../PyUnit/UnittestDialog.py" line="129"/> <source>^Failure: </source> <translation>^Fallido: </translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="122"/> + <location filename="../PyUnit/UnittestDialog.py" line="130"/> <source>^Error: </source> <translation>^Error: </translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="271"/> + <location filename="../PyUnit/UnittestDialog.py" line="291"/> <source>You must enter a test suite file.</source> <translation>Debe introducir un archivo de suite de tests.</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="279"/> + <location filename="../PyUnit/UnittestDialog.py" line="299"/> <source>Preparing Testsuite</source> <translation>Preparando Suite de Tests</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="477"/> + <location filename="../PyUnit/UnittestDialog.py" line="500"/> <source>Running</source> <translation>Ejecutando</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="642"/> + <location filename="../PyUnit/UnittestDialog.py" line="665"/> <source>Show Source</source> <translation>Mostrar código fuente</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="211"/> + <location filename="../PyUnit/UnittestDialog.py" line="228"/> <source>Python Files (*.py);;All Files (*)</source> <translation>Archivos Python (*.py);;Todos los Archivos (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="207"/> + <location filename="../PyUnit/UnittestDialog.py" line="224"/> <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source> <translation>Archivos Python3 ({1});;Archivos Python2 ({0});;Todos los Archivos (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source><p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p></source> <translation><p>Imposible ejecutar el test <b>{0}</b>.<br>{1}<br>{2}</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="501"/> + <location filename="../PyUnit/UnittestDialog.py" line="524"/> <source>Ran {0} test in {1:.3f}s</source> <translation>Se ha ejecutado {0} test en {1:.3f}s</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="505"/> + <location filename="../PyUnit/UnittestDialog.py" line="528"/> <source>Ran {0} tests in {1:.3f}s</source> <translation>Se han ejecutado {0} tests en {1:.3f}s</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="522"/> + <location filename="../PyUnit/UnittestDialog.py" line="545"/> <source>Failure: {0}</source> <translation>Fallido: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="537"/> + <location filename="../PyUnit/UnittestDialog.py" line="560"/> <source>Error: {0}</source> <translation>Error: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="260"/> - <source>Skipped:</source> - <translation>Ignorados:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="267"/> - <source>Number of tests skipped</source> - <translation>Número de tests ignorados</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="277"/> - <source>Expected Failures:</source> - <translation>Fallos Esperados:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="284"/> - <source>Number of tests with expected failure</source> - <translation>Número de tests con fallo esperado</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.ui" line="294"/> - <source>Unexpected Successes:</source> - <translation>Éxitos Inesperados:</translation> + <source>Skipped:</source> + <translation>Ignorados:</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="301"/> + <source>Number of tests skipped</source> + <translation>Número de tests ignorados</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="311"/> + <source>Expected Failures:</source> + <translation>Fallos Esperados:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="318"/> + <source>Number of tests with expected failure</source> + <translation>Número de tests con fallo esperado</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="328"/> + <source>Unexpected Successes:</source> + <translation>Éxitos Inesperados:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="335"/> <source>Number of tests with unexpected success</source> <translation>Número de tests con éxito inesperado</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="552"/> + <location filename="../PyUnit/UnittestDialog.py" line="575"/> <source> Skipped: {0}</source> <translation> Ignorados: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="567"/> + <location filename="../PyUnit/UnittestDialog.py" line="590"/> <source> Expected Failure</source> <translation> Fallo Esperado</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="581"/> + <location filename="../PyUnit/UnittestDialog.py" line="604"/> <source> Unexpected Success</source> <translation> Éxito Inesperado</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="78"/> - <source>Rerun Failed</source> - <translation>Re-ejecución Fallida</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="80"/> - <source>Reruns failed tests of the selected testsuite</source> - <translation>La re-ejecución ha fallado tests del testsuite seleccionado</translation> + <source>Rerun Failed</source> + <translation>Re-ejecución Fallida</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="82"/> + <source>Reruns failed tests of the selected testsuite</source> + <translation>La re-ejecución ha fallado tests del testsuite seleccionado</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="84"/> <source><b>Rerun Failed</b><p>This button reruns all failed tests of the selected testsuite.</p></source> <translation><b>Re-ejecución Fallida</b><p>Este botón re-ejecuta todos los tests fallidos del testsuite seleccionado.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="166"/> + <location filename="../PyUnit/UnittestDialog.ui" line="200"/> <source>%v/%m Tests</source> <translation>%v/%m Tests</translation> </message> @@ -76447,10 +76447,25 @@ <translation>Ejecutar Parámetros</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="127"/> + <location filename="../PyUnit/UnittestDialog.ui" line="161"/> <source>Progress</source> <translation>Progreso</translation> </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="93"/> + <source>Virtual Environment:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="109"/> + <source>Select the virtual environment to be used</source> + <translation type="unfinished">Seleccionar el entorno virtual a utilizar</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="112"/> + <source><b>Virtual Environment</b>\n<p>Enter the virtual environment to be used. Leave it empty to use the default environment, i.e. the one configured globally or per project.</p></source> + <translation type="unfinished"><b>Entorno Virtual</b>\n<p>Introducir el entorno virtual a utilizar. Dejar en blanco para utilizar el entorno por defecto, por ejemplo el configurado globalmente o por proyecto.</p></translation> + </message> </context> <context> <name>UrlBar</name> @@ -76951,7 +76966,7 @@ <translation><b>Test Unitario de Script</b><p>Ejecuta un test unitario con el script actual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>Unittest Project</source> <translation>Test Unitario de Proyecto</translation> </message> @@ -77131,7 +77146,7 @@ <translation><b>Atajos de Teclado</b><p>Establezca los atajos de teclado para la aplicación con sus valores preferidos.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6014"/> + <location filename="../UI/UserInterface.py" line="6016"/> <source>Export Keyboard Shortcuts</source> <translation>Exportar Atajos de Teclado</translation> </message> @@ -77151,7 +77166,7 @@ <translation><b>Exportar Atajos de Teclado</b><p>Exporte los atajos de teclado de la aplicación.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Import Keyboard Shortcuts</source> <translation>Importar Atajos de Teclado</translation> </message> @@ -77341,7 +77356,7 @@ <translation>Ajustes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Help</source> <translation>Ayuda</translation> </message> @@ -77361,7 +77376,7 @@ <translation><h3>Números de Versiones</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7003"/> + <location filename="../UI/UserInterface.py" line="7005"/> <source></table></source> <translation></table></translation> </message> @@ -77401,87 +77416,87 @@ <translation>&Ocultar todo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>There is no main script defined for the current project. Aborting</source> <translation>No hay script principal definido para el proyecto actual. Abortando</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source>Process Generation Error</source> <translation>Error de Generación de Proceso</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>No hay visor personalizado seleccionado actualmente. Por favor, especifique uno en el diálogo de preferencias.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4853"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>No se ha podido ejecutar el visor de ayuda.<br>Asegúrese de que esta disponible como <b>hh</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source>Documentation Missing</source> <translation>Falta documentación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source>Documentation</source> <translation>Documentación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5417"/> + <location filename="../UI/UserInterface.py" line="5419"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><P>El punto de entrada de documentación de PyQt4 no ha sido configurado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source>Save tasks</source> <translation>Guardar tareas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source>Read tasks</source> <translation>Leer tareas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source>Drop Error</source> <translation>Error de volcado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Error during updates check</source> <translation>Error durante la verificación de actualización</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>&Cancel</source> <translation>&Cancelar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>Update available</source> <translation>Actualizaciones disponibles</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Could not perform updates check.</source> <translation>No se puede llevar a cabo la verificación de actualizaciones.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6989"/> + <location filename="../UI/UserInterface.py" line="6991"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versiones disponibles</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>First time usage</source> <translation>Usado por primera vez</translation> </message> @@ -77541,7 +77556,7 @@ <translation>Restaurando Gestor de Barras de Herramientas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>External Tools</source> <translation>Herramientas Externas</translation> </message> @@ -77556,12 +77571,12 @@ <translation>Visor de &Multiproyecto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6335"/> <source>Save session</source> <translation>Guardar sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source>Read session</source> <translation>Cargar sesión</translation> </message> @@ -77791,7 +77806,7 @@ <translation>Editor de &Iconos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt 3 support</source> <translation>Soporte para Qt 3</translation> </message> @@ -77831,106 +77846,106 @@ <translation>Herramientas Externas/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>El archivo <b>{0}</b> no existe o tiene longitud nula. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4667"/> + <location filename="../UI/UserInterface.py" line="4669"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar Qt-Designer.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4738"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar Qt-Linguist.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4791"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar Qt-Assistant.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4831"/> + <location filename="../UI/UserInterface.py" line="4833"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar el visor personalizado.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4899"/> + <location filename="../UI/UserInterface.py" line="4901"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar el Previsualizador de UI.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4954"/> + <location filename="../UI/UserInterface.py" line="4956"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar el Previsualizador de Traducciones.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4975"/> + <location filename="../UI/UserInterface.py" line="4977"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido iniciar el navegador SQL.<br>Asegúrese de que está disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5070"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>No se ha encontrado la entrada para la herramienta externa '{0}' en el grupo de herramientas '{1}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>No toolgroup entry '{0}' found.</source> <translation>No se ha encontrado la entrada para el grupo de herramientas '{0}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5116"/> + <location filename="../UI/UserInterface.py" line="5118"/> <source>Starting process '{0} {1}'. </source> <translation>Comenzando proceso '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>No se ha podido ejecutar la entrada de herramienta <b>{0}</b>.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5208"/> + <location filename="../UI/UserInterface.py" line="5210"/> <source>Process '{0}' has exited. </source> <translation>El proceso '{0}' ha finalizado. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><P>El punto de entrada de documentación "<b>{0}</b>" no ha podido encontrarse.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de tareas <b>{0}</b> no pudo ser guardado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de tareas <b>{0}</b> no puede leerse.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6270"/> + <location filename="../UI/UserInterface.py" line="6272"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de sesión <b>{0}</b> no ha podido guardarse.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de sesión <b></b> no ha podido ser leído.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> no es un archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6787"/> + <location filename="../UI/UserInterface.py" line="6789"/> <source>Trying host {0}</source> <translation>Probando host {0}</translation> </message> @@ -77965,7 +77980,7 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Archivo de atajos de teclado (*.e4k)</translation> </message> @@ -78005,27 +78020,27 @@ <translation><b>Documentación de Python 2</b><p>Mostrar la documentación de Python 2. Si no se ha configurado un directorio con esta documentación, la ubicación de la documentación de Python 2 se asumirá en el directorio de documentación bajo la ubicación del ejecutable configurado de Python 2 en Windows, y en <i>/usr/share/doc/packages/python/html/python-docs-html</i> para Unix. Establezca el valor de la variable de entorno PYTHON2DOCDIR para sobreescribir estas opciones. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>Error getting versions information</source> <translation>Error al obtener información de versiones</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6844"/> + <location filename="../UI/UserInterface.py" line="6846"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>La información de versiones no se ha podido descargar. Póngase online por favor e inténtelo de nuevo.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Open Browser</source> <translation>Abrir Navegador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Could not start a web browser</source> <translation>No se ha podido iniciar el navegador web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>La información de versiones no se ha podido descargar en los últimos 7 días. Póngase por favor online e inténtelo de nuevo.</translation> </message> @@ -78111,12 +78126,12 @@ <translation><b>Captura de Pantalla</b><p>Abre un diálogo para tomar capturas de pantalla de una región de la pantalla.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5045"/> + <location filename="../UI/UserInterface.py" line="5047"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar la herramienta de Captura de Pantalla.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7059"/> + <location filename="../UI/UserInterface.py" line="7061"/> <source>Select Workspace Directory</source> <translation>Seleccionar Directorio para el Espacio de Trabajo</translation> </message> @@ -78491,7 +78506,7 @@ <translation>Abrir Documentación de PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5480"/> + <location filename="../UI/UserInterface.py" line="5482"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation><P>El punto de entrada de documentación de PyQt5 no ha sido configurado.</p></translation> </message> @@ -78501,7 +78516,7 @@ <translation><b>Documentación de Python 3</b><p>Mostrar la documentación de Python 3. Si no se ha configurado un directorio con lesta documentación, la ubicación de la documentación de Python 3 se asumirá en el directorio de documentación bajo la ubicación del ejecutable de Python 3 en Windows, y en <i>/usr/share/doc/packages/python/html</i> para Unix. Establezca el valor de la variable de entorno PYTHON3DOCDIR para sobreescribir estas opciones. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> @@ -78521,7 +78536,7 @@ <translation><b>Mostrar registro de errores...</b><p>Abre un diálogo mostrando el registro más reciente de errores.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782"/> + <location filename="../UI/UserInterface.py" line="6784"/> <source>Version Check</source> <translation>Verificación de Versión</translation> </message> @@ -78591,27 +78606,27 @@ <translation><b>Documentación de API de Eric</b><p>Muestra la documentación de API de Eric. La ubicación de la documentación es el subdirectorio Documentation/Source del directorio de instalación de eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt v.3 no está soportado por eric6.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>La actualización para <b>{0}</b> de eric6 está disponible en <b>{1}</b>. ¿Le gustaría obtenerla?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>Eric6 is up to date</source> <translation>Eric6 está actualizado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>You are using the latest version of eric6</source> <translation>Está utilizando la última versión de eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>Eric6 todavía no está configurado. El diálogo de configuración va a ser iniciado.</translation> </message> @@ -78631,7 +78646,7 @@ <translation>No se han Configurado Herramientas de Usuario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6798"/> + <location filename="../UI/UserInterface.py" line="6800"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation>La información de versiones no se puede descargar porque está <b>sin línea</b>. Por favor, póngase en línea e inténtelo de nuevo.</translation> </message> @@ -78676,7 +78691,7 @@ <translation><b>Guardar sesión...</b><p>Guarda la sesión actual a disco. Se muestra un diálogo para seleccionar el nombre de archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>Load session</source> <translation>Cargar sesión</translation> </message> @@ -78691,17 +78706,17 @@ <translation><b>Cargar sesión...</b><p>Carga una sesión guardada en disco anteriormente. Se muestra un diálogo para seleccionar el nombre de archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>eric6 Session Files (*.e5s)</source> <translation>Archivos de Sesión de eric6 (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>Crash Session found!</source> <translation>¡Se ha hallado una sesión perdida!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation>Se ha encontrado un archivo de sesió para una sesión perdida. ¿Desea restaurar esta sesión?</translation> </message> @@ -78716,17 +78731,17 @@ <translation>Inicializando Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>Update Check</source> <translation>Comprobación Actualización</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation>Ha instalado eric directamente a partir del código fuente. No es posible comprobar la disponibilidad de una actuación.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6923"/> + <location filename="../UI/UserInterface.py" line="6925"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation>Ésta es una snapshot release the eric6. Una release estable más reciente podría estar disponible.</translation> </message> @@ -78781,7 +78796,7 @@ <translation><b>Documentación de PySide2</b><p>Muestra la Documentación de PySide2. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><P>El punto de entrada de documentación de PySide{0} no ha sido configurado.</p></translation> </message> @@ -78857,17 +78872,17 @@ <translation><b>Reiniciar la IDE</b><p>Reinicia la IDE. Todos los cambios sin guardar pueden ser guardados primero. Cualquier programa de Python que esté en depuración será detenido, y las preferencias se guardarán en disco.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source>Start Web Browser</source> <translation>Iniciar Navegador Web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5710"/> + <location filename="../UI/UserInterface.py" line="5712"/> <source>The eric6 web browser could not be started.</source> <translation>El navegador web de eric 6 no se ha podido iniciar.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source><p>The eric6 web browser is not started.</p><p>Reason: {0}</p></source> <translation><p>El navegador web de eric6 no se ha iniciado.</p><p>Razón: {0}</p></translation> </message>
--- a/i18n/eric6_fr.ts Wed Mar 20 19:23:12 2019 +0100 +++ b/i18n/eric6_fr.ts Wed Mar 20 19:41:04 2019 +0100 @@ -6265,7 +6265,7 @@ <translation>Connexion en provenance d'un hote illégal</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1515"/> + <location filename="../Debugger/DebugServer.py" line="1524"/> <source> Not connected </source> @@ -6277,13 +6277,13 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1708"/> + <location filename="../Debugger/DebugServer.py" line="1717"/> <source>Passive debug connection received </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1722"/> + <location filename="../Debugger/DebugServer.py" line="1731"/> <source>Passive debug connection closed </source> <translation type="unfinished"></translation> @@ -6299,12 +6299,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source>Start Debugger</source> <translation type="unfinished">Démarrage du débogueur</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source><p>The debugger type <b>{0}</b> is not supported or not configured.</p></source> <translation type="unfinished"></translation> </message> @@ -48263,47 +48263,47 @@ <context> <name>NetworkManager</name> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="197"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> <source>SSL Certificate Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="199"/> <source><b>{0}</b><p>The page you are trying to access has errors in the SSL certificate.</p><ul><li>{1}</li></ul><p>Would you like to make an exception?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="208"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="209"/> <source>&Permanent accept</source> <translation type="unfinished">Accepter &définitivement</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="210"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="211"/> <source>&Temporary accept</source> <translation type="unfinished">Accepter &temporairement</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="212"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="213"/> <source>&Reject</source> <translation type="unfinished">&Refuser</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="245"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="246"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="248"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="249"/> <source><b>Enter username and password for '{0}'</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="291"/> - <source>Authentication required</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../WebBrowser/Network/NetworkManager.py" line="292"/> + <source>Authentication required</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../WebBrowser/Network/NetworkManager.py" line="293"/> <source>Authentication is required to access:</source> <translation type="unfinished"></translation> </message> @@ -75954,32 +75954,32 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source>Unittest</source> <translation>Tests unitaires</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="121"/> + <location filename="../PyUnit/UnittestDialog.py" line="129"/> <source>^Failure: </source> <translation>^Echec: </translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="122"/> + <location filename="../PyUnit/UnittestDialog.py" line="130"/> <source>^Error: </source> <translation>^Erreur:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="271"/> + <location filename="../PyUnit/UnittestDialog.py" line="291"/> <source>You must enter a test suite file.</source> <translation>Vous devez entrer un fichier test correct.</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="279"/> + <location filename="../PyUnit/UnittestDialog.py" line="299"/> <source>Preparing Testsuite</source> <translation>Préparation de Testsuite</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="477"/> + <location filename="../PyUnit/UnittestDialog.py" line="500"/> <source>Running</source> <translation>En cours d'execution</translation> </message> @@ -76020,97 +76020,97 @@ <translation>Entrer le nom du &fichier de test:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="91"/> + <location filename="../PyUnit/UnittestDialog.ui" line="123"/> <source>Select whether you want to run the test locally</source> <translation>Cocher pour effectuer le test localement</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="94"/> + <location filename="../PyUnit/UnittestDialog.ui" line="126"/> <source>Run &local</source> <translation>Lancer &localement</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="101"/> + <location filename="../PyUnit/UnittestDialog.ui" line="133"/> <source>Select whether coverage data should be collected</source> <translation>Cocher pour collecter les données issues du coverage de code</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="104"/> + <location filename="../PyUnit/UnittestDialog.ui" line="136"/> <source>C&ollect coverage data</source> <translation>C&ollecter les donnée du coverage</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="114"/> + <location filename="../PyUnit/UnittestDialog.ui" line="146"/> <source>Select whether old coverage data should be erased</source> <translation>Cocher pour effacer les anciennes données Coverage du code</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="117"/> + <location filename="../PyUnit/UnittestDialog.ui" line="149"/> <source>&Erase coverage data</source> <translation>&Supprimer les données de coverage</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="135"/> + <location filename="../PyUnit/UnittestDialog.ui" line="169"/> <source>Progress:</source> <translation>Etat de progression:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="175"/> + <location filename="../PyUnit/UnittestDialog.ui" line="209"/> <source>Run:</source> <translation>Execution:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="182"/> + <location filename="../PyUnit/UnittestDialog.ui" line="216"/> <source>Number of tests run</source> <translation>Nombre d'executions tests</translation> </message> <message> + <location filename="../PyUnit/UnittestDialog.ui" line="260"/> + <source>Failures:</source> + <translation>Echecs:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="267"/> + <source>Number of test failures</source> + <translation>Nombre d'echecs</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="277"/> + <source>Errors:</source> + <translation>Erreurs:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="284"/> + <source>Number of test errors</source> + <translation>Nombre d'erreurs</translation> + </message> + <message> <location filename="../PyUnit/UnittestDialog.ui" line="226"/> - <source>Failures:</source> - <translation>Echecs:</translation> + <source>Remaining:</source> + <translation>Restants:</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="233"/> - <source>Number of test failures</source> - <translation>Nombre d'echecs</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="243"/> - <source>Errors:</source> - <translation>Erreurs:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="250"/> - <source>Number of test errors</source> - <translation>Nombre d'erreurs</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="192"/> - <source>Remaining:</source> - <translation>Restants:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="199"/> <source>Number of tests to be run</source> <translation>Nombre de tests restants</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="332"/> + <location filename="../PyUnit/UnittestDialog.ui" line="366"/> <source>Tests performed:</source> <translation>Tests effectués:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="342"/> + <location filename="../PyUnit/UnittestDialog.ui" line="376"/> <source>Failures and errors:</source> <translation>Echecs et erreurs:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="349"/> + <location filename="../PyUnit/UnittestDialog.ui" line="383"/> <source>Failures and Errors list</source> <translation>Liste des echecs et erreurs</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="352"/> + <location filename="../PyUnit/UnittestDialog.ui" line="386"/> <source><b>Failures and Errors list</b> <p>This list shows all failed and errored tests. Double clicking on an entry will show the respective traceback.</p></source> @@ -76119,142 +76119,142 @@ Double-cliquer sur une entrée pour afficher la trace de l'erreur.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="73"/> + <location filename="../PyUnit/UnittestDialog.py" line="75"/> <source>Start the selected testsuite</source> <translation>Lancer la suite de tests</translation> </message> <message> + <location filename="../PyUnit/UnittestDialog.py" line="90"/> + <source>Stop the running unittest</source> + <translation>Stoppe le test unitest en cours</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="413"/> + <source>Idle</source> + <translation>Idle</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="73"/> + <source>Start</source> + <translation>Lancer</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="77"/> + <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> + <translation><b>Lancer les tests</b><p>Ce bouton lance la suite de tests sélectionnée.</p></translation> + </message> + <message> <location filename="../PyUnit/UnittestDialog.py" line="88"/> - <source>Stop the running unittest</source> - <translation>Stoppe le test unitest en cours</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="379"/> - <source>Idle</source> - <translation>Idle</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.py" line="71"/> - <source>Start</source> - <translation>Lancer</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.py" line="75"/> - <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> - <translation><b>Lancer les tests</b><p>Ce bouton lance la suite de tests sélectionnée.</p></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.py" line="86"/> <source>Stop</source> <translation>Arrêt</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="89"/> + <location filename="../PyUnit/UnittestDialog.py" line="91"/> <source><b>Stop Test</b><p>This button stops a running unittest.</p></source> <translation><b>Stopper le test</b><p>Stoppe le test unittest en cours.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="642"/> + <location filename="../PyUnit/UnittestDialog.py" line="665"/> <source>Show Source</source> <translation>Afficher les sources</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="211"/> + <location filename="../PyUnit/UnittestDialog.py" line="228"/> <source>Python Files (*.py);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="207"/> + <location filename="../PyUnit/UnittestDialog.py" line="224"/> <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source><p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="501"/> + <location filename="../PyUnit/UnittestDialog.py" line="524"/> <source>Ran {0} test in {1:.3f}s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="505"/> + <location filename="../PyUnit/UnittestDialog.py" line="528"/> <source>Ran {0} tests in {1:.3f}s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="522"/> + <location filename="../PyUnit/UnittestDialog.py" line="545"/> <source>Failure: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="537"/> + <location filename="../PyUnit/UnittestDialog.py" line="560"/> <source>Error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="260"/> - <source>Skipped:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="267"/> - <source>Number of tests skipped</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="277"/> - <source>Expected Failures:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="284"/> - <source>Number of tests with expected failure</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.ui" line="294"/> - <source>Unexpected Successes:</source> + <source>Skipped:</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="301"/> + <source>Number of tests skipped</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="311"/> + <source>Expected Failures:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="318"/> + <source>Number of tests with expected failure</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="328"/> + <source>Unexpected Successes:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="335"/> <source>Number of tests with unexpected success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="552"/> + <location filename="../PyUnit/UnittestDialog.py" line="575"/> <source> Skipped: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="567"/> + <location filename="../PyUnit/UnittestDialog.py" line="590"/> <source> Expected Failure</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="581"/> + <location filename="../PyUnit/UnittestDialog.py" line="604"/> <source> Unexpected Success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="78"/> - <source>Rerun Failed</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="80"/> - <source>Reruns failed tests of the selected testsuite</source> + <source>Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="82"/> + <source>Reruns failed tests of the selected testsuite</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="84"/> <source><b>Rerun Failed</b><p>This button reruns all failed tests of the selected testsuite.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="166"/> + <location filename="../PyUnit/UnittestDialog.ui" line="200"/> <source>%v/%m Tests</source> <translation type="unfinished"></translation> </message> @@ -76269,10 +76269,25 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="127"/> + <location filename="../PyUnit/UnittestDialog.ui" line="161"/> <source>Progress</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="93"/> + <source>Virtual Environment:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="109"/> + <source>Select the virtual environment to be used</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="112"/> + <source><b>Virtual Environment</b>\n<p>Enter the virtual environment to be used. Leave it empty to use the default environment, i.e. the one configured globally or per project.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UrlBar</name> @@ -76601,7 +76616,7 @@ <translation><b>Raccourcis claviers</b><p>Edite les raccourcis claviers pour l'application.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6014"/> + <location filename="../UI/UserInterface.py" line="6016"/> <source>Export Keyboard Shortcuts</source> <translation>Exporter les raccourcis clavier</translation> </message> @@ -76621,7 +76636,7 @@ <translation><b>Exporter les raccourcis clavier</b><p>Exporte les raccourcis claviers de l'application.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Import Keyboard Shortcuts</source> <translation>Importer des raccourcis clavier</translation> </message> @@ -76661,7 +76676,7 @@ <translation>Outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Help</source> <translation>Aide</translation> </message> @@ -76676,12 +76691,12 @@ <translation>&Barres d'Outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source>Problem</source> <translation>Problème</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source>Process Generation Error</source> <translation>Erreur du processus</translation> </message> @@ -76737,7 +76752,7 @@ <translation><b>Script de tests unitaires</b><p>Lance les tests unitaires sur le script en cours.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>Unittest Project</source> <translation>Projet de tests unitaires</translation> </message> @@ -76792,12 +76807,12 @@ <translation>Tests &unitaires</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Il n'y a pas de script principal défini dans le projet en cours. Abandon</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> @@ -76932,22 +76947,22 @@ <translation>Visualisueur de tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source>Save tasks</source> <translation>Enregistrement des tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source>Read tasks</source> <translation>Lecture des tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Aucun visualiseur personalisé n'est sélectionné. Prière d'en spécifier un dans les préférences.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source>Documentation Missing</source> <translation>Documentation Manquante</translation> </message> @@ -77047,7 +77062,7 @@ <translation>Ouvre la documentation sur les APIs Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4853"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Impossible de démarrer le visualiseur d'aide.<br>Assurez-vous qu'il est bien ici <b>hh</b>.</p></translation> </message> @@ -77128,22 +77143,22 @@ <translation>Outils &internes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source>Documentation</source> <translation>Documentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5417"/> + <location filename="../UI/UserInterface.py" line="5419"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>L'emplacement de la documentation PyQt4 n'a pas été configuré.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Error during updates check</source> <translation>Erreur durant la recherche de mises à jour</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>Update available</source> <translation>Mise à jour disponible</translation> </message> @@ -77153,17 +77168,17 @@ <translation><h3>Numéros de version</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7003"/> + <location filename="../UI/UserInterface.py" line="7005"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Open Browser</source> <translation type="unfinished">Ouverture du navigateur</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Could not start a web browser</source> <translation type="unfinished">Impossible de lancer le navigateur web</translation> </message> @@ -77188,17 +77203,17 @@ <translation>Afficher les &outils externes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>&Cancel</source> <translation>&Annuler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Could not perform updates check.</source> <translation>Impossible de vérifier les mises à jour.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>First time usage</source> <translation>Première utilisation</translation> </message> @@ -77293,7 +77308,7 @@ <translation>Affiche les versions disponibles pour le téléchargement</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6989"/> + <location filename="../UI/UserInterface.py" line="6991"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versions disponibles</h3><table></translation> </message> @@ -77383,17 +77398,17 @@ <translation>Gestionnaire de &multi-projet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>External Tools</source> <translation>Outils externes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6335"/> <source>Save session</source> <translation>Enregistrer la session</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source>Read session</source> <translation>Chargement de session</translation> </message> @@ -77623,7 +77638,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> @@ -77663,104 +77678,104 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4667"/> + <location filename="../UI/UserInterface.py" line="4669"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4738"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4791"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4831"/> + <location filename="../UI/UserInterface.py" line="4833"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4899"/> + <location filename="../UI/UserInterface.py" line="4901"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4954"/> + <location filename="../UI/UserInterface.py" line="4956"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4975"/> + <location filename="../UI/UserInterface.py" line="4977"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5070"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5116"/> + <location filename="../UI/UserInterface.py" line="5118"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5208"/> + <location filename="../UI/UserInterface.py" line="5210"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6270"/> + <location filename="../UI/UserInterface.py" line="6272"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6787"/> + <location filename="../UI/UserInterface.py" line="6789"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> @@ -77795,7 +77810,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> @@ -77835,17 +77850,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6844"/> + <location filename="../UI/UserInterface.py" line="6846"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -77931,12 +77946,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5045"/> + <location filename="../UI/UserInterface.py" line="5047"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7059"/> + <location filename="../UI/UserInterface.py" line="7061"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -78311,7 +78326,7 @@ <translation type="unfinished">Lance la documentation PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5480"/> + <location filename="../UI/UserInterface.py" line="5482"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>L'emplacement de la documentation PyQt4 n'a pas été configuré.</p> {5 ?}</translation> </message> @@ -78321,7 +78336,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -78341,7 +78356,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782"/> + <location filename="../UI/UserInterface.py" line="6784"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -78411,27 +78426,27 @@ <translation type="unfinished"><b>Documentation de l'API Eric</b><p>Affiche la do. The location for the documentation is the Documentation/Source subdirectory of the eric4 installation directory.</p> {5 ?} {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric4 est à jour {5 ?} {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">eric4 n'a pas encore été configuré. La fenêtre de configuration va être ouverte. {5 ?} {6 ?}</translation> </message> @@ -78451,7 +78466,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6798"/> + <location filename="../UI/UserInterface.py" line="6800"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -78496,7 +78511,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>Load session</source> <translation type="unfinished">Charger la session</translation> </message> @@ -78511,17 +78526,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -78536,17 +78551,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6923"/> + <location filename="../UI/UserInterface.py" line="6925"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -78601,7 +78616,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> @@ -78677,17 +78692,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source>Start Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5710"/> + <location filename="../UI/UserInterface.py" line="5712"/> <source>The eric6 web browser could not be started.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source><p>The eric6 web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_it.ts Wed Mar 20 19:23:12 2019 +0100 +++ b/i18n/eric6_it.ts Wed Mar 20 19:41:04 2019 +0100 @@ -6280,7 +6280,7 @@ <translation>Connessione da un non vietato</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1515"/> + <location filename="../Debugger/DebugServer.py" line="1524"/> <source> Not connected </source> @@ -6292,13 +6292,13 @@ <translation><p>Una connessione è stata tentata da un host vietato <b>{0}</b>. Accettare questa connessione ?</p></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1708"/> + <location filename="../Debugger/DebugServer.py" line="1717"/> <source>Passive debug connection received </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1722"/> + <location filename="../Debugger/DebugServer.py" line="1731"/> <source>Passive debug connection closed </source> <translation type="unfinished"></translation> @@ -6314,12 +6314,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source>Start Debugger</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source><p>The debugger type <b>{0}</b> is not supported or not configured.</p></source> <translation type="unfinished"></translation> </message> @@ -48310,47 +48310,47 @@ <context> <name>NetworkManager</name> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="197"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> <source>SSL Certificate Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="199"/> <source><b>{0}</b><p>The page you are trying to access has errors in the SSL certificate.</p><ul><li>{1}</li></ul><p>Would you like to make an exception?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="208"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="209"/> <source>&Permanent accept</source> <translation type="unfinished">Accetta &Permanentemente</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="210"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="211"/> <source>&Temporary accept</source> <translation type="unfinished">Accetta &Temporaneamente</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="212"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="213"/> <source>&Reject</source> <translation type="unfinished">&Rigetta</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="245"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="246"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation type="unfinished"><b>Inserisci utente e password per '{0}', dominio '{1}'</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="248"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="249"/> <source><b>Enter username and password for '{0}'</b></source> <translation type="unfinished"><b>Inserisci utente e password per '{0}'</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="291"/> - <source>Authentication required</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../WebBrowser/Network/NetworkManager.py" line="292"/> + <source>Authentication required</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../WebBrowser/Network/NetworkManager.py" line="293"/> <source>Authentication is required to access:</source> <translation type="unfinished"></translation> </message> @@ -76008,32 +76008,32 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source>Unittest</source> <translation>Unittest</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="121"/> + <location filename="../PyUnit/UnittestDialog.py" line="129"/> <source>^Failure: </source> <translation>^Failure:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="122"/> + <location filename="../PyUnit/UnittestDialog.py" line="130"/> <source>^Error: </source> <translation>^Error: </translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="271"/> + <location filename="../PyUnit/UnittestDialog.py" line="291"/> <source>You must enter a test suite file.</source> <translation>Devi inserire il file di una suite di test.</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="279"/> + <location filename="../PyUnit/UnittestDialog.py" line="299"/> <source>Preparing Testsuite</source> <translation>Preparazione Testsuite</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="477"/> + <location filename="../PyUnit/UnittestDialog.py" line="500"/> <source>Running</source> <translation>In esecuzione</translation> </message> @@ -76076,97 +76076,97 @@ <translation>Inserisci il nome del &file di test:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="91"/> + <location filename="../PyUnit/UnittestDialog.ui" line="123"/> <source>Select whether you want to run the test locally</source> <translation>Seleziona se vuoi eseguire i test in locale</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="94"/> + <location filename="../PyUnit/UnittestDialog.ui" line="126"/> <source>Run &local</source> <translation>Esegui in &locale</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="101"/> + <location filename="../PyUnit/UnittestDialog.ui" line="133"/> <source>Select whether coverage data should be collected</source> <translation>Seleziona se i dati di coverage devono essere salvati</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="104"/> + <location filename="../PyUnit/UnittestDialog.ui" line="136"/> <source>C&ollect coverage data</source> <translation>Salva di dati di c&overage</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="114"/> + <location filename="../PyUnit/UnittestDialog.ui" line="146"/> <source>Select whether old coverage data should be erased</source> <translation>Seleziona se i vecchi dati di coverage devono essere cancellati</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="117"/> + <location filename="../PyUnit/UnittestDialog.ui" line="149"/> <source>&Erase coverage data</source> <translation>Canc&ella di dati di coverage</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="135"/> + <location filename="../PyUnit/UnittestDialog.ui" line="169"/> <source>Progress:</source> <translation>Avanzamento:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="175"/> + <location filename="../PyUnit/UnittestDialog.ui" line="209"/> <source>Run:</source> <translation>Esegui:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="182"/> + <location filename="../PyUnit/UnittestDialog.ui" line="216"/> <source>Number of tests run</source> <translation>Numero di test eseguiti</translation> </message> <message> + <location filename="../PyUnit/UnittestDialog.ui" line="260"/> + <source>Failures:</source> + <translation>Fallimenti:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="267"/> + <source>Number of test failures</source> + <translation>Numero di test falliti</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="277"/> + <source>Errors:</source> + <translation>Errori:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="284"/> + <source>Number of test errors</source> + <translation>Numero di errori nei test</translation> + </message> + <message> <location filename="../PyUnit/UnittestDialog.ui" line="226"/> - <source>Failures:</source> - <translation>Fallimenti:</translation> + <source>Remaining:</source> + <translation>Rimanenti:</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="233"/> - <source>Number of test failures</source> - <translation>Numero di test falliti</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="243"/> - <source>Errors:</source> - <translation>Errori:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="250"/> - <source>Number of test errors</source> - <translation>Numero di errori nei test</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="192"/> - <source>Remaining:</source> - <translation>Rimanenti:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="199"/> <source>Number of tests to be run</source> <translation>Numero di test da eseguire</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="332"/> + <location filename="../PyUnit/UnittestDialog.ui" line="366"/> <source>Tests performed:</source> <translation>Test eseguiti:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="342"/> + <location filename="../PyUnit/UnittestDialog.ui" line="376"/> <source>Failures and errors:</source> <translation>Falliment ed errori:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="349"/> + <location filename="../PyUnit/UnittestDialog.ui" line="383"/> <source>Failures and Errors list</source> <translation>Lista dei fallimenti e degli errori</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="352"/> + <location filename="../PyUnit/UnittestDialog.ui" line="386"/> <source><b>Failures and Errors list</b> <p>This list shows all failed and errored tests. Double clicking on an entry will show the respective traceback.</p></source> @@ -76175,142 +76175,142 @@ Facendo doppio click su un elemento verrà aperto il rispettivo traceback.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="73"/> + <location filename="../PyUnit/UnittestDialog.py" line="75"/> <source>Start the selected testsuite</source> <translation>Avvia la testsuite selezioanata</translation> </message> <message> + <location filename="../PyUnit/UnittestDialog.py" line="90"/> + <source>Stop the running unittest</source> + <translation>Ferma l'esecuzione della unittest</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="413"/> + <source>Idle</source> + <translation>Attesa</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="73"/> + <source>Start</source> + <translation>Inizia</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="77"/> + <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> + <translation><b>Avvia test</b><P>Questo pulsante avvia la testsuite selezionata.</p></translation> + </message> + <message> <location filename="../PyUnit/UnittestDialog.py" line="88"/> - <source>Stop the running unittest</source> - <translation>Ferma l'esecuzione della unittest</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="379"/> - <source>Idle</source> - <translation>Attesa</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.py" line="71"/> - <source>Start</source> - <translation>Inizia</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.py" line="75"/> - <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> - <translation><b>Avvia test</b><P>Questo pulsante avvia la testsuite selezionata.</p></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.py" line="86"/> <source>Stop</source> <translation>Ferma</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="89"/> + <location filename="../PyUnit/UnittestDialog.py" line="91"/> <source><b>Stop Test</b><p>This button stops a running unittest.</p></source> <translation><b>Ferma test</b><p>Questo pulsante ferma una unitttest in esecuzione.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="642"/> + <location filename="../PyUnit/UnittestDialog.py" line="665"/> <source>Show Source</source> <translation>Mostra sorgenti</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="211"/> + <location filename="../PyUnit/UnittestDialog.py" line="228"/> <source>Python Files (*.py);;All Files (*)</source> <translation>File Python (*.py);;Tutti i File (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="207"/> + <location filename="../PyUnit/UnittestDialog.py" line="224"/> <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source> <translation>File Python3 ({0});;File Python1({1});;Tutti i File (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source><p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p></source> <translation><p>Impossibile eseguire test <b>{0}</b>.<br>{1}<br>{2}</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="501"/> + <location filename="../PyUnit/UnittestDialog.py" line="524"/> <source>Ran {0} test in {1:.3f}s</source> <translation>Eseguiti {0} test in {1:.3f} s</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="505"/> + <location filename="../PyUnit/UnittestDialog.py" line="528"/> <source>Ran {0} tests in {1:.3f}s</source> <translation>Eseguiti {0} test in {1:.3f} s</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="522"/> + <location filename="../PyUnit/UnittestDialog.py" line="545"/> <source>Failure: {0}</source> <translation>Fallimenti: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="537"/> + <location filename="../PyUnit/UnittestDialog.py" line="560"/> <source>Error: {0}</source> <translation>Errori: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="260"/> - <source>Skipped:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="267"/> - <source>Number of tests skipped</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="277"/> - <source>Expected Failures:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="284"/> - <source>Number of tests with expected failure</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.ui" line="294"/> - <source>Unexpected Successes:</source> + <source>Skipped:</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="301"/> + <source>Number of tests skipped</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="311"/> + <source>Expected Failures:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="318"/> + <source>Number of tests with expected failure</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="328"/> + <source>Unexpected Successes:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="335"/> <source>Number of tests with unexpected success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="552"/> + <location filename="../PyUnit/UnittestDialog.py" line="575"/> <source> Skipped: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="567"/> + <location filename="../PyUnit/UnittestDialog.py" line="590"/> <source> Expected Failure</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="581"/> + <location filename="../PyUnit/UnittestDialog.py" line="604"/> <source> Unexpected Success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="78"/> - <source>Rerun Failed</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="80"/> - <source>Reruns failed tests of the selected testsuite</source> + <source>Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="82"/> + <source>Reruns failed tests of the selected testsuite</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="84"/> <source><b>Rerun Failed</b><p>This button reruns all failed tests of the selected testsuite.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="166"/> + <location filename="../PyUnit/UnittestDialog.ui" line="200"/> <source>%v/%m Tests</source> <translation type="unfinished"></translation> </message> @@ -76325,10 +76325,25 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="127"/> + <location filename="../PyUnit/UnittestDialog.ui" line="161"/> <source>Progress</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="93"/> + <source>Virtual Environment:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="109"/> + <source>Select the virtual environment to be used</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="112"/> + <source><b>Virtual Environment</b>\n<p>Enter the virtual environment to be used. Leave it empty to use the default environment, i.e. the one configured globally or per project.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UrlBar</name> @@ -76657,7 +76672,7 @@ <translation><b>Scorciatoie da tastiera</b><p>Imposta le scorciatoie da tastiera dell'applicazione con i valori personalizzati.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6014"/> + <location filename="../UI/UserInterface.py" line="6016"/> <source>Export Keyboard Shortcuts</source> <translation>Esporta scorciatoie da tastiera</translation> </message> @@ -76677,7 +76692,7 @@ <translation><b>Esporta scorciatoie da tastiera</b><p>Esporta le scorciatoie da tastiera dell'applicazione.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Import Keyboard Shortcuts</source> <translation>Importa scorciatoie da tastiera</translation> </message> @@ -76717,7 +76732,7 @@ <translation>Strumenti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Help</source> <translation>Aiuto</translation> </message> @@ -76732,12 +76747,12 @@ <translation>&Toolbar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source>Process Generation Error</source> <translation>Errore Generazione Processo</translation> </message> @@ -76792,7 +76807,7 @@ <translation><b>Script Unittest</b><p>Esegui unittest con lo script corrente.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>Unittest Project</source> <translation>Progetto Unittest</translation> </message> @@ -76847,12 +76862,12 @@ <translation>&Unittest</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Non c'è uno script principale definito per il progetto. Esco</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source>Drop Error</source> <translation>Errore Drop</translation> </message> @@ -76987,22 +77002,22 @@ <translation>Task-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source>Save tasks</source> <translation>Salva task</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source>Read tasks</source> <translation>Leggi task</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Attualmente nessun visualizzatore personalizzato è selezionato. Per favore usa il dialogo delle preferenze per specificarne uno.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source>Documentation Missing</source> <translation>Documentazione mancante</translation> </message> @@ -77102,7 +77117,7 @@ <translation>Apri documentazione API di Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4853"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Non posso avviare il visualizzatore di help.<br>Assicurarsi che sia disponibile come <b>hh</b>.</p></translation> </message> @@ -77183,22 +77198,22 @@ <translation>Tool &Builtin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source>Documentation</source> <translation>Documentazione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5417"/> + <location filename="../UI/UserInterface.py" line="5419"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>L'inizio della documentazione di PySide non è stato configurato.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Error during updates check</source> <translation>Errore nel controllo per gli update</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>Update available</source> <translation>Aggiornamento disponibile</translation> </message> @@ -77208,7 +77223,7 @@ <translation><h3>Numeri di versione</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7003"/> + <location filename="../UI/UserInterface.py" line="7005"/> <source></table></source> <translation></table></translation> </message> @@ -77233,17 +77248,17 @@ <translation>Mostra toll &esterni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>&Cancel</source> <translation>&Cancella</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Could not perform updates check.</source> <translation>Non posso controllare per gli update.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>First time usage</source> <translation>Primo avvio</translation> </message> @@ -77338,7 +77353,7 @@ <translation>Mostra le versioni disponibili per il download</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6989"/> + <location filename="../UI/UserInterface.py" line="6991"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versioni disponibili</h3><table></translation> </message> @@ -77428,17 +77443,17 @@ <translation>&Multiproject-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>External Tools</source> <translation>Tool esterni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6335"/> <source>Save session</source> <translation>Salva sessione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source>Read session</source> <translation>Leggi sessione</translation> </message> @@ -77668,7 +77683,7 @@ <translation>Editor di &icone...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt 3 support</source> <translation>Supporto Qt3</translation> </message> @@ -77708,105 +77723,105 @@ <translation>Tool Esterni/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Il file <b>{0}</b> non esiste o ha lunghezza zero.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4667"/> + <location filename="../UI/UserInterface.py" line="4669"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare Qt-Designer.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4738"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare Qt-Linguist.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4791"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare Qt-Assistant.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4831"/> + <location filename="../UI/UserInterface.py" line="4833"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare il visualizzatore personalizzato.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4899"/> + <location filename="../UI/UserInterface.py" line="4901"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare UI Previewer.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4954"/> + <location filename="../UI/UserInterface.py" line="4956"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare l'anteprima delle traduzioni.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4975"/> + <location filename="../UI/UserInterface.py" line="4977"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare SQL Browser.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5070"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>Nessun elemento per il tool esterno '{0}' trovato nel gruppo '{1}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>No toolgroup entry '{0}' found.</source> <translation>Nessun gruppo '{0}' trovato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5116"/> + <location filename="../UI/UserInterface.py" line="5118"/> <source>Starting process '{0} {1}'. </source> <translation>Avvio processo '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Non posso avviare l'elemento degli strumenti <b>{0}</b>.<br>Assicurarsi che sia disponibile come <b>{1}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5208"/> + <location filename="../UI/UserInterface.py" line="5210"/> <source>Process '{0}' has exited. </source> <translation>Il processo '{0}' è terminato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>L'inizio della documentazione "<b>{0}</b>" non viene trovato.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Il file task <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Il file task <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6270"/> + <location filename="../UI/UserInterface.py" line="6272"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Il file sessione <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Il file sessione <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> non è un file.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6787"/> + <location filename="../UI/UserInterface.py" line="6789"/> <source>Trying host {0}</source> <translation>Tento su host {0}</translation> </message> @@ -77841,7 +77856,7 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>File scorciatoi tastiera (*.e4k)</translation> </message> @@ -77881,27 +77896,27 @@ <translation><b>Documentazione Python 2</b><p>Mostra la documentazione Python 2. Se non è configurata una directory per la documentazione, viene assunto che la posizione della documentazione sia nella directory doc nella locazione dell'eseguibile Python 2 su Windows e <i>/usr/share/doc/packages/python/html</i> su Unix. Imposta PYTHONDOCDIR2 nel tuo ambiente per sovrascrivere questi valori.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6844"/> + <location filename="../UI/UserInterface.py" line="6846"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -77987,12 +78002,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5045"/> + <location filename="../UI/UserInterface.py" line="5047"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7059"/> + <location filename="../UI/UserInterface.py" line="7061"/> <source>Select Workspace Directory</source> <translation type="unfinished">Seleziona cartella di lavoro</translation> </message> @@ -78367,7 +78382,7 @@ <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5480"/> + <location filename="../UI/UserInterface.py" line="5482"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>L'inizio della documentazione di PyQt4 non è stato configurato.</p> {5 ?}</translation> </message> @@ -78377,7 +78392,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -78397,7 +78412,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782"/> + <location filename="../UI/UserInterface.py" line="6784"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -78467,27 +78482,27 @@ <translation type="unfinished"><b>Documentazione API Eric</b><p>Mostra la documentazione delle API di Eric. La posizione della documentazione è la subdirectory Documentation/Source della directory in cui è installato eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished">Le Qt v.3 non sono supportate da eric6.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished">L'update alla versione <b>{0}</b> di eric6 è disponibile presso <b>{1}</b>. Vuoi prenderlo?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric6 è aggiornato</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>You are using the latest version of eric6</source> <translation type="unfinished">Stai usando l'ultima versione di eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">eric6 non è ancora stato configurato. Il dialogo di configurazione verrà avviato.</translation> </message> @@ -78507,7 +78522,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6798"/> + <location filename="../UI/UserInterface.py" line="6800"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -78552,7 +78567,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>Load session</source> <translation type="unfinished">Carica sessione</translation> </message> @@ -78567,17 +78582,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -78592,17 +78607,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6923"/> + <location filename="../UI/UserInterface.py" line="6925"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -78657,7 +78672,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> @@ -78733,17 +78748,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source>Start Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5710"/> + <location filename="../UI/UserInterface.py" line="5712"/> <source>The eric6 web browser could not be started.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source><p>The eric6 web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_pt.ts Wed Mar 20 19:23:12 2019 +0100 +++ b/i18n/eric6_pt.ts Wed Mar 20 19:41:04 2019 +0100 @@ -6289,7 +6289,7 @@ <translation><p>O anfitrião ilegal <b>{0}</b> tentou conectar. Aceitar esta conexão?</p></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1515"/> + <location filename="../Debugger/DebugServer.py" line="1524"/> <source> Not connected </source> @@ -6298,14 +6298,14 @@ </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1708"/> + <location filename="../Debugger/DebugServer.py" line="1717"/> <source>Passive debug connection received </source> <translation>Conexão de depuração passiva recebida </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1722"/> + <location filename="../Debugger/DebugServer.py" line="1731"/> <source>Passive debug connection closed </source> <translation>Conexão de depuração passiva fechada @@ -6322,12 +6322,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source>Start Debugger</source> <translation type="unfinished">Iniciar o Depurador</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source><p>The debugger type <b>{0}</b> is not supported or not configured.</p></source> <translation type="unfinished"></translation> </message> @@ -48322,47 +48322,47 @@ <context> <name>NetworkManager</name> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="197"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> <source>SSL Certificate Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="199"/> <source><b>{0}</b><p>The page you are trying to access has errors in the SSL certificate.</p><ul><li>{1}</li></ul><p>Would you like to make an exception?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="208"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="209"/> <source>&Permanent accept</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="210"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="211"/> <source>&Temporary accept</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="212"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="213"/> <source>&Reject</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="245"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="246"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation type="unfinished"><b>Introduzir nome de usuário e senha para '{0}, domínio '{1}'</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="248"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="249"/> <source><b>Enter username and password for '{0}'</b></source> <translation type="unfinished"><b>Introduzir nome de usuário e senha para '{0}'</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="291"/> - <source>Authentication required</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../WebBrowser/Network/NetworkManager.py" line="292"/> + <source>Authentication required</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../WebBrowser/Network/NetworkManager.py" line="293"/> <source>Authentication is required to access:</source> <translation type="unfinished"></translation> </message> @@ -75827,7 +75827,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source>Unittest</source> <translation>Teste Unitário</translation> </message> @@ -75869,97 +75869,97 @@ <translation>Introduzir nome do &ficheiro teste:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="91"/> + <location filename="../PyUnit/UnittestDialog.ui" line="123"/> <source>Select whether you want to run the test locally</source> <translation>Selecionar se quer executar o teste localmente</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="94"/> + <location filename="../PyUnit/UnittestDialog.ui" line="126"/> <source>Run &local</source> <translation>Execução &local</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="101"/> + <location filename="../PyUnit/UnittestDialog.ui" line="133"/> <source>Select whether coverage data should be collected</source> <translation>Selecionar se os dados de cobertura devem ser recolhidos</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="104"/> + <location filename="../PyUnit/UnittestDialog.ui" line="136"/> <source>C&ollect coverage data</source> <translation>Rec&olher dados de cobertura</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="114"/> + <location filename="../PyUnit/UnittestDialog.ui" line="146"/> <source>Select whether old coverage data should be erased</source> <translation>Selecionar se os dados de cobertura antigos devem ser apagados</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="117"/> + <location filename="../PyUnit/UnittestDialog.ui" line="149"/> <source>&Erase coverage data</source> <translation>&Apagar dados de cobertura</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="135"/> + <location filename="../PyUnit/UnittestDialog.ui" line="169"/> <source>Progress:</source> <translation>Progresso:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="175"/> + <location filename="../PyUnit/UnittestDialog.ui" line="209"/> <source>Run:</source> <translation>Execução:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="182"/> + <location filename="../PyUnit/UnittestDialog.ui" line="216"/> <source>Number of tests run</source> <translation>Número de execuções de testes</translation> </message> <message> + <location filename="../PyUnit/UnittestDialog.ui" line="260"/> + <source>Failures:</source> + <translation>Falhos:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="267"/> + <source>Number of test failures</source> + <translation>Número de testes com falhos</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="277"/> + <source>Errors:</source> + <translation>Erros:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="284"/> + <source>Number of test errors</source> + <translation>Número de testes com erros</translation> + </message> + <message> <location filename="../PyUnit/UnittestDialog.ui" line="226"/> - <source>Failures:</source> - <translation>Falhos:</translation> + <source>Remaining:</source> + <translation>Restante:</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="233"/> - <source>Number of test failures</source> - <translation>Número de testes com falhos</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="243"/> - <source>Errors:</source> - <translation>Erros:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="250"/> - <source>Number of test errors</source> - <translation>Número de testes com erros</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="192"/> - <source>Remaining:</source> - <translation>Restante:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="199"/> <source>Number of tests to be run</source> <translation>Número de testes a executar</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="332"/> + <location filename="../PyUnit/UnittestDialog.ui" line="366"/> <source>Tests performed:</source> <translation>Testes executados:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="342"/> + <location filename="../PyUnit/UnittestDialog.ui" line="376"/> <source>Failures and errors:</source> <translation>Falhos e Erros:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="349"/> + <location filename="../PyUnit/UnittestDialog.ui" line="383"/> <source>Failures and Errors list</source> <translation>Lista de Erros e Falhos</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="352"/> + <location filename="../PyUnit/UnittestDialog.ui" line="386"/> <source><b>Failures and Errors list</b> <p>This list shows all failed and errored tests. Double clicking on an entry will show the respective traceback.</p></source> @@ -75968,167 +75968,167 @@ Duplo clique numa entrada mostrará o respetivo rastreio.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="379"/> + <location filename="../PyUnit/UnittestDialog.ui" line="413"/> <source>Idle</source> <translation>Inativo</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="71"/> - <source>Start</source> - <translation>Iniciar</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="73"/> - <source>Start the selected testsuite</source> - <translation>Iniciar a suite de testes selecionada</translation> + <source>Start</source> + <translation>Iniciar</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="75"/> + <source>Start the selected testsuite</source> + <translation>Iniciar a suite de testes selecionada</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="77"/> <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> <translation><b>Iniciar Teste</b><p>Este botão inicia a suite de testes selecionada.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="86"/> - <source>Stop</source> - <translation>Parar</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="88"/> + <source>Stop</source> + <translation>Parar</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="90"/> <source>Stop the running unittest</source> <translation>Parar execução de teste unitário</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="89"/> + <location filename="../PyUnit/UnittestDialog.py" line="91"/> <source><b>Stop Test</b><p>This button stops a running unittest.</p></source> <translation><b>Parar Teste</b><p>Este botão para a execução do teste unitário.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="121"/> + <location filename="../PyUnit/UnittestDialog.py" line="129"/> <source>^Failure: </source> <translation>^Falho:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="122"/> + <location filename="../PyUnit/UnittestDialog.py" line="130"/> <source>^Error: </source> <translation>^Erro:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="207"/> + <location filename="../PyUnit/UnittestDialog.py" line="224"/> <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source> <translation>Ficheiros Python3 ({1});;Ficheiros Python2 ({0});;Ficheiros Todos (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="211"/> + <location filename="../PyUnit/UnittestDialog.py" line="228"/> <source>Python Files (*.py);;All Files (*)</source> <translation>Ficheiros Python (*.py);;Ficheiros Todos (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="271"/> + <location filename="../PyUnit/UnittestDialog.py" line="291"/> <source>You must enter a test suite file.</source> <translation>Deve introduzir um ficheiro de suite de testes.</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="279"/> + <location filename="../PyUnit/UnittestDialog.py" line="299"/> <source>Preparing Testsuite</source> <translation>A preparar Suite de Testes</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source><p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p></source> <translation><p>Incapaz de executar teste <b>{0}</b>.<br>{1}<br>{2}</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="477"/> + <location filename="../PyUnit/UnittestDialog.py" line="500"/> <source>Running</source> <translation>A executar</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="501"/> + <location filename="../PyUnit/UnittestDialog.py" line="524"/> <source>Ran {0} test in {1:.3f}s</source> <translation>Executado {0} teste em {1:.3f}s</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="505"/> + <location filename="../PyUnit/UnittestDialog.py" line="528"/> <source>Ran {0} tests in {1:.3f}s</source> <translation>Executados {0} testes em {1:.3f}s</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="522"/> + <location filename="../PyUnit/UnittestDialog.py" line="545"/> <source>Failure: {0}</source> <translation>Falho: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="537"/> + <location filename="../PyUnit/UnittestDialog.py" line="560"/> <source>Error: {0}</source> <translation>Erro: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="642"/> + <location filename="../PyUnit/UnittestDialog.py" line="665"/> <source>Show Source</source> <translation>Mostrar Fonte</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="260"/> - <source>Skipped:</source> - <translation>Saltado:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="267"/> - <source>Number of tests skipped</source> - <translation>Número de testes saltados</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="277"/> - <source>Expected Failures:</source> - <translation>Falhos esperados:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="284"/> - <source>Number of tests with expected failure</source> - <translation>Número de testes com falhos esperados </translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.ui" line="294"/> - <source>Unexpected Successes:</source> - <translation>Sucessos Inesperados:</translation> + <source>Skipped:</source> + <translation>Saltado:</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="301"/> + <source>Number of tests skipped</source> + <translation>Número de testes saltados</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="311"/> + <source>Expected Failures:</source> + <translation>Falhos esperados:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="318"/> + <source>Number of tests with expected failure</source> + <translation>Número de testes com falhos esperados </translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="328"/> + <source>Unexpected Successes:</source> + <translation>Sucessos Inesperados:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="335"/> <source>Number of tests with unexpected success</source> <translation>Número de testes com êxito imprevistos</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="552"/> + <location filename="../PyUnit/UnittestDialog.py" line="575"/> <source> Skipped: {0}</source> <translation> Saltado: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="567"/> + <location filename="../PyUnit/UnittestDialog.py" line="590"/> <source> Expected Failure</source> <translation> Falhos esperados</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="581"/> + <location filename="../PyUnit/UnittestDialog.py" line="604"/> <source> Unexpected Success</source> <translation> Sucessos Inesperados</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="78"/> - <source>Rerun Failed</source> - <translation>Reexecução Falhada</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="80"/> - <source>Reruns failed tests of the selected testsuite</source> - <translation>Testes de reexecução falhados da suite de testes selecionada</translation> + <source>Rerun Failed</source> + <translation>Reexecução Falhada</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="82"/> + <source>Reruns failed tests of the selected testsuite</source> + <translation>Testes de reexecução falhados da suite de testes selecionada</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="84"/> <source><b>Rerun Failed</b><p>This button reruns all failed tests of the selected testsuite.</p></source> <translation><b>Reexecução Falhada</b><p>Este botão reexecuta todos os testes falhados da suite de testes selecionada.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="166"/> + <location filename="../PyUnit/UnittestDialog.ui" line="200"/> <source>%v/%m Tests</source> <translation>%v/%m Testes</translation> </message> @@ -76143,10 +76143,25 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="127"/> + <location filename="../PyUnit/UnittestDialog.ui" line="161"/> <source>Progress</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="93"/> + <source>Virtual Environment:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="109"/> + <source>Select the virtual environment to be used</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="112"/> + <source><b>Virtual Environment</b>\n<p>Enter the virtual environment to be used. Leave it empty to use the default environment, i.e. the one configured globally or per project.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UrlBar</name> @@ -76796,7 +76811,7 @@ <translation><b>Teste Unitário ao Script</b><p>Executar teste unitário com o script atual.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>Unittest Project</source> <translation>Teste Unitário ao Projeto</translation> </message> @@ -77081,7 +77096,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6014"/> + <location filename="../UI/UserInterface.py" line="6016"/> <source>Export Keyboard Shortcuts</source> <translation>Exportar Atalhos de Teclado</translation> </message> @@ -77101,7 +77116,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Import Keyboard Shortcuts</source> <translation>Importar Atalhos de Teclado</translation> </message> @@ -77346,7 +77361,7 @@ <translation>Definições</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Help</source> <translation>Ajuda</translation> </message> @@ -77401,7 +77416,7 @@ <translation><h3>Números de Versão</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7003"/> + <location filename="../UI/UserInterface.py" line="7005"/> <source></table></source> <translation></translation> </message> @@ -77451,215 +77466,215 @@ <translation>&Esconder tudo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>There is no main script defined for the current project. Aborting</source> <translation>O projeto atual não tem um script principal definido. A cancelar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt 3 support</source> <translation>Suporte Qt3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source>Process Generation Error</source> <translation>Erro na Criação de Processo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4667"/> + <location filename="../UI/UserInterface.py" line="4669"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4738"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4791"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Não há nenhum visor personalizado selecionado. Por favor use a caixa de diálogo das preferências para escolher um.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4831"/> + <location filename="../UI/UserInterface.py" line="4833"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4853"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4899"/> + <location filename="../UI/UserInterface.py" line="4901"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4954"/> + <location filename="../UI/UserInterface.py" line="4956"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4975"/> + <location filename="../UI/UserInterface.py" line="4977"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>External Tools</source> <translation>Ferramentas Externas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5070"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5116"/> + <location filename="../UI/UserInterface.py" line="5118"/> <source>Starting process '{0} {1}'. </source> <translation>A iniciar processo '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5208"/> + <location filename="../UI/UserInterface.py" line="5210"/> <source>Process '{0}' has exited. </source> <translation>Processo '{0}' saiu.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source>Documentation Missing</source> <translation>Falta a Documentação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source>Documentation</source> <translation>Documentação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5417"/> + <location filename="../UI/UserInterface.py" line="5419"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Ficheiro de atalhos de teclado (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source>Save tasks</source> <translation>Gravar tarefas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source>Read tasks</source> <translation>Ler tarefas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6335"/> <source>Save session</source> <translation>Guargar sessão</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6270"/> + <location filename="../UI/UserInterface.py" line="6272"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source>Read session</source> <translation>Sessão de leitura</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> não é um ficheiro.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>&Cancel</source> <translation>&Cancelar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6787"/> + <location filename="../UI/UserInterface.py" line="6789"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>Update available</source> <translation>Atualização disponível</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Error during updates check</source> <translation>Erro na verificação de atualizações</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Could not perform updates check.</source> <translation>Não procurar atualizações.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6989"/> + <location filename="../UI/UserInterface.py" line="6991"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versões Disponíveis</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>First time usage</source> <translation>Usado a primeira vez</translation> </message> @@ -77699,27 +77714,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>Error getting versions information</source> <translation>Erro na obtenção da informação de versões</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6844"/> + <location filename="../UI/UserInterface.py" line="6846"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Open Browser</source> <translation>Abrir Navegador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Could not start a web browser</source> <translation>Não se pôde iniciar um navegador web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -77805,12 +77820,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5045"/> + <location filename="../UI/UserInterface.py" line="5047"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7059"/> + <location filename="../UI/UserInterface.py" line="7061"/> <source>Select Workspace Directory</source> <translation>Selecionar o Diretório de Trabalho</translation> </message> @@ -78185,7 +78200,7 @@ <translation>Abrir a Documentação de PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5480"/> + <location filename="../UI/UserInterface.py" line="5482"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> @@ -78195,7 +78210,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>%v/%m</source> <translation></translation> </message> @@ -78280,32 +78295,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt v.3 não está suportado por eric6.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782"/> + <location filename="../UI/UserInterface.py" line="6784"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>Atualização a <b>{0}</b> de eric6 já está disponível em <b>{1}</b>. Quere-a descarregar?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>Eric6 is up to date</source> <translation>Eric6 está atualizado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>You are using the latest version of eric6</source> <translation>Utiliza a última versão do eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>eric6 ainda não foi configurado. A caixa de diálogo de configuração vai iniciar-se.</translation> </message> @@ -78325,7 +78340,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6798"/> + <location filename="../UI/UserInterface.py" line="6800"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -78370,7 +78385,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>Load session</source> <translation type="unfinished">Carregar sessão</translation> </message> @@ -78385,17 +78400,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -78410,17 +78425,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6923"/> + <location filename="../UI/UserInterface.py" line="6925"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -78475,7 +78490,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> @@ -78551,17 +78566,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source>Start Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5710"/> + <location filename="../UI/UserInterface.py" line="5712"/> <source>The eric6 web browser could not be started.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source><p>The eric6 web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_ru.ts Wed Mar 20 19:23:12 2019 +0100 +++ b/i18n/eric6_ru.ts Wed Mar 20 19:41:04 2019 +0100 @@ -6290,7 +6290,7 @@ <translation><p>Попытка соединения с недопустимого компьютора <b>{0}</b>. Разрешить соединение?</p></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1515"/> + <location filename="../Debugger/DebugServer.py" line="1524"/> <source> Not connected </source> @@ -6299,14 +6299,14 @@ </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1708"/> + <location filename="../Debugger/DebugServer.py" line="1717"/> <source>Passive debug connection received </source> <translation>Получен запрос на соединение для пассивной отладки </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1722"/> + <location filename="../Debugger/DebugServer.py" line="1731"/> <source>Passive debug connection closed </source> <translation>Соединение для пассивной отладки закрыто @@ -6323,12 +6323,12 @@ <translation><p>Интерфейс отладчика <b>{0}</b> уже зарегистрирован. Запрос проигнорирован.</p></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source>Start Debugger</source> <translation>Запуск отладчика</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source><p>The debugger type <b>{0}</b> is not supported or not configured.</p></source> <translation><p>Отладчик типа <b>{0}</b> не поддерживается или не настроен.</p></translation> </message> @@ -48487,47 +48487,47 @@ <context> <name>NetworkManager</name> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="197"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> <source>SSL Certificate Error</source> <translation>Ошибка сертификата SSL</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="199"/> <source><b>{0}</b><p>The page you are trying to access has errors in the SSL certificate.</p><ul><li>{1}</li></ul><p>Would you like to make an exception?</p></source> <translation><b>{0}</b><p>Страница, к которой вы пытаетесь получить доступ, имет ошибки сертификата SSL.</p><ul><li>{1}</li></ul><p>Хотите сделать исключение?</p></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="208"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="209"/> <source>&Permanent accept</source> <translation>Принимать &всегда</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="210"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="211"/> <source>&Temporary accept</source> <translation>Принимать вр&еменно</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="212"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="213"/> <source>&Reject</source> <translation>&Отвергать</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="245"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="246"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation><b>Введите имя пользователя и пароль для '{0}'; realm '{1}'</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="248"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="249"/> <source><b>Enter username and password for '{0}'</b></source> <translation><b>Введите имя пользователя и пароль для '{0}'</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="291"/> - <source>Authentication required</source> - <translation>Требуется аутентификация</translation> - </message> - <message> <location filename="../WebBrowser/Network/NetworkManager.py" line="292"/> + <source>Authentication required</source> + <translation>Требуется аутентификация</translation> + </message> + <message> + <location filename="../WebBrowser/Network/NetworkManager.py" line="293"/> <source>Authentication is required to access:</source> <translation>Для доступа требуется аутентификация:</translation> </message> @@ -76319,7 +76319,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source>Unittest</source> <translation>Юниттест</translation> </message> @@ -76362,97 +76362,97 @@ <translation>Задайте &имя файла с тестами:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="91"/> + <location filename="../PyUnit/UnittestDialog.ui" line="123"/> <source>Select whether you want to run the test locally</source> <translation>Разрешить запускать тест локально</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="94"/> + <location filename="../PyUnit/UnittestDialog.ui" line="126"/> <source>Run &local</source> <translation>Выполнять &локально</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="101"/> + <location filename="../PyUnit/UnittestDialog.ui" line="133"/> <source>Select whether coverage data should be collected</source> <translation>Разрешить собирать данные покрытия</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="104"/> + <location filename="../PyUnit/UnittestDialog.ui" line="136"/> <source>C&ollect coverage data</source> <translation>Собирать данные &покрытия</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="114"/> + <location filename="../PyUnit/UnittestDialog.ui" line="146"/> <source>Select whether old coverage data should be erased</source> <translation>Разрешить удалять старые данные покрытия</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="117"/> + <location filename="../PyUnit/UnittestDialog.ui" line="149"/> <source>&Erase coverage data</source> <translation>&Удалять данные покрытия</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="135"/> + <location filename="../PyUnit/UnittestDialog.ui" line="169"/> <source>Progress:</source> <translation>Прогресс:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="175"/> + <location filename="../PyUnit/UnittestDialog.ui" line="209"/> <source>Run:</source> <translation>Запущено:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="182"/> + <location filename="../PyUnit/UnittestDialog.ui" line="216"/> <source>Number of tests run</source> <translation>Количество запущенных тестов</translation> </message> <message> + <location filename="../PyUnit/UnittestDialog.ui" line="260"/> + <source>Failures:</source> + <translation>Сбои:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="267"/> + <source>Number of test failures</source> + <translation>Количество сбоев теста</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="277"/> + <source>Errors:</source> + <translation>Ошибки:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="284"/> + <source>Number of test errors</source> + <translation>Количество ошибок теста</translation> + </message> + <message> <location filename="../PyUnit/UnittestDialog.ui" line="226"/> - <source>Failures:</source> - <translation>Сбои:</translation> + <source>Remaining:</source> + <translation>Осталось:</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="233"/> - <source>Number of test failures</source> - <translation>Количество сбоев теста</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="243"/> - <source>Errors:</source> - <translation>Ошибки:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="250"/> - <source>Number of test errors</source> - <translation>Количество ошибок теста</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="192"/> - <source>Remaining:</source> - <translation>Осталось:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="199"/> <source>Number of tests to be run</source> <translation>Количество выполняемых тестов</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="332"/> + <location filename="../PyUnit/UnittestDialog.ui" line="366"/> <source>Tests performed:</source> <translation>Выполненные тесты:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="342"/> + <location filename="../PyUnit/UnittestDialog.ui" line="376"/> <source>Failures and errors:</source> <translation>Сбои и ошибки:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="349"/> + <location filename="../PyUnit/UnittestDialog.ui" line="383"/> <source>Failures and Errors list</source> <translation>Список сбоев и ошибок</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="352"/> + <location filename="../PyUnit/UnittestDialog.ui" line="386"/> <source><b>Failures and Errors list</b> <p>This list shows all failed and errored tests. Double clicking on an entry will show the respective traceback.</p></source> @@ -76462,167 +76462,167 @@ отобразит соответствующий стек вызовов.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="379"/> + <location filename="../PyUnit/UnittestDialog.ui" line="413"/> <source>Idle</source> <translation>Idle</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="71"/> - <source>Start</source> - <translation>Запустить</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="73"/> - <source>Start the selected testsuite</source> - <translation>Запустить выбранный набор тестов</translation> + <source>Start</source> + <translation>Запустить</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="75"/> + <source>Start the selected testsuite</source> + <translation>Запустить выбранный набор тестов</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="77"/> <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> <translation><b>Запустить тест</b><p>Запустить выбранный набор тестов.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="86"/> - <source>Stop</source> - <translation>Стоп</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="88"/> + <source>Stop</source> + <translation>Стоп</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="90"/> <source>Stop the running unittest</source> <translation>Остановить выполняющийся юниттест</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="89"/> + <location filename="../PyUnit/UnittestDialog.py" line="91"/> <source><b>Stop Test</b><p>This button stops a running unittest.</p></source> <translation><b>Остановить</b><p>Остановить выполняющийся юниттест.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="121"/> + <location filename="../PyUnit/UnittestDialog.py" line="129"/> <source>^Failure: </source> <translation>^Сбой: </translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="122"/> + <location filename="../PyUnit/UnittestDialog.py" line="130"/> <source>^Error: </source> <translation>^Ошибка: </translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="207"/> + <location filename="../PyUnit/UnittestDialog.py" line="224"/> <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source> <translation>Файлы Python3 ({1});;Файлы Python2 ({0});;Все файлы (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="211"/> + <location filename="../PyUnit/UnittestDialog.py" line="228"/> <source>Python Files (*.py);;All Files (*)</source> <translation>Файлы Python (*.py);;Все файлы (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="271"/> + <location filename="../PyUnit/UnittestDialog.py" line="291"/> <source>You must enter a test suite file.</source> <translation>Необходимо ввести файл с набором тестов.</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="279"/> + <location filename="../PyUnit/UnittestDialog.py" line="299"/> <source>Preparing Testsuite</source> <translation>Подготовка набора тестов</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source><p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p></source> <translation><p>Невозможно запустить тест <b>{0}</b>.<br>{1}<br>{2}</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="477"/> + <location filename="../PyUnit/UnittestDialog.py" line="500"/> <source>Running</source> <translation>Выполнение</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="501"/> + <location filename="../PyUnit/UnittestDialog.py" line="524"/> <source>Ran {0} test in {1:.3f}s</source> <translation>Тест {0} пройден за {1:.3f} секунд</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="505"/> + <location filename="../PyUnit/UnittestDialog.py" line="528"/> <source>Ran {0} tests in {1:.3f}s</source> <translation>{0} Тестов пройдено за {1:.3f} секунд</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="522"/> + <location filename="../PyUnit/UnittestDialog.py" line="545"/> <source>Failure: {0}</source> <translation>Сбой: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="537"/> + <location filename="../PyUnit/UnittestDialog.py" line="560"/> <source>Error: {0}</source> <translation>Ошибка: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="642"/> + <location filename="../PyUnit/UnittestDialog.py" line="665"/> <source>Show Source</source> <translation>Показ исходников</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="260"/> - <source>Skipped:</source> - <translation>Пропущено:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="267"/> - <source>Number of tests skipped</source> - <translation>Количество пропущенных тестов</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="277"/> - <source>Expected Failures:</source> - <translation>Ожидаемые сбои:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="284"/> - <source>Number of tests with expected failure</source> - <translation>Количество тестов с ожидаемыми сбоями</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.ui" line="294"/> - <source>Unexpected Successes:</source> - <translation>Неожиданные успехи:</translation> + <source>Skipped:</source> + <translation>Пропущено:</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="301"/> + <source>Number of tests skipped</source> + <translation>Количество пропущенных тестов</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="311"/> + <source>Expected Failures:</source> + <translation>Ожидаемые сбои:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="318"/> + <source>Number of tests with expected failure</source> + <translation>Количество тестов с ожидаемыми сбоями</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="328"/> + <source>Unexpected Successes:</source> + <translation>Неожиданные успехи:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="335"/> <source>Number of tests with unexpected success</source> <translation>Количество тестов с неожиданным успехом</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="552"/> + <location filename="../PyUnit/UnittestDialog.py" line="575"/> <source> Skipped: {0}</source> <translation> Пропущено: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="567"/> + <location filename="../PyUnit/UnittestDialog.py" line="590"/> <source> Expected Failure</source> <translation> Ожидаемый сбой</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="581"/> + <location filename="../PyUnit/UnittestDialog.py" line="604"/> <source> Unexpected Success</source> <translation> Неожидаемый успех</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="78"/> - <source>Rerun Failed</source> - <translation>Повторить неудачные</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="80"/> - <source>Reruns failed tests of the selected testsuite</source> - <translation>Повторить неудачные тесты выбранного набора тестов</translation> + <source>Rerun Failed</source> + <translation>Повторить неудачные</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="82"/> + <source>Reruns failed tests of the selected testsuite</source> + <translation>Повторить неудачные тесты выбранного набора тестов</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="84"/> <source><b>Rerun Failed</b><p>This button reruns all failed tests of the selected testsuite.</p></source> <translation><b>Повторить неудачные</b><p>Перезапустить все неудачные тесты выбранного набора тестов.</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="166"/> + <location filename="../PyUnit/UnittestDialog.ui" line="200"/> <source>%v/%m Tests</source> <translation>%v из %m тестов</translation> </message> @@ -76637,10 +76637,25 @@ <translation>Параметры запуска</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="127"/> + <location filename="../PyUnit/UnittestDialog.ui" line="161"/> <source>Progress</source> <translation>Выполнение</translation> </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="93"/> + <source>Virtual Environment:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="109"/> + <source>Select the virtual environment to be used</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="112"/> + <source><b>Virtual Environment</b>\n<p>Enter the virtual environment to be used. Leave it empty to use the default environment, i.e. the one configured globally or per project.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UrlBar</name> @@ -77296,7 +77311,7 @@ <translation><b>Юнитест на сценарии</b><p>Выполнить юнитест на с текущем сценарии.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>Unittest Project</source> <translation>Юнитест на проекте</translation> </message> @@ -77584,7 +77599,7 @@ <translation><b>Горячие клавиши</b><p>Определите горячие клавиши приложения согласно вашим предпочтениям.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6014"/> + <location filename="../UI/UserInterface.py" line="6016"/> <source>Export Keyboard Shortcuts</source> <translation>Экспорт горячих клавиш</translation> </message> @@ -77605,7 +77620,7 @@ <p>Экспортировать горячие клавиши приложения.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Import Keyboard Shortcuts</source> <translation>Импорт горячих клавиш</translation> </message> @@ -77852,7 +77867,7 @@ <translation>Настройки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Help</source> <translation>Справка</translation> </message> @@ -77907,7 +77922,7 @@ <translation><h3>Номера версий</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7003"/> + <location filename="../UI/UserInterface.py" line="7005"/> <source></table></source> <translation></table></translation> </message> @@ -77957,216 +77972,216 @@ <translation>Ск&рыть всё</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt 3 support</source> <translation>Поддержка Qt3</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source>Problem</source> <translation>Проблема</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Файл <b>{0}</b> либо не существует, либо нулевой длины.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source>Process Generation Error</source> <translation>Ошибка при запуске процесса</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4667"/> + <location filename="../UI/UserInterface.py" line="4669"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Qt-Designer.<br>Убедитесь, что он доступен в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4738"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Qt-Linguist.<br>Убедитесь, что он доступен в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4791"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Qt-Assistant.<br>Убедитесь, что он доступен в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>В настоящее время просмотрщик пользователя не выбран. Используйте диалог предпочтений для его выбора.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4831"/> + <location filename="../UI/UserInterface.py" line="4833"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить пользовательский просмотрщик.<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4853"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Невозможно запустить просмотрщик справки.<br>Убедитесь, что он доступен под именем <b>hh</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4899"/> + <location filename="../UI/UserInterface.py" line="4901"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить UI Previewer (предпросмотр интерфейсов).<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4954"/> + <location filename="../UI/UserInterface.py" line="4956"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Translation Previewer (предпросмотр переводов).<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4975"/> + <location filename="../UI/UserInterface.py" line="4977"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить SQL браузер.<br>Убедитесь, что он доступен как <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>External Tools</source> <translation>Внешние инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5070"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>Запись для внешнего инструмента '{0}' не найдена в группе инструментов '{1}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>No toolgroup entry '{0}' found.</source> <translation>Запись для группы инструментов '{0}' не найдена.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5116"/> + <location filename="../UI/UserInterface.py" line="5118"/> <source>Starting process '{0} {1}'. </source> <translation>Запускается процесс '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Невозможно запустить инструмент <b>{0}</b>.<br>Убедитесь, что он доступен в <b>{1}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5208"/> + <location filename="../UI/UserInterface.py" line="5210"/> <source>Process '{0}' has exited. </source> <translation>Процесс '{0}' завершен. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source>Documentation Missing</source> <translation>Документация отсутствует</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Стартовый каталог документации "<b>{0}</b>" не найден.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source>Documentation</source> <translation>Документация</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5417"/> + <location filename="../UI/UserInterface.py" line="5419"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>Стартовый каталог документации PyQt4 не найден.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Файл горячих клавиш (*.e4k)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source>Save tasks</source> <translation>Сохранить задачи</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл с задачами: <b>{0}</b></p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source>Read tasks</source> <translation>Прочитать задачи</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл задач: <b>{0}</b></p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6335"/> <source>Save session</source> <translation>Сохранить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6270"/> + <location filename="../UI/UserInterface.py" line="6272"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно записать файл сессии <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source>Read session</source> <translation>Загрузить сессию</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл сессии <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> не является файлом</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>&Cancel</source> <translation>От&мена</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6787"/> + <location filename="../UI/UserInterface.py" line="6789"/> <source>Trying host {0}</source> <translation>Подключение к хосту {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>Update available</source> <translation>Обновления доступны</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Error during updates check</source> <translation>Ошибка при проверке обновлений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Could not perform updates check.</source> <translation>Невозможно запустить проверку обновлений.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6989"/> + <location filename="../UI/UserInterface.py" line="6991"/> <source><h3>Available versions</h3><table></source> <translation><h3>Доступные версии</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>First time usage</source> <translation>Первое использование</translation> </message> @@ -78206,27 +78221,27 @@ <translation><b>Документация Python 2</b><p>Показать документацию Python 2. Если местонахождение документации не было настроено, то искать в директории <i>doc</i> каталога где находится исполняемый файл Python 2 под Windows и в директории <i>/usr/share/doc/packages/python/html/python-docs-html</i> под UNIX. Местонахождение документации можно задать с помощью переменной среды окружения PYTHON2DOCDIR.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>Error getting versions information</source> <translation>Ошибка при получении информации о версии</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6844"/> + <location filename="../UI/UserInterface.py" line="6846"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>Невозможно загрузить информацию о версии. Пожалуйста попробуйте ещё раз.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Open Browser</source> <translation>Открыть браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Could not start a web browser</source> <translation>Невозможно запустить web-браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>Невозможно загрузить информацию о версии в течении последних 7 дней. Пожалуйста попробуйте ещё раз.</translation> </message> @@ -78312,12 +78327,12 @@ <translation><b>Снимки</b><p>Сделать снимок области экрана.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5045"/> + <location filename="../UI/UserInterface.py" line="5047"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить программу для создания снимка экрана.<br>Убедитесь что она установлена как <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7059"/> + <location filename="../UI/UserInterface.py" line="7061"/> <source>Select Workspace Directory</source> <translation>Выбор директории рабочей области</translation> </message> @@ -78692,7 +78707,7 @@ <translation>Открыть документацию PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5480"/> + <location filename="../UI/UserInterface.py" line="5482"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation><p>Стартовый каталог документации PyQt5 не задан.</p></translation> </message> @@ -78702,7 +78717,7 @@ <translation><b>Документация Python 3</b><p>Показать документацию Python 3. Если местонахождение документации не было настроено, то искать в директории <i>doc</i> каталога где находится исполняемый файл Python 3 под Windows и в директории <i>/usr/share/doc/packages/python/html/python-docs-html</i> под UNIX. Местонахождение документации можно задать с помощью переменной среды окружения PYTHON3DOCDIR.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> @@ -78722,7 +78737,7 @@ <translation><b>Показать журнал ошибок...</b><p>Показать журнал ошибок.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782"/> + <location filename="../UI/UserInterface.py" line="6784"/> <source>Version Check</source> <translation>Проверка версии</translation> </message> @@ -78792,27 +78807,27 @@ <translation><b>Документация eric API</b><p>Показать документацию eric API. Местонахождение документации - каталог Documentation/Source, расположенный в директории инсталляции eric6.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt v.3 is not supported by eric6.</source> <translation>eric6 не поддерживает Qt3.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>На сайте <b>{1}</b> доступно обновление eric6 до версии <b>{0}</b>. Загрузить?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>Eric6 is up to date</source> <translation>Eric6 не требует обновлений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>You are using the latest version of eric6</source> <translation>Вы используете самую последнюю версию eric6</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>Настройка eric6 ещё не выполнена. Сейчас будет запущен диалог конфигурации.</translation> </message> @@ -78832,7 +78847,7 @@ <translation>Инструменты пользователя не сконфигурированы</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6798"/> + <location filename="../UI/UserInterface.py" line="6800"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation>Невозможно загрузить информацию о версии потому что вы <b>не в сети</b>. Пожалуйста, подключитесь к интернету и повторите попытку.</translation> </message> @@ -78877,7 +78892,7 @@ <translation><b>Сохранить сессию...</b><p>Позволяет сохранить текущую сессию на диск. Открывается диалог для выбора имени файла.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>Load session</source> <translation>Загрузить сессию</translation> </message> @@ -78892,17 +78907,17 @@ <translation><b>Загрузить сессию...</b><p>Позволяет загрузить сессию, ранее сохраненную на диске. Открывается диалог для выбора имени файла.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>eric6 Session Files (*.e5s)</source> <translation>Файлы сессии eric6 (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>Crash Session found!</source> <translation>Обнаружена crash-сессия!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation>Найден файл crashed-сессии. Восстановить эту сессию?</translation> </message> @@ -78917,18 +78932,18 @@ <translation>Инициализация плагинов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>Update Check</source> <translation>Проверка обновлений</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation>Eric установлен непосредственно из исходного кода. Невозможно проверить наличие обновлений.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6923"/> + <location filename="../UI/UserInterface.py" line="6925"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation>Вы используете промежуточный релиз eric6. Возможно на сайте доступна и более свежий стабильный релиз.</translation> </message> @@ -78983,7 +78998,7 @@ <translation><b>Документация PySide2</b><p>Отображение документации PySide2. В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><p>Просмотр документации PySide{0} не настроен.</p></translation> </message> @@ -79059,17 +79074,17 @@ <translation><b>Рестарт IDEE</b><p>Перезапуск среды IDE. Любые несохраненные изменения сохраняются в первую очередь. Любая программа Python, находящаяся в процессе отладки, будет остановлена, предпочтения будут записаны на диск.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source>Start Web Browser</source> <translation>Запуск web-браузера</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5710"/> + <location filename="../UI/UserInterface.py" line="5712"/> <source>The eric6 web browser could not be started.</source> <translation>Невозможно запустить eric6 web-браузер.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source><p>The eric6 web browser is not started.</p><p>Reason: {0}</p></source> <translation><p>Eric6 web-браузер не запущен.</p><p>Причина: {0}</p></translation> </message>
--- a/i18n/eric6_tr.ts Wed Mar 20 19:23:12 2019 +0100 +++ b/i18n/eric6_tr.ts Wed Mar 20 19:41:04 2019 +0100 @@ -6271,7 +6271,7 @@ <translation><p><b>{0}</b>kaçak bir barındırıcıdan (host) bağlantı denemesi. Bu bağlantıyı kabul ediyor musunuz?</p></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1515"/> + <location filename="../Debugger/DebugServer.py" line="1524"/> <source> Not connected </source> @@ -6280,13 +6280,13 @@ </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1708"/> + <location filename="../Debugger/DebugServer.py" line="1717"/> <source>Passive debug connection received </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1722"/> + <location filename="../Debugger/DebugServer.py" line="1731"/> <source>Passive debug connection closed </source> <translation type="unfinished"></translation> @@ -6302,12 +6302,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source>Start Debugger</source> <translation type="unfinished">Hata Ayıklayıcıyı Başlat</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source><p>The debugger type <b>{0}</b> is not supported or not configured.</p></source> <translation type="unfinished"></translation> </message> @@ -48237,47 +48237,47 @@ <context> <name>NetworkManager</name> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="197"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> <source>SSL Certificate Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="199"/> <source><b>{0}</b><p>The page you are trying to access has errors in the SSL certificate.</p><ul><li>{1}</li></ul><p>Would you like to make an exception?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="208"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="209"/> <source>&Permanent accept</source> <translation type="unfinished">Sürekli kabul &P</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="210"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="211"/> <source>&Temporary accept</source> <translation type="unfinished">Geçicikabul &T</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="212"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="213"/> <source>&Reject</source> <translation type="unfinished">&Reddet</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="245"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="246"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation type="unfinished"><b> '{1}' alanı, '{0}' için kullanıcı adı ve parola giriniz</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="248"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="249"/> <source><b>Enter username and password for '{0}'</b></source> <translation type="unfinished"><b> '{0}' için kullanıcı adını ve parolayı giriniz</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="291"/> - <source>Authentication required</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../WebBrowser/Network/NetworkManager.py" line="292"/> + <source>Authentication required</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../WebBrowser/Network/NetworkManager.py" line="293"/> <source>Authentication is required to access:</source> <translation type="unfinished"></translation> </message> @@ -75745,7 +75745,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source>Unittest</source> <translation>Birimtest</translation> </message> @@ -75784,264 +75784,264 @@ <translation>Test &Dosyası:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="91"/> + <location filename="../PyUnit/UnittestDialog.ui" line="123"/> <source>Select whether you want to run the test locally</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="94"/> + <location filename="../PyUnit/UnittestDialog.ui" line="126"/> <source>Run &local</source> <translation>Yere&l çalıştır</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="101"/> + <location filename="../PyUnit/UnittestDialog.ui" line="133"/> <source>Select whether coverage data should be collected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="104"/> + <location filename="../PyUnit/UnittestDialog.ui" line="136"/> <source>C&ollect coverage data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="114"/> + <location filename="../PyUnit/UnittestDialog.ui" line="146"/> <source>Select whether old coverage data should be erased</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="117"/> + <location filename="../PyUnit/UnittestDialog.ui" line="149"/> <source>&Erase coverage data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="135"/> + <location filename="../PyUnit/UnittestDialog.ui" line="169"/> <source>Progress:</source> <translation>İşlem:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="175"/> + <location filename="../PyUnit/UnittestDialog.ui" line="209"/> <source>Run:</source> <translation>Çalıştır:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="182"/> + <location filename="../PyUnit/UnittestDialog.ui" line="216"/> <source>Number of tests run</source> <translation>Çalışan testlerin sayısı</translation> </message> <message> + <location filename="../PyUnit/UnittestDialog.ui" line="260"/> + <source>Failures:</source> + <translation>Başarısızlıklar:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="267"/> + <source>Number of test failures</source> + <translation>Test başarısızlıklarının sayısı</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="277"/> + <source>Errors:</source> + <translation>Hatalar:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="284"/> + <source>Number of test errors</source> + <translation>Test hatalarının sayısı</translation> + </message> + <message> <location filename="../PyUnit/UnittestDialog.ui" line="226"/> - <source>Failures:</source> - <translation>Başarısızlıklar:</translation> + <source>Remaining:</source> + <translation>Geride kalan:</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="233"/> - <source>Number of test failures</source> - <translation>Test başarısızlıklarının sayısı</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="243"/> - <source>Errors:</source> - <translation>Hatalar:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="250"/> - <source>Number of test errors</source> - <translation>Test hatalarının sayısı</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="192"/> - <source>Remaining:</source> - <translation>Geride kalan:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="199"/> <source>Number of tests to be run</source> <translation>Koşturulacak test sayısı</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="332"/> + <location filename="../PyUnit/UnittestDialog.ui" line="366"/> <source>Tests performed:</source> <translation>Başarılan test:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="342"/> + <location filename="../PyUnit/UnittestDialog.ui" line="376"/> <source>Failures and errors:</source> <translation>Başarısızlık ve Hatalar:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="349"/> + <location filename="../PyUnit/UnittestDialog.ui" line="383"/> <source>Failures and Errors list</source> <translation>Başarısızlık ve Hata listesi</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="352"/> + <location filename="../PyUnit/UnittestDialog.ui" line="386"/> <source><b>Failures and Errors list</b> <p>This list shows all failed and errored tests. Double clicking on an entry will show the respective traceback.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="379"/> + <location filename="../PyUnit/UnittestDialog.ui" line="413"/> <source>Idle</source> <translation>Idle</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="71"/> - <source>Start</source> - <translation>Başla</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="73"/> - <source>Start the selected testsuite</source> - <translation>Seçilen test yöntemini başmat</translation> + <source>Start</source> + <translation>Başla</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="75"/> + <source>Start the selected testsuite</source> + <translation>Seçilen test yöntemini başmat</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="77"/> <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="86"/> - <source>Stop</source> - <translation>Dur</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="88"/> + <source>Stop</source> + <translation>Dur</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="90"/> <source>Stop the running unittest</source> <translation>Çalışan birimtestini durdur</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="89"/> + <location filename="../PyUnit/UnittestDialog.py" line="91"/> <source><b>Stop Test</b><p>This button stops a running unittest.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="121"/> + <location filename="../PyUnit/UnittestDialog.py" line="129"/> <source>^Failure: </source> <translation>^Başarısızlık: </translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="122"/> + <location filename="../PyUnit/UnittestDialog.py" line="130"/> <source>^Error: </source> <translation>^Hata: </translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="207"/> + <location filename="../PyUnit/UnittestDialog.py" line="224"/> <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source> <translation>Python3 Dosyaları ({1});;Python2 Dosyaları ({0});; Tüm Dosyalar (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="211"/> + <location filename="../PyUnit/UnittestDialog.py" line="228"/> <source>Python Files (*.py);;All Files (*)</source> <translation>Python Dosyaları (*.py);;Tüm Dosyalar (*)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="271"/> + <location filename="../PyUnit/UnittestDialog.py" line="291"/> <source>You must enter a test suite file.</source> <translation>Testyönteminin dosyasını girmelisiniz.</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="279"/> + <location filename="../PyUnit/UnittestDialog.py" line="299"/> <source>Preparing Testsuite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source><p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="477"/> + <location filename="../PyUnit/UnittestDialog.py" line="500"/> <source>Running</source> <translation>Çalışıyor</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="501"/> + <location filename="../PyUnit/UnittestDialog.py" line="524"/> <source>Ran {0} test in {1:.3f}s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="505"/> + <location filename="../PyUnit/UnittestDialog.py" line="528"/> <source>Ran {0} tests in {1:.3f}s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="522"/> + <location filename="../PyUnit/UnittestDialog.py" line="545"/> <source>Failure: {0}</source> <translation>Başarısızlık:{0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="537"/> + <location filename="../PyUnit/UnittestDialog.py" line="560"/> <source>Error: {0}</source> <translation>Hata: {0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="642"/> + <location filename="../PyUnit/UnittestDialog.py" line="665"/> <source>Show Source</source> <translation>Kaynağı Göster</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="260"/> - <source>Skipped:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="267"/> - <source>Number of tests skipped</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="277"/> - <source>Expected Failures:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="284"/> - <source>Number of tests with expected failure</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.ui" line="294"/> - <source>Unexpected Successes:</source> + <source>Skipped:</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="301"/> + <source>Number of tests skipped</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="311"/> + <source>Expected Failures:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="318"/> + <source>Number of tests with expected failure</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="328"/> + <source>Unexpected Successes:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="335"/> <source>Number of tests with unexpected success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="552"/> + <location filename="../PyUnit/UnittestDialog.py" line="575"/> <source> Skipped: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="567"/> + <location filename="../PyUnit/UnittestDialog.py" line="590"/> <source> Expected Failure</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="581"/> + <location filename="../PyUnit/UnittestDialog.py" line="604"/> <source> Unexpected Success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="78"/> - <source>Rerun Failed</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="80"/> - <source>Reruns failed tests of the selected testsuite</source> + <source>Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="82"/> + <source>Reruns failed tests of the selected testsuite</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="84"/> <source><b>Rerun Failed</b><p>This button reruns all failed tests of the selected testsuite.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="166"/> + <location filename="../PyUnit/UnittestDialog.ui" line="200"/> <source>%v/%m Tests</source> <translation type="unfinished"></translation> </message> @@ -76056,10 +76056,25 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="127"/> + <location filename="../PyUnit/UnittestDialog.ui" line="161"/> <source>Progress</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="93"/> + <source>Virtual Environment:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="109"/> + <source>Select the virtual environment to be used</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="112"/> + <source><b>Virtual Environment</b>\n<p>Enter the virtual environment to be used. Leave it empty to use the default environment, i.e. the one configured globally or per project.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UrlBar</name> @@ -76689,7 +76704,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>Unittest Project</source> <translation>Proje Birimtesti</translation> </message> @@ -76974,7 +76989,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6014"/> + <location filename="../UI/UserInterface.py" line="6016"/> <source>Export Keyboard Shortcuts</source> <translation>Kılavye Kısa Yollarını Dışa Aktar</translation> </message> @@ -76994,7 +77009,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Import Keyboard Shortcuts</source> <translation>Klavye kısayollarını İçe Aktar</translation> </message> @@ -77239,7 +77254,7 @@ <translation>Ayarlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Help</source> <translation>Yardım</translation> </message> @@ -77294,7 +77309,7 @@ <translation><h3>Sürüm Numaraları</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7003"/> + <location filename="../UI/UserInterface.py" line="7005"/> <source></table></source> <translation></table></translation> </message> @@ -77344,209 +77359,209 @@ <translation>&Hepsini gizle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt 3 support</source> <translation>Qt3 Desteği</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source>Problem</source> <translation>Problem</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source>Process Generation Error</source> <translation>İşlem Üretecinde Hata</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4667"/> + <location filename="../UI/UserInterface.py" line="4669"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4738"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4791"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Hali hazırda kullanıcı göstericisi seçilmedi. Lütfen .birini belirlemek için özellikler diyaloğunu kullanının.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4831"/> + <location filename="../UI/UserInterface.py" line="4833"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4853"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4899"/> + <location filename="../UI/UserInterface.py" line="4901"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4954"/> + <location filename="../UI/UserInterface.py" line="4956"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4975"/> + <location filename="../UI/UserInterface.py" line="4977"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>External Tools</source> <translation>Harici Araçlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5070"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5116"/> + <location filename="../UI/UserInterface.py" line="5118"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5208"/> + <location filename="../UI/UserInterface.py" line="5210"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source>Documentation Missing</source> <translation>Eksik Belgeleme</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source>Documentation</source> <translation>Belgeleme</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5417"/> + <location filename="../UI/UserInterface.py" line="5419"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>PyQt4 Belgelerinin başlama noktası ayarlanmamış.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source>Save tasks</source> <translation>Görevleri kaydet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source>Read tasks</source> <translation>Görevler Okunuyor</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6335"/> <source>Save session</source> <translation>Oturumu kaydet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6270"/> + <location filename="../UI/UserInterface.py" line="6272"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source>Read session</source> <translation>Oturumu oku</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> bir dosya değil.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>&Cancel</source> <translation>&Vazgeç</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6787"/> + <location filename="../UI/UserInterface.py" line="6789"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>Update available</source> <translation>Güncelleme mümkün değil</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Error during updates check</source> <translation>Güncellemeleri kontrol esnasında hata</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Could not perform updates check.</source> <translation>Güncellemelere ulaşamıyorum.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6989"/> + <location filename="../UI/UserInterface.py" line="6991"/> <source><h3>Available versions</h3><table></source> <translation><h3>Mümkün sürümler</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>First time usage</source> <translation>İlk kullanım</translation> </message> @@ -77606,32 +77621,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6844"/> + <location filename="../UI/UserInterface.py" line="6846"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -77717,12 +77732,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5045"/> + <location filename="../UI/UserInterface.py" line="5047"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7059"/> + <location filename="../UI/UserInterface.py" line="7061"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -78097,7 +78112,7 @@ <translation type="unfinished">PyQt4 Begelerini aç {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5480"/> + <location filename="../UI/UserInterface.py" line="5482"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"><p>PyQt4 Belgelerinin başlama noktası ayarlanmamış.</p> {5 ?}</translation> </message> @@ -78107,7 +78122,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -78127,7 +78142,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782"/> + <location filename="../UI/UserInterface.py" line="6784"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -78197,27 +78212,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished">Qt v.3 eric5 tarafından desteklenmiyor. {3 ?} {6.?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>Eric6 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">Eric5 henüz ayarlanmadı. Ayarlar Diyaloğu başlatılıyor. {6 ?}</translation> </message> @@ -78237,7 +78252,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6798"/> + <location filename="../UI/UserInterface.py" line="6800"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation type="unfinished"></translation> </message> @@ -78282,7 +78297,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>Load session</source> <translation type="unfinished">Oturum yükleniyor</translation> </message> @@ -78297,17 +78312,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -78322,17 +78337,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6923"/> + <location filename="../UI/UserInterface.py" line="6925"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -78387,7 +78402,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> @@ -78463,17 +78478,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source>Start Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5710"/> + <location filename="../UI/UserInterface.py" line="5712"/> <source>The eric6 web browser could not be started.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source><p>The eric6 web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_zh_CN.ts Wed Mar 20 19:23:12 2019 +0100 +++ b/i18n/eric6_zh_CN.ts Wed Mar 20 19:41:04 2019 +0100 @@ -6265,7 +6265,7 @@ <translation>连接非法主机</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1515"/> + <location filename="../Debugger/DebugServer.py" line="1524"/> <source> Not connected </source> @@ -6279,13 +6279,13 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1708"/> + <location filename="../Debugger/DebugServer.py" line="1717"/> <source>Passive debug connection received </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1722"/> + <location filename="../Debugger/DebugServer.py" line="1731"/> <source>Passive debug connection closed </source> <translation type="unfinished"></translation> @@ -6301,12 +6301,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source>Start Debugger</source> <translation type="unfinished">启动调试器</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="1340"/> + <location filename="../Debugger/DebugServer.py" line="1349"/> <source><p>The debugger type <b>{0}</b> is not supported or not configured.</p></source> <translation type="unfinished"></translation> </message> @@ -48214,47 +48214,47 @@ <context> <name>NetworkManager</name> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="197"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> <source>SSL Certificate Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="198"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="199"/> <source><b>{0}</b><p>The page you are trying to access has errors in the SSL certificate.</p><ul><li>{1}</li></ul><p>Would you like to make an exception?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="208"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="209"/> <source>&Permanent accept</source> <translation type="unfinished">永久接受(&P)</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="210"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="211"/> <source>&Temporary accept</source> <translation type="unfinished">临时接受(&T)</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="212"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="213"/> <source>&Reject</source> <translation type="unfinished">拒绝</translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="245"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="246"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="248"/> + <location filename="../WebBrowser/Network/NetworkManager.py" line="249"/> <source><b>Enter username and password for '{0}'</b></source> <translation type="unfinished"><b>输入“{0}”的用户名和密码</b></translation> </message> <message> - <location filename="../WebBrowser/Network/NetworkManager.py" line="291"/> - <source>Authentication required</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../WebBrowser/Network/NetworkManager.py" line="292"/> + <source>Authentication required</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../WebBrowser/Network/NetworkManager.py" line="293"/> <source>Authentication is required to access:</source> <translation type="unfinished"></translation> </message> @@ -75923,7 +75923,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source>Unittest</source> <translation>单元测试</translation> </message> @@ -75965,97 +75965,97 @@ <translation>输入测试文件名(&f):</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="91"/> + <location filename="../PyUnit/UnittestDialog.ui" line="123"/> <source>Select whether you want to run the test locally</source> <translation>选择是否在局部运行测试</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="94"/> + <location filename="../PyUnit/UnittestDialog.ui" line="126"/> <source>Run &local</source> <translation>局部运行(&l)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="101"/> + <location filename="../PyUnit/UnittestDialog.ui" line="133"/> <source>Select whether coverage data should be collected</source> <translation>选择是否收集覆盖率数据</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="104"/> + <location filename="../PyUnit/UnittestDialog.ui" line="136"/> <source>C&ollect coverage data</source> <translation>收集覆盖率数据(&o)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="114"/> + <location filename="../PyUnit/UnittestDialog.ui" line="146"/> <source>Select whether old coverage data should be erased</source> <translation>选择是否擦除原有的覆盖率数据</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="117"/> + <location filename="../PyUnit/UnittestDialog.ui" line="149"/> <source>&Erase coverage data</source> <translation>擦除覆盖率数据(&E)</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="135"/> + <location filename="../PyUnit/UnittestDialog.ui" line="169"/> <source>Progress:</source> <translation>进程:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="175"/> + <location filename="../PyUnit/UnittestDialog.ui" line="209"/> <source>Run:</source> <translation>运行:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="182"/> + <location filename="../PyUnit/UnittestDialog.ui" line="216"/> <source>Number of tests run</source> <translation>测试运行的数目</translation> </message> <message> + <location filename="../PyUnit/UnittestDialog.ui" line="260"/> + <source>Failures:</source> + <translation>失败:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="267"/> + <source>Number of test failures</source> + <translation>测试失败的数目</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="277"/> + <source>Errors:</source> + <translation>错误:</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="284"/> + <source>Number of test errors</source> + <translation>测试错误的数目</translation> + </message> + <message> <location filename="../PyUnit/UnittestDialog.ui" line="226"/> - <source>Failures:</source> - <translation>失败:</translation> + <source>Remaining:</source> + <translation>剩余:</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="233"/> - <source>Number of test failures</source> - <translation>测试失败的数目</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="243"/> - <source>Errors:</source> - <translation>错误:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="250"/> - <source>Number of test errors</source> - <translation>测试错误的数目</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="192"/> - <source>Remaining:</source> - <translation>剩余:</translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="199"/> <source>Number of tests to be run</source> <translation>将要运行的测试的数目</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="332"/> + <location filename="../PyUnit/UnittestDialog.ui" line="366"/> <source>Tests performed:</source> <translation>测试已完成:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="342"/> + <location filename="../PyUnit/UnittestDialog.ui" line="376"/> <source>Failures and errors:</source> <translation>失败和错误:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="349"/> + <location filename="../PyUnit/UnittestDialog.ui" line="383"/> <source>Failures and Errors list</source> <translation>失败和错误列表</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="352"/> + <location filename="../PyUnit/UnittestDialog.ui" line="386"/> <source><b>Failures and Errors list</b> <p>This list shows all failed and errored tests. Double clicking on an entry will show the respective traceback.</p></source> @@ -76064,167 +76064,167 @@ 双击条目将显示相应的追踪。</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="379"/> + <location filename="../PyUnit/UnittestDialog.ui" line="413"/> <source>Idle</source> <translation>空闲</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="71"/> - <source>Start</source> - <translation>开始</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="73"/> - <source>Start the selected testsuite</source> - <translation>开启所选测试套件</translation> + <source>Start</source> + <translation>开始</translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="75"/> + <source>Start the selected testsuite</source> + <translation>开启所选测试套件</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="77"/> <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> <translation><b>开始测试</b><p>该按钮开启所选测试套件。</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="86"/> - <source>Stop</source> - <translation>中止</translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="88"/> + <source>Stop</source> + <translation>中止</translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="90"/> <source>Stop the running unittest</source> <translation>中止正在运行的单元测试</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="89"/> + <location filename="../PyUnit/UnittestDialog.py" line="91"/> <source><b>Stop Test</b><p>This button stops a running unittest.</p></source> <translation><b>中止测试</b><p>该按钮中止一个正在运行的单元测试。</p></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="121"/> + <location filename="../PyUnit/UnittestDialog.py" line="129"/> <source>^Failure: </source> <translation>^失败:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="122"/> + <location filename="../PyUnit/UnittestDialog.py" line="130"/> <source>^Error: </source> <translation>^错误:</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="271"/> + <location filename="../PyUnit/UnittestDialog.py" line="291"/> <source>You must enter a test suite file.</source> <translation>必须输入测试套件文件。</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="279"/> + <location filename="../PyUnit/UnittestDialog.py" line="299"/> <source>Preparing Testsuite</source> <translation>准备测试套件</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="477"/> + <location filename="../PyUnit/UnittestDialog.py" line="500"/> <source>Running</source> <translation>正在运行</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="642"/> + <location filename="../PyUnit/UnittestDialog.py" line="665"/> <source>Show Source</source> <translation>显示源代码</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="211"/> + <location filename="../PyUnit/UnittestDialog.py" line="228"/> <source>Python Files (*.py);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="207"/> + <location filename="../PyUnit/UnittestDialog.py" line="224"/> <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="405"/> + <location filename="../PyUnit/UnittestDialog.py" line="428"/> <source><p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="501"/> + <location filename="../PyUnit/UnittestDialog.py" line="524"/> <source>Ran {0} test in {1:.3f}s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="505"/> + <location filename="../PyUnit/UnittestDialog.py" line="528"/> <source>Ran {0} tests in {1:.3f}s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="522"/> + <location filename="../PyUnit/UnittestDialog.py" line="545"/> <source>Failure: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="537"/> + <location filename="../PyUnit/UnittestDialog.py" line="560"/> <source>Error: {0}</source> <translation type="unfinished">错误:{0}</translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="260"/> - <source>Skipped:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="267"/> - <source>Number of tests skipped</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="277"/> - <source>Expected Failures:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../PyUnit/UnittestDialog.ui" line="284"/> - <source>Number of tests with expected failure</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.ui" line="294"/> - <source>Unexpected Successes:</source> + <source>Skipped:</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.ui" line="301"/> + <source>Number of tests skipped</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="311"/> + <source>Expected Failures:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="318"/> + <source>Number of tests with expected failure</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="328"/> + <source>Unexpected Successes:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="335"/> <source>Number of tests with unexpected success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="552"/> + <location filename="../PyUnit/UnittestDialog.py" line="575"/> <source> Skipped: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="567"/> + <location filename="../PyUnit/UnittestDialog.py" line="590"/> <source> Expected Failure</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="581"/> + <location filename="../PyUnit/UnittestDialog.py" line="604"/> <source> Unexpected Success</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.py" line="78"/> - <source>Rerun Failed</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../PyUnit/UnittestDialog.py" line="80"/> - <source>Reruns failed tests of the selected testsuite</source> + <source>Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> <location filename="../PyUnit/UnittestDialog.py" line="82"/> + <source>Reruns failed tests of the selected testsuite</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.py" line="84"/> <source><b>Rerun Failed</b><p>This button reruns all failed tests of the selected testsuite.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="166"/> + <location filename="../PyUnit/UnittestDialog.ui" line="200"/> <source>%v/%m Tests</source> <translation type="unfinished"></translation> </message> @@ -76239,10 +76239,25 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="127"/> + <location filename="../PyUnit/UnittestDialog.ui" line="161"/> <source>Progress</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="93"/> + <source>Virtual Environment:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="109"/> + <source>Select the virtual environment to be used</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../PyUnit/UnittestDialog.ui" line="112"/> + <source><b>Virtual Environment</b>\n<p>Enter the virtual environment to be used. Leave it empty to use the default environment, i.e. the one configured globally or per project.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UrlBar</name> @@ -76802,7 +76817,7 @@ <translation><b>脚本单元测试</b><p>对当前脚本运动单元测试。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>Unittest Project</source> <translation>项目单元测试</translation> </message> @@ -77057,7 +77072,7 @@ <translation><b>键盘快捷键</b><p>将程序的键盘快捷键设置成你喜欢的按键。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6014"/> + <location filename="../UI/UserInterface.py" line="6016"/> <source>Export Keyboard Shortcuts</source> <translation>导出键盘快捷键</translation> </message> @@ -77077,7 +77092,7 @@ <translation><b>导出键盘快捷键</b><p>导出程序的键盘快捷键。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Import Keyboard Shortcuts</source> <translation>导入键盘快捷键</translation> </message> @@ -77307,7 +77322,7 @@ <translation>设置</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Help</source> <translation>帮助</translation> </message> @@ -77357,7 +77372,7 @@ <translation><h3>版本号</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7003"/> + <location filename="../UI/UserInterface.py" line="7005"/> <source></table></source> <translation></table></translation> </message> @@ -77407,112 +77422,112 @@ <translation>全部隐藏(&H)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4559"/> + <location filename="../UI/UserInterface.py" line="4560"/> <source>There is no main script defined for the current project. Aborting</source> <translation>当前项目未定义主脚本。终止</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source>Problem</source> <translation>问题</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source>Process Generation Error</source> <translation>进程生成错误</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Open Browser</source> <translation>打开浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5813"/> + <location filename="../UI/UserInterface.py" line="5815"/> <source>Could not start a web browser</source> <translation>无法启动网络浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4817"/> + <location filename="../UI/UserInterface.py" line="4819"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>目前没有选择自定义浏览器。请使用首选项对话框指定一个。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4851"/> + <location filename="../UI/UserInterface.py" line="4853"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>无法开启帮助浏览器。<br>确保其有效如 <b>hh</b>。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>External Tools</source> <translation>外部工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source>Documentation Missing</source> <translation>文档缺失</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source>Documentation</source> <translation>文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5417"/> + <location filename="../UI/UserInterface.py" line="5419"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>未配置 PyQt4 文档起点。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source>Save tasks</source> <translation>保存任务</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source>Read tasks</source> <translation>读取任务</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6335"/> <source>Save session</source> <translation>保存会话</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source>Read session</source> <translation>读取会话</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source>Drop Error</source> <translation>降落误差</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Error during updates check</source> <translation>检查更新时出错</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>&Cancel</source> <translation>取消(&C)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>Update available</source> <translation>可用更新</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6965"/> + <location filename="../UI/UserInterface.py" line="6967"/> <source>Could not perform updates check.</source> <translation>无法完成更新检查。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6989"/> + <location filename="../UI/UserInterface.py" line="6991"/> <source><h3>Available versions</h3><table></source> <translation><h3>可用版本</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>First time usage</source> <translation>第一次使用</translation> </message> @@ -77592,7 +77607,7 @@ <translation>图标编辑器(&I)…</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt 3 support</source> <translation>Qt 3 支持</translation> </message> @@ -77632,106 +77647,106 @@ <translation>外部工具/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4943"/> + <location filename="../UI/UserInterface.py" line="4945"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>文件 <b>{0}</b> 不存在或者长度为零。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4667"/> + <location filename="../UI/UserInterface.py" line="4669"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 Qt 设计师。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4738"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 Qt 语言家。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4791"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 Qt 助手。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4831"/> + <location filename="../UI/UserInterface.py" line="4833"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动自定义的查看器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4899"/> + <location filename="../UI/UserInterface.py" line="4901"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 UI 预览器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4954"/> + <location filename="../UI/UserInterface.py" line="4956"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动翻译预览器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4975"/> + <location filename="../UI/UserInterface.py" line="4977"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 SQL 浏览器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5068"/> + <location filename="../UI/UserInterface.py" line="5070"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5077"/> + <location filename="../UI/UserInterface.py" line="5079"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5116"/> + <location filename="../UI/UserInterface.py" line="5118"/> <source>Starting process '{0} {1}'. </source> <translation>正在启动进程“{0} {1}”。 </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5132"/> + <location filename="../UI/UserInterface.py" line="5134"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5208"/> + <location filename="../UI/UserInterface.py" line="5210"/> <source>Process '{0}' has exited. </source> <translation>进程“{0}”已退出。 </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5611"/> + <location filename="../UI/UserInterface.py" line="5613"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6207"/> + <location filename="../UI/UserInterface.py" line="6209"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>任务文件 <b>{0}</b> 无法写入。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6236"/> + <location filename="../UI/UserInterface.py" line="6238"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>任务文件 <b>{0}</b> 无法读取。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6270"/> + <location filename="../UI/UserInterface.py" line="6272"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>会话文件 <b>{0}</b> 无法写入。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6317"/> + <location filename="../UI/UserInterface.py" line="6319"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>会话文件 <b>{0}</b> 无法读取。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6597"/> + <location filename="../UI/UserInterface.py" line="6599"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> 不是一个文件。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6787"/> + <location filename="../UI/UserInterface.py" line="6789"/> <source>Trying host {0}</source> <translation>正在尝试主机 {0}</translation> </message> @@ -77766,7 +77781,7 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6038"/> + <location filename="../UI/UserInterface.py" line="6040"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>键盘快捷键文件 (*.e4k)</translation> </message> @@ -77806,17 +77821,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>Error getting versions information</source> <translation>获取版本信息出错</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6844"/> + <location filename="../UI/UserInterface.py" line="6846"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>无法获取版本信息。请连线并再试一次。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6851"/> + <location filename="../UI/UserInterface.py" line="6853"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>过去7天均无法获取版本信息。请连线并再试一次。</translation> </message> @@ -77902,12 +77917,12 @@ <translation><b>快照</b><p>打开一个对话框来截取屏幕一个区域的快照。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5045"/> + <location filename="../UI/UserInterface.py" line="5047"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动快照工具。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7059"/> + <location filename="../UI/UserInterface.py" line="7061"/> <source>Select Workspace Directory</source> <translation>选择工作区目录</translation> </message> @@ -78282,7 +78297,7 @@ <translation>打开 PyQt5 文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5480"/> + <location filename="../UI/UserInterface.py" line="5482"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation><p>未配置 PyQt5 文档起始位置。</p></translation> </message> @@ -78297,7 +78312,7 @@ <translation><b>Python 3 文档</b><p>显示 Python 3 文档。如果尚未配置文档目录,则在 Windows 系统上,文档位置将默认为 Python 3 可执行文件所在目录下的 doc 目录;在类 Unix 系统上,则默认为 <i>/usr/share/doc/packages/python/html</i>。请在环境中设置 PYTHON3DOCDIR 以覆盖默认行为。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6778"/> + <location filename="../UI/UserInterface.py" line="6780"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -78317,7 +78332,7 @@ <translation><b>显示错误日志…</b><p>打开一个对话框显示最近的错误日志。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782"/> + <location filename="../UI/UserInterface.py" line="6784"/> <source>Version Check</source> <translation>版本检查</translation> </message> @@ -78387,27 +78402,27 @@ <translation><b>Eric API 文档</b><p>显示 Eric API 文档。文档位置为 Eric6 安装文件夹下的文档或源代码子文件夹。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4764"/> + <location filename="../UI/UserInterface.py" line="4766"/> <source>Qt v.3 is not supported by eric6.</source> <translation>Qt 版本3 不被 eric6 支持。</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6945"/> + <location filename="../UI/UserInterface.py" line="6947"/> <source>The update to <b>{0}</b> of eric6 is available at <b>{1}</b>. Would you like to get it?</source> <translation>eric6 的 <b>{0}</b> 更新已经可用,位于 <b>{1}</b>。您是否希望下载它?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>Eric6 is up to date</source> <translation>Eric6 已是最新版本</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6958"/> + <location filename="../UI/UserInterface.py" line="6960"/> <source>You are using the latest version of eric6</source> <translation>您正在使用 eric6 的最新版本</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7040"/> + <location filename="../UI/UserInterface.py" line="7042"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation>尚未配置 eric6。将打开配置对话框。</translation> </message> @@ -78427,7 +78442,7 @@ <translation>没有配置的用户工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6798"/> + <location filename="../UI/UserInterface.py" line="6800"/> <source>The versions information cannot not be downloaded because you are <b>offline</b>. Please go online and try again.</source> <translation>因为当前处在 <b>离线</b> 状态,无法获取版本信息。请连线并再试一次。</translation> </message> @@ -78472,7 +78487,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>Load session</source> <translation type="unfinished">载入会话</translation> </message> @@ -78487,17 +78502,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6355"/> + <location filename="../UI/UserInterface.py" line="6357"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6402"/> + <location filename="../UI/UserInterface.py" line="6404"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -78512,17 +78527,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6933"/> + <location filename="../UI/UserInterface.py" line="6935"/> <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6923"/> + <location filename="../UI/UserInterface.py" line="6925"/> <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source> <translation type="unfinished"></translation> </message> @@ -78577,7 +78592,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5594"/> + <location filename="../UI/UserInterface.py" line="5596"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> @@ -78648,17 +78663,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source>Start Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5710"/> + <location filename="../UI/UserInterface.py" line="5712"/> <source>The eric6 web browser could not be started.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5768"/> + <location filename="../UI/UserInterface.py" line="5770"/> <source><p>The eric6 web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message>