Sun, 03 Sep 2023 17:35:15 +0200
Shell
- Added some more special commands (% commands). Type '%help' to get a dialog listing these commands.
--- a/docs/changelog.md Sun Sep 03 13:54:22 2023 +0200 +++ b/docs/changelog.md Sun Sep 03 17:35:15 2023 +0200 @@ -2,6 +2,9 @@ ### Version 23.10 - bug fixes +- Shell + - Added some more special commands (% commands). Type '%help' to get a dialog + listing these commands. - Syntax Checker - Added code to the Python syntax checker to report Python Warnings. - Third Party packages
--- a/src/eric7/APIs/Python3/eric7.api Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/APIs/Python3/eric7.api Sun Sep 03 17:35:15 2023 +0200 @@ -9375,7 +9375,7 @@ eric7.QScintilla.SearchReplaceWidget.SearchReplaceWidget?1(vm, parent=None, sliding=False) eric7.QScintilla.Shell.Shell.clear?4() eric7.QScintilla.Shell.Shell.clearAllHistories?4() -eric7.QScintilla.Shell.Shell.clearHistory?4() +eric7.QScintilla.Shell.Shell.clearHistory?4(ask=True) eric7.QScintilla.Shell.Shell.closeShell?4() eric7.QScintilla.Shell.Shell.doClearRestart?4() eric7.QScintilla.Shell.Shell.doRestart?4() @@ -9412,7 +9412,7 @@ eric7.QScintilla.Shell.Shell.searchStringFound?7 eric7.QScintilla.Shell.Shell.selectHistory?4() eric7.QScintilla.Shell.Shell.setDebuggerUI?4(ui) -eric7.QScintilla.Shell.Shell.showHistory?4() +eric7.QScintilla.Shell.Shell.showHistory?4(histSize=None) eric7.QScintilla.Shell.Shell.virtualEnvironmentChanged?7 eric7.QScintilla.Shell.Shell.wheelEvent?4(evt) eric7.QScintilla.Shell.Shell?1(dbs, vm, project, windowedVariant, parent=None)
--- a/src/eric7/Documentation/Help/source.qhp Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/Documentation/Help/source.qhp Sun Sep 03 17:35:15 2023 +0200 @@ -14785,6 +14785,7 @@ <keyword name="Shell.__setTextDisplay" id="Shell.__setTextDisplay" ref="eric7.QScintilla.Shell.html#Shell.__setTextDisplay" /> <keyword name="Shell.__showCompletions" id="Shell.__showCompletions" ref="eric7.QScintilla.Shell.html#Shell.__showCompletions" /> <keyword name="Shell.__showContextMenu" id="Shell.__showContextMenu" ref="eric7.QScintilla.Shell.html#Shell.__showContextMenu" /> + <keyword name="Shell.__showHelp" id="Shell.__showHelp" ref="eric7.QScintilla.Shell.html#Shell.__showHelp" /> <keyword name="Shell.__showStartMenu" id="Shell.__showStartMenu" ref="eric7.QScintilla.Shell.html#Shell.__showStartMenu" /> <keyword name="Shell.__showVenvName" id="Shell.__showVenvName" ref="eric7.QScintilla.Shell.html#Shell.__showVenvName" /> <keyword name="Shell.__startDebugClient" id="Shell.__startDebugClient" ref="eric7.QScintilla.Shell.html#Shell.__startDebugClient" />
--- a/src/eric7/Documentation/Source/eric7.QScintilla.Shell.html Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/Documentation/Source/eric7.QScintilla.Shell.html Sun Sep 03 17:35:15 2023 +0200 @@ -370,6 +370,10 @@ <td>Private slot to show a context menu.</td> </tr> <tr> +<td><a href="#Shell.__showHelp">__showHelp</a></td> +<td>Private slot to show the list of supported special commands (i.e.</td> +</tr> +<tr> <td><a href="#Shell.__showStartMenu">__showStartMenu</a></td> <td>Private slot to prepare the start submenu.</td> </tr> @@ -1433,6 +1437,14 @@ position for the context menu </dd> </dl> +<a NAME="Shell.__showHelp" ID="Shell.__showHelp"></a> +<h4>Shell.__showHelp</h4> +<b>__showHelp</b>(<i></i>) + +<p> + Private slot to show the list of supported special commands (i.e. those + starting with a '%' character. +</p> <a NAME="Shell.__showStartMenu" ID="Shell.__showStartMenu"></a> <h4>Shell.__showStartMenu</h4> <b>__showStartMenu</b>(<i></i>) @@ -1570,11 +1582,18 @@ </p> <a NAME="Shell.clearHistory" ID="Shell.clearHistory"></a> <h4>Shell.clearHistory</h4> -<b>clearHistory</b>(<i></i>) +<b>clearHistory</b>(<i>ask=True</i>) <p> Public slot to clear the current history. </p> +<dl> + +<dt><i>ask</i> (bool (optional))</dt> +<dd> +flag indicating to ask for confirmation (defaults to True) +</dd> +</dl> <a NAME="Shell.closeShell" ID="Shell.closeShell"></a> <h4>Shell.closeShell</h4> <b>closeShell</b>(<i></i>) @@ -2065,11 +2084,19 @@ </dl> <a NAME="Shell.showHistory" ID="Shell.showHistory"></a> <h4>Shell.showHistory</h4> -<b>showHistory</b>(<i></i>) +<b>showHistory</b>(<i>histSize=None</i>) <p> Public slot to show the shell history dialog. </p> +<dl> + +<dt><i>histSize</i> (int (optional))</dt> +<dd> +number of history entries to be shown (None = show all + entrys) (defaults to None) +</dd> +</dl> <a NAME="Shell.wheelEvent" ID="Shell.wheelEvent"></a> <h4>Shell.wheelEvent</h4> <b>wheelEvent</b>(<i>evt</i>)
--- a/src/eric7/QScintilla/Shell.py Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/QScintilla/Shell.py Sun Sep 03 17:35:15 2023 +0200 @@ -32,6 +32,7 @@ from eric7.EricGui import EricPixmapCache from eric7.EricWidgets import EricFileDialog, EricMessageBox from eric7.EricWidgets.EricApplication import ericApp +from eric7.EricWidgets.EricSimpleHelpDialog import EricSimpleHelpDialog from eric7.UI.SearchWidget import SearchWidget from . import Lexers @@ -152,6 +153,7 @@ self.__windowed = windowedVariant self.__currentVenv = "" self.__currentWorkingDirectory = "" + self.__helpDialog = None self.linesepRegExp = r"\r\n|\n|\r" @@ -174,19 +176,8 @@ """ cursor keys on the Shell page of the configuration""" """ dialog. Pressing these keys after some text has been""" """ entered will start an incremental search.</p>""" - """<p>The shell has some special commands. '%restart' kills""" - """ the shell and starts a new one. '%clear' clears the""" - """ display of the shell window. '%start' is used to start a""" - """ shell for a virtual environment and should be followed""" - """ by a virtual environment name. '%start' without a""" - """ virtual environment name starts the default shell.""" - """ Available virtual environments may be listed with the""" - """ '%envs' or '%environments' commands. The active virtual""" - """ environment can be questioned by the '%which' command.""" - """ '%quit' or '%exit' is used to exit the application.""" - """ These commands (except '%environments', '%envs' and""" - """ '%which') are available through the window menus as""" - """ well.</p>""" + """<p>The shell has some special commands. Type '%help' to get""" + """ a list of these commands.</p>""" """<p>Pressing the Tab key after some text has been entered""" """ will show a list of possible completions. The relevant""" """ entry may be selected from this list. If only one entry""" @@ -208,17 +199,8 @@ """ cursor keys on the Shell page of the configuration""" """ dialog. Pressing these keys after some text has been""" """ entered will start an incremental search.</p>""" - """<p>The shell has some special commands. '%restart' kills""" - """ the shell and starts a new one. '%clear' clears the""" - """ display of the shell window. '%start' is used to start a""" - """ shell for a virtual environment and should be followed""" - """ by a virtual environment name. '%start' without a""" - """ virtual environment name starts the default shell.""" - """ Available virtual environments may be listed with the""" - """ '%envs' or '%environments' commands. The active virtual""" - """ environment can be questioned by the '%which' command.""" - """ These commands (except '%environments' and '%envs') are""" - """ available through the context menu as well.</p>""" + """<p>The shell has some special commands. Type '%help' to get""" + """ a list of these commands.</p>""" """<p>Pressing the Tab key after some text has been entered""" """ will show a list of possible completions. The relevant""" """ entry may be selected from this list. If only one entry""" @@ -318,7 +300,6 @@ self.menu.addAction(self.tr("Copy"), self.copy) self.menu.addAction(self.tr("Paste"), self.paste) self.menu.addMenu(self.hmenu).setEnabled(self.isHistoryEnabled()) - self.menu.addSeparator() self.menu.addAction(self.tr("Find"), self.__find) self.menu.addSeparator() @@ -332,6 +313,8 @@ self.menu.addAction(self.tr("Save Contents..."), self.saveContents) self.menu.addSeparator() self.menu.addAction(self.tr("Configure..."), self.__configure) + self.menu.addSeparator() + self.menu.addAction(self.tr("Special Commands Help"), self.__showHelp) self.customContextMenuRequested.connect(self.__showContextMenu) self.setContextMenuPolicy(Qt.ContextMenuPolicy.CustomContextMenu) @@ -783,10 +766,23 @@ else: return [] - def clearHistory(self): + @pyqtSlot() + def clearHistory(self, ask=True): """ Public slot to clear the current history. + + @param ask flag indicating to ask for confirmation (defaults to True) + @type bool (optional) """ + if ask: + ok = EricMessageBox.yesNo( + self, + self.tr("Clear History"), + self.tr("""Shall the current history really be cleared?"""), + ) + if not ok: + return + if self.clientType: self.__historyLists[self.clientType] = [] self.__history = self.__historyLists[self.clientType] @@ -794,6 +790,7 @@ self.__history = [] self.__setHistoryIndex(index=-1) + @pyqtSlot() def selectHistory(self): """ Public slot to select a history entry to execute. @@ -812,14 +809,23 @@ if ok: self.__insertHistory(cmd) - def showHistory(self): + @pyqtSlot() + def showHistory(self, histSize=None): """ Public slot to show the shell history dialog. + + @param histSize number of history entries to be shown (None = show all + entrys) (defaults to None) + @type int (optional) """ from .ShellHistoryDialog import ShellHistoryDialog - dlg = ShellHistoryDialog(self.__history, self.vm, self) - if dlg.exec() == QDialog.DialogCode.Accepted: + dlg = ( + ShellHistoryDialog(self.__history, self.vm, self) + if histSize is None + else ShellHistoryDialog(self.__history[-histSize:], self.vm, self) + ) + if dlg.exec() == QDialog.DialogCode.Accepted and histSize is None: self.__historyLists[self.clientType], idx = dlg.getHistory() self.__history = self.__historyLists[self.clientType] self.__setHistoryIndex(index=idx) @@ -834,7 +840,7 @@ self.saveHistory(clientType) Preferences.getSettings().endGroup() - self.clearHistory() + self.clearHistory(ask=False) def getClientType(self): """ @@ -1085,7 +1091,7 @@ # we are processing another raw input event already self.__rawModeQueue.append((debuggerId, prompt, echo)) else: - self.setFocus() + self.setFocus(Qt.FocusReason.OtherFocusReason) self.__inRawMode = True self.__echoInput = echo self.__rawModeDebuggerId = debuggerId @@ -1261,7 +1267,7 @@ @param event the mouse press event (QMouseEvent) """ - self.setFocus() + self.setFocus(Qt.FocusReason.MouseFocusReason) if event.button() == Qt.MouseButton.MiddleButton: lines = QApplication.clipboard().text(QClipboard.Mode.Selection) self.paste(lines) @@ -1829,9 +1835,6 @@ else: self.__setHistoryIndex(historyIndex) - # TODO: add a '%help' command listing available % commands - # TODO: add '%history [n]' command to show the 'n' most recently used - # commands (default: n = 10) if cmd.startswith("%"): if cmd == "%start" or cmd.startswith("%start "): if not self.passive: @@ -1866,25 +1869,16 @@ else: self.dbs.startClient(False, venvName=venvName) self.__currentWorkingDirectory = "" - self.__getBanner() - return + self.__getBanner() elif cmd == "%clear": # Display the banner. self.__getBanner() - if not self.passive: - return - else: - cmd = "" elif cmd in ["%reset", "%restart"]: self.dbs.startClient( False, venvName=self.__currentVenv, workingDir=self.__currentWorkingDirectory, ) - if self.passive: - return - else: - cmd = "" elif cmd in ["%envs", "%environments"]: venvs = ( ericApp().getObject("VirtualEnvManager").getVirtualenvNames() @@ -1894,20 +1888,46 @@ ) self.__write(s) self.__clientStatement(False) - return elif cmd == "%which": s = self.tr("Current Virtual Environment: '{0}'\n").format( self.__currentVenv ) self.__write(s) self.__clientStatement(False) - return elif ( cmd in ["%quit", "%quit()", "%exit", "%exit()"] and self.__windowed ): # call main window quit() self.vm.quit() - return + elif cmd in ("%hist", "%history") or cmd.startswith( + ("%hist ", "%history ") + ): + cmdList = cmd.split(None, 1) + if len(cmdList) == 2: + try: + histSize = int(cmdList[1]) + except ValueError: + s = self.tr("Error: Argument must be an integer value.\n") + self.__write(s) + self.__clientStatement(False) + return + else: + histSize = None + self.showHistory(histSize) + self.__clientStatement(False) + elif cmd in ("%shist", "%shistory", "%select_history"): + self.selectHistory() + elif cmd in ("%chist", "%chistory", "%clear_history"): + self.clearHistory() + self.__clientStatement(False) + elif cmd == "%help": + self.__showHelp() + self.__clientStatement(False) + else: + s = self.tr("Error: Command '{0}' is not supported.\n").format(cmd) + self.__write(s) + self.__clientStatement(False) + self.setFocus(Qt.FocusReason.OtherFocusReason) else: self.dbs.remoteStatement(self.__getSelectedDebuggerId(), cmd) while self.inCommandExecution: @@ -2455,6 +2475,58 @@ ).format(fpath, str(why)), ) + @pyqtSlot() + def __showHelp(self): + """ + Private slot to show the list of supported special commands (i.e. those + starting with a '%' character. + """ + if self.__helpDialog is None: + helpStr = "<table>" + helpStr += self.tr( + "<tr><td>%restart</td>" + "<td>Kill the shell and start a new one.</td></tr>" + "<tr><td>%clear</td>" + "<td>Clear the display of the shell window.</td></tr>" + "<tr><td>%start [environment]</td>" + "<td>Start a shell for a virtual environment with the given name." + " If no name if given, a default shell is started.</td></tr>" + "<tr><td>%envs<br/>%environments</td>" + "<td>Show a list of known virtual environment names.</td></tr>" + "<tr><td>%which</td>" + "<td>Show the name of the active virtual environment.</td></tr>" + "<tr><td>%hist [n]<br/>%history [n]</td>" + "<td>Show the most recent 'n' entries of the history. If 'n' is" + " not given, show all entries.</td></tr>" + "<tr><td>%shist<br/>%shistory<br/>%select_history</td>" + "<td>Select a command from the history.</td></tr>" + "<tr><td>%chist<br/>%chistory<br/>%clear_history</td>" + "<td>Clear the current history after confirmation.</td></tr>" + "<tr><td>%help</td><td>Show this help text.</td></tr>" + ) + if self.__windowed: + helpStr += self.tr( + "<tr><td>%quit<br/>%quit()<br/>%exit<br/>%exit()</td>" + "<td>Exit the application.</td></tr>" + "</table>" + "<p>These commands are available through the window menus as well." + "</p>" + ) + else: + helpStr += self.tr( + "</table>" + "<p>These commands are available through the context menu as well." + "</p>" + ) + + self.__helpDialog = EricSimpleHelpDialog( + title=self.tr("Shell Special Commands"), + label=self.tr("The shell supports these special commands:"), + helpStr=helpStr, + parent=self, + ) + self.__helpDialog.show() + ################################################################# ## Project Support #################################################################
--- a/src/eric7/i18n/eric7_cs.ts Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/i18n/eric7_cs.ts Sun Sep 03 17:35:15 2023 +0200 @@ -12416,996 +12416,996 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3332" /> - <location filename="../QScintilla/Editor.py" line="428" /> - <location filename="../QScintilla/Editor.py" line="413" /> + <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="414" /> <source>Open File</source> <translation>Otevřít soubor</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="414" /> + <location filename="../QScintilla/Editor.py" line="415" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="430" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>Velikost souboru <b>{0}</b> je <b>{1} KB</b>. Opravdu jej chcete načíst?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="526" /> + <location filename="../QScintilla/Editor.py" line="527" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Okno editoru zdrojového kódu</b><p>V tomto okně se zobrazuje a edituje soubor se zdrojovým kódem. Můžete otevřít oken podle libosti. Jméno souboru se zobrazuje v titlebaru okna.</p><p>Kliknutím do prostoru mezi čísly řádku a značkami skládání nastavíte breakpoint. Přes kontextové menu je pak lze editovat.</p><p>Záložka se vkládá kliknutím na stejné místo se stisknutou klávesou Shift.</p><p>Tyto akce mohou být navráceny zpět i opětovným kliknutím nebo přes kontextové menu.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="890" /> + <location filename="../QScintilla/Editor.py" line="891" /> <source>Undo</source> <translation>Vrátit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="893" /> + <location filename="../QScintilla/Editor.py" line="894" /> <source>Redo</source> <translation>Znovu použít</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="896" /> + <location filename="../QScintilla/Editor.py" line="897" /> <source>Revert to last saved state</source> <translation>Vrátit k poslednímu uloženému stavu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="900" /> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Cut</source> <translation>Vyjmout</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="903" /> + <location filename="../QScintilla/Editor.py" line="904" /> <source>Copy</source> <translation>Kopírovat</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="906" /> + <location filename="../QScintilla/Editor.py" line="907" /> <source>Paste</source> <translation>Vložit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="913" /> <source>Indent</source> <translation>Odsadit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="917" /> + <location filename="../QScintilla/Editor.py" line="918" /> <source>Unindent</source> <translation>Zrušit odsazení</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="922" /> + <location filename="../QScintilla/Editor.py" line="923" /> <source>Comment</source> <translation>Vytvořit komentář</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="927" /> + <location filename="../QScintilla/Editor.py" line="928" /> <source>Uncomment</source> <translation>Zrušit komentář</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="9150" /> - <location filename="../QScintilla/Editor.py" line="932" /> + <location filename="../QScintilla/Editor.py" line="9158" /> + <location filename="../QScintilla/Editor.py" line="933" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="935" /> - <source>Select to brace</source> - <translation>Vybrat až po závorku</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="936" /> - <source>Select all</source> - <translation>Vybrat vše</translation> + <source>Select to brace</source> + <translation>Vybrat až po závorku</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="937" /> + <source>Select all</source> + <translation>Vybrat vše</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="938" /> <source>Deselect all</source> <translation>Zrušit celý výběr</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939" /> + <location filename="../QScintilla/Editor.py" line="940" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="951" /> + <location filename="../QScintilla/Editor.py" line="952" /> <source>Use Monospaced Font</source> <translation>Použít neporoporcionální font</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="957" /> <source>Autosave enabled</source> <translation>Zapnout autosave</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="962" /> <source>Typing aids enabled</source> <translation>Pomůcky při psaní zapnuty</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="969" /> + <location filename="../QScintilla/Editor.py" line="970" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="978" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Calltip</source> <translation>Rychlé tipy</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="981" /> + <location filename="../QScintilla/Editor.py" line="982" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="996" /> + <location filename="../QScintilla/Editor.py" line="997" /> <source>New Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1001" /> + <location filename="../QScintilla/Editor.py" line="1002" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1013" /> + <location filename="../QScintilla/Editor.py" line="1014" /> <source>Save As...</source> <translation>Uložit jako...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1018" /> + <location filename="../QScintilla/Editor.py" line="1019" /> <source>Save Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1040" /> - <location filename="../QScintilla/Editor.py" line="1037" /> + <location filename="../QScintilla/Editor.py" line="1041" /> + <location filename="../QScintilla/Editor.py" line="1038" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1044" /> + <location filename="../QScintilla/Editor.py" line="1045" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1047" /> + <location filename="../QScintilla/Editor.py" line="1048" /> <source>Complete from Document</source> <translation type="unfinished">z dokumentu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1049" /> + <location filename="../QScintilla/Editor.py" line="1050" /> <source>Complete from APIs</source> <translation type="unfinished">z API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052" /> + <location filename="../QScintilla/Editor.py" line="1053" /> <source>Complete from Document and APIs</source> <translation type="unfinished">z dokumentu a API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1066" /> + <location filename="../QScintilla/Editor.py" line="1067" /> <source>Check</source> <translation>Zkontrolovat</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1077" /> + <location filename="../QScintilla/Editor.py" line="1078" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1083" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> + <location filename="../QScintilla/Editor.py" line="1089" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1092" /> + <location filename="../QScintilla/Editor.py" line="1093" /> <source>Check Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1096" /> + <location filename="../QScintilla/Editor.py" line="1097" /> <source>Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1105" /> + <location filename="../QScintilla/Editor.py" line="1106" /> <source>isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1110" /> + <location filename="../QScintilla/Editor.py" line="1111" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1114" /> + <location filename="../QScintilla/Editor.py" line="1115" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1130" /> + <location filename="../QScintilla/Editor.py" line="1131" /> <source>Tools</source> <translation type="unfinished">Nástroje</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1141" /> + <location filename="../QScintilla/Editor.py" line="1142" /> <source>Show</source> <translation>Zobrazit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1143" /> + <location filename="../QScintilla/Editor.py" line="1144" /> <source>Code metrics...</source> <translation>Metrika kódu...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1145" /> + <location filename="../QScintilla/Editor.py" line="1146" /> <source>Code coverage...</source> <translation>Pokrytí kódu...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1148" /> + <location filename="../QScintilla/Editor.py" line="1149" /> <source>Show code coverage annotations</source> <translation>Zobrazit poznámky pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1151" /> + <location filename="../QScintilla/Editor.py" line="1152" /> <source>Hide code coverage annotations</source> <translation>Skrýt poznámky pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1155" /> + <location filename="../QScintilla/Editor.py" line="1156" /> <source>Profile data...</source> <translation>Profilovat data...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1169" /> + <location filename="../QScintilla/Editor.py" line="1170" /> <source>Diagrams</source> <translation>Diagramy</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1171" /> - <source>Class Diagram...</source> - <translation>Diagram třídy...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1172" /> - <source>Package Diagram...</source> - <translation>Diagram balíčku...</translation> + <source>Class Diagram...</source> + <translation>Diagram třídy...</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1173" /> + <source>Package Diagram...</source> + <translation>Diagram balíčku...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1174" /> <source>Imports Diagram...</source> <translation>Diagram importů...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1175" /> + <location filename="../QScintilla/Editor.py" line="1176" /> <source>Application Diagram...</source> <translation>Diagram aplikace...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1180" /> + <location filename="../QScintilla/Editor.py" line="1181" /> <source>Load Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1195" /> + <location filename="../QScintilla/Editor.py" line="1196" /> <source>Languages</source> <translation>Jazyky</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1199" /> + <location filename="../QScintilla/Editor.py" line="1200" /> <source>Text</source> <translation type="unfinished">Text</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1222" /> + <location filename="../QScintilla/Editor.py" line="1223" /> <source>Guessed</source> <translation>Odhadem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1551" /> - <location filename="../QScintilla/Editor.py" line="1226" /> + <location filename="../QScintilla/Editor.py" line="1552" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>Alternatives</source> <translation>Alternativy</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1243" /> + <location filename="../QScintilla/Editor.py" line="1244" /> <source>Encodings</source> <translation>Kódování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1266" /> + <location filename="../QScintilla/Editor.py" line="1267" /> <source>Re-Open With Encoding</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1286" /> + <location filename="../QScintilla/Editor.py" line="1287" /> <source>End-of-Line Type</source> <translation>Typ Konec-řádku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1290" /> + <location filename="../QScintilla/Editor.py" line="1291" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1296" /> + <location filename="../QScintilla/Editor.py" line="1297" /> <source>Windows</source> <translation /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1302" /> + <location filename="../QScintilla/Editor.py" line="1303" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1320" /> + <location filename="../QScintilla/Editor.py" line="1321" /> <source>Spelling</source> <translation type="unfinished">Pravopis</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8268" /> - <location filename="../QScintilla/Editor.py" line="1328" /> + <location filename="../QScintilla/Editor.py" line="8276" /> + <location filename="../QScintilla/Editor.py" line="1329" /> <source>Check spelling...</source> <translation>Zatrhnout kontrolu...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1333" /> + <location filename="../QScintilla/Editor.py" line="1334" /> <source>Check spelling of selection...</source> <translation>Zatrhnout výběr kontroly...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1337" /> + <location filename="../QScintilla/Editor.py" line="1338" /> <source>Remove from dictionary</source> <translation>Odebrat ze slovníku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1354" /> + <location filename="../QScintilla/Editor.py" line="1355" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1358" /> + <location filename="../QScintilla/Editor.py" line="1359" /> <source>No Language</source> <translation>Žádný jazyk</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1385" /> + <location filename="../QScintilla/Editor.py" line="1386" /> <source>Toggle bookmark</source> <translation>Přepnout záložku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1387" /> + <location filename="../QScintilla/Editor.py" line="1388" /> <source>Next bookmark</source> <translation>Následující záložka</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1390" /> + <location filename="../QScintilla/Editor.py" line="1391" /> <source>Previous bookmark</source> <translation>Předchozí záložka</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1393" /> + <location filename="../QScintilla/Editor.py" line="1394" /> <source>Clear all bookmarks</source> <translation>Zrušit všechny záložky</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1404" /> + <location filename="../QScintilla/Editor.py" line="1405" /> <source>Toggle breakpoint</source> <translation>Přepnout breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1407" /> + <location filename="../QScintilla/Editor.py" line="1408" /> <source>Toggle temporary breakpoint</source> <translation>Přepnout dočasný breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1410" /> + <location filename="../QScintilla/Editor.py" line="1411" /> <source>Edit breakpoint...</source> <translation>Editovat breakpoint...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5927" /> - <location filename="../QScintilla/Editor.py" line="1413" /> + <location filename="../QScintilla/Editor.py" line="5928" /> + <location filename="../QScintilla/Editor.py" line="1414" /> <source>Enable breakpoint</source> <translation>Aktivovat breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1416" /> + <location filename="../QScintilla/Editor.py" line="1417" /> <source>Next breakpoint</source> <translation>Následující breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1419" /> + <location filename="../QScintilla/Editor.py" line="1420" /> <source>Previous breakpoint</source> <translation>Předchozí breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1422" /> + <location filename="../QScintilla/Editor.py" line="1423" /> <source>Clear all breakpoints</source> <translation>Zrušit všechny breakpointy</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1433" /> + <location filename="../QScintilla/Editor.py" line="1434" /> <source>Toggle all folds</source> <translation type="unfinished">Složit/rozložit všechna skládání</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1438" /> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Toggle all folds (including children)</source> <translation type="unfinished">Složit/rozložit všechna skládání (i s podsložkami)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1441" /> + <location filename="../QScintilla/Editor.py" line="1442" /> <source>Toggle current fold</source> <translation type="unfinished">Složit/rozložit aktuální složený blok</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1445" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Expand (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1449" /> + <location filename="../QScintilla/Editor.py" line="1450" /> <source>Collapse (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1454" /> + <location filename="../QScintilla/Editor.py" line="1455" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1465" /> + <location filename="../QScintilla/Editor.py" line="1466" /> <source>Goto syntax error</source> <translation>Jít na chybu syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> + <location filename="../QScintilla/Editor.py" line="1469" /> <source>Show syntax error message</source> <translation>Zobrazit hlášení syntaktické chyby</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> + <location filename="../QScintilla/Editor.py" line="1472" /> <source>Clear syntax error</source> <translation>Zrušit chybu syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1475" /> + <location filename="../QScintilla/Editor.py" line="1476" /> <source>Next warning</source> <translation>Následující varování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1478" /> + <location filename="../QScintilla/Editor.py" line="1479" /> <source>Previous warning</source> <translation>Předchozí varování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1481" /> + <location filename="../QScintilla/Editor.py" line="1482" /> <source>Show warning message</source> <translation>Zobrazit varování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1484" /> + <location filename="../QScintilla/Editor.py" line="1485" /> <source>Clear warnings</source> <translation>Vyčistit varování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1488" /> + <location filename="../QScintilla/Editor.py" line="1489" /> <source>Next uncovered line</source> <translation>Následující odkrytá řádka</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1491" /> + <location filename="../QScintilla/Editor.py" line="1492" /> <source>Previous uncovered line</source> <translation>Předchozí odkrytá řádka</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1495" /> + <location filename="../QScintilla/Editor.py" line="1496" /> <source>Next task</source> <translation>Následující úloha</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1498" /> + <location filename="../QScintilla/Editor.py" line="1499" /> <source>Previous task</source> <translation>Předchozí úloha</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1502" /> + <location filename="../QScintilla/Editor.py" line="1503" /> <source>Next change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1505" /> + <location filename="../QScintilla/Editor.py" line="1506" /> <source>Previous change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1508" /> + <location filename="../QScintilla/Editor.py" line="1509" /> <source>Clear changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1537" /> - <location filename="../QScintilla/Editor.py" line="1528" /> - <source>Export source</source> - <translation>Export zdroj</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1529" /> - <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> - <translation><p>Pro formát exportu <b>{0}</b> není exportér dostupný. Zrušeno.</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1538" /> + <location filename="../QScintilla/Editor.py" line="1529" /> + <source>Export source</source> + <translation>Export zdroj</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1530" /> + <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> + <translation><p>Pro formát exportu <b>{0}</b> není exportér dostupný. Zrušeno.</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1539" /> <source>No export format given. Aborting...</source> <translation>Nebyl zadán forám exportu. Zrušeno....</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1548" /> + <location filename="../QScintilla/Editor.py" line="1549" /> <source>Alternatives ({0})</source> <translation>Alternativy ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1571" /> - <source>Pygments Lexer</source> - <translation /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1572" /> + <source>Pygments Lexer</source> + <translation /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1573" /> <source>Select the Pygments lexer to apply.</source> <translation>Použít Pygments lexer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2120" /> - <source>Modification of Read Only file</source> - <translation>Modifikace souboru otevřeného jen pro čtení</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2121" /> + <source>Modification of Read Only file</source> + <translation>Modifikace souboru otevřeného jen pro čtení</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2122" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Pokoušíte se změnit soubor, který je otevřen jen pro čtení. Prosím, uložte jej nejdříve do jiného souboru.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2556" /> - <source>Add Breakpoint</source> - <translation type="unfinished">Přidat breakpoint</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2557" /> + <source>Add Breakpoint</source> + <translation type="unfinished">Přidat breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2558" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2890" /> + <location filename="../QScintilla/Editor.py" line="2891" /> <source>Printing...</source> <translation>Tisk...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2907" /> + <location filename="../QScintilla/Editor.py" line="2908" /> <source>Printing completed</source> <translation>Tisk je hotov</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2909" /> + <location filename="../QScintilla/Editor.py" line="2910" /> <source>Error while printing</source> <translation>Chyba během tisku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2912" /> + <location filename="../QScintilla/Editor.py" line="2913" /> <source>Printing aborted</source> <translation>Tisk byl zrušen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3274" /> - <source>File Modified</source> - <translation>Soubor je modifikován</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3275" /> + <source>File Modified</source> + <translation>Soubor je modifikován</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3276" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Soubor <b>{0}</b> obsahuje neuložené změny.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="3334" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nemůže být přejmenován.<br />Důvod: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3509" /> - <location filename="../QScintilla/Editor.py" line="3490" /> - <location filename="../QScintilla/Editor.py" line="3452" /> - <source>Save File</source> - <translation>Uložit soubor</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="3453" /> - <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> - <translation><p>Soubor <b>{0}</b> nemůže být přejmenován.<br />Důvod: {1}</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3510" /> + <location filename="../QScintilla/Editor.py" line="3491" /> + <location filename="../QScintilla/Editor.py" line="3453" /> + <source>Save File</source> + <translation>Uložit soubor</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3454" /> + <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> + <translation><p>Soubor <b>{0}</b> nemůže být přejmenován.<br />Důvod: {1}</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3511" /> <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="../QScintilla/Editor.py" line="3644" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3645" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3646" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5101" /> - <source>Autocompletion</source> - <translation>Autodoplňování</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5102" /> + <source>Autocompletion</source> + <translation>Autodoplňování</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5103" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Autodoplňování není dostupné protože zdrojová část autodoplňování nebyla nalezena.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5230" /> - <source>Auto-Completion Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5231" /> + <source>Auto-Completion Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5232" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523" /> - <source>Call-Tips Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5524" /> + <source>Call-Tips Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5525" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5931" /> + <location filename="../QScintilla/Editor.py" line="5932" /> <source>Disable breakpoint</source> <translation>Deaktivovat breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6310" /> + <location filename="../QScintilla/Editor.py" line="6315" /> <source>Code Coverage</source> <translation>Pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6311" /> + <location filename="../QScintilla/Editor.py" line="6316" /> <source>Please select a coverage file</source> <translation>Prosím, vyberte soubor s pokrytím kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6386" /> - <location filename="../QScintilla/Editor.py" line="6378" /> + <location filename="../QScintilla/Editor.py" line="6391" /> + <location filename="../QScintilla/Editor.py" line="6383" /> <source>Show Code Coverage Annotations</source> <translation>Zobrazit poznámky pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6379" /> + <location filename="../QScintilla/Editor.py" line="6384" /> <source>All lines have been covered.</source> <translation>Všechny řádky byly pokryty.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387" /> + <location filename="../QScintilla/Editor.py" line="6392" /> <source>There is no coverage file available.</source> <translation>Soubor s pokrytím není dostupný.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6491" /> + <location filename="../QScintilla/Editor.py" line="6496" /> <source>Profile Data</source> <translation>Profilovat data</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6492" /> + <location filename="../QScintilla/Editor.py" line="6497" /> <source>Please select a profile file</source> <translation>Prosím, vyberte soubor s profilem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6653" /> - <location filename="../QScintilla/Editor.py" line="6647" /> + <location filename="../QScintilla/Editor.py" line="6658" /> + <location filename="../QScintilla/Editor.py" line="6652" /> <source>Syntax Error</source> <translation>Chyba syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6654" /> + <location filename="../QScintilla/Editor.py" line="6659" /> <source>No syntax error message available.</source> <translation>Hlášení syntaktické chyby není dostupné.</translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="6873" /> <location filename="../QScintilla/Editor.py" line="6867" /> - <location filename="../QScintilla/Editor.py" line="6861" /> <source>Warning</source> <translation type="unfinished">Varování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6867" /> + <location filename="../QScintilla/Editor.py" line="6873" /> <source>No warning messages available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6937" /> <source>Style: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6934" /> + <location filename="../QScintilla/Editor.py" line="6942" /> <source>Warning: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6941" /> + <location filename="../QScintilla/Editor.py" line="6949" /> <source>Error: {0}</source> <translation type="unfinished">Chyby: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Macro Name</source> <translation>Název makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Select a macro name:</source> <translation>Vyberte název makra:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7074" /> + <location filename="../QScintilla/Editor.py" line="7082" /> <source>Load macro file</source> <translation>Načíst soubor makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7120" /> - <location filename="../QScintilla/Editor.py" line="7076" /> + <location filename="../QScintilla/Editor.py" line="7128" /> + <location filename="../QScintilla/Editor.py" line="7084" /> <source>Macro files (*.macro)</source> <translation>Macro soubory (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7098" /> - <location filename="../QScintilla/Editor.py" line="7088" /> + <location filename="../QScintilla/Editor.py" line="7106" /> + <location filename="../QScintilla/Editor.py" line="7096" /> <source>Error loading macro</source> <translation>Chyba při načítání makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7089" /> + <location filename="../QScintilla/Editor.py" line="7097" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor s makrem <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7099" /> + <location filename="../QScintilla/Editor.py" line="7107" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Soubor s makrem <b>{0}</b> je poškozen.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7118" /> + <location filename="../QScintilla/Editor.py" line="7126" /> <source>Save macro file</source> <translation>Uložit soubor s makrem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7136" /> + <location filename="../QScintilla/Editor.py" line="7144" /> <source>Save macro</source> <translation>Uložit makro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7137" /> + <location filename="../QScintilla/Editor.py" line="7145" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7152" /> + <location filename="../QScintilla/Editor.py" line="7160" /> <source>Error saving macro</source> <translation>Chyba při ukládání makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7161" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>So souboru s makrem <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7166" /> + <location filename="../QScintilla/Editor.py" line="7174" /> <source>Start Macro Recording</source> <translation>Spustit záznam makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7167" /> + <location filename="../QScintilla/Editor.py" line="7175" /> <source>Macro recording is already active. Start new?</source> <translation>Nahrávání makra již probíhá. Spustit nové?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7193" /> + <location filename="../QScintilla/Editor.py" line="7201" /> <source>Macro Recording</source> <translation>Záznam makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7194" /> + <location filename="../QScintilla/Editor.py" line="7202" /> <source>Enter name of the macro:</source> <translation>Vložte název makra:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7344" /> + <location filename="../QScintilla/Editor.py" line="7352" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7350" /> + <location filename="../QScintilla/Editor.py" line="7358" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7357" /> + <location filename="../QScintilla/Editor.py" line="7365" /> <source>File changed</source> <translation>Soubor změněn</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7407" /> + <location filename="../QScintilla/Editor.py" line="7415" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7712" /> + <location filename="../QScintilla/Editor.py" line="7720" /> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7713" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> není soubor.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7733" /> + <location filename="../QScintilla/Editor.py" line="7741" /> <source>Resources</source> <translation>Zdroje</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7735" /> + <location filename="../QScintilla/Editor.py" line="7743" /> <source>Add file...</source> <translation>Přidat soubor...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7736" /> + <location filename="../QScintilla/Editor.py" line="7744" /> <source>Add files...</source> <translation>Přidat soubory...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7737" /> + <location filename="../QScintilla/Editor.py" line="7745" /> <source>Add aliased file...</source> <translation>Přidat zástupce souboru...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7739" /> + <location filename="../QScintilla/Editor.py" line="7747" /> <source>Add localized resource...</source> <translation>Přidat lokalizované resource...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7742" /> + <location filename="../QScintilla/Editor.py" line="7750" /> <source>Add resource frame</source> <translation>Přidat resource frame</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7761" /> + <location filename="../QScintilla/Editor.py" line="7769" /> <source>Add file resource</source> <translation>Přidat soubor resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7775" /> + <location filename="../QScintilla/Editor.py" line="7783" /> <source>Add file resources</source> <translation>Přidat soubory resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7799" /> - <location filename="../QScintilla/Editor.py" line="7793" /> + <location filename="../QScintilla/Editor.py" line="7807" /> + <location filename="../QScintilla/Editor.py" line="7801" /> <source>Add aliased file resource</source> <translation>Přidat zástupce souboru resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7800" /> + <location filename="../QScintilla/Editor.py" line="7808" /> <source>Alias for file <b>{0}</b>:</source> <translation>Zástupce pro soubor <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7875" /> + <location filename="../QScintilla/Editor.py" line="7883" /> <source>Package Diagram</source> <translation>Diagram balíčku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7876" /> + <location filename="../QScintilla/Editor.py" line="7884" /> <source>Include class attributes?</source> <translation>Včetně atributů třídy?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7896" /> + <location filename="../QScintilla/Editor.py" line="7904" /> <source>Imports Diagram</source> <translation>Importovat diagram</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7897" /> + <location filename="../QScintilla/Editor.py" line="7905" /> <source>Include imports from external modules?</source> <translation>Zahrnout importy z externích modulů?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7916" /> + <location filename="../QScintilla/Editor.py" line="7924" /> <source>Application Diagram</source> <translation>Diagram aplikace</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7917" /> + <location filename="../QScintilla/Editor.py" line="7925" /> <source>Include module names?</source> <translation>Včetně jmen modulů?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8272" /> + <location filename="../QScintilla/Editor.py" line="8280" /> <source>Add to dictionary</source> <translation>Přidat do slovníku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8274" /> + <location filename="../QScintilla/Editor.py" line="8282" /> <source>Ignore All</source> <translation>Ignorovat vše</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8692" /> + <location filename="../QScintilla/Editor.py" line="8700" /> <source>Sort Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8693" /> + <location filename="../QScintilla/Editor.py" line="8701" /> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8786" /> + <location filename="../QScintilla/Editor.py" line="8794" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8787" /> + <location filename="../QScintilla/Editor.py" line="8795" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8883" /> + <location filename="../QScintilla/Editor.py" line="8891" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8889" /> + <location filename="../QScintilla/Editor.py" line="8897" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="8965" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8958" /> + <location filename="../QScintilla/Editor.py" line="8966" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -19867,38 +19867,38 @@ <context> <name>EricTextEditSearchWidget</name> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="115" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="116" /> <source>Find:</source> <translation type="unfinished">Hledat:</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="141" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="142" /> <source>Match case</source> <translation type="unfinished">Rozlišit velké a malé znaky</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="146" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="147" /> <source>Whole word</source> <translation type="unfinished">Celé slovo</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="156" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="157" /> <source>Press to find the previous occurrence</source> <translation type="unfinished">Stisknout pro vyhledání předchozího výskytu</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="162" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="163" /> <source>Press to find the next occurrence</source> <translation type="unfinished">Stisknout pro vyhledání následujícího výskytu</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="481" /> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="433" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="482" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="434" /> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' nebyl nalezen.</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="486" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="487" /> <source>Match {0} of {1}</source> <translation type="unfinished" /> </message> @@ -33146,29 +33146,29 @@ <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="119" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="118" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="121" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="120" /> <source>Find Next</source> <translation type="unfinished">Najít další</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="131" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="130" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="133" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="132" /> <source>Find Prev</source> <translation type="unfinished">Najít předchozí</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="297" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="299" /> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' nebyl nalezen.</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="417" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="419" /> <source>Replaced {0} occurrences.</source> <translation type="unfinished">Nahrazeno {0} výskytů.</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="423" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="425" /> <source>Nothing replaced because '{0}' was not found.</source> <translation type="unfinished">Nebylo nic nahrazeno, protože '{0}' nebyl nalezen.</translation> </message> @@ -70982,74 +70982,74 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="155" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="154" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="157" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="156" /> <source>Find Next</source> <translation>Najít další</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="168" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="167" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="170" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="169" /> <source>Find Prev</source> <translation>Najít předchozí</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="181" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="180" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="183" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="182" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="195" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="194" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="197" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="196" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="209" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="208" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="211" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="210" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="297" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="299" /> <source>Press to find the next occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="304" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="306" /> <source>Press to find the previous occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="311" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="313" /> <source>Press to replace the selection and search for the next occurence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="321" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="323" /> <source>Press to replace the selection ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="328" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="330" /> <source>Press to replace all occurrences ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1114" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="665" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="627" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1123" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="674" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="636" /> <source>'{0}' was not found.</source> <translation>'{0}' nebyl nalezen.</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1267" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1276" /> <source>Replaced {0} occurrences.</source> <translation>Nahrazeno {0} výskytů.</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1273" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1282" /> <source>Nothing replaced because '{0}' was not found.</source> <translation>Nebylo nic nahrazeno, protože '{0}' nebyl nalezen.</translation> </message> @@ -71168,7 +71168,7 @@ <translation>Rozlišit velké a malé znaky</translation> </message> <message> - <location filename="../WebBrowser/SearchWidget.py" line="100" /> + <location filename="../WebBrowser/SearchWidget.py" line="101" /> <source>Expression was not found.</source> <translation>Výraz nebyl nalezen.</translation> </message> @@ -71183,7 +71183,7 @@ <translation type="unfinished">Regexp</translation> </message> <message> - <location filename="../UI/SearchWidget.py" line="212" /> + <location filename="../UI/SearchWidget.py" line="213" /> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' nebyl nalezen.</translation> </message> @@ -72456,142 +72456,157 @@ <context> <name>Shell</name> <message> - <location filename="../QScintilla/Shell.py" line="162" /> + <location filename="../QScintilla/Shell.py" line="164" /> <source>Shell - Passive</source> <translation>Shell - pasivní</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="164" /> + <location filename="../QScintilla/Shell.py" line="166" /> <source>Shell</source> <translation /> </message> <message> - <location filename="../QScintilla/Shell.py" line="168" /> - <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. '%quit' or '%exit' is used to exit the application. These commands (except '%environments', '%envs' and '%which') are available through the window menus as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="198" /> - <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. These commands (except '%environments' and '%envs') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="262" /> + <location filename="../QScintilla/Shell.py" line="170" /> + <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="189" /> + <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="244" /> <source>Passive >>> </source> <translation>Pasivní >>> </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="305" /> + <location filename="../QScintilla/Shell.py" line="287" /> <source>Start</source> <translation /> </message> <message> - <location filename="../QScintilla/Shell.py" line="310" /> + <location filename="../QScintilla/Shell.py" line="292" /> <source>History</source> <translation>Historie</translation> </message> <message> + <location filename="../QScintilla/Shell.py" line="293" /> + <source>Select entry</source> + <translation>Vybrat vstupy</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="294" /> + <source>Show</source> + <translation>Zobrazit</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="306" /> + <location filename="../QScintilla/Shell.py" line="295" /> + <source>Clear</source> + <translation>Vyčistit</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="299" /> + <source>Cut</source> + <translation>Vyjmout</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="300" /> + <source>Copy</source> + <translation>Kopírovat</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="301" /> + <source>Paste</source> + <translation>Vložit</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="304" /> + <source>Find</source> + <translation type="unfinished">Hledat</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="307" /> + <source>Restart</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="308" /> + <source>Restart and Clear</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="311" /> - <source>Select entry</source> - <translation>Vybrat vstupy</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="312" /> - <source>Show</source> - <translation>Zobrazit</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="325" /> + <source>Active Name</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="313" /> - <source>Clear</source> - <translation>Vyčistit</translation> + <source>Save Contents...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="315" /> + <source>Configure...</source> + <translation>Konfigurovat...</translation> </message> <message> <location filename="../QScintilla/Shell.py" line="317" /> - <source>Cut</source> - <translation>Vyjmout</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="318" /> - <source>Copy</source> - <translation>Kopírovat</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="319" /> - <source>Paste</source> - <translation>Vložit</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="323" /> - <source>Find</source> - <translation type="unfinished">Hledat</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="326" /> - <source>Restart</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="327" /> - <source>Restart and Clear</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="330" /> - <source>Active Name</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="332" /> - <source>Save Contents...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="334" /> - <source>Configure...</source> - <translation>Konfigurovat...</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="2067" /> - <location filename="../QScintilla/Shell.py" line="1846" /> - <location filename="../QScintilla/Shell.py" line="1845" /> - <location filename="../QScintilla/Shell.py" line="408" /> + <source>Special Commands Help</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2087" /> + <location filename="../QScintilla/Shell.py" line="1849" /> + <location filename="../QScintilla/Shell.py" line="1848" /> + <location filename="../QScintilla/Shell.py" line="391" /> <source>Project</source> <translation type="unfinished">Projekt</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="806" /> + <location filename="../QScintilla/Shell.py" line="780" /> + <source>Clear History</source> + <translation type="unfinished">Vyčistit historii</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="781" /> + <source>Shall the current history really be cleared?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="803" /> <source>Select History</source> <translation>Vybrat historii</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="807" /> + <location filename="../QScintilla/Shell.py" line="804" /> <source>Select the history entry to execute (most recent shown last).</source> <translation>Vybrat vstup historie pro vykonání (nejaktuálnější zobrazen poslední).</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="872" /> + <location filename="../QScintilla/Shell.py" line="878" /> <source>Passive Debug Mode</source> <translation>Pasivní debug mód</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="873" /> + <location filename="../QScintilla/Shell.py" line="879" /> <source> Not connected</source> <translation>Nepřipojen</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="876" /> + <location filename="../QScintilla/Shell.py" line="882" /> <source>No.</source> <translation>Č.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="878" /> + <location filename="../QScintilla/Shell.py" line="884" /> <source>{0} on {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="925" /> + <location filename="../QScintilla/Shell.py" line="931" /> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -72599,91 +72614,128 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="934" /> + <location filename="../QScintilla/Shell.py" line="940" /> <source>Exception "{0}" {1} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="954" /> + <location filename="../QScintilla/Shell.py" line="960" /> <source>Unspecified syntax error. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="957" /> + <location filename="../QScintilla/Shell.py" line="963" /> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="981" /> + <location filename="../QScintilla/Shell.py" line="987" /> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1063" /> + <location filename="../QScintilla/Shell.py" line="1069" /> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1071" /> + <location filename="../QScintilla/Shell.py" line="1077" /> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1097" /> + <location filename="../QScintilla/Shell.py" line="1103" /> <source><{0}> {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1892" /> + <location filename="../QScintilla/Shell.py" line="1886" /> <source>Available Virtual Environments: {0} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1935" /> - <location filename="../QScintilla/Shell.py" line="1899" /> + <location filename="../QScintilla/Shell.py" line="1955" /> + <location filename="../QScintilla/Shell.py" line="1892" /> <source>Current Virtual Environment: '{0}' </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2207" /> + <location filename="../QScintilla/Shell.py" line="1910" /> + <source>Error: Argument must be an integer value. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1927" /> + <source>Error: Command '{0}' is not supported. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2227" /> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2208" /> + <location filename="../QScintilla/Shell.py" line="2228" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> není soubor.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2451" /> - <location filename="../QScintilla/Shell.py" line="2437" /> - <location filename="../QScintilla/Shell.py" line="2416" /> + <location filename="../QScintilla/Shell.py" line="2471" /> + <location filename="../QScintilla/Shell.py" line="2457" /> + <location filename="../QScintilla/Shell.py" line="2436" /> <source>Save Shell Contents</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2418" /> - <source>Text Files (*.txt);;All Files (*)</source> - <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation> - </message> - <message> <location filename="../QScintilla/Shell.py" line="2438" /> + <source>Text Files (*.txt);;All Files (*)</source> + <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2458" /> <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="../QScintilla/Shell.py" line="2452" /> + <location filename="../QScintilla/Shell.py" line="2472" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished"><p>Soubor <b>{0}</b> nelze uložit.<br />Důvod: {1}</p></translation> </message> + <message> + <location filename="../QScintilla/Shell.py" line="2486" /> + <source><tr><td>%restart</td><td>Kill the shell and start a new one.</td></tr><tr><td>%clear</td><td>Clear the display of the shell window.</td></tr><tr><td>%start [environment]</td><td>Start a shell for a virtual environment with the given name. If no name if given, a default shell is started.</td></tr><tr><td>%envs<br/>%environments</td><td>Show a list of known virtual environment names.</td></tr><tr><td>%which</td><td>Show the name of the active virtual environment.</td></tr><tr><td>%hist [n]<br/>%history [n]</td><td>Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.</td></tr><tr><td>%shist<br/>%shistory<br/>%select_history</td><td>Select a command from the history.</td></tr><tr><td>%chist<br/>%chistory<br/>%clear_history</td><td>Clear the current history after confirmation.</td></tr><tr><td>%help</td><td>Show this help text.</td></tr></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2508" /> + <source><tr><td>%quit<br/>%quit()<br/>%exit<br/>%exit()</td><td>Exit the application.</td></tr></table><p>These commands are available through the window menus as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2516" /> + <source></table><p>These commands are available through the context menu as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2523" /> + <source>Shell Special Commands</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2524" /> + <source>The shell supports these special commands:</source> + <translation type="unfinished" /> + </message> </context> <context> <name>ShellHistoryDialog</name>
--- a/src/eric7/i18n/eric7_de.ts Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/i18n/eric7_de.ts Sun Sep 03 17:35:15 2023 +0200 @@ -12326,984 +12326,984 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3332" /> - <location filename="../QScintilla/Editor.py" line="428" /> - <location filename="../QScintilla/Editor.py" line="413" /> + <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="414" /> <source>Open File</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="414" /> + <location filename="../QScintilla/Editor.py" line="415" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> <translation><p>Die Größe der Datei <b>{0}</b> ist <b>{1} KB</b> und überschreitet die konfigurierte Grenze von <b>{2} KB</b>. Sie wird nicht geöffnet!</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="430" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>Die Größe der Datei <b>{0}</b> ist <b>{1} KB</b>. Soll sie wirklich geladen werden?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="526" /> + <location filename="../QScintilla/Editor.py" line="527" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Quelltexteditorfenster</b><p>Dieses Fenster wird zum Bearbeiten von Quelltexten benutzt. Sie können beliebig viele dieser Fenster öffnen. Der Name der Datei wird im Titel des Fensters dargestellt.</p><p>Um Haltepunkte zu setzen, klicken sie in den Raum zwischen den Zeilennummern und der Faltungsspalte. Über das Kontextmenü des Bereiches links des Editors können Haltepunkte bearbeitet werden.</p><p>Um Lesezeichen zu setzen, drücken Sie die Shift-Taste und klicken in den Raum zwischen den Zeilennummern und der Faltungsspalte.</p><p>Diese Aktionen können über das Kontextmenü umgedreht werden.</p><p>Ein Klick auf einen Syntaxfehler-Marker mit gedrückter Strg-Taste zeigt die zugehörige Fehlermeldung an.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="890" /> + <location filename="../QScintilla/Editor.py" line="891" /> <source>Undo</source> <translation>Rückgängig</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="893" /> + <location filename="../QScintilla/Editor.py" line="894" /> <source>Redo</source> <translation>Wiederherstellen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="896" /> + <location filename="../QScintilla/Editor.py" line="897" /> <source>Revert to last saved state</source> <translation>Zurück zum letzten gesichert Zustand</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="900" /> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Cut</source> <translation>Ausschneiden</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="903" /> + <location filename="../QScintilla/Editor.py" line="904" /> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="906" /> + <location filename="../QScintilla/Editor.py" line="907" /> <source>Paste</source> <translation>Einfügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="913" /> <source>Indent</source> <translation>Einrücken</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="917" /> + <location filename="../QScintilla/Editor.py" line="918" /> <source>Unindent</source> <translation>Einrücken rückgängig</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="922" /> + <location filename="../QScintilla/Editor.py" line="923" /> <source>Comment</source> <translation>Kommentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="927" /> + <location filename="../QScintilla/Editor.py" line="928" /> <source>Uncomment</source> <translation>Kommentar entfernen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="9150" /> - <location filename="../QScintilla/Editor.py" line="932" /> + <location filename="../QScintilla/Editor.py" line="9158" /> + <location filename="../QScintilla/Editor.py" line="933" /> <source>Generate Docstring</source> <translation>Docstring erzeugen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="935" /> - <source>Select to brace</source> - <translation>Zur Klammer auswählen</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="936" /> - <source>Select all</source> - <translation>Alles auswählen</translation> + <source>Select to brace</source> + <translation>Zur Klammer auswählen</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="937" /> + <source>Select all</source> + <translation>Alles auswählen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="938" /> <source>Deselect all</source> <translation>Auswahl aufheben</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939" /> + <location filename="../QScintilla/Editor.py" line="940" /> <source>Execute Selection In Console</source> <translation>Auswahl in Konsole ausführen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="951" /> + <location filename="../QScintilla/Editor.py" line="952" /> <source>Use Monospaced Font</source> <translation>Benutze Monospace Font</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="957" /> <source>Autosave enabled</source> <translation>Autom. Speicherung aktiv</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="962" /> <source>Typing aids enabled</source> <translation>Eingabehilfen aktiv</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="969" /> + <location filename="../QScintilla/Editor.py" line="970" /> <source>Automatic Completion enabled</source> <translation>Automatische Vervollständigung aktiv</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="978" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Calltip</source> <translation>Calltip</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="981" /> + <location filename="../QScintilla/Editor.py" line="982" /> <source>Code Info</source> <translation>Code Info</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="996" /> + <location filename="../QScintilla/Editor.py" line="997" /> <source>New Document View</source> <translation>Neue Dokumentenansicht</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1001" /> + <location filename="../QScintilla/Editor.py" line="1002" /> <source>New Document View (with new split)</source> <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1013" /> + <location filename="../QScintilla/Editor.py" line="1014" /> <source>Save As...</source> <translation>Speichern unter...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1018" /> + <location filename="../QScintilla/Editor.py" line="1019" /> <source>Save Copy...</source> <translation>Kopie speichern...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1040" /> - <location filename="../QScintilla/Editor.py" line="1037" /> + <location filename="../QScintilla/Editor.py" line="1041" /> + <location filename="../QScintilla/Editor.py" line="1038" /> <source>Complete</source> <translation>Vervollständigen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1044" /> + <location filename="../QScintilla/Editor.py" line="1045" /> <source>Clear Completions Cache</source> <translation>Vervollständigungsspeicher löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1047" /> + <location filename="../QScintilla/Editor.py" line="1048" /> <source>Complete from Document</source> <translation>Vervollständigung vom Dokument</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1049" /> + <location filename="../QScintilla/Editor.py" line="1050" /> <source>Complete from APIs</source> <translation>Vervollständigung von APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052" /> + <location filename="../QScintilla/Editor.py" line="1053" /> <source>Complete from Document and APIs</source> <translation>Vervollständigung vom Dokument und von APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1066" /> + <location filename="../QScintilla/Editor.py" line="1067" /> <source>Check</source> <translation>Prüfen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1077" /> + <location filename="../QScintilla/Editor.py" line="1078" /> <source>Code Formatting</source> <translation>Code Formatierung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1083" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Black</source> <translation>Black</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> + <location filename="../QScintilla/Editor.py" line="1089" /> <source>Format Code</source> <translation>Code formatieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1092" /> + <location filename="../QScintilla/Editor.py" line="1093" /> <source>Check Formatting</source> <translation>Umformatierung prüfen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1096" /> + <location filename="../QScintilla/Editor.py" line="1097" /> <source>Formatting Diff</source> <translation>Diff der Umformatierung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1105" /> + <location filename="../QScintilla/Editor.py" line="1106" /> <source>isort</source> <translation>isort</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1110" /> + <location filename="../QScintilla/Editor.py" line="1111" /> <source>Sort Imports</source> <translation>Imports Sortieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1114" /> + <location filename="../QScintilla/Editor.py" line="1115" /> <source>Imports Sorting Diff</source> <translation>Diff der Imports Sortierung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1130" /> + <location filename="../QScintilla/Editor.py" line="1131" /> <source>Tools</source> <translation>Werkzeuge</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1141" /> + <location filename="../QScintilla/Editor.py" line="1142" /> <source>Show</source> <translation>Zeige</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1143" /> + <location filename="../QScintilla/Editor.py" line="1144" /> <source>Code metrics...</source> <translation>Quelltextmetriken...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1145" /> + <location filename="../QScintilla/Editor.py" line="1146" /> <source>Code coverage...</source> <translation>Quelltext Abdeckung...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1148" /> + <location filename="../QScintilla/Editor.py" line="1149" /> <source>Show code coverage annotations</source> <translation>Markiere Zeilen ohne Abdeckung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1151" /> + <location filename="../QScintilla/Editor.py" line="1152" /> <source>Hide code coverage annotations</source> <translation>Lösche Abdeckungsmarkierungen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1155" /> + <location filename="../QScintilla/Editor.py" line="1156" /> <source>Profile data...</source> <translation>Profildaten...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1169" /> + <location filename="../QScintilla/Editor.py" line="1170" /> <source>Diagrams</source> <translation>Diagramme</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1171" /> - <source>Class Diagram...</source> - <translation>Klassendiagramm...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1172" /> - <source>Package Diagram...</source> - <translation>Package Diagramm...</translation> + <source>Class Diagram...</source> + <translation>Klassendiagramm...</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1173" /> + <source>Package Diagram...</source> + <translation>Package Diagramm...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1174" /> <source>Imports Diagram...</source> <translation>Imports-Diagramm...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1175" /> + <location filename="../QScintilla/Editor.py" line="1176" /> <source>Application Diagram...</source> <translation>Applikations-Diagramm...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1180" /> + <location filename="../QScintilla/Editor.py" line="1181" /> <source>Load Diagram...</source> <translation>Diagramm laden...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1195" /> + <location filename="../QScintilla/Editor.py" line="1196" /> <source>Languages</source> <translation>Sprachen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1199" /> + <location filename="../QScintilla/Editor.py" line="1200" /> <source>Text</source> <translation>Text</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1222" /> + <location filename="../QScintilla/Editor.py" line="1223" /> <source>Guessed</source> <translation>Ermittelt</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1551" /> - <location filename="../QScintilla/Editor.py" line="1226" /> + <location filename="../QScintilla/Editor.py" line="1552" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>Alternatives</source> <translation>Alternativen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1243" /> + <location filename="../QScintilla/Editor.py" line="1244" /> <source>Encodings</source> <translation>Kodierungen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1266" /> + <location filename="../QScintilla/Editor.py" line="1267" /> <source>Re-Open With Encoding</source> <translation>Öffnen mit Kodierung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1286" /> + <location filename="../QScintilla/Editor.py" line="1287" /> <source>End-of-Line Type</source> <translation>Zeilenendemarkierung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1290" /> + <location filename="../QScintilla/Editor.py" line="1291" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1296" /> + <location filename="../QScintilla/Editor.py" line="1297" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1302" /> + <location filename="../QScintilla/Editor.py" line="1303" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1320" /> + <location filename="../QScintilla/Editor.py" line="1321" /> <source>Spelling</source> <translation>Rechtschreibung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8268" /> - <location filename="../QScintilla/Editor.py" line="1328" /> + <location filename="../QScintilla/Editor.py" line="8276" /> + <location filename="../QScintilla/Editor.py" line="1329" /> <source>Check spelling...</source> <translation>Rechtschreibprüfung...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1333" /> + <location filename="../QScintilla/Editor.py" line="1334" /> <source>Check spelling of selection...</source> <translation>Rechtschreibprüfung für Auswahl...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1337" /> + <location filename="../QScintilla/Editor.py" line="1338" /> <source>Remove from dictionary</source> <translation>Aus dem Wörterbuch entfernen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1354" /> + <location filename="../QScintilla/Editor.py" line="1355" /> <source>Spell Check Languages</source> <translation>Sprachen für Rechtschreibprüfung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1358" /> + <location filename="../QScintilla/Editor.py" line="1359" /> <source>No Language</source> <translation>Keine Sprache</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1385" /> + <location filename="../QScintilla/Editor.py" line="1386" /> <source>Toggle bookmark</source> <translation>Lesezeichen setzen/löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1387" /> + <location filename="../QScintilla/Editor.py" line="1388" /> <source>Next bookmark</source> <translation>Nächstes Lesezeichen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1390" /> + <location filename="../QScintilla/Editor.py" line="1391" /> <source>Previous bookmark</source> <translation>Vorheriges Lesezeichen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1393" /> + <location filename="../QScintilla/Editor.py" line="1394" /> <source>Clear all bookmarks</source> <translation>Alle Lesezeichen löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1404" /> + <location filename="../QScintilla/Editor.py" line="1405" /> <source>Toggle breakpoint</source> <translation>Haltepunkt setzen/löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1407" /> + <location filename="../QScintilla/Editor.py" line="1408" /> <source>Toggle temporary breakpoint</source> <translation>Temporären Haltepunkt setzen/löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1410" /> + <location filename="../QScintilla/Editor.py" line="1411" /> <source>Edit breakpoint...</source> <translation>Haltepunkt bearbeiten...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5927" /> - <location filename="../QScintilla/Editor.py" line="1413" /> + <location filename="../QScintilla/Editor.py" line="5928" /> + <location filename="../QScintilla/Editor.py" line="1414" /> <source>Enable breakpoint</source> <translation>Haltepunkt aktivieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1416" /> + <location filename="../QScintilla/Editor.py" line="1417" /> <source>Next breakpoint</source> <translation>Nächster Haltepunkt</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1419" /> + <location filename="../QScintilla/Editor.py" line="1420" /> <source>Previous breakpoint</source> <translation>Vorheriger Haltepunkt</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1422" /> + <location filename="../QScintilla/Editor.py" line="1423" /> <source>Clear all breakpoints</source> <translation>Alle Haltepunkte löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1433" /> + <location filename="../QScintilla/Editor.py" line="1434" /> <source>Toggle all folds</source> <translation>Alle Faltungen umschalten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1438" /> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Toggle all folds (including children)</source> <translation>Alle Faltungen umschalten (inkl. Unterfaltungen)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1441" /> + <location filename="../QScintilla/Editor.py" line="1442" /> <source>Toggle current fold</source> <translation>Aktuelle Faltung umschalten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1445" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Expand (including children)</source> <translation>Ausklappen (inkl. Unterfaltungen)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1449" /> + <location filename="../QScintilla/Editor.py" line="1450" /> <source>Collapse (including children)</source> <translation>Einklappen (inkl. Unterfaltungen)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1454" /> + <location filename="../QScintilla/Editor.py" line="1455" /> <source>Clear all folds</source> <translation>Alle Faltungen aufklappen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1465" /> + <location filename="../QScintilla/Editor.py" line="1466" /> <source>Goto syntax error</source> <translation>Zu Syntaxfehler gehen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> + <location filename="../QScintilla/Editor.py" line="1469" /> <source>Show syntax error message</source> <translation>Zeige Syntaxfehlermeldung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> + <location filename="../QScintilla/Editor.py" line="1472" /> <source>Clear syntax error</source> <translation>Syntaxfehler löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1475" /> + <location filename="../QScintilla/Editor.py" line="1476" /> <source>Next warning</source> <translation>Nächste Warnung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1478" /> + <location filename="../QScintilla/Editor.py" line="1479" /> <source>Previous warning</source> <translation>Vorherige Warnung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1481" /> + <location filename="../QScintilla/Editor.py" line="1482" /> <source>Show warning message</source> <translation>Zeige Warnung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1484" /> + <location filename="../QScintilla/Editor.py" line="1485" /> <source>Clear warnings</source> <translation>Warnungen löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1488" /> + <location filename="../QScintilla/Editor.py" line="1489" /> <source>Next uncovered line</source> <translation>Nächste nichtabgedeckte Zeile</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1491" /> + <location filename="../QScintilla/Editor.py" line="1492" /> <source>Previous uncovered line</source> <translation>Vorige nichtabgedeckte Zeile</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1495" /> + <location filename="../QScintilla/Editor.py" line="1496" /> <source>Next task</source> <translation>Nächste Aufgabe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1498" /> + <location filename="../QScintilla/Editor.py" line="1499" /> <source>Previous task</source> <translation>Vorherige Aufgabe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1502" /> + <location filename="../QScintilla/Editor.py" line="1503" /> <source>Next change</source> <translation>Nächste Änderung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1505" /> + <location filename="../QScintilla/Editor.py" line="1506" /> <source>Previous change</source> <translation>Vorherige Änderung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1508" /> + <location filename="../QScintilla/Editor.py" line="1509" /> <source>Clear changes</source> <translation>Änderungsmarker löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1537" /> - <location filename="../QScintilla/Editor.py" line="1528" /> - <source>Export source</source> - <translation>Quelltext exportieren</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1529" /> - <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> - <translation><p>Für das Exportformat <b>{0}</b> steht kein Exporter zur Verfügung. Abbruch...</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1538" /> + <location filename="../QScintilla/Editor.py" line="1529" /> + <source>Export source</source> + <translation>Quelltext exportieren</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1530" /> + <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> + <translation><p>Für das Exportformat <b>{0}</b> steht kein Exporter zur Verfügung. Abbruch...</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1539" /> <source>No export format given. Aborting...</source> <translation>Kein Exportformat angegeben. Abbruch...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1548" /> + <location filename="../QScintilla/Editor.py" line="1549" /> <source>Alternatives ({0})</source> <translation>Alternativen ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1571" /> - <source>Pygments Lexer</source> - <translation>Pygments Lexer</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1572" /> + <source>Pygments Lexer</source> + <translation>Pygments Lexer</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1573" /> <source>Select the Pygments lexer to apply.</source> <translation>Wähle den anzuwendenden Pygments Lexer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2120" /> - <source>Modification of Read Only file</source> - <translation>Änderungsversuch für eine schreibgeschützte Datei</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2121" /> + <source>Modification of Read Only file</source> + <translation>Änderungsversuch für eine schreibgeschützte Datei</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2122" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Sie versuchen, eine schreibgeschützte Datei zu ändern. Bitte speichern Sie sie zuerst in eine andere Datei.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2556" /> - <source>Add Breakpoint</source> - <translation>Haltepunkt hinzufügen</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2557" /> + <source>Add Breakpoint</source> + <translation>Haltepunkt hinzufügen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2558" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation>Für die angewählte Zeile wird kein Bytecode erzeugt. Es wird kein Haltepunkt gesetzt!</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2890" /> + <location filename="../QScintilla/Editor.py" line="2891" /> <source>Printing...</source> <translation>Drucke...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2907" /> + <location filename="../QScintilla/Editor.py" line="2908" /> <source>Printing completed</source> <translation>Drucken beendet</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2909" /> + <location filename="../QScintilla/Editor.py" line="2910" /> <source>Error while printing</source> <translation>Fehler beim Drucken</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2912" /> + <location filename="../QScintilla/Editor.py" line="2913" /> <source>Printing aborted</source> <translation>Drucken abgebrochen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3274" /> - <source>File Modified</source> - <translation>Datei geändert</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3275" /> + <source>File Modified</source> + <translation>Datei geändert</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3276" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Die Datei <b>{0}</b> enthält ungesicherte Änderungen.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="3334" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht geöffnet werden.<br />Ursache: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3509" /> - <location filename="../QScintilla/Editor.py" line="3490" /> - <location filename="../QScintilla/Editor.py" line="3452" /> - <source>Save File</source> - <translation>Datei sichern</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="3453" /> - <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> - <translation><p>Die Datei <b>{0}</b> konnte nicht gesichert werden.<br/>Grund: {1}</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3510" /> + <location filename="../QScintilla/Editor.py" line="3491" /> + <location filename="../QScintilla/Editor.py" line="3453" /> + <source>Save File</source> + <translation>Datei sichern</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3454" /> + <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> + <translation><p>Die Datei <b>{0}</b> konnte nicht gesichert werden.<br/>Grund: {1}</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3511" /> <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="../QScintilla/Editor.py" line="3644" /> - <source>Save File to Device</source> - <translation>Datei auf Gerät speichern</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3645" /> + <source>Save File to Device</source> + <translation>Datei auf Gerät speichern</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3646" /> <source>Enter the complete device file path:</source> <translation>Gib den vollständigen Dateipfad auf dem Gerät ein:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5101" /> - <source>Autocompletion</source> - <translation>Automatische Vervollständigung</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5102" /> + <source>Autocompletion</source> + <translation>Automatische Vervollständigung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5103" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Die automatische Vervollständigung ist nicht verfügbar, da keine Quelle gesetzt ist.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5230" /> - <source>Auto-Completion Provider</source> - <translation>Provider für automatische Vervollständigungen</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5231" /> + <source>Auto-Completion Provider</source> + <translation>Provider für automatische Vervollständigungen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5232" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>Der Provider für automatische Vervollständigungen namens '{0}' ist bereits registriert. Die Wiederholung wird ignoriert.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523" /> - <source>Call-Tips Provider</source> - <translation>Calltipps-Provider</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5524" /> + <source>Call-Tips Provider</source> + <translation>Calltipps-Provider</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5525" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>Der Calltipps-Provider namens '{0}' ist bereits registriert. Die Wiederholung wird ignoriert.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5931" /> + <location filename="../QScintilla/Editor.py" line="5932" /> <source>Disable breakpoint</source> <translation>Haltepunkt deaktivieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6310" /> + <location filename="../QScintilla/Editor.py" line="6315" /> <source>Code Coverage</source> <translation>Quelltext Abdeckung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6311" /> + <location filename="../QScintilla/Editor.py" line="6316" /> <source>Please select a coverage file</source> <translation>Bitte wählen Sie eine Datei mit Abdeckungsdaten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6386" /> - <location filename="../QScintilla/Editor.py" line="6378" /> + <location filename="../QScintilla/Editor.py" line="6391" /> + <location filename="../QScintilla/Editor.py" line="6383" /> <source>Show Code Coverage Annotations</source> <translation>Zeilen ohne Abdeckung Markieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6379" /> + <location filename="../QScintilla/Editor.py" line="6384" /> <source>All lines have been covered.</source> <translation>Alle Zeilen sind abgedeckt.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387" /> + <location filename="../QScintilla/Editor.py" line="6392" /> <source>There is no coverage file available.</source> <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6491" /> + <location filename="../QScintilla/Editor.py" line="6496" /> <source>Profile Data</source> <translation>Profildaten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6492" /> + <location filename="../QScintilla/Editor.py" line="6497" /> <source>Please select a profile file</source> <translation>Bitte wählen Sie eine Datei mit Profildaten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6653" /> - <location filename="../QScintilla/Editor.py" line="6647" /> + <location filename="../QScintilla/Editor.py" line="6658" /> + <location filename="../QScintilla/Editor.py" line="6652" /> <source>Syntax Error</source> <translation>Syntaxfehler</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6654" /> + <location filename="../QScintilla/Editor.py" line="6659" /> <source>No syntax error message available.</source> <translation>Keine Syntaxfehlermeldung verfügbar.</translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="6873" /> <location filename="../QScintilla/Editor.py" line="6867" /> - <location filename="../QScintilla/Editor.py" line="6861" /> <source>Warning</source> <translation>Warnung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6867" /> + <location filename="../QScintilla/Editor.py" line="6873" /> <source>No warning messages available.</source> <translation>Keine Warnmeldungen verfügbar.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6937" /> <source>Style: {0}</source> <translation>Stil: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6934" /> + <location filename="../QScintilla/Editor.py" line="6942" /> <source>Warning: {0}</source> <translation>Warnung: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6941" /> + <location filename="../QScintilla/Editor.py" line="6949" /> <source>Error: {0}</source> <translation>Fehler: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Macro Name</source> <translation>Makro Name</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Select a macro name:</source> <translation>Wähle einen Makro Namen:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7074" /> + <location filename="../QScintilla/Editor.py" line="7082" /> <source>Load macro file</source> <translation>Lade Makrodatei</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7120" /> - <location filename="../QScintilla/Editor.py" line="7076" /> + <location filename="../QScintilla/Editor.py" line="7128" /> + <location filename="../QScintilla/Editor.py" line="7084" /> <source>Macro files (*.macro)</source> <translation>Makrodateien (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7098" /> - <location filename="../QScintilla/Editor.py" line="7088" /> + <location filename="../QScintilla/Editor.py" line="7106" /> + <location filename="../QScintilla/Editor.py" line="7096" /> <source>Error loading macro</source> <translation>Fehler beim Makro Laden</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7089" /> + <location filename="../QScintilla/Editor.py" line="7097" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Die Makrodatei <b>{0}</b> kann nicht gelesen werden.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7099" /> + <location filename="../QScintilla/Editor.py" line="7107" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Die Makrodatei <b>{0}</b> ist zerstört.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7118" /> + <location filename="../QScintilla/Editor.py" line="7126" /> <source>Save macro file</source> <translation>Makrodatei schreiben</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7136" /> + <location filename="../QScintilla/Editor.py" line="7144" /> <source>Save macro</source> <translation>Makro speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7137" /> + <location filename="../QScintilla/Editor.py" line="7145" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Makrodatei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7152" /> + <location filename="../QScintilla/Editor.py" line="7160" /> <source>Error saving macro</source> <translation>Fehler beim Makro speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7161" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Die Makrodatei <b>{0}</b> kann nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7166" /> + <location filename="../QScintilla/Editor.py" line="7174" /> <source>Start Macro Recording</source> <translation>Makroaufzeichnung starten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7167" /> + <location filename="../QScintilla/Editor.py" line="7175" /> <source>Macro recording is already active. Start new?</source> <translation>Eine Makroaufzeichnung ist bereits aktiv. Neu starten?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7193" /> + <location filename="../QScintilla/Editor.py" line="7201" /> <source>Macro Recording</source> <translation>Makroaufzeichnung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7194" /> + <location filename="../QScintilla/Editor.py" line="7202" /> <source>Enter name of the macro:</source> <translation>Gib einen Namen für das Makro ein:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7344" /> + <location filename="../QScintilla/Editor.py" line="7352" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation><p>Die Datei <b>{0}</b> wurde geändert, während sie in eric geöffnet war. Neu einlesen?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7350" /> + <location filename="../QScintilla/Editor.py" line="7358" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Warnung:</b> Vorgenommenen Änderungen gehen beim neu einlesen verloren.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7357" /> + <location filename="../QScintilla/Editor.py" line="7365" /> <source>File changed</source> <translation>Datei geändert</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7407" /> + <location filename="../QScintilla/Editor.py" line="7415" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7712" /> + <location filename="../QScintilla/Editor.py" line="7720" /> <source>Drop Error</source> <translation>Drop Fehler</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7713" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7733" /> + <location filename="../QScintilla/Editor.py" line="7741" /> <source>Resources</source> <translation>Ressourcen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7735" /> + <location filename="../QScintilla/Editor.py" line="7743" /> <source>Add file...</source> <translation>Datei hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7736" /> + <location filename="../QScintilla/Editor.py" line="7744" /> <source>Add files...</source> <translation>Dateien hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7737" /> + <location filename="../QScintilla/Editor.py" line="7745" /> <source>Add aliased file...</source> <translation>Aliased-Datei hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7739" /> + <location filename="../QScintilla/Editor.py" line="7747" /> <source>Add localized resource...</source> <translation>Lokalisierte Ressource hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7742" /> + <location filename="../QScintilla/Editor.py" line="7750" /> <source>Add resource frame</source> <translation>Ressourcenrahmen hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7761" /> + <location filename="../QScintilla/Editor.py" line="7769" /> <source>Add file resource</source> <translation>Dateiressource hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7775" /> + <location filename="../QScintilla/Editor.py" line="7783" /> <source>Add file resources</source> <translation>Dateiressourcen hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7799" /> - <location filename="../QScintilla/Editor.py" line="7793" /> + <location filename="../QScintilla/Editor.py" line="7807" /> + <location filename="../QScintilla/Editor.py" line="7801" /> <source>Add aliased file resource</source> <translation>Aliased-Dateiressourcen hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7800" /> + <location filename="../QScintilla/Editor.py" line="7808" /> <source>Alias for file <b>{0}</b>:</source> <translation>Alias für Datei <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7875" /> + <location filename="../QScintilla/Editor.py" line="7883" /> <source>Package Diagram</source> <translation>Package-Diagramm</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7876" /> + <location filename="../QScintilla/Editor.py" line="7884" /> <source>Include class attributes?</source> <translation>Klassenattribute anzeigen?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7896" /> + <location filename="../QScintilla/Editor.py" line="7904" /> <source>Imports Diagram</source> <translation>Imports Diagramm</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7897" /> + <location filename="../QScintilla/Editor.py" line="7905" /> <source>Include imports from external modules?</source> <translation>Imports externer Module anzeigen?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7916" /> + <location filename="../QScintilla/Editor.py" line="7924" /> <source>Application Diagram</source> <translation>Applikations-Diagramm</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7917" /> + <location filename="../QScintilla/Editor.py" line="7925" /> <source>Include module names?</source> <translation>Modulnamen anzeigen?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8272" /> + <location filename="../QScintilla/Editor.py" line="8280" /> <source>Add to dictionary</source> <translation>Zum Wörterbuch hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8274" /> + <location filename="../QScintilla/Editor.py" line="8282" /> <source>Ignore All</source> <translation>Alle ignorieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8692" /> + <location filename="../QScintilla/Editor.py" line="8700" /> <source>Sort Lines</source> <translation>Zeilen sortieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8693" /> + <location filename="../QScintilla/Editor.py" line="8701" /> <source>The selection contains illegal data for a numerical sort.</source> <translation>Die Auswahl enthält für eine numerische Sortierung ungültige Daten.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8786" /> + <location filename="../QScintilla/Editor.py" line="8794" /> <source>Register Mouse Click Handler</source> <translation>Maus Klick Handler registrieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8787" /> + <location filename="../QScintilla/Editor.py" line="8795" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation>Ein Maus Klick Handler für "{0}" wurde bereits durch "{1}" registriert. Die Anfrage durch "{2}" wird abgebrochen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8883" /> + <location filename="../QScintilla/Editor.py" line="8891" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation>{0:4d} {1}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8889" /> + <location filename="../QScintilla/Editor.py" line="8897" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> @@ -13311,12 +13311,12 @@ => {2}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="8965" /> <source>EditorConfig Properties</source> <translation>EditorConfig Eigenschaften</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8958" /> + <location filename="../QScintilla/Editor.py" line="8966" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Die EditorConfig Eigenschaften für die Datei <b>{0}</b> konnten nicht geladen werden.</p></translation> </message> @@ -19785,38 +19785,38 @@ <context> <name>EricTextEditSearchWidget</name> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="115" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="116" /> <source>Find:</source> <translation>Suchen:</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="141" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="142" /> <source>Match case</source> <translation>Groß-/Kleinschreibung</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="146" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="147" /> <source>Whole word</source> <translation>Ganzes Wort</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="156" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="157" /> <source>Press to find the previous occurrence</source> <translation>Drücken, um das vorherige Vorkommen zu suchen</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="162" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="163" /> <source>Press to find the next occurrence</source> <translation>Drücken, um das nächste Vorkommen zu suchen</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="481" /> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="433" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="482" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="434" /> <source>'{0}' was not found.</source> <translation>„{0}“ wurde nicht gefunden.</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="486" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="487" /> <source>Match {0} of {1}</source> <translation>Fundstelle {0} von {1}</translation> </message> @@ -33034,29 +33034,29 @@ <translation>UTF-8</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="119" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="118" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="121" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="120" /> <source>Find Next</source> <translation>Weitersuchen</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="131" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="130" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="133" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="132" /> <source>Find Prev</source> <translation>Rückwärtssuchen</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="297" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="299" /> <source>'{0}' was not found.</source> <translation>„{0}“ wurde nicht gefunden.</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="417" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="419" /> <source>Replaced {0} occurrences.</source> <translation>{0} Vorkommen ersetzt.</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="423" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="425" /> <source>Nothing replaced because '{0}' was not found.</source> <translation>Es wurde nichts ersetzt, da „{0}“ nicht gefunden wurde.</translation> </message> @@ -70636,74 +70636,74 @@ </translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="155" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="154" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="157" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="156" /> <source>Find Next</source> <translation>Weitersuchen</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="168" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="167" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="170" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="169" /> <source>Find Prev</source> <translation>Rückwärtssuchen</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="181" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="180" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="183" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="182" /> <source>Replace and Search</source> <translation>Ersetzen und Suchen</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="195" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="194" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="197" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="196" /> <source>Replace Occurrence</source> <translation>Fundstelle ersetzen</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="209" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="208" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="211" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="210" /> <source>Replace All</source> <translation>Alle ersetzen</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="297" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="299" /> <source>Press to find the next occurrence ({0})</source> <translation>Drücken, um das nächste Vorkommen zu suchen ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="304" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="306" /> <source>Press to find the previous occurrence ({0})</source> <translation>Drücken, um das vorherige Vorkommen zu suchen ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="311" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="313" /> <source>Press to replace the selection and search for the next occurence ({0})</source> <translation>Drücken, um die Auswahl zu ersetzen und das nächste Vorkommen zu suchen ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="321" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="323" /> <source>Press to replace the selection ({0})</source> <translation>Drücken, um die Auswahl zu ersetzen ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="328" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="330" /> <source>Press to replace all occurrences ({0})</source> <translation>Drücken, um alle Vorkommen zu ersetzen ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1114" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="665" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="627" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1123" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="674" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="636" /> <source>'{0}' was not found.</source> <translation>„{0}“ wurde nicht gefunden.</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1267" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1276" /> <source>Replaced {0} occurrences.</source> <translation>{0} Vorkommen ersetzt.</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1273" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1282" /> <source>Nothing replaced because '{0}' was not found.</source> <translation>Es wurde nichts ersetzt, da „{0}“ nicht gefunden wurde.</translation> </message> @@ -70822,7 +70822,7 @@ <translation>Groß-/Kleinschreibung</translation> </message> <message> - <location filename="../WebBrowser/SearchWidget.py" line="100" /> + <location filename="../WebBrowser/SearchWidget.py" line="101" /> <source>Expression was not found.</source> <translation>Ausdruck nicht gefunden.</translation> </message> @@ -70837,7 +70837,7 @@ <translation>Regexp</translation> </message> <message> - <location filename="../UI/SearchWidget.py" line="212" /> + <location filename="../UI/SearchWidget.py" line="213" /> <source>'{0}' was not found.</source> <translation>„{0}“ wurde nicht gefunden.</translation> </message> @@ -72102,143 +72102,158 @@ <context> <name>Shell</name> <message> - <location filename="../QScintilla/Shell.py" line="162" /> + <location filename="../QScintilla/Shell.py" line="164" /> <source>Shell - Passive</source> <translation>Shell – Passiv</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="164" /> + <location filename="../QScintilla/Shell.py" line="166" /> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="168" /> - <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. '%quit' or '%exit' is used to exit the application. These commands (except '%environments', '%envs' and '%which') are available through the window menus as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> - <translation><b>Das Shell-Fenster</b><p>Benutzen Sie die Cursortasten während der Eingabe von Befehlen. Es existiert auch eine Chronik-Funktion, die mit den Cursortasten Hoch und Runter unter Halten der Strg-Taste bedient wird. Dies kann über die Shell Seite des Konfigurationsdialoges auf Cursortasten Hoch und Runter alleine umgeschaltet werden. Eine inkrementelle Suche wird gestartet, indem diese Tasten nach Eingabe von Text gedrückt werden.</p><p>Die Shell hat einige spezielle Kommandos. '%restart' beendet den Interpreter und startet einen neuen. '%clear' löscht die Anzeige des Shell-Fensters. '%start' wird benutzt, um eine Shell für eine virtuelle Umgebung zu starten, und sollte vom Namen einer virtuellen Umgebung gefolgt werden. '%start' ohne Angebe einer virtuellen Umgebung started die Standard-Shell. Verfügbare virtuelle Umgebungen können mit den Befehlen '%envs' oder '%environments' aufgelistet werden. Die aktive virtuelle Umgebung kann mit dem Befehl '%which' abgefragt werden. '%quit' oder '%exit' beenden die Anwendung. Diese Befehle (mit Ausnahme von '%environments', '%envs' und '%which') sind auch über die Anwendungsmenüs verfügbar.</p><p>Nachdem Text eingegeben wurde, kann durch Drücken der Tab-Taste eine Liste möglicher Kommandozeilenvervollständigungen angezeigt werden. Der gewünschte Eintrag kann aus dieser Liste ausgewählt werden. Ist nur ein Eintrag vorhanden, so wird dieser automatisch eingefügt.</p></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="198" /> - <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. These commands (except '%environments' and '%envs') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> - <translation><b>Das Shell-Fenster</b><p>Dies ist ein Interpreter Ihres Systems. Es ist derjenige, der benutzt wird, um das zu untersuchende Programm auszuführen. Dies bedeutet, dass Sie jedes Pythonkommando ausführen können, auch während Ihr Programm läuft.</p><p>Benutzen Sie die Cursortasten während der Eingabe von Befehlen. Es existiert auch eine Chronik-Funktion, die mit den Cursortasten Hoch und Runter unter Halten der Strg-Taste bedient wird. Dies kann über die Shell Seite des Konfigurationsdialoges auf Cursortasten Hoch und Runter alleine umgeschaltet werden. Eine inkrementelle Suche wird gestartet, indem diese Tasten nach Eingabe von Text gedrückt werden.</p><p>Die Shell hat einige spezielle Kommandos. '%restart' beendet den Interpreter und startet einen neuen. '%clear' löscht die Anzeige des Shell-Fensters. '%start' wird benutzt, um eine Shell für eine virtuelle Umgebung zu starten, und sollte vom Namen einer virtuellen Umgebung gefolgt werden. '%start' ohne Angebe einer virtuellen Umgebung started die Standard-Shell. Verfügbare virtuelle Umgebungen können mit den Befehlen '%envs' oder '%environments' aufgelistet werden. Die aktive virtuelle Umgebung kann mit dem Befehl '%which' abgefragt werden. Diese Befehle (mit Ausnahme von '%environments' und '%envs') sind auch über das Kontextmenü verfügbar.</p><p>Nachdem Text eingegeben wurde, kann durch Drücken der Tab-Taste eine Liste möglicher Kommandozeilenvervollständigungen angezeigt werden. Der gewünschte Eintrag kann aus dieser Liste ausgewählt werden. Ist nur ein Eintrag vorhanden, so wird dieser automatisch eingefügt.</p><p>Im passiven Debugmodus ist die Shell nur dann verfügbar, wenn das zu debuggende Skript mit der IDE verbunden ist. Dies wird durch einen anderen Prompt und eine Anzeige im Fensterkopf dargestellt.</p></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="262" /> + <location filename="../QScintilla/Shell.py" line="170" /> + <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> + <translation><b>Das Shell-Fenster</b><p>Benutzen Sie die Cursortasten während der Eingabe von Befehlen. Es existiert auch eine Chronik-Funktion, die mit den Cursortasten Hoch und Runter unter Halten der Strg-Taste bedient wird. Dies kann über die Shell Seite des Konfigurationsdialoges auf Cursortasten Hoch und Runter alleine umgeschaltet werden. Eine inkrementelle Suche wird gestartet, indem diese Tasten nach Eingabe von Text gedrückt werden.</p><p>Die Shell hat einige spezielle Befehle. Tippe '%help', um eine Liste dieser Befehle angezeigt zu bekommen.</p><p>Nachdem Text eingegeben wurde, kann durch Drücken der Tab-Taste eine Liste möglicher Kommandozeilenvervollständigungen angezeigt werden. Der gewünschte Eintrag kann aus dieser Liste ausgewählt werden. Ist nur ein Eintrag vorhanden, so wird dieser automatisch eingefügt.</p></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="189" /> + <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> + <translation><b>Das Shell-Fenster</b><p>Dies ist ein Interpreter Ihres Systems. Es ist derjenige, der benutzt wird, um das zu untersuchende Programm auszuführen. Dies bedeutet, dass Sie jeden Python Befehl ausführen können, auch während Ihr Programm läuft.</p><p>Benutzen Sie die Cursortasten während der Eingabe von Befehlen. Es existiert auch eine Chronik-Funktion, die mit den Cursortasten Hoch und Runter unter Halten der Strg-Taste bedient wird. Dies kann über die Shell Seite des Konfigurationsdialoges auf Cursortasten Hoch und Runter alleine umgeschaltet werden. Eine inkrementelle Suche wird gestartet, indem diese Tasten nach Eingabe von Text gedrückt werden.</p><p>Die Shell hat einige spezielle Befehle. Tippe '%help', um eine Liste dieser Befehle angezeigt zu bekommen.</p><p>Nachdem Text eingegeben wurde, kann durch Drücken der Tab-Taste eine Liste möglicher Kommandozeilenvervollständigungen angezeigt werden. Der gewünschte Eintrag kann aus dieser Liste ausgewählt werden. Ist nur ein Eintrag vorhanden, so wird dieser automatisch eingefügt.</p><p>Im passiven Debugmodus ist die Shell nur dann verfügbar, wenn das zu debuggende Skript mit der IDE verbunden ist. Dies wird durch einen anderen Prompt und eine Anzeige im Fensterkopf dargestellt.</p></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="244" /> <source>Passive >>> </source> <translation>Passiv >>> </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="305" /> + <location filename="../QScintilla/Shell.py" line="287" /> <source>Start</source> <translation>Starten</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="310" /> + <location filename="../QScintilla/Shell.py" line="292" /> <source>History</source> <translation>Historie</translation> </message> <message> + <location filename="../QScintilla/Shell.py" line="293" /> + <source>Select entry</source> + <translation>Eintrag auswählen</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="294" /> + <source>Show</source> + <translation>Zeige</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="306" /> + <location filename="../QScintilla/Shell.py" line="295" /> + <source>Clear</source> + <translation>Löschen</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="299" /> + <source>Cut</source> + <translation>Ausschneiden</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="300" /> + <source>Copy</source> + <translation>Kopieren</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="301" /> + <source>Paste</source> + <translation>Einfügen</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="304" /> + <source>Find</source> + <translation>Suchen</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="307" /> + <source>Restart</source> + <translation>Neu starten</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="308" /> + <source>Restart and Clear</source> + <translation>Neu starten und löschen</translation> + </message> + <message> <location filename="../QScintilla/Shell.py" line="311" /> - <source>Select entry</source> - <translation>Eintrag auswählen</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="312" /> - <source>Show</source> - <translation>Zeige</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="325" /> + <source>Active Name</source> + <translation>Aktiver Name</translation> + </message> + <message> <location filename="../QScintilla/Shell.py" line="313" /> - <source>Clear</source> - <translation>Löschen</translation> + <source>Save Contents...</source> + <translation>Inhalt speichern...</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="315" /> + <source>Configure...</source> + <translation>Einstellungen...</translation> </message> <message> <location filename="../QScintilla/Shell.py" line="317" /> - <source>Cut</source> - <translation>Ausschneiden</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="318" /> - <source>Copy</source> - <translation>Kopieren</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="319" /> - <source>Paste</source> - <translation>Einfügen</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="323" /> - <source>Find</source> - <translation>Suchen</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="326" /> - <source>Restart</source> - <translation>Neu starten</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="327" /> - <source>Restart and Clear</source> - <translation>Neu starten und löschen</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="330" /> - <source>Active Name</source> - <translation>Aktiver Name</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="332" /> - <source>Save Contents...</source> - <translation>Inhalt speichern...</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="334" /> - <source>Configure...</source> - <translation>Einstellungen...</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="2067" /> - <location filename="../QScintilla/Shell.py" line="1846" /> - <location filename="../QScintilla/Shell.py" line="1845" /> - <location filename="../QScintilla/Shell.py" line="408" /> + <source>Special Commands Help</source> + <translation>Hilfe für Spezielle Befehle</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2087" /> + <location filename="../QScintilla/Shell.py" line="1849" /> + <location filename="../QScintilla/Shell.py" line="1848" /> + <location filename="../QScintilla/Shell.py" line="391" /> <source>Project</source> <translation>Projekt</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="806" /> + <location filename="../QScintilla/Shell.py" line="780" /> + <source>Clear History</source> + <translation>Chronik löschen</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="781" /> + <source>Shall the current history really be cleared?</source> + <translation>Soll die Chronik wirklich gelöscht werden?</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="803" /> <source>Select History</source> <translation>Eintrag auswählen</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="807" /> + <location filename="../QScintilla/Shell.py" line="804" /> <source>Select the history entry to execute (most recent shown last).</source> <translation>Wähle den auszuführenden Eintrag aus (aktuellster ist zuletzt dargestellt).</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="872" /> + <location filename="../QScintilla/Shell.py" line="878" /> <source>Passive Debug Mode</source> <translation>Passiver Debugmodus</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="873" /> + <location filename="../QScintilla/Shell.py" line="879" /> <source> Not connected</source> <translation> nicht verbunden</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="876" /> + <location filename="../QScintilla/Shell.py" line="882" /> <source>No.</source> <translation>Nr.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="878" /> + <location filename="../QScintilla/Shell.py" line="884" /> <source>{0} on {1}</source> <translation>{0} auf {1}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="925" /> + <location filename="../QScintilla/Shell.py" line="931" /> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -72249,7 +72264,7 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="934" /> + <location filename="../QScintilla/Shell.py" line="940" /> <source>Exception "{0}" {1} </source> @@ -72258,43 +72273,43 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="954" /> + <location filename="../QScintilla/Shell.py" line="960" /> <source>Unspecified syntax error. </source> <translation>Unspezifischer Syntaxfehler. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="957" /> + <location filename="../QScintilla/Shell.py" line="963" /> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation>Syntaxfehler "{1}" in Datei {0}, Zeile {2}, Zeichen {3}. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="981" /> + <location filename="../QScintilla/Shell.py" line="987" /> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation>Signal "{0}" in der Datei {1} in Zeile {2} erzeugt. Funktion: {3}({4})</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1063" /> + <location filename="../QScintilla/Shell.py" line="1069" /> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1071" /> + <location filename="../QScintilla/Shell.py" line="1077" /> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1097" /> + <location filename="../QScintilla/Shell.py" line="1103" /> <source><{0}> {1}</source> <translation><{0}> {1}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1892" /> + <location filename="../QScintilla/Shell.py" line="1886" /> <source>Available Virtual Environments: {0} </source> @@ -72303,45 +72318,84 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1935" /> - <location filename="../QScintilla/Shell.py" line="1899" /> + <location filename="../QScintilla/Shell.py" line="1955" /> + <location filename="../QScintilla/Shell.py" line="1892" /> <source>Current Virtual Environment: '{0}' </source> <translation>Aktuelle virtuelle Umgebung: '{0}' </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2207" /> + <location filename="../QScintilla/Shell.py" line="1910" /> + <source>Error: Argument must be an integer value. +</source> + <translation>Fehler: Argument muss ein Integerwert sein. +</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1927" /> + <source>Error: Command '{0}' is not supported. +</source> + <translation>Fehler: Der Befehl '{0}' wird nicht unterstützt. +</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2227" /> <source>Drop Error</source> <translation>Drop Fehler</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2208" /> + <location filename="../QScintilla/Shell.py" line="2228" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2451" /> - <location filename="../QScintilla/Shell.py" line="2437" /> - <location filename="../QScintilla/Shell.py" line="2416" /> + <location filename="../QScintilla/Shell.py" line="2471" /> + <location filename="../QScintilla/Shell.py" line="2457" /> + <location filename="../QScintilla/Shell.py" line="2436" /> <source>Save Shell Contents</source> <translation>Shellinhalt speichern</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2418" /> - <source>Text Files (*.txt);;All Files (*)</source> - <translation>Textdateien (*.txt);;Alle Dateien (*)</translation> - </message> - <message> <location filename="../QScintilla/Shell.py" line="2438" /> + <source>Text Files (*.txt);;All Files (*)</source> + <translation>Textdateien (*.txt);;Alle Dateien (*)</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2458" /> <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="../QScintilla/Shell.py" line="2452" /> + <location filename="../QScintilla/Shell.py" line="2472" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gesichert werden.<br/>Grund: {1}</p></translation> </message> + <message> + <location filename="../QScintilla/Shell.py" line="2486" /> + <source><tr><td>%restart</td><td>Kill the shell and start a new one.</td></tr><tr><td>%clear</td><td>Clear the display of the shell window.</td></tr><tr><td>%start [environment]</td><td>Start a shell for a virtual environment with the given name. If no name if given, a default shell is started.</td></tr><tr><td>%envs<br/>%environments</td><td>Show a list of known virtual environment names.</td></tr><tr><td>%which</td><td>Show the name of the active virtual environment.</td></tr><tr><td>%hist [n]<br/>%history [n]</td><td>Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.</td></tr><tr><td>%shist<br/>%shistory<br/>%select_history</td><td>Select a command from the history.</td></tr><tr><td>%chist<br/>%chistory<br/>%clear_history</td><td>Clear the current history after confirmation.</td></tr><tr><td>%help</td><td>Show this help text.</td></tr></source> + <translation><tr><td>%restart</td><td>Beendet den Interpreter und startet einen neuen.</td></tr><tr><td>%clear</td><td>Löscht die Anzeige des Shell-Fensters.</td></tr><tr><td>%start [environment]</td><td>Start eine Shell für eine virtuelle Umgebung mit dem angegebenen Namen. Wird kein Name angegeben, so wird die Standard-Shell gestartet.</td></tr><tr><td>%envs<br/>%environments</td><td>Zeigt eine Liste der Namen bekannter virtueller Umgebungen an.</td></tr><tr><td>%which</td><td>Zeigt den Namen der aktiven virtuellen Umgebung an.</td></tr><tr><td>%hist [n]<br/>%history [n]</td><td>Zeigt die 'n' letzten Einträge der Chronik an. Wird 'n' nicht angegeben, werden alle Einträge angezeigt.</td></tr><tr><td>%shist<br/>%shistory<br/>%select_history</td><td>Wählt einen Eintrag aus der Chronik.</td></tr><tr><td>%chist<br/>%chistory<br/>%clear_history</td><td>Löscht die aktuelle Chronik nach Bestätigung.</td></tr><tr><td>%help</td><td>Zeigt diesen Hilfetext an.</td></tr></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2508" /> + <source><tr><td>%quit<br/>%quit()<br/>%exit<br/>%exit()</td><td>Exit the application.</td></tr></table><p>These commands are available through the window menus as well.</p></source> + <translation><tr><td>%quit<br/>%quit()<br/>%exit<br/>%exit()</td><td>Beendt die Anwendung.</td></tr></table><p>Diese Befehle sind auch über die Anwendungsmenüs verfügbar.</p></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2516" /> + <source></table><p>These commands are available through the context menu as well.</p></source> + <translation></table><p>Diese Befehle sind auch über das Kontextmenü verfügbar.</p></translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2523" /> + <source>Shell Special Commands</source> + <translation>Spezielle Shell Befehle</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2524" /> + <source>The shell supports these special commands:</source> + <translation>Die Shell unterstützt diese speziellen Befehle:</translation> + </message> </context> <context> <name>ShellHistoryDialog</name>
--- a/src/eric7/i18n/eric7_empty.ts Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/i18n/eric7_empty.ts Sun Sep 03 17:35:15 2023 +0200 @@ -12239,996 +12239,996 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3332" /> - <location filename="../QScintilla/Editor.py" line="428" /> - <location filename="../QScintilla/Editor.py" line="413" /> + <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="414" /> <source>Open File</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="414" /> + <location filename="../QScintilla/Editor.py" line="415" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="430" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="526" /> + <location filename="../QScintilla/Editor.py" line="527" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="890" /> + <location filename="../QScintilla/Editor.py" line="891" /> <source>Undo</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="893" /> + <location filename="../QScintilla/Editor.py" line="894" /> <source>Redo</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="896" /> + <location filename="../QScintilla/Editor.py" line="897" /> <source>Revert to last saved state</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="900" /> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Cut</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="903" /> + <location filename="../QScintilla/Editor.py" line="904" /> <source>Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="906" /> + <location filename="../QScintilla/Editor.py" line="907" /> <source>Paste</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="913" /> <source>Indent</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="917" /> + <location filename="../QScintilla/Editor.py" line="918" /> <source>Unindent</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="922" /> + <location filename="../QScintilla/Editor.py" line="923" /> <source>Comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="927" /> + <location filename="../QScintilla/Editor.py" line="928" /> <source>Uncomment</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="9150" /> - <location filename="../QScintilla/Editor.py" line="932" /> + <location filename="../QScintilla/Editor.py" line="9158" /> + <location filename="../QScintilla/Editor.py" line="933" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="935" /> - <source>Select to brace</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="936" /> - <source>Select all</source> + <source>Select to brace</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="937" /> + <source>Select all</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="938" /> <source>Deselect all</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="939" /> + <location filename="../QScintilla/Editor.py" line="940" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="951" /> + <location filename="../QScintilla/Editor.py" line="952" /> <source>Use Monospaced Font</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="957" /> <source>Autosave enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="962" /> <source>Typing aids enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="969" /> + <location filename="../QScintilla/Editor.py" line="970" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="978" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Calltip</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="981" /> + <location filename="../QScintilla/Editor.py" line="982" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="996" /> + <location filename="../QScintilla/Editor.py" line="997" /> <source>New Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1001" /> + <location filename="../QScintilla/Editor.py" line="1002" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Save</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1013" /> + <location filename="../QScintilla/Editor.py" line="1014" /> <source>Save As...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1018" /> + <location filename="../QScintilla/Editor.py" line="1019" /> <source>Save Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1040" /> - <location filename="../QScintilla/Editor.py" line="1037" /> + <location filename="../QScintilla/Editor.py" line="1041" /> + <location filename="../QScintilla/Editor.py" line="1038" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1044" /> + <location filename="../QScintilla/Editor.py" line="1045" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1047" /> + <location filename="../QScintilla/Editor.py" line="1048" /> <source>Complete from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1049" /> + <location filename="../QScintilla/Editor.py" line="1050" /> <source>Complete from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052" /> + <location filename="../QScintilla/Editor.py" line="1053" /> <source>Complete from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1066" /> + <location filename="../QScintilla/Editor.py" line="1067" /> <source>Check</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1077" /> + <location filename="../QScintilla/Editor.py" line="1078" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1083" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> + <location filename="../QScintilla/Editor.py" line="1089" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1092" /> + <location filename="../QScintilla/Editor.py" line="1093" /> <source>Check Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1096" /> + <location filename="../QScintilla/Editor.py" line="1097" /> <source>Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1105" /> + <location filename="../QScintilla/Editor.py" line="1106" /> <source>isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1110" /> + <location filename="../QScintilla/Editor.py" line="1111" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1114" /> + <location filename="../QScintilla/Editor.py" line="1115" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1130" /> + <location filename="../QScintilla/Editor.py" line="1131" /> <source>Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1141" /> + <location filename="../QScintilla/Editor.py" line="1142" /> <source>Show</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1143" /> + <location filename="../QScintilla/Editor.py" line="1144" /> <source>Code metrics...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1145" /> + <location filename="../QScintilla/Editor.py" line="1146" /> <source>Code coverage...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1148" /> + <location filename="../QScintilla/Editor.py" line="1149" /> <source>Show code coverage annotations</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1151" /> + <location filename="../QScintilla/Editor.py" line="1152" /> <source>Hide code coverage annotations</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1155" /> + <location filename="../QScintilla/Editor.py" line="1156" /> <source>Profile data...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1169" /> + <location filename="../QScintilla/Editor.py" line="1170" /> <source>Diagrams</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1171" /> - <source>Class Diagram...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1172" /> - <source>Package Diagram...</source> + <source>Class Diagram...</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1173" /> + <source>Package Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1174" /> <source>Imports Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1175" /> + <location filename="../QScintilla/Editor.py" line="1176" /> <source>Application Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1180" /> + <location filename="../QScintilla/Editor.py" line="1181" /> <source>Load Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1195" /> + <location filename="../QScintilla/Editor.py" line="1196" /> <source>Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1199" /> + <location filename="../QScintilla/Editor.py" line="1200" /> <source>Text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1222" /> + <location filename="../QScintilla/Editor.py" line="1223" /> <source>Guessed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1551" /> - <location filename="../QScintilla/Editor.py" line="1226" /> + <location filename="../QScintilla/Editor.py" line="1552" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>Alternatives</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1243" /> + <location filename="../QScintilla/Editor.py" line="1244" /> <source>Encodings</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1266" /> + <location filename="../QScintilla/Editor.py" line="1267" /> <source>Re-Open With Encoding</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1286" /> + <location filename="../QScintilla/Editor.py" line="1287" /> <source>End-of-Line Type</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1290" /> + <location filename="../QScintilla/Editor.py" line="1291" /> <source>Unix</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1296" /> + <location filename="../QScintilla/Editor.py" line="1297" /> <source>Windows</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1302" /> + <location filename="../QScintilla/Editor.py" line="1303" /> <source>Macintosh</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1320" /> + <location filename="../QScintilla/Editor.py" line="1321" /> <source>Spelling</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8268" /> - <location filename="../QScintilla/Editor.py" line="1328" /> + <location filename="../QScintilla/Editor.py" line="8276" /> + <location filename="../QScintilla/Editor.py" line="1329" /> <source>Check spelling...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1333" /> + <location filename="../QScintilla/Editor.py" line="1334" /> <source>Check spelling of selection...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1337" /> + <location filename="../QScintilla/Editor.py" line="1338" /> <source>Remove from dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1354" /> + <location filename="../QScintilla/Editor.py" line="1355" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1358" /> + <location filename="../QScintilla/Editor.py" line="1359" /> <source>No Language</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1385" /> + <location filename="../QScintilla/Editor.py" line="1386" /> <source>Toggle bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1387" /> + <location filename="../QScintilla/Editor.py" line="1388" /> <source>Next bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1390" /> + <location filename="../QScintilla/Editor.py" line="1391" /> <source>Previous bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1393" /> + <location filename="../QScintilla/Editor.py" line="1394" /> <source>Clear all bookmarks</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1404" /> + <location filename="../QScintilla/Editor.py" line="1405" /> <source>Toggle breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1407" /> + <location filename="../QScintilla/Editor.py" line="1408" /> <source>Toggle temporary breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1410" /> + <location filename="../QScintilla/Editor.py" line="1411" /> <source>Edit breakpoint...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5927" /> - <location filename="../QScintilla/Editor.py" line="1413" /> + <location filename="../QScintilla/Editor.py" line="5928" /> + <location filename="../QScintilla/Editor.py" line="1414" /> <source>Enable breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1416" /> + <location filename="../QScintilla/Editor.py" line="1417" /> <source>Next breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1419" /> + <location filename="../QScintilla/Editor.py" line="1420" /> <source>Previous breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1422" /> + <location filename="../QScintilla/Editor.py" line="1423" /> <source>Clear all breakpoints</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1433" /> + <location filename="../QScintilla/Editor.py" line="1434" /> <source>Toggle all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1438" /> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Toggle all folds (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1441" /> + <location filename="../QScintilla/Editor.py" line="1442" /> <source>Toggle current fold</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1445" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Expand (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1449" /> + <location filename="../QScintilla/Editor.py" line="1450" /> <source>Collapse (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1454" /> + <location filename="../QScintilla/Editor.py" line="1455" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1465" /> + <location filename="../QScintilla/Editor.py" line="1466" /> <source>Goto syntax error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> + <location filename="../QScintilla/Editor.py" line="1469" /> <source>Show syntax error message</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> + <location filename="../QScintilla/Editor.py" line="1472" /> <source>Clear syntax error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1475" /> + <location filename="../QScintilla/Editor.py" line="1476" /> <source>Next warning</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1478" /> + <location filename="../QScintilla/Editor.py" line="1479" /> <source>Previous warning</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1481" /> + <location filename="../QScintilla/Editor.py" line="1482" /> <source>Show warning message</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1484" /> + <location filename="../QScintilla/Editor.py" line="1485" /> <source>Clear warnings</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1488" /> + <location filename="../QScintilla/Editor.py" line="1489" /> <source>Next uncovered line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1491" /> + <location filename="../QScintilla/Editor.py" line="1492" /> <source>Previous uncovered line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1495" /> + <location filename="../QScintilla/Editor.py" line="1496" /> <source>Next task</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1498" /> + <location filename="../QScintilla/Editor.py" line="1499" /> <source>Previous task</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1502" /> + <location filename="../QScintilla/Editor.py" line="1503" /> <source>Next change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1505" /> + <location filename="../QScintilla/Editor.py" line="1506" /> <source>Previous change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1508" /> + <location filename="../QScintilla/Editor.py" line="1509" /> <source>Clear changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1537" /> - <location filename="../QScintilla/Editor.py" line="1528" /> - <source>Export source</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1529" /> - <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1538" /> + <location filename="../QScintilla/Editor.py" line="1529" /> + <source>Export source</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1530" /> + <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1539" /> <source>No export format given. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1548" /> + <location filename="../QScintilla/Editor.py" line="1549" /> <source>Alternatives ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1571" /> - <source>Pygments Lexer</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1572" /> + <source>Pygments Lexer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1573" /> <source>Select the Pygments lexer to apply.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2120" /> - <source>Modification of Read Only file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2121" /> + <source>Modification of Read Only file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2122" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2556" /> - <source>Add Breakpoint</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2557" /> + <source>Add Breakpoint</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2558" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2890" /> + <location filename="../QScintilla/Editor.py" line="2891" /> <source>Printing...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2907" /> + <location filename="../QScintilla/Editor.py" line="2908" /> <source>Printing completed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2909" /> + <location filename="../QScintilla/Editor.py" line="2910" /> <source>Error while printing</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2912" /> + <location filename="../QScintilla/Editor.py" line="2913" /> <source>Printing aborted</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3274" /> - <source>File Modified</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3275" /> + <source>File Modified</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3276" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="3334" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3509" /> - <location filename="../QScintilla/Editor.py" line="3490" /> - <location filename="../QScintilla/Editor.py" line="3452" /> - <source>Save File</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="3453" /> - <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3510" /> + <location filename="../QScintilla/Editor.py" line="3491" /> + <location filename="../QScintilla/Editor.py" line="3453" /> + <source>Save File</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3454" /> + <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3511" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3644" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3645" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3646" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5101" /> - <source>Autocompletion</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5102" /> + <source>Autocompletion</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5103" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5230" /> - <source>Auto-Completion Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5231" /> + <source>Auto-Completion Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5232" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523" /> - <source>Call-Tips Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5524" /> + <source>Call-Tips Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5525" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5931" /> + <location filename="../QScintilla/Editor.py" line="5932" /> <source>Disable breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6310" /> + <location filename="../QScintilla/Editor.py" line="6315" /> <source>Code Coverage</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6311" /> + <location filename="../QScintilla/Editor.py" line="6316" /> <source>Please select a coverage file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6386" /> - <location filename="../QScintilla/Editor.py" line="6378" /> + <location filename="../QScintilla/Editor.py" line="6391" /> + <location filename="../QScintilla/Editor.py" line="6383" /> <source>Show Code Coverage Annotations</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6379" /> + <location filename="../QScintilla/Editor.py" line="6384" /> <source>All lines have been covered.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387" /> + <location filename="../QScintilla/Editor.py" line="6392" /> <source>There is no coverage file available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6491" /> + <location filename="../QScintilla/Editor.py" line="6496" /> <source>Profile Data</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6492" /> + <location filename="../QScintilla/Editor.py" line="6497" /> <source>Please select a profile file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6653" /> - <location filename="../QScintilla/Editor.py" line="6647" /> + <location filename="../QScintilla/Editor.py" line="6658" /> + <location filename="../QScintilla/Editor.py" line="6652" /> <source>Syntax Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6654" /> + <location filename="../QScintilla/Editor.py" line="6659" /> <source>No syntax error message available.</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/Editor.py" line="6873" /> <location filename="../QScintilla/Editor.py" line="6867" /> - <location filename="../QScintilla/Editor.py" line="6861" /> <source>Warning</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6867" /> + <location filename="../QScintilla/Editor.py" line="6873" /> <source>No warning messages available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6937" /> <source>Style: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6934" /> + <location filename="../QScintilla/Editor.py" line="6942" /> <source>Warning: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6941" /> + <location filename="../QScintilla/Editor.py" line="6949" /> <source>Error: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Macro Name</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Select a macro name:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7074" /> + <location filename="../QScintilla/Editor.py" line="7082" /> <source>Load macro file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7120" /> - <location filename="../QScintilla/Editor.py" line="7076" /> + <location filename="../QScintilla/Editor.py" line="7128" /> + <location filename="../QScintilla/Editor.py" line="7084" /> <source>Macro files (*.macro)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7098" /> - <location filename="../QScintilla/Editor.py" line="7088" /> + <location filename="../QScintilla/Editor.py" line="7106" /> + <location filename="../QScintilla/Editor.py" line="7096" /> <source>Error loading macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7089" /> + <location filename="../QScintilla/Editor.py" line="7097" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7099" /> + <location filename="../QScintilla/Editor.py" line="7107" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7118" /> + <location filename="../QScintilla/Editor.py" line="7126" /> <source>Save macro file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7136" /> + <location filename="../QScintilla/Editor.py" line="7144" /> <source>Save macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7137" /> + <location filename="../QScintilla/Editor.py" line="7145" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7152" /> + <location filename="../QScintilla/Editor.py" line="7160" /> <source>Error saving macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7161" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7166" /> + <location filename="../QScintilla/Editor.py" line="7174" /> <source>Start Macro Recording</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7167" /> + <location filename="../QScintilla/Editor.py" line="7175" /> <source>Macro recording is already active. Start new?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7193" /> + <location filename="../QScintilla/Editor.py" line="7201" /> <source>Macro Recording</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7194" /> + <location filename="../QScintilla/Editor.py" line="7202" /> <source>Enter name of the macro:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7344" /> + <location filename="../QScintilla/Editor.py" line="7352" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7350" /> + <location filename="../QScintilla/Editor.py" line="7358" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7357" /> + <location filename="../QScintilla/Editor.py" line="7365" /> <source>File changed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7407" /> + <location filename="../QScintilla/Editor.py" line="7415" /> <source>{0} (ro)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7712" /> + <location filename="../QScintilla/Editor.py" line="7720" /> <source>Drop Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7713" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7733" /> + <location filename="../QScintilla/Editor.py" line="7741" /> <source>Resources</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7735" /> + <location filename="../QScintilla/Editor.py" line="7743" /> <source>Add file...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7736" /> + <location filename="../QScintilla/Editor.py" line="7744" /> <source>Add files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7737" /> + <location filename="../QScintilla/Editor.py" line="7745" /> <source>Add aliased file...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7739" /> + <location filename="../QScintilla/Editor.py" line="7747" /> <source>Add localized resource...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7742" /> + <location filename="../QScintilla/Editor.py" line="7750" /> <source>Add resource frame</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7761" /> + <location filename="../QScintilla/Editor.py" line="7769" /> <source>Add file resource</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7775" /> + <location filename="../QScintilla/Editor.py" line="7783" /> <source>Add file resources</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7799" /> - <location filename="../QScintilla/Editor.py" line="7793" /> + <location filename="../QScintilla/Editor.py" line="7807" /> + <location filename="../QScintilla/Editor.py" line="7801" /> <source>Add aliased file resource</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7800" /> + <location filename="../QScintilla/Editor.py" line="7808" /> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7875" /> + <location filename="../QScintilla/Editor.py" line="7883" /> <source>Package Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7876" /> + <location filename="../QScintilla/Editor.py" line="7884" /> <source>Include class attributes?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7896" /> + <location filename="../QScintilla/Editor.py" line="7904" /> <source>Imports Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7897" /> + <location filename="../QScintilla/Editor.py" line="7905" /> <source>Include imports from external modules?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7916" /> + <location filename="../QScintilla/Editor.py" line="7924" /> <source>Application Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7917" /> + <location filename="../QScintilla/Editor.py" line="7925" /> <source>Include module names?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8272" /> + <location filename="../QScintilla/Editor.py" line="8280" /> <source>Add to dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8274" /> + <location filename="../QScintilla/Editor.py" line="8282" /> <source>Ignore All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8692" /> + <location filename="../QScintilla/Editor.py" line="8700" /> <source>Sort Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8693" /> + <location filename="../QScintilla/Editor.py" line="8701" /> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8786" /> + <location filename="../QScintilla/Editor.py" line="8794" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8787" /> + <location filename="../QScintilla/Editor.py" line="8795" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8883" /> + <location filename="../QScintilla/Editor.py" line="8891" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8889" /> + <location filename="../QScintilla/Editor.py" line="8897" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="8965" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8958" /> + <location filename="../QScintilla/Editor.py" line="8966" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -19674,38 +19674,38 @@ <context> <name>EricTextEditSearchWidget</name> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="115" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="116" /> <source>Find:</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="141" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="142" /> <source>Match case</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="146" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="147" /> <source>Whole word</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="156" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="157" /> <source>Press to find the previous occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="162" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="163" /> <source>Press to find the next occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="481" /> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="433" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="482" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="434" /> <source>'{0}' was not found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="486" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="487" /> <source>Match {0} of {1}</source> <translation type="unfinished" /> </message> @@ -32871,29 +32871,29 @@ <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="119" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="118" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="121" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="120" /> <source>Find Next</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="131" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="130" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="133" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="132" /> <source>Find Prev</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="297" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="299" /> <source>'{0}' was not found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="417" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="419" /> <source>Replaced {0} occurrences.</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="423" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="425" /> <source>Nothing replaced because '{0}' was not found.</source> <translation type="unfinished" /> </message> @@ -70188,74 +70188,74 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="155" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="154" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="157" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="156" /> <source>Find Next</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="168" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="167" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="170" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="169" /> <source>Find Prev</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="181" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="180" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="183" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="182" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="195" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="194" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="197" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="196" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="209" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="208" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="211" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="210" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="297" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="299" /> <source>Press to find the next occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="304" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="306" /> <source>Press to find the previous occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="311" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="313" /> <source>Press to replace the selection and search for the next occurence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="321" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="323" /> <source>Press to replace the selection ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="328" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="330" /> <source>Press to replace all occurrences ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1114" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="665" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="627" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1123" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="674" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="636" /> <source>'{0}' was not found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1267" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1276" /> <source>Replaced {0} occurrences.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1273" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1282" /> <source>Nothing replaced because '{0}' was not found.</source> <translation type="unfinished" /> </message> @@ -70374,7 +70374,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/SearchWidget.py" line="100" /> + <location filename="../WebBrowser/SearchWidget.py" line="101" /> <source>Expression was not found.</source> <translation type="unfinished" /> </message> @@ -70389,7 +70389,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/SearchWidget.py" line="212" /> + <location filename="../UI/SearchWidget.py" line="213" /> <source>'{0}' was not found.</source> <translation type="unfinished" /> </message> @@ -71654,142 +71654,157 @@ <context> <name>Shell</name> <message> - <location filename="../QScintilla/Shell.py" line="162" /> + <location filename="../QScintilla/Shell.py" line="164" /> <source>Shell - Passive</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="164" /> + <location filename="../QScintilla/Shell.py" line="166" /> <source>Shell</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="168" /> - <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. '%quit' or '%exit' is used to exit the application. These commands (except '%environments', '%envs' and '%which') are available through the window menus as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="198" /> - <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. These commands (except '%environments' and '%envs') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="262" /> + <location filename="../QScintilla/Shell.py" line="170" /> + <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="189" /> + <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="244" /> <source>Passive >>> </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="305" /> + <location filename="../QScintilla/Shell.py" line="287" /> <source>Start</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="310" /> + <location filename="../QScintilla/Shell.py" line="292" /> <source>History</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/Shell.py" line="293" /> + <source>Select entry</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="294" /> + <source>Show</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="306" /> + <location filename="../QScintilla/Shell.py" line="295" /> + <source>Clear</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="299" /> + <source>Cut</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="300" /> + <source>Copy</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="301" /> + <source>Paste</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="304" /> + <source>Find</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="307" /> + <source>Restart</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="308" /> + <source>Restart and Clear</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="311" /> - <source>Select entry</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="312" /> - <source>Show</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="325" /> + <source>Active Name</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="313" /> - <source>Clear</source> + <source>Save Contents...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="315" /> + <source>Configure...</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Shell.py" line="317" /> - <source>Cut</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="318" /> - <source>Copy</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="319" /> - <source>Paste</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="323" /> - <source>Find</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="326" /> - <source>Restart</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="327" /> - <source>Restart and Clear</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="330" /> - <source>Active Name</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="332" /> - <source>Save Contents...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="334" /> - <source>Configure...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="2067" /> - <location filename="../QScintilla/Shell.py" line="1846" /> - <location filename="../QScintilla/Shell.py" line="1845" /> - <location filename="../QScintilla/Shell.py" line="408" /> + <source>Special Commands Help</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2087" /> + <location filename="../QScintilla/Shell.py" line="1849" /> + <location filename="../QScintilla/Shell.py" line="1848" /> + <location filename="../QScintilla/Shell.py" line="391" /> <source>Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="806" /> + <location filename="../QScintilla/Shell.py" line="780" /> + <source>Clear History</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="781" /> + <source>Shall the current history really be cleared?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="803" /> <source>Select History</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="807" /> + <location filename="../QScintilla/Shell.py" line="804" /> <source>Select the history entry to execute (most recent shown last).</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="872" /> - <source>Passive Debug Mode</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="873" /> - <source> -Not connected</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="876" /> - <source>No.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Shell.py" line="878" /> + <source>Passive Debug Mode</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="879" /> + <source> +Not connected</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="882" /> + <source>No.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="884" /> <source>{0} on {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="925" /> + <location filename="../QScintilla/Shell.py" line="931" /> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -71797,91 +71812,128 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="934" /> + <location filename="../QScintilla/Shell.py" line="940" /> <source>Exception "{0}" {1} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="954" /> + <location filename="../QScintilla/Shell.py" line="960" /> <source>Unspecified syntax error. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="957" /> + <location filename="../QScintilla/Shell.py" line="963" /> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="981" /> + <location filename="../QScintilla/Shell.py" line="987" /> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1063" /> + <location filename="../QScintilla/Shell.py" line="1069" /> <source>StdOut: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1071" /> + <location filename="../QScintilla/Shell.py" line="1077" /> <source>StdErr: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1097" /> + <location filename="../QScintilla/Shell.py" line="1103" /> <source><{0}> {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1892" /> + <location filename="../QScintilla/Shell.py" line="1886" /> <source>Available Virtual Environments: {0} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1935" /> - <location filename="../QScintilla/Shell.py" line="1899" /> + <location filename="../QScintilla/Shell.py" line="1955" /> + <location filename="../QScintilla/Shell.py" line="1892" /> <source>Current Virtual Environment: '{0}' </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2207" /> + <location filename="../QScintilla/Shell.py" line="1910" /> + <source>Error: Argument must be an integer value. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1927" /> + <source>Error: Command '{0}' is not supported. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2227" /> <source>Drop Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2208" /> + <location filename="../QScintilla/Shell.py" line="2228" /> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2451" /> - <location filename="../QScintilla/Shell.py" line="2437" /> - <location filename="../QScintilla/Shell.py" line="2416" /> + <location filename="../QScintilla/Shell.py" line="2471" /> + <location filename="../QScintilla/Shell.py" line="2457" /> + <location filename="../QScintilla/Shell.py" line="2436" /> <source>Save Shell Contents</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2418" /> - <source>Text Files (*.txt);;All Files (*)</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Shell.py" line="2438" /> + <source>Text Files (*.txt);;All Files (*)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2458" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2452" /> + <location filename="../QScintilla/Shell.py" line="2472" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished" /> </message> + <message> + <location filename="../QScintilla/Shell.py" line="2486" /> + <source><tr><td>%restart</td><td>Kill the shell and start a new one.</td></tr><tr><td>%clear</td><td>Clear the display of the shell window.</td></tr><tr><td>%start [environment]</td><td>Start a shell for a virtual environment with the given name. If no name if given, a default shell is started.</td></tr><tr><td>%envs<br/>%environments</td><td>Show a list of known virtual environment names.</td></tr><tr><td>%which</td><td>Show the name of the active virtual environment.</td></tr><tr><td>%hist [n]<br/>%history [n]</td><td>Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.</td></tr><tr><td>%shist<br/>%shistory<br/>%select_history</td><td>Select a command from the history.</td></tr><tr><td>%chist<br/>%chistory<br/>%clear_history</td><td>Clear the current history after confirmation.</td></tr><tr><td>%help</td><td>Show this help text.</td></tr></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2508" /> + <source><tr><td>%quit<br/>%quit()<br/>%exit<br/>%exit()</td><td>Exit the application.</td></tr></table><p>These commands are available through the window menus as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2516" /> + <source></table><p>These commands are available through the context menu as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2523" /> + <source>Shell Special Commands</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2524" /> + <source>The shell supports these special commands:</source> + <translation type="unfinished" /> + </message> </context> <context> <name>ShellHistoryDialog</name>
--- a/src/eric7/i18n/eric7_en.ts Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/i18n/eric7_en.ts Sun Sep 03 17:35:15 2023 +0200 @@ -12255,996 +12255,996 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3332" /> - <location filename="../QScintilla/Editor.py" line="428" /> - <location filename="../QScintilla/Editor.py" line="413" /> + <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="414" /> <source>Open File</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="414" /> + <location filename="../QScintilla/Editor.py" line="415" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="430" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="526" /> + <location filename="../QScintilla/Editor.py" line="527" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="890" /> + <location filename="../QScintilla/Editor.py" line="891" /> <source>Undo</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="893" /> + <location filename="../QScintilla/Editor.py" line="894" /> <source>Redo</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="896" /> + <location filename="../QScintilla/Editor.py" line="897" /> <source>Revert to last saved state</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="900" /> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Cut</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="903" /> + <location filename="../QScintilla/Editor.py" line="904" /> <source>Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="906" /> + <location filename="../QScintilla/Editor.py" line="907" /> <source>Paste</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="913" /> <source>Indent</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="917" /> + <location filename="../QScintilla/Editor.py" line="918" /> <source>Unindent</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="922" /> + <location filename="../QScintilla/Editor.py" line="923" /> <source>Comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="927" /> + <location filename="../QScintilla/Editor.py" line="928" /> <source>Uncomment</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="9150" /> - <location filename="../QScintilla/Editor.py" line="932" /> + <location filename="../QScintilla/Editor.py" line="9158" /> + <location filename="../QScintilla/Editor.py" line="933" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="935" /> - <source>Select to brace</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="936" /> - <source>Select all</source> + <source>Select to brace</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="937" /> + <source>Select all</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="938" /> <source>Deselect all</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="939" /> + <location filename="../QScintilla/Editor.py" line="940" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="951" /> + <location filename="../QScintilla/Editor.py" line="952" /> <source>Use Monospaced Font</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="957" /> <source>Autosave enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="962" /> <source>Typing aids enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="969" /> + <location filename="../QScintilla/Editor.py" line="970" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="978" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Calltip</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="981" /> + <location filename="../QScintilla/Editor.py" line="982" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="996" /> + <location filename="../QScintilla/Editor.py" line="997" /> <source>New Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1001" /> + <location filename="../QScintilla/Editor.py" line="1002" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Save</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1013" /> + <location filename="../QScintilla/Editor.py" line="1014" /> <source>Save As...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1018" /> + <location filename="../QScintilla/Editor.py" line="1019" /> <source>Save Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1040" /> - <location filename="../QScintilla/Editor.py" line="1037" /> + <location filename="../QScintilla/Editor.py" line="1041" /> + <location filename="../QScintilla/Editor.py" line="1038" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1044" /> + <location filename="../QScintilla/Editor.py" line="1045" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1047" /> + <location filename="../QScintilla/Editor.py" line="1048" /> <source>Complete from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1049" /> + <location filename="../QScintilla/Editor.py" line="1050" /> <source>Complete from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052" /> + <location filename="../QScintilla/Editor.py" line="1053" /> <source>Complete from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1066" /> + <location filename="../QScintilla/Editor.py" line="1067" /> <source>Check</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1077" /> + <location filename="../QScintilla/Editor.py" line="1078" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1083" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> + <location filename="../QScintilla/Editor.py" line="1089" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1092" /> + <location filename="../QScintilla/Editor.py" line="1093" /> <source>Check Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1096" /> + <location filename="../QScintilla/Editor.py" line="1097" /> <source>Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1105" /> + <location filename="../QScintilla/Editor.py" line="1106" /> <source>isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1110" /> + <location filename="../QScintilla/Editor.py" line="1111" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1114" /> + <location filename="../QScintilla/Editor.py" line="1115" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1130" /> + <location filename="../QScintilla/Editor.py" line="1131" /> <source>Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1141" /> + <location filename="../QScintilla/Editor.py" line="1142" /> <source>Show</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1143" /> + <location filename="../QScintilla/Editor.py" line="1144" /> <source>Code metrics...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1145" /> + <location filename="../QScintilla/Editor.py" line="1146" /> <source>Code coverage...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1148" /> + <location filename="../QScintilla/Editor.py" line="1149" /> <source>Show code coverage annotations</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1151" /> + <location filename="../QScintilla/Editor.py" line="1152" /> <source>Hide code coverage annotations</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1155" /> + <location filename="../QScintilla/Editor.py" line="1156" /> <source>Profile data...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1169" /> + <location filename="../QScintilla/Editor.py" line="1170" /> <source>Diagrams</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1171" /> - <source>Class Diagram...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1172" /> - <source>Package Diagram...</source> + <source>Class Diagram...</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1173" /> + <source>Package Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1174" /> <source>Imports Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1175" /> + <location filename="../QScintilla/Editor.py" line="1176" /> <source>Application Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1180" /> + <location filename="../QScintilla/Editor.py" line="1181" /> <source>Load Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1195" /> + <location filename="../QScintilla/Editor.py" line="1196" /> <source>Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1199" /> + <location filename="../QScintilla/Editor.py" line="1200" /> <source>Text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1222" /> + <location filename="../QScintilla/Editor.py" line="1223" /> <source>Guessed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1551" /> - <location filename="../QScintilla/Editor.py" line="1226" /> + <location filename="../QScintilla/Editor.py" line="1552" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>Alternatives</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1243" /> + <location filename="../QScintilla/Editor.py" line="1244" /> <source>Encodings</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1266" /> + <location filename="../QScintilla/Editor.py" line="1267" /> <source>Re-Open With Encoding</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1286" /> + <location filename="../QScintilla/Editor.py" line="1287" /> <source>End-of-Line Type</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1290" /> + <location filename="../QScintilla/Editor.py" line="1291" /> <source>Unix</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1296" /> + <location filename="../QScintilla/Editor.py" line="1297" /> <source>Windows</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1302" /> + <location filename="../QScintilla/Editor.py" line="1303" /> <source>Macintosh</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1320" /> + <location filename="../QScintilla/Editor.py" line="1321" /> <source>Spelling</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8268" /> - <location filename="../QScintilla/Editor.py" line="1328" /> + <location filename="../QScintilla/Editor.py" line="8276" /> + <location filename="../QScintilla/Editor.py" line="1329" /> <source>Check spelling...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1333" /> + <location filename="../QScintilla/Editor.py" line="1334" /> <source>Check spelling of selection...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1337" /> + <location filename="../QScintilla/Editor.py" line="1338" /> <source>Remove from dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1354" /> + <location filename="../QScintilla/Editor.py" line="1355" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1358" /> + <location filename="../QScintilla/Editor.py" line="1359" /> <source>No Language</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1385" /> + <location filename="../QScintilla/Editor.py" line="1386" /> <source>Toggle bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1387" /> + <location filename="../QScintilla/Editor.py" line="1388" /> <source>Next bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1390" /> + <location filename="../QScintilla/Editor.py" line="1391" /> <source>Previous bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1393" /> + <location filename="../QScintilla/Editor.py" line="1394" /> <source>Clear all bookmarks</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1404" /> + <location filename="../QScintilla/Editor.py" line="1405" /> <source>Toggle breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1407" /> + <location filename="../QScintilla/Editor.py" line="1408" /> <source>Toggle temporary breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1410" /> + <location filename="../QScintilla/Editor.py" line="1411" /> <source>Edit breakpoint...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5927" /> - <location filename="../QScintilla/Editor.py" line="1413" /> + <location filename="../QScintilla/Editor.py" line="5928" /> + <location filename="../QScintilla/Editor.py" line="1414" /> <source>Enable breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1416" /> + <location filename="../QScintilla/Editor.py" line="1417" /> <source>Next breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1419" /> + <location filename="../QScintilla/Editor.py" line="1420" /> <source>Previous breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1422" /> + <location filename="../QScintilla/Editor.py" line="1423" /> <source>Clear all breakpoints</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1433" /> + <location filename="../QScintilla/Editor.py" line="1434" /> <source>Toggle all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1438" /> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Toggle all folds (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1441" /> + <location filename="../QScintilla/Editor.py" line="1442" /> <source>Toggle current fold</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1445" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Expand (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1449" /> + <location filename="../QScintilla/Editor.py" line="1450" /> <source>Collapse (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1454" /> + <location filename="../QScintilla/Editor.py" line="1455" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1465" /> + <location filename="../QScintilla/Editor.py" line="1466" /> <source>Goto syntax error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> + <location filename="../QScintilla/Editor.py" line="1469" /> <source>Show syntax error message</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> + <location filename="../QScintilla/Editor.py" line="1472" /> <source>Clear syntax error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1475" /> + <location filename="../QScintilla/Editor.py" line="1476" /> <source>Next warning</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1478" /> + <location filename="../QScintilla/Editor.py" line="1479" /> <source>Previous warning</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1481" /> + <location filename="../QScintilla/Editor.py" line="1482" /> <source>Show warning message</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1484" /> + <location filename="../QScintilla/Editor.py" line="1485" /> <source>Clear warnings</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1488" /> + <location filename="../QScintilla/Editor.py" line="1489" /> <source>Next uncovered line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1491" /> + <location filename="../QScintilla/Editor.py" line="1492" /> <source>Previous uncovered line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1495" /> + <location filename="../QScintilla/Editor.py" line="1496" /> <source>Next task</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1498" /> + <location filename="../QScintilla/Editor.py" line="1499" /> <source>Previous task</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1502" /> + <location filename="../QScintilla/Editor.py" line="1503" /> <source>Next change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1505" /> + <location filename="../QScintilla/Editor.py" line="1506" /> <source>Previous change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1508" /> + <location filename="../QScintilla/Editor.py" line="1509" /> <source>Clear changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1537" /> - <location filename="../QScintilla/Editor.py" line="1528" /> - <source>Export source</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1529" /> - <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1538" /> + <location filename="../QScintilla/Editor.py" line="1529" /> + <source>Export source</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1530" /> + <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1539" /> <source>No export format given. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1548" /> + <location filename="../QScintilla/Editor.py" line="1549" /> <source>Alternatives ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1571" /> - <source>Pygments Lexer</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1572" /> + <source>Pygments Lexer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1573" /> <source>Select the Pygments lexer to apply.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2120" /> - <source>Modification of Read Only file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2121" /> + <source>Modification of Read Only file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2122" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2556" /> - <source>Add Breakpoint</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2557" /> + <source>Add Breakpoint</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2558" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2890" /> + <location filename="../QScintilla/Editor.py" line="2891" /> <source>Printing...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2907" /> + <location filename="../QScintilla/Editor.py" line="2908" /> <source>Printing completed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2909" /> + <location filename="../QScintilla/Editor.py" line="2910" /> <source>Error while printing</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2912" /> + <location filename="../QScintilla/Editor.py" line="2913" /> <source>Printing aborted</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3274" /> - <source>File Modified</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3275" /> + <source>File Modified</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3276" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="3334" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3509" /> - <location filename="../QScintilla/Editor.py" line="3490" /> - <location filename="../QScintilla/Editor.py" line="3452" /> - <source>Save File</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="3453" /> - <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3510" /> + <location filename="../QScintilla/Editor.py" line="3491" /> + <location filename="../QScintilla/Editor.py" line="3453" /> + <source>Save File</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3454" /> + <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3511" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3644" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3645" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3646" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5101" /> - <source>Autocompletion</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5102" /> + <source>Autocompletion</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5103" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5230" /> - <source>Auto-Completion Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5231" /> + <source>Auto-Completion Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5232" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523" /> - <source>Call-Tips Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5524" /> + <source>Call-Tips Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5525" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5931" /> + <location filename="../QScintilla/Editor.py" line="5932" /> <source>Disable breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6310" /> + <location filename="../QScintilla/Editor.py" line="6315" /> <source>Code Coverage</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6311" /> + <location filename="../QScintilla/Editor.py" line="6316" /> <source>Please select a coverage file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6386" /> - <location filename="../QScintilla/Editor.py" line="6378" /> + <location filename="../QScintilla/Editor.py" line="6391" /> + <location filename="../QScintilla/Editor.py" line="6383" /> <source>Show Code Coverage Annotations</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6379" /> + <location filename="../QScintilla/Editor.py" line="6384" /> <source>All lines have been covered.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387" /> + <location filename="../QScintilla/Editor.py" line="6392" /> <source>There is no coverage file available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6491" /> + <location filename="../QScintilla/Editor.py" line="6496" /> <source>Profile Data</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6492" /> + <location filename="../QScintilla/Editor.py" line="6497" /> <source>Please select a profile file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6653" /> - <location filename="../QScintilla/Editor.py" line="6647" /> + <location filename="../QScintilla/Editor.py" line="6658" /> + <location filename="../QScintilla/Editor.py" line="6652" /> <source>Syntax Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6654" /> + <location filename="../QScintilla/Editor.py" line="6659" /> <source>No syntax error message available.</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/Editor.py" line="6873" /> <location filename="../QScintilla/Editor.py" line="6867" /> - <location filename="../QScintilla/Editor.py" line="6861" /> <source>Warning</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6867" /> + <location filename="../QScintilla/Editor.py" line="6873" /> <source>No warning messages available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6937" /> <source>Style: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6934" /> + <location filename="../QScintilla/Editor.py" line="6942" /> <source>Warning: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6941" /> + <location filename="../QScintilla/Editor.py" line="6949" /> <source>Error: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Macro Name</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Select a macro name:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7074" /> + <location filename="../QScintilla/Editor.py" line="7082" /> <source>Load macro file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7120" /> - <location filename="../QScintilla/Editor.py" line="7076" /> + <location filename="../QScintilla/Editor.py" line="7128" /> + <location filename="../QScintilla/Editor.py" line="7084" /> <source>Macro files (*.macro)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7098" /> - <location filename="../QScintilla/Editor.py" line="7088" /> + <location filename="../QScintilla/Editor.py" line="7106" /> + <location filename="../QScintilla/Editor.py" line="7096" /> <source>Error loading macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7089" /> + <location filename="../QScintilla/Editor.py" line="7097" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7099" /> + <location filename="../QScintilla/Editor.py" line="7107" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7118" /> + <location filename="../QScintilla/Editor.py" line="7126" /> <source>Save macro file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7136" /> + <location filename="../QScintilla/Editor.py" line="7144" /> <source>Save macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7137" /> + <location filename="../QScintilla/Editor.py" line="7145" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7152" /> + <location filename="../QScintilla/Editor.py" line="7160" /> <source>Error saving macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7161" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7166" /> + <location filename="../QScintilla/Editor.py" line="7174" /> <source>Start Macro Recording</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7167" /> + <location filename="../QScintilla/Editor.py" line="7175" /> <source>Macro recording is already active. Start new?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7193" /> + <location filename="../QScintilla/Editor.py" line="7201" /> <source>Macro Recording</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7194" /> + <location filename="../QScintilla/Editor.py" line="7202" /> <source>Enter name of the macro:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7344" /> + <location filename="../QScintilla/Editor.py" line="7352" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7350" /> + <location filename="../QScintilla/Editor.py" line="7358" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7357" /> + <location filename="../QScintilla/Editor.py" line="7365" /> <source>File changed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7407" /> + <location filename="../QScintilla/Editor.py" line="7415" /> <source>{0} (ro)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7712" /> + <location filename="../QScintilla/Editor.py" line="7720" /> <source>Drop Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7713" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7733" /> + <location filename="../QScintilla/Editor.py" line="7741" /> <source>Resources</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7735" /> + <location filename="../QScintilla/Editor.py" line="7743" /> <source>Add file...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7736" /> + <location filename="../QScintilla/Editor.py" line="7744" /> <source>Add files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7737" /> + <location filename="../QScintilla/Editor.py" line="7745" /> <source>Add aliased file...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7739" /> + <location filename="../QScintilla/Editor.py" line="7747" /> <source>Add localized resource...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7742" /> + <location filename="../QScintilla/Editor.py" line="7750" /> <source>Add resource frame</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7761" /> + <location filename="../QScintilla/Editor.py" line="7769" /> <source>Add file resource</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7775" /> + <location filename="../QScintilla/Editor.py" line="7783" /> <source>Add file resources</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7799" /> - <location filename="../QScintilla/Editor.py" line="7793" /> + <location filename="../QScintilla/Editor.py" line="7807" /> + <location filename="../QScintilla/Editor.py" line="7801" /> <source>Add aliased file resource</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7800" /> + <location filename="../QScintilla/Editor.py" line="7808" /> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7875" /> + <location filename="../QScintilla/Editor.py" line="7883" /> <source>Package Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7876" /> + <location filename="../QScintilla/Editor.py" line="7884" /> <source>Include class attributes?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7896" /> + <location filename="../QScintilla/Editor.py" line="7904" /> <source>Imports Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7897" /> + <location filename="../QScintilla/Editor.py" line="7905" /> <source>Include imports from external modules?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7916" /> + <location filename="../QScintilla/Editor.py" line="7924" /> <source>Application Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7917" /> + <location filename="../QScintilla/Editor.py" line="7925" /> <source>Include module names?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8272" /> + <location filename="../QScintilla/Editor.py" line="8280" /> <source>Add to dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8274" /> + <location filename="../QScintilla/Editor.py" line="8282" /> <source>Ignore All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8692" /> + <location filename="../QScintilla/Editor.py" line="8700" /> <source>Sort Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8693" /> + <location filename="../QScintilla/Editor.py" line="8701" /> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8786" /> + <location filename="../QScintilla/Editor.py" line="8794" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8787" /> + <location filename="../QScintilla/Editor.py" line="8795" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8883" /> + <location filename="../QScintilla/Editor.py" line="8891" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8889" /> + <location filename="../QScintilla/Editor.py" line="8897" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="8965" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8958" /> + <location filename="../QScintilla/Editor.py" line="8966" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -19690,38 +19690,38 @@ <context> <name>EricTextEditSearchWidget</name> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="115" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="116" /> <source>Find:</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="141" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="142" /> <source>Match case</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="146" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="147" /> <source>Whole word</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="156" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="157" /> <source>Press to find the previous occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="162" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="163" /> <source>Press to find the next occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="481" /> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="433" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="482" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="434" /> <source>'{0}' was not found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="486" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="487" /> <source>Match {0} of {1}</source> <translation type="unfinished" /> </message> @@ -32893,29 +32893,29 @@ <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="119" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="118" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="121" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="120" /> <source>Find Next</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="131" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="130" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="133" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="132" /> <source>Find Prev</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="297" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="299" /> <source>'{0}' was not found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="417" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="419" /> <source>Replaced {0} occurrences.</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="423" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="425" /> <source>Nothing replaced because '{0}' was not found.</source> <translation type="unfinished" /> </message> @@ -70242,74 +70242,74 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="155" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="154" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="157" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="156" /> <source>Find Next</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="168" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="167" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="170" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="169" /> <source>Find Prev</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="181" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="180" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="183" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="182" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="195" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="194" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="197" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="196" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="209" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="208" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="211" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="210" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="297" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="299" /> <source>Press to find the next occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="304" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="306" /> <source>Press to find the previous occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="311" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="313" /> <source>Press to replace the selection and search for the next occurence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="321" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="323" /> <source>Press to replace the selection ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="328" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="330" /> <source>Press to replace all occurrences ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1114" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="665" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="627" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1123" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="674" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="636" /> <source>'{0}' was not found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1267" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1276" /> <source>Replaced {0} occurrences.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1273" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1282" /> <source>Nothing replaced because '{0}' was not found.</source> <translation type="unfinished" /> </message> @@ -70428,7 +70428,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../WebBrowser/SearchWidget.py" line="100" /> + <location filename="../WebBrowser/SearchWidget.py" line="101" /> <source>Expression was not found.</source> <translation type="unfinished" /> </message> @@ -70443,7 +70443,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/SearchWidget.py" line="212" /> + <location filename="../UI/SearchWidget.py" line="213" /> <source>'{0}' was not found.</source> <translation type="unfinished" /> </message> @@ -71708,142 +71708,157 @@ <context> <name>Shell</name> <message> - <location filename="../QScintilla/Shell.py" line="162" /> + <location filename="../QScintilla/Shell.py" line="164" /> <source>Shell - Passive</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="164" /> + <location filename="../QScintilla/Shell.py" line="166" /> <source>Shell</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="168" /> - <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. '%quit' or '%exit' is used to exit the application. These commands (except '%environments', '%envs' and '%which') are available through the window menus as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="198" /> - <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. These commands (except '%environments' and '%envs') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="262" /> + <location filename="../QScintilla/Shell.py" line="170" /> + <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="189" /> + <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="244" /> <source>Passive >>> </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="305" /> + <location filename="../QScintilla/Shell.py" line="287" /> <source>Start</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="310" /> + <location filename="../QScintilla/Shell.py" line="292" /> <source>History</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/Shell.py" line="293" /> + <source>Select entry</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="294" /> + <source>Show</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="306" /> + <location filename="../QScintilla/Shell.py" line="295" /> + <source>Clear</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="299" /> + <source>Cut</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="300" /> + <source>Copy</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="301" /> + <source>Paste</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="304" /> + <source>Find</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="307" /> + <source>Restart</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="308" /> + <source>Restart and Clear</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="311" /> - <source>Select entry</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="312" /> - <source>Show</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="325" /> + <source>Active Name</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="313" /> - <source>Clear</source> + <source>Save Contents...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="315" /> + <source>Configure...</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Shell.py" line="317" /> - <source>Cut</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="318" /> - <source>Copy</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="319" /> - <source>Paste</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="323" /> - <source>Find</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="326" /> - <source>Restart</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="327" /> - <source>Restart and Clear</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="330" /> - <source>Active Name</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="332" /> - <source>Save Contents...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="334" /> - <source>Configure...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="2067" /> - <location filename="../QScintilla/Shell.py" line="1846" /> - <location filename="../QScintilla/Shell.py" line="1845" /> - <location filename="../QScintilla/Shell.py" line="408" /> + <source>Special Commands Help</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2087" /> + <location filename="../QScintilla/Shell.py" line="1849" /> + <location filename="../QScintilla/Shell.py" line="1848" /> + <location filename="../QScintilla/Shell.py" line="391" /> <source>Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="806" /> + <location filename="../QScintilla/Shell.py" line="780" /> + <source>Clear History</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="781" /> + <source>Shall the current history really be cleared?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="803" /> <source>Select History</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="807" /> + <location filename="../QScintilla/Shell.py" line="804" /> <source>Select the history entry to execute (most recent shown last).</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="872" /> - <source>Passive Debug Mode</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="873" /> - <source> -Not connected</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="876" /> - <source>No.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Shell.py" line="878" /> + <source>Passive Debug Mode</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="879" /> + <source> +Not connected</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="882" /> + <source>No.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="884" /> <source>{0} on {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="925" /> + <location filename="../QScintilla/Shell.py" line="931" /> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -71851,91 +71866,128 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="934" /> + <location filename="../QScintilla/Shell.py" line="940" /> <source>Exception "{0}" {1} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="954" /> + <location filename="../QScintilla/Shell.py" line="960" /> <source>Unspecified syntax error. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="957" /> + <location filename="../QScintilla/Shell.py" line="963" /> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="981" /> + <location filename="../QScintilla/Shell.py" line="987" /> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1063" /> + <location filename="../QScintilla/Shell.py" line="1069" /> <source>StdOut: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1071" /> + <location filename="../QScintilla/Shell.py" line="1077" /> <source>StdErr: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1097" /> + <location filename="../QScintilla/Shell.py" line="1103" /> <source><{0}> {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1892" /> + <location filename="../QScintilla/Shell.py" line="1886" /> <source>Available Virtual Environments: {0} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1935" /> - <location filename="../QScintilla/Shell.py" line="1899" /> + <location filename="../QScintilla/Shell.py" line="1955" /> + <location filename="../QScintilla/Shell.py" line="1892" /> <source>Current Virtual Environment: '{0}' </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2207" /> + <location filename="../QScintilla/Shell.py" line="1910" /> + <source>Error: Argument must be an integer value. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1927" /> + <source>Error: Command '{0}' is not supported. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2227" /> <source>Drop Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2208" /> + <location filename="../QScintilla/Shell.py" line="2228" /> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2451" /> - <location filename="../QScintilla/Shell.py" line="2437" /> - <location filename="../QScintilla/Shell.py" line="2416" /> + <location filename="../QScintilla/Shell.py" line="2471" /> + <location filename="../QScintilla/Shell.py" line="2457" /> + <location filename="../QScintilla/Shell.py" line="2436" /> <source>Save Shell Contents</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2418" /> - <source>Text Files (*.txt);;All Files (*)</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Shell.py" line="2438" /> + <source>Text Files (*.txt);;All Files (*)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2458" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2452" /> + <location filename="../QScintilla/Shell.py" line="2472" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished" /> </message> + <message> + <location filename="../QScintilla/Shell.py" line="2486" /> + <source><tr><td>%restart</td><td>Kill the shell and start a new one.</td></tr><tr><td>%clear</td><td>Clear the display of the shell window.</td></tr><tr><td>%start [environment]</td><td>Start a shell for a virtual environment with the given name. If no name if given, a default shell is started.</td></tr><tr><td>%envs<br/>%environments</td><td>Show a list of known virtual environment names.</td></tr><tr><td>%which</td><td>Show the name of the active virtual environment.</td></tr><tr><td>%hist [n]<br/>%history [n]</td><td>Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.</td></tr><tr><td>%shist<br/>%shistory<br/>%select_history</td><td>Select a command from the history.</td></tr><tr><td>%chist<br/>%chistory<br/>%clear_history</td><td>Clear the current history after confirmation.</td></tr><tr><td>%help</td><td>Show this help text.</td></tr></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2508" /> + <source><tr><td>%quit<br/>%quit()<br/>%exit<br/>%exit()</td><td>Exit the application.</td></tr></table><p>These commands are available through the window menus as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2516" /> + <source></table><p>These commands are available through the context menu as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2523" /> + <source>Shell Special Commands</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2524" /> + <source>The shell supports these special commands:</source> + <translation type="unfinished" /> + </message> </context> <context> <name>ShellHistoryDialog</name>
--- a/src/eric7/i18n/eric7_es.ts Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/i18n/eric7_es.ts Sun Sep 03 17:35:15 2023 +0200 @@ -12323,984 +12323,984 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3332" /> - <location filename="../QScintilla/Editor.py" line="428" /> - <location filename="../QScintilla/Editor.py" line="413" /> + <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="414" /> <source>Open File</source> <translation>Abrir archivo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="414" /> + <location filename="../QScintilla/Editor.py" line="415" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> <translation><p>El tamaño del archivo <b>{0}</b> es <b>{1} KB</b>, mayor que el limite configurado de <b>{2} KB</b>. ¡No se va a abrir!</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="430" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>El tamaño del archivo <b>{0}</b> es <b>{1} KB</b>. ¿Desea cargarlo de todos modos?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="526" /> + <location filename="../QScintilla/Editor.py" line="527" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Una Ventana de Edición de Códigos Fuente</b><p>Esta ventana se utiliza para mostrar y editar un archivo de código fuente. Puede abrir tantas como desee. El nombre del archivo se muestra en la barra de título de la ventana.</p><p>Para insertar puntos de interrupción basta con hacer un click en el espacio entre los números de línea y los marcadores de plegado. Pueden editarse con el menú de contexto de los márgenes.</p><p>Para insertar marcadores solo hay que hacer Shift-click en el espacio entre los números de línea y los marcadores de plegado.</p><p>Estas acciones se pueden revertir utilizando el menú de contexto.</p><p>Haciendo Ctrl-click en un marcador de error sintáctico se muestra información sobre el dicho error.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="890" /> + <location filename="../QScintilla/Editor.py" line="891" /> <source>Undo</source> <translation>Deshacer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="893" /> + <location filename="../QScintilla/Editor.py" line="894" /> <source>Redo</source> <translation>Rehacer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="896" /> + <location filename="../QScintilla/Editor.py" line="897" /> <source>Revert to last saved state</source> <translation>Volver al último estado guardado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="900" /> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Cut</source> <translation>Cortar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="903" /> + <location filename="../QScintilla/Editor.py" line="904" /> <source>Copy</source> <translation>Copiar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="906" /> + <location filename="../QScintilla/Editor.py" line="907" /> <source>Paste</source> <translation>Pegar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="913" /> <source>Indent</source> <translation>Indentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="917" /> + <location filename="../QScintilla/Editor.py" line="918" /> <source>Unindent</source> <translation>Desindentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="922" /> + <location filename="../QScintilla/Editor.py" line="923" /> <source>Comment</source> <translation>Pasar a comentario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="927" /> + <location filename="../QScintilla/Editor.py" line="928" /> <source>Uncomment</source> <translation>Sacar de comentario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="9150" /> - <location filename="../QScintilla/Editor.py" line="932" /> + <location filename="../QScintilla/Editor.py" line="9158" /> + <location filename="../QScintilla/Editor.py" line="933" /> <source>Generate Docstring</source> <translation>Generar Docstring</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="935" /> - <source>Select to brace</source> - <translation>Seleccionar hasta la llave ( '{' o '}' )</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="936" /> - <source>Select all</source> - <translation>Seleccionar todo</translation> + <source>Select to brace</source> + <translation>Seleccionar hasta la llave ( '{' o '}' )</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="937" /> + <source>Select all</source> + <translation>Seleccionar todo</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="938" /> <source>Deselect all</source> <translation>Deseleccionar todo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939" /> + <location filename="../QScintilla/Editor.py" line="940" /> <source>Execute Selection In Console</source> <translation>Ejecutar Selección en Consola</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="951" /> + <location filename="../QScintilla/Editor.py" line="952" /> <source>Use Monospaced Font</source> <translation>Usar fuente monoespaciada</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="957" /> <source>Autosave enabled</source> <translation>Autoguardar habilitado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="962" /> <source>Typing aids enabled</source> <translation>Ayudas al tecleo habilitadas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="969" /> + <location filename="../QScintilla/Editor.py" line="970" /> <source>Automatic Completion enabled</source> <translation>Autocompletar habilitado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="978" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Calltip</source> <translation>Consejo de llamada</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="981" /> + <location filename="../QScintilla/Editor.py" line="982" /> <source>Code Info</source> <translation>Info del Código</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="996" /> + <location filename="../QScintilla/Editor.py" line="997" /> <source>New Document View</source> <translation>Nueva Vista de Documento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1001" /> + <location filename="../QScintilla/Editor.py" line="1002" /> <source>New Document View (with new split)</source> <translation>Nueva Vista de Documento (con nueva división)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1013" /> + <location filename="../QScintilla/Editor.py" line="1014" /> <source>Save As...</source> <translation>Guardar como...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1018" /> + <location filename="../QScintilla/Editor.py" line="1019" /> <source>Save Copy...</source> <translation>Guardar Copia...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1040" /> - <location filename="../QScintilla/Editor.py" line="1037" /> + <location filename="../QScintilla/Editor.py" line="1041" /> + <location filename="../QScintilla/Editor.py" line="1038" /> <source>Complete</source> <translation>Completo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1044" /> + <location filename="../QScintilla/Editor.py" line="1045" /> <source>Clear Completions Cache</source> <translation>Limpiar Caché de Completado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1047" /> + <location filename="../QScintilla/Editor.py" line="1048" /> <source>Complete from Document</source> <translation>Completar desde documento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1049" /> + <location filename="../QScintilla/Editor.py" line="1050" /> <source>Complete from APIs</source> <translation>Completar desde APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052" /> + <location filename="../QScintilla/Editor.py" line="1053" /> <source>Complete from Document and APIs</source> <translation>Completar desde Documento y APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1066" /> + <location filename="../QScintilla/Editor.py" line="1067" /> <source>Check</source> <translation>Verificar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1077" /> + <location filename="../QScintilla/Editor.py" line="1078" /> <source>Code Formatting</source> <translation>Formato de Código</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1083" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Black</source> <translation>Black</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> + <location filename="../QScintilla/Editor.py" line="1089" /> <source>Format Code</source> <translation>Formatear Código</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1092" /> + <location filename="../QScintilla/Editor.py" line="1093" /> <source>Check Formatting</source> <translation>Comprobar Formato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1096" /> + <location filename="../QScintilla/Editor.py" line="1097" /> <source>Formatting Diff</source> <translation>Diff de Formato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1105" /> + <location filename="../QScintilla/Editor.py" line="1106" /> <source>isort</source> <translation>isort</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1110" /> + <location filename="../QScintilla/Editor.py" line="1111" /> <source>Sort Imports</source> <translation>Ordenar Imports</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1114" /> + <location filename="../QScintilla/Editor.py" line="1115" /> <source>Imports Sorting Diff</source> <translation>Diff de Ordenacion de Imports</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1130" /> + <location filename="../QScintilla/Editor.py" line="1131" /> <source>Tools</source> <translation>Herramientas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1141" /> + <location filename="../QScintilla/Editor.py" line="1142" /> <source>Show</source> <translation>Mostrar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1143" /> + <location filename="../QScintilla/Editor.py" line="1144" /> <source>Code metrics...</source> <translation>Métricas de código...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1145" /> + <location filename="../QScintilla/Editor.py" line="1146" /> <source>Code coverage...</source> <translation>Cobertura de código...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1148" /> + <location filename="../QScintilla/Editor.py" line="1149" /> <source>Show code coverage annotations</source> <translation>Mostrar anotaciones de cobertura de codigo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1151" /> + <location filename="../QScintilla/Editor.py" line="1152" /> <source>Hide code coverage annotations</source> <translation>Ocultar anotaciones de cobertura de codigo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1155" /> + <location filename="../QScintilla/Editor.py" line="1156" /> <source>Profile data...</source> <translation>Datos de profiling...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1169" /> + <location filename="../QScintilla/Editor.py" line="1170" /> <source>Diagrams</source> <translation>Diagramas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1171" /> - <source>Class Diagram...</source> - <translation>Diagrama de clases...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1172" /> - <source>Package Diagram...</source> - <translation>Diagrama de paquetes...</translation> + <source>Class Diagram...</source> + <translation>Diagrama de clases...</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1173" /> + <source>Package Diagram...</source> + <translation>Diagrama de paquetes...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1174" /> <source>Imports Diagram...</source> <translation>Diagrama de imports...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1175" /> + <location filename="../QScintilla/Editor.py" line="1176" /> <source>Application Diagram...</source> <translation>Diagrama de aplicación...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1180" /> + <location filename="../QScintilla/Editor.py" line="1181" /> <source>Load Diagram...</source> <translation>Cargar Diagrama...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1195" /> + <location filename="../QScintilla/Editor.py" line="1196" /> <source>Languages</source> <translation>Lenguajes</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1199" /> + <location filename="../QScintilla/Editor.py" line="1200" /> <source>Text</source> <translation>Texto</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1222" /> + <location filename="../QScintilla/Editor.py" line="1223" /> <source>Guessed</source> <translation>Suposición</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1551" /> - <location filename="../QScintilla/Editor.py" line="1226" /> + <location filename="../QScintilla/Editor.py" line="1552" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>Alternatives</source> <translation>Alternativas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1243" /> + <location filename="../QScintilla/Editor.py" line="1244" /> <source>Encodings</source> <translation>Codificaciones</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1266" /> + <location filename="../QScintilla/Editor.py" line="1267" /> <source>Re-Open With Encoding</source> <translation>Reabrir Con Codificación</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1286" /> + <location filename="../QScintilla/Editor.py" line="1287" /> <source>End-of-Line Type</source> <translation>Tipo de fin-de-línea</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1290" /> + <location filename="../QScintilla/Editor.py" line="1291" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1296" /> + <location filename="../QScintilla/Editor.py" line="1297" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1302" /> + <location filename="../QScintilla/Editor.py" line="1303" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1320" /> + <location filename="../QScintilla/Editor.py" line="1321" /> <source>Spelling</source> <translation>Corrección ortográfica</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8268" /> - <location filename="../QScintilla/Editor.py" line="1328" /> + <location filename="../QScintilla/Editor.py" line="8276" /> + <location filename="../QScintilla/Editor.py" line="1329" /> <source>Check spelling...</source> <translation>Corrección ortográfica...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1333" /> + <location filename="../QScintilla/Editor.py" line="1334" /> <source>Check spelling of selection...</source> <translation>Corrección ortográfica de la selección...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1337" /> + <location filename="../QScintilla/Editor.py" line="1338" /> <source>Remove from dictionary</source> <translation>Eliminar del diccionario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1354" /> + <location filename="../QScintilla/Editor.py" line="1355" /> <source>Spell Check Languages</source> <translation>Corrección Ortográfica Idiomas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1358" /> + <location filename="../QScintilla/Editor.py" line="1359" /> <source>No Language</source> <translation>Ningún Lenguaje</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1385" /> + <location filename="../QScintilla/Editor.py" line="1386" /> <source>Toggle bookmark</source> <translation>Alternar marcador</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1387" /> + <location filename="../QScintilla/Editor.py" line="1388" /> <source>Next bookmark</source> <translation>Nuevo marcador</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1390" /> + <location filename="../QScintilla/Editor.py" line="1391" /> <source>Previous bookmark</source> <translation>Marcador anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1393" /> + <location filename="../QScintilla/Editor.py" line="1394" /> <source>Clear all bookmarks</source> <translation>Borrar todos los marcadores</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1404" /> + <location filename="../QScintilla/Editor.py" line="1405" /> <source>Toggle breakpoint</source> <translation>Alternar punto de interrupción</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1407" /> + <location filename="../QScintilla/Editor.py" line="1408" /> <source>Toggle temporary breakpoint</source> <translation>Alternar punto de interrupción temporal</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1410" /> + <location filename="../QScintilla/Editor.py" line="1411" /> <source>Edit breakpoint...</source> <translation>Editar punto de interrupción...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5927" /> - <location filename="../QScintilla/Editor.py" line="1413" /> + <location filename="../QScintilla/Editor.py" line="5928" /> + <location filename="../QScintilla/Editor.py" line="1414" /> <source>Enable breakpoint</source> <translation>Activar punto de interrupción</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1416" /> + <location filename="../QScintilla/Editor.py" line="1417" /> <source>Next breakpoint</source> <translation>Siguiente punto de interrupción</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1419" /> + <location filename="../QScintilla/Editor.py" line="1420" /> <source>Previous breakpoint</source> <translation>Punto de interrupción anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1422" /> + <location filename="../QScintilla/Editor.py" line="1423" /> <source>Clear all breakpoints</source> <translation>Borrar todos los puntos de interrupción</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1433" /> + <location filename="../QScintilla/Editor.py" line="1434" /> <source>Toggle all folds</source> <translation>Recoger/Desplegar los anidamientos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1438" /> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Toggle all folds (including children)</source> <translation>Recoger/Desplegar todos los anidamientos (inc. hijos)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1441" /> + <location filename="../QScintilla/Editor.py" line="1442" /> <source>Toggle current fold</source> <translation>Recoger/Desplegar el anidamiento actual</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1445" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Expand (including children)</source> <translation>Expandir (incluídos hijos)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1449" /> + <location filename="../QScintilla/Editor.py" line="1450" /> <source>Collapse (including children)</source> <translation>Contraer (incluídos hijos)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1454" /> + <location filename="../QScintilla/Editor.py" line="1455" /> <source>Clear all folds</source> <translation>Limpiar todos los anidamientos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1465" /> + <location filename="../QScintilla/Editor.py" line="1466" /> <source>Goto syntax error</source> <translation>Ir al error de sintaxis</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> + <location filename="../QScintilla/Editor.py" line="1469" /> <source>Show syntax error message</source> <translation>Ver el mensaje de error de sintaxis</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> + <location filename="../QScintilla/Editor.py" line="1472" /> <source>Clear syntax error</source> <translation>Borrar error de sintaxis</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1475" /> + <location filename="../QScintilla/Editor.py" line="1476" /> <source>Next warning</source> <translation>Siguiente advertencia</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1478" /> + <location filename="../QScintilla/Editor.py" line="1479" /> <source>Previous warning</source> <translation>Anterior advertencia</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1481" /> + <location filename="../QScintilla/Editor.py" line="1482" /> <source>Show warning message</source> <translation>Mostrar mensaje de advertencia</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1484" /> + <location filename="../QScintilla/Editor.py" line="1485" /> <source>Clear warnings</source> <translation>Limpiar advertencias</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1488" /> + <location filename="../QScintilla/Editor.py" line="1489" /> <source>Next uncovered line</source> <translation>Siguiente línea sin cobertura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1491" /> + <location filename="../QScintilla/Editor.py" line="1492" /> <source>Previous uncovered line</source> <translation>Anterior línea sin cobertura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1495" /> + <location filename="../QScintilla/Editor.py" line="1496" /> <source>Next task</source> <translation>Nueva tarea</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1498" /> + <location filename="../QScintilla/Editor.py" line="1499" /> <source>Previous task</source> <translation>Tarea anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1502" /> + <location filename="../QScintilla/Editor.py" line="1503" /> <source>Next change</source> <translation>Siguiente cambio</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1505" /> + <location filename="../QScintilla/Editor.py" line="1506" /> <source>Previous change</source> <translation>Cambio anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1508" /> + <location filename="../QScintilla/Editor.py" line="1509" /> <source>Clear changes</source> <translation>Limpiar cambios</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1537" /> - <location filename="../QScintilla/Editor.py" line="1528" /> - <source>Export source</source> - <translation>Exportar fuente</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1529" /> - <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> - <translation><p>No hay un exportador disponible para el formato de exportación <b>{0}</b>. Abortando...</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1538" /> + <location filename="../QScintilla/Editor.py" line="1529" /> + <source>Export source</source> + <translation>Exportar fuente</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1530" /> + <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> + <translation><p>No hay un exportador disponible para el formato de exportación <b>{0}</b>. Abortando...</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1539" /> <source>No export format given. Aborting...</source> <translation>No se ha proporcionado un formato de exportación. Abortando...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1548" /> + <location filename="../QScintilla/Editor.py" line="1549" /> <source>Alternatives ({0})</source> <translation>Alternativas ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1571" /> - <source>Pygments Lexer</source> - <translation>Analizador Léxico de Pygments</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1572" /> + <source>Pygments Lexer</source> + <translation>Analizador Léxico de Pygments</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1573" /> <source>Select the Pygments lexer to apply.</source> <translation>Seleccionar el Analizador Léxico de Pygments.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2120" /> - <source>Modification of Read Only file</source> - <translation>Modificación de un archivo de solo lectura</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2121" /> + <source>Modification of Read Only file</source> + <translation>Modificación de un archivo de solo lectura</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2122" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Usted está intentando modificar un archivo solo lectura. Por favor guarde en otro archivo primero.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2556" /> - <source>Add Breakpoint</source> - <translation>Añadir Punto de Interrupción</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2557" /> + <source>Add Breakpoint</source> + <translation>Añadir Punto de Interrupción</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2558" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation>No se va a crear Python bytecode para la línea seleccionada. ¡No se va a establecer ningún punto de ruptura!</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2890" /> + <location filename="../QScintilla/Editor.py" line="2891" /> <source>Printing...</source> <translation>Imprimiendo...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2907" /> + <location filename="../QScintilla/Editor.py" line="2908" /> <source>Printing completed</source> <translation>Impresión completa</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2909" /> + <location filename="../QScintilla/Editor.py" line="2910" /> <source>Error while printing</source> <translation>Error al imprimir</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2912" /> + <location filename="../QScintilla/Editor.py" line="2913" /> <source>Printing aborted</source> <translation>Impresión cancelada</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3274" /> - <source>File Modified</source> - <translation>Archivo modificado</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3275" /> + <source>File Modified</source> + <translation>Archivo modificado</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3276" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>El archivo <b>{0}</b> tiene cambios sin guardar.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="3334" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>El archivo<b>{0}</b> no puede ser abierto.<br />Causa: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3509" /> - <location filename="../QScintilla/Editor.py" line="3490" /> - <location filename="../QScintilla/Editor.py" line="3452" /> - <source>Save File</source> - <translation>Guardar archivo</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="3453" /> - <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> - <translation><p>El archivo <b>{0}</b> no puede ser guardado.<br>Causa: {1}</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3510" /> + <location filename="../QScintilla/Editor.py" line="3491" /> + <location filename="../QScintilla/Editor.py" line="3453" /> + <source>Save File</source> + <translation>Guardar archivo</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3454" /> + <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> + <translation><p>El archivo <b>{0}</b> no puede ser guardado.<br>Causa: {1}</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3511" /> <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="../QScintilla/Editor.py" line="3644" /> - <source>Save File to Device</source> - <translation>Guardar Archivo en Dispositivo</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3645" /> + <source>Save File to Device</source> + <translation>Guardar Archivo en Dispositivo</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3646" /> <source>Enter the complete device file path:</source> <translation>Introducir la ruta completa de archivo del dispositivo:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5101" /> - <source>Autocompletion</source> - <translation>Autocompletar</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5102" /> + <source>Autocompletion</source> + <translation>Autocompletar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5103" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Autocompletar no está disponible porque no hay origen de datos para autocompletar.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5230" /> - <source>Auto-Completion Provider</source> - <translation>Proveedor de Autocompletado</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5231" /> + <source>Auto-Completion Provider</source> + <translation>Proveedor de Autocompletado</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5232" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>El proveedor de lista de completado'{0}' ya está registrado. Se ignora la solicitud duplicada.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523" /> - <source>Call-Tips Provider</source> - <translation>Proveedor de Call-Tips</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5524" /> + <source>Call-Tips Provider</source> + <translation>Proveedor de Call-Tips</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5525" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>El proveedor de call-tips'{0}' ya está registrado. Se ignora la solicitud duplicada.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5931" /> + <location filename="../QScintilla/Editor.py" line="5932" /> <source>Disable breakpoint</source> <translation>Deshabilitar punto de interrupción</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6310" /> + <location filename="../QScintilla/Editor.py" line="6315" /> <source>Code Coverage</source> <translation>Cobertura de codigo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6311" /> + <location filename="../QScintilla/Editor.py" line="6316" /> <source>Please select a coverage file</source> <translation>Por favor seleccione un archivo de cobertura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6386" /> - <location filename="../QScintilla/Editor.py" line="6378" /> + <location filename="../QScintilla/Editor.py" line="6391" /> + <location filename="../QScintilla/Editor.py" line="6383" /> <source>Show Code Coverage Annotations</source> <translation>Mostrar Anotaciones de Cobertura de Código</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6379" /> + <location filename="../QScintilla/Editor.py" line="6384" /> <source>All lines have been covered.</source> <translation>Todas las líneas han sido cubiertas.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387" /> + <location filename="../QScintilla/Editor.py" line="6392" /> <source>There is no coverage file available.</source> <translation>No hay archivo de cobertura disponible.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6491" /> + <location filename="../QScintilla/Editor.py" line="6496" /> <source>Profile Data</source> <translation>Datos de profiling</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6492" /> + <location filename="../QScintilla/Editor.py" line="6497" /> <source>Please select a profile file</source> <translation>Por favor seleccione un archivo de profiling</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6653" /> - <location filename="../QScintilla/Editor.py" line="6647" /> + <location filename="../QScintilla/Editor.py" line="6658" /> + <location filename="../QScintilla/Editor.py" line="6652" /> <source>Syntax Error</source> <translation>Error de sintaxis</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6654" /> + <location filename="../QScintilla/Editor.py" line="6659" /> <source>No syntax error message available.</source> <translation>No hay mensajes de error de sintaxis disponibles.</translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="6873" /> <location filename="../QScintilla/Editor.py" line="6867" /> - <location filename="../QScintilla/Editor.py" line="6861" /> <source>Warning</source> <translation>Advertencia</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6867" /> + <location filename="../QScintilla/Editor.py" line="6873" /> <source>No warning messages available.</source> <translation>No hay mensajes de advertencia disponibles.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6937" /> <source>Style: {0}</source> <translation>Estilo: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6934" /> + <location filename="../QScintilla/Editor.py" line="6942" /> <source>Warning: {0}</source> <translation>Advertencia: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6941" /> + <location filename="../QScintilla/Editor.py" line="6949" /> <source>Error: {0}</source> <translation>Error: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Macro Name</source> <translation>Nombre de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Select a macro name:</source> <translation>Seleccione un nombre de macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7074" /> + <location filename="../QScintilla/Editor.py" line="7082" /> <source>Load macro file</source> <translation>Cargar archivo de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7120" /> - <location filename="../QScintilla/Editor.py" line="7076" /> + <location filename="../QScintilla/Editor.py" line="7128" /> + <location filename="../QScintilla/Editor.py" line="7084" /> <source>Macro files (*.macro)</source> <translation>Archivos de Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7098" /> - <location filename="../QScintilla/Editor.py" line="7088" /> + <location filename="../QScintilla/Editor.py" line="7106" /> + <location filename="../QScintilla/Editor.py" line="7096" /> <source>Error loading macro</source> <translation>Error al cargar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7089" /> + <location filename="../QScintilla/Editor.py" line="7097" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de macro <b>{0}</b> no se puede leer.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7099" /> + <location filename="../QScintilla/Editor.py" line="7107" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>El archivo de macro <b>{0}</b> está dañado</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7118" /> + <location filename="../QScintilla/Editor.py" line="7126" /> <source>Save macro file</source> <translation>Guardar archivo de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7136" /> + <location filename="../QScintilla/Editor.py" line="7144" /> <source>Save macro</source> <translation>Guardar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7137" /> + <location filename="../QScintilla/Editor.py" line="7145" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>El archivo de macro <b>{0}</b> ya existe. ¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7152" /> + <location filename="../QScintilla/Editor.py" line="7160" /> <source>Error saving macro</source> <translation>Error al guardar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7161" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de macro <b>{0}</b> no se puede escribir.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7166" /> + <location filename="../QScintilla/Editor.py" line="7174" /> <source>Start Macro Recording</source> <translation>Comenzar grabación de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7167" /> + <location filename="../QScintilla/Editor.py" line="7175" /> <source>Macro recording is already active. Start new?</source> <translation>Grabación de macro ya está activada. ¿Comenzar una nueva?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7193" /> + <location filename="../QScintilla/Editor.py" line="7201" /> <source>Macro Recording</source> <translation>Grabando macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7194" /> + <location filename="../QScintilla/Editor.py" line="7202" /> <source>Enter name of the macro:</source> <translation>Introduzca el nombre de la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7344" /> + <location filename="../QScintilla/Editor.py" line="7352" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation><p>El archivo <b>{0}</b> ha cambiado mientras estaba abierto en eric. ¿Desea volver a cargarlo?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7350" /> + <location filename="../QScintilla/Editor.py" line="7358" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Advertencia:</b> Perderá los cambios si lo reabre.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7357" /> + <location filename="../QScintilla/Editor.py" line="7365" /> <source>File changed</source> <translation>Archivo modificado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7407" /> + <location filename="../QScintilla/Editor.py" line="7415" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7712" /> + <location filename="../QScintilla/Editor.py" line="7720" /> <source>Drop Error</source> <translation>Error al soltar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7713" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <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="../QScintilla/Editor.py" line="7733" /> + <location filename="../QScintilla/Editor.py" line="7741" /> <source>Resources</source> <translation>Recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7735" /> + <location filename="../QScintilla/Editor.py" line="7743" /> <source>Add file...</source> <translation>Añadir archivo...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7736" /> + <location filename="../QScintilla/Editor.py" line="7744" /> <source>Add files...</source> <translation>Añadir archivos...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7737" /> + <location filename="../QScintilla/Editor.py" line="7745" /> <source>Add aliased file...</source> <translation>Añadir archivo con un alias...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7739" /> + <location filename="../QScintilla/Editor.py" line="7747" /> <source>Add localized resource...</source> <translation>Añadir recursos localizados...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7742" /> + <location filename="../QScintilla/Editor.py" line="7750" /> <source>Add resource frame</source> <translation>Añadir ventana de recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7761" /> + <location filename="../QScintilla/Editor.py" line="7769" /> <source>Add file resource</source> <translation>Añadir archivo de recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7775" /> + <location filename="../QScintilla/Editor.py" line="7783" /> <source>Add file resources</source> <translation>Añadir archivo de recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7799" /> - <location filename="../QScintilla/Editor.py" line="7793" /> + <location filename="../QScintilla/Editor.py" line="7807" /> + <location filename="../QScintilla/Editor.py" line="7801" /> <source>Add aliased file resource</source> <translation>Añadir archivo de recursos con un alias</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7800" /> + <location filename="../QScintilla/Editor.py" line="7808" /> <source>Alias for file <b>{0}</b>:</source> <translation>Alias para el archivo <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7875" /> + <location filename="../QScintilla/Editor.py" line="7883" /> <source>Package Diagram</source> <translation>Digrama de paquetes</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7876" /> + <location filename="../QScintilla/Editor.py" line="7884" /> <source>Include class attributes?</source> <translation>¿Incluir atributos de clase?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7896" /> + <location filename="../QScintilla/Editor.py" line="7904" /> <source>Imports Diagram</source> <translation>Diagrama de imports</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7897" /> + <location filename="../QScintilla/Editor.py" line="7905" /> <source>Include imports from external modules?</source> <translation>¿Incluir los imports de módulos externos?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7916" /> + <location filename="../QScintilla/Editor.py" line="7924" /> <source>Application Diagram</source> <translation>Diagrama de aplicación</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7917" /> + <location filename="../QScintilla/Editor.py" line="7925" /> <source>Include module names?</source> <translation>¿Incluir nombres de módulos?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8272" /> + <location filename="../QScintilla/Editor.py" line="8280" /> <source>Add to dictionary</source> <translation>Añadir al diccionario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8274" /> + <location filename="../QScintilla/Editor.py" line="8282" /> <source>Ignore All</source> <translation>Ignorar Todo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8692" /> + <location filename="../QScintilla/Editor.py" line="8700" /> <source>Sort Lines</source> <translation>Ordenar Líneas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8693" /> + <location filename="../QScintilla/Editor.py" line="8701" /> <source>The selection contains illegal data for a numerical sort.</source> <translation>La selección contiene datos ilegales para una ordenación numérica.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8786" /> + <location filename="../QScintilla/Editor.py" line="8794" /> <source>Register Mouse Click Handler</source> <translation>Registrar Manejador de Clicks de Ratón</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8787" /> + <location filename="../QScintilla/Editor.py" line="8795" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation>Un manejador de clicks de ratón para "{0}" ya está registrado por "{1}". Abortando solicitud por "{2}"...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8883" /> + <location filename="../QScintilla/Editor.py" line="8891" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation>{0:4d} {1}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8889" /> + <location filename="../QScintilla/Editor.py" line="8897" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> @@ -13308,12 +13308,12 @@ => {2}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="8965" /> <source>EditorConfig Properties</source> <translation>Propiedades de EditorConfig</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8958" /> + <location filename="../QScintilla/Editor.py" line="8966" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Las propiedades de EditorConfig para el archivo <b>{0}</b> no se ha podido cargar.</p></translation> </message> @@ -19791,38 +19791,38 @@ <context> <name>EricTextEditSearchWidget</name> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="115" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="116" /> <source>Find:</source> <translation>Buscar:</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="141" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="142" /> <source>Match case</source> <translation>Coincidir mayúsculas/minúsculas</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="146" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="147" /> <source>Whole word</source> <translation>Palabra completa</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="156" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="157" /> <source>Press to find the previous occurrence</source> <translation>Pulsar para encontrar la ocurrencia anterior</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="162" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="163" /> <source>Press to find the next occurrence</source> <translation>Pulsar para encontrar la ocurrencia siguiente</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="481" /> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="433" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="482" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="434" /> <source>'{0}' was not found.</source> <translation>'{0}' no se ha encontrado.</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="486" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="487" /> <source>Match {0} of {1}</source> <translation>Coincidencia {0} of {1}</translation> </message> @@ -33037,29 +33037,29 @@ <translation>UTF-8</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="119" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="118" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="121" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="120" /> <source>Find Next</source> <translation>Buscar Siguiente</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="131" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="130" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="133" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="132" /> <source>Find Prev</source> <translation>Buscar Anterior</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="297" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="299" /> <source>'{0}' was not found.</source> <translation>'{0}' no se ha encontrado.</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="417" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="419" /> <source>Replaced {0} occurrences.</source> <translation>Se han reemplazado {0} ocurrencias.</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="423" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="425" /> <source>Nothing replaced because '{0}' was not found.</source> <translation>No se ha reemplazado nada porque '{0}' no se ha encontrado.</translation> </message> @@ -70624,74 +70624,74 @@ </translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="155" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="154" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="157" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="156" /> <source>Find Next</source> <translation>Buscar Siguiente</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="168" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="167" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="170" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="169" /> <source>Find Prev</source> <translation>Buscar Anterior</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="181" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="180" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="183" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="182" /> <source>Replace and Search</source> <translation>Buscar y Reemplazar</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="195" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="194" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="197" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="196" /> <source>Replace Occurrence</source> <translation>Reemplazar Ocurrencia</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="209" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="208" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="211" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="210" /> <source>Replace All</source> <translation>Reemplazar Todo</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="297" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="299" /> <source>Press to find the next occurrence ({0})</source> <translation>Pulsar para encontrar la siguiente ocurrencia ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="304" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="306" /> <source>Press to find the previous occurrence ({0})</source> <translation>Pulsar para encontrar la ocurrencia anterior ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="311" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="313" /> <source>Press to replace the selection and search for the next occurence ({0})</source> <translation>Pulsar para reemplazar la selección y buscar la siguiente ocurrencia ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="321" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="323" /> <source>Press to replace the selection ({0})</source> <translation>Pulsar para reemplazar la selección ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="328" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="330" /> <source>Press to replace all occurrences ({0})</source> <translation>Pulsar para reemplazar todas las ocurrencias ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1114" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="665" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="627" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1123" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="674" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="636" /> <source>'{0}' was not found.</source> <translation>'{0}' no se ha encontrado.</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1267" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1276" /> <source>Replaced {0} occurrences.</source> <translation>Se han reemplazado {0} ocurrencias.</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1273" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1282" /> <source>Nothing replaced because '{0}' was not found.</source> <translation>No se ha reemplazado nada porque '{0}' no se ha encontrado.</translation> </message> @@ -70810,7 +70810,7 @@ <translation>Coincidir mayúsculas/minúsculas</translation> </message> <message> - <location filename="../WebBrowser/SearchWidget.py" line="100" /> + <location filename="../WebBrowser/SearchWidget.py" line="101" /> <source>Expression was not found.</source> <translation>La expresión no se ha encontrado.</translation> </message> @@ -70825,7 +70825,7 @@ <translation>Regexp</translation> </message> <message> - <location filename="../UI/SearchWidget.py" line="212" /> + <location filename="../UI/SearchWidget.py" line="213" /> <source>'{0}' was not found.</source> <translation>'{0}' no se ha encontrado.</translation> </message> @@ -72090,143 +72090,158 @@ <context> <name>Shell</name> <message> - <location filename="../QScintilla/Shell.py" line="162" /> + <location filename="../QScintilla/Shell.py" line="164" /> <source>Shell - Passive</source> <translation>Shell - Pasivo</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="164" /> + <location filename="../QScintilla/Shell.py" line="166" /> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="168" /> - <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. '%quit' or '%exit' is used to exit the application. These commands (except '%environments', '%envs' and '%which') are available through the window menus as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> - <translation><b>La ventana de Shell</b><p>Se pueden utilizar las teclas de cursor al introducir comandos. Hay también un histórico de comandos que se pueden rellamar utilizando las teclas de cursor de arriba y abajo manteniendo apretada la tecla Ctrl. Esto se puede cambiar a solo las teclas de cursor arriba y abajo en la página de shell del diálogo de configuración. Pulsando estas teclas despues de que se ha introducido algún texto inicia una búsqueda incremental.</p><p>La shell tiene algunos comandos especiales. '%restart' termina la shell e inicia una nueva. '%clear' limpia la salida de la ventana de shell. '%start' se usa para iniciar una shell para un entorno virtual y se debería continuar con un nombre de entorno virtual. '%start' sin nombre de entorno virtual inicia la shell por defecto. Los entornos virtuales disponibles se pueden listar con los comandos '%envs' o '%environments'. El entorno virtual activo se puede encontrar con el comando '%which' . '%quit' o '%xit' se usa para salir de la aplicación. Estos comandos (exceptuando '%environments', '%envs' y '%which') están disponibles para los menús de ventana también.</p><p>Pulsando la tecla Tab después de introducir algún texto muestra una lista de autocompletados posibles. La entrada relevante puede entonces seleccionarse de este listado. Si hay solamente una entrada disponible, ésta se insertará automaticamente.</p></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="198" /> - <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. These commands (except '%environments' and '%envs') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> - <translation><b>La Ventana de Shell</b><p>Es simplemente un intérprete corriendo en una ventana. El intérprete es el que se usa para ejecutar el programa en depuración. Ésto significa que se puede ejecutar cualquier comando mientras el programa en depuración esté corriendo.</p><p>Se puedeu utilizar las teclas de cursor al introducir comandos. Hay también un histórico de comandos que se pueden rellamar utilizando las teclas de cursor de arriba y abajo manteniendo apretada la tecla Ctrl. Esto se puede cambiar a solo las teclas de cursor arriba y abajo en la página de shell del diálogo de configuración. Pulsando estas teclas despues de que se ha introducido algún texto inicia una búsqueda incremental.</p><p>La shell tiene algunos comandos especiales. '%restart' termina la shell e inicia una nueva. '%clear' limpia la salida de la ventana de shell. '%start' se usa para iniciar una shell para un entorno virtual y se debería continuar con un nombre de entorno virtual. '%start' sin nombre de entorno virtual inicia la shell por defecto. Los entornos virtuales disponibles se pueden listar con los comandos '%envs' o '%environments'. El entorno virtual activo se puede encontrar con el comando '%which' . '%quit' o '%exit' se usa para salir de la aplicación. Estos comandos (exceptuando '%environments' y '%envs') están dsponibles para los menús de ventana también.</p><p>Pulsando la tecla Tab después de introducir algún texto muestra una lista de autocompletados posibles. La entrada relevante puede entonces seleccionarse de este listado. Si hay solamente una entrada disponible, ésta se insertará automaticamente.</p><p>En modo pasivo de depuración la shell está solamente disponible despues de que el programa a depurar ha conectado con la IDE y hasta que termina. Esto se indica con un prompt distinto y con una indicación en el título de la ventana.</p></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="262" /> + <location filename="../QScintilla/Shell.py" line="170" /> + <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="189" /> + <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="244" /> <source>Passive >>> </source> <translation>Pasivo >>> </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="305" /> + <location filename="../QScintilla/Shell.py" line="287" /> <source>Start</source> <translation>Comienzo</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="310" /> + <location filename="../QScintilla/Shell.py" line="292" /> <source>History</source> <translation>Historial</translation> </message> <message> + <location filename="../QScintilla/Shell.py" line="293" /> + <source>Select entry</source> + <translation>Seleccionar entrada</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="294" /> + <source>Show</source> + <translation>Mostrar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="306" /> + <location filename="../QScintilla/Shell.py" line="295" /> + <source>Clear</source> + <translation>Borrar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="299" /> + <source>Cut</source> + <translation>Cortar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="300" /> + <source>Copy</source> + <translation>Copiar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="301" /> + <source>Paste</source> + <translation>Pegar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="304" /> + <source>Find</source> + <translation>Buscar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="307" /> + <source>Restart</source> + <translation>Reiniciar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="308" /> + <source>Restart and Clear</source> + <translation>Restaurar y Limpiar</translation> + </message> + <message> <location filename="../QScintilla/Shell.py" line="311" /> - <source>Select entry</source> - <translation>Seleccionar entrada</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="312" /> - <source>Show</source> - <translation>Mostrar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="325" /> + <source>Active Name</source> + <translation>Nombre Activo</translation> + </message> + <message> <location filename="../QScintilla/Shell.py" line="313" /> - <source>Clear</source> - <translation>Borrar</translation> + <source>Save Contents...</source> + <translation>Guardar Contenidos...</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="315" /> + <source>Configure...</source> + <translation>Configurar...</translation> </message> <message> <location filename="../QScintilla/Shell.py" line="317" /> - <source>Cut</source> - <translation>Cortar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="318" /> - <source>Copy</source> - <translation>Copiar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="319" /> - <source>Paste</source> - <translation>Pegar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="323" /> - <source>Find</source> - <translation>Buscar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="326" /> - <source>Restart</source> - <translation>Reiniciar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="327" /> - <source>Restart and Clear</source> - <translation>Restaurar y Limpiar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="330" /> - <source>Active Name</source> - <translation>Nombre Activo</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="332" /> - <source>Save Contents...</source> - <translation>Guardar Contenidos...</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="334" /> - <source>Configure...</source> - <translation>Configurar...</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="2067" /> - <location filename="../QScintilla/Shell.py" line="1846" /> - <location filename="../QScintilla/Shell.py" line="1845" /> - <location filename="../QScintilla/Shell.py" line="408" /> + <source>Special Commands Help</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2087" /> + <location filename="../QScintilla/Shell.py" line="1849" /> + <location filename="../QScintilla/Shell.py" line="1848" /> + <location filename="../QScintilla/Shell.py" line="391" /> <source>Project</source> <translation>Proyecto</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="806" /> + <location filename="../QScintilla/Shell.py" line="780" /> + <source>Clear History</source> + <translation type="unfinished">Limpiar Historial</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="781" /> + <source>Shall the current history really be cleared?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="803" /> <source>Select History</source> <translation>Seleccionar historial</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="807" /> + <location filename="../QScintilla/Shell.py" line="804" /> <source>Select the history entry to execute (most recent shown last).</source> <translation>Seleccionar la entrada del historial a ejecutar (las más recientes mostradas en último lugar).</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="872" /> + <location filename="../QScintilla/Shell.py" line="878" /> <source>Passive Debug Mode</source> <translation>Modo de depuración pasiva</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="873" /> + <location filename="../QScintilla/Shell.py" line="879" /> <source> Not connected</source> <translation> No conectado</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="876" /> + <location filename="../QScintilla/Shell.py" line="882" /> <source>No.</source> <translation>No.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="878" /> + <location filename="../QScintilla/Shell.py" line="884" /> <source>{0} on {1}</source> <translation>{0} en {1}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="925" /> + <location filename="../QScintilla/Shell.py" line="931" /> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -72237,7 +72252,7 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="934" /> + <location filename="../QScintilla/Shell.py" line="940" /> <source>Exception "{0}" {1} </source> @@ -72246,43 +72261,43 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="954" /> + <location filename="../QScintilla/Shell.py" line="960" /> <source>Unspecified syntax error. </source> <translation>Error de sintaxis sin especificar. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="957" /> + <location filename="../QScintilla/Shell.py" line="963" /> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation>Error de sintaxis "{1}" en archivo {0} en la línea {2}, carácter {3}. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="981" /> + <location filename="../QScintilla/Shell.py" line="987" /> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation>Señal "{0}" generada en el archivo {1} y línea {2}. Función: {3}({4})</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1063" /> + <location filename="../QScintilla/Shell.py" line="1069" /> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1071" /> + <location filename="../QScintilla/Shell.py" line="1077" /> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1097" /> + <location filename="../QScintilla/Shell.py" line="1103" /> <source><{0}> {1}</source> <translation><{0}> {1}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1892" /> + <location filename="../QScintilla/Shell.py" line="1886" /> <source>Available Virtual Environments: {0} </source> @@ -72291,45 +72306,90 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1935" /> - <location filename="../QScintilla/Shell.py" line="1899" /> + <location filename="../QScintilla/Shell.py" line="1955" /> + <location filename="../QScintilla/Shell.py" line="1892" /> <source>Current Virtual Environment: '{0}' </source> <translation>Entorno Virtual Actual: '{0}' </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2207" /> + <location filename="../QScintilla/Shell.py" line="1910" /> + <source>Error: Argument must be an integer value. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1927" /> + <source>Error: Command '{0}' is not supported. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2227" /> <source>Drop Error</source> <translation>Error al soltar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2208" /> + <location filename="../QScintilla/Shell.py" line="2228" /> <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="../QScintilla/Shell.py" line="2451" /> - <location filename="../QScintilla/Shell.py" line="2437" /> - <location filename="../QScintilla/Shell.py" line="2416" /> + <location filename="../QScintilla/Shell.py" line="2471" /> + <location filename="../QScintilla/Shell.py" line="2457" /> + <location filename="../QScintilla/Shell.py" line="2436" /> <source>Save Shell Contents</source> <translation>Guardar Contenidos de la Shell</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2418" /> - <source>Text Files (*.txt);;All Files (*)</source> - <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation> - </message> - <message> <location filename="../QScintilla/Shell.py" line="2438" /> + <source>Text Files (*.txt);;All Files (*)</source> + <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2458" /> <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="../QScintilla/Shell.py" line="2452" /> + <location filename="../QScintilla/Shell.py" line="2472" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>El archivo <b>{0}</b> no puede ser guardado.<br>Causa: {1}</p></translation> </message> + <message> + <location filename="../QScintilla/Shell.py" line="2486" /> + <source><tr><td>%restart</td><td>Kill the shell and start a new one.</td></tr><tr><td>%clear</td><td>Clear the display of the shell window.</td></tr><tr><td>%start [environment]</td><td>Start a shell for a virtual environment with the given name. If no name if given, a default shell is started.</td></tr><tr><td>%envs<br/>%environments</td><td>Show a list of known virtual environment names.</td></tr><tr><td>%which</td><td>Show the name of the active virtual environment.</td></tr><tr><td>%hist [n]<br/>%history [n]</td><td>Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.</td></tr><tr><td>%shist<br/>%shistory<br/>%select_history</td><td>Select a command from the history.</td></tr><tr><td>%chist<br/>%chistory<br/>%clear_history</td><td>Clear the current history after confirmation.</td></tr><tr><td>%help</td><td>Show this help text.</td></tr></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2508" /> + <source><tr><td>%quit<br/>%quit()<br/>%exit<br/>%exit()</td><td>Exit the application.</td></tr></table><p>These commands are available through the window menus as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2516" /> + <source></table><p>These commands are available through the context menu as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2523" /> + <source>Shell Special Commands</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2524" /> + <source>The shell supports these special commands:</source> + <translation type="unfinished" /> + </message> + <message> + <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. '%quit' or '%exit' is used to exit the application. These commands (except '%environments', '%envs' and '%which') are available through the window menus as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> + <translation type="vanished"><b>La ventana de Shell</b><p>Se pueden utilizar las teclas de cursor al introducir comandos. Hay también un histórico de comandos que se pueden rellamar utilizando las teclas de cursor de arriba y abajo manteniendo apretada la tecla Ctrl. Esto se puede cambiar a solo las teclas de cursor arriba y abajo en la página de shell del diálogo de configuración. Pulsando estas teclas despues de que se ha introducido algún texto inicia una búsqueda incremental.</p><p>La shell tiene algunos comandos especiales. '%restart' termina la shell e inicia una nueva. '%clear' limpia la salida de la ventana de shell. '%start' se usa para iniciar una shell para un entorno virtual y se debería continuar con un nombre de entorno virtual. '%start' sin nombre de entorno virtual inicia la shell por defecto. Los entornos virtuales disponibles se pueden listar con los comandos '%envs' o '%environments'. El entorno virtual activo se puede encontrar con el comando '%which' . '%quit' o '%xit' se usa para salir de la aplicación. Estos comandos (exceptuando '%environments', '%envs' y '%which') están disponibles para los menús de ventana también.</p><p>Pulsando la tecla Tab después de introducir algún texto muestra una lista de autocompletados posibles. La entrada relevante puede entonces seleccionarse de este listado. Si hay solamente una entrada disponible, ésta se insertará automaticamente.</p></translation> + </message> + <message> + <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. These commands (except '%environments' and '%envs') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> + <translation type="vanished"><b>La Ventana de Shell</b><p>Es simplemente un intérprete corriendo en una ventana. El intérprete es el que se usa para ejecutar el programa en depuración. Ésto significa que se puede ejecutar cualquier comando mientras el programa en depuración esté corriendo.</p><p>Se puedeu utilizar las teclas de cursor al introducir comandos. Hay también un histórico de comandos que se pueden rellamar utilizando las teclas de cursor de arriba y abajo manteniendo apretada la tecla Ctrl. Esto se puede cambiar a solo las teclas de cursor arriba y abajo en la página de shell del diálogo de configuración. Pulsando estas teclas despues de que se ha introducido algún texto inicia una búsqueda incremental.</p><p>La shell tiene algunos comandos especiales. '%restart' termina la shell e inicia una nueva. '%clear' limpia la salida de la ventana de shell. '%start' se usa para iniciar una shell para un entorno virtual y se debería continuar con un nombre de entorno virtual. '%start' sin nombre de entorno virtual inicia la shell por defecto. Los entornos virtuales disponibles se pueden listar con los comandos '%envs' o '%environments'. El entorno virtual activo se puede encontrar con el comando '%which' . '%quit' o '%exit' se usa para salir de la aplicación. Estos comandos (exceptuando '%environments' y '%envs') están dsponibles para los menús de ventana también.</p><p>Pulsando la tecla Tab después de introducir algún texto muestra una lista de autocompletados posibles. La entrada relevante puede entonces seleccionarse de este listado. Si hay solamente una entrada disponible, ésta se insertará automaticamente.</p><p>En modo pasivo de depuración la shell está solamente disponible despues de que el programa a depurar ha conectado con la IDE y hasta que termina. Esto se indica con un prompt distinto y con una indicación en el título de la ventana.</p></translation> + </message> </context> <context> <name>ShellHistoryDialog</name>
--- a/src/eric7/i18n/eric7_fr.ts Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/i18n/eric7_fr.ts Sun Sep 03 17:35:15 2023 +0200 @@ -12476,996 +12476,996 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3332" /> - <location filename="../QScintilla/Editor.py" line="428" /> - <location filename="../QScintilla/Editor.py" line="413" /> + <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="414" /> <source>Open File</source> <translation>Ouvrir Fichier</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="414" /> + <location filename="../QScintilla/Editor.py" line="415" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="430" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="526" /> + <location filename="../QScintilla/Editor.py" line="527" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Fenêtre d'édition</b><p>Cette fenêtre est utilisée pour afficher et éditer les codes sources. Vous pouvez en ouvrir autant que vous le souhaitez. Le nom du fichier ouvert est inscrit dans la barre principale.</p><p>Vous pouvez définir des points d'arrêt en cliquant sur la marge de gauche, entre les numéros de lignes et les marques de pliage de code. Les points d'arrêt peuvent être édités via le menu contextuel (en cliquant droit sur le point).</p><p>De manière similaire, vous pouvez définir des signets avec Shift+Click dans la marge.</p><p>Pour ces deux types de points, le menu contextuel (click droit) permet de défaire l'action.</p><p>Le Ctrl+Click sur une marque d'erreur de sytaxe permet de visualiser les informations sur l'erreur.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="890" /> + <location filename="../QScintilla/Editor.py" line="891" /> <source>Undo</source> <translation>Défaire</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="893" /> + <location filename="../QScintilla/Editor.py" line="894" /> <source>Redo</source> <translation>Refaire</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="896" /> + <location filename="../QScintilla/Editor.py" line="897" /> <source>Revert to last saved state</source> <translation>Ecraser avec le dernier état enregistré</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="900" /> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Cut</source> <translation>Couper</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="903" /> + <location filename="../QScintilla/Editor.py" line="904" /> <source>Copy</source> <translation>Copier</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="906" /> + <location filename="../QScintilla/Editor.py" line="907" /> <source>Paste</source> <translation>Coller</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="913" /> <source>Indent</source> <translation>Indenter</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="917" /> + <location filename="../QScintilla/Editor.py" line="918" /> <source>Unindent</source> <translation>Désindenter</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="922" /> + <location filename="../QScintilla/Editor.py" line="923" /> <source>Comment</source> <translation>Commenter</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="927" /> + <location filename="../QScintilla/Editor.py" line="928" /> <source>Uncomment</source> <translation>Décommenter</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="9150" /> - <location filename="../QScintilla/Editor.py" line="932" /> + <location filename="../QScintilla/Editor.py" line="9158" /> + <location filename="../QScintilla/Editor.py" line="933" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="935" /> - <source>Select to brace</source> - <translation>Sélection parenthèses</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="936" /> - <source>Select all</source> - <translation>Tout sélectionner</translation> + <source>Select to brace</source> + <translation>Sélection parenthèses</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="937" /> + <source>Select all</source> + <translation>Tout sélectionner</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="938" /> <source>Deselect all</source> <translation>Tout déselectionner</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939" /> + <location filename="../QScintilla/Editor.py" line="940" /> <source>Execute Selection In Console</source> <translation>Exécuter la sélection en console</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="951" /> + <location filename="../QScintilla/Editor.py" line="952" /> <source>Use Monospaced Font</source> <translation>Utiliser une police monospacée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="957" /> <source>Autosave enabled</source> <translation>Sauvegarde automatique activée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="962" /> <source>Typing aids enabled</source> <translation>Aide à la frappe activée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="969" /> + <location filename="../QScintilla/Editor.py" line="970" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="978" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Calltip</source> <translation>Calltip</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="981" /> + <location filename="../QScintilla/Editor.py" line="982" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="996" /> + <location filename="../QScintilla/Editor.py" line="997" /> <source>New Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1001" /> + <location filename="../QScintilla/Editor.py" line="1002" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Save</source> <translation>Enregistrer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1013" /> + <location filename="../QScintilla/Editor.py" line="1014" /> <source>Save As...</source> <translation>Enregistrer sous...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1018" /> + <location filename="../QScintilla/Editor.py" line="1019" /> <source>Save Copy...</source> <translation>Enregistrer une copie...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1040" /> - <location filename="../QScintilla/Editor.py" line="1037" /> + <location filename="../QScintilla/Editor.py" line="1041" /> + <location filename="../QScintilla/Editor.py" line="1038" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1044" /> + <location filename="../QScintilla/Editor.py" line="1045" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1047" /> + <location filename="../QScintilla/Editor.py" line="1048" /> <source>Complete from Document</source> <translation>à partir du document</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1049" /> + <location filename="../QScintilla/Editor.py" line="1050" /> <source>Complete from APIs</source> <translation>à partir des fichiers API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052" /> + <location filename="../QScintilla/Editor.py" line="1053" /> <source>Complete from Document and APIs</source> <translation>à partir du document et des fichiers API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1066" /> + <location filename="../QScintilla/Editor.py" line="1067" /> <source>Check</source> <translation>Vérification</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1077" /> + <location filename="../QScintilla/Editor.py" line="1078" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1083" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> + <location filename="../QScintilla/Editor.py" line="1089" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1092" /> + <location filename="../QScintilla/Editor.py" line="1093" /> <source>Check Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1096" /> + <location filename="../QScintilla/Editor.py" line="1097" /> <source>Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1105" /> + <location filename="../QScintilla/Editor.py" line="1106" /> <source>isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1110" /> + <location filename="../QScintilla/Editor.py" line="1111" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1114" /> + <location filename="../QScintilla/Editor.py" line="1115" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1130" /> + <location filename="../QScintilla/Editor.py" line="1131" /> <source>Tools</source> <translation>Outils</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1141" /> + <location filename="../QScintilla/Editor.py" line="1142" /> <source>Show</source> <translation>Afficher</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1143" /> + <location filename="../QScintilla/Editor.py" line="1144" /> <source>Code metrics...</source> <translation>Statistiques du code...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1145" /> + <location filename="../QScintilla/Editor.py" line="1146" /> <source>Code coverage...</source> <translation>Code coverage...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1148" /> + <location filename="../QScintilla/Editor.py" line="1149" /> <source>Show code coverage annotations</source> <translation>Afficher les annotations de code coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1151" /> + <location filename="../QScintilla/Editor.py" line="1152" /> <source>Hide code coverage annotations</source> <translation>Masquer les annotations de code coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1155" /> + <location filename="../QScintilla/Editor.py" line="1156" /> <source>Profile data...</source> <translation>Profiler les données...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1169" /> + <location filename="../QScintilla/Editor.py" line="1170" /> <source>Diagrams</source> <translation>Diagrammes</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1171" /> - <source>Class Diagram...</source> - <translation>Diagramme des classes...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1172" /> - <source>Package Diagram...</source> - <translation>Diagramme des packages...</translation> + <source>Class Diagram...</source> + <translation>Diagramme des classes...</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1173" /> + <source>Package Diagram...</source> + <translation>Diagramme des packages...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1174" /> <source>Imports Diagram...</source> <translation>Diagramme des modules...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1175" /> + <location filename="../QScintilla/Editor.py" line="1176" /> <source>Application Diagram...</source> <translation>Diagramme de l'application...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1180" /> + <location filename="../QScintilla/Editor.py" line="1181" /> <source>Load Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1195" /> + <location filename="../QScintilla/Editor.py" line="1196" /> <source>Languages</source> <translation>Langages</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1199" /> + <location filename="../QScintilla/Editor.py" line="1200" /> <source>Text</source> <translation type="unfinished">Texte</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1222" /> + <location filename="../QScintilla/Editor.py" line="1223" /> <source>Guessed</source> <translation>Suggestion</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1551" /> - <location filename="../QScintilla/Editor.py" line="1226" /> + <location filename="../QScintilla/Editor.py" line="1552" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>Alternatives</source> <translation>Alternatives</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1243" /> + <location filename="../QScintilla/Editor.py" line="1244" /> <source>Encodings</source> <translation>Encodings</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1266" /> + <location filename="../QScintilla/Editor.py" line="1267" /> <source>Re-Open With Encoding</source> <translation>Réouvrir avec encodage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1286" /> + <location filename="../QScintilla/Editor.py" line="1287" /> <source>End-of-Line Type</source> <translation>Type de fin de ligne</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1290" /> + <location filename="../QScintilla/Editor.py" line="1291" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1296" /> + <location filename="../QScintilla/Editor.py" line="1297" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1302" /> + <location filename="../QScintilla/Editor.py" line="1303" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1320" /> + <location filename="../QScintilla/Editor.py" line="1321" /> <source>Spelling</source> <translation type="unfinished">Orthographe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8268" /> - <location filename="../QScintilla/Editor.py" line="1328" /> + <location filename="../QScintilla/Editor.py" line="8276" /> + <location filename="../QScintilla/Editor.py" line="1329" /> <source>Check spelling...</source> <translation>Correction orthographique...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1333" /> + <location filename="../QScintilla/Editor.py" line="1334" /> <source>Check spelling of selection...</source> <translation>Correction orthographique de la sélection...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1337" /> + <location filename="../QScintilla/Editor.py" line="1338" /> <source>Remove from dictionary</source> <translation>Supprimer du dictionnaire</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1354" /> + <location filename="../QScintilla/Editor.py" line="1355" /> <source>Spell Check Languages</source> <translation>Correction orthographique</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1358" /> + <location filename="../QScintilla/Editor.py" line="1359" /> <source>No Language</source> <translation>Pas de langage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1385" /> + <location filename="../QScintilla/Editor.py" line="1386" /> <source>Toggle bookmark</source> <translation>Placer/supprimer un signet</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1387" /> + <location filename="../QScintilla/Editor.py" line="1388" /> <source>Next bookmark</source> <translation>Signet suivant</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1390" /> + <location filename="../QScintilla/Editor.py" line="1391" /> <source>Previous bookmark</source> <translation>Signet précédent</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1393" /> + <location filename="../QScintilla/Editor.py" line="1394" /> <source>Clear all bookmarks</source> <translation>Effacer tous les signets</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1404" /> + <location filename="../QScintilla/Editor.py" line="1405" /> <source>Toggle breakpoint</source> <translation>Placer/supprimer un point d'arrêt</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1407" /> + <location filename="../QScintilla/Editor.py" line="1408" /> <source>Toggle temporary breakpoint</source> <translation>Placer/Supprimer un point d'arret temporaire</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1410" /> + <location filename="../QScintilla/Editor.py" line="1411" /> <source>Edit breakpoint...</source> <translation>Éditer le point d'arrêt...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5927" /> - <location filename="../QScintilla/Editor.py" line="1413" /> + <location filename="../QScintilla/Editor.py" line="5928" /> + <location filename="../QScintilla/Editor.py" line="1414" /> <source>Enable breakpoint</source> <translation>Activer le point d'arrêt</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1416" /> + <location filename="../QScintilla/Editor.py" line="1417" /> <source>Next breakpoint</source> <translation>Point d'arrêt suivant</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1419" /> + <location filename="../QScintilla/Editor.py" line="1420" /> <source>Previous breakpoint</source> <translation>Point d'arrêt précédent</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1422" /> + <location filename="../QScintilla/Editor.py" line="1423" /> <source>Clear all breakpoints</source> <translation>Effacer tous les points d'arrêts</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1433" /> + <location filename="../QScintilla/Editor.py" line="1434" /> <source>Toggle all folds</source> <translation>Contracte/Déploie tout le code</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1438" /> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Toggle all folds (including children)</source> <translation>Contracte/Déploie tout le code (sous-niveaux inclus)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1441" /> + <location filename="../QScintilla/Editor.py" line="1442" /> <source>Toggle current fold</source> <translation>Contracte/Déploie le paragraphe courant</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1445" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Expand (including children)</source> <translation>Déploie (sous-niveaux inclus)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1449" /> + <location filename="../QScintilla/Editor.py" line="1450" /> <source>Collapse (including children)</source> <translation>Contracte (sous-niveaux inclus)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1454" /> + <location filename="../QScintilla/Editor.py" line="1455" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1465" /> + <location filename="../QScintilla/Editor.py" line="1466" /> <source>Goto syntax error</source> <translation>Aller à l'erreur de syntaxe suivante</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> + <location filename="../QScintilla/Editor.py" line="1469" /> <source>Show syntax error message</source> <translation>Afficher le message d'erreur de syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> + <location filename="../QScintilla/Editor.py" line="1472" /> <source>Clear syntax error</source> <translation>Supprimer les flags d'erreurs de syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1475" /> + <location filename="../QScintilla/Editor.py" line="1476" /> <source>Next warning</source> <translation>Alerte suivante</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1478" /> + <location filename="../QScintilla/Editor.py" line="1479" /> <source>Previous warning</source> <translation>Alerte précédente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1481" /> + <location filename="../QScintilla/Editor.py" line="1482" /> <source>Show warning message</source> <translation>Afficher les messages d'alerte</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1484" /> + <location filename="../QScintilla/Editor.py" line="1485" /> <source>Clear warnings</source> <translation>Effacer les alertes</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1488" /> + <location filename="../QScintilla/Editor.py" line="1489" /> <source>Next uncovered line</source> <translation>Ligne non executée suivante</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1491" /> + <location filename="../QScintilla/Editor.py" line="1492" /> <source>Previous uncovered line</source> <translation>Ligne non executée précédente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1495" /> + <location filename="../QScintilla/Editor.py" line="1496" /> <source>Next task</source> <translation>Tâche suivante</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1498" /> + <location filename="../QScintilla/Editor.py" line="1499" /> <source>Previous task</source> <translation>Tâche précédente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1502" /> + <location filename="../QScintilla/Editor.py" line="1503" /> <source>Next change</source> <translation>Modification suivante</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1505" /> + <location filename="../QScintilla/Editor.py" line="1506" /> <source>Previous change</source> <translation>Modification précédente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1508" /> + <location filename="../QScintilla/Editor.py" line="1509" /> <source>Clear changes</source> <translation>Effacer les modifications</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1537" /> - <location filename="../QScintilla/Editor.py" line="1528" /> - <source>Export source</source> - <translation>Exportation de source</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1529" /> - <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1538" /> + <location filename="../QScintilla/Editor.py" line="1529" /> + <source>Export source</source> + <translation>Exportation de source</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1530" /> + <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1539" /> <source>No export format given. Aborting...</source> <translation>Aucun format d'exportation indiqué. Abandon...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1548" /> + <location filename="../QScintilla/Editor.py" line="1549" /> <source>Alternatives ({0})</source> <translation type="unfinished">Alternatives ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1571" /> - <source>Pygments Lexer</source> - <translation>Analyseur Pygments</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1572" /> + <source>Pygments Lexer</source> + <translation>Analyseur Pygments</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1573" /> <source>Select the Pygments lexer to apply.</source> <translation>Sélectionne l'analyseur Pygments à appliquer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2120" /> - <source>Modification of Read Only file</source> - <translation>Modification de la lecture seule</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2121" /> + <source>Modification of Read Only file</source> + <translation>Modification de la lecture seule</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2122" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Le fichier est en lecture seule. Sauvez d'abord votre fichier sous un autre nom.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2556" /> - <source>Add Breakpoint</source> - <translation type="unfinished">Ajouter un point d'arrêt</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2557" /> + <source>Add Breakpoint</source> + <translation type="unfinished">Ajouter un point d'arrêt</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2558" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2890" /> + <location filename="../QScintilla/Editor.py" line="2891" /> <source>Printing...</source> <translation>Impression....</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2907" /> + <location filename="../QScintilla/Editor.py" line="2908" /> <source>Printing completed</source> <translation>Impression terminée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2909" /> + <location filename="../QScintilla/Editor.py" line="2910" /> <source>Error while printing</source> <translation>Erreur durant l'impression</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2912" /> + <location filename="../QScintilla/Editor.py" line="2913" /> <source>Printing aborted</source> <translation>Impression abandonnée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3274" /> - <source>File Modified</source> - <translation>Fichier Modifié</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3275" /> + <source>File Modified</source> + <translation>Fichier Modifié</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3276" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Le fichier <b>{0}</b> a des modifications non enregistrées.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="3334" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Le fichier <b>{0}</b> ne peut être ouvert.</p><p>Raison : {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3509" /> - <location filename="../QScintilla/Editor.py" line="3490" /> - <location filename="../QScintilla/Editor.py" line="3452" /> - <source>Save File</source> - <translation>Enregistrer Fichier</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="3453" /> - <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> - <translation><p>Le fichier <b>{0}</b> ne peut être enregistré.<br/>Raison : {1}</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3510" /> + <location filename="../QScintilla/Editor.py" line="3491" /> + <location filename="../QScintilla/Editor.py" line="3453" /> + <source>Save File</source> + <translation>Enregistrer Fichier</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3454" /> + <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> + <translation><p>Le fichier <b>{0}</b> ne peut être enregistré.<br/>Raison : {1}</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3511" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Le fichier <b>{0}</b>existe déjà. Écraser ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3644" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3645" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3646" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5101" /> - <source>Autocompletion</source> - <translation>Autocompletion</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5102" /> + <source>Autocompletion</source> + <translation>Autocompletion</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5103" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>L'autocompletion n'est pas disponible car aucune source d'autocomplétion n'est définie.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5230" /> - <source>Auto-Completion Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5231" /> + <source>Auto-Completion Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5232" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523" /> - <source>Call-Tips Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5524" /> + <source>Call-Tips Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5525" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5931" /> + <location filename="../QScintilla/Editor.py" line="5932" /> <source>Disable breakpoint</source> <translation>Désactiver le point d'arrêt</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6310" /> + <location filename="../QScintilla/Editor.py" line="6315" /> <source>Code Coverage</source> <translation>Code Coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6311" /> + <location filename="../QScintilla/Editor.py" line="6316" /> <source>Please select a coverage file</source> <translation>Sélectionner un fichier coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6386" /> - <location filename="../QScintilla/Editor.py" line="6378" /> + <location filename="../QScintilla/Editor.py" line="6391" /> + <location filename="../QScintilla/Editor.py" line="6383" /> <source>Show Code Coverage Annotations</source> <translation>Afficher les annotations de Code Coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6379" /> + <location filename="../QScintilla/Editor.py" line="6384" /> <source>All lines have been covered.</source> <translation>Toutes les lignes ont été executées.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387" /> + <location filename="../QScintilla/Editor.py" line="6392" /> <source>There is no coverage file available.</source> <translation>Impossible de trouver le fichier de coverage.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6491" /> + <location filename="../QScintilla/Editor.py" line="6496" /> <source>Profile Data</source> <translation>Profiler de données</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6492" /> + <location filename="../QScintilla/Editor.py" line="6497" /> <source>Please select a profile file</source> <translation>Sélectionner un fichier profile</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6653" /> - <location filename="../QScintilla/Editor.py" line="6647" /> + <location filename="../QScintilla/Editor.py" line="6658" /> + <location filename="../QScintilla/Editor.py" line="6652" /> <source>Syntax Error</source> <translation>Erreur de syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6654" /> + <location filename="../QScintilla/Editor.py" line="6659" /> <source>No syntax error message available.</source> <translation>Aucun message d'erreur de syntaxe..</translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="6873" /> <location filename="../QScintilla/Editor.py" line="6867" /> - <location filename="../QScintilla/Editor.py" line="6861" /> <source>Warning</source> <translation>Warning</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6867" /> + <location filename="../QScintilla/Editor.py" line="6873" /> <source>No warning messages available.</source> <translation>Pas de message d'alerte disponible.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6937" /> <source>Style: {0}</source> <translation>Style : {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6934" /> + <location filename="../QScintilla/Editor.py" line="6942" /> <source>Warning: {0}</source> <translation>Alerte : {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6941" /> + <location filename="../QScintilla/Editor.py" line="6949" /> <source>Error: {0}</source> <translation>Erreur : {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Macro Name</source> <translation>Nom de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Select a macro name:</source> <translation>Sélectionner un nom de macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7074" /> + <location filename="../QScintilla/Editor.py" line="7082" /> <source>Load macro file</source> <translation>Charger un fichier macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7120" /> - <location filename="../QScintilla/Editor.py" line="7076" /> + <location filename="../QScintilla/Editor.py" line="7128" /> + <location filename="../QScintilla/Editor.py" line="7084" /> <source>Macro files (*.macro)</source> <translation>Fichier Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7098" /> - <location filename="../QScintilla/Editor.py" line="7088" /> + <location filename="../QScintilla/Editor.py" line="7106" /> + <location filename="../QScintilla/Editor.py" line="7096" /> <source>Error loading macro</source> <translation>Erreur lors du chargement de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7089" /> + <location filename="../QScintilla/Editor.py" line="7097" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Le fichier macro <b>{0}</b> ne peut être lu.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7099" /> + <location filename="../QScintilla/Editor.py" line="7107" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Le fichier macro <b>{0}</b> est corrompu.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7118" /> + <location filename="../QScintilla/Editor.py" line="7126" /> <source>Save macro file</source> <translation>Enregistrer le fichier macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7136" /> + <location filename="../QScintilla/Editor.py" line="7144" /> <source>Save macro</source> <translation>Enregistrer la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7137" /> + <location filename="../QScintilla/Editor.py" line="7145" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Le fichier macro <b>{0}</b>existe déjà. Écraser ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7152" /> + <location filename="../QScintilla/Editor.py" line="7160" /> <source>Error saving macro</source> <translation>Erreur lors de l'enregistrement de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7161" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Le fichier macro <b>{0}</b> ne peut être écrit.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7166" /> + <location filename="../QScintilla/Editor.py" line="7174" /> <source>Start Macro Recording</source> <translation>Démarrer l'enregistrement de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7167" /> + <location filename="../QScintilla/Editor.py" line="7175" /> <source>Macro recording is already active. Start new?</source> <translation>L'enregistrement de macro est déjà actif. En démarrer une nouvelle ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7193" /> + <location filename="../QScintilla/Editor.py" line="7201" /> <source>Macro Recording</source> <translation>Enregistrement de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7194" /> + <location filename="../QScintilla/Editor.py" line="7202" /> <source>Enter name of the macro:</source> <translation>Entrer le nom de la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7344" /> + <location filename="../QScintilla/Editor.py" line="7352" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7350" /> + <location filename="../QScintilla/Editor.py" line="7358" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Alerte :</b> Vous allez perdre vos modifications à la réouverture.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7357" /> + <location filename="../QScintilla/Editor.py" line="7365" /> <source>File changed</source> <translation>Fichier modifié</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7407" /> + <location filename="../QScintilla/Editor.py" line="7415" /> <source>{0} (ro)</source> <translation type="unfinished">{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7712" /> + <location filename="../QScintilla/Editor.py" line="7720" /> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7713" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> n'est pas un fichier.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7733" /> + <location filename="../QScintilla/Editor.py" line="7741" /> <source>Resources</source> <translation>Ressources</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7735" /> + <location filename="../QScintilla/Editor.py" line="7743" /> <source>Add file...</source> <translation>Ajouter un fichier...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7736" /> + <location filename="../QScintilla/Editor.py" line="7744" /> <source>Add files...</source> <translation>Ajouter des fichiers...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7737" /> + <location filename="../QScintilla/Editor.py" line="7745" /> <source>Add aliased file...</source> <translation>Ajouter un fichier alias...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7739" /> + <location filename="../QScintilla/Editor.py" line="7747" /> <source>Add localized resource...</source> <translation>Ajouter une ressource localisée...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7742" /> + <location filename="../QScintilla/Editor.py" line="7750" /> <source>Add resource frame</source> <translation>Ajouter un cadre ressource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7761" /> + <location filename="../QScintilla/Editor.py" line="7769" /> <source>Add file resource</source> <translation>Ajoute un fichier ressource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7775" /> + <location filename="../QScintilla/Editor.py" line="7783" /> <source>Add file resources</source> <translation>Ajoute des fichiers ressources</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7799" /> - <location filename="../QScintilla/Editor.py" line="7793" /> + <location filename="../QScintilla/Editor.py" line="7807" /> + <location filename="../QScintilla/Editor.py" line="7801" /> <source>Add aliased file resource</source> <translation>Ajoute un alias de fichier ressource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7800" /> + <location filename="../QScintilla/Editor.py" line="7808" /> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7875" /> + <location filename="../QScintilla/Editor.py" line="7883" /> <source>Package Diagram</source> <translation>Diagramme de package</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7876" /> + <location filename="../QScintilla/Editor.py" line="7884" /> <source>Include class attributes?</source> <translation>Inclure les attributs de classes ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7896" /> + <location filename="../QScintilla/Editor.py" line="7904" /> <source>Imports Diagram</source> <translation>Diagramme des modules</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7897" /> + <location filename="../QScintilla/Editor.py" line="7905" /> <source>Include imports from external modules?</source> <translation>Inclure l'importation de modules externes?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7916" /> + <location filename="../QScintilla/Editor.py" line="7924" /> <source>Application Diagram</source> <translation>Diagramme de l'application</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7917" /> + <location filename="../QScintilla/Editor.py" line="7925" /> <source>Include module names?</source> <translation>Inclure les noms de modules ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8272" /> + <location filename="../QScintilla/Editor.py" line="8280" /> <source>Add to dictionary</source> <translation>Ajouter au dictionnaire</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8274" /> + <location filename="../QScintilla/Editor.py" line="8282" /> <source>Ignore All</source> <translation>Tout ignorer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8692" /> + <location filename="../QScintilla/Editor.py" line="8700" /> <source>Sort Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8693" /> + <location filename="../QScintilla/Editor.py" line="8701" /> <source>The selection contains illegal data for a numerical sort.</source> <translation>La sélection contient des données illégales pour un tri numérique.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8786" /> + <location filename="../QScintilla/Editor.py" line="8794" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8787" /> + <location filename="../QScintilla/Editor.py" line="8795" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8883" /> + <location filename="../QScintilla/Editor.py" line="8891" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8889" /> + <location filename="../QScintilla/Editor.py" line="8897" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="8965" /> <source>EditorConfig Properties</source> <translation>Propriétés d'EditorConfig</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8958" /> + <location filename="../QScintilla/Editor.py" line="8966" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Les propriétés d'EditorConfig du fichier <b>{0}</b> n'ont pas pu être chargées.</p></translation> </message> @@ -19951,38 +19951,38 @@ <context> <name>EricTextEditSearchWidget</name> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="115" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="116" /> <source>Find:</source> <translation type="unfinished">Rechercher :</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="141" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="142" /> <source>Match case</source> <translation type="unfinished">Tenir compte de la casse</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="146" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="147" /> <source>Whole word</source> <translation type="unfinished">Mots complets</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="156" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="157" /> <source>Press to find the previous occurrence</source> <translation type="unfinished">Cliquer pour rechercher l'occurence précédente</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="162" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="163" /> <source>Press to find the next occurrence</source> <translation type="unfinished">Cliquer pour rechercher l'occurence suivante</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="481" /> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="433" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="482" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="434" /> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' n'a pas été trouvé.</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="486" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="487" /> <source>Match {0} of {1}</source> <translation type="unfinished" /> </message> @@ -33265,29 +33265,29 @@ <translation>UTF-8</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="119" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="118" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="121" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="120" /> <source>Find Next</source> <translation>Cherche suivant</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="131" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="130" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="133" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="132" /> <source>Find Prev</source> <translation>Cherche précédent</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="297" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="299" /> <source>'{0}' was not found.</source> <translation>'{0}' n'a pas été trouvé.</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="417" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="419" /> <source>Replaced {0} occurrences.</source> <translation>{0} occurrences remplacées.</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="423" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="425" /> <source>Nothing replaced because '{0}' was not found.</source> <translation>Pas de remplacement car '{0}' n'a pas été trouvé.</translation> </message> @@ -71334,74 +71334,74 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="155" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="154" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="157" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="156" /> <source>Find Next</source> <translation>Suivant</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="168" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="167" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="170" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="169" /> <source>Find Prev</source> <translation>Précédent</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="181" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="180" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="183" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="182" /> <source>Replace and Search</source> <translation>Remplacer et Chercher</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="195" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="194" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="197" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="196" /> <source>Replace Occurrence</source> <translation>Remplacer l'occurence</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="209" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="208" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="211" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="210" /> <source>Replace All</source> <translation>Remplacer tout</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="297" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="299" /> <source>Press to find the next occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="304" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="306" /> <source>Press to find the previous occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="311" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="313" /> <source>Press to replace the selection and search for the next occurence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="321" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="323" /> <source>Press to replace the selection ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="328" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="330" /> <source>Press to replace all occurrences ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1114" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="665" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="627" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1123" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="674" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="636" /> <source>'{0}' was not found.</source> <translation>'{0}' n'a pas été trouvé.</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1267" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1276" /> <source>Replaced {0} occurrences.</source> <translation>{0} occurrences remplacées.</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1273" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1282" /> <source>Nothing replaced because '{0}' was not found.</source> <translation>Rien de remplacé car '{0}' n'a pas été trouvé.</translation> </message> @@ -71520,7 +71520,7 @@ <translation>Tenir compte de la casse</translation> </message> <message> - <location filename="../WebBrowser/SearchWidget.py" line="100" /> + <location filename="../WebBrowser/SearchWidget.py" line="101" /> <source>Expression was not found.</source> <translation>L'expression n'a pas été trouvée.</translation> </message> @@ -71535,7 +71535,7 @@ <translation>Expression régulière</translation> </message> <message> - <location filename="../UI/SearchWidget.py" line="212" /> + <location filename="../UI/SearchWidget.py" line="213" /> <source>'{0}' was not found.</source> <translation>'{0}' n'a pas été trouvé.</translation> </message> @@ -72844,143 +72844,158 @@ <context> <name>Shell</name> <message> - <location filename="../QScintilla/Shell.py" line="162" /> + <location filename="../QScintilla/Shell.py" line="164" /> <source>Shell - Passive</source> <translation>Shell - Passif</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="164" /> + <location filename="../QScintilla/Shell.py" line="166" /> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="168" /> - <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. '%quit' or '%exit' is used to exit the application. These commands (except '%environments', '%envs' and '%which') are available through the window menus as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="198" /> - <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. These commands (except '%environments' and '%envs') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="262" /> + <location filename="../QScintilla/Shell.py" line="170" /> + <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="189" /> + <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="244" /> <source>Passive >>> </source> <translation>Passif >>> </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="305" /> + <location filename="../QScintilla/Shell.py" line="287" /> <source>Start</source> <translation>Lancer</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="310" /> + <location filename="../QScintilla/Shell.py" line="292" /> <source>History</source> <translation>Historique</translation> </message> <message> + <location filename="../QScintilla/Shell.py" line="293" /> + <source>Select entry</source> + <translation>Sélection d'une entrée</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="294" /> + <source>Show</source> + <translation>Afficher</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="306" /> + <location filename="../QScintilla/Shell.py" line="295" /> + <source>Clear</source> + <translation>Effacer</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="299" /> + <source>Cut</source> + <translation>Couper</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="300" /> + <source>Copy</source> + <translation>Copier</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="301" /> + <source>Paste</source> + <translation>Coller</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="304" /> + <source>Find</source> + <translation>Chercher</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="307" /> + <source>Restart</source> + <translation>Redémarrer</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="308" /> + <source>Restart and Clear</source> + <translation>Redémarrer et effacer</translation> + </message> + <message> <location filename="../QScintilla/Shell.py" line="311" /> - <source>Select entry</source> - <translation>Sélection d'une entrée</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="312" /> - <source>Show</source> - <translation>Afficher</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="325" /> + <source>Active Name</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="313" /> - <source>Clear</source> - <translation>Effacer</translation> + <source>Save Contents...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="315" /> + <source>Configure...</source> + <translation>Configuration...</translation> </message> <message> <location filename="../QScintilla/Shell.py" line="317" /> - <source>Cut</source> - <translation>Couper</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="318" /> - <source>Copy</source> - <translation>Copier</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="319" /> - <source>Paste</source> - <translation>Coller</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="323" /> - <source>Find</source> - <translation>Chercher</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="326" /> - <source>Restart</source> - <translation>Redémarrer</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="327" /> - <source>Restart and Clear</source> - <translation>Redémarrer et effacer</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="330" /> - <source>Active Name</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="332" /> - <source>Save Contents...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="334" /> - <source>Configure...</source> - <translation>Configuration...</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="2067" /> - <location filename="../QScintilla/Shell.py" line="1846" /> - <location filename="../QScintilla/Shell.py" line="1845" /> - <location filename="../QScintilla/Shell.py" line="408" /> + <source>Special Commands Help</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2087" /> + <location filename="../QScintilla/Shell.py" line="1849" /> + <location filename="../QScintilla/Shell.py" line="1848" /> + <location filename="../QScintilla/Shell.py" line="391" /> <source>Project</source> <translation>Projet</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="806" /> + <location filename="../QScintilla/Shell.py" line="780" /> + <source>Clear History</source> + <translation type="unfinished">Effacer l'historique</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="781" /> + <source>Shall the current history really be cleared?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="803" /> <source>Select History</source> <translation>Historique</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="807" /> + <location filename="../QScintilla/Shell.py" line="804" /> <source>Select the history entry to execute (most recent shown last).</source> <translation>Sélectionner une entrée à executer (la plus récente est à la fin).</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="872" /> + <location filename="../QScintilla/Shell.py" line="878" /> <source>Passive Debug Mode</source> <translation>Mode débogueur passif</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="873" /> + <location filename="../QScintilla/Shell.py" line="879" /> <source> Not connected</source> <translation> Non connexté</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="876" /> + <location filename="../QScintilla/Shell.py" line="882" /> <source>No.</source> <translation>Non.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="878" /> + <location filename="../QScintilla/Shell.py" line="884" /> <source>{0} on {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="925" /> + <location filename="../QScintilla/Shell.py" line="931" /> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -72991,7 +73006,7 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="934" /> + <location filename="../QScintilla/Shell.py" line="940" /> <source>Exception "{0}" {1} </source> @@ -73000,43 +73015,43 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="954" /> + <location filename="../QScintilla/Shell.py" line="960" /> <source>Unspecified syntax error. </source> <translation>Erreur de syntaxe non spécifié. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="957" /> + <location filename="../QScintilla/Shell.py" line="963" /> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation>Erreur de syntaxe"{1}" dans le fichier {0} à la ligne {2}, caractère {3}. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="981" /> + <location filename="../QScintilla/Shell.py" line="987" /> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation>Signal "{0}" généré dans le fichier {1} à la ligne {2}. Fonction : {3}({4})</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1063" /> + <location filename="../QScintilla/Shell.py" line="1069" /> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1071" /> + <location filename="../QScintilla/Shell.py" line="1077" /> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1097" /> + <location filename="../QScintilla/Shell.py" line="1103" /> <source><{0}> {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1892" /> + <location filename="../QScintilla/Shell.py" line="1886" /> <source>Available Virtual Environments: {0} </source> @@ -73045,45 +73060,82 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1935" /> - <location filename="../QScintilla/Shell.py" line="1899" /> + <location filename="../QScintilla/Shell.py" line="1955" /> + <location filename="../QScintilla/Shell.py" line="1892" /> <source>Current Virtual Environment: '{0}' </source> <translation>Environment virtuel actuel : '{0}' </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2207" /> + <location filename="../QScintilla/Shell.py" line="1910" /> + <source>Error: Argument must be an integer value. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1927" /> + <source>Error: Command '{0}' is not supported. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2227" /> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2208" /> + <location filename="../QScintilla/Shell.py" line="2228" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> n'est pas un fichier.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2451" /> - <location filename="../QScintilla/Shell.py" line="2437" /> - <location filename="../QScintilla/Shell.py" line="2416" /> + <location filename="../QScintilla/Shell.py" line="2471" /> + <location filename="../QScintilla/Shell.py" line="2457" /> + <location filename="../QScintilla/Shell.py" line="2436" /> <source>Save Shell Contents</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2418" /> - <source>Text Files (*.txt);;All Files (*)</source> - <translation type="unfinished">Fichiers texte (*.txt);;Tous les fichiers (*)</translation> - </message> - <message> <location filename="../QScintilla/Shell.py" line="2438" /> + <source>Text Files (*.txt);;All Files (*)</source> + <translation type="unfinished">Fichiers texte (*.txt);;Tous les fichiers (*)</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2458" /> <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="../QScintilla/Shell.py" line="2452" /> + <location filename="../QScintilla/Shell.py" line="2472" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished"><p>Le fichier <b>{0}</b> ne peut être enregistré.</p><p>Raison : {1}</p></translation> </message> + <message> + <location filename="../QScintilla/Shell.py" line="2486" /> + <source><tr><td>%restart</td><td>Kill the shell and start a new one.</td></tr><tr><td>%clear</td><td>Clear the display of the shell window.</td></tr><tr><td>%start [environment]</td><td>Start a shell for a virtual environment with the given name. If no name if given, a default shell is started.</td></tr><tr><td>%envs<br/>%environments</td><td>Show a list of known virtual environment names.</td></tr><tr><td>%which</td><td>Show the name of the active virtual environment.</td></tr><tr><td>%hist [n]<br/>%history [n]</td><td>Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.</td></tr><tr><td>%shist<br/>%shistory<br/>%select_history</td><td>Select a command from the history.</td></tr><tr><td>%chist<br/>%chistory<br/>%clear_history</td><td>Clear the current history after confirmation.</td></tr><tr><td>%help</td><td>Show this help text.</td></tr></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2508" /> + <source><tr><td>%quit<br/>%quit()<br/>%exit<br/>%exit()</td><td>Exit the application.</td></tr></table><p>These commands are available through the window menus as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2516" /> + <source></table><p>These commands are available through the context menu as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2523" /> + <source>Shell Special Commands</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2524" /> + <source>The shell supports these special commands:</source> + <translation type="unfinished" /> + </message> </context> <context> <name>ShellHistoryDialog</name>
--- a/src/eric7/i18n/eric7_it.ts Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/i18n/eric7_it.ts Sun Sep 03 17:35:15 2023 +0200 @@ -12452,996 +12452,996 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3332" /> - <location filename="../QScintilla/Editor.py" line="428" /> - <location filename="../QScintilla/Editor.py" line="413" /> + <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="414" /> <source>Open File</source> <translation>Apri File</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="414" /> + <location filename="../QScintilla/Editor.py" line="415" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="430" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>La dimensione del file <b>{0}</b> è <b>{1} KB</b>. Sei sicuro di volerlo caricare ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="526" /> + <location filename="../QScintilla/Editor.py" line="527" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Una finesta di edit</b><p>Questa finestra è usata per visualizzare e modificare un file sorgente. Si possono aprire quante finestre si vogliono. Il nome del file è mostrato nella barra dei titolo della finestra.</p><p>Per impostare dei breakpoint basta cliccare nello spazio tra i numeri di riga e i marcatori di compressione. Con il menù contestuale del margine possono essere modificati.</p><p>Per impostare un segnalibro basta cliccare con lo Shift premuto nello spazio tra il numero di linea e i marcatori di compressione.</p><p>Queste azioni possono essere invertite con il menù contestuale.</p><p> Cliccare con il tasto Ctrl premuto un marcatore di errore della sintassi mostra delle informazioni sull'errore.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="890" /> + <location filename="../QScintilla/Editor.py" line="891" /> <source>Undo</source> <translation>Annulla</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="893" /> + <location filename="../QScintilla/Editor.py" line="894" /> <source>Redo</source> <translation>Rifai</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="896" /> + <location filename="../QScintilla/Editor.py" line="897" /> <source>Revert to last saved state</source> <translation>Ritorna all'ultimo stato salvato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="900" /> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Cut</source> <translation>Taglia</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="903" /> + <location filename="../QScintilla/Editor.py" line="904" /> <source>Copy</source> <translation>Copia</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="906" /> + <location filename="../QScintilla/Editor.py" line="907" /> <source>Paste</source> <translation>Incolla</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="913" /> <source>Indent</source> <translation>Identa</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="917" /> + <location filename="../QScintilla/Editor.py" line="918" /> <source>Unindent</source> <translation>Annulla identazione</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="922" /> + <location filename="../QScintilla/Editor.py" line="923" /> <source>Comment</source> <translation>Commenta</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="927" /> + <location filename="../QScintilla/Editor.py" line="928" /> <source>Uncomment</source> <translation>Annulla commenta</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="9150" /> - <location filename="../QScintilla/Editor.py" line="932" /> + <location filename="../QScintilla/Editor.py" line="9158" /> + <location filename="../QScintilla/Editor.py" line="933" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="935" /> - <source>Select to brace</source> - <translation>Seleziona per parentesizzare</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="936" /> - <source>Select all</source> - <translation>Seleziona tutti</translation> + <source>Select to brace</source> + <translation>Seleziona per parentesizzare</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="937" /> + <source>Select all</source> + <translation>Seleziona tutti</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="938" /> <source>Deselect all</source> <translation>Deseleziona tutti</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939" /> + <location filename="../QScintilla/Editor.py" line="940" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="951" /> + <location filename="../QScintilla/Editor.py" line="952" /> <source>Use Monospaced Font</source> <translation>Usa un font Monospaced</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="957" /> <source>Autosave enabled</source> <translation>Salvataggio automatico abilitato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="962" /> <source>Typing aids enabled</source> <translation>Aiuti alla digitazione abilitati</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="969" /> + <location filename="../QScintilla/Editor.py" line="970" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="978" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Calltip</source> <translation>Calltip</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="981" /> + <location filename="../QScintilla/Editor.py" line="982" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="996" /> + <location filename="../QScintilla/Editor.py" line="997" /> <source>New Document View</source> <translation>Nuova vista Documento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1001" /> + <location filename="../QScintilla/Editor.py" line="1002" /> <source>New Document View (with new split)</source> <translation>Nuova vista Documento (con nuova divisione)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Save</source> <translation>Salva</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1013" /> + <location filename="../QScintilla/Editor.py" line="1014" /> <source>Save As...</source> <translation>Salva come...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1018" /> + <location filename="../QScintilla/Editor.py" line="1019" /> <source>Save Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1040" /> - <location filename="../QScintilla/Editor.py" line="1037" /> + <location filename="../QScintilla/Editor.py" line="1041" /> + <location filename="../QScintilla/Editor.py" line="1038" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1044" /> + <location filename="../QScintilla/Editor.py" line="1045" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1047" /> + <location filename="../QScintilla/Editor.py" line="1048" /> <source>Complete from Document</source> <translation type="unfinished">dal Documento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1049" /> + <location filename="../QScintilla/Editor.py" line="1050" /> <source>Complete from APIs</source> <translation type="unfinished">dalle APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052" /> + <location filename="../QScintilla/Editor.py" line="1053" /> <source>Complete from Document and APIs</source> <translation type="unfinished">dal Documento e dalle APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1066" /> + <location filename="../QScintilla/Editor.py" line="1067" /> <source>Check</source> <translation>Controlla</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1077" /> + <location filename="../QScintilla/Editor.py" line="1078" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1083" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> + <location filename="../QScintilla/Editor.py" line="1089" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1092" /> + <location filename="../QScintilla/Editor.py" line="1093" /> <source>Check Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1096" /> + <location filename="../QScintilla/Editor.py" line="1097" /> <source>Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1105" /> + <location filename="../QScintilla/Editor.py" line="1106" /> <source>isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1110" /> + <location filename="../QScintilla/Editor.py" line="1111" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1114" /> + <location filename="../QScintilla/Editor.py" line="1115" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1130" /> + <location filename="../QScintilla/Editor.py" line="1131" /> <source>Tools</source> <translation>Strumenti</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1141" /> + <location filename="../QScintilla/Editor.py" line="1142" /> <source>Show</source> <translation>Mostra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1143" /> + <location filename="../QScintilla/Editor.py" line="1144" /> <source>Code metrics...</source> <translation>Statistiche codice...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1145" /> + <location filename="../QScintilla/Editor.py" line="1146" /> <source>Code coverage...</source> <translation>Analisi codice...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1148" /> + <location filename="../QScintilla/Editor.py" line="1149" /> <source>Show code coverage annotations</source> <translation>Mostra le annotazioni dell'analisi del codice</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1151" /> + <location filename="../QScintilla/Editor.py" line="1152" /> <source>Hide code coverage annotations</source> <translation>Nascondi le annotazioni dell'analisi del codice</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1155" /> + <location filename="../QScintilla/Editor.py" line="1156" /> <source>Profile data...</source> <translation>Profilazione dati...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1169" /> + <location filename="../QScintilla/Editor.py" line="1170" /> <source>Diagrams</source> <translation>Diagrammi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1171" /> - <source>Class Diagram...</source> - <translation>Diagrammi di classe...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1172" /> - <source>Package Diagram...</source> - <translation>Diagrammi del package...</translation> + <source>Class Diagram...</source> + <translation>Diagrammi di classe...</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1173" /> + <source>Package Diagram...</source> + <translation>Diagrammi del package...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1174" /> <source>Imports Diagram...</source> <translation>Importa diagrammi...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1175" /> + <location filename="../QScintilla/Editor.py" line="1176" /> <source>Application Diagram...</source> <translation>Diagrammi dell'applicazione...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1180" /> + <location filename="../QScintilla/Editor.py" line="1181" /> <source>Load Diagram...</source> <translation>Carica Diagramma...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1195" /> + <location filename="../QScintilla/Editor.py" line="1196" /> <source>Languages</source> <translation>Linguaggi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1199" /> + <location filename="../QScintilla/Editor.py" line="1200" /> <source>Text</source> <translation type="unfinished">Testo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1222" /> + <location filename="../QScintilla/Editor.py" line="1223" /> <source>Guessed</source> <translation>Indovinato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1551" /> - <location filename="../QScintilla/Editor.py" line="1226" /> + <location filename="../QScintilla/Editor.py" line="1552" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>Alternatives</source> <translation>Alternative</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1243" /> + <location filename="../QScintilla/Editor.py" line="1244" /> <source>Encodings</source> <translation>Codifica</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1266" /> + <location filename="../QScintilla/Editor.py" line="1267" /> <source>Re-Open With Encoding</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1286" /> + <location filename="../QScintilla/Editor.py" line="1287" /> <source>End-of-Line Type</source> <translation>Tipo di fine-linea</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1290" /> + <location filename="../QScintilla/Editor.py" line="1291" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1296" /> + <location filename="../QScintilla/Editor.py" line="1297" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1302" /> + <location filename="../QScintilla/Editor.py" line="1303" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1320" /> + <location filename="../QScintilla/Editor.py" line="1321" /> <source>Spelling</source> <translation type="unfinished">Spelling</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8268" /> - <location filename="../QScintilla/Editor.py" line="1328" /> + <location filename="../QScintilla/Editor.py" line="8276" /> + <location filename="../QScintilla/Editor.py" line="1329" /> <source>Check spelling...</source> <translation>Controllo sillabazione...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1333" /> + <location filename="../QScintilla/Editor.py" line="1334" /> <source>Check spelling of selection...</source> <translation>Controllo sillabazione della selezione...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1337" /> + <location filename="../QScintilla/Editor.py" line="1338" /> <source>Remove from dictionary</source> <translation>Rimuovi dal dizionario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1354" /> + <location filename="../QScintilla/Editor.py" line="1355" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1358" /> + <location filename="../QScintilla/Editor.py" line="1359" /> <source>No Language</source> <translation>Nessun linguaggio</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1385" /> + <location filename="../QScintilla/Editor.py" line="1386" /> <source>Toggle bookmark</source> <translation>Inverti bookmark</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1387" /> + <location filename="../QScintilla/Editor.py" line="1388" /> <source>Next bookmark</source> <translation>Prossimo segnalibro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1390" /> + <location filename="../QScintilla/Editor.py" line="1391" /> <source>Previous bookmark</source> <translation>Segnalibro precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1393" /> + <location filename="../QScintilla/Editor.py" line="1394" /> <source>Clear all bookmarks</source> <translation>Pulisci di tutti di segnalibri</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1404" /> + <location filename="../QScintilla/Editor.py" line="1405" /> <source>Toggle breakpoint</source> <translation>Abilita/Disabilita breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1407" /> + <location filename="../QScintilla/Editor.py" line="1408" /> <source>Toggle temporary breakpoint</source> <translation>Abilita/Disabilita breakpoint temporaneo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1410" /> + <location filename="../QScintilla/Editor.py" line="1411" /> <source>Edit breakpoint...</source> <translation>Modifica Breakpoint...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5927" /> - <location filename="../QScintilla/Editor.py" line="1413" /> + <location filename="../QScintilla/Editor.py" line="5928" /> + <location filename="../QScintilla/Editor.py" line="1414" /> <source>Enable breakpoint</source> <translation>Abilita breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1416" /> + <location filename="../QScintilla/Editor.py" line="1417" /> <source>Next breakpoint</source> <translation>Prossimo breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1419" /> + <location filename="../QScintilla/Editor.py" line="1420" /> <source>Previous breakpoint</source> <translation>Breakpoint precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1422" /> + <location filename="../QScintilla/Editor.py" line="1423" /> <source>Clear all breakpoints</source> <translation>Elimina tutti i breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1433" /> + <location filename="../QScintilla/Editor.py" line="1434" /> <source>Toggle all folds</source> <translation type="unfinished">Abilita/Disabilita tutti i raggruppamenti</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1438" /> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Toggle all folds (including children)</source> <translation type="unfinished">Abilita/Disabilita tutti i raggruppamenti (inclusi i figli)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1441" /> + <location filename="../QScintilla/Editor.py" line="1442" /> <source>Toggle current fold</source> <translation type="unfinished">Abilita/Disabilita il raggruppamento corrente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1445" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Expand (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1449" /> + <location filename="../QScintilla/Editor.py" line="1450" /> <source>Collapse (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1454" /> + <location filename="../QScintilla/Editor.py" line="1455" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1465" /> + <location filename="../QScintilla/Editor.py" line="1466" /> <source>Goto syntax error</source> <translation>Vai all'errore di sintassi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> + <location filename="../QScintilla/Editor.py" line="1469" /> <source>Show syntax error message</source> <translation>Mostra i messaggi degli errori di sintassi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> + <location filename="../QScintilla/Editor.py" line="1472" /> <source>Clear syntax error</source> <translation>Elimina errori di sintassi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1475" /> + <location filename="../QScintilla/Editor.py" line="1476" /> <source>Next warning</source> <translation>Warning successivo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1478" /> + <location filename="../QScintilla/Editor.py" line="1479" /> <source>Previous warning</source> <translation>Warning precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1481" /> + <location filename="../QScintilla/Editor.py" line="1482" /> <source>Show warning message</source> <translation>Mostra Warning</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1484" /> + <location filename="../QScintilla/Editor.py" line="1485" /> <source>Clear warnings</source> <translation>Pulisci warning</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1488" /> + <location filename="../QScintilla/Editor.py" line="1489" /> <source>Next uncovered line</source> <translation>Prossimo file non analizzato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1491" /> + <location filename="../QScintilla/Editor.py" line="1492" /> <source>Previous uncovered line</source> <translation>File non analizzato precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1495" /> + <location filename="../QScintilla/Editor.py" line="1496" /> <source>Next task</source> <translation>Prossimo task</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1498" /> + <location filename="../QScintilla/Editor.py" line="1499" /> <source>Previous task</source> <translation>Task precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1502" /> + <location filename="../QScintilla/Editor.py" line="1503" /> <source>Next change</source> <translation>Modifica successiva</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1505" /> + <location filename="../QScintilla/Editor.py" line="1506" /> <source>Previous change</source> <translation>Modifica precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1508" /> + <location filename="../QScintilla/Editor.py" line="1509" /> <source>Clear changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1537" /> - <location filename="../QScintilla/Editor.py" line="1528" /> - <source>Export source</source> - <translation>Esporta sorgenti</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1529" /> - <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> - <translation><p>Nessun esportatore disponibile per il formato di export<b>{0}</b>. Termino...</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1538" /> + <location filename="../QScintilla/Editor.py" line="1529" /> + <source>Export source</source> + <translation>Esporta sorgenti</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1530" /> + <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> + <translation><p>Nessun esportatore disponibile per il formato di export<b>{0}</b>. Termino...</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1539" /> <source>No export format given. Aborting...</source> <translation>Nessun formato di export impostato. Annullamento...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1548" /> + <location filename="../QScintilla/Editor.py" line="1549" /> <source>Alternatives ({0})</source> <translation>Alternative ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1571" /> - <source>Pygments Lexer</source> - <translation>Analizzatore lessicale Pygments</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1572" /> + <source>Pygments Lexer</source> + <translation>Analizzatore lessicale Pygments</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1573" /> <source>Select the Pygments lexer to apply.</source> <translation>Selezione l'analizzatore lessicale di Pygments da applicare.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2120" /> - <source>Modification of Read Only file</source> - <translation>Modifica di un file di sola lettura</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2121" /> + <source>Modification of Read Only file</source> + <translation>Modifica di un file di sola lettura</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2122" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Stai tentando di modificare un file in sola lettura. Per favore prima salva come un file diverso.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2556" /> - <source>Add Breakpoint</source> - <translation type="unfinished">Aggiungi un breakpoint</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2557" /> + <source>Add Breakpoint</source> + <translation type="unfinished">Aggiungi un breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2558" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2890" /> + <location filename="../QScintilla/Editor.py" line="2891" /> <source>Printing...</source> <translation>In stampa...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2907" /> + <location filename="../QScintilla/Editor.py" line="2908" /> <source>Printing completed</source> <translation>Stampa completata</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2909" /> + <location filename="../QScintilla/Editor.py" line="2910" /> <source>Error while printing</source> <translation>Errore durante la stampa</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2912" /> + <location filename="../QScintilla/Editor.py" line="2913" /> <source>Printing aborted</source> <translation>Stampa annullata</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3274" /> - <source>File Modified</source> - <translation>File modificato</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3275" /> + <source>File Modified</source> + <translation>File modificato</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3276" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Il file <b>{0}</b> contiene modifiche non salvate.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="3334" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere aperto.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3509" /> - <location filename="../QScintilla/Editor.py" line="3490" /> - <location filename="../QScintilla/Editor.py" line="3452" /> - <source>Save File</source> - <translation>Salva file</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="3453" /> - <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> - <translation><p>Il file <b>{0}</b> non può essere salvato.<br />Motivo: {1}</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3510" /> + <location filename="../QScintilla/Editor.py" line="3491" /> + <location filename="../QScintilla/Editor.py" line="3453" /> + <source>Save File</source> + <translation>Salva file</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3454" /> + <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> + <translation><p>Il file <b>{0}</b> non può essere salvato.<br />Motivo: {1}</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3511" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Il file <b>{0}</b> esiste già. Sovrascriverlo ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3644" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3645" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3646" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5101" /> - <source>Autocompletion</source> - <translation>Autocompletamento</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5102" /> + <source>Autocompletion</source> + <translation>Autocompletamento</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5103" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>L'autocomplentamento non è disponibile perchè non ci sono fonti impostate.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5230" /> - <source>Auto-Completion Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5231" /> + <source>Auto-Completion Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5232" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523" /> - <source>Call-Tips Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5524" /> + <source>Call-Tips Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5525" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5931" /> + <location filename="../QScintilla/Editor.py" line="5932" /> <source>Disable breakpoint</source> <translation>Disabilita breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6310" /> + <location filename="../QScintilla/Editor.py" line="6315" /> <source>Code Coverage</source> <translation>Analisi codice</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6311" /> + <location filename="../QScintilla/Editor.py" line="6316" /> <source>Please select a coverage file</source> <translation>Per favore seleziona un file per l'analisi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6386" /> - <location filename="../QScintilla/Editor.py" line="6378" /> + <location filename="../QScintilla/Editor.py" line="6391" /> + <location filename="../QScintilla/Editor.py" line="6383" /> <source>Show Code Coverage Annotations</source> <translation>Mostra le annotazioni dell'analisi del codice</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6379" /> + <location filename="../QScintilla/Editor.py" line="6384" /> <source>All lines have been covered.</source> <translation>Tutte le linee sono state analizzate.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387" /> + <location filename="../QScintilla/Editor.py" line="6392" /> <source>There is no coverage file available.</source> <translation>Non ci sono file di analisi disponibili.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6491" /> + <location filename="../QScintilla/Editor.py" line="6496" /> <source>Profile Data</source> <translation>Profilazione dati</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6492" /> + <location filename="../QScintilla/Editor.py" line="6497" /> <source>Please select a profile file</source> <translation>Per favore seleziona un file per la profilazione</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6653" /> - <location filename="../QScintilla/Editor.py" line="6647" /> + <location filename="../QScintilla/Editor.py" line="6658" /> + <location filename="../QScintilla/Editor.py" line="6652" /> <source>Syntax Error</source> <translation>Errore di sintassi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6654" /> + <location filename="../QScintilla/Editor.py" line="6659" /> <source>No syntax error message available.</source> <translation>Nessun messaggio degli errori di sintassi disponibile.</translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="6873" /> <location filename="../QScintilla/Editor.py" line="6867" /> - <location filename="../QScintilla/Editor.py" line="6861" /> <source>Warning</source> <translation>Attenzione</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6867" /> + <location filename="../QScintilla/Editor.py" line="6873" /> <source>No warning messages available.</source> <translation>Nessun messaggio di attenzione disponibile.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6937" /> <source>Style: {0}</source> <translation>Stile: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6934" /> + <location filename="../QScintilla/Editor.py" line="6942" /> <source>Warning: {0}</source> <translation>Attenzione: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6941" /> + <location filename="../QScintilla/Editor.py" line="6949" /> <source>Error: {0}</source> <translation>Errore: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Macro Name</source> <translation>Nome Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Select a macro name:</source> <translation>Seleziona un nome per la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7074" /> + <location filename="../QScintilla/Editor.py" line="7082" /> <source>Load macro file</source> <translation>Carica un file di macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7120" /> - <location filename="../QScintilla/Editor.py" line="7076" /> + <location filename="../QScintilla/Editor.py" line="7128" /> + <location filename="../QScintilla/Editor.py" line="7084" /> <source>Macro files (*.macro)</source> <translation>File Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7098" /> - <location filename="../QScintilla/Editor.py" line="7088" /> + <location filename="../QScintilla/Editor.py" line="7106" /> + <location filename="../QScintilla/Editor.py" line="7096" /> <source>Error loading macro</source> <translation>Errore nel caricamento della macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7089" /> + <location filename="../QScintilla/Editor.py" line="7097" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Il file macro <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7099" /> + <location filename="../QScintilla/Editor.py" line="7107" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Il file macro <b>{0}</b> è danneggiato.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7118" /> + <location filename="../QScintilla/Editor.py" line="7126" /> <source>Save macro file</source> <translation>Salva un file di macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7136" /> + <location filename="../QScintilla/Editor.py" line="7144" /> <source>Save macro</source> <translation>Salva macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7137" /> + <location filename="../QScintilla/Editor.py" line="7145" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Il file delle macro <b>{0}</b> esiste già.Sovrascriverlo ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7152" /> + <location filename="../QScintilla/Editor.py" line="7160" /> <source>Error saving macro</source> <translation>Errore nel salvataggio della macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7161" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Il file macro <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7166" /> + <location filename="../QScintilla/Editor.py" line="7174" /> <source>Start Macro Recording</source> <translation>Avvia registrazione della macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7167" /> + <location filename="../QScintilla/Editor.py" line="7175" /> <source>Macro recording is already active. Start new?</source> <translation>Registrazione macro già attiva. Avvia nuovamente ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7193" /> + <location filename="../QScintilla/Editor.py" line="7201" /> <source>Macro Recording</source> <translation>Registrazione Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7194" /> + <location filename="../QScintilla/Editor.py" line="7202" /> <source>Enter name of the macro:</source> <translation>Inserisci un nome per la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7344" /> + <location filename="../QScintilla/Editor.py" line="7352" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7350" /> + <location filename="../QScintilla/Editor.py" line="7358" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Attenzione:</b> con la riapertura le modifiche andranno perse.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7357" /> + <location filename="../QScintilla/Editor.py" line="7365" /> <source>File changed</source> <translation>File modificato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7407" /> + <location filename="../QScintilla/Editor.py" line="7415" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7712" /> + <location filename="../QScintilla/Editor.py" line="7720" /> <source>Drop Error</source> <translation>Errore Drop</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7713" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <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="../QScintilla/Editor.py" line="7733" /> + <location filename="../QScintilla/Editor.py" line="7741" /> <source>Resources</source> <translation>Risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7735" /> + <location filename="../QScintilla/Editor.py" line="7743" /> <source>Add file...</source> <translation>Aggiungi file...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7736" /> + <location filename="../QScintilla/Editor.py" line="7744" /> <source>Add files...</source> <translation>Aggiungi files...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7737" /> + <location filename="../QScintilla/Editor.py" line="7745" /> <source>Add aliased file...</source> <translation>Aggiungi file sinonimo...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7739" /> + <location filename="../QScintilla/Editor.py" line="7747" /> <source>Add localized resource...</source> <translation>Aggiungi una risorsa localizzata...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7742" /> + <location filename="../QScintilla/Editor.py" line="7750" /> <source>Add resource frame</source> <translation>Aggiungi riquadro delle risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7761" /> + <location filename="../QScintilla/Editor.py" line="7769" /> <source>Add file resource</source> <translation>Aggiungi un file risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7775" /> + <location filename="../QScintilla/Editor.py" line="7783" /> <source>Add file resources</source> <translation>Aggiundi dei file risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7799" /> - <location filename="../QScintilla/Editor.py" line="7793" /> + <location filename="../QScintilla/Editor.py" line="7807" /> + <location filename="../QScintilla/Editor.py" line="7801" /> <source>Add aliased file resource</source> <translation>Aggiungi file sinonimo delle risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7800" /> + <location filename="../QScintilla/Editor.py" line="7808" /> <source>Alias for file <b>{0}</b>:</source> <translation>Alias per il file <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7875" /> + <location filename="../QScintilla/Editor.py" line="7883" /> <source>Package Diagram</source> <translation>Diagrammi del package</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7876" /> + <location filename="../QScintilla/Editor.py" line="7884" /> <source>Include class attributes?</source> <translation>Includi gli attributi della classe ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7896" /> + <location filename="../QScintilla/Editor.py" line="7904" /> <source>Imports Diagram</source> <translation>Importa diagrammi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7897" /> + <location filename="../QScintilla/Editor.py" line="7905" /> <source>Include imports from external modules?</source> <translation>Includi gli import dai moduli esterni ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7916" /> + <location filename="../QScintilla/Editor.py" line="7924" /> <source>Application Diagram</source> <translation>Diagrammi dell'applicazione</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7917" /> + <location filename="../QScintilla/Editor.py" line="7925" /> <source>Include module names?</source> <translation>Includi i nomi dei moduli ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8272" /> + <location filename="../QScintilla/Editor.py" line="8280" /> <source>Add to dictionary</source> <translation>Aggiungi al dizionario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8274" /> + <location filename="../QScintilla/Editor.py" line="8282" /> <source>Ignore All</source> <translation>Ignora tutto</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8692" /> + <location filename="../QScintilla/Editor.py" line="8700" /> <source>Sort Lines</source> <translation>Righe ordinate</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8693" /> + <location filename="../QScintilla/Editor.py" line="8701" /> <source>The selection contains illegal data for a numerical sort.</source> <translation>La selezione contiene dati non validi per un ordinamento numerico.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8786" /> + <location filename="../QScintilla/Editor.py" line="8794" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8787" /> + <location filename="../QScintilla/Editor.py" line="8795" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8883" /> + <location filename="../QScintilla/Editor.py" line="8891" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8889" /> + <location filename="../QScintilla/Editor.py" line="8897" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="8965" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8958" /> + <location filename="../QScintilla/Editor.py" line="8966" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -19919,38 +19919,38 @@ <context> <name>EricTextEditSearchWidget</name> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="115" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="116" /> <source>Find:</source> <translation type="unfinished">Trova:</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="141" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="142" /> <source>Match case</source> <translation type="unfinished">Match case</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="146" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="147" /> <source>Whole word</source> <translation type="unfinished">Tutta la parola</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="156" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="157" /> <source>Press to find the previous occurrence</source> <translation type="unfinished">Premi per trovare l'occorrenza precedente</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="162" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="163" /> <source>Press to find the next occurrence</source> <translation type="unfinished">Premi per trovare la prossima occorrenza</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="481" /> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="433" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="482" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="434" /> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' non è stato trovato.</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="486" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="487" /> <source>Match {0} of {1}</source> <translation type="unfinished" /> </message> @@ -33210,29 +33210,29 @@ <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="119" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="118" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="121" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="120" /> <source>Find Next</source> <translation type="unfinished">Trova successivo</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="131" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="130" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="133" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="132" /> <source>Find Prev</source> <translation type="unfinished">Trova prec</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="297" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="299" /> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' non è stato trovato.</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="417" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="419" /> <source>Replaced {0} occurrences.</source> <translation type="unfinished">Sostituite {0} ricorrenze.</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="423" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="425" /> <source>Nothing replaced because '{0}' was not found.</source> <translation type="unfinished">Nessuna sostituzione perché '{0}' non è stato trovato.</translation> </message> @@ -71111,74 +71111,74 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="155" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="154" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="157" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="156" /> <source>Find Next</source> <translation>Trova successivo</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="168" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="167" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="170" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="169" /> <source>Find Prev</source> <translation>Trova prec</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="181" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="180" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="183" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="182" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="195" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="194" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="197" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="196" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="209" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="208" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="211" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="210" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="297" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="299" /> <source>Press to find the next occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="304" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="306" /> <source>Press to find the previous occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="311" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="313" /> <source>Press to replace the selection and search for the next occurence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="321" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="323" /> <source>Press to replace the selection ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="328" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="330" /> <source>Press to replace all occurrences ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1114" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="665" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="627" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1123" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="674" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="636" /> <source>'{0}' was not found.</source> <translation>'{0}' non è stato trovato.</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1267" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1276" /> <source>Replaced {0} occurrences.</source> <translation>Sostituite {0} ricorrenze.</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1273" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1282" /> <source>Nothing replaced because '{0}' was not found.</source> <translation>Nessuna sostituzione perché '{0}' non è stato trovato.</translation> </message> @@ -71297,7 +71297,7 @@ <translation>Match case</translation> </message> <message> - <location filename="../WebBrowser/SearchWidget.py" line="100" /> + <location filename="../WebBrowser/SearchWidget.py" line="101" /> <source>Expression was not found.</source> <translation>Espressione non trovata.</translation> </message> @@ -71312,7 +71312,7 @@ <translation type="unfinished">Regexp</translation> </message> <message> - <location filename="../UI/SearchWidget.py" line="212" /> + <location filename="../UI/SearchWidget.py" line="213" /> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' non è stato trovato.</translation> </message> @@ -72585,143 +72585,158 @@ <context> <name>Shell</name> <message> - <location filename="../QScintilla/Shell.py" line="162" /> + <location filename="../QScintilla/Shell.py" line="164" /> <source>Shell - Passive</source> <translation>Shell - Passive</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="164" /> + <location filename="../QScintilla/Shell.py" line="166" /> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="168" /> - <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. '%quit' or '%exit' is used to exit the application. These commands (except '%environments', '%envs' and '%which') are available through the window menus as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="198" /> - <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. These commands (except '%environments' and '%envs') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="262" /> + <location filename="../QScintilla/Shell.py" line="170" /> + <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="189" /> + <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="244" /> <source>Passive >>> </source> <translation>Passivo '>>>'</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="305" /> + <location filename="../QScintilla/Shell.py" line="287" /> <source>Start</source> <translation>Inizia</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="310" /> + <location filename="../QScintilla/Shell.py" line="292" /> <source>History</source> <translation>Cronologia</translation> </message> <message> + <location filename="../QScintilla/Shell.py" line="293" /> + <source>Select entry</source> + <translation>Seleziona elemento</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="294" /> + <source>Show</source> + <translation>Mostra</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="306" /> + <location filename="../QScintilla/Shell.py" line="295" /> + <source>Clear</source> + <translation>Pulisci</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="299" /> + <source>Cut</source> + <translation>Taglia</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="300" /> + <source>Copy</source> + <translation>Copia</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="301" /> + <source>Paste</source> + <translation>Incolla</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="304" /> + <source>Find</source> + <translation>Trova</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="307" /> + <source>Restart</source> + <translation type="unfinished">Riavvio</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="308" /> + <source>Restart and Clear</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="311" /> - <source>Select entry</source> - <translation>Seleziona elemento</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="312" /> - <source>Show</source> - <translation>Mostra</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="325" /> + <source>Active Name</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="313" /> - <source>Clear</source> - <translation>Pulisci</translation> + <source>Save Contents...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="315" /> + <source>Configure...</source> + <translation>Configura...</translation> </message> <message> <location filename="../QScintilla/Shell.py" line="317" /> - <source>Cut</source> - <translation>Taglia</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="318" /> - <source>Copy</source> - <translation>Copia</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="319" /> - <source>Paste</source> - <translation>Incolla</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="323" /> - <source>Find</source> - <translation>Trova</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="326" /> - <source>Restart</source> - <translation type="unfinished">Riavvio</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="327" /> - <source>Restart and Clear</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="330" /> - <source>Active Name</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="332" /> - <source>Save Contents...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="334" /> - <source>Configure...</source> - <translation>Configura...</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="2067" /> - <location filename="../QScintilla/Shell.py" line="1846" /> - <location filename="../QScintilla/Shell.py" line="1845" /> - <location filename="../QScintilla/Shell.py" line="408" /> + <source>Special Commands Help</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2087" /> + <location filename="../QScintilla/Shell.py" line="1849" /> + <location filename="../QScintilla/Shell.py" line="1848" /> + <location filename="../QScintilla/Shell.py" line="391" /> <source>Project</source> <translation type="unfinished">Progetto</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="806" /> + <location filename="../QScintilla/Shell.py" line="780" /> + <source>Clear History</source> + <translation type="unfinished">Pulisci la history</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="781" /> + <source>Shall the current history really be cleared?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="803" /> <source>Select History</source> <translation>Selezione cronologia</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="807" /> + <location filename="../QScintilla/Shell.py" line="804" /> <source>Select the history entry to execute (most recent shown last).</source> <translation>Seleziona l'elemento dalla cronologia da esegurie (i più recenti sono gli ultimi).</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="872" /> + <location filename="../QScintilla/Shell.py" line="878" /> <source>Passive Debug Mode</source> <translation>Passive Debug Mode</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="873" /> + <location filename="../QScintilla/Shell.py" line="879" /> <source> Not connected</source> <translation> Non connesso</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="876" /> + <location filename="../QScintilla/Shell.py" line="882" /> <source>No.</source> <translation>No.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="878" /> + <location filename="../QScintilla/Shell.py" line="884" /> <source>{0} on {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="925" /> + <location filename="../QScintilla/Shell.py" line="931" /> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -72729,91 +72744,128 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="934" /> + <location filename="../QScintilla/Shell.py" line="940" /> <source>Exception "{0}" {1} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="954" /> + <location filename="../QScintilla/Shell.py" line="960" /> <source>Unspecified syntax error. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="957" /> + <location filename="../QScintilla/Shell.py" line="963" /> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="981" /> + <location filename="../QScintilla/Shell.py" line="987" /> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1063" /> + <location filename="../QScintilla/Shell.py" line="1069" /> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1071" /> + <location filename="../QScintilla/Shell.py" line="1077" /> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1097" /> + <location filename="../QScintilla/Shell.py" line="1103" /> <source><{0}> {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1892" /> + <location filename="../QScintilla/Shell.py" line="1886" /> <source>Available Virtual Environments: {0} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1935" /> - <location filename="../QScintilla/Shell.py" line="1899" /> + <location filename="../QScintilla/Shell.py" line="1955" /> + <location filename="../QScintilla/Shell.py" line="1892" /> <source>Current Virtual Environment: '{0}' </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2207" /> + <location filename="../QScintilla/Shell.py" line="1910" /> + <source>Error: Argument must be an integer value. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1927" /> + <source>Error: Command '{0}' is not supported. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2227" /> <source>Drop Error</source> <translation>Drop Error</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2208" /> + <location filename="../QScintilla/Shell.py" line="2228" /> <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="../QScintilla/Shell.py" line="2451" /> - <location filename="../QScintilla/Shell.py" line="2437" /> - <location filename="../QScintilla/Shell.py" line="2416" /> + <location filename="../QScintilla/Shell.py" line="2471" /> + <location filename="../QScintilla/Shell.py" line="2457" /> + <location filename="../QScintilla/Shell.py" line="2436" /> <source>Save Shell Contents</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2418" /> - <source>Text Files (*.txt);;All Files (*)</source> - <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation> - </message> - <message> <location filename="../QScintilla/Shell.py" line="2438" /> + <source>Text Files (*.txt);;All Files (*)</source> + <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2458" /> <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="../QScintilla/Shell.py" line="2452" /> + <location filename="../QScintilla/Shell.py" line="2472" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished"><p>Il file <b>{0}</b> non può essere salvato.<br />Motivo: {1}</p></translation> </message> + <message> + <location filename="../QScintilla/Shell.py" line="2486" /> + <source><tr><td>%restart</td><td>Kill the shell and start a new one.</td></tr><tr><td>%clear</td><td>Clear the display of the shell window.</td></tr><tr><td>%start [environment]</td><td>Start a shell for a virtual environment with the given name. If no name if given, a default shell is started.</td></tr><tr><td>%envs<br/>%environments</td><td>Show a list of known virtual environment names.</td></tr><tr><td>%which</td><td>Show the name of the active virtual environment.</td></tr><tr><td>%hist [n]<br/>%history [n]</td><td>Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.</td></tr><tr><td>%shist<br/>%shistory<br/>%select_history</td><td>Select a command from the history.</td></tr><tr><td>%chist<br/>%chistory<br/>%clear_history</td><td>Clear the current history after confirmation.</td></tr><tr><td>%help</td><td>Show this help text.</td></tr></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2508" /> + <source><tr><td>%quit<br/>%quit()<br/>%exit<br/>%exit()</td><td>Exit the application.</td></tr></table><p>These commands are available through the window menus as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2516" /> + <source></table><p>These commands are available through the context menu as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2523" /> + <source>Shell Special Commands</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2524" /> + <source>The shell supports these special commands:</source> + <translation type="unfinished" /> + </message> </context> <context> <name>ShellHistoryDialog</name>
--- a/src/eric7/i18n/eric7_pt.ts Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/i18n/eric7_pt.ts Sun Sep 03 17:35:15 2023 +0200 @@ -12472,996 +12472,996 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3332" /> - <location filename="../QScintilla/Editor.py" line="428" /> - <location filename="../QScintilla/Editor.py" line="413" /> + <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="414" /> <source>Open File</source> <translation>Abrir Ficheiro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="414" /> + <location filename="../QScintilla/Editor.py" line="415" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="430" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>O tamanho do ficheiro <b>{0}</b> é <b>{1} KB</b>. Tem a certeza de que o quer carregar?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="526" /> + <location filename="../QScintilla/Editor.py" line="527" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="890" /> + <location filename="../QScintilla/Editor.py" line="891" /> <source>Undo</source> <translation>Desfazer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="893" /> + <location filename="../QScintilla/Editor.py" line="894" /> <source>Redo</source> <translation>Refazer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="896" /> + <location filename="../QScintilla/Editor.py" line="897" /> <source>Revert to last saved state</source> <translation>Voltar ao último estado guardado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="900" /> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Cut</source> <translation>Cortar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="903" /> + <location filename="../QScintilla/Editor.py" line="904" /> <source>Copy</source> <translation>Copiar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="906" /> + <location filename="../QScintilla/Editor.py" line="907" /> <source>Paste</source> <translation>Colar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="913" /> <source>Indent</source> <translation>Indentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="917" /> + <location filename="../QScintilla/Editor.py" line="918" /> <source>Unindent</source> <translation>Tirar Indentação</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="922" /> + <location filename="../QScintilla/Editor.py" line="923" /> <source>Comment</source> <translation>Comentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="927" /> + <location filename="../QScintilla/Editor.py" line="928" /> <source>Uncomment</source> <translation>Descomentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="9150" /> - <location filename="../QScintilla/Editor.py" line="932" /> + <location filename="../QScintilla/Editor.py" line="9158" /> + <location filename="../QScintilla/Editor.py" line="933" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="935" /> - <source>Select to brace</source> - <translation>Selecionar até parentesis</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="936" /> - <source>Select all</source> - <translation>Selecionar tudo</translation> + <source>Select to brace</source> + <translation>Selecionar até parentesis</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="937" /> + <source>Select all</source> + <translation>Selecionar tudo</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="938" /> <source>Deselect all</source> <translation>Desselecionar tudo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939" /> + <location filename="../QScintilla/Editor.py" line="940" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="951" /> + <location filename="../QScintilla/Editor.py" line="952" /> <source>Use Monospaced Font</source> <translation>Usar Tipo de Letra de Tamanho Único</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="957" /> <source>Autosave enabled</source> <translation>Ativado autogravar </translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="962" /> <source>Typing aids enabled</source> <translation>Habilitada a ajuda à escritura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="969" /> + <location filename="../QScintilla/Editor.py" line="970" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="978" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Calltip</source> <translation>Dica</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="981" /> + <location filename="../QScintilla/Editor.py" line="982" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="996" /> + <location filename="../QScintilla/Editor.py" line="997" /> <source>New Document View</source> <translation>Vista de Documento Novo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1001" /> + <location filename="../QScintilla/Editor.py" line="1002" /> <source>New Document View (with new split)</source> <translation>Vista de Documento Novo (com divisão nova)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Save</source> <translation>Gravar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1013" /> + <location filename="../QScintilla/Editor.py" line="1014" /> <source>Save As...</source> <translation>Gravar Como...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1018" /> + <location filename="../QScintilla/Editor.py" line="1019" /> <source>Save Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1040" /> - <location filename="../QScintilla/Editor.py" line="1037" /> + <location filename="../QScintilla/Editor.py" line="1041" /> + <location filename="../QScintilla/Editor.py" line="1038" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1044" /> + <location filename="../QScintilla/Editor.py" line="1045" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1047" /> + <location filename="../QScintilla/Editor.py" line="1048" /> <source>Complete from Document</source> <translation type="unfinished">desde Documento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1049" /> + <location filename="../QScintilla/Editor.py" line="1050" /> <source>Complete from APIs</source> <translation type="unfinished">desde APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052" /> + <location filename="../QScintilla/Editor.py" line="1053" /> <source>Complete from Document and APIs</source> <translation type="unfinished">desde Documento e APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1066" /> + <location filename="../QScintilla/Editor.py" line="1067" /> <source>Check</source> <translation>Verificar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1077" /> + <location filename="../QScintilla/Editor.py" line="1078" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1083" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> + <location filename="../QScintilla/Editor.py" line="1089" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1092" /> + <location filename="../QScintilla/Editor.py" line="1093" /> <source>Check Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1096" /> + <location filename="../QScintilla/Editor.py" line="1097" /> <source>Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1105" /> + <location filename="../QScintilla/Editor.py" line="1106" /> <source>isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1110" /> + <location filename="../QScintilla/Editor.py" line="1111" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1114" /> + <location filename="../QScintilla/Editor.py" line="1115" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1130" /> + <location filename="../QScintilla/Editor.py" line="1131" /> <source>Tools</source> <translation>Ferramentas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1141" /> + <location filename="../QScintilla/Editor.py" line="1142" /> <source>Show</source> <translation>Mostrar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1143" /> + <location filename="../QScintilla/Editor.py" line="1144" /> <source>Code metrics...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1145" /> + <location filename="../QScintilla/Editor.py" line="1146" /> <source>Code coverage...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1148" /> + <location filename="../QScintilla/Editor.py" line="1149" /> <source>Show code coverage annotations</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1151" /> + <location filename="../QScintilla/Editor.py" line="1152" /> <source>Hide code coverage annotations</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1155" /> + <location filename="../QScintilla/Editor.py" line="1156" /> <source>Profile data...</source> <translation>Dados de Perfil...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1169" /> + <location filename="../QScintilla/Editor.py" line="1170" /> <source>Diagrams</source> <translation>Diagramas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1171" /> - <source>Class Diagram...</source> - <translation>Diagrama de Classes...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1172" /> - <source>Package Diagram...</source> - <translation>Diagrama do Pacote...</translation> + <source>Class Diagram...</source> + <translation>Diagrama de Classes...</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1173" /> + <source>Package Diagram...</source> + <translation>Diagrama do Pacote...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1174" /> <source>Imports Diagram...</source> <translation>Diagrama de Imports...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1175" /> + <location filename="../QScintilla/Editor.py" line="1176" /> <source>Application Diagram...</source> <translation>Diagrama da Aplicação...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1180" /> + <location filename="../QScintilla/Editor.py" line="1181" /> <source>Load Diagram...</source> <translation>Carregar Diagrama...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1195" /> + <location filename="../QScintilla/Editor.py" line="1196" /> <source>Languages</source> <translation>Linguagens</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1199" /> + <location filename="../QScintilla/Editor.py" line="1200" /> <source>Text</source> <translation type="unfinished">Texto</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1222" /> + <location filename="../QScintilla/Editor.py" line="1223" /> <source>Guessed</source> <translation>Adivinhado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1551" /> - <location filename="../QScintilla/Editor.py" line="1226" /> + <location filename="../QScintilla/Editor.py" line="1552" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>Alternatives</source> <translation>Alternativas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1243" /> + <location filename="../QScintilla/Editor.py" line="1244" /> <source>Encodings</source> <translation>Codificações</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1266" /> + <location filename="../QScintilla/Editor.py" line="1267" /> <source>Re-Open With Encoding</source> <translation>Reabrir Com Codificação</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1286" /> + <location filename="../QScintilla/Editor.py" line="1287" /> <source>End-of-Line Type</source> <translation>Tipo do Fim-de-Linha</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1290" /> + <location filename="../QScintilla/Editor.py" line="1291" /> <source>Unix</source> <translation /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1296" /> + <location filename="../QScintilla/Editor.py" line="1297" /> <source>Windows</source> <translation /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1302" /> + <location filename="../QScintilla/Editor.py" line="1303" /> <source>Macintosh</source> <translation /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1320" /> + <location filename="../QScintilla/Editor.py" line="1321" /> <source>Spelling</source> <translation type="unfinished">Verificação ortográfica</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8268" /> - <location filename="../QScintilla/Editor.py" line="1328" /> + <location filename="../QScintilla/Editor.py" line="8276" /> + <location filename="../QScintilla/Editor.py" line="1329" /> <source>Check spelling...</source> <translation>Verificação ortográfica...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1333" /> + <location filename="../QScintilla/Editor.py" line="1334" /> <source>Check spelling of selection...</source> <translation>Verificação ortográfica da seleção...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1337" /> + <location filename="../QScintilla/Editor.py" line="1338" /> <source>Remove from dictionary</source> <translation>Retirar do dicionário</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1354" /> + <location filename="../QScintilla/Editor.py" line="1355" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1358" /> + <location filename="../QScintilla/Editor.py" line="1359" /> <source>No Language</source> <translation>Nenhuma Linguagem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1385" /> + <location filename="../QScintilla/Editor.py" line="1386" /> <source>Toggle bookmark</source> <translation>Alternar marcadores</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1387" /> + <location filename="../QScintilla/Editor.py" line="1388" /> <source>Next bookmark</source> <translation>Marcador seguinte</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1390" /> + <location filename="../QScintilla/Editor.py" line="1391" /> <source>Previous bookmark</source> <translation>Marcador anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1393" /> + <location filename="../QScintilla/Editor.py" line="1394" /> <source>Clear all bookmarks</source> <translation>Limpar os marcadores todos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1404" /> + <location filename="../QScintilla/Editor.py" line="1405" /> <source>Toggle breakpoint</source> <translation>Alternar pontos de interrupção</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1407" /> + <location filename="../QScintilla/Editor.py" line="1408" /> <source>Toggle temporary breakpoint</source> <translation>Alternar pontos de interrupção temporais</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1410" /> + <location filename="../QScintilla/Editor.py" line="1411" /> <source>Edit breakpoint...</source> <translation>Editar ponto de interrupção...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5927" /> - <location filename="../QScintilla/Editor.py" line="1413" /> + <location filename="../QScintilla/Editor.py" line="5928" /> + <location filename="../QScintilla/Editor.py" line="1414" /> <source>Enable breakpoint</source> <translation>Habilitar pontos de interrupção</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1416" /> + <location filename="../QScintilla/Editor.py" line="1417" /> <source>Next breakpoint</source> <translation>Ponto de interrupção seguinte</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1419" /> + <location filename="../QScintilla/Editor.py" line="1420" /> <source>Previous breakpoint</source> <translation>Ponto de interrupção anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1422" /> + <location filename="../QScintilla/Editor.py" line="1423" /> <source>Clear all breakpoints</source> <translation>Apagar todos os pontos de interrupção</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1433" /> + <location filename="../QScintilla/Editor.py" line="1434" /> <source>Toggle all folds</source> <translation type="unfinished">Alternar as dobras todas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1438" /> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Toggle all folds (including children)</source> <translation type="unfinished">Alternar as dobras todas (incluindo filhos)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1441" /> + <location filename="../QScintilla/Editor.py" line="1442" /> <source>Toggle current fold</source> <translation type="unfinished">Alternar a dobra atual</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1445" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Expand (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1449" /> + <location filename="../QScintilla/Editor.py" line="1450" /> <source>Collapse (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1454" /> + <location filename="../QScintilla/Editor.py" line="1455" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1465" /> + <location filename="../QScintilla/Editor.py" line="1466" /> <source>Goto syntax error</source> <translation>Ir ao erro de sintaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> + <location filename="../QScintilla/Editor.py" line="1469" /> <source>Show syntax error message</source> <translation>Mostrar a mensagem de erro de sintaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> + <location filename="../QScintilla/Editor.py" line="1472" /> <source>Clear syntax error</source> <translation>Limpar o erro de sintaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1475" /> + <location filename="../QScintilla/Editor.py" line="1476" /> <source>Next warning</source> <translation>Aviso seguinte</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1478" /> + <location filename="../QScintilla/Editor.py" line="1479" /> <source>Previous warning</source> <translation>Aviso anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1481" /> + <location filename="../QScintilla/Editor.py" line="1482" /> <source>Show warning message</source> <translation>Mostrar mensagem de aviso</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1484" /> + <location filename="../QScintilla/Editor.py" line="1485" /> <source>Clear warnings</source> <translation>Limpar avisos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1488" /> + <location filename="../QScintilla/Editor.py" line="1489" /> <source>Next uncovered line</source> <translation>Linha seguinte sem cobrir</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1491" /> + <location filename="../QScintilla/Editor.py" line="1492" /> <source>Previous uncovered line</source> <translation>Linha anterior sem cobrir</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1495" /> + <location filename="../QScintilla/Editor.py" line="1496" /> <source>Next task</source> <translation>Tarefa seguinte</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1498" /> + <location filename="../QScintilla/Editor.py" line="1499" /> <source>Previous task</source> <translation>Tarefa anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1502" /> + <location filename="../QScintilla/Editor.py" line="1503" /> <source>Next change</source> <translation>Alteração seguinte</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1505" /> + <location filename="../QScintilla/Editor.py" line="1506" /> <source>Previous change</source> <translation>Alteração anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1508" /> + <location filename="../QScintilla/Editor.py" line="1509" /> <source>Clear changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1537" /> - <location filename="../QScintilla/Editor.py" line="1528" /> - <source>Export source</source> - <translation>Exportar fonte</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1529" /> - <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> - <translation><p>Não está disponível um exportador para formato <b>{0}</b>. A cancelar...</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1538" /> + <location filename="../QScintilla/Editor.py" line="1529" /> + <source>Export source</source> + <translation>Exportar fonte</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1530" /> + <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> + <translation><p>Não está disponível um exportador para formato <b>{0}</b>. A cancelar...</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1539" /> <source>No export format given. Aborting...</source> <translation>Não foi dado o formato para exportar. A cancelar...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1548" /> + <location filename="../QScintilla/Editor.py" line="1549" /> <source>Alternatives ({0})</source> <translation>Alternativas ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1571" /> - <source>Pygments Lexer</source> - <translation>Analizador Léxico Pygments</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1572" /> + <source>Pygments Lexer</source> + <translation>Analizador Léxico Pygments</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1573" /> <source>Select the Pygments lexer to apply.</source> <translation>Selecionar o analizador léxico Pygments a aplicar.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2120" /> - <source>Modification of Read Only file</source> - <translation>Modificação do ficheiro de Apenas Leitura</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2121" /> + <source>Modification of Read Only file</source> + <translation>Modificação do ficheiro de Apenas Leitura</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2122" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Tenta alterar um ficheiro de Apenas Leitura. Por favor guarde-o primeiro num ficheiro diferente. </translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2556" /> - <source>Add Breakpoint</source> - <translation type="unfinished">Adicionar Ponto de Interrupção</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2557" /> + <source>Add Breakpoint</source> + <translation type="unfinished">Adicionar Ponto de Interrupção</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2558" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2890" /> + <location filename="../QScintilla/Editor.py" line="2891" /> <source>Printing...</source> <translation>A imprimir...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2907" /> + <location filename="../QScintilla/Editor.py" line="2908" /> <source>Printing completed</source> <translation>Impressão completa</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2909" /> + <location filename="../QScintilla/Editor.py" line="2910" /> <source>Error while printing</source> <translation>Erro durante a impressão</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2912" /> + <location filename="../QScintilla/Editor.py" line="2913" /> <source>Printing aborted</source> <translation>Impressão cancelada</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3274" /> - <source>File Modified</source> - <translation>Ficheiro Modificado</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3275" /> + <source>File Modified</source> + <translation>Ficheiro Modificado</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3276" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>O ficheiro <b>{0}</b> tem alterações por gravar.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="3334" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Não se pôde abrir o ficheiro <b>{0}</b>.</p><p> Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3509" /> - <location filename="../QScintilla/Editor.py" line="3490" /> - <location filename="../QScintilla/Editor.py" line="3452" /> - <source>Save File</source> - <translation>Gravar Ficheiro</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="3453" /> - <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> - <translation><p>O ficheiro <b>{0}</b> não se pôde gravar. <br/>Motivo: {1}</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3510" /> + <location filename="../QScintilla/Editor.py" line="3491" /> + <location filename="../QScintilla/Editor.py" line="3453" /> + <source>Save File</source> + <translation>Gravar Ficheiro</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3454" /> + <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> + <translation><p>O ficheiro <b>{0}</b> não se pôde gravar. <br/>Motivo: {1}</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3511" /> <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="../QScintilla/Editor.py" line="3644" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3645" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3646" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5101" /> - <source>Autocompletion</source> - <translation>Autocompletar</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5102" /> + <source>Autocompletion</source> + <translation>Autocompletar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5103" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Autocompletar não está disponivel porque a fonte de autocompletar não está definida.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5230" /> - <source>Auto-Completion Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5231" /> + <source>Auto-Completion Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5232" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523" /> - <source>Call-Tips Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5524" /> + <source>Call-Tips Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5525" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5931" /> + <location filename="../QScintilla/Editor.py" line="5932" /> <source>Disable breakpoint</source> <translation>Inabilitar ponto de interrupção</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6310" /> + <location filename="../QScintilla/Editor.py" line="6315" /> <source>Code Coverage</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6311" /> + <location filename="../QScintilla/Editor.py" line="6316" /> <source>Please select a coverage file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6386" /> - <location filename="../QScintilla/Editor.py" line="6378" /> + <location filename="../QScintilla/Editor.py" line="6391" /> + <location filename="../QScintilla/Editor.py" line="6383" /> <source>Show Code Coverage Annotations</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6379" /> + <location filename="../QScintilla/Editor.py" line="6384" /> <source>All lines have been covered.</source> <translation>Foram cobertas as linhas todas.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387" /> + <location filename="../QScintilla/Editor.py" line="6392" /> <source>There is no coverage file available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6491" /> + <location filename="../QScintilla/Editor.py" line="6496" /> <source>Profile Data</source> <translation>Dados de Perfil</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6492" /> + <location filename="../QScintilla/Editor.py" line="6497" /> <source>Please select a profile file</source> <translation>Escolha um ficheiro de perfil por favor</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6653" /> - <location filename="../QScintilla/Editor.py" line="6647" /> + <location filename="../QScintilla/Editor.py" line="6658" /> + <location filename="../QScintilla/Editor.py" line="6652" /> <source>Syntax Error</source> <translation>Erro de Sintaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6654" /> + <location filename="../QScintilla/Editor.py" line="6659" /> <source>No syntax error message available.</source> <translation>Não está disponível a mensagem de erro de sintaxe.</translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="6873" /> <location filename="../QScintilla/Editor.py" line="6867" /> - <location filename="../QScintilla/Editor.py" line="6861" /> <source>Warning</source> <translation>Aviso</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6867" /> + <location filename="../QScintilla/Editor.py" line="6873" /> <source>No warning messages available.</source> <translation>Não estão disponíveis mensagens de aviso.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6937" /> <source>Style: {0}</source> <translation>Estilo: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6934" /> + <location filename="../QScintilla/Editor.py" line="6942" /> <source>Warning: {0}</source> <translation>Aviso: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6941" /> + <location filename="../QScintilla/Editor.py" line="6949" /> <source>Error: {0}</source> <translation>Erro: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Macro Name</source> <translation>Nome de Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Select a macro name:</source> <translation>Selecionar um nome de macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7074" /> + <location filename="../QScintilla/Editor.py" line="7082" /> <source>Load macro file</source> <translation>Carregar ficheiro macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7120" /> - <location filename="../QScintilla/Editor.py" line="7076" /> + <location filename="../QScintilla/Editor.py" line="7128" /> + <location filename="../QScintilla/Editor.py" line="7084" /> <source>Macro files (*.macro)</source> <translation>Ficheiros Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7098" /> - <location filename="../QScintilla/Editor.py" line="7088" /> + <location filename="../QScintilla/Editor.py" line="7106" /> + <location filename="../QScintilla/Editor.py" line="7096" /> <source>Error loading macro</source> <translation>Erro ao carregar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7089" /> + <location filename="../QScintilla/Editor.py" line="7097" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>O ficheiro macro <b>{0}</b> não se pode ler.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7099" /> + <location filename="../QScintilla/Editor.py" line="7107" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>O ficheiro macro <b>{0}</b> está corrompido.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7118" /> + <location filename="../QScintilla/Editor.py" line="7126" /> <source>Save macro file</source> <translation>Gravar ficheiro macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7136" /> + <location filename="../QScintilla/Editor.py" line="7144" /> <source>Save macro</source> <translation>Gravar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7137" /> + <location filename="../QScintilla/Editor.py" line="7145" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>O ficheiro macro <b>{0}</b> já existe. Sobreescrever-lo?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7152" /> + <location filename="../QScintilla/Editor.py" line="7160" /> <source>Error saving macro</source> <translation>Erro ao gravar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7161" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>O ficheiro macro <b>{0}</b> não pode ser escrito.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7166" /> + <location filename="../QScintilla/Editor.py" line="7174" /> <source>Start Macro Recording</source> <translation>Iniciar Registo de Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7167" /> + <location filename="../QScintilla/Editor.py" line="7175" /> <source>Macro recording is already active. Start new?</source> <translation>A gravação de macro já está ativada. Começar nova?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7193" /> + <location filename="../QScintilla/Editor.py" line="7201" /> <source>Macro Recording</source> <translation>Gravação de Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7194" /> + <location filename="../QScintilla/Editor.py" line="7202" /> <source>Enter name of the macro:</source> <translation>Introduza o nome de macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7344" /> + <location filename="../QScintilla/Editor.py" line="7352" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7350" /> + <location filename="../QScintilla/Editor.py" line="7358" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Aviso:</b> Perderá todas as alterações uma vez que o volte a abrir.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7357" /> + <location filename="../QScintilla/Editor.py" line="7365" /> <source>File changed</source> <translation>Ficheiro alterado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7407" /> + <location filename="../QScintilla/Editor.py" line="7415" /> <source>{0} (ro)</source> <translation /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7712" /> + <location filename="../QScintilla/Editor.py" line="7720" /> <source>Drop Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7713" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> não é um ficheiro.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7733" /> + <location filename="../QScintilla/Editor.py" line="7741" /> <source>Resources</source> <translation>Recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7735" /> + <location filename="../QScintilla/Editor.py" line="7743" /> <source>Add file...</source> <translation>Adicionar Ficheiro...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7736" /> + <location filename="../QScintilla/Editor.py" line="7744" /> <source>Add files...</source> <translation>Adicionar Ficheiros...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7737" /> + <location filename="../QScintilla/Editor.py" line="7745" /> <source>Add aliased file...</source> <translation>Adicionar ficheiro com pseudónimo...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7739" /> + <location filename="../QScintilla/Editor.py" line="7747" /> <source>Add localized resource...</source> <translation>Adicionar recursos localizado...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7742" /> + <location filename="../QScintilla/Editor.py" line="7750" /> <source>Add resource frame</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7761" /> + <location filename="../QScintilla/Editor.py" line="7769" /> <source>Add file resource</source> <translation>Adicionar recurso de ficheiro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7775" /> + <location filename="../QScintilla/Editor.py" line="7783" /> <source>Add file resources</source> <translation>Adicionar recursos de ficheiro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7799" /> - <location filename="../QScintilla/Editor.py" line="7793" /> + <location filename="../QScintilla/Editor.py" line="7807" /> + <location filename="../QScintilla/Editor.py" line="7801" /> <source>Add aliased file resource</source> <translation>Adicionar recurso de ficheiro com pseudónimo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7800" /> + <location filename="../QScintilla/Editor.py" line="7808" /> <source>Alias for file <b>{0}</b>:</source> <translation>Pseudónimo para o ficheiro <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7875" /> + <location filename="../QScintilla/Editor.py" line="7883" /> <source>Package Diagram</source> <translation>Diagrama do Pacote</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7876" /> + <location filename="../QScintilla/Editor.py" line="7884" /> <source>Include class attributes?</source> <translation>Incluir atributos de classes?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7896" /> + <location filename="../QScintilla/Editor.py" line="7904" /> <source>Imports Diagram</source> <translation>Diagrama de Imports</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7897" /> + <location filename="../QScintilla/Editor.py" line="7905" /> <source>Include imports from external modules?</source> <translation>Incluir imports de módulos externos?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7916" /> + <location filename="../QScintilla/Editor.py" line="7924" /> <source>Application Diagram</source> <translation>Diagrama da Aplicação</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7917" /> + <location filename="../QScintilla/Editor.py" line="7925" /> <source>Include module names?</source> <translation>Incluir nome dos módulos?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8272" /> + <location filename="../QScintilla/Editor.py" line="8280" /> <source>Add to dictionary</source> <translation>Adicionar dicionário</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8274" /> + <location filename="../QScintilla/Editor.py" line="8282" /> <source>Ignore All</source> <translation>Ignorar Tudo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8692" /> + <location filename="../QScintilla/Editor.py" line="8700" /> <source>Sort Lines</source> <translation>Ordenar Linhas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8693" /> + <location filename="../QScintilla/Editor.py" line="8701" /> <source>The selection contains illegal data for a numerical sort.</source> <translation>A seleção contém dados ilegais para uma ordenação numérica.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8786" /> + <location filename="../QScintilla/Editor.py" line="8794" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8787" /> + <location filename="../QScintilla/Editor.py" line="8795" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8883" /> + <location filename="../QScintilla/Editor.py" line="8891" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8889" /> + <location filename="../QScintilla/Editor.py" line="8897" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="8965" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8958" /> + <location filename="../QScintilla/Editor.py" line="8966" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -19938,38 +19938,38 @@ <context> <name>EricTextEditSearchWidget</name> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="115" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="116" /> <source>Find:</source> <translation type="unfinished">Encontrar:</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="141" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="142" /> <source>Match case</source> <translation type="unfinished">Coincidir maiúsculas/minúsculas</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="146" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="147" /> <source>Whole word</source> <translation type="unfinished">Palavra completa</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="156" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="157" /> <source>Press to find the previous occurrence</source> <translation type="unfinished">Pressionar para encontrar a ocurrência anterior</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="162" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="163" /> <source>Press to find the next occurrence</source> <translation type="unfinished">Pressionar para encontrar a ocurrência seguinte</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="481" /> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="433" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="482" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="434" /> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' não foi encontrado.</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="486" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="487" /> <source>Match {0} of {1}</source> <translation type="unfinished" /> </message> @@ -33218,29 +33218,29 @@ <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="119" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="118" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="121" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="120" /> <source>Find Next</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="131" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="130" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="133" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="132" /> <source>Find Prev</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="297" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="299" /> <source>'{0}' was not found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="417" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="419" /> <source>Replaced {0} occurrences.</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="423" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="425" /> <source>Nothing replaced because '{0}' was not found.</source> <translation type="unfinished" /> </message> @@ -70969,74 +70969,74 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="155" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="154" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="157" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="156" /> <source>Find Next</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="168" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="167" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="170" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="169" /> <source>Find Prev</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="181" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="180" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="183" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="182" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="195" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="194" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="197" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="196" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="209" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="208" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="211" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="210" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="297" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="299" /> <source>Press to find the next occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="304" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="306" /> <source>Press to find the previous occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="311" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="313" /> <source>Press to replace the selection and search for the next occurence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="321" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="323" /> <source>Press to replace the selection ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="328" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="330" /> <source>Press to replace all occurrences ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1114" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="665" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="627" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1123" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="674" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="636" /> <source>'{0}' was not found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1267" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1276" /> <source>Replaced {0} occurrences.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1273" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1282" /> <source>Nothing replaced because '{0}' was not found.</source> <translation type="unfinished" /> </message> @@ -71155,7 +71155,7 @@ <translation type="unfinished">Coincidir maiúsculas/minúsculas</translation> </message> <message> - <location filename="../WebBrowser/SearchWidget.py" line="100" /> + <location filename="../WebBrowser/SearchWidget.py" line="101" /> <source>Expression was not found.</source> <translation type="unfinished" /> </message> @@ -71170,7 +71170,7 @@ <translation type="unfinished">Regexp</translation> </message> <message> - <location filename="../UI/SearchWidget.py" line="212" /> + <location filename="../UI/SearchWidget.py" line="213" /> <source>'{0}' was not found.</source> <translation type="unfinished" /> </message> @@ -72451,142 +72451,157 @@ <context> <name>Shell</name> <message> - <location filename="../QScintilla/Shell.py" line="162" /> + <location filename="../QScintilla/Shell.py" line="164" /> <source>Shell - Passive</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="164" /> + <location filename="../QScintilla/Shell.py" line="166" /> <source>Shell</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="168" /> - <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. '%quit' or '%exit' is used to exit the application. These commands (except '%environments', '%envs' and '%which') are available through the window menus as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="198" /> - <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. These commands (except '%environments' and '%envs') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="262" /> + <location filename="../QScintilla/Shell.py" line="170" /> + <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="189" /> + <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="244" /> <source>Passive >>> </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="305" /> + <location filename="../QScintilla/Shell.py" line="287" /> <source>Start</source> <translation>Iniciar</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="310" /> + <location filename="../QScintilla/Shell.py" line="292" /> <source>History</source> <translation>Historial</translation> </message> <message> + <location filename="../QScintilla/Shell.py" line="293" /> + <source>Select entry</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="294" /> + <source>Show</source> + <translation>Mostrar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="306" /> + <location filename="../QScintilla/Shell.py" line="295" /> + <source>Clear</source> + <translation>Limpar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="299" /> + <source>Cut</source> + <translation>Cortar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="300" /> + <source>Copy</source> + <translation>Copiar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="301" /> + <source>Paste</source> + <translation>Colar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="304" /> + <source>Find</source> + <translation>Encontrar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="307" /> + <source>Restart</source> + <translation type="unfinished">Reiniciar</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="308" /> + <source>Restart and Clear</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="311" /> - <source>Select entry</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="312" /> - <source>Show</source> - <translation>Mostrar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="325" /> + <source>Active Name</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="313" /> - <source>Clear</source> - <translation>Limpar</translation> + <source>Save Contents...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="315" /> + <source>Configure...</source> + <translation>Configurar...</translation> </message> <message> <location filename="../QScintilla/Shell.py" line="317" /> - <source>Cut</source> - <translation>Cortar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="318" /> - <source>Copy</source> - <translation>Copiar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="319" /> - <source>Paste</source> - <translation>Colar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="323" /> - <source>Find</source> - <translation>Encontrar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="326" /> - <source>Restart</source> - <translation type="unfinished">Reiniciar</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="327" /> - <source>Restart and Clear</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="330" /> - <source>Active Name</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="332" /> - <source>Save Contents...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="334" /> - <source>Configure...</source> - <translation>Configurar...</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="2067" /> - <location filename="../QScintilla/Shell.py" line="1846" /> - <location filename="../QScintilla/Shell.py" line="1845" /> - <location filename="../QScintilla/Shell.py" line="408" /> + <source>Special Commands Help</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2087" /> + <location filename="../QScintilla/Shell.py" line="1849" /> + <location filename="../QScintilla/Shell.py" line="1848" /> + <location filename="../QScintilla/Shell.py" line="391" /> <source>Project</source> <translation type="unfinished">Projeto</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="806" /> + <location filename="../QScintilla/Shell.py" line="780" /> + <source>Clear History</source> + <translation type="unfinished">Limpar Histórico</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="781" /> + <source>Shall the current history really be cleared?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="803" /> <source>Select History</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="807" /> + <location filename="../QScintilla/Shell.py" line="804" /> <source>Select the history entry to execute (most recent shown last).</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="872" /> + <location filename="../QScintilla/Shell.py" line="878" /> <source>Passive Debug Mode</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="873" /> + <location filename="../QScintilla/Shell.py" line="879" /> <source> Not connected</source> <translation>Desconetado</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="876" /> + <location filename="../QScintilla/Shell.py" line="882" /> <source>No.</source> <translation>Nº</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="878" /> + <location filename="../QScintilla/Shell.py" line="884" /> <source>{0} on {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="925" /> + <location filename="../QScintilla/Shell.py" line="931" /> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -72594,91 +72609,128 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="934" /> + <location filename="../QScintilla/Shell.py" line="940" /> <source>Exception "{0}" {1} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="954" /> + <location filename="../QScintilla/Shell.py" line="960" /> <source>Unspecified syntax error. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="957" /> + <location filename="../QScintilla/Shell.py" line="963" /> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="981" /> + <location filename="../QScintilla/Shell.py" line="987" /> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1063" /> + <location filename="../QScintilla/Shell.py" line="1069" /> <source>StdOut: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1071" /> + <location filename="../QScintilla/Shell.py" line="1077" /> <source>StdErr: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1097" /> + <location filename="../QScintilla/Shell.py" line="1103" /> <source><{0}> {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1892" /> + <location filename="../QScintilla/Shell.py" line="1886" /> <source>Available Virtual Environments: {0} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1935" /> - <location filename="../QScintilla/Shell.py" line="1899" /> + <location filename="../QScintilla/Shell.py" line="1955" /> + <location filename="../QScintilla/Shell.py" line="1892" /> <source>Current Virtual Environment: '{0}' </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2207" /> + <location filename="../QScintilla/Shell.py" line="1910" /> + <source>Error: Argument must be an integer value. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1927" /> + <source>Error: Command '{0}' is not supported. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2227" /> <source>Drop Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2208" /> + <location filename="../QScintilla/Shell.py" line="2228" /> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"><p><b>{0}</b> não é um ficheiro.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2451" /> - <location filename="../QScintilla/Shell.py" line="2437" /> - <location filename="../QScintilla/Shell.py" line="2416" /> + <location filename="../QScintilla/Shell.py" line="2471" /> + <location filename="../QScintilla/Shell.py" line="2457" /> + <location filename="../QScintilla/Shell.py" line="2436" /> <source>Save Shell Contents</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2418" /> - <source>Text Files (*.txt);;All Files (*)</source> - <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation> - </message> - <message> <location filename="../QScintilla/Shell.py" line="2438" /> + <source>Text Files (*.txt);;All Files (*)</source> + <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2458" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>O ficheiro <b>{0}</b> já existe. Sobreescrever?</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2452" /> + <location filename="../QScintilla/Shell.py" line="2472" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished"><p>O ficheiro <b>{0}</b> não se pôde gravar. <br/>Motivo: {1}</p></translation> </message> + <message> + <location filename="../QScintilla/Shell.py" line="2486" /> + <source><tr><td>%restart</td><td>Kill the shell and start a new one.</td></tr><tr><td>%clear</td><td>Clear the display of the shell window.</td></tr><tr><td>%start [environment]</td><td>Start a shell for a virtual environment with the given name. If no name if given, a default shell is started.</td></tr><tr><td>%envs<br/>%environments</td><td>Show a list of known virtual environment names.</td></tr><tr><td>%which</td><td>Show the name of the active virtual environment.</td></tr><tr><td>%hist [n]<br/>%history [n]</td><td>Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.</td></tr><tr><td>%shist<br/>%shistory<br/>%select_history</td><td>Select a command from the history.</td></tr><tr><td>%chist<br/>%chistory<br/>%clear_history</td><td>Clear the current history after confirmation.</td></tr><tr><td>%help</td><td>Show this help text.</td></tr></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2508" /> + <source><tr><td>%quit<br/>%quit()<br/>%exit<br/>%exit()</td><td>Exit the application.</td></tr></table><p>These commands are available through the window menus as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2516" /> + <source></table><p>These commands are available through the context menu as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2523" /> + <source>Shell Special Commands</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2524" /> + <source>The shell supports these special commands:</source> + <translation type="unfinished" /> + </message> </context> <context> <name>ShellHistoryDialog</name>
--- a/src/eric7/i18n/eric7_ru.ts Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/i18n/eric7_ru.ts Sun Sep 03 17:35:15 2023 +0200 @@ -12361,984 +12361,984 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3332" /> - <location filename="../QScintilla/Editor.py" line="428" /> - <location filename="../QScintilla/Editor.py" line="413" /> + <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="414" /> <source>Open File</source> <translation>Открыть файл</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="414" /> + <location filename="../QScintilla/Editor.py" line="415" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> <translation><p>Размер файла <b>{0}</b> составляет <b>{1} КБ</b> и превышает заданный предел <b>{2} КБ</b>. Он не будет открыт!</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="430" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>Файл <b>{0}</b> занимает <b>{1} KB</b>. Вы действительно хотите его загрузить?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="526" /> + <location filename="../QScintilla/Editor.py" line="527" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Окно редактора</b><p>Это окно используется для просмотра и редактирования исходных текстов приложений. Вы можете открыть несколько окон одновременно. Имя редактируемого файла отображается в заголовке окна.</p><p>Чтобы установить точку останова - кликните в пространство между номером строки и панелью свёртки на нужной строке. Появившийся маркер точки останова можно настроить через контекстное меню.</p><p>Чтобы установить закладку кликните в пространство между номером строки и панелью свёртки на нужной строке при нажатой клавише Shift.</p><p>Эти действия можно отменить через контекстное меню.</p><p>Если при нажатой клавише Ctrl кликнуть на маркер синтаксической ошибки, то будет показана дополнительная информация об ошибке.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="890" /> + <location filename="../QScintilla/Editor.py" line="891" /> <source>Undo</source> <translation>Отменить</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="893" /> + <location filename="../QScintilla/Editor.py" line="894" /> <source>Redo</source> <translation>Повторить</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="896" /> + <location filename="../QScintilla/Editor.py" line="897" /> <source>Revert to last saved state</source> <translation>Вернуть к последнему записанному состоянию</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="900" /> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Cut</source> <translation>Вырезать</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="903" /> + <location filename="../QScintilla/Editor.py" line="904" /> <source>Copy</source> <translation>Копировать</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="906" /> + <location filename="../QScintilla/Editor.py" line="907" /> <source>Paste</source> <translation>Вставить</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="913" /> <source>Indent</source> <translation>Увеличить отступ</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="917" /> + <location filename="../QScintilla/Editor.py" line="918" /> <source>Unindent</source> <translation>Уменьшить отступ</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="922" /> + <location filename="../QScintilla/Editor.py" line="923" /> <source>Comment</source> <translation>Закомментировать</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="927" /> + <location filename="../QScintilla/Editor.py" line="928" /> <source>Uncomment</source> <translation>Раскомментировать</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="9150" /> - <location filename="../QScintilla/Editor.py" line="932" /> + <location filename="../QScintilla/Editor.py" line="9158" /> + <location filename="../QScintilla/Editor.py" line="933" /> <source>Generate Docstring</source> <translation>Генерировать строки документации</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="935" /> - <source>Select to brace</source> - <translation>Выбрать до скобки</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="936" /> - <source>Select all</source> - <translation>Выделить всё</translation> + <source>Select to brace</source> + <translation>Выбрать до скобки</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="937" /> + <source>Select all</source> + <translation>Выделить всё</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="938" /> <source>Deselect all</source> <translation>Снять выделение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939" /> + <location filename="../QScintilla/Editor.py" line="940" /> <source>Execute Selection In Console</source> <translation>Выполнить выбор в консоли</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="951" /> + <location filename="../QScintilla/Editor.py" line="952" /> <source>Use Monospaced Font</source> <translation>Использовать моноширинный шрифт</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="957" /> <source>Autosave enabled</source> <translation>Автосохранение разрешено</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="962" /> <source>Typing aids enabled</source> <translation>Разрешить помощь при наборе</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="969" /> + <location filename="../QScintilla/Editor.py" line="970" /> <source>Automatic Completion enabled</source> <translation>Автоматическое дополнение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="978" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Calltip</source> <translation>Подсказка</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="981" /> + <location filename="../QScintilla/Editor.py" line="982" /> <source>Code Info</source> <translation>Инфо для кода</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="996" /> + <location filename="../QScintilla/Editor.py" line="997" /> <source>New Document View</source> <translation>Новое окно для документа</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1001" /> + <location filename="../QScintilla/Editor.py" line="1002" /> <source>New Document View (with new split)</source> <translation>Новое окно для документа (в новом разделе)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Save</source> <translation>Сохранить</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1013" /> + <location filename="../QScintilla/Editor.py" line="1014" /> <source>Save As...</source> <translation>Сохранить как...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1018" /> + <location filename="../QScintilla/Editor.py" line="1019" /> <source>Save Copy...</source> <translation>Сохранить копию...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1040" /> - <location filename="../QScintilla/Editor.py" line="1037" /> + <location filename="../QScintilla/Editor.py" line="1041" /> + <location filename="../QScintilla/Editor.py" line="1038" /> <source>Complete</source> <translation>Дополнить</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1044" /> + <location filename="../QScintilla/Editor.py" line="1045" /> <source>Clear Completions Cache</source> <translation>Очистить кэш дополнений</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1047" /> + <location filename="../QScintilla/Editor.py" line="1048" /> <source>Complete from Document</source> <translation>Дополнение из документа</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1049" /> + <location filename="../QScintilla/Editor.py" line="1050" /> <source>Complete from APIs</source> <translation>Дополнение из API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052" /> + <location filename="../QScintilla/Editor.py" line="1053" /> <source>Complete from Document and APIs</source> <translation>Дополнение из документа и API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1066" /> + <location filename="../QScintilla/Editor.py" line="1067" /> <source>Check</source> <translation>Проверить</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1077" /> + <location filename="../QScintilla/Editor.py" line="1078" /> <source>Code Formatting</source> <translation>Форматировать код</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1083" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Black</source> <translation>Black</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> + <location filename="../QScintilla/Editor.py" line="1089" /> <source>Format Code</source> <translation>Форматировать код</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1092" /> + <location filename="../QScintilla/Editor.py" line="1093" /> <source>Check Formatting</source> <translation>Проверить форматирование</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1096" /> + <location filename="../QScintilla/Editor.py" line="1097" /> <source>Formatting Diff</source> <translation>Различия форматирования</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1105" /> + <location filename="../QScintilla/Editor.py" line="1106" /> <source>isort</source> <translation>isort</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1110" /> + <location filename="../QScintilla/Editor.py" line="1111" /> <source>Sort Imports</source> <translation>Сортировать импорт</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1114" /> + <location filename="../QScintilla/Editor.py" line="1115" /> <source>Imports Sorting Diff</source> <translation>Различия сортировки импорта</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1130" /> + <location filename="../QScintilla/Editor.py" line="1131" /> <source>Tools</source> <translation>Инструменты</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1141" /> + <location filename="../QScintilla/Editor.py" line="1142" /> <source>Show</source> <translation>Показать</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1143" /> + <location filename="../QScintilla/Editor.py" line="1144" /> <source>Code metrics...</source> <translation>Метрики кода...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1145" /> + <location filename="../QScintilla/Editor.py" line="1146" /> <source>Code coverage...</source> <translation>Покрытие кода...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1148" /> + <location filename="../QScintilla/Editor.py" line="1149" /> <source>Show code coverage annotations</source> <translation>Показать аннотации по покрытию кода</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1151" /> + <location filename="../QScintilla/Editor.py" line="1152" /> <source>Hide code coverage annotations</source> <translation>Не показывать аннотации по покрытию кода</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1155" /> + <location filename="../QScintilla/Editor.py" line="1156" /> <source>Profile data...</source> <translation>Данные профайлера...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1169" /> + <location filename="../QScintilla/Editor.py" line="1170" /> <source>Diagrams</source> <translation>Диаграммы</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1171" /> - <source>Class Diagram...</source> - <translation>Диаграмма классов...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1172" /> - <source>Package Diagram...</source> - <translation>Диаграмма пакетов...</translation> + <source>Class Diagram...</source> + <translation>Диаграмма классов...</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1173" /> + <source>Package Diagram...</source> + <translation>Диаграмма пакетов...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1174" /> <source>Imports Diagram...</source> <translation>Диаграмма импортирования...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1175" /> + <location filename="../QScintilla/Editor.py" line="1176" /> <source>Application Diagram...</source> <translation>Диаграмма приложения...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1180" /> + <location filename="../QScintilla/Editor.py" line="1181" /> <source>Load Diagram...</source> <translation>Загрузить диаграмму...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1195" /> + <location filename="../QScintilla/Editor.py" line="1196" /> <source>Languages</source> <translation>Языки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1199" /> + <location filename="../QScintilla/Editor.py" line="1200" /> <source>Text</source> <translation>Текст</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1222" /> + <location filename="../QScintilla/Editor.py" line="1223" /> <source>Guessed</source> <translation>Предполагаемый язык</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1551" /> - <location filename="../QScintilla/Editor.py" line="1226" /> + <location filename="../QScintilla/Editor.py" line="1552" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>Alternatives</source> <translation>Альтернативная подсветка</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1243" /> + <location filename="../QScintilla/Editor.py" line="1244" /> <source>Encodings</source> <translation>Кодировки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1266" /> + <location filename="../QScintilla/Editor.py" line="1267" /> <source>Re-Open With Encoding</source> <translation>Открыть заново с кодировкой</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1286" /> + <location filename="../QScintilla/Editor.py" line="1287" /> <source>End-of-Line Type</source> <translation>Тип конца строки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1290" /> + <location filename="../QScintilla/Editor.py" line="1291" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1296" /> + <location filename="../QScintilla/Editor.py" line="1297" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1302" /> + <location filename="../QScintilla/Editor.py" line="1303" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1320" /> + <location filename="../QScintilla/Editor.py" line="1321" /> <source>Spelling</source> <translation>Проверка орфографии</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8268" /> - <location filename="../QScintilla/Editor.py" line="1328" /> + <location filename="../QScintilla/Editor.py" line="8276" /> + <location filename="../QScintilla/Editor.py" line="1329" /> <source>Check spelling...</source> <translation>Проверка орфографии...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1333" /> + <location filename="../QScintilla/Editor.py" line="1334" /> <source>Check spelling of selection...</source> <translation>Проверка орфографии выделенного участка...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1337" /> + <location filename="../QScintilla/Editor.py" line="1338" /> <source>Remove from dictionary</source> <translation>Удалить из словаря</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1354" /> + <location filename="../QScintilla/Editor.py" line="1355" /> <source>Spell Check Languages</source> <translation>Языки проверки правописания</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1358" /> + <location filename="../QScintilla/Editor.py" line="1359" /> <source>No Language</source> <translation>Нет языка</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1385" /> + <location filename="../QScintilla/Editor.py" line="1386" /> <source>Toggle bookmark</source> <translation>Создать/Удалить закладку</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1387" /> + <location filename="../QScintilla/Editor.py" line="1388" /> <source>Next bookmark</source> <translation>Следующая закладка</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1390" /> + <location filename="../QScintilla/Editor.py" line="1391" /> <source>Previous bookmark</source> <translation>Предыдущая закладка</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1393" /> + <location filename="../QScintilla/Editor.py" line="1394" /> <source>Clear all bookmarks</source> <translation>Очистить все закладки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1404" /> + <location filename="../QScintilla/Editor.py" line="1405" /> <source>Toggle breakpoint</source> <translation>Поставить/убрать точку останова</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1407" /> + <location filename="../QScintilla/Editor.py" line="1408" /> <source>Toggle temporary breakpoint</source> <translation>Поставить/убрать временную точку останова</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1410" /> + <location filename="../QScintilla/Editor.py" line="1411" /> <source>Edit breakpoint...</source> <translation>Редактировать точку останова...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5927" /> - <location filename="../QScintilla/Editor.py" line="1413" /> + <location filename="../QScintilla/Editor.py" line="5928" /> + <location filename="../QScintilla/Editor.py" line="1414" /> <source>Enable breakpoint</source> <translation>Установить точку останова</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1416" /> + <location filename="../QScintilla/Editor.py" line="1417" /> <source>Next breakpoint</source> <translation>Следующая точка останова</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1419" /> + <location filename="../QScintilla/Editor.py" line="1420" /> <source>Previous breakpoint</source> <translation>Предыдущая точка останова</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1422" /> + <location filename="../QScintilla/Editor.py" line="1423" /> <source>Clear all breakpoints</source> <translation>Убрать все точки останова</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1433" /> + <location filename="../QScintilla/Editor.py" line="1434" /> <source>Toggle all folds</source> <translation>Свернуть/Развернуть все свертки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1438" /> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Toggle all folds (including children)</source> <translation>Свернуть/Развернуть все свёртки (включая дочерние)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1441" /> + <location filename="../QScintilla/Editor.py" line="1442" /> <source>Toggle current fold</source> <translation>Свернуть/Развернуть текущую свертку</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1445" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Expand (including children)</source> <translation>Развернуть (включая дочерние)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1449" /> + <location filename="../QScintilla/Editor.py" line="1450" /> <source>Collapse (including children)</source> <translation>Свернуть (включая дочерние)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1454" /> + <location filename="../QScintilla/Editor.py" line="1455" /> <source>Clear all folds</source> <translation>Очистить все свертки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1465" /> + <location filename="../QScintilla/Editor.py" line="1466" /> <source>Goto syntax error</source> <translation>Перейти к синтаксической ошибке</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> + <location filename="../QScintilla/Editor.py" line="1469" /> <source>Show syntax error message</source> <translation>Показать сообщение о синтаксической ошибке</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> + <location filename="../QScintilla/Editor.py" line="1472" /> <source>Clear syntax error</source> <translation>Очистить синтаксическую ошибку</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1475" /> + <location filename="../QScintilla/Editor.py" line="1476" /> <source>Next warning</source> <translation>Следующее предупреждение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1478" /> + <location filename="../QScintilla/Editor.py" line="1479" /> <source>Previous warning</source> <translation>Предыдущее предупреждение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1481" /> + <location filename="../QScintilla/Editor.py" line="1482" /> <source>Show warning message</source> <translation>Показать предупреждение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1484" /> + <location filename="../QScintilla/Editor.py" line="1485" /> <source>Clear warnings</source> <translation>Очистить предупреждения</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1488" /> + <location filename="../QScintilla/Editor.py" line="1489" /> <source>Next uncovered line</source> <translation>Следующая неохваченная строка</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1491" /> + <location filename="../QScintilla/Editor.py" line="1492" /> <source>Previous uncovered line</source> <translation>Предыдущая неохваченная строка</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1495" /> + <location filename="../QScintilla/Editor.py" line="1496" /> <source>Next task</source> <translation>Следующая задача</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1498" /> + <location filename="../QScintilla/Editor.py" line="1499" /> <source>Previous task</source> <translation>Предыдущая задача</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1502" /> + <location filename="../QScintilla/Editor.py" line="1503" /> <source>Next change</source> <translation>Следующее изменение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1505" /> + <location filename="../QScintilla/Editor.py" line="1506" /> <source>Previous change</source> <translation>Предыдущее изменение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1508" /> + <location filename="../QScintilla/Editor.py" line="1509" /> <source>Clear changes</source> <translation>Очистить изменения</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1537" /> - <location filename="../QScintilla/Editor.py" line="1528" /> - <source>Export source</source> - <translation>Экспортировать исходник</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1529" /> - <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> - <translation><p>Не найден экспортёр для формата <b>{0}</b>. Отмена...</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1538" /> + <location filename="../QScintilla/Editor.py" line="1529" /> + <source>Export source</source> + <translation>Экспортировать исходник</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1530" /> + <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> + <translation><p>Не найден экспортёр для формата <b>{0}</b>. Отмена...</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1539" /> <source>No export format given. Aborting...</source> <translation>Не задан формат экспорта. Прерывание...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1548" /> + <location filename="../QScintilla/Editor.py" line="1549" /> <source>Alternatives ({0})</source> <translation>Альтернативы ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1571" /> - <source>Pygments Lexer</source> - <translation>Лексер Pygments</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1572" /> + <source>Pygments Lexer</source> + <translation>Лексер Pygments</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1573" /> <source>Select the Pygments lexer to apply.</source> <translation>Выберите для использования лексер Pygments.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2120" /> - <source>Modification of Read Only file</source> - <translation>Редактирование файла, открытого только на чтение</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2121" /> + <source>Modification of Read Only file</source> + <translation>Редактирование файла, открытого только на чтение</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2122" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Попытка редактирования файла, открытого только на чтение. Пожалуйста, сначала сохраните изменения в другой файл.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2556" /> - <source>Add Breakpoint</source> - <translation>Добавить точку останова</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2557" /> + <source>Add Breakpoint</source> + <translation>Добавить точку останова</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2558" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation>Не будет создан байтовый код Python для выбранной строки. Точка останова не будет установлена!</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2890" /> + <location filename="../QScintilla/Editor.py" line="2891" /> <source>Printing...</source> <translation>Печать...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2907" /> + <location filename="../QScintilla/Editor.py" line="2908" /> <source>Printing completed</source> <translation>Печать завершена</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2909" /> + <location filename="../QScintilla/Editor.py" line="2910" /> <source>Error while printing</source> <translation>Ошибка печати</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2912" /> + <location filename="../QScintilla/Editor.py" line="2913" /> <source>Printing aborted</source> <translation>Печать прервана</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3274" /> - <source>File Modified</source> - <translation>Файл изменён</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3275" /> + <source>File Modified</source> + <translation>Файл изменён</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3276" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>В файле <b>{0}</b> есть несохранённые изменения.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="3334" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3509" /> - <location filename="../QScintilla/Editor.py" line="3490" /> - <location filename="../QScintilla/Editor.py" line="3452" /> - <source>Save File</source> - <translation>Сохранить файл</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="3453" /> - <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> - <translation><p>Невозможно сохранить файл <b>{0}</b>:<br>Причина: {1}.</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3510" /> + <location filename="../QScintilla/Editor.py" line="3491" /> + <location filename="../QScintilla/Editor.py" line="3453" /> + <source>Save File</source> + <translation>Сохранить файл</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3454" /> + <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> + <translation><p>Невозможно сохранить файл <b>{0}</b>:<br>Причина: {1}.</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3511" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Файл <b>{0}</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3644" /> - <source>Save File to Device</source> - <translation>Сохранить файл на устройство</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3645" /> + <source>Save File to Device</source> + <translation>Сохранить файл на устройство</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3646" /> <source>Enter the complete device file path:</source> <translation>Введите полный путь к файлу устройства:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5101" /> - <source>Autocompletion</source> - <translation>Автодополнение</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5102" /> + <source>Autocompletion</source> + <translation>Автодополнение</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5103" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Автодополнение недоступно, так как не задан источник автодополнения.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5230" /> - <source>Auto-Completion Provider</source> - <translation>Источник автодополнений</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5231" /> + <source>Auto-Completion Provider</source> + <translation>Источник автодополнений</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5232" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>Список дополнений источника '{0}' уже зарегистрирован. Повторный запрос проигнорирован.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523" /> - <source>Call-Tips Provider</source> - <translation>Источник всплывающих подсказок</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5524" /> + <source>Call-Tips Provider</source> + <translation>Источник всплывающих подсказок</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5525" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>Источник всплывающих подсказок '{0}' уже зарегистрирован. Повторный запрос проигнорирован.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5931" /> + <location filename="../QScintilla/Editor.py" line="5932" /> <source>Disable breakpoint</source> <translation>Убрать точку останова</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6310" /> + <location filename="../QScintilla/Editor.py" line="6315" /> <source>Code Coverage</source> <translation>Покрытие кода</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6311" /> + <location filename="../QScintilla/Editor.py" line="6316" /> <source>Please select a coverage file</source> <translation>Пожалуйста, выберите файл покрытия</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6386" /> - <location filename="../QScintilla/Editor.py" line="6378" /> + <location filename="../QScintilla/Editor.py" line="6391" /> + <location filename="../QScintilla/Editor.py" line="6383" /> <source>Show Code Coverage Annotations</source> <translation>Показать аннотации по покрытию кода</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6379" /> + <location filename="../QScintilla/Editor.py" line="6384" /> <source>All lines have been covered.</source> <translation>Все строки были охвачены.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387" /> + <location filename="../QScintilla/Editor.py" line="6392" /> <source>There is no coverage file available.</source> <translation>Нет доступного файла покрытия.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6491" /> + <location filename="../QScintilla/Editor.py" line="6496" /> <source>Profile Data</source> <translation>Данные профайлера</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6492" /> + <location filename="../QScintilla/Editor.py" line="6497" /> <source>Please select a profile file</source> <translation>Пожалуйста, выберите файл профиля</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6653" /> - <location filename="../QScintilla/Editor.py" line="6647" /> + <location filename="../QScintilla/Editor.py" line="6658" /> + <location filename="../QScintilla/Editor.py" line="6652" /> <source>Syntax Error</source> <translation>Синтаксическая ошибка</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6654" /> + <location filename="../QScintilla/Editor.py" line="6659" /> <source>No syntax error message available.</source> <translation>Нет сообщения о синтаксической ошибке.</translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="6873" /> <location filename="../QScintilla/Editor.py" line="6867" /> - <location filename="../QScintilla/Editor.py" line="6861" /> <source>Warning</source> <translation>Предупреждение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6867" /> + <location filename="../QScintilla/Editor.py" line="6873" /> <source>No warning messages available.</source> <translation>Нет предупреждающего сообщения.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6937" /> <source>Style: {0}</source> <translation>Стиль: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6934" /> + <location filename="../QScintilla/Editor.py" line="6942" /> <source>Warning: {0}</source> <translation>Предупреждение: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6941" /> + <location filename="../QScintilla/Editor.py" line="6949" /> <source>Error: {0}</source> <translation>Ошибка: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Macro Name</source> <translation>Имя макроса</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Select a macro name:</source> <translation>Задайте имя макроса:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7074" /> + <location filename="../QScintilla/Editor.py" line="7082" /> <source>Load macro file</source> <translation>Загрузить макрос</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7120" /> - <location filename="../QScintilla/Editor.py" line="7076" /> + <location filename="../QScintilla/Editor.py" line="7128" /> + <location filename="../QScintilla/Editor.py" line="7084" /> <source>Macro files (*.macro)</source> <translation>Макросы (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7098" /> - <location filename="../QScintilla/Editor.py" line="7088" /> + <location filename="../QScintilla/Editor.py" line="7106" /> + <location filename="../QScintilla/Editor.py" line="7096" /> <source>Error loading macro</source> <translation>Ошибка при загрузке макроса</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7089" /> + <location filename="../QScintilla/Editor.py" line="7097" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл с макросами: <b>{0}</b>.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7099" /> + <location filename="../QScintilla/Editor.py" line="7107" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Файл с макросами <b>{0}</b> повреждён.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7118" /> + <location filename="../QScintilla/Editor.py" line="7126" /> <source>Save macro file</source> <translation>Сохранить файл с макросами</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7136" /> + <location filename="../QScintilla/Editor.py" line="7144" /> <source>Save macro</source> <translation>Сохранить макрос</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7137" /> + <location filename="../QScintilla/Editor.py" line="7145" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Макро <b>{0}</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7152" /> + <location filename="../QScintilla/Editor.py" line="7160" /> <source>Error saving macro</source> <translation>Ошибка при сохранении макроса</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7161" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл с макросами: <b>{0}</b>.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7166" /> + <location filename="../QScintilla/Editor.py" line="7174" /> <source>Start Macro Recording</source> <translation>Начать запись макроса</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7167" /> + <location filename="../QScintilla/Editor.py" line="7175" /> <source>Macro recording is already active. Start new?</source> <translation>Запись макроса уже идёт. Начать новую запись?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7193" /> + <location filename="../QScintilla/Editor.py" line="7201" /> <source>Macro Recording</source> <translation>Запись макроса</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7194" /> + <location filename="../QScintilla/Editor.py" line="7202" /> <source>Enter name of the macro:</source> <translation>Задайте имя макроса:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7344" /> + <location filename="../QScintilla/Editor.py" line="7352" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation><p>Файл <b>{0}</b> был изменён, будучи открытым в eric. Перепрочесть?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7350" /> + <location filename="../QScintilla/Editor.py" line="7358" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Предупреждение:</b> При переоткрытии все изменения будут потеряны.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7357" /> + <location filename="../QScintilla/Editor.py" line="7365" /> <source>File changed</source> <translation>Файл изменен</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7407" /> + <location filename="../QScintilla/Editor.py" line="7415" /> <source>{0} (ro)</source> <translation>{0} (только чтение)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7712" /> + <location filename="../QScintilla/Editor.py" line="7720" /> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7713" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> не является файлом.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7733" /> + <location filename="../QScintilla/Editor.py" line="7741" /> <source>Resources</source> <translation>Ресурсы</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7735" /> + <location filename="../QScintilla/Editor.py" line="7743" /> <source>Add file...</source> <translation>Добавить файл...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7736" /> + <location filename="../QScintilla/Editor.py" line="7744" /> <source>Add files...</source> <translation>Добавить файлы...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7737" /> + <location filename="../QScintilla/Editor.py" line="7745" /> <source>Add aliased file...</source> <translation>Добавить файл под другим именем...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7739" /> + <location filename="../QScintilla/Editor.py" line="7747" /> <source>Add localized resource...</source> <translation>Добавить локализованный ресурс...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7742" /> + <location filename="../QScintilla/Editor.py" line="7750" /> <source>Add resource frame</source> <translation>Добавить фрагмент ресурсов</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7761" /> + <location filename="../QScintilla/Editor.py" line="7769" /> <source>Add file resource</source> <translation>Добавить файл ресурсов</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7775" /> + <location filename="../QScintilla/Editor.py" line="7783" /> <source>Add file resources</source> <translation>Добавить файлы ресурсов</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7799" /> - <location filename="../QScintilla/Editor.py" line="7793" /> + <location filename="../QScintilla/Editor.py" line="7807" /> + <location filename="../QScintilla/Editor.py" line="7801" /> <source>Add aliased file resource</source> <translation>Добавить файл ресурсов под другим именем</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7800" /> + <location filename="../QScintilla/Editor.py" line="7808" /> <source>Alias for file <b>{0}</b>:</source> <translation>Другое имя для файла <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7875" /> + <location filename="../QScintilla/Editor.py" line="7883" /> <source>Package Diagram</source> <translation>Диаграмма пакетов</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7876" /> + <location filename="../QScintilla/Editor.py" line="7884" /> <source>Include class attributes?</source> <translation>Включать атрибуты класса?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7896" /> + <location filename="../QScintilla/Editor.py" line="7904" /> <source>Imports Diagram</source> <translation>Диаграмма импортов</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7897" /> + <location filename="../QScintilla/Editor.py" line="7905" /> <source>Include imports from external modules?</source> <translation>Включать импорты из внешних модулей?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7916" /> + <location filename="../QScintilla/Editor.py" line="7924" /> <source>Application Diagram</source> <translation>Диаграмма приложения</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7917" /> + <location filename="../QScintilla/Editor.py" line="7925" /> <source>Include module names?</source> <translation>Включать имена модулей?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8272" /> + <location filename="../QScintilla/Editor.py" line="8280" /> <source>Add to dictionary</source> <translation>Добавить в словарь</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8274" /> + <location filename="../QScintilla/Editor.py" line="8282" /> <source>Ignore All</source> <translation>Игнорировать всё</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8692" /> + <location filename="../QScintilla/Editor.py" line="8700" /> <source>Sort Lines</source> <translation>Сортировать строки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8693" /> + <location filename="../QScintilla/Editor.py" line="8701" /> <source>The selection contains illegal data for a numerical sort.</source> <translation>Выборка содержит данные неподходящие для сортировки как числа.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8786" /> + <location filename="../QScintilla/Editor.py" line="8794" /> <source>Register Mouse Click Handler</source> <translation>Регистрация обработчика кликов мышки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8787" /> + <location filename="../QScintilla/Editor.py" line="8795" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation>Обработчик кликов мышки для "{0}" уже зарегистрирован "{1}". Запрос прерван "{2}"...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8883" /> + <location filename="../QScintilla/Editor.py" line="8891" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation>{0:4d} {1}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8889" /> + <location filename="../QScintilla/Editor.py" line="8897" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> @@ -13346,12 +13346,12 @@ => {2}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="8965" /> <source>EditorConfig Properties</source> <translation>Свойства EditorConfig</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8958" /> + <location filename="../QScintilla/Editor.py" line="8966" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Не удается загрузить свойства EditorConfig для файла <b>{0}</b>.</p></translation> </message> @@ -19829,38 +19829,38 @@ <context> <name>EricTextEditSearchWidget</name> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="115" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="116" /> <source>Find:</source> <translation>Найти:</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="141" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="142" /> <source>Match case</source> <translation>С учётом регистра</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="146" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="147" /> <source>Whole word</source> <translation>Целое слово</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="156" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="157" /> <source>Press to find the previous occurrence</source> <translation>Перейти к предыдущему вхождению</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="162" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="163" /> <source>Press to find the next occurrence</source> <translation>Перейти к следующему вхождению</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="481" /> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="433" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="482" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="434" /> <source>'{0}' was not found.</source> <translation>'{0}' не найдено.</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="486" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="487" /> <source>Match {0} of {1}</source> <translation>Соответствие {0} из {1}</translation> </message> @@ -33085,29 +33085,29 @@ <translation>UTF-8</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="119" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="118" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="121" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="120" /> <source>Find Next</source> <translation>Найти следующий</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="131" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="130" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="133" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="132" /> <source>Find Prev</source> <translation>Найти предыдущее</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="297" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="299" /> <source>'{0}' was not found.</source> <translation>'{0}' не найдено.</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="417" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="419" /> <source>Replaced {0} occurrences.</source> <translation>Заменено в {0} местах.</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="423" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="425" /> <source>Nothing replaced because '{0}' was not found.</source> <translation>Ничего не заменено, потому что '{0}' не найдено.</translation> </message> @@ -70789,74 +70789,74 @@ </translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="155" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="154" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="157" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="156" /> <source>Find Next</source> <translation>Найти следующее</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="168" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="167" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="170" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="169" /> <source>Find Prev</source> <translation>Найти предыдущее</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="181" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="180" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="183" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="182" /> <source>Replace and Search</source> <translation>Заменить и найти</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="195" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="194" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="197" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="196" /> <source>Replace Occurrence</source> <translation>Заменить вхождение</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="209" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="208" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="211" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="210" /> <source>Replace All</source> <translation>Заменить все</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="297" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="299" /> <source>Press to find the next occurrence ({0})</source> <translation>Найти следующее вхождение ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="304" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="306" /> <source>Press to find the previous occurrence ({0})</source> <translation>Найти предыдущее вхождение ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="311" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="313" /> <source>Press to replace the selection and search for the next occurence ({0})</source> <translation>Заменить выделение и найти следующее вхождение ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="321" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="323" /> <source>Press to replace the selection ({0})</source> <translation>Заменить выделение ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="328" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="330" /> <source>Press to replace all occurrences ({0})</source> <translation>Заменить все выделения ({0})</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1114" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="665" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="627" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1123" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="674" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="636" /> <source>'{0}' was not found.</source> <translation>'{0}' не найдено.</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1267" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1276" /> <source>Replaced {0} occurrences.</source> <translation>Заменено в {0} местах.</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1273" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1282" /> <source>Nothing replaced because '{0}' was not found.</source> <translation>Ничего не заменено, потому что '{0}' не найдено.</translation> </message> @@ -70975,7 +70975,7 @@ <translation>С учётом регистра</translation> </message> <message> - <location filename="../WebBrowser/SearchWidget.py" line="100" /> + <location filename="../WebBrowser/SearchWidget.py" line="101" /> <source>Expression was not found.</source> <translation>Выражение не найдено.</translation> </message> @@ -70990,7 +70990,7 @@ <translation>Regexp</translation> </message> <message> - <location filename="../UI/SearchWidget.py" line="212" /> + <location filename="../UI/SearchWidget.py" line="213" /> <source>'{0}' was not found.</source> <translation>'{0}' не найдено.</translation> </message> @@ -72255,143 +72255,158 @@ <context> <name>Shell</name> <message> - <location filename="../QScintilla/Shell.py" line="162" /> + <location filename="../QScintilla/Shell.py" line="164" /> <source>Shell - Passive</source> <translation>Пассивная оболочка</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="164" /> + <location filename="../QScintilla/Shell.py" line="166" /> <source>Shell</source> <translation>Оболочка</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="168" /> - <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. '%quit' or '%exit' is used to exit the application. These commands (except '%environments', '%envs' and '%which') are available through the window menus as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> - <translation><b>Окно оболочки</b><p>При вводе команд вы можете использовать клавиши курсора. Существует также история команд, которые можно вызвать с помощью клавиш управления курсором Up и Down, одновременно удерживая клавишу Ctrl. В диалоге 'Настройка оболочки' на страничке 'Оболочка' можно переключится в режим простого использования клавиш Up и Down. Нажатие на эти клавиши после ввода какого-либо текста вызовет инкрементный поиск.</p><p>Оболочка имеет специальные команды. Команда 'Restart' убивает текущую оболочку и открывает новую. 'Clear' очищает окно оболочки. Команда 'Start' используется для запуска оболочки для виртуального окружения и должна сопровождаться именем виртуального окружения. 'Start' без имени виртуального окружения запускает оболочку по умолчанию. Доступные виртуальные окружения могут быть перечислены с помощью команд 'Envs' или 'Environment'. Имя активного виртуального окружения может быть отображено командой 'Which'. Команды 'Quit' или 'Exit' используется для выхода из приложения. Эти команды (за исключением 'Environments', 'Envs' и 'Which') доступны через меню оболочки.</p><p>Нажатие клавиши 'Tab', после того, как был введен какой-либо текст, вызывает отображение списка возможных дополнений. Необходимая запись может быть выбрана из данного списка. Если доступна только одна запись, то она будет вставлена автоматически.</p></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="198" /> - <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. These commands (except '%environments' and '%envs') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> - <translation><b>Окно оболочки</b><p>Это простой интерпретатор, запускаемый в окне. Интерпретатор просто используется для запуска отлаживаемой программы. Это означает, что вы можете выполнить любую команду во время работы отлаживаемой программы.</p><p>Вы можете использовать клавиши управления курсором при вводе команд. Существует также история команд, которые можно вызвать с помощью клавиш управления курсором Up и Down, одновременно удерживая клавишу Ctrl. В диалоге 'Настройка оболочки' на страничке 'Оболочка' можно переключится в режим простого использования клавиш Up и Down. Нажатие на эти клавиши после ввода какого-либо текста вызовет инкрементный поиск.</p><p>Оболочка имеет специальные команды. Команда 'Restart' убивает текущую оболочку и открывает новую. 'Clear' очищает окно оболочки. Команда 'Start' используется для запуска оболочки для виртуального окружения и должна сопровождаться именем виртуального окружения. 'Start' без имени виртуального окружения запускает оболочку по умолчанию. Доступные виртуальные окружения могут быть перечислены с помощью команд 'Envs' или 'Environments'. Имя активного виртуального окружения может быть отображено командой 'Which'. Эти команды (за исключением 'Environments', 'Envs') доступны через контекстное меню.</p><p>Нажатие клавиши 'Tab', после того, как был введен какой-либо текст, вызывает отображение списка возможных дополнений. Необходимая запись может быть выбрана из данного списка. Если доступна только одна запись, то она будет вставлена автоматически.</p><p>В режиме пассивной отладки оболочка доступна только после того, как отлаживаемая программа будет подключена к IDE и до ее завершения. Это указывается посредством другой подсказки и индикацией в заголовке окна.</p></translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="262" /> + <location filename="../QScintilla/Shell.py" line="170" /> + <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="189" /> + <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="244" /> <source>Passive >>> </source> <translation>Пассивная >>> </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="305" /> + <location filename="../QScintilla/Shell.py" line="287" /> <source>Start</source> <translation>Запуск</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="310" /> + <location filename="../QScintilla/Shell.py" line="292" /> <source>History</source> <translation>История</translation> </message> <message> + <location filename="../QScintilla/Shell.py" line="293" /> + <source>Select entry</source> + <translation>Выбрать</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="294" /> + <source>Show</source> + <translation>Показать</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="306" /> + <location filename="../QScintilla/Shell.py" line="295" /> + <source>Clear</source> + <translation>Очистить</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="299" /> + <source>Cut</source> + <translation>Вырезать</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="300" /> + <source>Copy</source> + <translation>Копировать</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="301" /> + <source>Paste</source> + <translation>Вставить</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="304" /> + <source>Find</source> + <translation>Найти</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="307" /> + <source>Restart</source> + <translation>Перезапустить</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="308" /> + <source>Restart and Clear</source> + <translation>Перезапустить и очистить</translation> + </message> + <message> <location filename="../QScintilla/Shell.py" line="311" /> - <source>Select entry</source> - <translation>Выбрать</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="312" /> - <source>Show</source> - <translation>Показать</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="325" /> + <source>Active Name</source> + <translation>Активное виртуальное окружение</translation> + </message> + <message> <location filename="../QScintilla/Shell.py" line="313" /> - <source>Clear</source> - <translation>Очистить</translation> + <source>Save Contents...</source> + <translation>Сохранить контент...</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="315" /> + <source>Configure...</source> + <translation>Настроить...</translation> </message> <message> <location filename="../QScintilla/Shell.py" line="317" /> - <source>Cut</source> - <translation>Вырезать</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="318" /> - <source>Copy</source> - <translation>Копировать</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="319" /> - <source>Paste</source> - <translation>Вставить</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="323" /> - <source>Find</source> - <translation>Найти</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="326" /> - <source>Restart</source> - <translation>Перезапустить</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="327" /> - <source>Restart and Clear</source> - <translation>Перезапустить и очистить</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="330" /> - <source>Active Name</source> - <translation>Активное виртуальное окружение</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="332" /> - <source>Save Contents...</source> - <translation>Сохранить контент...</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="334" /> - <source>Configure...</source> - <translation>Настроить...</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="2067" /> - <location filename="../QScintilla/Shell.py" line="1846" /> - <location filename="../QScintilla/Shell.py" line="1845" /> - <location filename="../QScintilla/Shell.py" line="408" /> + <source>Special Commands Help</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2087" /> + <location filename="../QScintilla/Shell.py" line="1849" /> + <location filename="../QScintilla/Shell.py" line="1848" /> + <location filename="../QScintilla/Shell.py" line="391" /> <source>Project</source> <translation>Проект</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="806" /> + <location filename="../QScintilla/Shell.py" line="780" /> + <source>Clear History</source> + <translation type="unfinished">Очистить историю</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="781" /> + <source>Shall the current history really be cleared?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="803" /> <source>Select History</source> <translation>Выберите историю</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="807" /> + <location filename="../QScintilla/Shell.py" line="804" /> <source>Select the history entry to execute (most recent shown last).</source> <translation>Выберите одну из предыдущих команд для выполнения.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="872" /> + <location filename="../QScintilla/Shell.py" line="878" /> <source>Passive Debug Mode</source> <translation>Режим пассивной отладки</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="873" /> + <location filename="../QScintilla/Shell.py" line="879" /> <source> Not connected</source> <translation> Соединение не установлено</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="876" /> + <location filename="../QScintilla/Shell.py" line="882" /> <source>No.</source> <translation>Нет.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="878" /> + <location filename="../QScintilla/Shell.py" line="884" /> <source>{0} on {1}</source> <translation>{0} из {1}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="925" /> + <location filename="../QScintilla/Shell.py" line="931" /> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -72402,7 +72417,7 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="934" /> + <location filename="../QScintilla/Shell.py" line="940" /> <source>Exception "{0}" {1} </source> @@ -72411,43 +72426,43 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="954" /> + <location filename="../QScintilla/Shell.py" line="960" /> <source>Unspecified syntax error. </source> <translation>Неизвестная синтакcическая ошибка. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="957" /> + <location filename="../QScintilla/Shell.py" line="963" /> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation>Синтаксическая ошибка "{1}" в файле {0} в строке {2}, символ {3}. </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="981" /> + <location filename="../QScintilla/Shell.py" line="987" /> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation>Сигнал "{0}" сгенерирован в файле {1} в строке {2}. Функция: {3}({4})</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1063" /> + <location filename="../QScintilla/Shell.py" line="1069" /> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1071" /> + <location filename="../QScintilla/Shell.py" line="1077" /> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1097" /> + <location filename="../QScintilla/Shell.py" line="1103" /> <source><{0}> {1}</source> <translation><{0}> {1}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1892" /> + <location filename="../QScintilla/Shell.py" line="1886" /> <source>Available Virtual Environments: {0} </source> @@ -72456,45 +72471,90 @@ </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1935" /> - <location filename="../QScintilla/Shell.py" line="1899" /> + <location filename="../QScintilla/Shell.py" line="1955" /> + <location filename="../QScintilla/Shell.py" line="1892" /> <source>Current Virtual Environment: '{0}' </source> <translation>Текущее виртуальное окружение: '{0}' </translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2207" /> + <location filename="../QScintilla/Shell.py" line="1910" /> + <source>Error: Argument must be an integer value. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1927" /> + <source>Error: Command '{0}' is not supported. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2227" /> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2208" /> + <location filename="../QScintilla/Shell.py" line="2228" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> не является файлом</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2451" /> - <location filename="../QScintilla/Shell.py" line="2437" /> - <location filename="../QScintilla/Shell.py" line="2416" /> + <location filename="../QScintilla/Shell.py" line="2471" /> + <location filename="../QScintilla/Shell.py" line="2457" /> + <location filename="../QScintilla/Shell.py" line="2436" /> <source>Save Shell Contents</source> <translation>Сохранить контент оболочки</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2418" /> - <source>Text Files (*.txt);;All Files (*)</source> - <translation>Файлы текстовые (*.txt);;Все файлы (*)</translation> - </message> - <message> <location filename="../QScintilla/Shell.py" line="2438" /> + <source>Text Files (*.txt);;All Files (*)</source> + <translation>Файлы текстовые (*.txt);;Все файлы (*)</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2458" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Файл <b>{0}</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2452" /> + <location filename="../QScintilla/Shell.py" line="2472" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Невозможно сохранить файл <b>{0}</b>.<br/>Причина: {1}</p></translation> </message> + <message> + <location filename="../QScintilla/Shell.py" line="2486" /> + <source><tr><td>%restart</td><td>Kill the shell and start a new one.</td></tr><tr><td>%clear</td><td>Clear the display of the shell window.</td></tr><tr><td>%start [environment]</td><td>Start a shell for a virtual environment with the given name. If no name if given, a default shell is started.</td></tr><tr><td>%envs<br/>%environments</td><td>Show a list of known virtual environment names.</td></tr><tr><td>%which</td><td>Show the name of the active virtual environment.</td></tr><tr><td>%hist [n]<br/>%history [n]</td><td>Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.</td></tr><tr><td>%shist<br/>%shistory<br/>%select_history</td><td>Select a command from the history.</td></tr><tr><td>%chist<br/>%chistory<br/>%clear_history</td><td>Clear the current history after confirmation.</td></tr><tr><td>%help</td><td>Show this help text.</td></tr></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2508" /> + <source><tr><td>%quit<br/>%quit()<br/>%exit<br/>%exit()</td><td>Exit the application.</td></tr></table><p>These commands are available through the window menus as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2516" /> + <source></table><p>These commands are available through the context menu as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2523" /> + <source>Shell Special Commands</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2524" /> + <source>The shell supports these special commands:</source> + <translation type="unfinished" /> + </message> + <message> + <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. '%quit' or '%exit' is used to exit the application. These commands (except '%environments', '%envs' and '%which') are available through the window menus as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> + <translation type="vanished"><b>Окно оболочки</b><p>При вводе команд вы можете использовать клавиши курсора. Существует также история команд, которые можно вызвать с помощью клавиш управления курсором Up и Down, одновременно удерживая клавишу Ctrl. В диалоге 'Настройка оболочки' на страничке 'Оболочка' можно переключится в режим простого использования клавиш Up и Down. Нажатие на эти клавиши после ввода какого-либо текста вызовет инкрементный поиск.</p><p>Оболочка имеет специальные команды. Команда 'Restart' убивает текущую оболочку и открывает новую. 'Clear' очищает окно оболочки. Команда 'Start' используется для запуска оболочки для виртуального окружения и должна сопровождаться именем виртуального окружения. 'Start' без имени виртуального окружения запускает оболочку по умолчанию. Доступные виртуальные окружения могут быть перечислены с помощью команд 'Envs' или 'Environment'. Имя активного виртуального окружения может быть отображено командой 'Which'. Команды 'Quit' или 'Exit' используется для выхода из приложения. Эти команды (за исключением 'Environments', 'Envs' и 'Which') доступны через меню оболочки.</p><p>Нажатие клавиши 'Tab', после того, как был введен какой-либо текст, вызывает отображение списка возможных дополнений. Необходимая запись может быть выбрана из данного списка. Если доступна только одна запись, то она будет вставлена автоматически.</p></translation> + </message> + <message> + <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. These commands (except '%environments' and '%envs') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> + <translation type="vanished"><b>Окно оболочки</b><p>Это простой интерпретатор, запускаемый в окне. Интерпретатор просто используется для запуска отлаживаемой программы. Это означает, что вы можете выполнить любую команду во время работы отлаживаемой программы.</p><p>Вы можете использовать клавиши управления курсором при вводе команд. Существует также история команд, которые можно вызвать с помощью клавиш управления курсором Up и Down, одновременно удерживая клавишу Ctrl. В диалоге 'Настройка оболочки' на страничке 'Оболочка' можно переключится в режим простого использования клавиш Up и Down. Нажатие на эти клавиши после ввода какого-либо текста вызовет инкрементный поиск.</p><p>Оболочка имеет специальные команды. Команда 'Restart' убивает текущую оболочку и открывает новую. 'Clear' очищает окно оболочки. Команда 'Start' используется для запуска оболочки для виртуального окружения и должна сопровождаться именем виртуального окружения. 'Start' без имени виртуального окружения запускает оболочку по умолчанию. Доступные виртуальные окружения могут быть перечислены с помощью команд 'Envs' или 'Environments'. Имя активного виртуального окружения может быть отображено командой 'Which'. Эти команды (за исключением 'Environments', 'Envs') доступны через контекстное меню.</p><p>Нажатие клавиши 'Tab', после того, как был введен какой-либо текст, вызывает отображение списка возможных дополнений. Необходимая запись может быть выбрана из данного списка. Если доступна только одна запись, то она будет вставлена автоматически.</p><p>В режиме пассивной отладки оболочка доступна только после того, как отлаживаемая программа будет подключена к IDE и до ее завершения. Это указывается посредством другой подсказки и индикацией в заголовке окна.</p></translation> + </message> </context> <context> <name>ShellHistoryDialog</name>
--- a/src/eric7/i18n/eric7_tr.ts Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/i18n/eric7_tr.ts Sun Sep 03 17:35:15 2023 +0200 @@ -12407,996 +12407,996 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3332" /> - <location filename="../QScintilla/Editor.py" line="428" /> - <location filename="../QScintilla/Editor.py" line="413" /> + <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="414" /> <source>Open File</source> <translation>Dosya Aç</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="414" /> + <location filename="../QScintilla/Editor.py" line="415" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="430" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p><b>{0}</b>dosyasının boyutu <b>{1} KB</b>. Bu dosyayı yüklemek istiyor musunuz?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="526" /> + <location filename="../QScintilla/Editor.py" line="527" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Kaynak Düzenleme Penceresi</b><p>Bu pencere kaynak kod dosyalarını düzenlemek ve göstermek için kullanılır.Bunu pekçok kez kullanmak üzere açabilirsiniz. Dosyanın isim başlıkçubuğunda gösterilir.</p><p>Bekleme noktaların kolayca ekleyip düzenleyebilmeniz için satır numaraları ve işaret alanı vardır..İçerik menüsü aracılığı ile sınırları düzenleyebilirsiniz.</p><p>Bekleme noktalarını ayarlamak için Shift ve ara çubuğuna beraber basabilirsiniz.</p><p>Bu işlem içerik menüsü ilede yapılabilir.</p><p>Bir yazım hatasının üzerinde Ctrl ile tıklarsanız o hata ile ilgili ayrıntılı yardım alırsınız.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="890" /> + <location filename="../QScintilla/Editor.py" line="891" /> <source>Undo</source> <translation>Geri Al</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="893" /> + <location filename="../QScintilla/Editor.py" line="894" /> <source>Redo</source> <translation>İleri al</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="896" /> + <location filename="../QScintilla/Editor.py" line="897" /> <source>Revert to last saved state</source> <translation>En son kaydedileni eski haline getir</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="900" /> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Cut</source> <translation>Kes</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="903" /> + <location filename="../QScintilla/Editor.py" line="904" /> <source>Copy</source> <translation>Kopyala</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="906" /> + <location filename="../QScintilla/Editor.py" line="907" /> <source>Paste</source> <translation>Yapıştır</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="913" /> <source>Indent</source> <translation>Girinti</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="917" /> + <location filename="../QScintilla/Editor.py" line="918" /> <source>Unindent</source> <translation>Girintisiz</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="922" /> + <location filename="../QScintilla/Editor.py" line="923" /> <source>Comment</source> <translation>Yorumlayıcı</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="927" /> + <location filename="../QScintilla/Editor.py" line="928" /> <source>Uncomment</source> <translation>Yorumlanamaz</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="9150" /> - <location filename="../QScintilla/Editor.py" line="932" /> + <location filename="../QScintilla/Editor.py" line="9158" /> + <location filename="../QScintilla/Editor.py" line="933" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="935" /> - <source>Select to brace</source> - <translation>Köşeli ayracı seç</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="936" /> - <source>Select all</source> - <translation>Hepsini seç</translation> + <source>Select to brace</source> + <translation>Köşeli ayracı seç</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="937" /> + <source>Select all</source> + <translation>Hepsini seç</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="938" /> <source>Deselect all</source> <translation>Tüm seçimi iptal et</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939" /> + <location filename="../QScintilla/Editor.py" line="940" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="951" /> + <location filename="../QScintilla/Editor.py" line="952" /> <source>Use Monospaced Font</source> <translation>Tek hacimli yazıtipi kullan</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="957" /> <source>Autosave enabled</source> <translation>Otomatik kayıt kabul edildi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="962" /> <source>Typing aids enabled</source> <translation>Yazım yardımı etkinleştirildi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="969" /> + <location filename="../QScintilla/Editor.py" line="970" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="978" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Calltip</source> <translation>İpucu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="981" /> + <location filename="../QScintilla/Editor.py" line="982" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="996" /> + <location filename="../QScintilla/Editor.py" line="997" /> <source>New Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1001" /> + <location filename="../QScintilla/Editor.py" line="1002" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Save</source> <translation>Kaydet</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1013" /> + <location filename="../QScintilla/Editor.py" line="1014" /> <source>Save As...</source> <translation>Farklı Kaydet...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1018" /> + <location filename="../QScintilla/Editor.py" line="1019" /> <source>Save Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1040" /> - <location filename="../QScintilla/Editor.py" line="1037" /> + <location filename="../QScintilla/Editor.py" line="1041" /> + <location filename="../QScintilla/Editor.py" line="1038" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1044" /> + <location filename="../QScintilla/Editor.py" line="1045" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1047" /> + <location filename="../QScintilla/Editor.py" line="1048" /> <source>Complete from Document</source> <translation type="unfinished">Belgeden</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1049" /> + <location filename="../QScintilla/Editor.py" line="1050" /> <source>Complete from APIs</source> <translation type="unfinished">API'den</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052" /> + <location filename="../QScintilla/Editor.py" line="1053" /> <source>Complete from Document and APIs</source> <translation type="unfinished">Belgeden ve API'den</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1066" /> + <location filename="../QScintilla/Editor.py" line="1067" /> <source>Check</source> <translation>Kontrol</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1077" /> + <location filename="../QScintilla/Editor.py" line="1078" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1083" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> + <location filename="../QScintilla/Editor.py" line="1089" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1092" /> + <location filename="../QScintilla/Editor.py" line="1093" /> <source>Check Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1096" /> + <location filename="../QScintilla/Editor.py" line="1097" /> <source>Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1105" /> + <location filename="../QScintilla/Editor.py" line="1106" /> <source>isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1110" /> + <location filename="../QScintilla/Editor.py" line="1111" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1114" /> + <location filename="../QScintilla/Editor.py" line="1115" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1130" /> + <location filename="../QScintilla/Editor.py" line="1131" /> <source>Tools</source> <translation type="unfinished">Araçlar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1141" /> + <location filename="../QScintilla/Editor.py" line="1142" /> <source>Show</source> <translation>Göster</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1143" /> + <location filename="../QScintilla/Editor.py" line="1144" /> <source>Code metrics...</source> <translation>Metrik Kod...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1145" /> + <location filename="../QScintilla/Editor.py" line="1146" /> <source>Code coverage...</source> <translation>Kod koruyucu...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1148" /> + <location filename="../QScintilla/Editor.py" line="1149" /> <source>Show code coverage annotations</source> <translation>Kodun dipnotunu göster</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1151" /> + <location filename="../QScintilla/Editor.py" line="1152" /> <source>Hide code coverage annotations</source> <translation>Kod koruyucu dipnotunu gizle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1155" /> + <location filename="../QScintilla/Editor.py" line="1156" /> <source>Profile data...</source> <translation>Veri kesiti...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1169" /> + <location filename="../QScintilla/Editor.py" line="1170" /> <source>Diagrams</source> <translation>Şema</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1171" /> - <source>Class Diagram...</source> - <translation>Sınıf Şeması...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1172" /> - <source>Package Diagram...</source> - <translation>Paket Şeması...</translation> + <source>Class Diagram...</source> + <translation>Sınıf Şeması...</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1173" /> + <source>Package Diagram...</source> + <translation>Paket Şeması...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1174" /> <source>Imports Diagram...</source> <translation>Şemayı İçe aktar...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1175" /> + <location filename="../QScintilla/Editor.py" line="1176" /> <source>Application Diagram...</source> <translation>Uygulama Şeması...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1180" /> + <location filename="../QScintilla/Editor.py" line="1181" /> <source>Load Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1195" /> + <location filename="../QScintilla/Editor.py" line="1196" /> <source>Languages</source> <translation>Diller</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1199" /> + <location filename="../QScintilla/Editor.py" line="1200" /> <source>Text</source> <translation type="unfinished">Metin</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1222" /> + <location filename="../QScintilla/Editor.py" line="1223" /> <source>Guessed</source> <translation>Tahmin edilen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1551" /> - <location filename="../QScintilla/Editor.py" line="1226" /> + <location filename="../QScintilla/Editor.py" line="1552" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>Alternatives</source> <translation>Alternatifler</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1243" /> + <location filename="../QScintilla/Editor.py" line="1244" /> <source>Encodings</source> <translation>Kodlama</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1266" /> + <location filename="../QScintilla/Editor.py" line="1267" /> <source>Re-Open With Encoding</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1286" /> + <location filename="../QScintilla/Editor.py" line="1287" /> <source>End-of-Line Type</source> <translation>Yazım satırının sonu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1290" /> + <location filename="../QScintilla/Editor.py" line="1291" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1296" /> + <location filename="../QScintilla/Editor.py" line="1297" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1302" /> + <location filename="../QScintilla/Editor.py" line="1303" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1320" /> + <location filename="../QScintilla/Editor.py" line="1321" /> <source>Spelling</source> <translation type="unfinished">Yazım kontolü yapılıyor</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8268" /> - <location filename="../QScintilla/Editor.py" line="1328" /> + <location filename="../QScintilla/Editor.py" line="8276" /> + <location filename="../QScintilla/Editor.py" line="1329" /> <source>Check spelling...</source> <translation>Yazım Kontrolü...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1333" /> + <location filename="../QScintilla/Editor.py" line="1334" /> <source>Check spelling of selection...</source> <translation>Seçilen alanın yazım kontrolü...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1337" /> + <location filename="../QScintilla/Editor.py" line="1338" /> <source>Remove from dictionary</source> <translation>Sözlükten çıkar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1354" /> + <location filename="../QScintilla/Editor.py" line="1355" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1358" /> + <location filename="../QScintilla/Editor.py" line="1359" /> <source>No Language</source> <translation>Dil Yok</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1385" /> + <location filename="../QScintilla/Editor.py" line="1386" /> <source>Toggle bookmark</source> <translation>Yerimi açkapa</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1387" /> + <location filename="../QScintilla/Editor.py" line="1388" /> <source>Next bookmark</source> <translation>Sonraki yerimi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1390" /> + <location filename="../QScintilla/Editor.py" line="1391" /> <source>Previous bookmark</source> <translation>Önceki yerimi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1393" /> + <location filename="../QScintilla/Editor.py" line="1394" /> <source>Clear all bookmarks</source> <translation>Tüm yerimlerini temizle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1404" /> + <location filename="../QScintilla/Editor.py" line="1405" /> <source>Toggle breakpoint</source> <translation>Beklemenoktası açkapa</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1407" /> + <location filename="../QScintilla/Editor.py" line="1408" /> <source>Toggle temporary breakpoint</source> <translation>Geçici bekleme noktası açkapa</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1410" /> + <location filename="../QScintilla/Editor.py" line="1411" /> <source>Edit breakpoint...</source> <translation>Bekleme noktasını düzenle...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5927" /> - <location filename="../QScintilla/Editor.py" line="1413" /> + <location filename="../QScintilla/Editor.py" line="5928" /> + <location filename="../QScintilla/Editor.py" line="1414" /> <source>Enable breakpoint</source> <translation>Beklemenoktasını etkinleştir</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1416" /> + <location filename="../QScintilla/Editor.py" line="1417" /> <source>Next breakpoint</source> <translation>Sonraki Beklemenoktası</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1419" /> + <location filename="../QScintilla/Editor.py" line="1420" /> <source>Previous breakpoint</source> <translation>Önceki bekleme noktası</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1422" /> + <location filename="../QScintilla/Editor.py" line="1423" /> <source>Clear all breakpoints</source> <translation>Tüm beklemenoktalarını temizle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1433" /> + <location filename="../QScintilla/Editor.py" line="1434" /> <source>Toggle all folds</source> <translation type="unfinished">Tüm Açkapaları Kapat</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1438" /> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Toggle all folds (including children)</source> <translation type="unfinished">Tüm açkapalar (iç içe olanlar dahil)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1441" /> + <location filename="../QScintilla/Editor.py" line="1442" /> <source>Toggle current fold</source> <translation type="unfinished">Geçerli açkapayı kapat</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1445" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Expand (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1449" /> + <location filename="../QScintilla/Editor.py" line="1450" /> <source>Collapse (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1454" /> + <location filename="../QScintilla/Editor.py" line="1455" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1465" /> + <location filename="../QScintilla/Editor.py" line="1466" /> <source>Goto syntax error</source> <translation>Sözdizimi hatasına git</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> + <location filename="../QScintilla/Editor.py" line="1469" /> <source>Show syntax error message</source> <translation>Sözdizimi hata mesajını göster</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> + <location filename="../QScintilla/Editor.py" line="1472" /> <source>Clear syntax error</source> <translation>Sözdizimi hatalarını sil</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1475" /> + <location filename="../QScintilla/Editor.py" line="1476" /> <source>Next warning</source> <translation>Sonraki Uyarı</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1478" /> + <location filename="../QScintilla/Editor.py" line="1479" /> <source>Previous warning</source> <translation>Önceki Uyarı</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1481" /> + <location filename="../QScintilla/Editor.py" line="1482" /> <source>Show warning message</source> <translation>Uyarı mesajını göster</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1484" /> + <location filename="../QScintilla/Editor.py" line="1485" /> <source>Clear warnings</source> <translation>Uyarıları temizle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1488" /> + <location filename="../QScintilla/Editor.py" line="1489" /> <source>Next uncovered line</source> <translation>Sonraki kapanmamış satır</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1491" /> + <location filename="../QScintilla/Editor.py" line="1492" /> <source>Previous uncovered line</source> <translation>Önceki kaplanmamış satır</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1495" /> + <location filename="../QScintilla/Editor.py" line="1496" /> <source>Next task</source> <translation>Sonraki görev</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1498" /> + <location filename="../QScintilla/Editor.py" line="1499" /> <source>Previous task</source> <translation>Önceki görev</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1502" /> + <location filename="../QScintilla/Editor.py" line="1503" /> <source>Next change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1505" /> + <location filename="../QScintilla/Editor.py" line="1506" /> <source>Previous change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1508" /> + <location filename="../QScintilla/Editor.py" line="1509" /> <source>Clear changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1537" /> - <location filename="../QScintilla/Editor.py" line="1528" /> - <source>Export source</source> - <translation>Kaynağı dışaktar</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1529" /> - <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> - <translation><p>dışa katarma tipi <b>{0}</b>için dışaaktarıcı yok. Vazgeçiliyior...</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1538" /> + <location filename="../QScintilla/Editor.py" line="1529" /> + <source>Export source</source> + <translation>Kaynağı dışaktar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1530" /> + <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> + <translation><p>dışa katarma tipi <b>{0}</b>için dışaaktarıcı yok. Vazgeçiliyior...</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1539" /> <source>No export format given. Aborting...</source> <translation>Girilen dışaaktarma formatı yok. İptal edildi...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1548" /> + <location filename="../QScintilla/Editor.py" line="1549" /> <source>Alternatives ({0})</source> <translation>Alternatifler ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1571" /> - <source>Pygments Lexer</source> - <translation>Pygments Lexer</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1572" /> + <source>Pygments Lexer</source> + <translation>Pygments Lexer</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1573" /> <source>Select the Pygments lexer to apply.</source> <translation>Kullanmak için Pygment lexer seç.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2120" /> - <source>Modification of Read Only file</source> - <translation>Yalnızca okunabilir dosyada değişiklik</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2121" /> + <source>Modification of Read Only file</source> + <translation>Yalnızca okunabilir dosyada değişiklik</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2122" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Yalnızca okunabilir bir dosyayı değiştirmeşe çalışıyorsunuz. Lütfen önce farklı bir isimde kaydediniz.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2556" /> - <source>Add Breakpoint</source> - <translation type="unfinished">Bekleme Noktası Ekle</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2557" /> + <source>Add Breakpoint</source> + <translation type="unfinished">Bekleme Noktası Ekle</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2558" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2890" /> + <location filename="../QScintilla/Editor.py" line="2891" /> <source>Printing...</source> <translation>Yazılıyor...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2907" /> + <location filename="../QScintilla/Editor.py" line="2908" /> <source>Printing completed</source> <translation>Yazdırma tamalandı</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2909" /> + <location filename="../QScintilla/Editor.py" line="2910" /> <source>Error while printing</source> <translation>Yazdırılırken hata</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2912" /> + <location filename="../QScintilla/Editor.py" line="2913" /> <source>Printing aborted</source> <translation>Yazdırma iptal edildi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3274" /> - <source>File Modified</source> - <translation>Dosya Değiştirildi</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3275" /> + <source>File Modified</source> + <translation>Dosya Değiştirildi</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3276" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p><b>{0}</b>dosyasında kaydedilmemiş değişiklikler var.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="3334" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Dosya <b>{0}</b> açılamıyor.</p><p>Sebep: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3509" /> - <location filename="../QScintilla/Editor.py" line="3490" /> - <location filename="../QScintilla/Editor.py" line="3452" /> - <source>Save File</source> - <translation>Dosyayı Kaydet</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="3453" /> - <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> - <translation><p>Dosya <b>{0}</b> kaydedilemiyor.</p><p>Sebep: {1}</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3510" /> + <location filename="../QScintilla/Editor.py" line="3491" /> + <location filename="../QScintilla/Editor.py" line="3453" /> + <source>Save File</source> + <translation>Dosyayı Kaydet</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3454" /> + <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> + <translation><p>Dosya <b>{0}</b> kaydedilemiyor.</p><p>Sebep: {1}</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3511" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p><b>{0}</b> dosyası halen mevcut. Üzerine yazılsın mı?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3644" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3645" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3646" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5101" /> - <source>Autocompletion</source> - <translation>Otomatik tamamlama</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5102" /> + <source>Autocompletion</source> + <translation>Otomatik tamamlama</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5103" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Otomatiktamamlama uygun değil çünkü bu otomatiktamamlama kaynağı değil.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5230" /> - <source>Auto-Completion Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5231" /> + <source>Auto-Completion Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5232" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523" /> - <source>Call-Tips Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5524" /> + <source>Call-Tips Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5525" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5931" /> + <location filename="../QScintilla/Editor.py" line="5932" /> <source>Disable breakpoint</source> <translation>Durmanoktasını iptal et</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6310" /> + <location filename="../QScintilla/Editor.py" line="6315" /> <source>Code Coverage</source> <translation>Kod Koruyucu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6311" /> + <location filename="../QScintilla/Editor.py" line="6316" /> <source>Please select a coverage file</source> <translation>Lütfen bir koruyucu dosya seçiniz</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6386" /> - <location filename="../QScintilla/Editor.py" line="6378" /> + <location filename="../QScintilla/Editor.py" line="6391" /> + <location filename="../QScintilla/Editor.py" line="6383" /> <source>Show Code Coverage Annotations</source> <translation>Kodların Dipnotunu Göster</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6379" /> + <location filename="../QScintilla/Editor.py" line="6384" /> <source>All lines have been covered.</source> <translation>Tüm satırlar korumaya alındı.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387" /> + <location filename="../QScintilla/Editor.py" line="6392" /> <source>There is no coverage file available.</source> <translation>Hazırda koruma dosyası yok.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6491" /> + <location filename="../QScintilla/Editor.py" line="6496" /> <source>Profile Data</source> <translation>Veri Kesiti</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6492" /> + <location filename="../QScintilla/Editor.py" line="6497" /> <source>Please select a profile file</source> <translation>Lütfen kesit dosyasını seçiniz</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6653" /> - <location filename="../QScintilla/Editor.py" line="6647" /> + <location filename="../QScintilla/Editor.py" line="6658" /> + <location filename="../QScintilla/Editor.py" line="6652" /> <source>Syntax Error</source> <translation>Sözdizimi Hatası</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6654" /> + <location filename="../QScintilla/Editor.py" line="6659" /> <source>No syntax error message available.</source> <translation>Uygun söz dizimi hata mesajı yok.</translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="6873" /> <location filename="../QScintilla/Editor.py" line="6867" /> - <location filename="../QScintilla/Editor.py" line="6861" /> <source>Warning</source> <translation type="unfinished">Dikkat</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6867" /> + <location filename="../QScintilla/Editor.py" line="6873" /> <source>No warning messages available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6937" /> <source>Style: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6934" /> + <location filename="../QScintilla/Editor.py" line="6942" /> <source>Warning: {0}</source> <translation>Dikkat: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6941" /> + <location filename="../QScintilla/Editor.py" line="6949" /> <source>Error: {0}</source> <translation>Hata: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Macro Name</source> <translation>Makro Adı</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Select a macro name:</source> <translation>Bir makro ismi seç:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7074" /> + <location filename="../QScintilla/Editor.py" line="7082" /> <source>Load macro file</source> <translation>Makro dosyasını yükle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7120" /> - <location filename="../QScintilla/Editor.py" line="7076" /> + <location filename="../QScintilla/Editor.py" line="7128" /> + <location filename="../QScintilla/Editor.py" line="7084" /> <source>Macro files (*.macro)</source> <translation>Makro dosyaları (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7098" /> - <location filename="../QScintilla/Editor.py" line="7088" /> + <location filename="../QScintilla/Editor.py" line="7106" /> + <location filename="../QScintilla/Editor.py" line="7096" /> <source>Error loading macro</source> <translation>Makronun yüklenmesinde hata</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7089" /> + <location filename="../QScintilla/Editor.py" line="7097" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Makro dosyası <b>{0}</b> okunamıyor.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7099" /> + <location filename="../QScintilla/Editor.py" line="7107" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Makro dosyası <b>{0}</b> bozuk.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7118" /> + <location filename="../QScintilla/Editor.py" line="7126" /> <source>Save macro file</source> <translation>Makro Dosyasını Kaydet</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7136" /> + <location filename="../QScintilla/Editor.py" line="7144" /> <source>Save macro</source> <translation>Makro Kaydet</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7137" /> + <location filename="../QScintilla/Editor.py" line="7145" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Makro dosyası <b>{0}</b> zaten var. Üzerine yazılsın mı?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7152" /> + <location filename="../QScintilla/Editor.py" line="7160" /> <source>Error saving macro</source> <translation>Makronun kaydedilmesinde hata</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7161" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Makro dosyası <b>{0}</b> yazılamıyor.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7166" /> + <location filename="../QScintilla/Editor.py" line="7174" /> <source>Start Macro Recording</source> <translation>Makro Kaydı Başladı</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7167" /> + <location filename="../QScintilla/Editor.py" line="7175" /> <source>Macro recording is already active. Start new?</source> <translation>Makro kaydı şuan aktif. Yeniden başlasın mı?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7193" /> + <location filename="../QScintilla/Editor.py" line="7201" /> <source>Macro Recording</source> <translation>Makro Kaydediliyor</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7194" /> + <location filename="../QScintilla/Editor.py" line="7202" /> <source>Enter name of the macro:</source> <translation>Makronun ismini gir:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7344" /> + <location filename="../QScintilla/Editor.py" line="7352" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7350" /> + <location filename="../QScintilla/Editor.py" line="7358" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7357" /> + <location filename="../QScintilla/Editor.py" line="7365" /> <source>File changed</source> <translation>Dosya değiştirilmiş</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7407" /> + <location filename="../QScintilla/Editor.py" line="7415" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7712" /> + <location filename="../QScintilla/Editor.py" line="7720" /> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7713" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> bir dosya değil.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7733" /> + <location filename="../QScintilla/Editor.py" line="7741" /> <source>Resources</source> <translation>Kaynaklar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7735" /> + <location filename="../QScintilla/Editor.py" line="7743" /> <source>Add file...</source> <translation>Dosya ekle...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7736" /> + <location filename="../QScintilla/Editor.py" line="7744" /> <source>Add files...</source> <translation>Dosyaları ekle...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7737" /> + <location filename="../QScintilla/Editor.py" line="7745" /> <source>Add aliased file...</source> <translation>Kısaltmalar dosyasına ekle...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7739" /> + <location filename="../QScintilla/Editor.py" line="7747" /> <source>Add localized resource...</source> <translation>Yaral kaynak ekle...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7742" /> + <location filename="../QScintilla/Editor.py" line="7750" /> <source>Add resource frame</source> <translation>Çerçeve kaynağı ekle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7761" /> + <location filename="../QScintilla/Editor.py" line="7769" /> <source>Add file resource</source> <translation>Dosya kaynağını ekle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7775" /> + <location filename="../QScintilla/Editor.py" line="7783" /> <source>Add file resources</source> <translation>Dosya kaynaklarını ekle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7799" /> - <location filename="../QScintilla/Editor.py" line="7793" /> + <location filename="../QScintilla/Editor.py" line="7807" /> + <location filename="../QScintilla/Editor.py" line="7801" /> <source>Add aliased file resource</source> <translation>Kısaltmalar dosyası kaynağını ekle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7800" /> + <location filename="../QScintilla/Editor.py" line="7808" /> <source>Alias for file <b>{0}</b>:</source> <translation><b>{0} dosyası için takma ad</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7875" /> + <location filename="../QScintilla/Editor.py" line="7883" /> <source>Package Diagram</source> <translation>Paket Şeması</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7876" /> + <location filename="../QScintilla/Editor.py" line="7884" /> <source>Include class attributes?</source> <translation>Sınıf nitelikleri dahil edilsin mi?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7896" /> + <location filename="../QScintilla/Editor.py" line="7904" /> <source>Imports Diagram</source> <translation>Şemayı İçe Aktar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7897" /> + <location filename="../QScintilla/Editor.py" line="7905" /> <source>Include imports from external modules?</source> <translation>Harici modüllerdan içe aktarım dahil edilsin mi?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7916" /> + <location filename="../QScintilla/Editor.py" line="7924" /> <source>Application Diagram</source> <translation>Uygulama Şeması</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7917" /> + <location filename="../QScintilla/Editor.py" line="7925" /> <source>Include module names?</source> <translation>Modül isimleri dahil edilsin mi?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8272" /> + <location filename="../QScintilla/Editor.py" line="8280" /> <source>Add to dictionary</source> <translation>Sözlüğe ekle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8274" /> + <location filename="../QScintilla/Editor.py" line="8282" /> <source>Ignore All</source> <translation>Hepsini Yoksay</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8692" /> + <location filename="../QScintilla/Editor.py" line="8700" /> <source>Sort Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8693" /> + <location filename="../QScintilla/Editor.py" line="8701" /> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8786" /> + <location filename="../QScintilla/Editor.py" line="8794" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8787" /> + <location filename="../QScintilla/Editor.py" line="8795" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8883" /> + <location filename="../QScintilla/Editor.py" line="8891" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8889" /> + <location filename="../QScintilla/Editor.py" line="8897" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="8965" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8958" /> + <location filename="../QScintilla/Editor.py" line="8966" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -19858,38 +19858,38 @@ <context> <name>EricTextEditSearchWidget</name> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="115" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="116" /> <source>Find:</source> <translation type="unfinished">Bul:</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="141" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="142" /> <source>Match case</source> <translation type="unfinished">Eşleşme durumu</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="146" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="147" /> <source>Whole word</source> <translation type="unfinished">Tüm kelimeler</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="156" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="157" /> <source>Press to find the previous occurrence</source> <translation type="unfinished">Birönceki eşleşmeyi bulmak için basınız</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="162" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="163" /> <source>Press to find the next occurrence</source> <translation type="unfinished">Sonraki eşlişmeyi bulmak için basınız</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="481" /> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="433" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="482" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="434" /> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' bulunamadı.</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="486" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="487" /> <source>Match {0} of {1}</source> <translation type="unfinished" /> </message> @@ -33143,29 +33143,29 @@ <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="119" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="118" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="121" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="120" /> <source>Find Next</source> <translation type="unfinished">Sonrakini Bul</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="131" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="130" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="133" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="132" /> <source>Find Prev</source> <translation type="unfinished">Öncekini Bul</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="297" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="299" /> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' bulunamadı.</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="417" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="419" /> <source>Replaced {0} occurrences.</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="423" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="425" /> <source>Nothing replaced because '{0}' was not found.</source> <translation type="unfinished" /> </message> @@ -70877,74 +70877,74 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="155" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="154" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="157" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="156" /> <source>Find Next</source> <translation>Sonrakini Bul</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="168" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="167" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="170" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="169" /> <source>Find Prev</source> <translation>Öncekini Bul</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="181" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="180" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="183" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="182" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="195" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="194" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="197" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="196" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="209" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="208" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="211" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="210" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="297" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="299" /> <source>Press to find the next occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="304" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="306" /> <source>Press to find the previous occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="311" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="313" /> <source>Press to replace the selection and search for the next occurence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="321" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="323" /> <source>Press to replace the selection ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="328" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="330" /> <source>Press to replace all occurrences ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1114" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="665" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="627" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1123" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="674" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="636" /> <source>'{0}' was not found.</source> <translation>'{0}' bulunamadı.</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1267" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1276" /> <source>Replaced {0} occurrences.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1273" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1282" /> <source>Nothing replaced because '{0}' was not found.</source> <translation type="unfinished" /> </message> @@ -71063,7 +71063,7 @@ <translation>Eşleşme durumu</translation> </message> <message> - <location filename="../WebBrowser/SearchWidget.py" line="100" /> + <location filename="../WebBrowser/SearchWidget.py" line="101" /> <source>Expression was not found.</source> <translation>İfade Bulunmadı.</translation> </message> @@ -71078,7 +71078,7 @@ <translation type="unfinished">Regexp</translation> </message> <message> - <location filename="../UI/SearchWidget.py" line="212" /> + <location filename="../UI/SearchWidget.py" line="213" /> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' bulunamadı.</translation> </message> @@ -72351,143 +72351,158 @@ <context> <name>Shell</name> <message> - <location filename="../QScintilla/Shell.py" line="162" /> + <location filename="../QScintilla/Shell.py" line="164" /> <source>Shell - Passive</source> <translation>Pasif- Kabuk</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="164" /> + <location filename="../QScintilla/Shell.py" line="166" /> <source>Shell</source> <translation>Kabuk</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="168" /> - <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. '%quit' or '%exit' is used to exit the application. These commands (except '%environments', '%envs' and '%which') are available through the window menus as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="198" /> - <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. These commands (except '%environments' and '%envs') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="262" /> + <location filename="../QScintilla/Shell.py" line="170" /> + <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="189" /> + <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="244" /> <source>Passive >>> </source> <translation>Pasif >>></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="305" /> + <location filename="../QScintilla/Shell.py" line="287" /> <source>Start</source> <translation>Başla</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="310" /> + <location filename="../QScintilla/Shell.py" line="292" /> <source>History</source> <translation>Geçmiş</translation> </message> <message> + <location filename="../QScintilla/Shell.py" line="293" /> + <source>Select entry</source> + <translation>Girişi Seç</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="294" /> + <source>Show</source> + <translation>Göster</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="306" /> + <location filename="../QScintilla/Shell.py" line="295" /> + <source>Clear</source> + <translation>Temizle</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="299" /> + <source>Cut</source> + <translation>Kes</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="300" /> + <source>Copy</source> + <translation>Kopyala</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="301" /> + <source>Paste</source> + <translation>Yapıştır</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="304" /> + <source>Find</source> + <translation type="unfinished">Bul</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="307" /> + <source>Restart</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="308" /> + <source>Restart and Clear</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="311" /> - <source>Select entry</source> - <translation>Girişi Seç</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="312" /> - <source>Show</source> - <translation>Göster</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="325" /> + <source>Active Name</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="313" /> - <source>Clear</source> - <translation>Temizle</translation> + <source>Save Contents...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="315" /> + <source>Configure...</source> + <translation>Ayarlanıyor...</translation> </message> <message> <location filename="../QScintilla/Shell.py" line="317" /> - <source>Cut</source> - <translation>Kes</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="318" /> - <source>Copy</source> - <translation>Kopyala</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="319" /> - <source>Paste</source> - <translation>Yapıştır</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="323" /> - <source>Find</source> - <translation type="unfinished">Bul</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="326" /> - <source>Restart</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="327" /> - <source>Restart and Clear</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="330" /> - <source>Active Name</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="332" /> - <source>Save Contents...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="334" /> - <source>Configure...</source> - <translation>Ayarlanıyor...</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="2067" /> - <location filename="../QScintilla/Shell.py" line="1846" /> - <location filename="../QScintilla/Shell.py" line="1845" /> - <location filename="../QScintilla/Shell.py" line="408" /> + <source>Special Commands Help</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2087" /> + <location filename="../QScintilla/Shell.py" line="1849" /> + <location filename="../QScintilla/Shell.py" line="1848" /> + <location filename="../QScintilla/Shell.py" line="391" /> <source>Project</source> <translation type="unfinished">Proje</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="806" /> + <location filename="../QScintilla/Shell.py" line="780" /> + <source>Clear History</source> + <translation type="unfinished">Geçmişi Sil</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="781" /> + <source>Shall the current history really be cleared?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="803" /> <source>Select History</source> <translation>Geçmişi Seç</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="807" /> + <location filename="../QScintilla/Shell.py" line="804" /> <source>Select the history entry to execute (most recent shown last).</source> <translation>geçmişte yapılanları göster (ençok gösterilenleri seç).</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="872" /> + <location filename="../QScintilla/Shell.py" line="878" /> <source>Passive Debug Mode</source> <translation>Pasif Hata Ayıklama Modu</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="873" /> + <location filename="../QScintilla/Shell.py" line="879" /> <source> Not connected</source> <translation> Bağlantı yok</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="876" /> + <location filename="../QScintilla/Shell.py" line="882" /> <source>No.</source> <translation>NO.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="878" /> + <location filename="../QScintilla/Shell.py" line="884" /> <source>{0} on {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="925" /> + <location filename="../QScintilla/Shell.py" line="931" /> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -72495,91 +72510,128 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="934" /> + <location filename="../QScintilla/Shell.py" line="940" /> <source>Exception "{0}" {1} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="954" /> + <location filename="../QScintilla/Shell.py" line="960" /> <source>Unspecified syntax error. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="957" /> + <location filename="../QScintilla/Shell.py" line="963" /> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="981" /> + <location filename="../QScintilla/Shell.py" line="987" /> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1063" /> + <location filename="../QScintilla/Shell.py" line="1069" /> <source>StdOut: {0}</source> <translation>Stdçıktı:{0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1071" /> + <location filename="../QScintilla/Shell.py" line="1077" /> <source>StdErr: {0}</source> <translation>stdhata: {0}</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="1097" /> + <location filename="../QScintilla/Shell.py" line="1103" /> <source><{0}> {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1892" /> + <location filename="../QScintilla/Shell.py" line="1886" /> <source>Available Virtual Environments: {0} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1935" /> - <location filename="../QScintilla/Shell.py" line="1899" /> + <location filename="../QScintilla/Shell.py" line="1955" /> + <location filename="../QScintilla/Shell.py" line="1892" /> <source>Current Virtual Environment: '{0}' </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2207" /> + <location filename="../QScintilla/Shell.py" line="1910" /> + <source>Error: Argument must be an integer value. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1927" /> + <source>Error: Command '{0}' is not supported. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2227" /> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2208" /> + <location filename="../QScintilla/Shell.py" line="2228" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> bir dosya değil.</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2451" /> - <location filename="../QScintilla/Shell.py" line="2437" /> - <location filename="../QScintilla/Shell.py" line="2416" /> + <location filename="../QScintilla/Shell.py" line="2471" /> + <location filename="../QScintilla/Shell.py" line="2457" /> + <location filename="../QScintilla/Shell.py" line="2436" /> <source>Save Shell Contents</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2418" /> - <source>Text Files (*.txt);;All Files (*)</source> - <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation> - </message> - <message> <location filename="../QScintilla/Shell.py" line="2438" /> + <source>Text Files (*.txt);;All Files (*)</source> + <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2458" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p><b>{0}</b> dosyası halen mevcut. Üzerine yazılsın mı?</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2452" /> + <location filename="../QScintilla/Shell.py" line="2472" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished"><p>Dosya <b>{0}</b> kaydedilemiyor.</p><p>Sebep: {1}</p></translation> </message> + <message> + <location filename="../QScintilla/Shell.py" line="2486" /> + <source><tr><td>%restart</td><td>Kill the shell and start a new one.</td></tr><tr><td>%clear</td><td>Clear the display of the shell window.</td></tr><tr><td>%start [environment]</td><td>Start a shell for a virtual environment with the given name. If no name if given, a default shell is started.</td></tr><tr><td>%envs<br/>%environments</td><td>Show a list of known virtual environment names.</td></tr><tr><td>%which</td><td>Show the name of the active virtual environment.</td></tr><tr><td>%hist [n]<br/>%history [n]</td><td>Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.</td></tr><tr><td>%shist<br/>%shistory<br/>%select_history</td><td>Select a command from the history.</td></tr><tr><td>%chist<br/>%chistory<br/>%clear_history</td><td>Clear the current history after confirmation.</td></tr><tr><td>%help</td><td>Show this help text.</td></tr></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2508" /> + <source><tr><td>%quit<br/>%quit()<br/>%exit<br/>%exit()</td><td>Exit the application.</td></tr></table><p>These commands are available through the window menus as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2516" /> + <source></table><p>These commands are available through the context menu as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2523" /> + <source>Shell Special Commands</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2524" /> + <source>The shell supports these special commands:</source> + <translation type="unfinished" /> + </message> </context> <context> <name>ShellHistoryDialog</name>
--- a/src/eric7/i18n/eric7_zh_CN.ts Sun Sep 03 13:54:22 2023 +0200 +++ b/src/eric7/i18n/eric7_zh_CN.ts Sun Sep 03 17:35:15 2023 +0200 @@ -12478,996 +12478,996 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3332" /> - <location filename="../QScintilla/Editor.py" line="428" /> - <location filename="../QScintilla/Editor.py" line="413" /> + <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="414" /> <source>Open File</source> <translation>打开文件</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="414" /> + <location filename="../QScintilla/Editor.py" line="415" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="429" /> + <location filename="../QScintilla/Editor.py" line="430" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>文件 <b>{0}</b> 的大小为 <b>{1} KB</b>。确认要读取它?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="526" /> + <location filename="../QScintilla/Editor.py" line="527" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>源代码编辑器窗口</b><p>该窗口用于显示和编辑源文件。可以打开任意多个窗口。文件名显示在窗口标题栏中。</p><p>要设置断点只需在行号与折叠标记之间的空白处点击即可。通过页边空白的上下文菜单可进行编辑。</p><p>要设置书签只需按住 Shift 键再在行号与折叠标记之间的空白处点击即可。</p><p>以上行为都可能通过上下文菜单进行反转。</p><p>按住 Ctrl 再语法错误标记上点击可显示该错误的部分信息。</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="890" /> + <location filename="../QScintilla/Editor.py" line="891" /> <source>Undo</source> <translation>撤消</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="893" /> + <location filename="../QScintilla/Editor.py" line="894" /> <source>Redo</source> <translation>重做</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="896" /> + <location filename="../QScintilla/Editor.py" line="897" /> <source>Revert to last saved state</source> <translation>还原到最后保存的状态</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="900" /> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Cut</source> <translation>剪切</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="903" /> + <location filename="../QScintilla/Editor.py" line="904" /> <source>Copy</source> <translation>复制</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="906" /> + <location filename="../QScintilla/Editor.py" line="907" /> <source>Paste</source> <translation>粘贴</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="913" /> <source>Indent</source> <translation>缩进</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="917" /> + <location filename="../QScintilla/Editor.py" line="918" /> <source>Unindent</source> <translation>取消缩进</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="922" /> + <location filename="../QScintilla/Editor.py" line="923" /> <source>Comment</source> <translation>注释</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="927" /> + <location filename="../QScintilla/Editor.py" line="928" /> <source>Uncomment</source> <translation>取消注释</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="9150" /> - <location filename="../QScintilla/Editor.py" line="932" /> + <location filename="../QScintilla/Editor.py" line="9158" /> + <location filename="../QScintilla/Editor.py" line="933" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="935" /> - <source>Select to brace</source> - <translation>选择括号内容</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="936" /> - <source>Select all</source> - <translation>全选</translation> + <source>Select to brace</source> + <translation>选择括号内容</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="937" /> + <source>Select all</source> + <translation>全选</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="938" /> <source>Deselect all</source> <translation>全部取消选择</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939" /> + <location filename="../QScintilla/Editor.py" line="940" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="951" /> + <location filename="../QScintilla/Editor.py" line="952" /> <source>Use Monospaced Font</source> <translation>使用单空格字体</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="957" /> <source>Autosave enabled</source> <translation>允许自动保存</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="962" /> <source>Typing aids enabled</source> <translation>允许输入辅助</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="969" /> + <location filename="../QScintilla/Editor.py" line="970" /> <source>Automatic Completion enabled</source> <translation>允许自动补全</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="978" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Calltip</source> <translation>调用提示</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="981" /> + <location filename="../QScintilla/Editor.py" line="982" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="996" /> + <location filename="../QScintilla/Editor.py" line="997" /> <source>New Document View</source> <translation>新建文档视图</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1001" /> + <location filename="../QScintilla/Editor.py" line="1002" /> <source>New Document View (with new split)</source> <translation>新建文档视图(在新拆分页中)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Save</source> <translation>保存</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1013" /> + <location filename="../QScintilla/Editor.py" line="1014" /> <source>Save As...</source> <translation>另存为…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1018" /> + <location filename="../QScintilla/Editor.py" line="1019" /> <source>Save Copy...</source> <translation type="unfinished">保存副本…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1040" /> - <location filename="../QScintilla/Editor.py" line="1037" /> + <location filename="../QScintilla/Editor.py" line="1041" /> + <location filename="../QScintilla/Editor.py" line="1038" /> <source>Complete</source> <translation>补全</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1044" /> + <location filename="../QScintilla/Editor.py" line="1045" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1047" /> + <location filename="../QScintilla/Editor.py" line="1048" /> <source>Complete from Document</source> <translation type="unfinished">从文档</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1049" /> + <location filename="../QScintilla/Editor.py" line="1050" /> <source>Complete from APIs</source> <translation type="unfinished">从 APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052" /> + <location filename="../QScintilla/Editor.py" line="1053" /> <source>Complete from Document and APIs</source> <translation type="unfinished">从文档和 APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1066" /> + <location filename="../QScintilla/Editor.py" line="1067" /> <source>Check</source> <translation>检查</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1077" /> + <location filename="../QScintilla/Editor.py" line="1078" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1083" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> + <location filename="../QScintilla/Editor.py" line="1089" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1092" /> + <location filename="../QScintilla/Editor.py" line="1093" /> <source>Check Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1096" /> + <location filename="../QScintilla/Editor.py" line="1097" /> <source>Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1105" /> + <location filename="../QScintilla/Editor.py" line="1106" /> <source>isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1110" /> + <location filename="../QScintilla/Editor.py" line="1111" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1114" /> + <location filename="../QScintilla/Editor.py" line="1115" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1130" /> + <location filename="../QScintilla/Editor.py" line="1131" /> <source>Tools</source> <translation>工具</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1141" /> + <location filename="../QScintilla/Editor.py" line="1142" /> <source>Show</source> <translation>显示</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1143" /> + <location filename="../QScintilla/Editor.py" line="1144" /> <source>Code metrics...</source> <translation>代码度量…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1145" /> + <location filename="../QScintilla/Editor.py" line="1146" /> <source>Code coverage...</source> <translation>代码覆盖率…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1148" /> + <location filename="../QScintilla/Editor.py" line="1149" /> <source>Show code coverage annotations</source> <translation>显示代码覆盖率注解</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1151" /> + <location filename="../QScintilla/Editor.py" line="1152" /> <source>Hide code coverage annotations</source> <translation>隐藏代码覆盖率注解</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1155" /> + <location filename="../QScintilla/Editor.py" line="1156" /> <source>Profile data...</source> <translation>剖析数据…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1169" /> + <location filename="../QScintilla/Editor.py" line="1170" /> <source>Diagrams</source> <translation>图表</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1171" /> - <source>Class Diagram...</source> - <translation>类图…</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1172" /> - <source>Package Diagram...</source> - <translation>程序包图…</translation> + <source>Class Diagram...</source> + <translation>类图…</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1173" /> + <source>Package Diagram...</source> + <translation>程序包图…</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1174" /> <source>Imports Diagram...</source> <translation>引用图…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1175" /> + <location filename="../QScintilla/Editor.py" line="1176" /> <source>Application Diagram...</source> <translation>应用程序图…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1180" /> + <location filename="../QScintilla/Editor.py" line="1181" /> <source>Load Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1195" /> + <location filename="../QScintilla/Editor.py" line="1196" /> <source>Languages</source> <translation>语言</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1199" /> + <location filename="../QScintilla/Editor.py" line="1200" /> <source>Text</source> <translation type="unfinished">文本</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1222" /> + <location filename="../QScintilla/Editor.py" line="1223" /> <source>Guessed</source> <translation>猜测</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1551" /> - <location filename="../QScintilla/Editor.py" line="1226" /> + <location filename="../QScintilla/Editor.py" line="1552" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>Alternatives</source> <translation>备选</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1243" /> + <location filename="../QScintilla/Editor.py" line="1244" /> <source>Encodings</source> <translation>编码</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1266" /> + <location filename="../QScintilla/Editor.py" line="1267" /> <source>Re-Open With Encoding</source> <translation>使用指定编码重新打开</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1286" /> + <location filename="../QScintilla/Editor.py" line="1287" /> <source>End-of-Line Type</source> <translation>行尾类型</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1290" /> + <location filename="../QScintilla/Editor.py" line="1291" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1296" /> + <location filename="../QScintilla/Editor.py" line="1297" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1302" /> + <location filename="../QScintilla/Editor.py" line="1303" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1320" /> + <location filename="../QScintilla/Editor.py" line="1321" /> <source>Spelling</source> <translation type="unfinished">拼写法</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8268" /> - <location filename="../QScintilla/Editor.py" line="1328" /> + <location filename="../QScintilla/Editor.py" line="8276" /> + <location filename="../QScintilla/Editor.py" line="1329" /> <source>Check spelling...</source> <translation>正在进行拼写检查…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1333" /> + <location filename="../QScintilla/Editor.py" line="1334" /> <source>Check spelling of selection...</source> <translation>正在对所选内容进行拼写检查…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1337" /> + <location filename="../QScintilla/Editor.py" line="1338" /> <source>Remove from dictionary</source> <translation>从词典里移除</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1354" /> + <location filename="../QScintilla/Editor.py" line="1355" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1358" /> + <location filename="../QScintilla/Editor.py" line="1359" /> <source>No Language</source> <translation>无语言</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1385" /> + <location filename="../QScintilla/Editor.py" line="1386" /> <source>Toggle bookmark</source> <translation>切换书签</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1387" /> + <location filename="../QScintilla/Editor.py" line="1388" /> <source>Next bookmark</source> <translation>下一个书签</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1390" /> + <location filename="../QScintilla/Editor.py" line="1391" /> <source>Previous bookmark</source> <translation>上一个书签</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1393" /> + <location filename="../QScintilla/Editor.py" line="1394" /> <source>Clear all bookmarks</source> <translation>清除所有书签</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1404" /> + <location filename="../QScintilla/Editor.py" line="1405" /> <source>Toggle breakpoint</source> <translation>切换断点</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1407" /> + <location filename="../QScintilla/Editor.py" line="1408" /> <source>Toggle temporary breakpoint</source> <translation>切换临时断点</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1410" /> + <location filename="../QScintilla/Editor.py" line="1411" /> <source>Edit breakpoint...</source> <translation>编辑断点…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5927" /> - <location filename="../QScintilla/Editor.py" line="1413" /> + <location filename="../QScintilla/Editor.py" line="5928" /> + <location filename="../QScintilla/Editor.py" line="1414" /> <source>Enable breakpoint</source> <translation>允许断点</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1416" /> + <location filename="../QScintilla/Editor.py" line="1417" /> <source>Next breakpoint</source> <translation>下一个断点</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1419" /> + <location filename="../QScintilla/Editor.py" line="1420" /> <source>Previous breakpoint</source> <translation>上一个断点</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1422" /> + <location filename="../QScintilla/Editor.py" line="1423" /> <source>Clear all breakpoints</source> <translation>清除所有断点</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1433" /> + <location filename="../QScintilla/Editor.py" line="1434" /> <source>Toggle all folds</source> <translation type="unfinished">开关所有折叠</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1438" /> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Toggle all folds (including children)</source> <translation type="unfinished">开关所有折叠(包含子项)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1441" /> + <location filename="../QScintilla/Editor.py" line="1442" /> <source>Toggle current fold</source> <translation type="unfinished">开关当前折叠</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1445" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Expand (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1449" /> + <location filename="../QScintilla/Editor.py" line="1450" /> <source>Collapse (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1454" /> + <location filename="../QScintilla/Editor.py" line="1455" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1465" /> + <location filename="../QScintilla/Editor.py" line="1466" /> <source>Goto syntax error</source> <translation>转到语法错误处</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> + <location filename="../QScintilla/Editor.py" line="1469" /> <source>Show syntax error message</source> <translation>显示语法错误消息</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> + <location filename="../QScintilla/Editor.py" line="1472" /> <source>Clear syntax error</source> <translation>清除语法错误</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1475" /> + <location filename="../QScintilla/Editor.py" line="1476" /> <source>Next warning</source> <translation>下一个警告</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1478" /> + <location filename="../QScintilla/Editor.py" line="1479" /> <source>Previous warning</source> <translation>上一个警告</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1481" /> + <location filename="../QScintilla/Editor.py" line="1482" /> <source>Show warning message</source> <translation>显示警告信息</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1484" /> + <location filename="../QScintilla/Editor.py" line="1485" /> <source>Clear warnings</source> <translation>清空警告</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1488" /> + <location filename="../QScintilla/Editor.py" line="1489" /> <source>Next uncovered line</source> <translation>下一个未覆盖行</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1491" /> + <location filename="../QScintilla/Editor.py" line="1492" /> <source>Previous uncovered line</source> <translation>上一个未覆盖行</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1495" /> + <location filename="../QScintilla/Editor.py" line="1496" /> <source>Next task</source> <translation>下一个任务</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1498" /> + <location filename="../QScintilla/Editor.py" line="1499" /> <source>Previous task</source> <translation>上一个任务</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1502" /> + <location filename="../QScintilla/Editor.py" line="1503" /> <source>Next change</source> <translation>下一个更改</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1505" /> + <location filename="../QScintilla/Editor.py" line="1506" /> <source>Previous change</source> <translation>上一个更改</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1508" /> + <location filename="../QScintilla/Editor.py" line="1509" /> <source>Clear changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1537" /> - <location filename="../QScintilla/Editor.py" line="1528" /> - <source>Export source</source> - <translation>导出源代码</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1529" /> - <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1538" /> + <location filename="../QScintilla/Editor.py" line="1529" /> + <source>Export source</source> + <translation>导出源代码</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1530" /> + <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1539" /> <source>No export format given. Aborting...</source> <translation>没有给定导出格式。终止…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1548" /> + <location filename="../QScintilla/Editor.py" line="1549" /> <source>Alternatives ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1571" /> - <source>Pygments Lexer</source> - <translation>Pygments 词法分析器</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1572" /> + <source>Pygments Lexer</source> + <translation>Pygments 词法分析器</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1573" /> <source>Select the Pygments lexer to apply.</source> <translation>选择要应用的 Pygments 词法分析器。</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2120" /> - <source>Modification of Read Only file</source> - <translation>只读文件的改变</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2121" /> + <source>Modification of Read Only file</source> + <translation>只读文件的改变</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2122" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>试图改变只读文件。请先保存到另一个文件中。</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2556" /> - <source>Add Breakpoint</source> - <translation type="unfinished">添加断点</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2557" /> + <source>Add Breakpoint</source> + <translation type="unfinished">添加断点</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2558" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2890" /> + <location filename="../QScintilla/Editor.py" line="2891" /> <source>Printing...</source> <translation>打印中…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2907" /> + <location filename="../QScintilla/Editor.py" line="2908" /> <source>Printing completed</source> <translation>打印已完成</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2909" /> + <location filename="../QScintilla/Editor.py" line="2910" /> <source>Error while printing</source> <translation>打印时出错</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2912" /> + <location filename="../QScintilla/Editor.py" line="2913" /> <source>Printing aborted</source> <translation>打印失败</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3274" /> - <source>File Modified</source> - <translation>文件已改变</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3275" /> + <source>File Modified</source> + <translation>文件已改变</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3276" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>文件 <b>{0}</b> 有未保存的更改。</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3333" /> + <location filename="../QScintilla/Editor.py" line="3334" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>文件 <b>{0}</b> 无法打开。</p><p>原因:{1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3509" /> - <location filename="../QScintilla/Editor.py" line="3490" /> - <location filename="../QScintilla/Editor.py" line="3452" /> - <source>Save File</source> - <translation>保存文件</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="3453" /> - <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> - <translation><p>文件 <b>{0}</b> 无法保存。<br />原因:{1}</p></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3510" /> + <location filename="../QScintilla/Editor.py" line="3491" /> + <location filename="../QScintilla/Editor.py" line="3453" /> + <source>Save File</source> + <translation>保存文件</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3454" /> + <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> + <translation><p>文件 <b>{0}</b> 无法保存。<br />原因:{1}</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3511" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>文件 <b>{0}</b> 已经存在。是否覆盖?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3644" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="3645" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3646" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5101" /> - <source>Autocompletion</source> - <translation>自动完成</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5102" /> + <source>Autocompletion</source> + <translation>自动完成</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5103" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>自动完成无效,没有设定自动完成源。</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5230" /> - <source>Auto-Completion Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5231" /> + <source>Auto-Completion Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5232" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523" /> - <source>Call-Tips Provider</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="5524" /> + <source>Call-Tips Provider</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5525" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5931" /> + <location filename="../QScintilla/Editor.py" line="5932" /> <source>Disable breakpoint</source> <translation>去除断点</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6310" /> + <location filename="../QScintilla/Editor.py" line="6315" /> <source>Code Coverage</source> <translation>代码覆盖率</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6311" /> + <location filename="../QScintilla/Editor.py" line="6316" /> <source>Please select a coverage file</source> <translation>请选择一个覆盖率文件</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6386" /> - <location filename="../QScintilla/Editor.py" line="6378" /> + <location filename="../QScintilla/Editor.py" line="6391" /> + <location filename="../QScintilla/Editor.py" line="6383" /> <source>Show Code Coverage Annotations</source> <translation>显示代码覆盖率注解</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6379" /> + <location filename="../QScintilla/Editor.py" line="6384" /> <source>All lines have been covered.</source> <translation>所有行均被已覆盖。</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387" /> + <location filename="../QScintilla/Editor.py" line="6392" /> <source>There is no coverage file available.</source> <translation>没有有效的覆盖率文件。</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6491" /> + <location filename="../QScintilla/Editor.py" line="6496" /> <source>Profile Data</source> <translation>剖析数据</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6492" /> + <location filename="../QScintilla/Editor.py" line="6497" /> <source>Please select a profile file</source> <translation>请选择一个剖析文件</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6653" /> - <location filename="../QScintilla/Editor.py" line="6647" /> + <location filename="../QScintilla/Editor.py" line="6658" /> + <location filename="../QScintilla/Editor.py" line="6652" /> <source>Syntax Error</source> <translation>语法错误</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6654" /> + <location filename="../QScintilla/Editor.py" line="6659" /> <source>No syntax error message available.</source> <translation>语法错误消息无效。</translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="6873" /> <location filename="../QScintilla/Editor.py" line="6867" /> - <location filename="../QScintilla/Editor.py" line="6861" /> <source>Warning</source> <translation>警告</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6867" /> + <location filename="../QScintilla/Editor.py" line="6873" /> <source>No warning messages available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6937" /> <source>Style: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6934" /> + <location filename="../QScintilla/Editor.py" line="6942" /> <source>Warning: {0}</source> <translation>警告:{0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6941" /> + <location filename="../QScintilla/Editor.py" line="6949" /> <source>Error: {0}</source> <translation>错误:{0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Macro Name</source> <translation>宏名称</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7048" /> + <location filename="../QScintilla/Editor.py" line="7056" /> <source>Select a macro name:</source> <translation>选择一个宏名称:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7074" /> + <location filename="../QScintilla/Editor.py" line="7082" /> <source>Load macro file</source> <translation>输入宏文件</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7120" /> - <location filename="../QScintilla/Editor.py" line="7076" /> + <location filename="../QScintilla/Editor.py" line="7128" /> + <location filename="../QScintilla/Editor.py" line="7084" /> <source>Macro files (*.macro)</source> <translation>宏文件 (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7098" /> - <location filename="../QScintilla/Editor.py" line="7088" /> + <location filename="../QScintilla/Editor.py" line="7106" /> + <location filename="../QScintilla/Editor.py" line="7096" /> <source>Error loading macro</source> <translation>载入宏文件出错</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7089" /> + <location filename="../QScintilla/Editor.py" line="7097" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7099" /> + <location filename="../QScintilla/Editor.py" line="7107" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7118" /> + <location filename="../QScintilla/Editor.py" line="7126" /> <source>Save macro file</source> <translation>保存宏文件</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7136" /> + <location filename="../QScintilla/Editor.py" line="7144" /> <source>Save macro</source> <translation>保存宏</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7137" /> + <location filename="../QScintilla/Editor.py" line="7145" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>宏文件 <b>{0}</b> 已经存在。是否覆盖?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7152" /> + <location filename="../QScintilla/Editor.py" line="7160" /> <source>Error saving macro</source> <translation>保存宏出错</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7161" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7166" /> + <location filename="../QScintilla/Editor.py" line="7174" /> <source>Start Macro Recording</source> <translation>开始宏录制</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7167" /> + <location filename="../QScintilla/Editor.py" line="7175" /> <source>Macro recording is already active. Start new?</source> <translation>宏录制已激活。开始录制新宏?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7193" /> + <location filename="../QScintilla/Editor.py" line="7201" /> <source>Macro Recording</source> <translation>宏录制</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7194" /> + <location filename="../QScintilla/Editor.py" line="7202" /> <source>Enter name of the macro:</source> <translation>输入宏名称:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7344" /> + <location filename="../QScintilla/Editor.py" line="7352" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7350" /> + <location filename="../QScintilla/Editor.py" line="7358" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>警告:</b>您在重新打开时将丢失所有更改。</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7357" /> + <location filename="../QScintilla/Editor.py" line="7365" /> <source>File changed</source> <translation>文件已改变</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7407" /> + <location filename="../QScintilla/Editor.py" line="7415" /> <source>{0} (ro)</source> <translation>{0}(只读)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7712" /> + <location filename="../QScintilla/Editor.py" line="7720" /> <source>Drop Error</source> <translation>降落误差</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7713" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> 不是一个文件。</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7733" /> + <location filename="../QScintilla/Editor.py" line="7741" /> <source>Resources</source> <translation>资源</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7735" /> + <location filename="../QScintilla/Editor.py" line="7743" /> <source>Add file...</source> <translation>添加文件…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7736" /> + <location filename="../QScintilla/Editor.py" line="7744" /> <source>Add files...</source> <translation>添加文件…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7737" /> + <location filename="../QScintilla/Editor.py" line="7745" /> <source>Add aliased file...</source> <translation>添加别名文件…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7739" /> + <location filename="../QScintilla/Editor.py" line="7747" /> <source>Add localized resource...</source> <translation>添加本地资源…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7742" /> + <location filename="../QScintilla/Editor.py" line="7750" /> <source>Add resource frame</source> <translation>添加资源结构</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7761" /> + <location filename="../QScintilla/Editor.py" line="7769" /> <source>Add file resource</source> <translation>添加文件资源</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7775" /> + <location filename="../QScintilla/Editor.py" line="7783" /> <source>Add file resources</source> <translation>添加多个文件资源</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7799" /> - <location filename="../QScintilla/Editor.py" line="7793" /> + <location filename="../QScintilla/Editor.py" line="7807" /> + <location filename="../QScintilla/Editor.py" line="7801" /> <source>Add aliased file resource</source> <translation>添加别名文件资源</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7800" /> + <location filename="../QScintilla/Editor.py" line="7808" /> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7875" /> + <location filename="../QScintilla/Editor.py" line="7883" /> <source>Package Diagram</source> <translation>程序包图</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7876" /> + <location filename="../QScintilla/Editor.py" line="7884" /> <source>Include class attributes?</source> <translation>包含类属性?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7896" /> + <location filename="../QScintilla/Editor.py" line="7904" /> <source>Imports Diagram</source> <translation>引用图</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7897" /> + <location filename="../QScintilla/Editor.py" line="7905" /> <source>Include imports from external modules?</source> <translation>从外部模块包含引用?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7916" /> + <location filename="../QScintilla/Editor.py" line="7924" /> <source>Application Diagram</source> <translation>应用程序图</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7917" /> + <location filename="../QScintilla/Editor.py" line="7925" /> <source>Include module names?</source> <translation>包含模块名?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8272" /> + <location filename="../QScintilla/Editor.py" line="8280" /> <source>Add to dictionary</source> <translation>添加到文件夹</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8274" /> + <location filename="../QScintilla/Editor.py" line="8282" /> <source>Ignore All</source> <translation>全部忽略</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8692" /> + <location filename="../QScintilla/Editor.py" line="8700" /> <source>Sort Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8693" /> + <location filename="../QScintilla/Editor.py" line="8701" /> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8786" /> + <location filename="../QScintilla/Editor.py" line="8794" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8787" /> + <location filename="../QScintilla/Editor.py" line="8795" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8883" /> + <location filename="../QScintilla/Editor.py" line="8891" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8889" /> + <location filename="../QScintilla/Editor.py" line="8897" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="8965" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8958" /> + <location filename="../QScintilla/Editor.py" line="8966" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -19929,38 +19929,38 @@ <context> <name>EricTextEditSearchWidget</name> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="115" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="116" /> <source>Find:</source> <translation type="unfinished">查找:</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="141" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="142" /> <source>Match case</source> <translation type="unfinished">匹配大小写</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="146" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="147" /> <source>Whole word</source> <translation type="unfinished">全部文字</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="156" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="157" /> <source>Press to find the previous occurrence</source> <translation type="unfinished">点击查找上一次出现</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="162" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="163" /> <source>Press to find the next occurrence</source> <translation type="unfinished">点击查找下一次出现</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="481" /> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="433" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="482" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="434" /> <source>'{0}' was not found.</source> <translation type="unfinished">”{0}“未找到。</translation> </message> <message> - <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="486" /> + <location filename="../EricWidgets/EricTextEditSearchWidget.py" line="487" /> <source>Match {0} of {1}</source> <translation type="unfinished" /> </message> @@ -33214,29 +33214,29 @@ <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="119" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="118" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="121" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="120" /> <source>Find Next</source> <translation type="unfinished">查找下一个</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="131" /> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="130" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="133" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="132" /> <source>Find Prev</source> <translation type="unfinished">查找上一个</translation> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="297" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="299" /> <source>'{0}' was not found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="417" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="419" /> <source>Replaced {0} occurrences.</source> <translation type="unfinished" /> </message> <message> - <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="423" /> + <location filename="../HexEdit/HexEditSearchReplaceWidget.py" line="425" /> <source>Nothing replaced because '{0}' was not found.</source> <translation type="unfinished" /> </message> @@ -71135,74 +71135,74 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="155" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="154" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="157" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="156" /> <source>Find Next</source> <translation>查找下一个</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="168" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="167" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="170" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="169" /> <source>Find Prev</source> <translation>查找上一个</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="181" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="180" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="183" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="182" /> <source>Replace and Search</source> <translation>替换和搜索</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="195" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="194" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="197" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="196" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="209" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="208" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="211" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="210" /> <source>Replace All</source> <translation>替换全部</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="297" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="299" /> <source>Press to find the next occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="304" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="306" /> <source>Press to find the previous occurrence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="311" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="313" /> <source>Press to replace the selection and search for the next occurence ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="321" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="323" /> <source>Press to replace the selection ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="328" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="330" /> <source>Press to replace all occurrences ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1114" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="665" /> - <location filename="../QScintilla/SearchReplaceWidget.py" line="627" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1123" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="674" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="636" /> <source>'{0}' was not found.</source> <translation>“{0}”未找到。</translation> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1267" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1276" /> <source>Replaced {0} occurrences.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/SearchReplaceWidget.py" line="1273" /> + <location filename="../QScintilla/SearchReplaceWidget.py" line="1282" /> <source>Nothing replaced because '{0}' was not found.</source> <translation type="unfinished" /> </message> @@ -71321,7 +71321,7 @@ <translation>匹配大小写</translation> </message> <message> - <location filename="../WebBrowser/SearchWidget.py" line="100" /> + <location filename="../WebBrowser/SearchWidget.py" line="101" /> <source>Expression was not found.</source> <translation>表达式未找到。</translation> </message> @@ -71336,7 +71336,7 @@ <translation type="unfinished">正则表达式</translation> </message> <message> - <location filename="../UI/SearchWidget.py" line="212" /> + <location filename="../UI/SearchWidget.py" line="213" /> <source>'{0}' was not found.</source> <translation>”{0}“未找到。</translation> </message> @@ -72637,143 +72637,158 @@ <context> <name>Shell</name> <message> - <location filename="../QScintilla/Shell.py" line="162" /> + <location filename="../QScintilla/Shell.py" line="164" /> <source>Shell - Passive</source> <translation>命令行 - 被动</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="164" /> + <location filename="../QScintilla/Shell.py" line="166" /> <source>Shell</source> <translation>命令行</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="168" /> - <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. '%quit' or '%exit' is used to exit the application. These commands (except '%environments', '%envs' and '%which') are available through the window menus as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="198" /> - <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. '%restart' kills the shell and starts a new one. '%clear' clears the display of the shell window. '%start' is used to start a shell for a virtual environment and should be followed by a virtual environment name. '%start' without a virtual environment name starts the default shell. Available virtual environments may be listed with the '%envs' or '%environments' commands. The active virtual environment can be questioned by the '%which' command. These commands (except '%environments' and '%envs') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="262" /> + <location filename="../QScintilla/Shell.py" line="170" /> + <source><b>The Shell Window</b><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="189" /> + <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.</p><p>The shell has some special commands. Type '%help' to get a list of these commands.</p><p>Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="244" /> <source>Passive >>> </source> <translation>被动 >>></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="305" /> + <location filename="../QScintilla/Shell.py" line="287" /> <source>Start</source> <translation>开始</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="310" /> + <location filename="../QScintilla/Shell.py" line="292" /> <source>History</source> <translation>历史</translation> </message> <message> + <location filename="../QScintilla/Shell.py" line="293" /> + <source>Select entry</source> + <translation>选择条目</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="294" /> + <source>Show</source> + <translation>显示</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="306" /> + <location filename="../QScintilla/Shell.py" line="295" /> + <source>Clear</source> + <translation>清除</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="299" /> + <source>Cut</source> + <translation>剪切</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="300" /> + <source>Copy</source> + <translation>复制</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="301" /> + <source>Paste</source> + <translation>粘贴</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="304" /> + <source>Find</source> + <translation type="unfinished">查找</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="307" /> + <source>Restart</source> + <translation type="unfinished">重启</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="308" /> + <source>Restart and Clear</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="311" /> - <source>Select entry</source> - <translation>选择条目</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="312" /> - <source>Show</source> - <translation>显示</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="325" /> + <source>Active Name</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Shell.py" line="313" /> - <source>Clear</source> - <translation>清除</translation> + <source>Save Contents...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="315" /> + <source>Configure...</source> + <translation>配置…</translation> </message> <message> <location filename="../QScintilla/Shell.py" line="317" /> - <source>Cut</source> - <translation>剪切</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="318" /> - <source>Copy</source> - <translation>复制</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="319" /> - <source>Paste</source> - <translation>粘贴</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="323" /> - <source>Find</source> - <translation type="unfinished">查找</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="326" /> - <source>Restart</source> - <translation type="unfinished">重启</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="327" /> - <source>Restart and Clear</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="330" /> - <source>Active Name</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="332" /> - <source>Save Contents...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="334" /> - <source>Configure...</source> - <translation>配置…</translation> - </message> - <message> - <location filename="../QScintilla/Shell.py" line="2067" /> - <location filename="../QScintilla/Shell.py" line="1846" /> - <location filename="../QScintilla/Shell.py" line="1845" /> - <location filename="../QScintilla/Shell.py" line="408" /> + <source>Special Commands Help</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2087" /> + <location filename="../QScintilla/Shell.py" line="1849" /> + <location filename="../QScintilla/Shell.py" line="1848" /> + <location filename="../QScintilla/Shell.py" line="391" /> <source>Project</source> <translation type="unfinished">项目</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="806" /> + <location filename="../QScintilla/Shell.py" line="780" /> + <source>Clear History</source> + <translation type="unfinished">清除历史记录</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="781" /> + <source>Shall the current history really be cleared?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="803" /> <source>Select History</source> <translation>选择历史</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="807" /> + <location filename="../QScintilla/Shell.py" line="804" /> <source>Select the history entry to execute (most recent shown last).</source> <translation>选择历史条目以执行(最常用的显示在最后)。</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="872" /> + <location filename="../QScintilla/Shell.py" line="878" /> <source>Passive Debug Mode</source> <translation>被动调试模式</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="873" /> + <location filename="../QScintilla/Shell.py" line="879" /> <source> Not connected</source> <translation> 没有连接</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="876" /> + <location filename="../QScintilla/Shell.py" line="882" /> <source>No.</source> <translation>No.</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="878" /> + <location filename="../QScintilla/Shell.py" line="884" /> <source>{0} on {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="925" /> + <location filename="../QScintilla/Shell.py" line="931" /> <source>Exception "{0}" {1} File: {2}, Line: {3} @@ -72781,91 +72796,128 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="934" /> + <location filename="../QScintilla/Shell.py" line="940" /> <source>Exception "{0}" {1} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="954" /> + <location filename="../QScintilla/Shell.py" line="960" /> <source>Unspecified syntax error. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="957" /> + <location filename="../QScintilla/Shell.py" line="963" /> <source>Syntax error "{1}" in file {0} at line {2}, character {3}. </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="981" /> + <location filename="../QScintilla/Shell.py" line="987" /> <source>Signal "{0}" generated in file {1} at line {2}. Function: {3}({4})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1063" /> + <location filename="../QScintilla/Shell.py" line="1069" /> <source>StdOut: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1071" /> + <location filename="../QScintilla/Shell.py" line="1077" /> <source>StdErr: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1097" /> + <location filename="../QScintilla/Shell.py" line="1103" /> <source><{0}> {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1892" /> + <location filename="../QScintilla/Shell.py" line="1886" /> <source>Available Virtual Environments: {0} </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="1935" /> - <location filename="../QScintilla/Shell.py" line="1899" /> + <location filename="../QScintilla/Shell.py" line="1955" /> + <location filename="../QScintilla/Shell.py" line="1892" /> <source>Current Virtual Environment: '{0}' </source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2207" /> + <location filename="../QScintilla/Shell.py" line="1910" /> + <source>Error: Argument must be an integer value. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="1927" /> + <source>Error: Command '{0}' is not supported. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2227" /> <source>Drop Error</source> <translation>降落误差</translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2208" /> + <location filename="../QScintilla/Shell.py" line="2228" /> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"><p><b>{0}</b> 不是一个文件。</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2451" /> - <location filename="../QScintilla/Shell.py" line="2437" /> - <location filename="../QScintilla/Shell.py" line="2416" /> + <location filename="../QScintilla/Shell.py" line="2471" /> + <location filename="../QScintilla/Shell.py" line="2457" /> + <location filename="../QScintilla/Shell.py" line="2436" /> <source>Save Shell Contents</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Shell.py" line="2418" /> - <source>Text Files (*.txt);;All Files (*)</source> - <translation type="unfinished">文本文件 (*.txt);;所有文件 (*)</translation> - </message> - <message> <location filename="../QScintilla/Shell.py" line="2438" /> + <source>Text Files (*.txt);;All Files (*)</source> + <translation type="unfinished">文本文件 (*.txt);;所有文件 (*)</translation> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2458" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>文件 <b>{0}</b> 已经存在。是否覆盖?</p></translation> </message> <message> - <location filename="../QScintilla/Shell.py" line="2452" /> + <location filename="../QScintilla/Shell.py" line="2472" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished"><p>文件 <b>{0}</b> 无法保存。<br />原因:{1}</p></translation> </message> + <message> + <location filename="../QScintilla/Shell.py" line="2486" /> + <source><tr><td>%restart</td><td>Kill the shell and start a new one.</td></tr><tr><td>%clear</td><td>Clear the display of the shell window.</td></tr><tr><td>%start [environment]</td><td>Start a shell for a virtual environment with the given name. If no name if given, a default shell is started.</td></tr><tr><td>%envs<br/>%environments</td><td>Show a list of known virtual environment names.</td></tr><tr><td>%which</td><td>Show the name of the active virtual environment.</td></tr><tr><td>%hist [n]<br/>%history [n]</td><td>Show the most recent 'n' entries of the history. If 'n' is not given, show all entries.</td></tr><tr><td>%shist<br/>%shistory<br/>%select_history</td><td>Select a command from the history.</td></tr><tr><td>%chist<br/>%chistory<br/>%clear_history</td><td>Clear the current history after confirmation.</td></tr><tr><td>%help</td><td>Show this help text.</td></tr></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2508" /> + <source><tr><td>%quit<br/>%quit()<br/>%exit<br/>%exit()</td><td>Exit the application.</td></tr></table><p>These commands are available through the window menus as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2516" /> + <source></table><p>These commands are available through the context menu as well.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2523" /> + <source>Shell Special Commands</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Shell.py" line="2524" /> + <source>The shell supports these special commands:</source> + <translation type="unfinished" /> + </message> </context> <context> <name>ShellHistoryDialog</name>