Sat, 17 Nov 2018 12:45:58 +0100
CreateDialogCodeDialog: fixed an issue and applied some logic to enhance the form data loading via the external UicLoadUi.py script.
--- a/Documentation/Help/source.qhp Fri Nov 16 20:00:03 2018 +0100 +++ b/Documentation/Help/source.qhp Sat Nov 17 12:45:58 2018 +0100 @@ -3513,6 +3513,7 @@ <keyword name="CreateDialogCodeDialog.__mapType" id="CreateDialogCodeDialog.__mapType" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__mapType" /> <keyword name="CreateDialogCodeDialog.__objectName" id="CreateDialogCodeDialog.__objectName" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__objectName" /> <keyword name="CreateDialogCodeDialog.__objectNameExternal" id="CreateDialogCodeDialog.__objectNameExternal" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__objectNameExternal" /> + <keyword name="CreateDialogCodeDialog.__runUicLoadUi" id="CreateDialogCodeDialog.__runUicLoadUi" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__runUicLoadUi" /> <keyword name="CreateDialogCodeDialog.__signatures" id="CreateDialogCodeDialog.__signatures" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__signatures" /> <keyword name="CreateDialogCodeDialog.__updateSlotsModel" id="CreateDialogCodeDialog.__updateSlotsModel" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__updateSlotsModel" /> <keyword name="CreateDialogCodeDialog.__updateSlotsModelExternal" id="CreateDialogCodeDialog.__updateSlotsModelExternal" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__updateSlotsModelExternal" />
--- a/Documentation/Source/eric6.Project.CreateDialogCodeDialog.html Fri Nov 16 20:00:03 2018 +0100 +++ b/Documentation/Source/eric6.Project.CreateDialogCodeDialog.html Sat Nov 17 12:45:58 2018 +0100 @@ -81,6 +81,9 @@ <td><a href="#CreateDialogCodeDialog.__objectNameExternal">__objectNameExternal</a></td> <td>Private method to get the object name of a form via an external interpreter.</td> </tr><tr> +<td><a href="#CreateDialogCodeDialog.__runUicLoadUi">__runUicLoadUi</a></td> +<td>Private method to run the UicLoadUi.py script with the given command and return the output.</td> +</tr><tr> <td><a href="#CreateDialogCodeDialog.__signatures">__signatures</a></td> <td>Private slot to get the signatures.</td> </tr><tr> @@ -214,6 +217,27 @@ <dd> str </dd> +</dl><a NAME="CreateDialogCodeDialog.__runUicLoadUi" ID="CreateDialogCodeDialog.__runUicLoadUi"></a> +<h4>CreateDialogCodeDialog.__runUicLoadUi</h4> +<b>__runUicLoadUi</b>(<i>command</i>) +<p> + Private method to run the UicLoadUi.py script with the given command + and return the output. +</p><dl> +<dt><i>command</i> (str)</dt> +<dd> +uic command to be run +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +tuple of process output and error flag +</dd> +</dl><dl> +<dt>Return Type:</dt> +<dd> +tuple of (str, bool) +</dd> </dl><a NAME="CreateDialogCodeDialog.__signatures" ID="CreateDialogCodeDialog.__signatures"></a> <h4>CreateDialogCodeDialog.__signatures</h4> <b>__signatures</b>(<i></i>)
--- a/Project/CreateDialogCodeDialog.py Fri Nov 16 20:00:03 2018 +0100 +++ b/Project/CreateDialogCodeDialog.py Sat Nov 17 12:45:58 2018 +0100 @@ -18,7 +18,7 @@ import xml.etree.ElementTree from PyQt5.QtCore import QMetaObject, QByteArray, QRegExp, Qt, pyqtSlot, \ - QMetaMethod, QSortFilterProxyModel, QProcess + QMetaMethod, QSortFilterProxyModel, QProcess, QProcessEnvironment from PyQt5.QtGui import QStandardItemModel, QBrush, QStandardItem from PyQt5.QtWidgets import QWidget, QDialog, QDialogButtonBox, QAction from PyQt5 import uic @@ -146,7 +146,75 @@ @return flag indicating an initialzation error (boolean) """ return self.__initError + + def __runUicLoadUi(self, command): + """ + Private method to run the UicLoadUi.py script with the given command + and return the output. + @param command uic command to be run + @type str + @return tuple of process output and error flag + @rtype tuple of (str, bool) + """ + venvName = self.project.getDebugProperty("VIRTUALENV") + venvManager = e5App().getObject("VirtualEnvManager") + interpreter = venvManager.getVirtualenvInterpreter(venvName) + execPath = venvManager.getVirtualenvExecPath(venvName) + + env = QProcessEnvironment.systemEnvironment() + if execPath: + if env.contains("PATH"): + env.insert( + "PATH", os.pathsep.join([execPath, env.value("PATH")]) + ) + else: + env.insert("PATH", execPath) + + loadUi = os.path.join(os.path.dirname(__file__), "UicLoadUi.py") + args = [ + loadUi, + command, + self.formFile, + self.project.getProjectPath(), + ] + + uicText = "" + ok = False + + proc = QProcess() + proc.setWorkingDirectory(self.project.getProjectPath()) + proc.setProcessEnvironment(env) + proc.start(interpreter, args) + started = proc.waitForStarted(5000) + finished = proc.waitForFinished(30000) + if started and finished: + output = proc.readAllStandardOutput() + outText = str(output, "utf-8", "replace") + if proc.exitCode() == 0: + ok = True + uicText = outText.strip() + else: + E5MessageBox.critical( + self, + self.tr("uic error"), + self.tr( + """<p>There was an error loading the form <b>{0}</b>""" + """.</p><p>{1}</p>""").format( + self.formFile, outText) + ) + else: + E5MessageBox.critical( + self, + self.tr("uic error"), + self.tr( + """<p>The project specific Python interpreter <b>{0}</b>""" + """ could not be started or did not finish within 30""" + """ seconds.</p>""").format(interpreter) + ) + + return uicText, ok + def __objectNameExternal(self): """ Private method to get the object name of a form via an external @@ -155,33 +223,11 @@ @return object name @rtype str """ - interpreter = self.project.getDebugProperty("INTERPRETER") objectName = "" - loadUi = os.path.join(os.path.dirname(__file__), "UicLoadUi.py") - args = [ - loadUi, - "object_name", - self.formFile, - self.project.getProjectPath(), - ] - - proc = QProcess() - proc.start(interpreter, args) - finished = proc.waitForFinished(30000) - if finished: - text = proc.readAllStandardOutput() - if proc.exitCode() == 0: - objectName = str(text, "utf-8", "replace").strip() - else: - errorText = str(text, "utf-8", "replace") - E5MessageBox.critical( - self, - self.tr("uic error"), - self.tr( - """<p>There was an error loading the form <b>{0}</b>""" - """.</p><p>{1}</p>""").format( - self.formFile, errorText)) + output, ok = self.__runUicLoadUi("object_name") + if ok and output: + objectName = output return objectName @@ -192,7 +238,7 @@ @return object name @rtype str """ - if self.project.getDebugProperty("INTERPRETER"): + if self.project.getDebugProperty("VIRTUALENV"): return self.__objectNameExternal() else: try: @@ -217,33 +263,11 @@ @return class name @rtype str """ - interpreter = self.project.getDebugProperty("INTERPRETER") className = "" - loadUi = os.path.join(os.path.dirname(__file__), "UicLoadUi.py") - args = [ - loadUi, - "class_name", - self.formFile, - self.project.getProjectPath(), - ] - - proc = QProcess() - proc.start(interpreter, args) - finished = proc.waitForFinished(30000) - if finished: - text = proc.readAllStandardOutput() - if proc.exitCode() == 0: - className = str(text, "utf-8", "replace").strip() - else: - errorText = str(text, "utf-8", "replace") - E5MessageBox.critical( - self, - self.tr("uic error"), - self.tr( - """<p>There was an error loading the form <b>{0}</b>""" - """.</p><p>{1}</p>""").format( - self.formFile, errorText)) + output, ok = self.__runUicLoadUi("class_name") + if ok and output: + className = output return className @@ -254,8 +278,8 @@ @return class name @rtype str """ - if self.project.getDebugProperty("INTERPRETER"): - return self.__objectNameExternal() + if self.project.getDebugProperty("VIRTUALENV"): + return self.__classNameExternal() else: try: dlg = uic.loadUi( @@ -327,36 +351,9 @@ Private slot to update the slots tree display getting the data via an external interpreter. """ - interpreter = self.project.getDebugProperty("INTERPRETER") - objectsList = [] - - loadUi = os.path.join(os.path.dirname(__file__), "UicLoadUi.py") - args = [ - loadUi, - "signatures", - self.formFile, - self.project.getProjectPath(), - ] - - proc = QProcess() - proc.start(interpreter, args) - finished = proc.waitForFinished(30000) - if not finished: - return - - text = proc.readAllStandardOutput() - if proc.exitCode() != 0: - errorText = str(text, "utf-8", "replace") - E5MessageBox.critical( - self, - self.tr("uic error"), - self.tr( - """<p>There was an error loading the form <b>{0}</b>""" - """.</p><p>{1}</p>""").format( - self.formFile, errorText)) - else: - objectsListStr = str(text, "utf-8", "replace").strip() - objectsList = json.loads(objectsListStr) + output, ok = self.__runUicLoadUi("signatures") + if ok and output: + objectsList = json.loads(output.strip()) signatureList = self.__signatures() @@ -406,7 +403,7 @@ """ self.filterEdit.clear() - if self.project.getDebugProperty("INTERPRETER"): + if self.project.getDebugProperty("VIRTUALENV"): self.__updateSlotsModelExternal() else: try:
--- a/i18n/eric6_cs.ts Fri Nov 16 20:00:03 2018 +0100 +++ b/i18n/eric6_cs.ts Sat Nov 17 12:45:58 2018 +0100 @@ -5528,12 +5528,12 @@ <translation>&Filtr pro:</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source>Code Generation</source> <translation>Generování kódu</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source>uic error</source> <translation>uic chyba</translation> </message> @@ -5548,25 +5548,30 @@ <translation>Soubor <b>{0}</b> existuje ale neobsahuje žádné třídy.</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation><p>Byla nalezena chyba načtená z <b>{0}</b>.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="620"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Template soubor <b>{0}</b> nelze otevřít.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="656"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Nelze ovevřít source soubor "{0}".</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Nelze zapsat do source souboru "{0}".</p><p>Důvod: {1}</p></translation> </message> + <message> + <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Crypto</name> @@ -6887,27 +6892,27 @@ <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source>Start Debugger</source> <translation type="unfinished">Spustit debuger</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/> - <source>Parent Process</source> - <translation type="unfinished">Rodičovský proces</translation> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/> - <source>Child process</source> - <translation type="unfinished">Dětský proces</translation> + <source>Parent Process</source> + <translation type="unfinished">Rodičovský proces</translation> </message> <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <source>Child process</source> + <translation type="unfinished">Dětský proces</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Client forking</source> <translation type="unfinished">Větvení klienta</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Select the fork branch to follow.</source> <translation type="unfinished">Pokračovat ve fork větvi.</translation> </message> @@ -6917,22 +6922,22 @@ <translation type="obsolete"><p>Python2 interpreter není nakonfigurován.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source><p>The debugger backend could not be started.</p></source> <translation type="unfinished"><p>Debugovací backend nelze spustit.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source>Debug Protocol Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/> <source><p>No suitable {0} environment configured.</p></source> <translation type="unfinished"></translation> </message> @@ -42872,7 +42877,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/> <source>Press to connect to the selected network</source> <translation type="unfinished"></translation> </message> @@ -42902,57 +42907,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source>Save Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Soubor <b>{0}</b> již existuje.</p><p>Má se přepsat?</p></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/> <source>Copy</source> <translation type="unfinished">Kopírovat</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/> - <source>Cut all</source> - <translation type="unfinished">Vyjmout vše</translation> - </message> - <message> <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/> + <source>Cut all</source> + <translation type="unfinished">Vyjmout vše</translation> + </message> + <message> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/> <source>Copy all</source> <translation type="unfinished">Kopírovat vše</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/> <source>Clear</source> <translation type="unfinished">Vyčistit</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/> <source>Save</source> <translation type="unfinished">Uložit</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/> <source>Press to disconnect from the network</source> <translation type="unfinished"></translation> </message> @@ -43402,253 +43407,253 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Info</source> <translation type="unfinished">Info</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="222"/> + <location filename="../Network/IRC/IrcWidget.py" line="230"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="231"/> + <location filename="../Network/IRC/IrcWidget.py" line="241"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="252"/> + <location filename="../Network/IRC/IrcWidget.py" line="264"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="519"/> + <location filename="../Network/IRC/IrcWidget.py" line="533"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="528"/> + <location filename="../Network/IRC/IrcWidget.py" line="542"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="678"/> + <location filename="../Network/IRC/IrcWidget.py" line="694"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="696"/> + <location filename="../Network/IRC/IrcWidget.py" line="712"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="703"/> - <source>You have left channel {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="714"/> - <source>You are now known as {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="719"/> + <source>You have left channel {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="730"/> + <source>You are now known as {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="735"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="729"/> + <location filename="../Network/IRC/IrcWidget.py" line="745"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="765"/> + <location filename="../Network/IRC/IrcWidget.py" line="781"/> <source>Error</source> <translation type="unfinished">Chyba</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="780"/> - <source>Welcome</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="782"/> - <source>Support</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="784"/> - <source>User</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="786"/> - <source>MOTD</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="788"/> - <source>Away</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="790"/> - <source>Info ({0})</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="794"/> - <source>Message of the day</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="796"/> - <source>End of message of the day</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="799"/> - <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="805"/> - <source>Current users on {0}: {1}, max. {2}</source> + <source>Welcome</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="798"/> + <source>Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="800"/> + <source>User</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="802"/> + <source>MOTD</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="804"/> + <source>Away</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="806"/> + <source>Info ({0})</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Network/IRC/IrcWidget.py" line="810"/> + <source>Message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="812"/> + <source>End of message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="815"/> + <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="821"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="826"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="814"/> + <location filename="../Network/IRC/IrcWidget.py" line="830"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="816"/> + <location filename="../Network/IRC/IrcWidget.py" line="832"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="877"/> + <location filename="../Network/IRC/IrcWidget.py" line="894"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="908"/> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="885"/> - <source>The host was not found. Please check the host name and port settings.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="891"/> - <source>The connection was refused by the peer. Please check the host name and port settings.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="902"/> + <source>The host was not found. Please check the host name and port settings.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="908"/> + <source>The connection was refused by the peer. Please check the host name and port settings.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="919"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1034"/> + <location filename="../Network/IRC/IrcWidget.py" line="1051"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>Critical</source> <translation type="unfinished">Kritický</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1049"/> + <location filename="../Network/IRC/IrcWidget.py" line="1074"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> + <source>CTCP</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="1013"/> + <source>Received Version request from {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Network/IRC/IrcWidget.py" line="1019"/> - <source>CTCP</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="996"/> - <source>Received Version request from {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="1002"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1010"/> + <location filename="../Network/IRC/IrcWidget.py" line="1027"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1019"/> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="689"/> + <location filename="../Network/IRC/IrcWidget.py" line="705"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="693"/> + <location filename="../Network/IRC/IrcWidget.py" line="709"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> @@ -43663,47 +43668,47 @@ <translation type="unfinished">Síť</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="897"/> + <location filename="../Network/IRC/IrcWidget.py" line="914"/> <source>The SSL handshake failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="908"/> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> <source>A network error occurred.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="921"/> + <location filename="../Network/IRC/IrcWidget.py" line="938"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="257"/> + <location filename="../Network/IRC/IrcWidget.py" line="269"/> <source>Disconnecting from network {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="262"/> + <location filename="../Network/IRC/IrcWidget.py" line="274"/> <source>Disconnecting from server.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="645"/> + <location filename="../Network/IRC/IrcWidget.py" line="661"/> <source>Received CTCP-PING response from {0} with latency of {1} ms.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="651"/> + <location filename="../Network/IRC/IrcWidget.py" line="667"/> <source>Received unknown CTCP-{0} response from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="725"/> + <location filename="../Network/IRC/IrcWidget.py" line="741"/> <source>Received PONG from {0}</source> <translation type="unfinished"></translation> </message> @@ -55012,12 +55017,12 @@ <translation>Opravdu chcete odebrat tyto soubory s překlady z projektu?</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>Write temporary project file</source> <translation>Zapsat dočasný soubor projektu</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>No translation files (*.ts) selected.</source> <translation>Nebyly vybrány žádné soubory s překlady (*.ts).</translation> </message> @@ -55032,7 +55037,7 @@ <translation>Generování souboru s překladem (*.ts) bylo úspěšné.</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source>Process Generation Error</source> <translation>Chyba v procesu generování</translation> </message> @@ -55077,7 +55082,7 @@ <translation>Nelze spustit {0}.<br>Ověřte, že je umístěn v požadované cestě.</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit zveřejnění.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> @@ -76675,7 +76680,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="5945"/> + <location filename="../UI/UserInterface.py" line="5958"/> <source>Export Keyboard Shortcuts</source> <translation>Exportovat klávesové zkratky</translation> </message> @@ -76695,7 +76700,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="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Import Keyboard Shortcuts</source> <translation>Import klávesových zkratek</translation> </message> @@ -76825,7 +76830,7 @@ <translation>Nastavení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <source>Help</source> <translation>Nápověda</translation> </message> @@ -76840,7 +76845,7 @@ <translation><h3>Čísla verzí</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6932"/> + <location filename="../UI/UserInterface.py" line="6945"/> <source></table></source> <translation></table></translation> </message> @@ -76870,62 +76875,62 @@ <translation>V aktuálním projektu není definován hlavní skript. Zrušeno</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <source>Problem</source> <translation>Problém</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <source>Process Generation Error</source> <translation>Chyba v procesu generování</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <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="4823"/> + <location filename="../UI/UserInterface.py" line="4829"/> <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="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <source>Documentation Missing</source> <translation>Dokumentace chybí</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <source>Documentation</source> <translation>Dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5398"/> + <location filename="../UI/UserInterface.py" line="5404"/> <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="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <source>Save tasks</source> <translation>Uložit úlohy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <source>Read tasks</source> <translation>Načíst úlohy</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <source>Error during updates check</source> <translation>Chyba během zjišťování aktualizací</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6874"/> + <location filename="../UI/UserInterface.py" line="6887"/> <source>Update available</source> <translation>Byla nalezena aktualizace</translation> </message> @@ -76940,17 +76945,17 @@ <translation>Zobrazit externí nás&troje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <source>Could not perform updates check.</source> <translation>Kontrolu updatů nelze provést.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>&Cancel</source> <translation>&Zrušit</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <source>First time usage</source> <translation>Spuštěno poprvé</translation> </message> @@ -77045,7 +77050,7 @@ <translation>Zobrazit dostupné verze ke stažení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6918"/> + <location filename="../UI/UserInterface.py" line="6931"/> <source><h3>Available versions</h3><table></source> <translation><h3>Dostupné verze</h3><table></translation> </message> @@ -77125,7 +77130,7 @@ <translation>Obnovit manažer nástrojových lišt...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <source>External Tools</source> <translation>Externí nástroje</translation> </message> @@ -77140,12 +77145,12 @@ <translation>Prohlížeč &multiprojektu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6264"/> + <location filename="../UI/UserInterface.py" line="6277"/> <source>Save session</source> <translation>Uložit relaci</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <source>Read session</source> <translation>Načíst relaci</translation> </message> @@ -77375,7 +77380,7 @@ <translation>Editor &ikon...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <source>Qt 3 support</source> <translation>Qt 3 podpora</translation> </message> @@ -77415,106 +77420,106 @@ <translation>Externí nástroje/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <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="4643"/> + <location filename="../UI/UserInterface.py" line="4645"/> <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="4710"/> + <location filename="../UI/UserInterface.py" line="4714"/> <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="4761"/> + <location filename="../UI/UserInterface.py" line="4767"/> <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="4803"/> + <location filename="../UI/UserInterface.py" line="4809"/> <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="4871"/> + <location filename="../UI/UserInterface.py" line="4877"/> <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="4926"/> + <location filename="../UI/UserInterface.py" line="4932"/> <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="4947"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5040"/> + <location filename="../UI/UserInterface.py" line="5046"/> <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="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <source>No toolgroup entry '{0}' found.</source> <translation>Skupina nástrojů '{0}' nenalezena. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5088"/> + <location filename="../UI/UserInterface.py" line="5094"/> <source>Starting process '{0} {1}'. </source> <translation>Spouštím proces '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <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="5180"/> + <location filename="../UI/UserInterface.py" line="5186"/> <source>Process '{0}' has exited. </source> <translation>Proces '{0}' byl ukončen. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <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="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <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="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <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="6201"/> + <location filename="../UI/UserInterface.py" line="6214"/> <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="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <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="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <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="6716"/> + <location filename="../UI/UserInterface.py" line="6729"/> <source>Trying host {0}</source> <translation>Zkouším host {0}</translation> </message> @@ -77549,7 +77554,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> @@ -77589,27 +77594,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6773"/> + <location filename="../UI/UserInterface.py" line="6786"/> <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="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <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> @@ -77695,12 +77700,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5017"/> + <location filename="../UI/UserInterface.py" line="5023"/> <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="6988"/> + <location filename="../UI/UserInterface.py" line="7001"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -78075,7 +78080,7 @@ <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5464"/> + <location filename="../UI/UserInterface.py" line="5470"/> <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> @@ -78085,7 +78090,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -78105,7 +78110,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6711"/> + <location filename="../UI/UserInterface.py" line="6724"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -78175,27 +78180,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="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <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="6874"/> - <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="6887"/> + <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="6900"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric5 je aktuální {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6887"/> + <location filename="../UI/UserInterface.py" line="6900"/> <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="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <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> @@ -78215,7 +78220,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6727"/> + <location filename="../UI/UserInterface.py" line="6740"/> <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> @@ -78260,7 +78265,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>Load session</source> <translation type="unfinished">Načíst relaci</translation> </message> @@ -78275,17 +78280,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -78300,17 +78305,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <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="6852"/> + <location filename="../UI/UserInterface.py" line="6865"/> <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> @@ -78365,7 +78370,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_de.ts Fri Nov 16 20:00:03 2018 +0100 +++ b/i18n/eric6_de.ts Sat Nov 17 12:45:58 2018 +0100 @@ -5405,32 +5405,32 @@ <translation>&Filtere mit:</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source>Code Generation</source> <translation>Codeerzeugung</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="620"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="618"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Die Codevorlagendatei „{0}“ konnte nicht geöffnet werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="656"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="654"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Die Quelltextdatei „{0}“ konnte nicht geöffnet werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="752"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Die Quelltextdatei „{0}“ konnte nicht geschrieben werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source>uic error</source> <translation>uic-Fehler</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="540"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation><p>Es gab einen Fehler beim Laden des Formulars <b>{0}</b>.</p><p>{1}</p></translation> </message> @@ -5444,6 +5444,11 @@ <source>The file <b>{0}</b> exists but does not contain any classes.</source> <translation>Die Datei <b>{0}</b> existiert, enthält jedoch keine Klassen.</translation> </message> + <message> + <location filename="../Project/CreateDialogCodeDialog.py" line="208"/> + <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> + <translation><p>Der Projekt spezifische Python Interpreter <b>{0}</b> konnte nicht gestarted werden oder endete nicht innerhalb 30 Sekunden.</p></translation> + </message> </context> <context> <name>Crypto</name> @@ -6660,47 +6665,47 @@ <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source>Start Debugger</source> <translation>Debugger starten</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source><p>The debugger backend could not be started.</p></source> <translation><p>Der Debugger konnte nicht gestartet werden.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/> - <source>Parent Process</source> - <translation>Vaterprozess</translation> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/> - <source>Child process</source> - <translation>Kindprozess</translation> + <source>Parent Process</source> + <translation>Vaterprozess</translation> </message> <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <source>Child process</source> + <translation>Kindprozess</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Client forking</source> <translation>Client forkt</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Select the fork branch to follow.</source> <translation>Wähle den zu folgenden Forkpfad.</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source>Debug Protocol Error</source> <translation>Fehler im Debugprotokoll</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> <translation><p>Die vom Debugger empfangene Antwort konnte nicht dekodiert werden. Bitte berichten sie diesen Fehler zusammen mit den empfangenen Daten an die eric Bugs Emailadresse.</p><p>Fehler: {0}</p><p>Daten:<br/>{0}</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/> <source><p>No suitable {0} environment configured.</p></source> <translation><p>Keine geeignete {0} Umgebung konfiguriert.</p></translation> </message> @@ -41677,7 +41682,7 @@ <translation>Wähle ein zu verbindendes Netzwerk aus</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/> <source>Press to connect to the selected network</source> <translation>Drücken, um zum ausgewählten Netzwerk zu verbinden</translation> </message> @@ -41707,57 +41712,57 @@ <translation>Drücken, um den Kanal zu betreten</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source>Save Messages</source> <translation>Nachrichten speichern</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation>HTML-Dateien (*.{0});;Textdateien (*.txt);;Alle Dateien (*)</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source>Error saving Messages</source> <translation>Fehler beim Speichern der Nachrichten</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation><p>Der Nachrichteninhalt konnte nicht nach <b>{0}</b> gespeichert werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/> - <source>Cut all</source> - <translation>Alles ausschneiden</translation> - </message> - <message> <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/> + <source>Cut all</source> + <translation>Alles ausschneiden</translation> + </message> + <message> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/> <source>Copy all</source> <translation>Alles kopieren</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/> <source>Press to disconnect from the network</source> <translation>Drücken, um die Verbindung zum Netzwerk zu beenden</translation> </message> @@ -42207,253 +42212,253 @@ <translation>Drücken, um den aktuellen Kanal zu verlassen</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source>Disconnect from Server</source> <translation>Verbindung zum Server beenden</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation><p>Soll die Verbindung zu <b>{0}</b> wirklich unterbrochen werden?</p><p>Alle Kanäle werden geschlossen.</p></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>SSL Connection</source> <translation>SSL Verbindung</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation>Eine verschlüsselte Verbindung zum IRC-Netzwerk wurde angefragt, SSL steht jedoch nicht zur Verfügung. Bitte ändern Sie die Serverkonfiguration.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Info</source> <translation>Info</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="222"/> + <location filename="../Network/IRC/IrcWidget.py" line="230"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation>Suche nach Server {0} (Port {1}) über eine SSL verschlüsselte Verbindung...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="231"/> + <location filename="../Network/IRC/IrcWidget.py" line="241"/> <source>Looking for server {0} (port {1})...</source> <translation>Suche nach Server {0} (Port {1})...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="252"/> + <location filename="../Network/IRC/IrcWidget.py" line="264"/> <source>Disconnecting from server {0}...</source> <translation>Verbindung zum Server {0} wird unterbrochen...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="519"/> + <location filename="../Network/IRC/IrcWidget.py" line="533"/> <source>Server found,connecting...</source> <translation>Server gefunden, Verbindung wird hergesteltl...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="528"/> + <location filename="../Network/IRC/IrcWidget.py" line="542"/> <source>Connected,logging in...</source> <translation>Verbunden, Anmeldung läuft...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Server disconnected.</source> <translation>Serververbindung unterbrochen.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Message Error</source> <translation>Nachrichtenfehler</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Unknown message received from server:<br/>{0}</source> <translation>Unbekannte Nachricht vom Server empfangen:<br/>{0}</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="678"/> + <location filename="../Network/IRC/IrcWidget.py" line="694"/> <source>Notice</source> <translation>Notiz</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="696"/> + <location filename="../Network/IRC/IrcWidget.py" line="712"/> <source>Mode</source> <translation>Modus</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="703"/> - <source>You have left channel {0}.</source> - <translation>Sie haben den Kanal {0} verlassen.</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="714"/> - <source>You are now known as {0}.</source> - <translation>Sie sind jetzt als {0} bekannt.</translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="719"/> + <source>You have left channel {0}.</source> + <translation>Sie haben den Kanal {0} verlassen.</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="730"/> + <source>You are now known as {0}.</source> + <translation>Sie sind jetzt als {0} bekannt.</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="735"/> <source>User {0} is now known as {1}.</source> <translation>Nutzer {0} ist nun als {1} bekannt.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="729"/> + <location filename="../Network/IRC/IrcWidget.py" line="745"/> <source>Server Error</source> <translation>Server Fehler</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="765"/> + <location filename="../Network/IRC/IrcWidget.py" line="781"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="780"/> - <source>Welcome</source> - <translation>Willkommen</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="782"/> - <source>Support</source> - <translation>Support</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="784"/> - <source>User</source> - <translation>Nutzer</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="786"/> - <source>MOTD</source> - <translation>MOTD</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="788"/> - <source>Away</source> - <translation>Abwesend</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="790"/> - <source>Info ({0})</source> - <translation>Info ({0})</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="794"/> - <source>Message of the day</source> - <translation>Nachricht des Tages</translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="796"/> - <source>End of message of the day</source> - <translation>Ende der Nachricht des Tages</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="799"/> - <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> - <translation>Server {0} (Version {1}), Benutzermodi: {2}, Kanalmodi: {3}</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="805"/> - <source>Current users on {0}: {1}, max. {2}</source> - <translation>Anzahl der Benutzer auf {0}: {1}, max. {2}</translation> + <source>Welcome</source> + <translation>Willkommen</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="798"/> + <source>Support</source> + <translation>Support</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="800"/> + <source>User</source> + <translation>Nutzer</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="802"/> + <source>MOTD</source> + <translation>MOTD</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="804"/> + <source>Away</source> + <translation>Abwesend</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="806"/> + <source>Info ({0})</source> + <translation>Info ({0})</translation> </message> <message> <location filename="../Network/IRC/IrcWidget.py" line="810"/> + <source>Message of the day</source> + <translation>Nachricht des Tages</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="812"/> + <source>End of message of the day</source> + <translation>Ende der Nachricht des Tages</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="815"/> + <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> + <translation>Server {0} (Version {1}), Benutzermodi: {2}, Kanalmodi: {3}</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="821"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation>Anzahl der Benutzer auf {0}: {1}, max. {2}</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="826"/> <source>Current users on the network: {0}, max. {1}</source> <translation>Anzahl der Benutzer im Netzwerk: {0}, max. {1}</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="814"/> + <location filename="../Network/IRC/IrcWidget.py" line="830"/> <source>You are no longer marked as being away.</source> <translation>Sie sind nicht länger als „abwesend“ gekennzeichnet.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="816"/> + <location filename="../Network/IRC/IrcWidget.py" line="832"/> <source>You have been marked as being away.</source> <translation>Sie sind als „abwesend“ gekennzeichnet.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>SSL Error</source> <translation>SSL Fehler</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="877"/> + <location filename="../Network/IRC/IrcWidget.py" line="894"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation>Die Verbindung zum Server {0} (Port {1}) wurde während des Wartens auf eine Benutzerantwort auf einen SSL Fehler verloren.</translation> </message> <message> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> + <source>Socket Error</source> + <translation>Socker Fehler</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="902"/> + <source>The host was not found. Please check the host name and port settings.</source> + <translation>Der Server wurde nicht gefunden. Bitte prüfen Sie den Servernamen und die Porteinstellungen.</translation> + </message> + <message> <location filename="../Network/IRC/IrcWidget.py" line="908"/> - <source>Socket Error</source> - <translation>Socker Fehler</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="885"/> - <source>The host was not found. Please check the host name and port settings.</source> - <translation>Der Server wurde nicht gefunden. Bitte prüfen Sie den Servernamen und die Porteinstellungen.</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="891"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation>Die Verbindung wurde von der Gegenseite abgelehnt. Bitte prüfen Sie den Servernamen und die Porteinstellungen.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="902"/> + <location filename="../Network/IRC/IrcWidget.py" line="919"/> <source>The following network error occurred:<br/>{0}</source> <translation>Der folgende Netzwerkfehler trat auf:<br/>{0}</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1034"/> + <location filename="../Network/IRC/IrcWidget.py" line="1051"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation>{0} ({1})</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>Critical</source> <translation>Kritischer Fehler</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1049"/> + <location filename="../Network/IRC/IrcWidget.py" line="1074"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation>Es ist kein für den Server <b>{0}</b> akzeptabler Spitzname konfiguriert. Verbindungsabbruch...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>The given nickname is already in use.</source> <translation>Der übergebene Spitzname wird bereits verwendet.</translation> </message> <message> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> + <source>CTCP</source> + <translation>CTCP</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="1013"/> + <source>Received Version request from {0}.</source> + <translation>Versionsanfrage von {0} empfangen.</translation> + </message> + <message> <location filename="../Network/IRC/IrcWidget.py" line="1019"/> - <source>CTCP</source> - <translation>CTCP</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="996"/> - <source>Received Version request from {0}.</source> - <translation>Versionsanfrage von {0} empfangen.</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="1002"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation>CTCP-PING-Anfrage von {0} empfangen, Antwort wird gesendet.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1010"/> + <location filename="../Network/IRC/IrcWidget.py" line="1027"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation>CTCP-CLIENTINFO-Anfrage von {0} empfangen, Antwort wird gesendet.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1019"/> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation>Unbekannte CTCP-{0}-Anfrage von {1} empfangen.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="689"/> + <location filename="../Network/IRC/IrcWidget.py" line="705"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation>Sie haben Ihre persönlichen Modi auf <b>[{0}]</b> gesetzt.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="693"/> + <location filename="../Network/IRC/IrcWidget.py" line="709"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation>{0} hat Ihre persönlichen Modi auf <b>[{0}]</b> geändert.</translation> </message> @@ -42468,47 +42473,47 @@ <translation>Netzwerk</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="897"/> + <location filename="../Network/IRC/IrcWidget.py" line="914"/> <source>The SSL handshake failed.</source> <translation>Der SSL Handshake schlug fehl.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="908"/> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> <source>A network error occurred.</source> <translation>Ein Netzwerkfehler trat auf.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="921"/> + <location filename="../Network/IRC/IrcWidget.py" line="938"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source> <translation>Es konnte keine SSL-verschlüsselte Verbindung zum Server {0} (Port {1}) aufgebaut werden. Entweder unterstützt der Server kein SSL (haben Sie den richtigen Port verwendet?) oder Sie haben das Zertifikat abgelehnt.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source> <translation>Das SSL-Zertifikat für den Server {0} (Port {1}) hat die Authentizitätsprüfung nicht bestanden. Die SSL-Fehler wurden von Ihnen akzeptiert.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="257"/> + <location filename="../Network/IRC/IrcWidget.py" line="269"/> <source>Disconnecting from network {0}...</source> <translation>Verbindung zum Netzwerk {0} wird unterbrochen...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="262"/> + <location filename="../Network/IRC/IrcWidget.py" line="274"/> <source>Disconnecting from server.</source> <translation>Verbindung zum Server wird unterbrochen.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="645"/> + <location filename="../Network/IRC/IrcWidget.py" line="661"/> <source>Received CTCP-PING response from {0} with latency of {1} ms.</source> <translation>CTCP-PING-Antwort von {0} mit einer Latenz von {1} ms empfangen.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="651"/> + <location filename="../Network/IRC/IrcWidget.py" line="667"/> <source>Received unknown CTCP-{0} response from {1}.</source> <translation>Unbekannte CTCP-{0}-Antwort von {1} empfangen.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="725"/> + <location filename="../Network/IRC/IrcWidget.py" line="741"/> <source>Received PONG from {0}</source> <translation>PONG von {0} empfangen</translation> </message> @@ -53659,12 +53664,12 @@ <translation>Mit Qt Linguist öffnen</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>Write temporary project file</source> <translation>Temporäre Projektdatei schreiben</translation> </message> @@ -53709,7 +53714,7 @@ <translation><p>Die temporäre Projektdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>lrelease konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> @@ -53734,7 +53739,7 @@ <translation>Wollen Sie wirklich diese Übersetzungsdateien aus dem Projekt löschen?</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>No translation files (*.ts) selected.</source> <translation>Keine Überstzungsdateien (*.ts) ausgewählt.</translation> </message> @@ -74667,7 +74672,7 @@ <translation>Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <source>Help</source> <translation>Hilfe</translation> </message> @@ -74677,7 +74682,7 @@ <translation>&Werkzeugleisten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <source>Problem</source> <translation>Problem</translation> </message> @@ -74697,7 +74702,7 @@ <translation>&Was ist das?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> @@ -74787,7 +74792,7 @@ <translation><b>Fehler berichten...</b><p>Öffnet einen Dialog zum Senden eines Fehlerberichtes.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5958"/> <source>Export Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle exportieren</translation> </message> @@ -74807,7 +74812,7 @@ <translation><b>Tastaturkurzbefehle exportieren</b><p>Exportiert die Tastaturkurzbefehle der Applikation.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Import Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle importieren</translation> </message> @@ -74967,7 +74972,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="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <source>Drop Error</source> <translation>Drop-Fehler</translation> </message> @@ -75037,32 +75042,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="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <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="4643"/> + <location filename="../UI/UserInterface.py" line="4645"/> <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="4710"/> + <location filename="../UI/UserInterface.py" line="4714"/> <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="4761"/> + <location filename="../UI/UserInterface.py" line="4767"/> <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="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <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="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> @@ -75087,7 +75092,7 @@ <translation><b>UI-Vorschau</b><p>Starte die UI-Vorschau.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4871"/> + <location filename="../UI/UserInterface.py" line="4877"/> <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> @@ -75112,7 +75117,7 @@ <translation><b>Übersetzungsvorschau</b><p>Dies startet das Programm zur Vorschau von Übersetzungen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4926"/> + <location filename="../UI/UserInterface.py" line="4932"/> <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> @@ -75152,42 +75157,42 @@ <translation>Aufgabenanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <source>Save tasks</source> <translation>Aufgaben speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <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="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <source>Read tasks</source> <translation>Aufgaben lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <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="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <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="4803"/> + <location filename="../UI/UserInterface.py" line="4809"/> <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="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <source>Documentation Missing</source> <translation>Dokumentation fehlt</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <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> @@ -75287,7 +75292,7 @@ <translation>Öffne die Eric-API-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4829"/> <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> @@ -75368,36 +75373,36 @@ <translation>&Eingebaute Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5088"/> + <location filename="../UI/UserInterface.py" line="5094"/> <source>Starting process '{0} {1}'. </source> <translation>Starte Prozess „{0} {1}“. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5180"/> + <location filename="../UI/UserInterface.py" line="5186"/> <source>Process '{0}' has exited. </source> <translation>Prozess „{0}“ ist beendet. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <source>Documentation</source> <translation>Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5398"/> + <location filename="../UI/UserInterface.py" line="5404"/> <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="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <source>Error during updates check</source> <translation>Fehler während der Aktualisierungsprüfung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6874"/> + <location filename="../UI/UserInterface.py" line="6887"/> <source>Update available</source> <translation>Aktualisierung verfügbar</translation> </message> @@ -75407,7 +75412,7 @@ <translation><h3>Versionsnummern</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6932"/> + <location filename="../UI/UserInterface.py" line="6945"/> <source></table></source> <translation></table></translation> </message> @@ -75432,22 +75437,22 @@ <translation>Zeige externe &Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <source>Could not perform updates check.</source> <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>&Cancel</source> <translation>&Abbrechen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6716"/> + <location filename="../UI/UserInterface.py" line="6729"/> <source>Trying host {0}</source> <translation>Prüfe Host {0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <source>First time usage</source> <translation>Erstmalige Nutzung</translation> </message> @@ -75542,7 +75547,7 @@ <translation>Zeige die verfügbaren eric-Versionen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6918"/> + <location filename="../UI/UserInterface.py" line="6931"/> <source><h3>Available versions</h3><table></source> <translation><h3>Verfügbare Versionen</h3><table></translation> </message> @@ -75627,17 +75632,17 @@ <translation>Externe Werkzeuge/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <source>External Tools</source> <translation>Externe Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5040"/> + <location filename="../UI/UserInterface.py" line="5046"/> <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="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <source>No toolgroup entry '{0}' found.</source> <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation> </message> @@ -75652,22 +75657,22 @@ <translation>&Mehrfachprojektanzeige</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6264"/> + <location filename="../UI/UserInterface.py" line="6277"/> <source>Save session</source> <translation>Sitzung speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6201"/> + <location filename="../UI/UserInterface.py" line="6214"/> <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="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <source>Read session</source> <translation>Sitzung lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <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> @@ -75887,7 +75892,7 @@ <translation><b>SQL-Browser</b><p>Erforsche eine SQL-Datenbank.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4947"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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> @@ -75902,7 +75907,7 @@ <translation>&Icon-Editor...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <source>Qt 3 support</source> <translation>Qt3-Unterstützung</translation> </message> @@ -75952,7 +75957,7 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Tastaturkurzbefehlsdatei (*.e4k)</translation> </message> @@ -75992,27 +75997,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="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <source>Error getting versions information</source> <translation>Fehler beim Herunterladen der Versionsinformationen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6773"/> + <location filename="../UI/UserInterface.py" line="6786"/> <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="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <source>Open Browser</source> <translation>Browser starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <source>Could not start a web browser</source> <translation>Der Systemwebbrowser konnte nicht gestartet werden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <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> @@ -76098,12 +76103,12 @@ <translation><b>Bildschirmfoto</b><p>Dies öffnet einen Dialog, um ein Bildschirmfoto aufzunehmen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5017"/> + <location filename="../UI/UserInterface.py" line="5023"/> <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="6988"/> + <location filename="../UI/UserInterface.py" line="7001"/> <source>Select Workspace Directory</source> <translation>Wähle Arbeitsverzeichnis</translation> </message> @@ -76478,7 +76483,7 @@ <translation>Öffne die PyQt5-Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5464"/> + <location filename="../UI/UserInterface.py" line="5470"/> <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> @@ -76488,7 +76493,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="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> @@ -76508,7 +76513,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="6711"/> + <location filename="../UI/UserInterface.py" line="6724"/> <source>Version Check</source> <translation>Versionsprüfung</translation> </message> @@ -76579,27 +76584,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="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <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="6874"/> - <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="6887"/> + <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="6900"/> <source>Eric6 is up to date</source> <translation>Eric6 ist aktuell</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6887"/> + <location filename="../UI/UserInterface.py" line="6900"/> <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="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <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> @@ -76619,7 +76624,7 @@ <translation>Keine Benutzerwerkzeuge konfiguriert</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6727"/> + <location filename="../UI/UserInterface.py" line="6740"/> <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> @@ -76664,7 +76669,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="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>Load session</source> <translation>Sitzung laden</translation> </message> @@ -76679,17 +76684,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="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>eric6 Session Files (*.e5s)</source> <translation>eric6 Sitzungsdateien (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <source>Crash Session found!</source> <translation>Absturzsitzung gefunden!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <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> @@ -76704,17 +76709,17 @@ <translation>Initialisiere Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Update Check</source> <translation>Aktualisierungsprüfung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <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="6852"/> + <location filename="../UI/UserInterface.py" line="6865"/> <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> @@ -76769,7 +76774,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="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <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>
--- a/i18n/eric6_empty.ts Fri Nov 16 20:00:03 2018 +0100 +++ b/i18n/eric6_empty.ts Sat Nov 17 12:45:58 2018 +0100 @@ -5364,35 +5364,40 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source>uic error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source>Code Generation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="620"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="656"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Crypto</name> @@ -6592,47 +6597,47 @@ <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source>Start Debugger</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source><p>The debugger backend could not be started.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/> - <source>Parent Process</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/> - <source>Child process</source> + <source>Parent Process</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <source>Child process</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Client forking</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Select the fork branch to follow.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source>Debug Protocol Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/> <source><p>No suitable {0} environment configured.</p></source> <translation type="unfinished"></translation> </message> @@ -41466,62 +41471,62 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/> <source>Press to disconnect from the network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/> <source>Press to connect to the selected network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source>Save Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/> <source>Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/> - <source>Cut all</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/> + <source>Cut all</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/> <source>Copy all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/> <source>Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/> <source>Save</source> <translation type="unfinished"></translation> </message> @@ -41981,298 +41986,298 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="222"/> + <location filename="../Network/IRC/IrcWidget.py" line="230"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="231"/> + <location filename="../Network/IRC/IrcWidget.py" line="241"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="252"/> + <location filename="../Network/IRC/IrcWidget.py" line="264"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="257"/> + <location filename="../Network/IRC/IrcWidget.py" line="269"/> <source>Disconnecting from network {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="262"/> + <location filename="../Network/IRC/IrcWidget.py" line="274"/> <source>Disconnecting from server.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="519"/> + <location filename="../Network/IRC/IrcWidget.py" line="533"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="528"/> + <location filename="../Network/IRC/IrcWidget.py" line="542"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="678"/> + <location filename="../Network/IRC/IrcWidget.py" line="694"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="689"/> + <location filename="../Network/IRC/IrcWidget.py" line="705"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="693"/> + <location filename="../Network/IRC/IrcWidget.py" line="709"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="696"/> + <location filename="../Network/IRC/IrcWidget.py" line="712"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="703"/> - <source>You have left channel {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="714"/> - <source>You are now known as {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="719"/> + <source>You have left channel {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="730"/> + <source>You are now known as {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="735"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="729"/> + <location filename="../Network/IRC/IrcWidget.py" line="745"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="765"/> + <location filename="../Network/IRC/IrcWidget.py" line="781"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="780"/> - <source>Welcome</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="782"/> - <source>Support</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="784"/> - <source>User</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="786"/> - <source>MOTD</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="788"/> - <source>Away</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="790"/> - <source>Info ({0})</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="794"/> - <source>Message of the day</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="796"/> - <source>End of message of the day</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="799"/> - <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="805"/> - <source>Current users on {0}: {1}, max. {2}</source> + <source>Welcome</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="798"/> + <source>Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="800"/> + <source>User</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="802"/> + <source>MOTD</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="804"/> + <source>Away</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="806"/> + <source>Info ({0})</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Network/IRC/IrcWidget.py" line="810"/> + <source>Message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="812"/> + <source>End of message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="815"/> + <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="821"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="826"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="814"/> + <location filename="../Network/IRC/IrcWidget.py" line="830"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="816"/> + <location filename="../Network/IRC/IrcWidget.py" line="832"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="877"/> + <location filename="../Network/IRC/IrcWidget.py" line="894"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> + <source>Socket Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="902"/> + <source>The host was not found. Please check the host name and port settings.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Network/IRC/IrcWidget.py" line="908"/> - <source>Socket Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="885"/> - <source>The host was not found. Please check the host name and port settings.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="891"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="897"/> + <location filename="../Network/IRC/IrcWidget.py" line="914"/> <source>The SSL handshake failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="902"/> + <location filename="../Network/IRC/IrcWidget.py" line="919"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="908"/> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> <source>A network error occurred.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="921"/> + <location filename="../Network/IRC/IrcWidget.py" line="938"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> + <source>CTCP</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="1013"/> + <source>Received Version request from {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Network/IRC/IrcWidget.py" line="1019"/> - <source>CTCP</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="996"/> - <source>Received Version request from {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="1002"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1010"/> + <location filename="../Network/IRC/IrcWidget.py" line="1027"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1019"/> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1034"/> + <location filename="../Network/IRC/IrcWidget.py" line="1051"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>Critical</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1049"/> + <location filename="../Network/IRC/IrcWidget.py" line="1074"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="645"/> + <location filename="../Network/IRC/IrcWidget.py" line="661"/> <source>Received CTCP-PING response from {0} with latency of {1} ms.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="651"/> + <location filename="../Network/IRC/IrcWidget.py" line="667"/> <source>Received unknown CTCP-{0} response from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="725"/> + <location filename="../Network/IRC/IrcWidget.py" line="741"/> <source>Received PONG from {0}</source> <translation type="unfinished"></translation> </message> @@ -53470,12 +53475,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>Write temporary project file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>No translation files (*.ts) selected.</source> <translation type="unfinished"></translation> </message> @@ -53505,7 +53510,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> @@ -53530,7 +53535,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> @@ -75217,7 +75222,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5958"/> <source>Export Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -75237,7 +75242,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Import Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -75617,7 +75622,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <source>Help</source> <translation type="unfinished"></translation> </message> @@ -75677,7 +75682,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6932"/> + <location filename="../UI/UserInterface.py" line="6945"/> <source></table></source> <translation type="unfinished"></translation> </message> @@ -75742,289 +75747,289 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <source>Problem</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <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="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4643"/> + <location filename="../UI/UserInterface.py" line="4645"/> <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="4710"/> + <location filename="../UI/UserInterface.py" line="4714"/> <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="4761"/> + <location filename="../UI/UserInterface.py" line="4767"/> <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="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <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="4803"/> + <location filename="../UI/UserInterface.py" line="4809"/> <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="4823"/> + <location filename="../UI/UserInterface.py" line="4829"/> <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="4871"/> + <location filename="../UI/UserInterface.py" line="4877"/> <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="4926"/> + <location filename="../UI/UserInterface.py" line="4932"/> <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="4947"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5017"/> + <location filename="../UI/UserInterface.py" line="5023"/> <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="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <source>External Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5040"/> + <location filename="../UI/UserInterface.py" line="5046"/> <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="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5088"/> + <location filename="../UI/UserInterface.py" line="5094"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <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="5180"/> + <location filename="../UI/UserInterface.py" line="5186"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <source>Documentation Missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <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="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <source>Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5398"/> + <location filename="../UI/UserInterface.py" line="5404"/> <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="5464"/> + <location filename="../UI/UserInterface.py" line="5470"/> <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="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <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="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <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="6264"/> + <location filename="../UI/UserInterface.py" line="6277"/> <source>Save session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6201"/> + <location filename="../UI/UserInterface.py" line="6214"/> <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="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <source>Read session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <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="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>&Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6711"/> + <location filename="../UI/UserInterface.py" line="6724"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6716"/> + <location filename="../UI/UserInterface.py" line="6729"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6727"/> + <location filename="../UI/UserInterface.py" line="6740"/> <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="6773"/> + <location filename="../UI/UserInterface.py" line="6786"/> <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="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <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="6874"/> - <source>Update available</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/UserInterface.py" line="6874"/> - <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="6887"/> - <source>Eric6 is up to date</source> + <source>Update available</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/UserInterface.py" line="6887"/> + <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="6900"/> + <source>Eric6 is up to date</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6900"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <source>Error during updates check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <source>Could not perform updates check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6918"/> + <location filename="../UI/UserInterface.py" line="6931"/> <source><h3>Available versions</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <source>First time usage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <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="6988"/> + <location filename="../UI/UserInterface.py" line="7001"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -76039,7 +76044,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>Load session</source> <translation type="unfinished"></translation> </message> @@ -76054,17 +76059,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -76079,17 +76084,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <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="6852"/> + <location filename="../UI/UserInterface.py" line="6865"/> <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> @@ -76144,7 +76149,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_en.ts Fri Nov 16 20:00:03 2018 +0100 +++ b/i18n/eric6_en.ts Sat Nov 17 12:45:58 2018 +0100 @@ -5371,35 +5371,40 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source>uic error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source>Code Generation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="620"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="656"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Crypto</name> @@ -6599,47 +6604,47 @@ <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source>Start Debugger</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source><p>The debugger backend could not be started.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/> - <source>Parent Process</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/> - <source>Child process</source> + <source>Parent Process</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <source>Child process</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Client forking</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Select the fork branch to follow.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source>Debug Protocol Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/> <source><p>No suitable {0} environment configured.</p></source> <translation type="unfinished"></translation> </message> @@ -41486,7 +41491,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/> <source>Press to connect to the selected network</source> <translation type="unfinished"></translation> </message> @@ -41516,57 +41521,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source>Save Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/> <source>Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/> - <source>Cut all</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/> + <source>Cut all</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/> <source>Copy all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/> <source>Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/> <source>Press to disconnect from the network</source> <translation type="unfinished"></translation> </message> @@ -42016,253 +42021,253 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="222"/> + <location filename="../Network/IRC/IrcWidget.py" line="230"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="231"/> + <location filename="../Network/IRC/IrcWidget.py" line="241"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="252"/> + <location filename="../Network/IRC/IrcWidget.py" line="264"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="519"/> + <location filename="../Network/IRC/IrcWidget.py" line="533"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="528"/> + <location filename="../Network/IRC/IrcWidget.py" line="542"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="678"/> + <location filename="../Network/IRC/IrcWidget.py" line="694"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="696"/> + <location filename="../Network/IRC/IrcWidget.py" line="712"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="703"/> - <source>You have left channel {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="714"/> - <source>You are now known as {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="719"/> + <source>You have left channel {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="730"/> + <source>You are now known as {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="735"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="729"/> + <location filename="../Network/IRC/IrcWidget.py" line="745"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="765"/> + <location filename="../Network/IRC/IrcWidget.py" line="781"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="780"/> - <source>Welcome</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="782"/> - <source>Support</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="784"/> - <source>User</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="786"/> - <source>MOTD</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="788"/> - <source>Away</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="790"/> - <source>Info ({0})</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="794"/> - <source>Message of the day</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="796"/> - <source>End of message of the day</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="799"/> - <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="805"/> - <source>Current users on {0}: {1}, max. {2}</source> + <source>Welcome</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="798"/> + <source>Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="800"/> + <source>User</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="802"/> + <source>MOTD</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="804"/> + <source>Away</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="806"/> + <source>Info ({0})</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Network/IRC/IrcWidget.py" line="810"/> + <source>Message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="812"/> + <source>End of message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="815"/> + <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="821"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="826"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="814"/> + <location filename="../Network/IRC/IrcWidget.py" line="830"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="816"/> + <location filename="../Network/IRC/IrcWidget.py" line="832"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="877"/> + <location filename="../Network/IRC/IrcWidget.py" line="894"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="908"/> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="885"/> - <source>The host was not found. Please check the host name and port settings.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="891"/> - <source>The connection was refused by the peer. Please check the host name and port settings.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="902"/> + <source>The host was not found. Please check the host name and port settings.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="908"/> + <source>The connection was refused by the peer. Please check the host name and port settings.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="919"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1034"/> + <location filename="../Network/IRC/IrcWidget.py" line="1051"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>Critical</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1049"/> + <location filename="../Network/IRC/IrcWidget.py" line="1074"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> + <source>CTCP</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="1013"/> + <source>Received Version request from {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Network/IRC/IrcWidget.py" line="1019"/> - <source>CTCP</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="996"/> - <source>Received Version request from {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="1002"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1010"/> + <location filename="../Network/IRC/IrcWidget.py" line="1027"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1019"/> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="689"/> + <location filename="../Network/IRC/IrcWidget.py" line="705"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="693"/> + <location filename="../Network/IRC/IrcWidget.py" line="709"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> @@ -42277,47 +42282,47 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="897"/> + <location filename="../Network/IRC/IrcWidget.py" line="914"/> <source>The SSL handshake failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="908"/> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> <source>A network error occurred.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="921"/> + <location filename="../Network/IRC/IrcWidget.py" line="938"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="257"/> + <location filename="../Network/IRC/IrcWidget.py" line="269"/> <source>Disconnecting from network {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="262"/> + <location filename="../Network/IRC/IrcWidget.py" line="274"/> <source>Disconnecting from server.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="645"/> + <location filename="../Network/IRC/IrcWidget.py" line="661"/> <source>Received CTCP-PING response from {0} with latency of {1} ms.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="651"/> + <location filename="../Network/IRC/IrcWidget.py" line="667"/> <source>Received unknown CTCP-{0} response from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="725"/> + <location filename="../Network/IRC/IrcWidget.py" line="741"/> <source>Received PONG from {0}</source> <translation type="unfinished"></translation> </message> @@ -53513,12 +53518,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>Write temporary project file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>No translation files (*.ts) selected.</source> <translation type="unfinished"></translation> </message> @@ -53538,7 +53543,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> @@ -53563,7 +53568,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> @@ -74801,7 +74806,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5958"/> <source>Export Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -74821,7 +74826,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Import Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> @@ -75066,7 +75071,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <source>Help</source> <translation type="unfinished"></translation> </message> @@ -75121,7 +75126,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6932"/> + <location filename="../UI/UserInterface.py" line="6945"/> <source></table></source> <translation type="unfinished"></translation> </message> @@ -75176,209 +75181,209 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <source>Problem</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <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="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4643"/> + <location filename="../UI/UserInterface.py" line="4645"/> <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="4710"/> + <location filename="../UI/UserInterface.py" line="4714"/> <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="4761"/> + <location filename="../UI/UserInterface.py" line="4767"/> <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="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <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="4803"/> + <location filename="../UI/UserInterface.py" line="4809"/> <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="4823"/> + <location filename="../UI/UserInterface.py" line="4829"/> <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="4871"/> + <location filename="../UI/UserInterface.py" line="4877"/> <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="4926"/> + <location filename="../UI/UserInterface.py" line="4932"/> <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="4947"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <source>External Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5040"/> + <location filename="../UI/UserInterface.py" line="5046"/> <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="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5088"/> + <location filename="../UI/UserInterface.py" line="5094"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <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="5180"/> + <location filename="../UI/UserInterface.py" line="5186"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <source>Documentation Missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <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="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <source>Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5398"/> + <location filename="../UI/UserInterface.py" line="5404"/> <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="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <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="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <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="6264"/> + <location filename="../UI/UserInterface.py" line="6277"/> <source>Save session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6201"/> + <location filename="../UI/UserInterface.py" line="6214"/> <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="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <source>Read session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <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="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>&Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6716"/> + <location filename="../UI/UserInterface.py" line="6729"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6874"/> + <location filename="../UI/UserInterface.py" line="6887"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <source>Error during updates check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <source>Could not perform updates check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6918"/> + <location filename="../UI/UserInterface.py" line="6931"/> <source><h3>Available versions</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <source>First time usage</source> <translation type="unfinished"></translation> </message> @@ -75418,27 +75423,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6773"/> + <location filename="../UI/UserInterface.py" line="6786"/> <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="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <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> @@ -75524,12 +75529,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5017"/> + <location filename="../UI/UserInterface.py" line="5023"/> <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="6988"/> + <location filename="../UI/UserInterface.py" line="7001"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -75904,7 +75909,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5464"/> + <location filename="../UI/UserInterface.py" line="5470"/> <source><p>The PyQt5 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> @@ -75914,7 +75919,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -75934,7 +75939,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6711"/> + <location filename="../UI/UserInterface.py" line="6724"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -76004,27 +76009,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6874"/> - <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="6887"/> + <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="6900"/> <source>Eric6 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6887"/> + <location filename="../UI/UserInterface.py" line="6900"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <source>eric6 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished"></translation> </message> @@ -76044,7 +76049,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6727"/> + <location filename="../UI/UserInterface.py" line="6740"/> <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> @@ -76089,7 +76094,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>Load session</source> <translation type="unfinished"></translation> </message> @@ -76104,17 +76109,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -76129,17 +76134,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <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="6852"/> + <location filename="../UI/UserInterface.py" line="6865"/> <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> @@ -76194,7 +76199,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_es.ts Fri Nov 16 20:00:03 2018 +0100 +++ b/i18n/eric6_es.ts Sat Nov 17 12:45:58 2018 +0100 @@ -5400,12 +5400,12 @@ <translation>Filtrar c&on:</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source>uic error</source> <translation>error de uic</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source>Code Generation</source> <translation>Generación de Código</translation> </message> @@ -5420,25 +5420,30 @@ <translation>El archivo <b>{0}</b> existe pero no contiene ninguna clase.</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation><p>Ha ocurrido un error al cargar el formulario <b>{0}</b>.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="620"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation><p>No se ha podido cargar el archivo con la plantilla de código "{0}".</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="656"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>No se ha podido abrir el archivo de codigo fuente "{0}".</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>No se ha podido escribir en el archivo de codigo fuente "{0}".</p><p>Razón: {1}</p></translation> </message> + <message> + <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Crypto</name> @@ -6656,47 +6661,47 @@ <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source>Start Debugger</source> <translation>Iniciar Depurador</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source><p>The debugger backend could not be started.</p></source> <translation><p>No ha sido posible lanzar el extremo del depurador.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/> - <source>Parent Process</source> - <translation>Proceso Padre</translation> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/> - <source>Child process</source> - <translation>Proceso hijo</translation> + <source>Parent Process</source> + <translation>Proceso Padre</translation> </message> <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <source>Child process</source> + <translation>Proceso hijo</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Client forking</source> <translation>Fork del cliente</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Select the fork branch to follow.</source> <translation>Seleccionar la rama de fork para continuar.</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source>Debug Protocol Error</source> <translation>Error de Protocolo de Depuración</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> <translation><p>La respuesta recibida desde el backend del depurador no se ha podido descodificar. Por favor, informar de este problema junto con los datos recibidos a la dirección de email para bugs de eric.</p><p>Error: {0}</p><p>Datos:<br/>{0}</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/> <source><p>No suitable {0} environment configured.</p></source> <translation><p>No hay configurado un entorno {0} adecuado.</p></translation> </message> @@ -41680,7 +41685,7 @@ <translation>Seleccionar una red para conectarse</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/> <source>Press to connect to the selected network</source> <translation>Pulsar para conectar a la red seleccionada</translation> </message> @@ -41710,57 +41715,57 @@ <translation>Pulsar para unirse al canal</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source>Save Messages</source> <translation>Guardar Mensajes</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation>Archivos HTML (*.{0});;Archivos de Texto (*.txt);;Todos los Archivos (*)</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>El archivo <b>{0}</b> ya existe. ¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source>Error saving Messages</source> <translation>Error al guardar Mensajes</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation><p>Los contenidos de mensajes no se han podido guardar en <b>{0}</b></p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/> <source>Copy</source> <translation>Copiar</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/> - <source>Cut all</source> - <translation>Cortar todo</translation> - </message> - <message> <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/> + <source>Cut all</source> + <translation>Cortar todo</translation> + </message> + <message> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/> <source>Copy all</source> <translation>Copiar todo</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/> <source>Clear</source> <translation>Limpiar</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/> <source>Press to disconnect from the network</source> <translation>Pulsar para desconectar de la red</translation> </message> @@ -42210,253 +42215,253 @@ <translation>Pulsar para abandonar el canal actual</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source>Disconnect from Server</source> <translation>Desconectar del Servidor</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation><p>¿Desea realmente desconectar de <b>{0}</b>?</p><p>Se cerrarán todos los canales.</p></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>SSL Connection</source> <translation>Conexión SSL</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation>Se ha solicitado una conexión encriptada pero SSL no está disponible. Por favor, cambie la configuración del servidor.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Info</source> <translation>Info</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="222"/> + <location filename="../Network/IRC/IrcWidget.py" line="230"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation>Buscando el servidor {0} (puerto {1}) utilizando una conexión encriptada a través de SSL...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="231"/> + <location filename="../Network/IRC/IrcWidget.py" line="241"/> <source>Looking for server {0} (port {1})...</source> <translation>Buscando servidor {0} (puerto {1})...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="252"/> + <location filename="../Network/IRC/IrcWidget.py" line="264"/> <source>Disconnecting from server {0}...</source> <translation>Desconectando del servidor {0}...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="519"/> + <location filename="../Network/IRC/IrcWidget.py" line="533"/> <source>Server found,connecting...</source> <translation>Servidor encontrado, conectando...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="528"/> + <location filename="../Network/IRC/IrcWidget.py" line="542"/> <source>Connected,logging in...</source> <translation>Conectado, validándose...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Server disconnected.</source> <translation>Servidor desconectado.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Message Error</source> <translation>Error de Mensaje</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Unknown message received from server:<br/>{0}</source> <translation>Mensaje desconocido recibido del servidor: </br>{0}</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="678"/> + <location filename="../Network/IRC/IrcWidget.py" line="694"/> <source>Notice</source> <translation>Aviso</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="696"/> + <location filename="../Network/IRC/IrcWidget.py" line="712"/> <source>Mode</source> <translation>Modo</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="703"/> - <source>You have left channel {0}.</source> - <translation>Ha dejado el canal {0}.</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="714"/> - <source>You are now known as {0}.</source> - <translation>Usted es conocido como {0}.</translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="719"/> + <source>You have left channel {0}.</source> + <translation>Ha dejado el canal {0}.</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="730"/> + <source>You are now known as {0}.</source> + <translation>Usted es conocido como {0}.</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="735"/> <source>User {0} is now known as {1}.</source> <translation>Usuario {0} es conocido ahora como {1}.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="729"/> + <location filename="../Network/IRC/IrcWidget.py" line="745"/> <source>Server Error</source> <translation>Error de Servidor</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="765"/> + <location filename="../Network/IRC/IrcWidget.py" line="781"/> <source>Error</source> <translation>Error</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="780"/> - <source>Welcome</source> - <translation>Bienvenido</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="782"/> - <source>Support</source> - <translation>Soporte</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="784"/> - <source>User</source> - <translation>Usuario</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="786"/> - <source>MOTD</source> - <translation>MOTD</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="788"/> - <source>Away</source> - <translation>Ausente</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="790"/> - <source>Info ({0})</source> - <translation>Info ({0})</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="794"/> - <source>Message of the day</source> - <translation>Mensaje del día</translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="796"/> - <source>End of message of the day</source> - <translation>Fin de mensaje del día</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="799"/> - <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> - <translation>Servidor {0} (Versión {1}), Modos de Usuario: {2}, Modos de Canal: {3}</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="805"/> - <source>Current users on {0}: {1}, max. {2}</source> - <translation>Usuarios actuales en {0}: {1}, máx. {2}</translation> + <source>Welcome</source> + <translation>Bienvenido</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="798"/> + <source>Support</source> + <translation>Soporte</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="800"/> + <source>User</source> + <translation>Usuario</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="802"/> + <source>MOTD</source> + <translation>MOTD</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="804"/> + <source>Away</source> + <translation>Ausente</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="806"/> + <source>Info ({0})</source> + <translation>Info ({0})</translation> </message> <message> <location filename="../Network/IRC/IrcWidget.py" line="810"/> + <source>Message of the day</source> + <translation>Mensaje del día</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="812"/> + <source>End of message of the day</source> + <translation>Fin de mensaje del día</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="815"/> + <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> + <translation>Servidor {0} (Versión {1}), Modos de Usuario: {2}, Modos de Canal: {3}</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="821"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation>Usuarios actuales en {0}: {1}, máx. {2}</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="826"/> <source>Current users on the network: {0}, max. {1}</source> <translation>Usuarios actuales en la red: {0}, máx. {1}</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="814"/> + <location filename="../Network/IRC/IrcWidget.py" line="830"/> <source>You are no longer marked as being away.</source> <translation>Usted ya no está marcado como ausente.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="816"/> + <location filename="../Network/IRC/IrcWidget.py" line="832"/> <source>You have been marked as being away.</source> <translation>Usted ha sido marcado como ausente.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>SSL Error</source> <translation>Error de SSL</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="877"/> + <location filename="../Network/IRC/IrcWidget.py" line="894"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation>Conexión al servidor {0} (puerto {1}) perdida mientras se esperaba respuesta de usuario a un error SSL.</translation> </message> <message> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> + <source>Socket Error</source> + <translation>Error de Socket</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="902"/> + <source>The host was not found. Please check the host name and port settings.</source> + <translation>El host no ha sido encontrado. Por favor, compruebe los ajustes de nombre de host y puerto.</translation> + </message> + <message> <location filename="../Network/IRC/IrcWidget.py" line="908"/> - <source>Socket Error</source> - <translation>Error de Socket</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="885"/> - <source>The host was not found. Please check the host name and port settings.</source> - <translation>El host no ha sido encontrado. Por favor, compruebe los ajustes de nombre de host y puerto.</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="891"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation>La conexión ha sido rechazada por el otro extremo. Por favor, compruebe los ajustes de nombre de host y puerto.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="902"/> + <location filename="../Network/IRC/IrcWidget.py" line="919"/> <source>The following network error occurred:<br/>{0}</source> <translation>Ha ocurrido el siguiente error de red: <br/>{0}</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1034"/> + <location filename="../Network/IRC/IrcWidget.py" line="1051"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation>{0} ({1})</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>Critical</source> <translation>Crítico</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1049"/> + <location filename="../Network/IRC/IrcWidget.py" line="1074"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation>No hay un sobrenombre que el servidor acepte configurado para <b>{0}</b>. Desconectando...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>The given nickname is already in use.</source> <translation>El sobrenombre proporcionado ya está en uso.</translation> </message> <message> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> + <source>CTCP</source> + <translation>CTCP</translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="1013"/> + <source>Received Version request from {0}.</source> + <translation>Se ha recibido una solicitud de Versión de {0}.</translation> + </message> + <message> <location filename="../Network/IRC/IrcWidget.py" line="1019"/> - <source>CTCP</source> - <translation>CTCP</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="996"/> - <source>Received Version request from {0}.</source> - <translation>Se ha recibido una solicitud de Versión de {0}.</translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="1002"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation>Recibida solicitud CTCP-PING desde {0}, enviando respuesta.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1010"/> + <location filename="../Network/IRC/IrcWidget.py" line="1027"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation>Recibida solicitud CTCP-CLIENTINFO desde {0}, enviando respuesta.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1019"/> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation>Recibida solicitud CTCP desconocida desde {1}.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="689"/> + <location filename="../Network/IRC/IrcWidget.py" line="705"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation>Usted ha establecido sus modos personales a <b>[{0}]</b>.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="693"/> + <location filename="../Network/IRC/IrcWidget.py" line="709"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation>{0} ha cambiado los modos personales de usted a <b>[{1}]</b>.</translation> </message> @@ -42471,47 +42476,47 @@ <translation>Red</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="897"/> + <location filename="../Network/IRC/IrcWidget.py" line="914"/> <source>The SSL handshake failed.</source> <translation>Ha fallado el SSL handshake.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="908"/> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> <source>A network error occurred.</source> <translation>Ha ocurrido un error de red.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="921"/> + <location filename="../Network/IRC/IrcWidget.py" line="938"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source> <translation>No se ha podido conectar a {0} (puerto {1}) utilizando una conexión encriptada sobre SSL. O bien el servidor no soporta SSL (¿se ha utilizado el puerto correcto?) o bien usted ha rechazado el certificado.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source> <translation>El certificado SSL para el servidor {0} (puerto {1}) ha fallado la comprobación de autenticidad. Los errores SSL han sido aceptados por usted.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="257"/> + <location filename="../Network/IRC/IrcWidget.py" line="269"/> <source>Disconnecting from network {0}...</source> <translation>Desconectando de la red {0}...</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="262"/> + <location filename="../Network/IRC/IrcWidget.py" line="274"/> <source>Disconnecting from server.</source> <translation>Desconectando del servidor.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="645"/> + <location filename="../Network/IRC/IrcWidget.py" line="661"/> <source>Received CTCP-PING response from {0} with latency of {1} ms.</source> <translation>Recibida respuesta CTCP-PING desde {0} con una latencia de {1} ms.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="651"/> + <location filename="../Network/IRC/IrcWidget.py" line="667"/> <source>Received unknown CTCP-{0} response from {1}.</source> <translation>Recibida respuesta CTCP-{0} desconocida desde {1}.</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="725"/> + <location filename="../Network/IRC/IrcWidget.py" line="741"/> <source>Received PONG from {0}</source> <translation>Recibido PONG desde {0}</translation> </message> @@ -53701,12 +53706,12 @@ <translation>¿Realmente quiere borrar estas archivos de traducción del proyecto?</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>Write temporary project file</source> <translation>Guardar archivo de proyecto temporal</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>No translation files (*.ts) selected.</source> <translation>No se han seleccionado archivos de traducción (*.ts).</translation> </message> @@ -53721,7 +53726,7 @@ <translation>La generación de archivos de traducción (*.ts) ha sido satisfactoria.</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source>Process Generation Error</source> <translation>Error de Generación de Proceso</translation> </message> @@ -53766,7 +53771,7 @@ <translation>No se ha podido ejecutar {0}.<br>Verifique que está en la ruta de búsqueda (search path).</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar lrelease.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> @@ -75063,7 +75068,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="5945"/> + <location filename="../UI/UserInterface.py" line="5958"/> <source>Export Keyboard Shortcuts</source> <translation>Exportar Atajos de Teclado</translation> </message> @@ -75083,7 +75088,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="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Import Keyboard Shortcuts</source> <translation>Importar Atajos de Teclado</translation> </message> @@ -75273,7 +75278,7 @@ <translation>Ajustes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <source>Help</source> <translation>Ayuda</translation> </message> @@ -75293,7 +75298,7 @@ <translation><h3>Números de Versiones</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6932"/> + <location filename="../UI/UserInterface.py" line="6945"/> <source></table></source> <translation></table></translation> </message> @@ -75338,82 +75343,82 @@ <translation>No hay script principal definido para el proyecto actual. Abortando</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <source>Process Generation Error</source> <translation>Error de Generación de Proceso</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <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="4823"/> + <location filename="../UI/UserInterface.py" line="4829"/> <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="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <source>Documentation Missing</source> <translation>Falta documentación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <source>Documentation</source> <translation>Documentación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5398"/> + <location filename="../UI/UserInterface.py" line="5404"/> <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="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <source>Save tasks</source> <translation>Guardar tareas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <source>Read tasks</source> <translation>Leer tareas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <source>Drop Error</source> <translation>Error de volcado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <source>Error during updates check</source> <translation>Error durante la verificación de actualización</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>&Cancel</source> <translation>&Cancelar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6874"/> + <location filename="../UI/UserInterface.py" line="6887"/> <source>Update available</source> <translation>Actualizaciones disponibles</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <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="6918"/> + <location filename="../UI/UserInterface.py" line="6931"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versiones disponibles</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <source>First time usage</source> <translation>Usado por primera vez</translation> </message> @@ -75473,7 +75478,7 @@ <translation>Restaurando Gestor de Barras de Herramientas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <source>External Tools</source> <translation>Herramientas Externas</translation> </message> @@ -75488,12 +75493,12 @@ <translation>Visor de &Multiproyecto</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6264"/> + <location filename="../UI/UserInterface.py" line="6277"/> <source>Save session</source> <translation>Guardar sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <source>Read session</source> <translation>Cargar sesión</translation> </message> @@ -75723,7 +75728,7 @@ <translation>Editor de &Iconos...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <source>Qt 3 support</source> <translation>Soporte para Qt 3</translation> </message> @@ -75763,106 +75768,106 @@ <translation>Herramientas Externas/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <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="4643"/> + <location filename="../UI/UserInterface.py" line="4645"/> <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="4710"/> + <location filename="../UI/UserInterface.py" line="4714"/> <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="4761"/> + <location filename="../UI/UserInterface.py" line="4767"/> <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="4803"/> + <location filename="../UI/UserInterface.py" line="4809"/> <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="4871"/> + <location filename="../UI/UserInterface.py" line="4877"/> <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="4926"/> + <location filename="../UI/UserInterface.py" line="4932"/> <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="4947"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5040"/> + <location filename="../UI/UserInterface.py" line="5046"/> <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="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <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="5088"/> + <location filename="../UI/UserInterface.py" line="5094"/> <source>Starting process '{0} {1}'. </source> <translation>Comenzando proceso '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <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="5180"/> + <location filename="../UI/UserInterface.py" line="5186"/> <source>Process '{0}' has exited. </source> <translation>El proceso '{0}' ha finalizado. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <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="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <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="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <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="6201"/> + <location filename="../UI/UserInterface.py" line="6214"/> <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="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <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="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <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="6716"/> + <location filename="../UI/UserInterface.py" line="6729"/> <source>Trying host {0}</source> <translation>Probando host {0}</translation> </message> @@ -75897,7 +75902,7 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Archivo de atajos de teclado (*.e4k)</translation> </message> @@ -75937,27 +75942,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="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <source>Error getting versions information</source> <translation>Error al obtener información de versiones</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6773"/> + <location filename="../UI/UserInterface.py" line="6786"/> <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="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <source>Open Browser</source> <translation>Abrir Navegador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <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="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <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> @@ -76043,12 +76048,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="5017"/> + <location filename="../UI/UserInterface.py" line="5023"/> <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="6988"/> + <location filename="../UI/UserInterface.py" line="7001"/> <source>Select Workspace Directory</source> <translation>Seleccionar Directorio para el Espacio de Trabajo</translation> </message> @@ -76423,7 +76428,7 @@ <translation>Abrir Documentación de PyQt5</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5464"/> + <location filename="../UI/UserInterface.py" line="5470"/> <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> @@ -76433,7 +76438,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="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>%v/%m</source> <translation>%v/%m</translation> </message> @@ -76453,7 +76458,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="6711"/> + <location filename="../UI/UserInterface.py" line="6724"/> <source>Version Check</source> <translation>Verificación de Versión</translation> </message> @@ -76523,27 +76528,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="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <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="6874"/> - <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="6887"/> + <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="6900"/> <source>Eric6 is up to date</source> <translation>Eric6 está actualizado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6887"/> + <location filename="../UI/UserInterface.py" line="6900"/> <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="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <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> @@ -76563,7 +76568,7 @@ <translation>No se han Configurado Herramientas de Usuario</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6727"/> + <location filename="../UI/UserInterface.py" line="6740"/> <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> @@ -76608,7 +76613,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="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>Load session</source> <translation>Cargar sesión</translation> </message> @@ -76623,17 +76628,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="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>eric6 Session Files (*.e5s)</source> <translation>Archivos de Sesión de eric6 (*.e5s)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <source>Crash Session found!</source> <translation>¡Se ha hallado una sesión perdida!</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <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> @@ -76648,17 +76653,17 @@ <translation>Inicializando Plugins...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Update Check</source> <translation>Comprobación Actualización</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <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="6852"/> + <location filename="../UI/UserInterface.py" line="6865"/> <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> @@ -76713,7 +76718,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="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <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>
--- a/i18n/eric6_fr.ts Fri Nov 16 20:00:03 2018 +0100 +++ b/i18n/eric6_fr.ts Sat Nov 17 12:45:58 2018 +0100 @@ -5538,12 +5538,12 @@ <translation>Filtrer &avec:</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source>Code Generation</source> <translation>Génération de code</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source>uic error</source> <translation>erreur uic</translation> </message> @@ -5558,25 +5558,30 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="620"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="656"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Crypto</name> @@ -6891,47 +6896,47 @@ <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source>Start Debugger</source> <translation type="unfinished">Démarrage du débogueur</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source><p>The debugger backend could not be started.</p></source> <translation type="unfinished"><p>Impossible de lancer le débogueur en arrière-plan.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/> - <source>Parent Process</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/> - <source>Child process</source> + <source>Parent Process</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <source>Child process</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Client forking</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Select the fork branch to follow.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source>Debug Protocol Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/> <source><p>No suitable {0} environment configured.</p></source> <translation type="unfinished"></translation> </message> @@ -42583,7 +42588,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/> <source>Press to connect to the selected network</source> <translation type="unfinished"></translation> </message> @@ -42613,57 +42618,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source>Save Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Le fichier <b>{0}</b>existe déjà. Écraser ?</p></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/> <source>Copy</source> <translation type="unfinished">Copier</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/> - <source>Cut all</source> - <translation type="unfinished">Couper tous</translation> - </message> - <message> <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/> + <source>Cut all</source> + <translation type="unfinished">Couper tous</translation> + </message> + <message> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/> <source>Copy all</source> <translation type="unfinished">Copier tous</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/> <source>Clear</source> <translation type="unfinished">Effacer</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/> <source>Press to disconnect from the network</source> <translation type="unfinished"></translation> </message> @@ -43123,298 +43128,298 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Info</source> <translation type="unfinished">Info</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="222"/> + <location filename="../Network/IRC/IrcWidget.py" line="230"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="231"/> + <location filename="../Network/IRC/IrcWidget.py" line="241"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="252"/> + <location filename="../Network/IRC/IrcWidget.py" line="264"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="519"/> + <location filename="../Network/IRC/IrcWidget.py" line="533"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="528"/> + <location filename="../Network/IRC/IrcWidget.py" line="542"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="678"/> + <location filename="../Network/IRC/IrcWidget.py" line="694"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="689"/> + <location filename="../Network/IRC/IrcWidget.py" line="705"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="693"/> + <location filename="../Network/IRC/IrcWidget.py" line="709"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="696"/> + <location filename="../Network/IRC/IrcWidget.py" line="712"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="703"/> - <source>You have left channel {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="714"/> - <source>You are now known as {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="719"/> + <source>You have left channel {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="730"/> + <source>You are now known as {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="735"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="729"/> + <location filename="../Network/IRC/IrcWidget.py" line="745"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="765"/> + <location filename="../Network/IRC/IrcWidget.py" line="781"/> <source>Error</source> <translation type="unfinished">Erreur</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="780"/> - <source>Welcome</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="782"/> - <source>Support</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="784"/> - <source>User</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="786"/> - <source>MOTD</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="788"/> - <source>Away</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="790"/> - <source>Info ({0})</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="794"/> - <source>Message of the day</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="796"/> - <source>End of message of the day</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="799"/> - <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="805"/> - <source>Current users on {0}: {1}, max. {2}</source> + <source>Welcome</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="798"/> + <source>Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="800"/> + <source>User</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="802"/> + <source>MOTD</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="804"/> + <source>Away</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="806"/> + <source>Info ({0})</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Network/IRC/IrcWidget.py" line="810"/> + <source>Message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="812"/> + <source>End of message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="815"/> + <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="821"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="826"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="814"/> + <location filename="../Network/IRC/IrcWidget.py" line="830"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="816"/> + <location filename="../Network/IRC/IrcWidget.py" line="832"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="877"/> + <location filename="../Network/IRC/IrcWidget.py" line="894"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> + <source>Socket Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="902"/> + <source>The host was not found. Please check the host name and port settings.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Network/IRC/IrcWidget.py" line="908"/> - <source>Socket Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="885"/> - <source>The host was not found. Please check the host name and port settings.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="891"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="897"/> + <location filename="../Network/IRC/IrcWidget.py" line="914"/> <source>The SSL handshake failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="902"/> + <location filename="../Network/IRC/IrcWidget.py" line="919"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="908"/> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> <source>A network error occurred.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1019"/> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="996"/> + <location filename="../Network/IRC/IrcWidget.py" line="1013"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1002"/> - <source>Received CTCP-PING request from {0}, sending answer.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="1010"/> - <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="1019"/> + <source>Received CTCP-PING request from {0}, sending answer.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="1027"/> + <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1034"/> + <location filename="../Network/IRC/IrcWidget.py" line="1051"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished">{0}({1})</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>Critical</source> <translation type="unfinished">Critique</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1049"/> + <location filename="../Network/IRC/IrcWidget.py" line="1074"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="921"/> + <location filename="../Network/IRC/IrcWidget.py" line="938"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="257"/> + <location filename="../Network/IRC/IrcWidget.py" line="269"/> <source>Disconnecting from network {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="262"/> + <location filename="../Network/IRC/IrcWidget.py" line="274"/> <source>Disconnecting from server.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="645"/> + <location filename="../Network/IRC/IrcWidget.py" line="661"/> <source>Received CTCP-PING response from {0} with latency of {1} ms.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="651"/> + <location filename="../Network/IRC/IrcWidget.py" line="667"/> <source>Received unknown CTCP-{0} response from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="725"/> + <location filename="../Network/IRC/IrcWidget.py" line="741"/> <source>Received PONG from {0}</source> <translation type="unfinished"></translation> </message> @@ -54619,7 +54624,7 @@ <translation>Ajouter une traduction...</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>Write temporary project file</source> <translation>Ecrire un fichier projet temporaire</translation> </message> @@ -54634,7 +54639,7 @@ <translation>La génération des fichiers de traduction (*.ts) a réussi.</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source>Process Generation Error</source> <translation>Erreur du processus</translation> </message> @@ -54709,7 +54714,7 @@ <translation>Voulez-vous réellement supprimer ces traductions du projet?</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>No translation files (*.ts) selected.</source> <translation>Aucun fichier de traduction (*.ts) sélectionné.</translation> </message> @@ -54749,7 +54754,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> @@ -76050,7 +76055,7 @@ <translation><b>Raccourcis claviers</b><p>Edite les raccourcis claviers pour l'application.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5945"/> + <location filename="../UI/UserInterface.py" line="5958"/> <source>Export Keyboard Shortcuts</source> <translation>Exporter les raccourcis clavier</translation> </message> @@ -76070,7 +76075,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="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Import Keyboard Shortcuts</source> <translation>Importer des raccourcis clavier</translation> </message> @@ -76115,7 +76120,7 @@ <translation>Outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <source>Help</source> <translation>Aide</translation> </message> @@ -76130,12 +76135,12 @@ <translation>&Barres d'Outils</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <source>Problem</source> <translation>Problème</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <source>Process Generation Error</source> <translation>Erreur du processus</translation> </message> @@ -76251,7 +76256,7 @@ <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="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> @@ -76386,22 +76391,22 @@ <translation>Visualisueur de tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <source>Save tasks</source> <translation>Enregistrement des tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <source>Read tasks</source> <translation>Lecture des tâches</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <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="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <source>Documentation Missing</source> <translation>Documentation Manquante</translation> </message> @@ -76501,7 +76506,7 @@ <translation>Ouvre la documentation sur les APIs Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4829"/> <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> @@ -76582,22 +76587,22 @@ <translation>Outils &internes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <source>Documentation</source> <translation>Documentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5398"/> + <location filename="../UI/UserInterface.py" line="5404"/> <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="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <source>Error during updates check</source> <translation>Erreur durant la recherche de mises à jour</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6874"/> + <location filename="../UI/UserInterface.py" line="6887"/> <source>Update available</source> <translation>Mise à jour disponible</translation> </message> @@ -76607,17 +76612,17 @@ <translation><h3>Numéros de version</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6932"/> + <location filename="../UI/UserInterface.py" line="6945"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <source>Open Browser</source> <translation type="unfinished">Ouverture du navigateur</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <source>Could not start a web browser</source> <translation type="unfinished">Impossible de lancer le navigateur web</translation> </message> @@ -76642,17 +76647,17 @@ <translation>Afficher les &outils externes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>&Cancel</source> <translation>&Annuler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <source>Could not perform updates check.</source> <translation>Impossible de vérifier les mises à jour.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <source>First time usage</source> <translation>Première utilisation</translation> </message> @@ -76747,7 +76752,7 @@ <translation>Affiche les versions disponibles pour le téléchargement</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6918"/> + <location filename="../UI/UserInterface.py" line="6931"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versions disponibles</h3><table></translation> </message> @@ -76837,17 +76842,17 @@ <translation>Gestionnaire de &multi-projet</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <source>External Tools</source> <translation>Outils externes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6264"/> + <location filename="../UI/UserInterface.py" line="6277"/> <source>Save session</source> <translation>Enregistrer la session</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <source>Read session</source> <translation>Chargement de session</translation> </message> @@ -77077,7 +77082,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> @@ -77117,104 +77122,104 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <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="4643"/> + <location filename="../UI/UserInterface.py" line="4645"/> <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="4710"/> + <location filename="../UI/UserInterface.py" line="4714"/> <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="4761"/> + <location filename="../UI/UserInterface.py" line="4767"/> <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="4803"/> + <location filename="../UI/UserInterface.py" line="4809"/> <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="4871"/> + <location filename="../UI/UserInterface.py" line="4877"/> <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="4926"/> + <location filename="../UI/UserInterface.py" line="4932"/> <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="4947"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5040"/> + <location filename="../UI/UserInterface.py" line="5046"/> <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="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5088"/> + <location filename="../UI/UserInterface.py" line="5094"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <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="5180"/> + <location filename="../UI/UserInterface.py" line="5186"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <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="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <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="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <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="6201"/> + <location filename="../UI/UserInterface.py" line="6214"/> <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="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <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="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6716"/> + <location filename="../UI/UserInterface.py" line="6729"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> @@ -77249,7 +77254,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> @@ -77289,17 +77294,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6773"/> + <location filename="../UI/UserInterface.py" line="6786"/> <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="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <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> @@ -77385,12 +77390,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5017"/> + <location filename="../UI/UserInterface.py" line="5023"/> <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="6988"/> + <location filename="../UI/UserInterface.py" line="7001"/> <source>Select Workspace Directory</source> <translation type="unfinished"></translation> </message> @@ -77765,7 +77770,7 @@ <translation type="unfinished">Lance la documentation PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5464"/> + <location filename="../UI/UserInterface.py" line="5470"/> <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> @@ -77775,7 +77780,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -77795,7 +77800,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6711"/> + <location filename="../UI/UserInterface.py" line="6724"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -77865,27 +77870,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="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <source>Qt v.3 is not supported by eric6.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6874"/> - <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="6887"/> + <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="6900"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric4 est à jour {5 ?} {6 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6887"/> + <location filename="../UI/UserInterface.py" line="6900"/> <source>You are using the latest version of eric6</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <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> @@ -77905,7 +77910,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6727"/> + <location filename="../UI/UserInterface.py" line="6740"/> <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> @@ -77950,7 +77955,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>Load session</source> <translation type="unfinished">Charger la session</translation> </message> @@ -77965,17 +77970,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -77990,17 +77995,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <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="6852"/> + <location filename="../UI/UserInterface.py" line="6865"/> <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> @@ -78055,7 +78060,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_it.ts Fri Nov 16 20:00:03 2018 +0100 +++ b/i18n/eric6_it.ts Sat Nov 17 12:45:58 2018 +0100 @@ -5441,12 +5441,12 @@ <translation>&Filtra con:</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source>Code Generation</source> <translation>Generazione del codice</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source>uic error</source> <translation>errore uic</translation> </message> @@ -5461,25 +5461,30 @@ <translation>Il file <b>{0}</b> esiste ma non contiene nessuna classe.</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation><p>C'è un errore nel caricamento del form<b>{0}</b>.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="620"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Non posso aprire il file del modello del codice "{0}".<p><p>Ragione: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="656"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Non posso aprire il file sorgente "{0}".</p><p>Ragione: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Non posso scrivere il file sorgente "{0}".</p><p>Ragione: {1}</p></translation> </message> + <message> + <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Crypto</name> @@ -6744,47 +6749,47 @@ <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source>Start Debugger</source> <translation type="unfinished">Avvia Debugger</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source><p>The debugger backend could not be started.</p></source> <translation type="unfinished"><p>Il debugger non può essere avviato.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/> - <source>Parent Process</source> - <translation type="unfinished">Processo padre</translation> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/> - <source>Child process</source> - <translation type="unfinished">Processo figlio</translation> + <source>Parent Process</source> + <translation type="unfinished">Processo padre</translation> </message> <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <source>Child process</source> + <translation type="unfinished">Processo figlio</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Client forking</source> <translation type="unfinished">Lancio processo figlio in corso</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Select the fork branch to follow.</source> <translation type="unfinished">Seleziona il client da seguire.</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source>Debug Protocol Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/> <source><p>No suitable {0} environment configured.</p></source> <translation type="unfinished"></translation> </message> @@ -41914,7 +41919,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/> <source>Press to connect to the selected network</source> <translation type="unfinished"></translation> </message> @@ -41944,57 +41949,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source>Save Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Il file <b>{0}</b> esiste già. Sovrascriverlo ?</p></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/> <source>Copy</source> <translation type="unfinished">Copia</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/> - <source>Cut all</source> - <translation type="unfinished">Taglia tutto</translation> - </message> - <message> <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/> + <source>Cut all</source> + <translation type="unfinished">Taglia tutto</translation> + </message> + <message> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/> <source>Copy all</source> <translation type="unfinished">Copia tutto</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/> <source>Clear</source> <translation type="unfinished">Pulisci</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/> <source>Save</source> <translation type="unfinished">Salva</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/> <source>Press to disconnect from the network</source> <translation type="unfinished"></translation> </message> @@ -42444,253 +42449,253 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="243"/> + <location filename="../Network/IRC/IrcWidget.py" line="255"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="196"/> + <location filename="../Network/IRC/IrcWidget.py" line="197"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Info</source> <translation type="unfinished">Info</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="222"/> + <location filename="../Network/IRC/IrcWidget.py" line="230"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="231"/> + <location filename="../Network/IRC/IrcWidget.py" line="241"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="252"/> + <location filename="../Network/IRC/IrcWidget.py" line="264"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="519"/> + <location filename="../Network/IRC/IrcWidget.py" line="533"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="528"/> + <location filename="../Network/IRC/IrcWidget.py" line="542"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="563"/> + <location filename="../Network/IRC/IrcWidget.py" line="579"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="610"/> + <location filename="../Network/IRC/IrcWidget.py" line="626"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="678"/> + <location filename="../Network/IRC/IrcWidget.py" line="694"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="696"/> + <location filename="../Network/IRC/IrcWidget.py" line="712"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="703"/> - <source>You have left channel {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="714"/> - <source>You are now known as {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="719"/> + <source>You have left channel {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="730"/> + <source>You are now known as {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="735"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="729"/> + <location filename="../Network/IRC/IrcWidget.py" line="745"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="765"/> + <location filename="../Network/IRC/IrcWidget.py" line="781"/> <source>Error</source> <translation type="unfinished">Errore</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="780"/> - <source>Welcome</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="782"/> - <source>Support</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="784"/> - <source>User</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="786"/> - <source>MOTD</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="788"/> - <source>Away</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="790"/> - <source>Info ({0})</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="794"/> - <source>Message of the day</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="796"/> - <source>End of message of the day</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="799"/> - <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="805"/> - <source>Current users on {0}: {1}, max. {2}</source> + <source>Welcome</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="798"/> + <source>Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="800"/> + <source>User</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="802"/> + <source>MOTD</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="804"/> + <source>Away</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="806"/> + <source>Info ({0})</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Network/IRC/IrcWidget.py" line="810"/> + <source>Message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="812"/> + <source>End of message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="815"/> + <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="821"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="826"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="814"/> + <location filename="../Network/IRC/IrcWidget.py" line="830"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="816"/> + <location filename="../Network/IRC/IrcWidget.py" line="832"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="877"/> + <location filename="../Network/IRC/IrcWidget.py" line="894"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="908"/> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="885"/> - <source>The host was not found. Please check the host name and port settings.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="891"/> - <source>The connection was refused by the peer. Please check the host name and port settings.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Network/IRC/IrcWidget.py" line="902"/> + <source>The host was not found. Please check the host name and port settings.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="908"/> + <source>The connection was refused by the peer. Please check the host name and port settings.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="919"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1034"/> + <location filename="../Network/IRC/IrcWidget.py" line="1051"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished">{0} ({1})</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>Critical</source> <translation type="unfinished">Critico</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1049"/> + <location filename="../Network/IRC/IrcWidget.py" line="1074"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1069"/> + <location filename="../Network/IRC/IrcWidget.py" line="1094"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> + <source>CTCP</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Network/IRC/IrcWidget.py" line="1013"/> + <source>Received Version request from {0}.</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Network/IRC/IrcWidget.py" line="1019"/> - <source>CTCP</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="996"/> - <source>Received Version request from {0}.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Network/IRC/IrcWidget.py" line="1002"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1010"/> + <location filename="../Network/IRC/IrcWidget.py" line="1027"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="1019"/> + <location filename="../Network/IRC/IrcWidget.py" line="1036"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="689"/> + <location filename="../Network/IRC/IrcWidget.py" line="705"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="693"/> + <location filename="../Network/IRC/IrcWidget.py" line="709"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> @@ -42705,47 +42710,47 @@ <translation type="unfinished">Rete</translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="897"/> + <location filename="../Network/IRC/IrcWidget.py" line="914"/> <source>The SSL handshake failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="908"/> + <location filename="../Network/IRC/IrcWidget.py" line="925"/> <source>A network error occurred.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="921"/> + <location filename="../Network/IRC/IrcWidget.py" line="938"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="935"/> + <location filename="../Network/IRC/IrcWidget.py" line="952"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="257"/> + <location filename="../Network/IRC/IrcWidget.py" line="269"/> <source>Disconnecting from network {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="262"/> + <location filename="../Network/IRC/IrcWidget.py" line="274"/> <source>Disconnecting from server.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="645"/> + <location filename="../Network/IRC/IrcWidget.py" line="661"/> <source>Received CTCP-PING response from {0} with latency of {1} ms.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="651"/> + <location filename="../Network/IRC/IrcWidget.py" line="667"/> <source>Received unknown CTCP-{0} response from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcWidget.py" line="725"/> + <location filename="../Network/IRC/IrcWidget.py" line="741"/> <source>Received PONG from {0}</source> <translation type="unfinished"></translation> </message> @@ -53936,7 +53941,7 @@ <translation>Aggiungi traduzione...</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>Write temporary project file</source> <translation>Scrivi un file progetto temporaneo</translation> </message> @@ -53951,7 +53956,7 @@ <translation>La generazione dei file di traduzione (*.ts) è avvenuta con successo.</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source>Process Generation Error</source> <translation>Errore Generazione Processo</translation> </message> @@ -54026,7 +54031,7 @@ <translation>Vuoi veramente cancellare questi file traduzione del progetto ?</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/> <source>No translation files (*.ts) selected.</source> <translation>Nessun file traduzione (*.ts) selezionato.</translation> </message> @@ -54066,7 +54071,7 @@ <translation>Non posso avviare {0}.<br>Assicurarsi che sia nel path.</translation> </message> <message> - <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/> + <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare lrelease.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> @@ -74961,7 +74966,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="5945"/> + <location filename="../UI/UserInterface.py" line="5958"/> <source>Export Keyboard Shortcuts</source> <translation>Esporta scorciatoie da tastiera</translation> </message> @@ -74981,7 +74986,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="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Import Keyboard Shortcuts</source> <translation>Importa scorciatoie da tastiera</translation> </message> @@ -75021,7 +75026,7 @@ <translation>Strumenti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <source>Help</source> <translation>Aiuto</translation> </message> @@ -75036,12 +75041,12 @@ <translation>&Toolbar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <source>Process Generation Error</source> <translation>Errore Generazione Processo</translation> </message> @@ -75156,7 +75161,7 @@ <translation>Non c'è uno script principale definito per il progetto. Esco</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <source>Drop Error</source> <translation>Errore Drop</translation> </message> @@ -75291,22 +75296,22 @@ <translation>Task-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <source>Save tasks</source> <translation>Salva task</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <source>Read tasks</source> <translation>Leggi task</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4789"/> + <location filename="../UI/UserInterface.py" line="4795"/> <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="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <source>Documentation Missing</source> <translation>Documentazione mancante</translation> </message> @@ -75406,7 +75411,7 @@ <translation>Apri documentazione API di Eric</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4823"/> + <location filename="../UI/UserInterface.py" line="4829"/> <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> @@ -75487,22 +75492,22 @@ <translation>Tool &Builtin</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <source>Documentation</source> <translation>Documentazione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5398"/> + <location filename="../UI/UserInterface.py" line="5404"/> <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="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <source>Error during updates check</source> <translation>Errore nel controllo per gli update</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6874"/> + <location filename="../UI/UserInterface.py" line="6887"/> <source>Update available</source> <translation>Aggiornamento disponibile</translation> </message> @@ -75512,7 +75517,7 @@ <translation><h3>Numeri di versione</h3><table></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6932"/> + <location filename="../UI/UserInterface.py" line="6945"/> <source></table></source> <translation></table></translation> </message> @@ -75537,17 +75542,17 @@ <translation>Mostra toll &esterni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>&Cancel</source> <translation>&Cancella</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6894"/> + <location filename="../UI/UserInterface.py" line="6907"/> <source>Could not perform updates check.</source> <translation>Non posso controllare per gli update.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <source>First time usage</source> <translation>Primo avvio</translation> </message> @@ -75642,7 +75647,7 @@ <translation>Mostra le versioni disponibili per il download</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6918"/> + <location filename="../UI/UserInterface.py" line="6931"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versioni disponibili</h3><table></translation> </message> @@ -75732,17 +75737,17 @@ <translation>&Multiproject-Viewer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <source>External Tools</source> <translation>Tool esterni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6264"/> + <location filename="../UI/UserInterface.py" line="6277"/> <source>Save session</source> <translation>Salva sessione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <source>Read session</source> <translation>Leggi sessione</translation> </message> @@ -75972,7 +75977,7 @@ <translation>Editor di &icone...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <source>Qt 3 support</source> <translation>Supporto Qt3</translation> </message> @@ -76012,105 +76017,105 @@ <translation>Tool Esterni/{0}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="4915"/> + <location filename="../UI/UserInterface.py" line="4921"/> <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="4643"/> + <location filename="../UI/UserInterface.py" line="4645"/> <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="4710"/> + <location filename="../UI/UserInterface.py" line="4714"/> <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="4761"/> + <location filename="../UI/UserInterface.py" line="4767"/> <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="4803"/> + <location filename="../UI/UserInterface.py" line="4809"/> <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="4871"/> + <location filename="../UI/UserInterface.py" line="4877"/> <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="4926"/> + <location filename="../UI/UserInterface.py" line="4932"/> <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="4947"/> + <location filename="../UI/UserInterface.py" line="4953"/> <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="5040"/> + <location filename="../UI/UserInterface.py" line="5046"/> <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="5049"/> + <location filename="../UI/UserInterface.py" line="5055"/> <source>No toolgroup entry '{0}' found.</source> <translation>Nessun gruppo '{0}' trovato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5088"/> + <location filename="../UI/UserInterface.py" line="5094"/> <source>Starting process '{0} {1}'. </source> <translation>Avvio processo '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5104"/> + <location filename="../UI/UserInterface.py" line="5110"/> <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="5180"/> + <location filename="../UI/UserInterface.py" line="5186"/> <source>Process '{0}' has exited. </source> <translation>Il processo '{0}' è terminato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5601"/> + <location filename="../UI/UserInterface.py" line="5607"/> <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="6138"/> + <location filename="../UI/UserInterface.py" line="6151"/> <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="6167"/> + <location filename="../UI/UserInterface.py" line="6180"/> <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="6201"/> + <location filename="../UI/UserInterface.py" line="6214"/> <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="6248"/> + <location filename="../UI/UserInterface.py" line="6261"/> <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="6528"/> + <location filename="../UI/UserInterface.py" line="6541"/> <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="6716"/> + <location filename="../UI/UserInterface.py" line="6729"/> <source>Trying host {0}</source> <translation>Tento su host {0}</translation> </message> @@ -76145,7 +76150,7 @@ <translation>Alt+Shift+B</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5969"/> + <location filename="../UI/UserInterface.py" line="5982"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>File scorciatoi tastiera (*.e4k)</translation> </message> @@ -76185,27 +76190,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="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6773"/> + <location filename="../UI/UserInterface.py" line="6786"/> <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="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5737"/> + <location filename="../UI/UserInterface.py" line="5743"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6780"/> + <location filename="../UI/UserInterface.py" line="6793"/> <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> @@ -76291,12 +76296,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5017"/> + <location filename="../UI/UserInterface.py" line="5023"/> <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="6988"/> + <location filename="../UI/UserInterface.py" line="7001"/> <source>Select Workspace Directory</source> <translation type="unfinished">Seleziona cartella di lavoro</translation> </message> @@ -76671,7 +76676,7 @@ <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5464"/> + <location filename="../UI/UserInterface.py" line="5470"/> <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> @@ -76681,7 +76686,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6707"/> + <location filename="../UI/UserInterface.py" line="6720"/> <source>%v/%m</source> <translation type="unfinished"></translation> </message> @@ -76701,7 +76706,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6711"/> + <location filename="../UI/UserInterface.py" line="6724"/> <source>Version Check</source> <translation type="unfinished"></translation> </message> @@ -76771,27 +76776,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="4736"/> + <location filename="../UI/UserInterface.py" line="4742"/> <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="6874"/> - <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="6887"/> + <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="6900"/> <source>Eric6 is up to date</source> <translation type="unfinished">Eric6 è aggiornato</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6887"/> + <location filename="../UI/UserInterface.py" line="6900"/> <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="6969"/> + <location filename="../UI/UserInterface.py" line="6982"/> <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> @@ -76811,7 +76816,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6727"/> + <location filename="../UI/UserInterface.py" line="6740"/> <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> @@ -76856,7 +76861,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>Load session</source> <translation type="unfinished">Carica sessione</translation> </message> @@ -76871,17 +76876,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6286"/> + <location filename="../UI/UserInterface.py" line="6299"/> <source>eric6 Session Files (*.e5s)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <source>Crash Session found!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6333"/> + <location filename="../UI/UserInterface.py" line="6346"/> <source>A session file of a crashed session was found. Shall this session be restored?</source> <translation type="unfinished"></translation> </message> @@ -76896,17 +76901,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <source>Update Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6862"/> + <location filename="../UI/UserInterface.py" line="6875"/> <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="6852"/> + <location filename="../UI/UserInterface.py" line="6865"/> <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> @@ -76961,7 +76966,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="5584"/> + <location filename="../UI/UserInterface.py" line="5590"/> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_pt.ts Fri Nov 16 20:00:03 2018 +0100 +++ b/i18n/eric6_pt.ts Sat Nov 17 12:45:58 2018 +0100 @@ -5603,35 +5603,40 @@ <translation>O ficheiro <b>{0}</b> existe mas não tem classes.</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source>uic error</source> <translation>erro uic</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="542"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="539"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation><p>Houve um erro ao carregar o form <b>{0}</b>.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source>Code Generation</source> <translation>Geração de Código</translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="620"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="617"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Não se pode abrir o ficheiro modelo de código "{0}"</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="656"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="653"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Não se pode abrir o ficheiro fonte "{0}".</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/CreateDialogCodeDialog.py" line="754"/> + <location filename="../Project/CreateDialogCodeDialog.py" line="751"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Não se pode escrever o ficheiro fonte "{0}".</p><p>Motivo: {1}</p></translation> </message> + <message> + <location filename="../Project/CreateDialogCodeDialog.py" line="207"/> + <source><p>The project specific Python interpreter <b>{0}</b> could not be started or did not finish within 30 seconds.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Crypto</name> @@ -6976,7 +6981,7 @@ <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source>Start Debugger</source> <translation type="unfinished">Iniciar o Depurador</translation> </message> @@ -6986,42 +6991,42 @@ <translation type="obsolete"><p>Intérprete de Python2 não configurado.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/> <source><p>The debugger backend could not be started.</p></source> <translation type="unfinished"><p>A instalação de retaguarda do depurador não pode iniciar.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/> - <source>Parent Process</source> - <translation type="unfinished">Processo Pai</translation> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/> - <source>Child process</source> - <translation type="unfinished">Processo Filho</translation> + <source>Parent Process</source> + <translation type="unfinished">Processo Pai</translation> </message> <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <source>Child process</source> + <translation type="unfinished">Processo Filho</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Client forking</source> <translation type="unfinished">Bifurcação do Cliente</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/> <source>Select the fork branch to follow.</source> <translation type="unfinished">Selecionar o ramo da bifurcação a seguir.</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source>Debug Protocol Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/> <source><p>The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/> + <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/> <source><p>No suitable {0} environment configured.</p></source> <translation type="unfinished"></translation> </message> @@ -43297,7 +43302,7 @@ <translation>Selecionar uma rede para conetar</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/> <source>Press to connect to the selected network</source> <translation>Pressionar para conetar à rede selecionada</translation> </message> @@ -43327,57 +43332,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source>Save Messages</source> <translation>Gravar Mensagens</translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>O ficheiro <b>{0}</b> já existe. Sobreescrever?</p></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/> + <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/> <source>Copy</source>