Fri, 04 May 2012 20:06:17 +0200
Added the capability to search in the output of the shell window.
--- a/APIs/Python3/eric5.api Wed May 02 19:10:17 2012 +0200 +++ b/APIs/Python3/eric5.api Fri May 04 20:06:17 2012 +0200 @@ -6374,9 +6374,15 @@ eric5.QScintilla.Shell.Shell.paste?4() eric5.QScintilla.Shell.Shell.reloadHistory?4() eric5.QScintilla.Shell.Shell.saveHistory?4(clientType) +eric5.QScintilla.Shell.Shell.searchNext?4(txt, caseSensitive, wholeWord) +eric5.QScintilla.Shell.Shell.searchPrev?4(txt, caseSensitive, wholeWord) +eric5.QScintilla.Shell.Shell.searchStringFound?7 eric5.QScintilla.Shell.Shell.setDebuggerUI?4(ui) eric5.QScintilla.Shell.Shell.wheelEvent?4(evt) eric5.QScintilla.Shell.Shell?1(dbs, vm, parent=None) +eric5.QScintilla.Shell.ShellAssembly.shell?4() +eric5.QScintilla.Shell.ShellAssembly.showFind?4(txt="") +eric5.QScintilla.Shell.ShellAssembly?1(dbs, vm, horizontal=True, parent=None) eric5.QScintilla.ShellHistoryDialog.ShellHistoryDialog.getHistory?4() eric5.QScintilla.ShellHistoryDialog.ShellHistoryDialog.on_copyButton_clicked?4() eric5.QScintilla.ShellHistoryDialog.ShellHistoryDialog.on_deleteButton_clicked?4() @@ -6954,7 +6960,7 @@ eric5.UI.SearchWidget.SearchWidget.searchPrevious?7 eric5.UI.SearchWidget.SearchWidget.searchStringFound?4(found) eric5.UI.SearchWidget.SearchWidget.showFind?4(txt="") -eric5.UI.SearchWidget.SearchWidget?1(mainWindow, parent=None) +eric5.UI.SearchWidget.SearchWidget?1(mainWindow, parent=None, spacer=True) eric5.UI.SplashScreen.NoneSplashScreen.clearMessage?4() eric5.UI.SplashScreen.NoneSplashScreen.finish?4(widget) eric5.UI.SplashScreen.NoneSplashScreen.showMessage?4(msg)
--- a/APIs/Python3/eric5.bas Wed May 02 19:10:17 2012 +0200 +++ b/APIs/Python3/eric5.bas Fri May 04 20:06:17 2012 +0200 @@ -516,6 +516,7 @@ SessionReader XMLStreamReaderBase SessionWriter XMLStreamWriterBase Shell QsciScintillaCompat +ShellAssembly QWidget ShellHistoryDialog QDialog Ui_ShellHistoryDialog ShellPage ConfigurationPageBase Ui_ShellPage ShortcutDialog QDialog Ui_ShortcutDialog
--- a/Debugger/DebugViewer.py Wed May 02 19:10:17 2012 +0200 +++ b/Debugger/DebugViewer.py Fri May 04 20:06:17 2012 +0200 @@ -25,7 +25,7 @@ from PyQt4.QtGui import QWidget, QVBoxLayout, QHBoxLayout, QLineEdit, QSizePolicy, \ QPushButton, QComboBox, QLabel, QTreeWidget, QTreeWidgetItem, QHeaderView -from QScintilla.Shell import Shell +from QScintilla.Shell import ShellAssembly from .VariablesViewer import VariablesViewer from .ExceptionLogger import ExceptionLogger from .BreakPointViewer import BreakPointViewer @@ -83,8 +83,9 @@ self.embeddedShell = embeddedShell if embeddedShell: # add the interpreter shell - self.shell = Shell(debugServer, vm) - index = self.__tabWidget.addTab(self.shell, + self.shellAssembly = ShellAssembly(debugServer, vm, False) + self.shell = self.shellAssembly.shell() + index = self.__tabWidget.addTab(self.shellAssembly, UI.PixmapCache.getIcon("shell.png"), '') self.__tabWidget.setTabToolTip(index, self.shell.windowTitle())
--- a/Documentation/Help/source.qhp Wed May 02 19:10:17 2012 +0200 +++ b/Documentation/Help/source.qhp Fri May 04 20:06:17 2012 +0200 @@ -8388,6 +8388,7 @@ <keyword name="Shell.__completionListSelected" id="Shell.__completionListSelected" ref="eric5.QScintilla.Shell.html#Shell.__completionListSelected" /> <keyword name="Shell.__configure" id="Shell.__configure" ref="eric5.QScintilla.Shell.html#Shell.__configure" /> <keyword name="Shell.__executeCommand" id="Shell.__executeCommand" ref="eric5.QScintilla.Shell.html#Shell.__executeCommand" /> + <keyword name="Shell.__find" id="Shell.__find" ref="eric5.QScintilla.Shell.html#Shell.__find" /> <keyword name="Shell.__getBanner" id="Shell.__getBanner" ref="eric5.QScintilla.Shell.html#Shell.__getBanner" /> <keyword name="Shell.__getEndPos" id="Shell.__getEndPos" ref="eric5.QScintilla.Shell.html#Shell.__getEndPos" /> <keyword name="Shell.__initialise" id="Shell.__initialise" ref="eric5.QScintilla.Shell.html#Shell.__initialise" /> @@ -8402,6 +8403,8 @@ <keyword name="Shell.__resetAndClear" id="Shell.__resetAndClear" ref="eric5.QScintilla.Shell.html#Shell.__resetAndClear" /> <keyword name="Shell.__rsearchHistory" id="Shell.__rsearchHistory" ref="eric5.QScintilla.Shell.html#Shell.__rsearchHistory" /> <keyword name="Shell.__searchHistory" id="Shell.__searchHistory" ref="eric5.QScintilla.Shell.html#Shell.__searchHistory" /> + <keyword name="Shell.__searchNext" id="Shell.__searchNext" ref="eric5.QScintilla.Shell.html#Shell.__searchNext" /> + <keyword name="Shell.__searchPrev" id="Shell.__searchPrev" ref="eric5.QScintilla.Shell.html#Shell.__searchPrev" /> <keyword name="Shell.__selectHistory" id="Shell.__selectHistory" ref="eric5.QScintilla.Shell.html#Shell.__selectHistory" /> <keyword name="Shell.__setAutoCompletion" id="Shell.__setAutoCompletion" ref="eric5.QScintilla.Shell.html#Shell.__setAutoCompletion" /> <keyword name="Shell.__setCallTips" id="Shell.__setCallTips" ref="eric5.QScintilla.Shell.html#Shell.__setCallTips" /> @@ -8441,8 +8444,14 @@ <keyword name="Shell.paste" id="Shell.paste" ref="eric5.QScintilla.Shell.html#Shell.paste" /> <keyword name="Shell.reloadHistory" id="Shell.reloadHistory" ref="eric5.QScintilla.Shell.html#Shell.reloadHistory" /> <keyword name="Shell.saveHistory" id="Shell.saveHistory" ref="eric5.QScintilla.Shell.html#Shell.saveHistory" /> + <keyword name="Shell.searchNext" id="Shell.searchNext" ref="eric5.QScintilla.Shell.html#Shell.searchNext" /> + <keyword name="Shell.searchPrev" id="Shell.searchPrev" ref="eric5.QScintilla.Shell.html#Shell.searchPrev" /> <keyword name="Shell.setDebuggerUI" id="Shell.setDebuggerUI" ref="eric5.QScintilla.Shell.html#Shell.setDebuggerUI" /> <keyword name="Shell.wheelEvent" id="Shell.wheelEvent" ref="eric5.QScintilla.Shell.html#Shell.wheelEvent" /> + <keyword name="ShellAssembly" id="ShellAssembly" ref="eric5.QScintilla.Shell.html#ShellAssembly" /> + <keyword name="ShellAssembly (Constructor)" id="ShellAssembly (Constructor)" ref="eric5.QScintilla.Shell.html#ShellAssembly.__init__" /> + <keyword name="ShellAssembly.shell" id="ShellAssembly.shell" ref="eric5.QScintilla.Shell.html#ShellAssembly.shell" /> + <keyword name="ShellAssembly.showFind" id="ShellAssembly.showFind" ref="eric5.QScintilla.Shell.html#ShellAssembly.showFind" /> <keyword name="ShellHistoryDialog" id="ShellHistoryDialog" ref="eric5.QScintilla.ShellHistoryDialog.html#ShellHistoryDialog" /> <keyword name="ShellHistoryDialog (Constructor)" id="ShellHistoryDialog (Constructor)" ref="eric5.QScintilla.ShellHistoryDialog.html#ShellHistoryDialog.__init__" /> <keyword name="ShellHistoryDialog (Module)" id="ShellHistoryDialog (Module)" ref="eric5.QScintilla.ShellHistoryDialog.html" />
--- a/Documentation/Source/eric5.QScintilla.Shell.html Wed May 02 19:10:17 2012 +0200 +++ b/Documentation/Source/eric5.QScintilla.Shell.html Fri May 04 20:06:17 2012 +0200 @@ -33,6 +33,9 @@ <tr> <td><a href="#Shell">Shell</a></td> <td>Class implementing a graphical Python shell.</td> +</tr><tr> +<td><a href="#ShellAssembly">ShellAssembly</a></td> +<td>Class implementing the containing widget for the shell.</td> </tr> </table> <h3>Functions</h3> @@ -47,7 +50,13 @@ </p><p> A user can enter commands that are executed in the remote Python interpreter. -</p> +</p><h3>Signals</h3> +<dl> +<dt>searchStringFound(found)</dt> +<dd> +emitted to indicate the search result (boolean) +</dd> +</dl> <h3>Derived from</h3> QsciScintillaCompat <h3>Class Attributes</h3> @@ -160,6 +169,9 @@ <td><a href="#Shell.__executeCommand">__executeCommand</a></td> <td>Private slot to execute a command.</td> </tr><tr> +<td><a href="#Shell.__find">__find</a></td> +<td>Private slot to show the find widget.</td> +</tr><tr> <td><a href="#Shell.__getBanner">__getBanner</a></td> <td>Private method to get the banner for the remote interpreter.</td> </tr><tr> @@ -202,6 +214,12 @@ <td><a href="#Shell.__searchHistory">__searchHistory</a></td> <td>Private method used to search the history.</td> </tr><tr> +<td><a href="#Shell.__searchNext">__searchNext</a></td> +<td>Private method to search for the next occurrence.</td> +</tr><tr> +<td><a href="#Shell.__searchPrev">__searchPrev</a></td> +<td>Private method to search for the next occurrence.</td> +</tr><tr> <td><a href="#Shell.__selectHistory">__selectHistory</a></td> <td>Private slot to select a history entry to execute.</td> </tr><tr> @@ -319,6 +337,12 @@ <td><a href="#Shell.saveHistory">saveHistory</a></td> <td>Public method to save the history for the given client type.</td> </tr><tr> +<td><a href="#Shell.searchNext">searchNext</a></td> +<td>Public method to search the next occurrence of the given text.</td> +</tr><tr> +<td><a href="#Shell.searchPrev">searchPrev</a></td> +<td>Public method to search the previous occurrence of the given text.</td> +</tr><tr> <td><a href="#Shell.setDebuggerUI">setDebuggerUI</a></td> <td>Public method to set the debugger UI.</td> </tr><tr> @@ -591,7 +615,12 @@ <dd> command to be executed by debug client (string) </dd> -</dl><a NAME="Shell.__getBanner" ID="Shell.__getBanner"></a> +</dl><a NAME="Shell.__find" ID="Shell.__find"></a> +<h4>Shell.__find</h4> +<b>__find</b>(<i></i>) +<p> + Private slot to show the find widget. +</p><a NAME="Shell.__getBanner" ID="Shell.__getBanner"></a> <h4>Shell.__getBanner</h4> <b>__getBanner</b>(<i></i>) <p> @@ -723,7 +752,17 @@ <dd> index of found entry (integer) </dd> -</dl><a NAME="Shell.__selectHistory" ID="Shell.__selectHistory"></a> +</dl><a NAME="Shell.__searchNext" ID="Shell.__searchNext"></a> +<h4>Shell.__searchNext</h4> +<b>__searchNext</b>(<i></i>) +<p> + Private method to search for the next occurrence. +</p><a NAME="Shell.__searchPrev" ID="Shell.__searchPrev"></a> +<h4>Shell.__searchPrev</h4> +<b>__searchPrev</b>(<i></i>) +<p> + Private method to search for the next occurrence. +</p><a NAME="Shell.__selectHistory" ID="Shell.__selectHistory"></a> <h4>Shell.__selectHistory</h4> <b>__selectHistory</b>(<i></i>) <p> @@ -1089,6 +1128,42 @@ <dd> type of the debug client (string) </dd> +</dl><a NAME="Shell.searchNext" ID="Shell.searchNext"></a> +<h4>Shell.searchNext</h4> +<b>searchNext</b>(<i>txt, caseSensitive, wholeWord</i>) +<p> + Public method to search the next occurrence of the given text. +</p><dl> +<dt><i>txt</i></dt> +<dd> +text to search for (string) +</dd><dt><i>caseSensitive</i></dt> +<dd> +flag indicating to perform a case sensitive + search (boolean) +</dd><dt><i>wholeWord</i></dt> +<dd> +flag indicating to search for whole words + only (boolean) +</dd> +</dl><a NAME="Shell.searchPrev" ID="Shell.searchPrev"></a> +<h4>Shell.searchPrev</h4> +<b>searchPrev</b>(<i>txt, caseSensitive, wholeWord</i>) +<p> + Public method to search the previous occurrence of the given text. +</p><dl> +<dt><i>txt</i></dt> +<dd> +text to search for (string) +</dd><dt><i>caseSensitive</i></dt> +<dd> +flag indicating to perform a case sensitive + search (boolean) +</dd><dt><i>wholeWord</i></dt> +<dd> +flag indicating to search for whole words + only (boolean) +</dd> </dl><a NAME="Shell.setDebuggerUI" ID="Shell.setDebuggerUI"></a> <h4>Shell.setDebuggerUI</h4> <b>setDebuggerUI</b>(<i>ui</i>) @@ -1111,5 +1186,79 @@ </dd> </dl> <div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="ShellAssembly" ID="ShellAssembly"></a> +<h2>ShellAssembly</h2> +<p> + Class implementing the containing widget for the shell. +</p> +<h3>Derived from</h3> +QWidget +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#ShellAssembly.__init__">ShellAssembly</a></td> +<td>Constructor</td> +</tr><tr> +<td><a href="#ShellAssembly.shell">shell</a></td> +<td>Public method to get a reference to the terminal widget.</td> +</tr><tr> +<td><a href="#ShellAssembly.showFind">showFind</a></td> +<td>Public method to display the search widget.</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="ShellAssembly.__init__" ID="ShellAssembly.__init__"></a> +<h4>ShellAssembly (Constructor)</h4> +<b>ShellAssembly</b>(<i>dbs, vm, horizontal=True, parent=None</i>) +<p> + Constructor +</p><dl> +<dt><i>dbs</i></dt> +<dd> +reference to the debug server object +</dd><dt><i>vm</i></dt> +<dd> +reference to the viewmanager object +</dd><dt><i>horizontal</i></dt> +<dd> +flag indicating a horizontal layout (boolean) +</dd><dt><i>parent</i></dt> +<dd> +parent widget (QWidget) +</dd> +</dl><a NAME="ShellAssembly.shell" ID="ShellAssembly.shell"></a> +<h4>ShellAssembly.shell</h4> +<b>shell</b>(<i></i>) +<p> + Public method to get a reference to the terminal widget. +</p><dl> +<dt>Returns:</dt> +<dd> +reference to the terminal widget (Terminal) +</dd> +</dl><a NAME="ShellAssembly.showFind" ID="ShellAssembly.showFind"></a> +<h4>ShellAssembly.showFind</h4> +<b>showFind</b>(<i>txt=""</i>) +<p> + Public method to display the search widget. +</p><dl> +<dt><i>txt</i></dt> +<dd> +text to be shown in the combo (string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> <hr /> </body></html> \ No newline at end of file
--- a/Documentation/Source/eric5.QScintilla.Terminal.html Wed May 02 19:10:17 2012 +0200 +++ b/Documentation/Source/eric5.QScintilla.Terminal.html Fri May 04 20:06:17 2012 +0200 @@ -808,12 +808,38 @@ <b>searchNext</b>(<i>txt, caseSensitive, wholeWord</i>) <p> Public method to search the next occurrence of the given text. -</p><a NAME="Terminal.searchPrev" ID="Terminal.searchPrev"></a> +</p><dl> +<dt><i>txt</i></dt> +<dd> +text to search for (string) +</dd><dt><i>caseSensitive</i></dt> +<dd> +flag indicating to perform a case sensitive + search (boolean) +</dd><dt><i>wholeWord</i></dt> +<dd> +flag indicating to search for whole words + only (boolean) +</dd> +</dl><a NAME="Terminal.searchPrev" ID="Terminal.searchPrev"></a> <h4>Terminal.searchPrev</h4> <b>searchPrev</b>(<i>txt, caseSensitive, wholeWord</i>) <p> Public method to search the previous occurrence of the given text. -</p><a NAME="Terminal.wheelEvent" ID="Terminal.wheelEvent"></a> +</p><dl> +<dt><i>txt</i></dt> +<dd> +text to search for (string) +</dd><dt><i>caseSensitive</i></dt> +<dd> +flag indicating to perform a case sensitive + search (boolean) +</dd><dt><i>wholeWord</i></dt> +<dd> +flag indicating to search for whole words + only (boolean) +</dd> +</dl><a NAME="Terminal.wheelEvent" ID="Terminal.wheelEvent"></a> <h4>Terminal.wheelEvent</h4> <b>wheelEvent</b>(<i>evt</i>) <p>
--- a/Documentation/Source/eric5.UI.SearchWidget.html Wed May 02 19:10:17 2012 +0200 +++ b/Documentation/Source/eric5.UI.SearchWidget.html Fri May 04 20:06:17 2012 +0200 @@ -106,13 +106,17 @@ </table> <a NAME="SearchWidget.__init__" ID="SearchWidget.__init__"></a> <h4>SearchWidget (Constructor)</h4> -<b>SearchWidget</b>(<i>mainWindow, parent=None</i>) +<b>SearchWidget</b>(<i>mainWindow, parent=None, spacer=True</i>) <p> Constructor </p><dl> <dt><i>parent</i></dt> <dd> reference to the parent widget (QWidget) +</dd><dt><i>spacer</i></dt> +<dd> +flag indicating to add a vertical spacer to the + main layout (boolean) </dd> </dl><a NAME="SearchWidget.__findByReturnPressed" ID="SearchWidget.__findByReturnPressed"></a> <h4>SearchWidget.__findByReturnPressed</h4>
--- a/QScintilla/Shell.py Wed May 02 19:10:17 2012 +0200 +++ b/QScintilla/Shell.py Fri May 04 20:06:17 2012 +0200 @@ -10,9 +10,9 @@ import sys import re -from PyQt4.QtCore import QFileInfo, Qt, QEvent +from PyQt4.QtCore import pyqtSignal, QFileInfo, Qt, QEvent from PyQt4.QtGui import QDialog, QInputDialog, QApplication, QClipboard, QMenu, \ - QPalette, QFont + QPalette, QFont, QWidget, QHBoxLayout, QVBoxLayout, QShortcut from PyQt4.Qsci import QsciScintilla from E5Gui.E5Application import e5App @@ -22,20 +22,74 @@ from .QsciScintillaCompat import QsciScintillaCompat import Preferences + import UI.PixmapCache +from UI.SearchWidget import SearchWidget from Debugger.DebugClientCapabilities import HasCompleter from .ShellHistoryDialog import ShellHistoryDialog +class ShellAssembly(QWidget): + """ + Class implementing the containing widget for the shell. + """ + def __init__(self, dbs, vm, horizontal=True, parent=None): + """ + Constructor + + @param dbs reference to the debug server object + @param vm reference to the viewmanager object + @param horizontal flag indicating a horizontal layout (boolean) + @param parent parent widget (QWidget) + """ + super().__init__(parent) + + self.__shell = Shell(dbs, vm, self) + self.__searchWidget = SearchWidget(self.__shell, self, horizontal) + self.__searchWidget.hide() + + if horizontal: + self.__layout = QHBoxLayout(self) + else: + self.__layout = QVBoxLayout(self) + self.__layout.setContentsMargins(1, 1, 1, 1) + self.__layout.addWidget(self.__shell) + self.__layout.addWidget(self.__searchWidget) + + self.__searchWidget.searchNext.connect(self.__shell.searchNext) + self.__searchWidget.searchPrevious.connect(self.__shell.searchPrev) + self.__shell.searchStringFound.connect(self.__searchWidget.searchStringFound) + + def showFind(self, txt=""): + """ + Public method to display the search widget. + + @param txt text to be shown in the combo (string) + """ + self.__searchWidget.showFind(txt) + + def shell(self): + """ + Public method to get a reference to the terminal widget. + + @return reference to the terminal widget (Terminal) + """ + return self.__shell + + class Shell(QsciScintillaCompat): """ Class implementing a graphical Python shell. A user can enter commands that are executed in the remote Python interpreter. + + @signal searchStringFound(found) emitted to indicate the search result (boolean) """ + searchStringFound = pyqtSignal(bool) + def __init__(self, dbs, vm, parent=None): """ Constructor @@ -48,6 +102,8 @@ self.setUtf8(True) self.vm = vm + self.__mainWindow = parent + self.__lastSearch = () self.linesepRegExp = r"\r\n|\n|\r" @@ -160,6 +216,8 @@ self.menu.addAction(self.trUtf8('Paste'), self.paste) self.menu.addMenu(self.hmenu) self.menu.addSeparator() + self.menu.addAction(self.trUtf8('Find'), self.__find) + self.menu.addSeparator() self.menu.addAction(self.trUtf8('Clear'), self.clear) self.menu.addAction(self.trUtf8('Reset'), self.__reset) self.menu.addAction(self.trUtf8('Reset and Clear'), @@ -1458,6 +1516,12 @@ self.addActions(self.vm.editorActGrp.actions()) self.addActions(self.vm.copyActGrp.actions()) self.addActions(self.vm.viewActGrp.actions()) + self.__searchShortcut = QShortcut(self.vm.searchAct.shortcut(), self, + self.__find, self.__find) + self.__searchNextShortcut = QShortcut(self.vm.searchNextAct.shortcut(), self, + self.__searchNext, self.__searchNext) + self.__searchPrevShortcut = QShortcut(self.vm.searchPrevAct.shortcut(), self, + self.__searchPrev, self.__searchPrev) try: self.vm.editActGrp.setEnabled(False) @@ -1467,6 +1531,9 @@ self.vm.searchActGrp.setEnabled(False) except AttributeError: pass + self.__searchShortcut.setEnabled(True) + self.__searchNextShortcut.setEnabled(True) + self.__searchPrevShortcut.setEnabled(True) self.setCaretWidth(self.caretWidth) self.setCursorFlashTime(QApplication.cursorFlashTime()) @@ -1482,6 +1549,9 @@ self.vm.editorActGrp.setEnabled(False) except AttributeError: pass + self.__searchShortcut.setEnabled(False) + self.__searchNextShortcut.setEnabled(False) + self.__searchPrevShortcut.setEnabled(False) self.setCaretWidth(0) super().focusOutEvent(event) @@ -1505,3 +1575,57 @@ Private method to open the configuration dialog. """ e5App().getObject("UserInterface").showPreferences("shellPage") + + def __find(self): + """ + Private slot to show the find widget. + """ + txt = self.selectedText() + self.__mainWindow.showFind(txt) + + def __searchNext(self): + """ + Private method to search for the next occurrence. + """ + if self.__lastSearch: + self.searchNext(*self.__lastSearch) + + def searchNext(self, txt, caseSensitive, wholeWord): + """ + Public method to search the next occurrence of the given text. + + @param txt text to search for (string) + @param caseSensitive flag indicating to perform a case sensitive + search (boolean) + @param wholeWord flag indicating to search for whole words + only (boolean) + """ + self.__lastSearch = (txt, caseSensitive, wholeWord) + ok = self.findFirst(txt, False, caseSensitive, wholeWord, False, forward=True) + self.searchStringFound.emit(ok) + + def __searchPrev(self): + """ + Private method to search for the next occurrence. + """ + if self.__lastSearch: + self.searchPrev(*self.__lastSearch) + + def searchPrev(self, txt, caseSensitive, wholeWord): + """ + Public method to search the previous occurrence of the given text. + + @param txt text to search for (string) + @param caseSensitive flag indicating to perform a case sensitive + search (boolean) + @param wholeWord flag indicating to search for whole words + only (boolean) + """ + self.__lastSearch = (txt, caseSensitive, wholeWord) + if self.hasSelectedText(): + line, index = self.getSelection()[:2] + else: + line, index = -1, -1 + ok = self.findFirst(txt, False, caseSensitive, wholeWord, False, forward=False, + line=line, index=index) + self.searchStringFound.emit(ok)
--- a/QScintilla/Terminal.py Wed May 02 19:10:17 2012 +0200 +++ b/QScintilla/Terminal.py Fri May 04 20:06:17 2012 +0200 @@ -1028,6 +1028,9 @@ self.vm.searchActGrp.setEnabled(False) except AttributeError: pass + self.__searchShortcut.setEnabled(True) + self.__searchNextShortcut.setEnabled(True) + self.__searchPrevShortcut.setEnabled(True) self.setCaretWidth(self.caretWidth) self.setCursorFlashTime(QApplication.cursorFlashTime()) @@ -1043,6 +1046,9 @@ self.vm.editorActGrp.setEnabled(False) except AttributeError: pass + self.__searchShortcut.setEnabled(False) + self.__searchNextShortcut.setEnabled(False) + self.__searchPrevShortcut.setEnabled(False) self.setCaretWidth(0) super().focusOutEvent(event) @@ -1084,6 +1090,12 @@ def searchNext(self, txt, caseSensitive, wholeWord): """ Public method to search the next occurrence of the given text. + + @param txt text to search for (string) + @param caseSensitive flag indicating to perform a case sensitive + search (boolean) + @param wholeWord flag indicating to search for whole words + only (boolean) """ self.__lastSearch = (txt, caseSensitive, wholeWord) ok = self.findFirst(txt, False, caseSensitive, wholeWord, False, forward=True) @@ -1099,6 +1111,12 @@ def searchPrev(self, txt, caseSensitive, wholeWord): """ Public method to search the previous occurrence of the given text. + + @param txt text to search for (string) + @param caseSensitive flag indicating to perform a case sensitive + search (boolean) + @param wholeWord flag indicating to search for whole words + only (boolean) """ self.__lastSearch = (txt, caseSensitive, wholeWord) if self.hasSelectedText():
--- a/UI/SearchWidget.py Wed May 02 19:10:17 2012 +0200 +++ b/UI/SearchWidget.py Fri May 04 20:06:17 2012 +0200 @@ -8,7 +8,7 @@ """ from PyQt4.QtCore import pyqtSlot, pyqtSignal, Qt -from PyQt4.QtGui import QWidget +from PyQt4.QtGui import QWidget, QSpacerItem, QSizePolicy from .Ui_SearchWidget import Ui_SearchWidget @@ -27,14 +27,19 @@ searchNext = pyqtSignal(str, bool, bool) searchPrevious = pyqtSignal(str, bool, bool) - def __init__(self, mainWindow, parent=None): + def __init__(self, mainWindow, parent=None, spacer=True): """ Constructor @param parent reference to the parent widget (QWidget) + @param spacer flag indicating to add a vertical spacer to the + main layout (boolean) """ super().__init__(parent) self.setupUi(self) + if spacer: + spacerItem = QSpacerItem(20, 1, QSizePolicy.Minimum, QSizePolicy.Expanding) + self.verticalLayout.addItem(spacerItem) self.__mainWindow = mainWindow self.__findBackwards = True
--- a/UI/SearchWidget.ui Wed May 02 19:10:17 2012 +0200 +++ b/UI/SearchWidget.ui Fri May 04 20:06:17 2012 +0200 @@ -112,19 +112,6 @@ </property> </widget> </item> - <item> - <spacer name="verticalSpacer"> - <property name="orientation"> - <enum>Qt::Vertical</enum> - </property> - <property name="sizeHint" stdset="0"> - <size> - <width>20</width> - <height>1</height> - </size> - </property> - </spacer> - </item> </layout> </widget> <tabstops>
--- a/UI/UserInterface.py Wed May 02 19:10:17 2012 +0200 +++ b/UI/UserInterface.py Fri May 04 20:06:17 2012 +0200 @@ -30,7 +30,7 @@ from Debugger.DebugViewer import DebugViewer from Debugger.DebugClientCapabilities import HasUnittest -from QScintilla.Shell import Shell +from QScintilla.Shell import ShellAssembly from QScintilla.Terminal import TerminalAssembly from QScintilla.MiniEditor import MiniEditor from QScintilla.SpellChecker import SpellChecker @@ -710,8 +710,9 @@ self.shell = self.debugViewer.shell else: # Create the shell - self.shell = Shell(debugServer, self.viewmanager, None) - self.windows[3] = self.shell + self.shellAssembly = ShellAssembly(debugServer, self.viewmanager, True) + self.shell = self.shellAssembly.shell() + self.windows[3] = self.shellAssembly if self.embeddedFileBrowser == 0: # separate window # Create the file browser @@ -794,9 +795,11 @@ else: # Create the shell self.shellDock = self.__createDockWindow("ShellDock") - self.shell = Shell(debugServer, self.viewmanager, self.shellDock) + self.shellAssembly = ShellAssembly(debugServer, self.viewmanager, True, + self.shellDock) + self.shell = self.shellAssembly.shell() self.__setupDockWindow(self.shellDock, Qt.BottomDockWidgetArea, - self.shell, self.trUtf8("Shell")) + self.shellAssembly, self.trUtf8("Shell")) self.windows[3] = self.shellDock if self.embeddedFileBrowser == 0: # separate window @@ -904,8 +907,9 @@ self.shell = self.debugViewer.shell else: # Create the shell - self.shell = Shell(debugServer, self.viewmanager) - self.hToolbox.insertItem(0, self.shell, + self.shellAssembly = ShellAssembly(debugServer, self.viewmanager, True) + self.shell = self.shellAssembly.shell() + self.hToolbox.insertItem(0, self.shellAssembly, UI.PixmapCache.getIcon("shell.png"), self.trUtf8("Shell")) @@ -1015,8 +1019,9 @@ else: # Create the shell logging.debug("Creating Shell...") - self.shell = Shell(debugServer, self.viewmanager) - self.bottomSidebar.insertTab(0, self.shell, + self.shellAssembly = ShellAssembly(debugServer, self.viewmanager, True) + self.shell = self.shellAssembly.shell() + self.bottomSidebar.insertTab(0, self.shellAssembly, UI.PixmapCache.getIcon("shell.png"), self.trUtf8("Shell"))
--- a/changelog Wed May 02 19:10:17 2012 +0200 +++ b/changelog Fri May 04 20:06:17 2012 +0200 @@ -4,6 +4,8 @@ - bug fixes - Log Viewer -- added the capability to search in the recorded log +- Shell + -- added the capability to search in the output of the shell window - Terminal -- added the capability to search in the output of the terminal window
--- a/i18n/eric5_cs.ts Wed May 02 19:10:17 2012 +0200 +++ b/i18n/eric5_cs.ts Fri May 04 20:06:17 2012 +0200 @@ -4870,52 +4870,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="Debugger/DebugViewer.py" line="163"/> + <location filename="Debugger/DebugViewer.py" line="164"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation>Zadání vzorků regulárních výrazů oddělených ';' pro definování proměnných filtrů.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="166"/> + <location filename="Debugger/DebugViewer.py" line="167"/> <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source> <translation>Zadání vzorků regulárních výrazů oddělených ';' pro definování proměnných filtrů. Proměnné a atributy tříd nalezené jedním z uvedených výrazů, nejsou zobrazovány v seznamu nahoře.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="171"/> + <location filename="Debugger/DebugViewer.py" line="172"/> <source>Set</source> <translation>Množina</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="149"/> + <location filename="Debugger/DebugViewer.py" line="150"/> <source>Source</source> <translation>Zdroj</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="214"/> + <location filename="Debugger/DebugViewer.py" line="215"/> <source>Threads:</source> <translation>Thready:</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>ID</source> <translation></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>Name</source> <translation>Jméno</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>State</source> <translation>Stav</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="413"/> + <location filename="Debugger/DebugViewer.py" line="414"/> <source>waiting at breakpoint</source> <translation>čekající na breakpoint</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="415"/> + <location filename="Debugger/DebugViewer.py" line="416"/> <source>running</source> <translation>běžící</translation> </message> @@ -36736,7 +36736,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/SearchWidget.py" line="160"/> + <location filename="UI/SearchWidget.py" line="163"/> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' nebyl nalezen.</translation> </message> @@ -36802,137 +36802,142 @@ <context> <name>Shell</name> <message> - <location filename="QScintilla/Shell.py" line="56"/> + <location filename="QScintilla/Shell.py" line="112"/> <source>Shell - Passive</source> <translation>Shell - pasivní</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="58"/> + <location filename="QScintilla/Shell.py" line="114"/> <source>Shell</source> <translation></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="127"/> + <location filename="QScintilla/Shell.py" line="183"/> <source>Passive >>> </source> <translation>Pasivní >>> </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="142"/> + <location filename="QScintilla/Shell.py" line="198"/> <source>Start</source> <translation></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="159"/> + <location filename="QScintilla/Shell.py" line="215"/> <source>Copy</source> <translation>Kopírovat</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="160"/> + <location filename="QScintilla/Shell.py" line="216"/> <source>Paste</source> <translation>Vložit</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="163"/> + <location filename="QScintilla/Shell.py" line="221"/> <source>Clear</source> <translation>Vyčistit</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="164"/> + <location filename="QScintilla/Shell.py" line="222"/> <source>Reset</source> <translation>Reset</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="165"/> + <location filename="QScintilla/Shell.py" line="223"/> <source>Reset and Clear</source> <translation>Reset a vyčistit</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="551"/> + <location filename="QScintilla/Shell.py" line="609"/> <source>No.</source> <translation>Č.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="60"/> + <location filename="QScintilla/Shell.py" line="116"/> <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. Pressing the up or down key after some text has been entered will start an incremental search.</p><p>The shell has some special commands. 'reset' kills the shell and starts a new one. 'clear' clears the display of the shell window. 'start' is used to switch the shell language and must be followed by a supported language. Supported languages are listed by the 'languages' command. These commands (except 'languages') 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 commandline completions. The relevant entry may be selected from this list. If only one entry is available, this will 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>Okno Shellu</b><p>Toto je jednoduchý interpretr běžící v okně. Interpretr běží nezávisle na programu, který je debugován. To znamená, že můžete spustit jakýkoliv příkaz i během debugování.</p><p>Během vkládání příkazu můžete použít kurzorové klávesy. Je zde také historie příkazů, která se aktivuje klávesami up a down. Stisknutím up nebo down klávesy po textu, který byl zadán se spustí inkrementální vyhledávání.</p><p>Shell má několik speciálních příkazů. 'reset' zabije shell a spustí nový. 'clear' vyčistí obsah shell okna.'start' se používá pro přepnutí shell jazyka a musí za ním následovat jméno podporovaného jazyka. Podporované jazyky jsou zobrazeny v seznamu, který vrací příkaz 'languages'. Tyto příkazy (kromě 'languages') jsou také dostupné přes kontextové menu.</p><p>Stisknutím tab klávesy po nějakém vloženém textu se zobrazí seznam s nabídkou možných zakončení výrazu. Odpovídající zadání pak může být vybráno z tohoto listu. Pokud je existuje jen jedna možnost, je vložena automaticky.</p><p>Dokud se program neukončí, je shell v pasivním módu dostupný jen pokud se debugovaný program připojil k IDE. To je oznámeno odlišným promptem a dále v názvu titulku okna.</p></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="548"/> + <location filename="QScintilla/Shell.py" line="606"/> <source>Passive Debug Mode</source> <translation>Pasivní debug mód</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="151"/> + <location filename="QScintilla/Shell.py" line="207"/> <source>History</source> <translation>Historie</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="152"/> + <location filename="QScintilla/Shell.py" line="208"/> <source>Select entry</source> <translation>Vybrat vstupy</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="153"/> + <location filename="QScintilla/Shell.py" line="209"/> <source>Show</source> <translation>Zobrazit</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <source>Select History</source> <translation>Vybrat historii</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <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="549"/> + <location filename="QScintilla/Shell.py" line="607"/> <source> Not connected</source> <translation>Nepřipojen</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="170"/> + <location filename="QScintilla/Shell.py" line="228"/> <source>Configure...</source> <translation>Konfigurovat...</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="158"/> + <location filename="QScintilla/Shell.py" line="214"/> <source>Cut</source> <translation>Vyjmout</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="553"/> + <location filename="QScintilla/Shell.py" line="611"/> <source>{0} on {1}, {2}</source> <translation>{0} na {1}, {2}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="614"/> + <location filename="QScintilla/Shell.py" line="672"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="622"/> + <location filename="QScintilla/Shell.py" line="680"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1165"/> + <location filename="QScintilla/Shell.py" line="1223"/> <source>Shell language "{0}" not supported. </source> <translation>Shell jazyk "{0}" není podporován.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <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="219"/> + <source>Find</source> + <translation type="unfinished">Hledat</translation> + </message> </context> <context> <name>ShellHistoryDialog</name> @@ -48014,513 +48019,513 @@ <translation>Načtení kaskádového stylu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>Project-Viewer</source> <translation>Prohlížeč projektu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>Debug-Viewer</source> <translation>Prohlížeč debugeru</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>Log-Viewer</source> <translation>Prohlížeč logu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>Task-Viewer</source> <translation>Prohlížeč úloh</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Template-Viewer</source> <translation>Prohlížeč šablon</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>Shell</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-Browser</source> <translation>Browser souborů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> - <source>Quit</source> - <translation>Konec</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1292"/> - <source>&Quit</source> - <translation>&Konec</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1292"/> - <source>Ctrl+Q</source> - <comment>File|Quit</comment> - <translation></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1297"/> + <source>Quit</source> + <translation>Konec</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1297"/> + <source>&Quit</source> + <translation>&Konec</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1297"/> + <source>Ctrl+Q</source> + <comment>File|Quit</comment> + <translation></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1302"/> <source>Quit the IDE</source> <translation>Ukončit IDE</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1298"/> + <location filename="UI/UserInterface.py" line="1303"/> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Ukončit IDE</b><p>Ukončí se IDE. Nejdříve by se měly uložit neuložené změny. Python programy běžící v debug procesu budou ukončeny a nastavení budou uložena.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1324"/> - <source>Edit Profile</source> - <translation>Editační profil</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1329"/> + <source>Edit Profile</source> + <translation>Editační profil</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1334"/> <source>Activate the edit view profile</source> <translation>Aktivovat profil editace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1330"/> + <location filename="UI/UserInterface.py" line="1335"/> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Editační profil</b><p>Aktivování skupiny 'Editační profil'. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu 'Konfigurace profilu pohledů'.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1339"/> - <source>Debug Profile</source> - <translation>Debugovací profil</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1344"/> + <source>Debug Profile</source> + <translation>Debugovací profil</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1349"/> <source>Activate the debug view profile</source> <translation>Aktivovat debugovací profil</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1346"/> + <location filename="UI/UserInterface.py" line="1351"/> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Debugovací profil</b><p>Aktivování skupiny 'Debugovací profil'. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu 'Konfigurace profilu pohledů'.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>&Project-Viewer</source> <translation>Prohlížeč &projektu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1357"/> + <location filename="UI/UserInterface.py" line="1362"/> <source>Toggle the Project-Viewer window</source> <translation>Přepnout okno Prohlížeč projektu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1358"/> + <location filename="UI/UserInterface.py" line="1363"/> <source><b>Toggle the Project-Viewer window</b><p>If the Project-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Přepnout okno Prohlížeč projektu</b><p>Pokud bylo okno skryto, tak se zobrazí. Pokud se zobrazovalo, tak se skryje.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Activate Project-Viewer</source> <translation>Aktivovat prohlížeč projektu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Alt+Shift+P</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Alt+Shift+D</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>&Shell</source> <translation>&Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1418"/> + <location filename="UI/UserInterface.py" line="1423"/> <source>Toggle the Shell window</source> <translation>Zobrazit/skrýt Shell okno</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1419"/> + <location filename="UI/UserInterface.py" line="1424"/> <source><b>Toggle the Shell window</b><p>If the Shell window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Zobrazit/skrýt Shell okno</b><p>Pokud je shell okno skryté zobrazí se. Pokud se okno zobrazuje, tak se skryje.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Activate Shell</source> <translation>Aktivovat Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Alt+Shift+S</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-&Browser</source> <translation>&Browser souborů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1459"/> + <location filename="UI/UserInterface.py" line="1464"/> <source>Toggle the File-Browser window</source> <translation>Zobrazit/skrýt browser souborů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1460"/> + <location filename="UI/UserInterface.py" line="1465"/> <source><b>Toggle the File-Browser window</b><p>If the File-Browser window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Zobrazit/skrýt browser souborů</b><p>Pokud je okno skryté zobrazí se. Pokud se okno zobrazuje, tak se skryje.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Activate File-Browser</source> <translation>Aktivovat Browser souborů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Alt+Shift+F</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>&Log-Viewer</source> <translation>&Log prohlížeč</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1480"/> + <location filename="UI/UserInterface.py" line="1485"/> <source>Toggle the Log-Viewer window</source> <translation>Zobrazit/skrýt Log prohlížeč</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1481"/> + <location filename="UI/UserInterface.py" line="1486"/> <source><b>Toggle the Log-Viewer window</b><p>If the Log-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Zobrazit/skrýt Log prohlížeč</b><p>Pokud je okno skryté zobrazí se. Pokud se okno zobrazuje, tak se skryje.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Activate Log-Viewer</source> <translation>Aktivovat Log prohlížeč</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Alt+Shift+G</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>T&ask-Viewer</source> <translation>Pr&ohlížeč úloh</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1500"/> + <location filename="UI/UserInterface.py" line="1505"/> <source>Toggle the Task-Viewer window</source> <translation>Zobrazit/skrýt prohlížeč úloh</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1501"/> + <location filename="UI/UserInterface.py" line="1506"/> <source><b>Toggle the Task-Viewer window</b><p>If the Task-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Zobrazit/skrýt prohlížeč úloh</b><p>Pokud je okno skryté zobrazí se. Pokud se okno zobrazuje, tak se skryje.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Activate Task-Viewer</source> <translation>Aktivovat prohlížeč úloh</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Alt+Shift+T</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1520"/> + <location filename="UI/UserInterface.py" line="1525"/> <source>Toggle the Template-Viewer window</source> <translation>Zobrazit/skrýt prohlížeč šablon</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1522"/> + <location filename="UI/UserInterface.py" line="1527"/> <source><b>Toggle the Template-Viewer window</b><p>If the Template-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Zobrazit/skrýt prohlížeč šablon</b><p>Pokud je okno skryté zobrazí se. Pokud se okno zobrazuje, tak se skryje.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Activate Template-Viewer</source> <translation>Aktivovat prohlížeč šablon</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Alt+Shift+M</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>What's This?</source> - <translation>Co je to?</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>&What's This?</source> - <translation>&Co je to?</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>Shift+F1</source> - <translation></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1656"/> + <source>What's This?</source> + <translation>Co je to?</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source>&What's This?</source> + <translation>&Co je to?</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source>Shift+F1</source> + <translation></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1661"/> <source>Context sensitive help</source> <translation>Kontextově senzitivní nápověda</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1657"/> + <location filename="UI/UserInterface.py" line="1662"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zobrazit kontextově senzitivní nápovědu</b><p>V režimu "Co je to?" se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> + <location filename="UI/UserInterface.py" line="1673"/> <source>Helpviewer</source> <translation>Prohlížeč nápovědy</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> + <location filename="UI/UserInterface.py" line="1673"/> <source>&Helpviewer...</source> <translation>Pro&hlížeč nápovědy...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> - <source>F1</source> - <translation></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1673"/> + <source>F1</source> + <translation></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1678"/> <source>Open the helpviewer window</source> <translation>Otevřít okno prohlížeče nápovědy</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show Versions</source> <translation>Zobrazit verze</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show &Versions</source> <translation>Zobrazit &verze</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1693"/> + <location filename="UI/UserInterface.py" line="1698"/> <source>Display version information</source> <translation>Zobrazit informace o verzích</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1694"/> + <location filename="UI/UserInterface.py" line="1699"/> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Zobrazit verze</b><p>Zobrazí informace o verzích.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1703"/> + <location filename="UI/UserInterface.py" line="1708"/> <source>Check for Updates</source> <translation>Zjistit aktualizace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1701"/> + <location filename="UI/UserInterface.py" line="1706"/> <source>Check for &Updates...</source> <translation>Zjistit akt&ualizace...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Report Bug</source> <translation>Reportovat Bugy</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1724"/> + <location filename="UI/UserInterface.py" line="1729"/> <source>Report &Bug...</source> <translation>Reportovat &Bugy...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1726"/> + <location filename="UI/UserInterface.py" line="1731"/> <source>Report a bug</source> <translation>Reportovat bug</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1727"/> + <location filename="UI/UserInterface.py" line="1732"/> <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> <translation><b>Reportovat bug...</b><p>Otevře se dialog pro reportování bugu.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2450"/> + <location filename="UI/UserInterface.py" line="2455"/> <source>Unittest</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1746"/> - <source>&Unittest...</source> - <translation>&Unittest...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1750"/> - <source>Start unittest dialog</source> - <translation>Otevřít dialog unittestu</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1751"/> + <source>&Unittest...</source> + <translation>&Unittest...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1755"/> + <source>Start unittest dialog</source> + <translation>Otevřít dialog unittestu</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1756"/> <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> <translation><b>Unittest</b><p>Provést unittesty. V dialogovém okně se nastaví který test se má provést.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> + <location filename="UI/UserInterface.py" line="1764"/> <source>Unittest Restart</source> <translation>Restart unittestu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> - <source>&Restart Unittest...</source> - <translation>&Restart unittestu...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1763"/> - <source>Restart last unittest</source> - <translation>Restart posledního unittestu</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1764"/> + <source>&Restart Unittest...</source> + <translation>&Restart unittestu...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1768"/> + <source>Restart last unittest</source> + <translation>Restart posledního unittestu</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1769"/> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation><b>Restart unittestu</b><p>Restartuje se poslední provedený unittest.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1786"/> - <source>Unittest Script</source> - <translation></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1786"/> - <source>Unittest &Script...</source> - <translation>Unittest &Script...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1790"/> - <source>Run unittest with current script</source> - <translation>Spustit unittest s aktuálním skriptem</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1791"/> + <source>Unittest Script</source> + <translation></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1791"/> + <source>Unittest &Script...</source> + <translation>Unittest &Script...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1795"/> + <source>Run unittest with current script</source> + <translation>Spustit unittest s aktuálním skriptem</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1796"/> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Unittest Script</b><p>Spustit unittest s aktuálním skriptem.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4052"/> + <location filename="UI/UserInterface.py" line="4057"/> <source>Unittest Project</source> <translation>Unittest Projekt</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1799"/> - <source>Unittest &Project...</source> - <translation>Unittest &Projekt...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1803"/> - <source>Run unittest with current project</source> - <translation>Spustit unittest s aktuálním projektem</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1804"/> + <source>Unittest &Project...</source> + <translation>Unittest &Projekt...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1808"/> + <source>Run unittest with current project</source> + <translation>Spustit unittest s aktuálním projektem</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1809"/> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Unittest projekt</b><p>Spustit unittest s aktuálním projektem.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>Qt-Designer 4</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1823"/> + <location filename="UI/UserInterface.py" line="1828"/> <source>Start Qt-Designer 4</source> <translation>Spustit Qt-Designer 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1824"/> + <location filename="UI/UserInterface.py" line="1829"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> <translation><b>Qt-Designer 4</b><p>Spustit Qt-Designer 4.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>Qt-Linguist 4</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1843"/> + <location filename="UI/UserInterface.py" line="1848"/> <source>Start Qt-Linguist 4</source> <translation>Spustit Qt-Linguist 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1844"/> + <location filename="UI/UserInterface.py" line="1849"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> <translation><b>Qt-Linguist 4</b><p>Spustit Qt-Linguist 4.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>UI Previewer</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>&UI Previewer...</source> <translation>&UI Previewer...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1856"/> + <location filename="UI/UserInterface.py" line="1861"/> <source>Start the UI Previewer</source> <translation>Spustit UI Previewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1857"/> + <location filename="UI/UserInterface.py" line="1862"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation><b>UI Previewer</b><p>Spustit UI Previewer.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>Translations Previewer</source> <translation>Náhled překladů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>&Translations Previewer...</source> <translation>Náhled &překladů...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1867"/> + <location filename="UI/UserInterface.py" line="1872"/> <source>Start the Translations Previewer</source> <translation>Spustit Previewer překladů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1868"/> + <location filename="UI/UserInterface.py" line="1873"/> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Previewer překladů</b><p>Spustit Previewer překladů.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>Compare Files</source> <translation>Porovnat soubory</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>&Compare Files...</source> <translation>&Porovnat soubory...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1890"/> + <location filename="UI/UserInterface.py" line="1895"/> <source>Compare two files</source> <translation>Porovnat dva soubory</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1879"/> + <location filename="UI/UserInterface.py" line="1884"/> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Porovnat soubory</b><p>Otevře dialog pro porovnání dvou souborů.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare Files side by side</source> <translation>Porovnat soubory stranu proti straně</translation> </message> @@ -48530,187 +48535,187 @@ <translation type="obsolete">Porovnat soubory &stranu proti straně...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1891"/> + <location filename="UI/UserInterface.py" line="1896"/> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Porovnat soubory stranu proti straně</b><p>Otevře dialog pro porovnání souborů a zobrazení rozdílů strany proti straně.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>Preferences</source> <translation>Nastavení</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>&Preferences...</source> <translation>Na&stavení...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1962"/> + <location filename="UI/UserInterface.py" line="1967"/> <source>Set the prefered configuration</source> <translation>Nastavení konfigurace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1963"/> + <location filename="UI/UserInterface.py" line="1968"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Nastavení</b><p>Upravit konfiguraci aplikace podle požadavků uživatele.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload APIs</source> <translation>Obnovit API</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload &APIs</source> <translation>Obnovit &API</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1997"/> + <location filename="UI/UserInterface.py" line="2002"/> <source>Reload the API information</source> <translation>Obnovit API nastavení</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1998"/> + <location filename="UI/UserInterface.py" line="2003"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation><b>Obnovit API</b><p>Obnovit API nastavení.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>View Profiles</source> <translation>Profily pohledů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>&View Profiles...</source> <translation>Profily &pohledů...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2020"/> + <location filename="UI/UserInterface.py" line="2025"/> <source>Configure view profiles</source> <translation>Konfigurace profilů pohledů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2021"/> + <location filename="UI/UserInterface.py" line="2026"/> <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> <translation><b>Profily pohledů</b><p>Konfigurace profilu pohledů. V tomto dialogu můžete nastavit zobrazování různých typů pohledů - editačních oken.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard Shortcuts</source> <translation>Klávesové zkratky</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard &Shortcuts...</source> <translation>Klávesové &zkratky...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2046"/> + <location filename="UI/UserInterface.py" line="2051"/> <source>Set the keyboard shortcuts</source> <translation>Nastavení klávesových zkratek</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2047"/> + <location filename="UI/UserInterface.py" line="2052"/> <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> <translation><b>Klávesové zkratky</b><p>Nastavení klávesových zkratek aplikace podle zvyklostí uživatele.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5127"/> + <location filename="UI/UserInterface.py" line="5132"/> <source>Export Keyboard Shortcuts</source> <translation>Exportovat klávesové zkratky</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2055"/> - <source>&Export Keyboard Shortcuts...</source> - <translation>&Exportovat klávesové zkratky...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2059"/> - <source>Export the keyboard shortcuts</source> - <translation>Export klávesových zkratek</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2060"/> + <source>&Export Keyboard Shortcuts...</source> + <translation>&Exportovat klávesové zkratky...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2064"/> + <source>Export the keyboard shortcuts</source> + <translation>Export klávesových zkratek</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2065"/> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>Export klávesových zkratek</b><p>Exportují se klávesové zkratky z aplikace.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Import Keyboard Shortcuts</source> <translation>Import klávesových zkratek</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2067"/> - <source>&Import Keyboard Shortcuts...</source> - <translation>&Import klávesových zkratek...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2071"/> - <source>Import the keyboard shortcuts</source> - <translation>Import klávesových zkratek</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2072"/> + <source>&Import Keyboard Shortcuts...</source> + <translation>&Import klávesových zkratek...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2076"/> + <source>Import the keyboard shortcuts</source> + <translation>Import klávesových zkratek</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2077"/> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>Import klávesových zkratek</b><p>Do aplikace se importují klávesové zkratky.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Activate current editor</source> <translation>Aktivovat aktuální editor</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Alt+Shift+E</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Ctrl+Alt+Tab</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Shift+Ctrl+Alt+Tab</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt4 Documentation</source> <translation>Qt4 dokumentace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt&4 Documentation</source> <translation>Qt&4 dokumentace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2177"/> + <location filename="UI/UserInterface.py" line="2182"/> <source>Open Qt4 Documentation</source> <translation>Otevřít Qt4 dokumentaci</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2178"/> + <location filename="UI/UserInterface.py" line="2183"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Qt4 dokumentace</b><p>Zobrazit Qt4 dokumentaci. V závislosti na vašich nastaveních zobrazí interní Eric prohlížeč nápovědy nebo spustí webový prohlížeč nebo Qt Assistant.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>PyQt4 Documentation</source> <translation>PyQt4 dokumentace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>P&yQt4 Documentation</source> <translation>P&yQt4 dokumentace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2189"/> + <location filename="UI/UserInterface.py" line="2194"/> <source>Open PyQt4 Documentation</source> <translation>Otevřít PyQt4 dokumentaci</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2190"/> + <location filename="UI/UserInterface.py" line="2195"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>PyQt4 dokumentace</b><p>Zobrazit PyQt4 dokumentaci. V závislosti na vašich nastaveních zobrazí interní Eric prohlížeč nápovědy nebo spustí webový prohlížeč nebo Qt Assistant.</p></translation> </message> @@ -48735,197 +48740,197 @@ <translation type="obsolete"><b>Python dokumentace</b><p>Zobrazí python dokumentaci. Pokud není adresář dokumentace nastaven, tak ve Windows se dokumentace hledá v adresáři odkud se python spouští a na Unixu v doc adresáři <i>/usr/share/doc/packages/python/html</i>. Pokud chcete jiný, nastavte si proměnnou prostředí PYTHONDOCDIR.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>Eric API Documentation</source> <translation>Eric API dokumentace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>&Eric API Documentation</source> <translation>&Eric API dokumentace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2241"/> + <location filename="UI/UserInterface.py" line="2246"/> <source>Open Eric API Documentation</source> <translation>Otevřít Eric API dokumentaci</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2296"/> + <location filename="UI/UserInterface.py" line="2301"/> <source>&Unittest</source> <translation>&Unittest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2313"/> + <location filename="UI/UserInterface.py" line="2318"/> <source>E&xtras</source> <translation>E&xtra funkce</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2325"/> + <location filename="UI/UserInterface.py" line="2330"/> <source>&Tools</source> <translation>&Nástroje</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2328"/> + <location filename="UI/UserInterface.py" line="2333"/> <source>Select Tool Group</source> <translation>Vybrat skupinu nástrojů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2334"/> + <location filename="UI/UserInterface.py" line="2339"/> <source>Se&ttings</source> <translation>Nas&tavení</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2352"/> + <location filename="UI/UserInterface.py" line="2357"/> <source>&Window</source> <translation>O&kno</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2358"/> + <location filename="UI/UserInterface.py" line="2363"/> <source>&Toolbars</source> <translation>&Toolbary</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2383"/> + <location filename="UI/UserInterface.py" line="2388"/> <source>&Help</source> <translation>&Nápověda</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2449"/> + <location filename="UI/UserInterface.py" line="2454"/> <source>Tools</source> <translation>Nástroje</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2451"/> + <location filename="UI/UserInterface.py" line="2456"/> <source>Settings</source> <translation>Nastavení</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4275"/> + <location filename="UI/UserInterface.py" line="4280"/> <source>Help</source> <translation>Nápověda</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2453"/> + <location filename="UI/UserInterface.py" line="2458"/> <source>Profiles</source> <translation>Profily</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2783"/> + <location filename="UI/UserInterface.py" line="2788"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Čísla verzí</h3><table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5816"/> + <location filename="UI/UserInterface.py" line="5821"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>Emailová adresa nebo mail server adresa jsou prázdné. Prosím, nastavte váš email v dialogovém okně Nastavení.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3108"/> + <location filename="UI/UserInterface.py" line="3113"/> <source>Configure Tool Groups ...</source> <translation>Konfigurace Skupin nástrojů...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3111"/> + <location filename="UI/UserInterface.py" line="3116"/> <source>Configure current Tool Group ...</source> <translation>Konfigurace aktuální skupiny nástrojů...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3160"/> + <location filename="UI/UserInterface.py" line="3165"/> <source>&Builtin Tools</source> <translation>&Vestavěné nástroje</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4052"/> + <location filename="UI/UserInterface.py" line="4057"/> <source>There is no main script defined for the current project. Aborting</source> <translation>V aktuálním projektu není definován hlavní skript. Zrušeno</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source>Problem</source> <translation>Problém</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source>Process Generation Error</source> <translation>Chyba v procesu generování</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4275"/> + <location filename="UI/UserInterface.py" line="4280"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Aktuálně není vybrán žádný prohlížeč. Prosím otevřete Nastavení a nějaký vyberte.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4306"/> + <location filename="UI/UserInterface.py" line="4311"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Nemohu spustit prohlížeč nápovědy.<br>Ověřte jestli je dostupný jako <b>hh</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source>Documentation Missing</source> <translation>Dokumentace chybí</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source>Documentation</source> <translation>Dokumentace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4781"/> + <location filename="UI/UserInterface.py" line="4786"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>Adresář PyQt4 dokumentace není nakonfigurován.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source>Save tasks</source> <translation>Uložit úlohy</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source>Read tasks</source> <translation>Načíst úlohy</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Error during updates check</source> <translation>Chyba během zjišťování aktualizací</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>Update available</source> <translation>Byla nalezena aktualizace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2008"/> + <location filename="UI/UserInterface.py" line="2013"/> <source>Show external tools</source> <translation>Zobrazit externí nástroje</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2005"/> + <location filename="UI/UserInterface.py" line="2010"/> <source>Show external &tools</source> <translation>Zobrazit externí nás&troje</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Could not perform updates check.</source> <translation>Kontrolu updatů nelze provést.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5641"/> + <location filename="UI/UserInterface.py" line="5646"/> <source>&Cancel</source> <translation>&Zrušit</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>First time usage</source> <translation>Spuštěno poprvé</translation> </message> @@ -48935,62 +48940,62 @@ <translation>Inicializace Plugin manažera...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2369"/> + <location filename="UI/UserInterface.py" line="2374"/> <source>P&lugins</source> <translation>P&luginy</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2454"/> + <location filename="UI/UserInterface.py" line="2459"/> <source>Plugins</source> <translation>Pluginy</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>Plugin Infos</source> <translation>Plugin Infa</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2115"/> + <location filename="UI/UserInterface.py" line="2120"/> <source>Show Plugin Infos</source> <translation>Zobrazit Plugin infa</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2116"/> + <location filename="UI/UserInterface.py" line="2121"/> <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> <translation><b>Plugin Infa</b><p>Otevře dialog, který zobrazí informace o načtených pluginech.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>&Plugin Infos...</source> <translation>&Plugin Infa...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3168"/> + <location filename="UI/UserInterface.py" line="3173"/> <source>&Plugin Tools</source> <translation>&Plugin nástroje</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2138"/> + <location filename="UI/UserInterface.py" line="2143"/> <source>Uninstall Plugin</source> <translation>Odinstalovat plugin</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2135"/> + <location filename="UI/UserInterface.py" line="2140"/> <source>&Uninstall Plugin...</source> <translation>&Odinstalovat plugin...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2139"/> + <location filename="UI/UserInterface.py" line="2144"/> <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> <translation><b>Odinstalovat plugin...</b><p>Otevře dialog pro odinstalaci pluginu.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3321"/> + <location filename="UI/UserInterface.py" line="3326"/> <source>&Show all</source> <translation>&Zobrazit vše</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3323"/> + <location filename="UI/UserInterface.py" line="3328"/> <source>&Hide all</source> <translation>&Skrýt vše</translation> </message> @@ -49000,22 +49005,22 @@ <translation>Aktivace pluginů...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2318"/> + <location filename="UI/UserInterface.py" line="2323"/> <source>Wi&zards</source> <translation>&Průvodci</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show downloadable versions</source> <translation>Zobrazit verze ke stažení</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show &downloadable versions...</source> <translation>Zobrazit verze pro &download...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1714"/> + <location filename="UI/UserInterface.py" line="1719"/> <source>Show the versions available for download</source> <translation>Zobrazit dostupné verze ke stažení</translation> </message> @@ -49030,87 +49035,87 @@ <translation type="obsolete">Nelze stáhnout soubor s verzemi.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5803"/> + <location filename="UI/UserInterface.py" line="5808"/> <source><h3>Available versions</h3><table></source> <translation><h3>Dostupné verze</h3><table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2146"/> + <location filename="UI/UserInterface.py" line="2151"/> <source>Plugin Repository</source> <translation>Repozitář pluginů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2146"/> - <source>Plugin &Repository...</source> - <translation>&Repozitář pluginů...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2149"/> - <source>Show Plugins available for download</source> - <translation>Zobrazit pluginy dostupné ke stažení</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2151"/> + <source>Plugin &Repository...</source> + <translation>&Repozitář pluginů...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2154"/> + <source>Show Plugins available for download</source> + <translation>Zobrazit pluginy dostupné ke stažení</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2156"/> <source><b>Plugin Repository...</b><p>This opens a dialog, that shows a list of plugins available on the Internet.</p></source> <translation><b>Repozitář pluginů...</b><p>Otevře se dialog, který zobrazí seznam pluginů dostupných ke stažení přes internet.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2127"/> + <location filename="UI/UserInterface.py" line="2132"/> <source>Install Plugins</source> <translation>Instalovat pluginy</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2124"/> + <location filename="UI/UserInterface.py" line="2129"/> <source>&Install Plugins...</source> <translation>&Instalovat pluginy...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2128"/> + <location filename="UI/UserInterface.py" line="2133"/> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Instalovat pluginy...</b><p>Otevře dialog pro instalaci nebo aktualizaci pluginů.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1915"/> + <location filename="UI/UserInterface.py" line="1920"/> <source>Mini Editor</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1911"/> - <source>Mini &Editor...</source> - <translation>Mini &Editor...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1916"/> + <source>Mini &Editor...</source> + <translation>Mini &Editor...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1921"/> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini editor</b><p>Otevře se okno s jednoduchým editorem</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>&Designer 4...</source> <translation>&Designer 4...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>&Linguist 4...</source> <translation>&Linguist 4...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Toolbars</source> <translation>Lišty nástrojů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Tool&bars...</source> <translation>&Lišty nástrojů...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2033"/> + <location filename="UI/UserInterface.py" line="2038"/> <source>Configure toolbars</source> <translation>Konfigurace lišt nástrojů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2034"/> + <location filename="UI/UserInterface.py" line="2039"/> <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> <translation><b>Listy nástrojů</b><p>Konfigurace lišt nástrojů. S tímto dialogem můžete změnit akce zobrazené v různých nástrojových lištách nebo definovat své vlastní nástrojové lišty.</p></translation> </message> @@ -49120,337 +49125,337 @@ <translation>Obnovit manažer nástrojových lišt...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>External Tools</source> <translation>Externí nástroje</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>Multiproject-Viewer</source> <translation>Prohlížeč multiprojektu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>&Multiproject-Viewer</source> <translation>Prohlížeč &multiprojektu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1378"/> + <location filename="UI/UserInterface.py" line="1383"/> <source>Toggle the Multiproject-Viewer window</source> <translation>Přepnout okno Prohlížeč multiprojektu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1379"/> + <location filename="UI/UserInterface.py" line="1384"/> <source><b>Toggle the Multiproject-Viewer window</b><p>If the Multiproject-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Přepnout okno Prohlížeče multiprojektu</b><p>Pokud bylo okno skryto, tak se zobrazí. Pokud se zobrazovalo, tak se skryje.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Activate Multiproject-Viewer</source> <translation>Aktivovat prohlížeč multiprojektu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Temp&late-Viewer</source> <translation>Proh&lížeč šablon</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source>Save session</source> <translation>Uložit relaci</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source>Read session</source> <translation>Načíst relaci</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2603"/> + <location filename="UI/UserInterface.py" line="2608"/> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation><p>Tato část status baru zobrazuje aktuální kódování editorů.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2617"/> + <location filename="UI/UserInterface.py" line="2622"/> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>Tato část status baru zobrazuje indikátor práva zápisu editoru do souboru.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source>SSL Errors</source> <translation>SSL chyby</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request Feature</source> <translation>Požadavek na vlastnost</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request &Feature...</source> <translation>&Požadavek na vlastnost...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1736"/> + <location filename="UI/UserInterface.py" line="1741"/> <source>Send a feature request</source> <translation>Poslat požadavek na vlastnost</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1737"/> + <location filename="UI/UserInterface.py" line="1742"/> <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> <translation><b>Požadavek na vlastnost...</b><p>Otevře dialog pro odeslání požadavku.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2596"/> + <location filename="UI/UserInterface.py" line="2601"/> <source><p>This part of the status bar displays the current editors language.</p></source> <translation><p>Tato část status baru zobrazuje aktuální jazyk editoru.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2626"/> + <location filename="UI/UserInterface.py" line="2631"/> <source><p>This part of the status bar displays the name of the file of the current editor.</p></source> <translation><p>Tato část statusbaru zobrazuje jméno souboru v aktuálním editoru.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2633"/> + <location filename="UI/UserInterface.py" line="2638"/> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation><p>Tato část status baru zobrazuje číslo řádku v aktuálním editoru.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2640"/> + <location filename="UI/UserInterface.py" line="2645"/> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>Tato část status baru zobrazuje pozici kurzoru v aktuálním editoru.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>Vertical Toolbox</source> <translation>Svislá nástrojová lišta</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>Horizontal Toolbox</source> <translation>Vodorovná nástrojová lišta</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>&Vertical Toolbox</source> <translation>S&vislá nástrojová lišta</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1541"/> + <location filename="UI/UserInterface.py" line="1546"/> <source>Toggle the Vertical Toolbox window</source> <translation>Přepnout na svislou nástrojovou lištu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1542"/> + <location filename="UI/UserInterface.py" line="1547"/> <source><b>Toggle the Vertical Toolbox window</b><p>If the Vertical Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Přepnout svislou nástrojovou lištu</b><p>Pokud je svislá nástrojová lišta skryta, tak se zobrazí. Je-li zobrazena, skryje se.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>&Horizontal Toolbox</source> <translation>&Horizontální lista nástrojů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1553"/> + <location filename="UI/UserInterface.py" line="1558"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Přepnout na vodorovnou lištu nástrojů</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1554"/> + <location filename="UI/UserInterface.py" line="1559"/> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Přepnout vodorovnou nástrojovou lištu</b><p>Pokud je vodorovná nástrojová lišta skryta, tak se zobrazí. Je-li zobrazena, skryje se.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>Restart application</source> <translation>Restartovat aplikaci</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>The application needs to be restarted. Do it now?</source> <translation>Aplikace potřebuje restartovat. Má se provést nyní?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Terminal</source> <translation>Terminál</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Te&rminal</source> <translation>Te&rminál</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1439"/> + <location filename="UI/UserInterface.py" line="1444"/> <source>Toggle the Terminal window</source> <translation>Přepnout do okna s terminálem</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1440"/> + <location filename="UI/UserInterface.py" line="1445"/> <source><b>Toggle the Terminal window</b><p>If the Terminal window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Přepnout do okna s terminálem</b><p>Pokud je okno skryto, tak se zobrazí. Je-li zobrazeno, skryje se.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Activate Terminal</source> <translation>Aktivovat terminál</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Alt+Shift+R</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Alt+Shift+A</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2378"/> + <location filename="UI/UserInterface.py" line="2383"/> <source>Configure...</source> <translation>Konfigurovat...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2610"/> + <location filename="UI/UserInterface.py" line="2615"/> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation><p>Tato část status baru zobrazuje eol nastavení v aktuálním editoru.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Switch between tabs</source> <translation>Přepnout mezi taby</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Ctrl+1</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>Export Preferences</source> <translation>Exportovat předvolby</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>E&xport Preferences...</source> <translation>E&xportovat předvolby...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1975"/> + <location filename="UI/UserInterface.py" line="1980"/> <source>Export the current configuration</source> <translation>Export aktuální konfigurace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1976"/> + <location filename="UI/UserInterface.py" line="1981"/> <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> <translation><b>Export předvoleb</b><p>Export aktuální konfigurace do souboru.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1983"/> - <source>Import Preferences</source> - <translation>Import předvoleb</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1983"/> - <source>I&mport Preferences...</source> - <translation>I&mport předvoleb...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1986"/> - <source>Import a previously exported configuration</source> - <translation>Import dříve exportované konfigurace</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1988"/> + <source>Import Preferences</source> + <translation>Import předvoleb</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1988"/> + <source>I&mport Preferences...</source> + <translation>I&mport předvoleb...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1991"/> + <source>Import a previously exported configuration</source> + <translation>Import dříve exportované konfigurace</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1993"/> <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> <translation><b>Import předvoleb</b><p>Import dříve exportované konfigurace.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Show next</source> <translation>Zobrazit další</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Show previous</source> <translation>Zobrazit předchozí</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>Left Sidebar</source> <translation>Levé menu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>&Left Sidebar</source> <translation>&Levé menu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1564"/> + <location filename="UI/UserInterface.py" line="1569"/> <source>Toggle the left sidebar window</source> <translation>Přepnout okno levého menu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1565"/> + <location filename="UI/UserInterface.py" line="1570"/> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Přepnout okno levého menu</b><p>Je-li okno levého menu skryto, tak se zobrazí. Je-li zobrazeno, skryje se.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>Bottom Sidebar</source> <translation>Dolní menu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>&Bottom Sidebar</source> <translation>&Dolní menu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1576"/> + <location filename="UI/UserInterface.py" line="1581"/> <source>Toggle the bottom sidebar window</source> <translation>Přepnout okno dolního menu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1577"/> + <location filename="UI/UserInterface.py" line="1582"/> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Přepnout okno dolního menu</b><p>Je-li okno dolního menu skryto, tak se zobrazí. Je-li zobrazeno, skryje se.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>&Debug-Viewer</source> <translation>Prohlížeč &debugeru</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1398"/> + <location filename="UI/UserInterface.py" line="1403"/> <source>Toggle the Debug-Viewer window</source> <translation>Přepnout okno debug prohlížeče</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1399"/> + <location filename="UI/UserInterface.py" line="1404"/> <source><b>Toggle the Debug-Viewer window</b><p>If the Debug-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Přepnout okno debug prohlížeče</b><p>Je-li okno debug prohlížeče skryto, zobrazí se. Je-li zobrazeno, skryje se.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Activate Debug-Viewer</source> <translation>Aktivní debug prohlížeč</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1899"/> - <source>SQL Browser</source> - <translation></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1899"/> - <source>SQL &Browser...</source> - <translation>SQL &Browser...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1903"/> - <source>Browse a SQL database</source> - <translation>Procházet SQL databázi</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1904"/> + <source>SQL Browser</source> + <translation></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1904"/> + <source>SQL &Browser...</source> + <translation>SQL &Browser...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1908"/> + <source>Browse a SQL database</source> + <translation>Procházet SQL databázi</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1909"/> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>SQL Browser</b><p>Procházet SQL databázi.</p></translation> </message> @@ -49490,42 +49495,42 @@ <translation type="obsolete">&Web prohlížeč...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> + <location filename="UI/UserInterface.py" line="1940"/> <source>Icon Editor</source> <translation>Editor ikon</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> + <location filename="UI/UserInterface.py" line="1940"/> <source>&Icon Editor...</source> <translation>Editor &ikon...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt 3 support</source> <translation>Qt 3 podpora</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>PySide Documentation</source> <translation>PySide dokumentace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>Py&Side Documentation</source> <translation>Py&Side dokumentace</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2258"/> + <location filename="UI/UserInterface.py" line="2263"/> <source>Open PySide Documentation</source> <translation>Otevřít PySide dokumentaci</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2259"/> + <location filename="UI/UserInterface.py" line="2264"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>PySide dokumentace</b><p>Zobrazit PySide dokumentaci. V závislosti na vašich nastaveních zobrazí interní Eric prohlížeč nápovědy nebo spustí webový prohlížeč nebo Qt Assistant.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation><p>Počátek dokumentace PySide nebyl nastaven.</p></translation> </message> @@ -49535,37 +49540,37 @@ <translation><p>Soubor Qt Style Sheet <b>{0}</b> nelze vytvořit.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1264"/> + <location filename="UI/UserInterface.py" line="1269"/> <source>{0} - Passive Mode</source> <translation>{0} - Pasivní mód</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1269"/> + <location filename="UI/UserInterface.py" line="1274"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - pasivní mód</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1272"/> + <location filename="UI/UserInterface.py" line="1277"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - pasivní mód</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1674"/> + <location filename="UI/UserInterface.py" line="1679"/> <source><b>Helpviewer</b><p>Display the eric5 web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is search in the Qt help collection.</p></source> <translation><b>Prohlížeč nápovědy</b><p>Otevře se eric5 web prohlížeč. Toto okno zobrazuje HTML soubory s nápovědou z Qt kolekce. Má schopnosti navigovat přes odkazy, nastavovat záložky, tisknout zobrazenou nápovědu a další možnosti. Můžete jej také použít pro procházení internetem</p><p>Je-li otevřen s hledaným slovem, je toto slovo hledáno v Qt nápovědách.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1704"/> + <location filename="UI/UserInterface.py" line="1709"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric5.</p></source> <translation><b>Zjistit aktualizace</b><p>Zkontroluje přes internet jestli existují nějaké aktualizace Eric5.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1716"/> + <location filename="UI/UserInterface.py" line="1721"/> <source><b>Show downloadable versions...</b><p>Shows the eric5 versions available for download from the internet.</p></source> <translation><b>Zobrazit dostupné verze ke stažení</b><p>Zobrazit dostupné verze eric5 pro stažení z internetu.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1927"/> + <location filename="UI/UserInterface.py" line="1932"/> <source>Start the eric5 Web Browser</source> <translation>Spustit eric5 web prohlížeč</translation> </message> @@ -49575,106 +49580,106 @@ <translation type="obsolete"><b>Web prohlížeč</b><p>Procházet internet pomocí eric5 web prohlížeče.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1939"/> + <location filename="UI/UserInterface.py" line="1944"/> <source>Start the eric5 Icon Editor</source> <translation>Spustit eric5 editor ikon</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1940"/> + <location filename="UI/UserInterface.py" line="1945"/> <source><b>Icon Editor</b><p>Starts the eric5 Icon Editor for editing simple icons.</p></source> <translation><b>Editor ikon</b><p>Spustí se eric5 editor ikon pro jednoduchou editaci ikon.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2009"/> + <location filename="UI/UserInterface.py" line="2014"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric5.</p></source> <translation><b>Zobrazit externí nástroje</b><p>Otevře dialog pro zobrazení cesty a verze externích nástrojů používaných Eric5.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2242"/> + <location filename="UI/UserInterface.py" line="2247"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric5 installation directory.</p></source> <translation><b>Eric API dokumentace</b><p>Zobrazit Eric API dokumentaci. Umístění dokumentace je v podadresáři Documentation/Source v instalačním adresáři eric5.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2697"/> + <location filename="UI/UserInterface.py" line="2702"/> <source>External Tools/{0}</source> <translation>Externí nástroje/{0}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt v.3 is not supported by eric5.</source> <translation>Qt v.3 není podporováno v eric5.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Soubor <b>{0}</b> neexistuje nebo má nulovou délku.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4147"/> + <location filename="UI/UserInterface.py" line="4152"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Qt-Designer.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4204"/> + <location filename="UI/UserInterface.py" line="4209"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Qt-Linguist.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4248"/> + <location filename="UI/UserInterface.py" line="4253"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Qt-Assistant.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4287"/> + <location filename="UI/UserInterface.py" line="4292"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit aktuální prohlížeč.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4346"/> + <location filename="UI/UserInterface.py" line="4351"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit UI Previewer.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4391"/> + <location filename="UI/UserInterface.py" line="4396"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Previewer překladů.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4410"/> + <location filename="UI/UserInterface.py" line="4415"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nelze spustit SQL Browser.<br>Ujistěte se, že je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4477"/> + <location filename="UI/UserInterface.py" line="4482"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>V externím nástroji '{0}' ve skupině '{1}' nebyl záznam nástroje nalezen.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>No toolgroup entry '{0}' found.</source> <translation>Skupina nástrojů '{0}' nenalezena. </translation> </message> <message> - <location filename="UI/UserInterface.py" line="4519"/> + <location filename="UI/UserInterface.py" line="4524"/> <source>Starting process '{0} {1}'. </source> <translation>Spouštím proces '{0} {1}'. </translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Nemohu spustit příkaz <b>{0}</b><br>Ověřte jestli je dostupný jako <b>{1}</b>. </p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4612"/> + <location filename="UI/UserInterface.py" line="4617"/> <source>Process '{0}' has exited. </source> <translation>Proces '{0}' byl ukončen. </translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Adresář dokumentace "<b>{0}</b>" nebyl nalezen.</p></translation> </message> @@ -49694,12 +49699,12 @@ <translation type="obsolete">Soubor klávesových zkratek (*.e4k *.e4kz)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Do souboru s úlohami <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor s úlohami <b>{0}</b> nelze načíst.</p></translation> </message> @@ -49709,12 +49714,12 @@ <translation type="obsolete"><p>Soubor s úlohami <b>{0}</b> je v nepodporovaném formátu.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Zápis do souboru relace session <b>{0}</b> se nezdařil.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor relace session <b>{0}</b> nelze přečíst.</p></translation> </message> @@ -49724,212 +49729,212 @@ <translation type="obsolete"><p>Soubor relace (session) <b>{0}</b> je v nepodporovaném formátu.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> není soubor.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5646"/> + <location filename="UI/UserInterface.py" line="5651"/> <source>Trying host {0}</source> <translation>Zkouším host {0}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>The update to <b>{0}</b> of eric5 is available at <b>{1}</b>. Would you like to get it?</source> <translation>Aktualizace <b>{0}</b> eric5 je připravena na <b>{1}</b>. Chcete ji stáhnout a nainstalovat?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>Eric5 is up to date</source> <translation>Eric5 je aktuální</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>You are using the latest version of eric5</source> <translation>Používáte poslední verzi eric5</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation><p>SSL chyby:</p><p>{0}</p><p>Chcete tyto chyby ignorovat?</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>eric5 has not been configured yet. The configuration dialog will be started.</source> <translation>eric5 nebyl ještě nakonfigurován. Bude spuštěn konfigurační dialog.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>Cooperation</source> <translation>Spolupráce</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>&Cooperation</source> <translation>Spoluprá&ce</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1587"/> + <location filename="UI/UserInterface.py" line="1592"/> <source>Toggle the Cooperation window</source> <translation>Zobrazit/skrýt okno spolupráce</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1589"/> + <location filename="UI/UserInterface.py" line="1594"/> <source><b>Toggle the Cooperation window</b><p>If the Cooperation window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Zobrazit/skrýt okno spolupráce</b><p>Pokud je okno skryté zobrazí se. Pokud se okno zobrazuje, tak se skryje.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Activate Cooperation-Viewer</source> <translation>Aktivovat náhled spolupráce</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Alt+Shift+O</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>Symbols</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>&Symbols</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1609"/> + <location filename="UI/UserInterface.py" line="1614"/> <source>Toggle the Symbols window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1611"/> + <location filename="UI/UserInterface.py" line="1616"/> <source><b>Toggle the Symbols window</b><p>If the Symbols window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Activate Symbols-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Alt+Shift+Y</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>&Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1631"/> + <location filename="UI/UserInterface.py" line="1636"/> <source>Toggle the Numbers window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1633"/> + <location filename="UI/UserInterface.py" line="1638"/> <source><b>Toggle the Numbers window</b><p>If the Numbers window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Activate Numbers-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Alt+Shift+B</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2205"/> + <location filename="UI/UserInterface.py" line="2210"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2206"/> + <location filename="UI/UserInterface.py" line="2211"/> <source><b>Python 3 Documentation</b><p>Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and <i>/usr/share/doc/packages/python/html</i> on Unix. Set PYTHON3DOCDIR in your environment to override this. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2220"/> + <location filename="UI/UserInterface.py" line="2225"/> <source>Open Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2221"/> + <location filename="UI/UserInterface.py" line="2226"/> <source><b>Python 2 Documentation</b><p>Display the Python 2 documentation. If no documentation directory is configured, the location of the Python 2 documentation is assumed to be the doc directory underneath the location of the configured Python 2 executable on Windows and <i>/usr/share/doc/packages/python/html/python-docs-html</i> on Unix. Set PYTHON2DOCDIR in your environment to override this. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5690"/> + <location filename="UI/UserInterface.py" line="5695"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 Web Browser</source> - <translation type="unfinished">eric5 web prohlížeč</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 &Web Browser...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 Web Browser</source> + <translation type="unfinished">eric5 web prohlížeč</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 &Web Browser...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1933"/> <source><b>eric5 Web Browser</b><p>Browse the Internet with the eric5 Web Browser.</p></source> <translation type="unfinished"></translation> </message> @@ -49954,78 +49959,78 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New Window</source> <translation type="unfinished">Nové okno</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New &Window</source> <translation type="unfinished">&Nové okno</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> - <source>Ctrl+Shift+N</source> - <comment>File|New Window</comment> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1313"/> + <source>Ctrl+Shift+N</source> + <comment>File|New Window</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1318"/> <source>Open a new eric5 instance</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1314"/> + <location filename="UI/UserInterface.py" line="1319"/> <source><b>New Window</b><p>This opens a new instance of the eric5 IDE.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1776"/> + <location filename="UI/UserInterface.py" line="1781"/> <source>Rerun failed tests of the last run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1778"/> + <location filename="UI/UserInterface.py" line="1783"/> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare &Files side by side...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>Snapshot</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>&Snapshot...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1951"/> - <source>Take snapshots of a screen region</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1952"/> + <source>Snapshot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1952"/> + <source>&Snapshot...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1956"/> + <source>Take snapshots of a screen region</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1957"/> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4457"/> + <location filename="UI/UserInterface.py" line="4462"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric5_de.ts Wed May 02 19:10:17 2012 +0200 +++ b/i18n/eric5_de.ts Fri May 04 20:06:17 2012 +0200 @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage=""> +<!DOCTYPE TS> +<TS version="2.0" language="de"> <context> <name>AboutDialog</name> <message> @@ -1762,8 +1763,8 @@ </message> <message> <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="142"/> - <source>Open in New &Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>In neuem &Register öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open in New &Tab Ctrl+LMB</source> + <translation>In neuem &Register öffnen Strg+LMK</translation> </message> <message> <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="147"/> @@ -2004,7 +2005,7 @@ </message> <message> <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="90"/> - <source>Open in New &Tab<byte value="x9"/>Ctrl+LMB</source> + <source>Open in New &Tab Ctrl+LMB</source> <translation>In neuem &Register öffnen\tStrg+LMK</translation> </message> <message> @@ -4788,52 +4789,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="Debugger/DebugViewer.py" line="163"/> + <location filename="Debugger/DebugViewer.py" line="164"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation>Gib reguläre Ausdrücke getrennt durch ';' ein, um Variablenfilter zu definieren.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="166"/> + <location filename="Debugger/DebugViewer.py" line="167"/> <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source> <translation>Gib reguläre Ausdrücke getrennt durch ';' ein, um Variablenfilter zu definieren. Alle Variablen und Klassenattribute, auf die einer der Ausdrücke passt, werden in der obigen Liste nicht dargestellt.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="171"/> + <location filename="Debugger/DebugViewer.py" line="172"/> <source>Set</source> <translation>Setzen</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="149"/> + <location filename="Debugger/DebugViewer.py" line="150"/> <source>Source</source> <translation>Quelltext</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="214"/> + <location filename="Debugger/DebugViewer.py" line="215"/> <source>Threads:</source> <translation>Threads:</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>ID</source> <translation>ID</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>Name</source> <translation>Name</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>State</source> <translation>Status</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="413"/> + <location filename="Debugger/DebugViewer.py" line="414"/> <source>waiting at breakpoint</source> <translation>am Haltepunkt wartend</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="415"/> + <location filename="Debugger/DebugViewer.py" line="416"/> <source>running</source> <translation>ausführend</translation> </message> @@ -13369,7 +13370,7 @@ </message> <message> <location filename="Helpviewer/HelpBrowserWV.py" line="910"/> - <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> + <source>Open Link in New Tab Ctrl+LMB</source> <translation>Link in neuem Fenster öffnen\tStrg+LMK</translation> </message> <message> @@ -35572,7 +35573,7 @@ <translation>Alle hervorheben</translation> </message> <message> - <location filename="UI/SearchWidget.py" line="160"/> + <location filename="UI/SearchWidget.py" line="163"/> <source>'{0}' was not found.</source> <translation>'{0}' wurde nicht gefunden.</translation> </message> @@ -35638,139 +35639,144 @@ <context> <name>Shell</name> <message> - <location filename="QScintilla/Shell.py" line="58"/> + <location filename="QScintilla/Shell.py" line="114"/> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="163"/> + <location filename="QScintilla/Shell.py" line="221"/> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="164"/> + <location filename="QScintilla/Shell.py" line="222"/> <source>Reset</source> <translation>Zurücksetzen</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="56"/> + <location filename="QScintilla/Shell.py" line="112"/> <source>Shell - Passive</source> <translation>Shell - Passiv</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="127"/> + <location filename="QScintilla/Shell.py" line="183"/> <source>Passive >>> </source> <translation>Passiv >>> </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="159"/> + <location filename="QScintilla/Shell.py" line="215"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="160"/> + <location filename="QScintilla/Shell.py" line="216"/> <source>Paste</source> <translation>Einfügen</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="165"/> + <location filename="QScintilla/Shell.py" line="223"/> <source>Reset and Clear</source> <translation>Zurücksetzen und Löschen</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <source>Drop Error</source> <translation>Drop Fehler</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="551"/> + <location filename="QScintilla/Shell.py" line="609"/> <source>No.</source> <translation>Nr.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <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="142"/> + <location filename="QScintilla/Shell.py" line="198"/> <source>Start</source> <translation>Starten</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="553"/> + <location filename="QScintilla/Shell.py" line="611"/> <source>{0} on {1}, {2}</source> <translation>{0} auf {1}, {2}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="60"/> + <location filename="QScintilla/Shell.py" line="116"/> <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. Pressing the up or down key after some text has been entered will start an incremental search.</p><p>The shell has some special commands. 'reset' kills the shell and starts a new one. 'clear' clears the display of the shell window. 'start' is used to switch the shell language and must be followed by a supported language. Supported languages are listed by the 'languages' command. These commands (except 'languages') 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 commandline completions. The relevant entry may be selected from this list. If only one entry is available, this will 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 Python Kommando ausführend 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 History-Funktion, die mit der Cursortasten hoch und runter bedient wird. Eine inkrementelle Suche wird gestartet, indem die Cursortasten hoch und runter nach Eingabe von Text gedrückt werden.</p><p>Die Shell hat einige spezielle Kommandos. 'reset' beendet den Interpreter und startet einen neuen. 'clear' löscht die Anzeige des Shell Fensters. 'start' wird benutzt, um die Sprache der Shell umzuschalten, und muß von einer unterstützten Sprache gefolgt werden. Unterstützte Sprachen werden durch 'languages' aufgelistet. Diese Befehle (Ausnahme 'languages') sind auch über das Kontextmenu 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="1165"/> + <location filename="QScintilla/Shell.py" line="1223"/> <source>Shell language "{0}" not supported. </source> <translation>Die Shell Sprache "{0}" wird nicht unterstützt. </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="548"/> + <location filename="QScintilla/Shell.py" line="606"/> <source>Passive Debug Mode</source> <translation>Passiver Debugmodus</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="614"/> + <location filename="QScintilla/Shell.py" line="672"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="622"/> + <location filename="QScintilla/Shell.py" line="680"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="151"/> + <location filename="QScintilla/Shell.py" line="207"/> <source>History</source> <translation>Historie</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="152"/> + <location filename="QScintilla/Shell.py" line="208"/> <source>Select entry</source> <translation>Eintrag auswählen</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="153"/> + <location filename="QScintilla/Shell.py" line="209"/> <source>Show</source> <translation>Zeige</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <source>Select History</source> <translation>Eintrag auswählen</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <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="549"/> + <location filename="QScintilla/Shell.py" line="607"/> <source> Not connected</source> <translation> nicht verbunden</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="170"/> + <location filename="QScintilla/Shell.py" line="228"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="158"/> + <location filename="QScintilla/Shell.py" line="214"/> <source>Cut</source> <translation>Ausschneiden</translation> </message> + <message> + <location filename="QScintilla/Shell.py" line="219"/> + <source>Find</source> + <translation>Suchen</translation> + </message> </context> <context> <name>ShellHistoryDialog</name> @@ -46723,272 +46729,272 @@ <context> <name>UserInterface</name> <message> - <location filename="UI/UserInterface.py" line="1651"/> + <location filename="UI/UserInterface.py" line="1656"/> <source>What's This?</source> <translation>Was ist das?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1656"/> + <location filename="UI/UserInterface.py" line="1661"/> <source>Context sensitive help</source> <translation>Kontextsensitive Hilfe</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1657"/> + <location filename="UI/UserInterface.py" line="1662"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zeige kontextsensitive Hilfe an<b></p>Im "Was ist das?" Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> + <location filename="UI/UserInterface.py" line="1673"/> <source>Helpviewer</source> <translation>Hilfe</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> - <source>&Helpviewer...</source> - <translation>&Hilfe...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1673"/> + <source>&Helpviewer...</source> + <translation>&Hilfe...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1678"/> <source>Open the helpviewer window</source> <translation>Öffnet das Hilfe-Fenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2450"/> + <location filename="UI/UserInterface.py" line="2455"/> <source>Unittest</source> <translation>Modultests</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1746"/> + <location filename="UI/UserInterface.py" line="1751"/> <source>&Unittest...</source> <translation>&Modultests...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1750"/> + <location filename="UI/UserInterface.py" line="1755"/> <source>Start unittest dialog</source> <translation>Starte den Modultest Dialog</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2352"/> + <location filename="UI/UserInterface.py" line="2357"/> <source>&Window</source> <translation>&Fenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2325"/> + <location filename="UI/UserInterface.py" line="2330"/> <source>&Tools</source> <translation>&Werkzeuge</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2383"/> + <location filename="UI/UserInterface.py" line="2388"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> + <location filename="UI/UserInterface.py" line="1297"/> <source>Quit</source> <translation>Beenden</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>Preferences</source> <translation>Einstellungen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>&Preferences...</source> <translation>&Einstellungen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1962"/> + <location filename="UI/UserInterface.py" line="1967"/> <source>Set the prefered configuration</source> <translation>Konfiguriert die Einstellungen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1963"/> + <location filename="UI/UserInterface.py" line="1968"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Einstellungen</b><p>Konfiguriert die einstellbaren Parameter der Applikation nach ihren Wünschen.</p></translation> </message> <message> + <location filename="UI/UserInterface.py" line="1302"/> + <source>Quit the IDE</source> + <translation>Beenden der Entwicklungsumgebung</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2454"/> + <source>Tools</source> + <translation>Werkzeuge</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4280"/> + <source>Help</source> + <translation>Hilfe</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2363"/> + <source>&Toolbars</source> + <translation>&Werkzeugleisten</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4388"/> + <source>Problem</source> + <translation>Problem</translation> + </message> + <message> <location filename="UI/UserInterface.py" line="1297"/> - <source>Quit the IDE</source> - <translation>Beenden der Entwicklungsumgebung</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2449"/> - <source>Tools</source> - <translation>Werkzeuge</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="4275"/> - <source>Help</source> - <translation>Hilfe</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2358"/> - <source>&Toolbars</source> - <translation>&Werkzeugleisten</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="4383"/> - <source>Problem</source> - <translation>Problem</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1292"/> <source>&Quit</source> <translation>B&eenden</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1298"/> + <location filename="UI/UserInterface.py" line="1303"/> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Die Entwicklungsumgebung beenden</b><p>Dies beendet die Entwicklungsumgebung. Ungesicherte Änderungen können zuvor gesichert werden. Ein Python Programm, das gerade debugged wird, wird beendet und sämtliche Einstellungen werden gespeichert.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> + <location filename="UI/UserInterface.py" line="1656"/> <source>&What's This?</source> <translation>&Was ist das?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1264"/> - <source>{0} - Passive Mode</source> - <translation>{0} - Passiver Modus</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1269"/> + <source>{0} - Passive Mode</source> + <translation>{0} - Passiver Modus</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1274"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - Passiver Modus</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>Log-Viewer</source> <translation>Ausgabefenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2451"/> + <location filename="UI/UserInterface.py" line="2456"/> <source>Settings</source> <translation>Einstellungen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>&Log-Viewer</source> <translation>&Ausgabefenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1480"/> + <location filename="UI/UserInterface.py" line="1485"/> <source>Toggle the Log-Viewer window</source> <translation>Schalte das Ausgabefenster um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1481"/> + <location filename="UI/UserInterface.py" line="1486"/> <source><b>Toggle the Log-Viewer window</b><p>If the Log-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Ausgabefenster um</b><p>Falls das Ausgabefenster nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show Versions</source> <translation>Zeige Versionen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show &Versions</source> <translation>Zeige &Versionen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1693"/> + <location filename="UI/UserInterface.py" line="1698"/> <source>Display version information</source> <translation>Zeigt Versionsinformationen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1694"/> + <location filename="UI/UserInterface.py" line="1699"/> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Zeige Versionen</b><p>Zeigt Versionsinformationen an.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard &Shortcuts...</source> <translation>&Tastaturkurzbefehle...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2046"/> + <location filename="UI/UserInterface.py" line="2051"/> <source>Set the keyboard shortcuts</source> <translation>Setze die Tastaturkurzbefehle</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2047"/> + <location filename="UI/UserInterface.py" line="2052"/> <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> <translation><b>Tastaturkurzbefehle</b><p>Setze die Tastaturkurzbefehle der Applikation mit den bevorzugten Werten.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2313"/> + <location filename="UI/UserInterface.py" line="2318"/> <source>E&xtras</source> <translation>E&xtras</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Report Bug</source> <translation>Fehler berichten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1724"/> + <location filename="UI/UserInterface.py" line="1729"/> <source>Report &Bug...</source> <translation>&Fehler berichten...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1726"/> + <location filename="UI/UserInterface.py" line="1731"/> <source>Report a bug</source> <translation>Einen Fehler berichten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1727"/> + <location filename="UI/UserInterface.py" line="1732"/> <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> <translation><b>Fehler berichten...</b><p>Öffnet einen Dialog zum Senden eines Fehlerberichtes.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5127"/> + <location filename="UI/UserInterface.py" line="5132"/> <source>Export Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle exportieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2055"/> - <source>&Export Keyboard Shortcuts...</source> - <translation>Tastaturkurzbefehle &exportieren...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2059"/> - <source>Export the keyboard shortcuts</source> - <translation>Exportiert die Tastaturkurzbefehle</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2060"/> + <source>&Export Keyboard Shortcuts...</source> + <translation>Tastaturkurzbefehle &exportieren...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2064"/> + <source>Export the keyboard shortcuts</source> + <translation>Exportiert die Tastaturkurzbefehle</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2065"/> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>Tastaturkurzbefehle exportieren</b><p>Exportiert die Tastaturkurzbefehle der Applikation.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Import Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle importieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2067"/> - <source>&Import Keyboard Shortcuts...</source> - <translation>Tastaturkurzbefehle &importieren...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2071"/> - <source>Import the keyboard shortcuts</source> - <translation>Importiert die Tastaturkurzbefehle</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2072"/> + <source>&Import Keyboard Shortcuts...</source> + <translation>Tastaturkurzbefehle &importieren...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2076"/> + <source>Import the keyboard shortcuts</source> + <translation>Importiert die Tastaturkurzbefehle</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2077"/> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>Tastaturkurzbefehle importieren</b><p>Importiert die Tastaturkurzbefehle der Applikation.</p></translation> </message> @@ -47028,112 +47034,112 @@ <translation>Initialisiere Werkzeuge...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1751"/> + <location filename="UI/UserInterface.py" line="1756"/> <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> <translation><b>Modultests</b><p>Führe Modultests durch. Der Dialog bietet die Möglichkeit eine Zusammenstellung von Modultests auszuwählen und auszuführen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> - <source>Unittest Restart</source> - <translation>Modultest neu starten</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1763"/> - <source>Restart last unittest</source> - <translation>Modultest neu starten</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1764"/> + <source>Unittest Restart</source> + <translation>Modultest neu starten</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1768"/> + <source>Restart last unittest</source> + <translation>Modultest neu starten</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1769"/> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation><b>Modultest neu starten</b><p>Den letzten durchgeführten Modultest neu starten.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1786"/> - <source>Unittest Script</source> - <translation>Modultest (Skript)</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1790"/> - <source>Run unittest with current script</source> - <translation>Modultest für aktuelles Skript ausführen</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1791"/> + <source>Unittest Script</source> + <translation>Modultest (Skript)</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1795"/> + <source>Run unittest with current script</source> + <translation>Modultest für aktuelles Skript ausführen</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1796"/> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Modultest (Skript)</b><p>Modultest für aktuelles Skript ausführen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4052"/> + <location filename="UI/UserInterface.py" line="4057"/> <source>Unittest Project</source> <translation>Modultest (Projekt)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1803"/> + <location filename="UI/UserInterface.py" line="1808"/> <source>Run unittest with current project</source> <translation>Modultest für aktuellesProjekt ausführen</translation> </message> <message> + <location filename="UI/UserInterface.py" line="1809"/> + <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> + <translation><b>Modultest (Projekt)</b><p>Modultest für aktuelles Projekt ausführen.</p></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2301"/> + <source>&Unittest</source> + <translation>&Modultests</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4057"/> + <source>There is no main script defined for the current project. Aborting</source> + <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1764"/> + <source>&Restart Unittest...</source> + <translation>Modultest &neu starten...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1791"/> + <source>Unittest &Script...</source> + <translation>Modultest (&Skript)...</translation> + </message> + <message> <location filename="UI/UserInterface.py" line="1804"/> - <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> - <translation><b>Modultest (Projekt)</b><p>Modultest für aktuelles Projekt ausführen.</p></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2296"/> - <source>&Unittest</source> - <translation>&Modultests</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="4052"/> - <source>There is no main script defined for the current project. Aborting</source> - <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1759"/> - <source>&Restart Unittest...</source> - <translation>Modultest &neu starten...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1786"/> - <source>Unittest &Script...</source> - <translation>Modultest (&Skript)...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1799"/> <source>Unittest &Project...</source> <translation>Modultest (&Projekt)...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>Compare Files</source> <translation>Dateien vergleichen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>&Compare Files...</source> <translation>Dateien &vergleichen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1890"/> + <location filename="UI/UserInterface.py" line="1895"/> <source>Compare two files</source> <translation>Zwei Dateien vergleichen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1879"/> + <location filename="UI/UserInterface.py" line="1884"/> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Dateien vergleichen</b><p>Öffnet einen Dialog zum Vergleich zweier Dateien.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> - <source>Compare Files side by side</source> - <translation>Dateien Seite an Seite vergleichen</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1891"/> + <source>Compare Files side by side</source> + <translation>Dateien Seite an Seite vergleichen</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1896"/> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Dateien Seite an Seite vergleichen</b><p>Öffnet einen Dialog zum Vergleich zweier Dateien und zur Anzeige des Ergebnisse Seite an Seite.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source>Drop Error</source> <translation>Drop Fehler</translation> </message> @@ -47143,422 +47149,422 @@ <translation>Initialisiere Applikationsserver...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1272"/> + <location filename="UI/UserInterface.py" line="1277"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - Passiver Modus</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-Browser</source> <translation>Datei-Browser</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1324"/> - <source>Edit Profile</source> - <translation>Editieren Profil</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1329"/> + <source>Edit Profile</source> + <translation>Editieren Profil</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1334"/> <source>Activate the edit view profile</source> <translation>Aktiviert das Editieren Ansichtsprofil </translation> </message> <message> - <location filename="UI/UserInterface.py" line="1330"/> + <location filename="UI/UserInterface.py" line="1335"/> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Editieren Profil</b><p>Aktiviert das "Editieren Ansichtsprofil". Fenster, die in diesem Profil angezeigt werden sollen, können im "Ansichtenprofile konfigurieren" Dialog ausgewählt werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1339"/> - <source>Debug Profile</source> - <translation>Debuggen Profil</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1344"/> + <source>Debug Profile</source> + <translation>Debuggen Profil</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1349"/> <source>Activate the debug view profile</source> <translation>Aktiviert das Debuggen Ansichtsprofil </translation> </message> <message> - <location filename="UI/UserInterface.py" line="1346"/> + <location filename="UI/UserInterface.py" line="1351"/> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Debuggen Profil</b><p>Aktiviert das "Debuggen Ansichtsprofil". Fenster, die in diesem Profil angezeigt werden sollen, können im "Ansichtenprofile konfigurieren" Dialog ausgewählt werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-&Browser</source> <translation>Datei-&Browser</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1459"/> + <location filename="UI/UserInterface.py" line="1464"/> <source>Toggle the File-Browser window</source> <translation>Schalte das Datei-Browser Fenster um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1460"/> + <location filename="UI/UserInterface.py" line="1465"/> <source><b>Toggle the File-Browser window</b><p>If the File-Browser window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Datei-Browser Fenster um</b><p>Falls das Datei-Browser Fenster nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>View Profiles</source> <translation>Ansichtenprofile</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>&View Profiles...</source> <translation>&Ansichtenprofile...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2020"/> + <location filename="UI/UserInterface.py" line="2025"/> <source>Configure view profiles</source> <translation>Ansichtenprofile konfigurieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2021"/> + <location filename="UI/UserInterface.py" line="2026"/> <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> <translation><b>Ansichtenprofile</b><p>Ansichtenprofile konfigurieren. Mit diesem Dialog kann die Sichtbarkeit der verschiedenen Fenster für die vorbestimmten Ansichtenprofile eingestellt werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Die Datei <b>{0}</b> existiert nicht oder hat die Größe Null.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4147"/> + <location filename="UI/UserInterface.py" line="4152"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Designer konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4204"/> + <location filename="UI/UserInterface.py" line="4209"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Linguist konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4248"/> + <location filename="UI/UserInterface.py" line="4253"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Assistant konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Der Werkzeuge Eintrag <b>{0}</b> konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{1}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <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="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>UI Previewer</source> <translation>UI Betrachter</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>&UI Previewer...</source> <translation>&UI Betrachter...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1856"/> + <location filename="UI/UserInterface.py" line="1861"/> <source>Start the UI Previewer</source> <translation>Started den UI Betrachter</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1857"/> + <location filename="UI/UserInterface.py" line="1862"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation><b>UI Betrachter</b><p>Started den UI Betrachter.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4346"/> + <location filename="UI/UserInterface.py" line="4351"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der UI Betrachter konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>Translations Previewer</source> <translation>Übersetzungsvorschau</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>&Translations Previewer...</source> <translation>&Übersetzungsvorschau...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1867"/> + <location filename="UI/UserInterface.py" line="1872"/> <source>Start the Translations Previewer</source> <translation>Die Übersetzungsvorschau starten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1868"/> + <location filename="UI/UserInterface.py" line="1873"/> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Übersetzungsvorschau</b><p>Dies startet das Programm zur Vorschau von Übersetzungen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4391"/> + <location filename="UI/UserInterface.py" line="4396"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die Übersetzungsvorschau konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>&Shell</source> <translation>&Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1418"/> + <location filename="UI/UserInterface.py" line="1423"/> <source>Toggle the Shell window</source> <translation>Schalte das Shell Fenster um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1419"/> + <location filename="UI/UserInterface.py" line="1424"/> <source><b>Toggle the Shell window</b><p>If the Shell window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Shell Fenster um</b><p>Falls das Shell Fenster nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload APIs</source> <translation>APIs neu laden</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload &APIs</source> <translation>APIs &neu laden</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1997"/> + <location filename="UI/UserInterface.py" line="2002"/> <source>Reload the API information</source> <translation>Die API Informationen neu laden</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1998"/> + <location filename="UI/UserInterface.py" line="2003"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation><b>APIs neu laden</b><p>Lädt die API Informationen neu.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>Task-Viewer</source> <translation>Aufgabenanzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>T&ask-Viewer</source> <translation>&Aufgabenanzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1500"/> + <location filename="UI/UserInterface.py" line="1505"/> <source>Toggle the Task-Viewer window</source> <translation>Schalte das Aufgabenfenster um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1501"/> + <location filename="UI/UserInterface.py" line="1506"/> <source><b>Toggle the Task-Viewer window</b><p>If the Task-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Aufgabenfenster um</b><p>Falls das Aufgabenfenster nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source>Save tasks</source> <translation>Aufgaben speichern</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source>Read tasks</source> <translation>Aufgaben lesen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4275"/> + <location filename="UI/UserInterface.py" line="4280"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Momentan ist kein Betrachter angegeben. Bitte benutzen sie den Einstellungen Dialog, um einen festzulegen.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4287"/> + <location filename="UI/UserInterface.py" line="4292"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der Betrachter konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source>Documentation Missing</source> <translation>Dokumentation fehlt</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Der Dokumentationsstartpunkt "<b>{0}</b>" konnte nicht gefunden werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>Email Adresse oder Mail Server Adresse sind leer. Bitte konfiguriere die Email Einstellungen im Einstellungen Dialog.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Template-Viewer</source> <translation>Vorlagen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1520"/> + <location filename="UI/UserInterface.py" line="1525"/> <source>Toggle the Template-Viewer window</source> <translation>Schalte das Vorlagenfenster um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1522"/> + <location filename="UI/UserInterface.py" line="1527"/> <source><b>Toggle the Template-Viewer window</b><p>If the Template-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Vorlagenfenster um</b><p>Falls das Vorlagenfenster nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Activate Shell</source> <translation>Aktiviere Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Activate File-Browser</source> <translation>Aktiviere Datei-Browser</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Activate Log-Viewer</source> <translation>Aktiviere Ausgabefenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Activate Task-Viewer</source> <translation>Aktiviere Aufgabenanzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Activate Template-Viewer</source> <translation>Aktiviere Vorlagen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Activate current editor</source> <translation>Aktiviere aktuellen Editor</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>Qt-Designer 4</source> <translation>Qt-Designer 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1823"/> + <location filename="UI/UserInterface.py" line="1828"/> <source>Start Qt-Designer 4</source> <translation>Starte Qt-Designer 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1824"/> + <location filename="UI/UserInterface.py" line="1829"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> <translation><b>Qt-Designer 4</b><p>Starte Qt-Designer 4.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>Qt-Linguist 4</source> <translation>Qt-Linguist 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1843"/> + <location filename="UI/UserInterface.py" line="1848"/> <source>Start Qt-Linguist 4</source> <translation>Starte Qt-Linguist 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1844"/> + <location filename="UI/UserInterface.py" line="1849"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> <translation><b>Qt-Linguist 4</b><p>Starte Qt-Linguist 4 (Übersetzungsprogramm).</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt4 Documentation</source> <translation>Qt4 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt&4 Documentation</source> <translation>Qt&4 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2177"/> + <location filename="UI/UserInterface.py" line="2182"/> <source>Open Qt4 Documentation</source> <translation>Öffne die Qt4 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>Eric API Documentation</source> <translation>Eric API Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>&Eric API Documentation</source> <translation>&Eric API Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2241"/> + <location filename="UI/UserInterface.py" line="2246"/> <source>Open Eric API Documentation</source> <translation>Öffne die Eric API Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4306"/> + <location filename="UI/UserInterface.py" line="4311"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Die Hilfeanzeige konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>hh</b> verfügbar ist.</p></translation> </message> @@ -47568,147 +47574,147 @@ <translation>Registriere Objekte...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>Project-Viewer</source> <translation>Projektanzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>Debug-Viewer</source> <translation>Debuganzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> + <location filename="UI/UserInterface.py" line="1297"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>&Project-Viewer</source> <translation>&Projektanzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1357"/> + <location filename="UI/UserInterface.py" line="1362"/> <source>Toggle the Project-Viewer window</source> <translation>Schalte das Projektanzeigefenster um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1358"/> + <location filename="UI/UserInterface.py" line="1363"/> <source><b>Toggle the Project-Viewer window</b><p>If the Project-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Projektanzeigefenster um</b><p>Falls das Projektanzeigefenster nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Activate Project-Viewer</source> <translation>Aktiviere Projektanzeiger</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> + <location filename="UI/UserInterface.py" line="1656"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> + <location filename="UI/UserInterface.py" line="1673"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1703"/> + <location filename="UI/UserInterface.py" line="1708"/> <source>Check for Updates</source> <translation>Auf Aktualisierungen prüfen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1701"/> + <location filename="UI/UserInterface.py" line="1706"/> <source>Check for &Updates...</source> <translation>Auf &Aktualisierungen prüfen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2178"/> + <location filename="UI/UserInterface.py" line="2183"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Qt4 Dokumentation</b><p>Zeige die Qt4 Dokumentation an. Abhängig von den Einstellungen, wird Erics interner Hilfeanzeiger, ein Web-Browser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>PyQt4 Documentation</source> <translation>PyQt4 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>P&yQt4 Documentation</source> <translation>P&yQt4 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2189"/> + <location filename="UI/UserInterface.py" line="2194"/> <source>Open PyQt4 Documentation</source> <translation>Öffne die PyQt4 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2190"/> + <location filename="UI/UserInterface.py" line="2195"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>PyQt4 Dokumentation</b><p>Zeige die PyQt4 Dokumentation an. Abhängig von den Einstellungen, wird Erics interner Hilfeanzeiger, ein Web-Browser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2328"/> + <location filename="UI/UserInterface.py" line="2333"/> <source>Select Tool Group</source> <translation>Werkzeuggruppe wählen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2334"/> + <location filename="UI/UserInterface.py" line="2339"/> <source>Se&ttings</source> <translation>&Einstellungen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2453"/> + <location filename="UI/UserInterface.py" line="2458"/> <source>Profiles</source> <translation>Profile</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3160"/> + <location filename="UI/UserInterface.py" line="3165"/> <source>&Builtin Tools</source> <translation>&Eingebaute Werkzeuge</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4519"/> + <location filename="UI/UserInterface.py" line="4524"/> <source>Starting process '{0} {1}'. </source> <translation>Starte Prozess '{0} {1}'. </translation> </message> <message> - <location filename="UI/UserInterface.py" line="4612"/> + <location filename="UI/UserInterface.py" line="4617"/> <source>Process '{0}' has exited. </source> <translation>Prozess '{0}' ist beendet. </translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source>Documentation</source> <translation>Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4781"/> + <location filename="UI/UserInterface.py" line="4786"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>Der PyQt4 Dokumentations Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Error during updates check</source> <translation>Fehler während der Aktualisierungsprüfung</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>Update available</source> <translation>Aktualisierung verfügbar</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2783"/> + <location filename="UI/UserInterface.py" line="2788"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Versions Nummern</h3><table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5816"/> + <location filename="UI/UserInterface.py" line="5821"/> <source></table></source> <translation></table></translation> </message> @@ -47723,42 +47729,42 @@ <translation><p>Die Qt Style Sheet Datei <b>{0}</b> konnte nicht geladen werden.<br>Ursache: {1}</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3108"/> + <location filename="UI/UserInterface.py" line="3113"/> <source>Configure Tool Groups ...</source> <translation>Konfiguriere Werkzeuggruppen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3111"/> + <location filename="UI/UserInterface.py" line="3116"/> <source>Configure current Tool Group ...</source> <translation>Konfiguriere aktuelle Werkzeuggruppe...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2008"/> + <location filename="UI/UserInterface.py" line="2013"/> <source>Show external tools</source> <translation>Zeige externe Werkzeuge</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2005"/> + <location filename="UI/UserInterface.py" line="2010"/> <source>Show external &tools</source> <translation>Zeige externe &Werkzeuge</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Could not perform updates check.</source> <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5641"/> - <source>&Cancel</source> - <translation>&Abbrechen</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="5646"/> + <source>&Cancel</source> + <translation>&Abbrechen</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="5651"/> <source>Trying host {0}</source> <translation>Prüfe Host {0}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>First time usage</source> <translation>Erstmalige Nutzung</translation> </message> @@ -47768,62 +47774,62 @@ <translation>Initialisiere Plugin Manager...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2369"/> + <location filename="UI/UserInterface.py" line="2374"/> <source>P&lugins</source> <translation>Plugi&ns</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2454"/> + <location filename="UI/UserInterface.py" line="2459"/> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>Plugin Infos</source> <translation>Plugin Informationen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2115"/> + <location filename="UI/UserInterface.py" line="2120"/> <source>Show Plugin Infos</source> <translation>Zeigt Plugin Informationen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2116"/> + <location filename="UI/UserInterface.py" line="2121"/> <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> <translation><b>Plugin Informationen...</b><p>Dies öffnet einen Dialog, der einige Informationen über die geladenen Plugins anzeigt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>&Plugin Infos...</source> <translation>&Plugin Informationen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3168"/> + <location filename="UI/UserInterface.py" line="3173"/> <source>&Plugin Tools</source> <translation>&Plugin Werkzeuge</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2138"/> + <location filename="UI/UserInterface.py" line="2143"/> <source>Uninstall Plugin</source> <translation>Plugin deinstallieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2135"/> + <location filename="UI/UserInterface.py" line="2140"/> <source>&Uninstall Plugin...</source> <translation>Plugin &deinstallieren...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2139"/> + <location filename="UI/UserInterface.py" line="2144"/> <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> <translation><b>Plugin deinstallieren...</b><p>Dies öffnet einen Dialog zur Deinstallation eines Plugins.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3321"/> + <location filename="UI/UserInterface.py" line="3326"/> <source>&Show all</source> <translation>Alle an&zeigen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3323"/> + <location filename="UI/UserInterface.py" line="3328"/> <source>&Hide all</source> <translation>Alle &ausblenden</translation> </message> @@ -47833,107 +47839,107 @@ <translation>Aktiviere Plugins...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2318"/> + <location filename="UI/UserInterface.py" line="2323"/> <source>Wi&zards</source> <translation>A&utopiloten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show downloadable versions</source> <translation>Zeige verfügbare Versionen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show &downloadable versions...</source> <translation>&Zeige verfügbare Versionen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1714"/> + <location filename="UI/UserInterface.py" line="1719"/> <source>Show the versions available for download</source> <translation>Zeige die verfügbaren eric4 Versionen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5803"/> + <location filename="UI/UserInterface.py" line="5808"/> <source><h3>Available versions</h3><table></source> <translation><h3>Verfügbare Versionen</h3><table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2146"/> + <location filename="UI/UserInterface.py" line="2151"/> <source>Plugin Repository</source> <translation>Plugin Repository</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2146"/> - <source>Plugin &Repository...</source> - <translation>Plugin &Repository...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2149"/> - <source>Show Plugins available for download</source> - <translation>Zeige Plugins verfügbar zum Download an</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2151"/> + <source>Plugin &Repository...</source> + <translation>Plugin &Repository...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2154"/> + <source>Show Plugins available for download</source> + <translation>Zeige Plugins verfügbar zum Download an</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2156"/> <source><b>Plugin Repository...</b><p>This opens a dialog, that shows a list of plugins available on the Internet.</p></source> <translation><b>Plugin Repository...</b><p>Dies öffnet einen Dialog, der eine Liste der im Internet verfügbaren Plugins anzeigt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2127"/> + <location filename="UI/UserInterface.py" line="2132"/> <source>Install Plugins</source> <translation>Plugins installieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2124"/> + <location filename="UI/UserInterface.py" line="2129"/> <source>&Install Plugins...</source> <translation>Plugins &installieren...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2128"/> + <location filename="UI/UserInterface.py" line="2133"/> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Plugins installieren...</b><p>Dies öffnet einen Dialog zur Installation oder Update von Plugins.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1915"/> + <location filename="UI/UserInterface.py" line="1920"/> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1911"/> - <source>Mini &Editor...</source> - <translation>Mini &Editor...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1916"/> + <source>Mini &Editor...</source> + <translation>Mini &Editor...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1921"/> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini Editor</b><p>Öffnet einen Dialog mit einem vereinfachten Editor.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>&Designer 4...</source> <translation>&Designer 4...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>&Linguist 4...</source> <translation>&Linguist 4...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Toolbars</source> <translation>Werkzeugleisten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Tool&bars...</source> <translation>Werkzeug&leisten...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2033"/> + <location filename="UI/UserInterface.py" line="2038"/> <source>Configure toolbars</source> <translation>Werkzeugleisten einrichten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2034"/> + <location filename="UI/UserInterface.py" line="2039"/> <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> <translation><b>Werkzeugleisten</b><p>Werkzeugleisten konfigurieren. Mit diesem Dialog können die auf den Werkzeugleisten gezeigten Aktionen geändert und neue Werkzeugleisten definiert werden.</p></translation> </message> @@ -47943,653 +47949,653 @@ <translation>Lade Toolbarmanager...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2697"/> + <location filename="UI/UserInterface.py" line="2702"/> <source>External Tools/{0}</source> <translation>Externe Werkzeuge/{0}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>External Tools</source> <translation>Externe Werkzeuge</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4477"/> + <location filename="UI/UserInterface.py" line="4482"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>Kein Eintrag für das externe Werkzeug '{0}' in der Gruppe '{1}' gefunden.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>No toolgroup entry '{0}' found.</source> <translation>Kein Werkzeuggruppeneintrag '{0}' gefunden.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>Multiproject-Viewer</source> <translation>Mehrfachprojektanzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>&Multiproject-Viewer</source> <translation>&Mehrfachprojektanzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1378"/> + <location filename="UI/UserInterface.py" line="1383"/> <source>Toggle the Multiproject-Viewer window</source> <translation>Schalte das Mehrfachprojektanzeigefenster um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1379"/> + <location filename="UI/UserInterface.py" line="1384"/> <source><b>Toggle the Multiproject-Viewer window</b><p>If the Multiproject-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Mehrfachprojektanzeigefenster um</b><p>Falls das Mehrfachprojektanzeigefenster nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Activate Multiproject-Viewer</source> <translation>Aktiviere Mehrfachprojektanzeiger</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Temp&late-Viewer</source> <translation>&Vorlagen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source>Save session</source> <translation>Session speichern</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Die Sessiondatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source>Read session</source> <translation>Session lesen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Die Sessiondatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2603"/> + <location filename="UI/UserInterface.py" line="2608"/> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Zeichenkodierung des aktuellen Editors an.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2617"/> + <location filename="UI/UserInterface.py" line="2622"/> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt an, ob die aktuelle Datei geschrieben werden kann.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source>SSL Errors</source> <translation>SSL Fehler</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation><p>SSL Fehler</p><p>{0}</p><p>Wollen Sie diese Fehler ignorieren?</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request Feature</source> <translation>Neue Funktion anfragen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request &Feature...</source> <translation>Neue &Funktion anfragen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1736"/> + <location filename="UI/UserInterface.py" line="1741"/> <source>Send a feature request</source> <translation>Sende eine Anfrage für eine neue Funktion</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1737"/> + <location filename="UI/UserInterface.py" line="1742"/> <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> <translation><b>Neue Funktion anfragen...</b><p>Öffnet einen Dialog, um eine Anfrage für eine neue Funktion zu senden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2596"/> + <location filename="UI/UserInterface.py" line="2601"/> <source><p>This part of the status bar displays the current editors language.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Sprache des aktuellen Editors an.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2626"/> + <location filename="UI/UserInterface.py" line="2631"/> <source><p>This part of the status bar displays the name of the file of the current editor.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt den Namen der Datei des aktuellen Editors an.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2633"/> + <location filename="UI/UserInterface.py" line="2638"/> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Zeilennummer des aktuellen Editors an.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2640"/> + <location filename="UI/UserInterface.py" line="2645"/> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Cursorposition des aktuellen Editors an.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>Vertical Toolbox</source> <translation>Vertikale Werkzeugbox</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>Horizontal Toolbox</source> <translation>Horizontale Werkzeugbox</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>&Vertical Toolbox</source> <translation>&Vertikale Werkzeugbox</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1541"/> + <location filename="UI/UserInterface.py" line="1546"/> <source>Toggle the Vertical Toolbox window</source> <translation>Schalte das Fenster der Vertikalen Werkzeugbox um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1542"/> + <location filename="UI/UserInterface.py" line="1547"/> <source><b>Toggle the Vertical Toolbox window</b><p>If the Vertical Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der Vertikalen Werkzeugbox um</b><p>Falls das Fenster der Vertikalen Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>&Horizontal Toolbox</source> <translation>&Horizontale Werkzeugbox</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1553"/> + <location filename="UI/UserInterface.py" line="1558"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Schalte das Fenster der Horizontalen Werkzeugbox um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1554"/> + <location filename="UI/UserInterface.py" line="1559"/> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der Horizontalen Werkzeugbox um</b><p>Falls das Fenster der Horizontalen Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>Restart application</source> <translation>Anwendung neu starten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>The application needs to be restarted. Do it now?</source> <translation>Die Anwendung muss neu gestartet werden. Jetzt durchführen?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Terminal</source> <translation>Terminal</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Te&rminal</source> <translation>Te&rminal</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1439"/> + <location filename="UI/UserInterface.py" line="1444"/> <source>Toggle the Terminal window</source> <translation>Schalte das Terminal Fenster um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1440"/> + <location filename="UI/UserInterface.py" line="1445"/> <source><b>Toggle the Terminal window</b><p>If the Terminal window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Terminal Fenster um</b><p>Falls das Terminal Fenster nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Activate Terminal</source> <translation>Aktiviere Terminal</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Alt+Shift+R</source> <translation>Alt+Shift+R</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2378"/> + <location filename="UI/UserInterface.py" line="2383"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2610"/> + <location filename="UI/UserInterface.py" line="2615"/> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Zeilenendekodierung des aktuellen Editors an.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Switch between tabs</source> <translation>Zwischen Tabs umschalten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>Export Preferences</source> <translation>Einstellungen exportieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>E&xport Preferences...</source> <translation>Einstellungen e&xportieren...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1975"/> + <location filename="UI/UserInterface.py" line="1980"/> <source>Export the current configuration</source> <translation>Exportiert die aktuelle Konfiguration</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1976"/> + <location filename="UI/UserInterface.py" line="1981"/> <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> <translation><b>Einstellungen exportieren</b><p>Exportiert die aktuelle Konfiguration in eine Datei.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1983"/> + <location filename="UI/UserInterface.py" line="1988"/> <source>Import Preferences</source> <translation>Einstellungen importieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1983"/> - <source>I&mport Preferences...</source> - <translation>Einstellungen i&mportieren...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1986"/> - <source>Import a previously exported configuration</source> - <translation>Importiert eine zuvor exportierte Konfiguration</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1988"/> + <source>I&mport Preferences...</source> + <translation>Einstellungen i&mportieren...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1991"/> + <source>Import a previously exported configuration</source> + <translation>Importiert eine zuvor exportierte Konfiguration</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1993"/> <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> <translation><b>Einstellungen importieren</b><p>Importiert eine zuvor exportierte Konfiguration.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Show next</source> <translation>Zeige nächste</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Show previous</source> <translation>Zeige vorherige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>Left Sidebar</source> <translation>Linke Seitenleiste</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>&Left Sidebar</source> <translation>&Linke Seitenleiste</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1564"/> + <location filename="UI/UserInterface.py" line="1569"/> <source>Toggle the left sidebar window</source> <translation>Schalte das Fenster der linken Seitenleiste um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1565"/> + <location filename="UI/UserInterface.py" line="1570"/> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der linken Seitenleiste um</b><p>Falls das Fenster der linken Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>Bottom Sidebar</source> <translation>Untere Seitenleiste</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>&Bottom Sidebar</source> <translation>&Untere Seitenleiste</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1576"/> + <location filename="UI/UserInterface.py" line="1581"/> <source>Toggle the bottom sidebar window</source> <translation>Schalte das Fenster der unteren Seitenleiste um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1577"/> + <location filename="UI/UserInterface.py" line="1582"/> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der unteren Seitenleiste um</b><p>Falls das Fenster der unteren Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>&Debug-Viewer</source> <translation>&Debuganzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1398"/> + <location filename="UI/UserInterface.py" line="1403"/> <source>Toggle the Debug-Viewer window</source> <translation>Schalte das Debugfenster um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1399"/> + <location filename="UI/UserInterface.py" line="1404"/> <source><b>Toggle the Debug-Viewer window</b><p>If the Debug-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Debugfenster um</b><p>Falls das Debugfenster nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Activate Debug-Viewer</source> <translation>Aktiviere Debuganzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1899"/> - <source>SQL Browser</source> - <translation>SQL Browser</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1899"/> - <source>SQL &Browser...</source> - <translation>SQL &Browser...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1903"/> - <source>Browse a SQL database</source> - <translation>Erforsche eine SQL Datenbank</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1904"/> + <source>SQL Browser</source> + <translation>SQL Browser</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1904"/> + <source>SQL &Browser...</source> + <translation>SQL &Browser...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1908"/> + <source>Browse a SQL database</source> + <translation>Erforsche eine SQL Datenbank</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1909"/> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>SQL Browser</b><p>Erforsche eine SQL Datenbank.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4410"/> + <location filename="UI/UserInterface.py" line="4415"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der SQL Browser konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> + <location filename="UI/UserInterface.py" line="1940"/> <source>Icon Editor</source> <translation>Icon Editor</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> - <source>&Icon Editor...</source> - <translation>&Icon Editor...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="4227"/> - <source>Qt 3 support</source> - <translation>Qt 3 Unterstützung</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2259"/> - <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> - <translation><b>PySide Dokumentation</b><p>Zeige die PySide Dokumentation an. Abhängig von den Einstellungen, wird Erics interner Hilfeanzeiger, ein Web-Browser oder Qt Assistant verwendet.</p></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="4872"/> - <source><p>The PySide documentation starting point has not been configured.</p></source> - <translation><p>Der PySide Dokumentations Startpunkt ist nicht konfiguriert.</p></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2256"/> - <source>PySide Documentation</source> - <translation>PySide Dokumentation</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2256"/> - <source>Py&Side Documentation</source> - <translation>Py&Side Dokumentation</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2258"/> - <source>Open PySide Documentation</source> - <translation>Öffne die PySide Dokumentation</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1674"/> - <source><b>Helpviewer</b><p>Display the eric5 web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is search in the Qt help collection.</p></source> - <translation><b>Hilfe-Fenster</b><p>Zeige den eric5 Web-Browser an. Dieses Fenster zeigt Hilfedateien im HTML-Format und Qt Hilfesammlungen an. In ihm kann über Hyperlinks navigiert, Lesezeichen gesetzt und neben anderen Funktionen die dargestellte Seite ausgedruckt werden. Er kann auch zum Surfen im Internet benutzt werden.</p><p>Wenn es mit einem selektierten Wort aufgerufen wird, so wird dieses Wort in der Qt Hilfesammlung gesucht.</p></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1704"/> - <source><b>Check for Updates...</b><p>Checks the internet for updates of eric5.</p></source> - <translation><b>Auf Aktualisierungen prüfen...</b> -<p>Dies prüft im Internet auf Verfügbarkeit von Updates von eric5.</p></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1716"/> - <source><b>Show downloadable versions...</b><p>Shows the eric5 versions available for download from the internet.</p></source> - <translation><b>Zeige verfügbare Versionen...</b><p>Zeigt die eric5 Versionen, die vom Internet heruntergeladen werden können.</p></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1927"/> - <source>Start the eric5 Web Browser</source> - <translation>Startet den eric5 Web-Browser</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1939"/> - <source>Start the eric5 Icon Editor</source> - <translation>Starte den eric5 Icon Editor</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1940"/> + <source>&Icon Editor...</source> + <translation>&Icon Editor...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4232"/> + <source>Qt 3 support</source> + <translation>Qt 3 Unterstützung</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2264"/> + <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> + <translation><b>PySide Dokumentation</b><p>Zeige die PySide Dokumentation an. Abhängig von den Einstellungen, wird Erics interner Hilfeanzeiger, ein Web-Browser oder Qt Assistant verwendet.</p></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4877"/> + <source><p>The PySide documentation starting point has not been configured.</p></source> + <translation><p>Der PySide Dokumentations Startpunkt ist nicht konfiguriert.</p></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2261"/> + <source>PySide Documentation</source> + <translation>PySide Dokumentation</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2261"/> + <source>Py&Side Documentation</source> + <translation>Py&Side Dokumentation</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2263"/> + <source>Open PySide Documentation</source> + <translation>Öffne die PySide Dokumentation</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1679"/> + <source><b>Helpviewer</b><p>Display the eric5 web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is search in the Qt help collection.</p></source> + <translation><b>Hilfe-Fenster</b><p>Zeige den eric5 Web-Browser an. Dieses Fenster zeigt Hilfedateien im HTML-Format und Qt Hilfesammlungen an. In ihm kann über Hyperlinks navigiert, Lesezeichen gesetzt und neben anderen Funktionen die dargestellte Seite ausgedruckt werden. Er kann auch zum Surfen im Internet benutzt werden.</p><p>Wenn es mit einem selektierten Wort aufgerufen wird, so wird dieses Wort in der Qt Hilfesammlung gesucht.</p></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1709"/> + <source><b>Check for Updates...</b><p>Checks the internet for updates of eric5.</p></source> + <translation><b>Auf Aktualisierungen prüfen...</b> +<p>Dies prüft im Internet auf Verfügbarkeit von Updates von eric5.</p></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1721"/> + <source><b>Show downloadable versions...</b><p>Shows the eric5 versions available for download from the internet.</p></source> + <translation><b>Zeige verfügbare Versionen...</b><p>Zeigt die eric5 Versionen, die vom Internet heruntergeladen werden können.</p></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1932"/> + <source>Start the eric5 Web Browser</source> + <translation>Startet den eric5 Web-Browser</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1944"/> + <source>Start the eric5 Icon Editor</source> + <translation>Starte den eric5 Icon Editor</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1945"/> <source><b>Icon Editor</b><p>Starts the eric5 Icon Editor for editing simple icons.</p></source> <translation><b>Icon Editor</b><p>Startet den eric5 Icon Editor zumEditieren einfacher Icons.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2009"/> + <location filename="UI/UserInterface.py" line="2014"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric5.</p></source> <translation><b>Zeige externe Werkzeuge</b><p>Öffnet einen Dialog, der die Pfade und Versionen der von eric5 genutzten externen Werkzeuge anzeigt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2242"/> + <location filename="UI/UserInterface.py" line="2247"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric5 installation directory.</p></source> <translation><b>Eric API Dokumentation</b><p>Zeige die Eric API Dokumentation an. Der Pfad für die Dokumentation ist das Unterverzeichnis Documentation/Source im eric5 Installationverzeichnis.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt v.3 is not supported by eric5.</source> <translation>Qt v.3 wird von eric5 nicht unterstützt.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>The update to <b>{0}</b> of eric5 is available at <b>{1}</b>. Would you like to get it?</source> <translation>Eine Aktualisierung auf <b>{0}</b> von Eric5 ist unter <b>{1}</b> verfügbar. Wollen Sie sie laden?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>Eric5 is up to date</source> <translation>Eric5 ist aktuell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>You are using the latest version of eric5</source> <translation>Sie verwenden die aktuellste Version von eric5</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>eric5 has not been configured yet. The configuration dialog will be started.</source> <translation>eric5 wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>Cooperation</source> <translation>Zusammenarbeit</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>&Cooperation</source> <translation>&Zusammenarbeit</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1587"/> + <location filename="UI/UserInterface.py" line="1592"/> <source>Toggle the Cooperation window</source> <translation>Schalte das Zusammenarbeitsfenster um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1589"/> + <location filename="UI/UserInterface.py" line="1594"/> <source><b>Toggle the Cooperation window</b><p>If the Cooperation window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Zusammenarbeitsfenster um</b><p>Falls das Zusammenarbeitsfenster nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Activate Cooperation-Viewer</source> <translation>Aktiviere Zusammenarbeit</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>Symbols</source> <translation>Symbole</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>&Symbols</source> <translation>&Symbole</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1609"/> + <location filename="UI/UserInterface.py" line="1614"/> <source>Toggle the Symbols window</source> <translation>Schalte das Symbole Fenster um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1611"/> + <location filename="UI/UserInterface.py" line="1616"/> <source><b>Toggle the Symbols window</b><p>If the Symbols window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Symbole Fenster um</b><p>Falls das Symbole Fenster nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Activate Symbols-Viewer</source> <translation>Aktiviere Symboleanzeiger</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>Numbers</source> <translation>Zahlen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>&Numbers</source> <translation>&Zahlen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1631"/> + <location filename="UI/UserInterface.py" line="1636"/> <source>Toggle the Numbers window</source> <translation>Schalte das Zahlen Fenster um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1633"/> + <location filename="UI/UserInterface.py" line="1638"/> <source><b>Toggle the Numbers window</b><p>If the Numbers window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Zahlen Fenster um</b><p>Falls das Zahlen Fenster nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Activate Numbers-Viewer</source> <translation>Aktiviere Zahlenanzeiger</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Tastaturkurzbefehls Datei (*.e4k)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python 3 Documentation</source> <translation>Python 3 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python &3 Documentation</source> <translation>Python &3 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2205"/> + <location filename="UI/UserInterface.py" line="2210"/> <source>Open Python 3 Documentation</source> <translation>Öffne die Python 3 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2206"/> + <location filename="UI/UserInterface.py" line="2211"/> <source><b>Python 3 Documentation</b><p>Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and <i>/usr/share/doc/packages/python/html</i> on Unix. Set PYTHON3DOCDIR in your environment to override this. </p></source> <translation><b>Python 3 Dokumentation</b><p>Zeigt die Python 3 Dokumentation an. Ist kein Dokumentationsverzeichnis konfiguriert, so ist der Ort, an dem die Python 3 Dokumentation gesucht wird, unter Windows das Verzeichnis doc unter dem Verzeichnis, in dem der Python 3 Interpreter installiert ist, und unter Unix das Verzeichnis <i>/usr/share/doc/packages/python/html</i>. Um dies zu überschreiben, können sie die Umgebungsvariable PYTHON3DOCDIR setzen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python 2 Documentation</source> <translation>Python 2 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python &2 Documentation</source> <translation>Python &2 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2220"/> + <location filename="UI/UserInterface.py" line="2225"/> <source>Open Python 2 Documentation</source> <translation>Öffne die Python 2 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2221"/> + <location filename="UI/UserInterface.py" line="2226"/> <source><b>Python 2 Documentation</b><p>Display the Python 2 documentation. If no documentation directory is configured, the location of the Python 2 documentation is assumed to be the doc directory underneath the location of the configured Python 2 executable on Windows and <i>/usr/share/doc/packages/python/html/python-docs-html</i> on Unix. Set PYTHON2DOCDIR in your environment to override this. </p></source> <translation><b>Python 2 Dokumentation</b><p>Zeigt die Python 2 Dokumentation an. Ist kein Dokumentationsverzeichnis konfiguriert, so ist der Ort, an dem die Python 2 Dokumentation gesucht wird, unter Windows das Verzeichnis doc unter dem Verzeichnis, in dem der konfigurierte Python 2 Interpreter installiert ist, und unter Unix das Verzeichnis <i>/usr/share/doc/packages/python/html/python-docs-html</i>. Um dies zu überschreiben, können sie die Umgebungsvariable PYTHON2DOCDIR setzen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>Error getting versions information</source> <translation>Fehler beim Herunterladen der Versionsinformationen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5690"/> + <location filename="UI/UserInterface.py" line="5695"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>Die Versionsinformationen konnten nicht heruntergeladen werden. Bitte gehen sie online und versuchen sie es erneut.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Open Browser</source> <translation>Browser starten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Could not start a web browser</source> <translation>Der Systemwebbrowser konnte nicht gestartet werden</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>Die Versionsinformationen konnten seit 7 Tagen nicht heruntergeladen werden. Bitte gehen sie online und versuchen sie es erneut.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 Web Browser</source> - <translation>eric5 Web-Browser</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 &Web Browser...</source> - <translation>eric5 &Web-Browser...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 Web Browser</source> + <translation>eric5 Web-Browser</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 &Web Browser...</source> + <translation>eric5 &Web-Browser...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1933"/> <source><b>eric5 Web Browser</b><p>Browse the Internet with the eric5 Web Browser.</p></source> <translation><b>eric5 Web-Browser</b><p>Durchforste das Internet mit dem eric5 Web-Browser.</p></translation> </message> @@ -48614,78 +48620,78 @@ <translation>Starte Debugger...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New Window</source> <translation>Neues Fenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New &Window</source> <translation>Neues &Fenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> - <source>Ctrl+Shift+N</source> - <comment>File|New Window</comment> - <translation>Ctrl+Shift+N</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1313"/> + <source>Ctrl+Shift+N</source> + <comment>File|New Window</comment> + <translation>Ctrl+Shift+N</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1318"/> <source>Open a new eric5 instance</source> <translation>Öffnet eine neue eric5 Instanz</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1314"/> + <location filename="UI/UserInterface.py" line="1319"/> <source><b>New Window</b><p>This opens a new instance of the eric5 IDE.</p></source> <translation><b>Neues Fenster</b><p>Dies öffnet eine neue Instanz der eric5 IDE.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Unittest Rerun Failed</source> <translation>Fehlerhafte Modultests wiederholen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Rerun Failed Tests...</source> <translation>Fehlerhafte Tests wiederholen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1776"/> + <location filename="UI/UserInterface.py" line="1781"/> <source>Rerun failed tests of the last run</source> <translation>Fehlerhafte Tests des letzten Laufes wiederholen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1778"/> + <location filename="UI/UserInterface.py" line="1783"/> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation><b>Fehlerhafte Tests wiederholen</b><p>Alle Tests wiederholen, die während des letzten Modultestlaufes fehlgeschlagen sind.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare &Files side by side...</source> <translation>Dateien &Seite an Seite vergleichen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>Snapshot</source> - <translation>Bildschirmfoto</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>&Snapshot...</source> - <translation>&Bildschirmfoto...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1951"/> - <source>Take snapshots of a screen region</source> - <translation>Bildschirmfoto aufnehmen</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1952"/> + <source>Snapshot</source> + <translation>Bildschirmfoto</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1952"/> + <source>&Snapshot...</source> + <translation>&Bildschirmfoto...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1956"/> + <source>Take snapshots of a screen region</source> + <translation>Bildschirmfoto aufnehmen</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1957"/> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation><b>Bildschirmfoto</b><p>Dies öffnet einen Dialog, um ein Bildschirmfoto aufzunehmen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4457"/> + <location filename="UI/UserInterface.py" line="4462"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die Bildschirmfotoanwendung konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message>
--- a/i18n/eric5_en.ts Wed May 02 19:10:17 2012 +0200 +++ b/i18n/eric5_en.ts Fri May 04 20:06:17 2012 +0200 @@ -4747,52 +4747,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="Debugger/DebugViewer.py" line="163"/> + <location filename="Debugger/DebugViewer.py" line="164"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="166"/> + <location filename="Debugger/DebugViewer.py" line="167"/> <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="171"/> + <location filename="Debugger/DebugViewer.py" line="172"/> <source>Set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="149"/> + <location filename="Debugger/DebugViewer.py" line="150"/> <source>Source</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="214"/> + <location filename="Debugger/DebugViewer.py" line="215"/> <source>Threads:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>State</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="413"/> + <location filename="Debugger/DebugViewer.py" line="414"/> <source>waiting at breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="415"/> + <location filename="Debugger/DebugViewer.py" line="416"/> <source>running</source> <translation type="unfinished"></translation> </message> @@ -35244,7 +35244,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/SearchWidget.py" line="160"/> + <location filename="UI/SearchWidget.py" line="163"/> <source>'{0}' was not found.</source> <translation type="unfinished"></translation> </message> @@ -35310,137 +35310,142 @@ <context> <name>Shell</name> <message> - <location filename="QScintilla/Shell.py" line="56"/> + <location filename="QScintilla/Shell.py" line="112"/> <source>Shell - Passive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="58"/> + <location filename="QScintilla/Shell.py" line="114"/> <source>Shell</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="60"/> + <location filename="QScintilla/Shell.py" line="116"/> <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. Pressing the up or down key after some text has been entered will start an incremental search.</p><p>The shell has some special commands. 'reset' kills the shell and starts a new one. 'clear' clears the display of the shell window. 'start' is used to switch the shell language and must be followed by a supported language. Supported languages are listed by the 'languages' command. These commands (except 'languages') 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 commandline completions. The relevant entry may be selected from this list. If only one entry is available, this will 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"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="127"/> + <location filename="QScintilla/Shell.py" line="183"/> <source>Passive >>> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="142"/> + <location filename="QScintilla/Shell.py" line="198"/> <source>Start</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="151"/> + <location filename="QScintilla/Shell.py" line="207"/> <source>History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="152"/> + <location filename="QScintilla/Shell.py" line="208"/> <source>Select entry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="153"/> + <location filename="QScintilla/Shell.py" line="209"/> <source>Show</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="163"/> + <location filename="QScintilla/Shell.py" line="221"/> <source>Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="158"/> + <location filename="QScintilla/Shell.py" line="214"/> <source>Cut</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="159"/> + <location filename="QScintilla/Shell.py" line="215"/> <source>Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="160"/> + <location filename="QScintilla/Shell.py" line="216"/> <source>Paste</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="164"/> + <location filename="QScintilla/Shell.py" line="222"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="165"/> + <location filename="QScintilla/Shell.py" line="223"/> <source>Reset and Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="170"/> + <location filename="QScintilla/Shell.py" line="228"/> <source>Configure...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <source>Select History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <source>Select the history entry to execute (most recent shown last).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="548"/> + <location filename="QScintilla/Shell.py" line="606"/> <source>Passive Debug Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="549"/> + <location filename="QScintilla/Shell.py" line="607"/> <source> Not connected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="551"/> + <location filename="QScintilla/Shell.py" line="609"/> <source>No.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="553"/> + <location filename="QScintilla/Shell.py" line="611"/> <source>{0} on {1}, {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="614"/> + <location filename="QScintilla/Shell.py" line="672"/> <source>StdOut: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="622"/> + <location filename="QScintilla/Shell.py" line="680"/> <source>StdErr: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1165"/> + <location filename="QScintilla/Shell.py" line="1223"/> <source>Shell language "{0}" not supported. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="QScintilla/Shell.py" line="219"/> + <source>Find</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ShellHistoryDialog</name> @@ -46332,1800 +46337,1800 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>Project-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>Multiproject-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>Debug-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>Cooperation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>Symbols</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>Log-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>Task-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Template-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Terminal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>Shell</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>Vertical Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>Horizontal Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1264"/> - <source>{0} - Passive Mode</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1269"/> + <source>{0} - Passive Mode</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1274"/> <source>{0} - {1} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1272"/> + <location filename="UI/UserInterface.py" line="1277"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> + <location filename="UI/UserInterface.py" line="1297"/> <source>Quit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> + <location filename="UI/UserInterface.py" line="1297"/> <source>&Quit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> - <source>Ctrl+Q</source> - <comment>File|Quit</comment> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1297"/> + <source>Ctrl+Q</source> + <comment>File|Quit</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1302"/> <source>Quit the IDE</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1298"/> + <location filename="UI/UserInterface.py" line="1303"/> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1324"/> - <source>Edit Profile</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1329"/> + <source>Edit Profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1334"/> <source>Activate the edit view profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1330"/> + <location filename="UI/UserInterface.py" line="1335"/> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1339"/> - <source>Debug Profile</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1344"/> + <source>Debug Profile</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1349"/> <source>Activate the debug view profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1346"/> + <location filename="UI/UserInterface.py" line="1351"/> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>&Project-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1357"/> + <location filename="UI/UserInterface.py" line="1362"/> <source>Toggle the Project-Viewer window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1358"/> + <location filename="UI/UserInterface.py" line="1363"/> <source><b>Toggle the Project-Viewer window</b><p>If the Project-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Activate Project-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Alt+Shift+P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>&Multiproject-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1378"/> + <location filename="UI/UserInterface.py" line="1383"/> <source>Toggle the Multiproject-Viewer window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1379"/> + <location filename="UI/UserInterface.py" line="1384"/> <source><b>Toggle the Multiproject-Viewer window</b><p>If the Multiproject-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Activate Multiproject-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Alt+Shift+M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>&Debug-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1398"/> + <location filename="UI/UserInterface.py" line="1403"/> <source>Toggle the Debug-Viewer window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1399"/> + <location filename="UI/UserInterface.py" line="1404"/> <source><b>Toggle the Debug-Viewer window</b><p>If the Debug-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Activate Debug-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Alt+Shift+D</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>&Shell</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1418"/> + <location filename="UI/UserInterface.py" line="1423"/> <source>Toggle the Shell window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1419"/> + <location filename="UI/UserInterface.py" line="1424"/> <source><b>Toggle the Shell window</b><p>If the Shell window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Activate Shell</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Alt+Shift+S</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Te&rminal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1439"/> + <location filename="UI/UserInterface.py" line="1444"/> <source>Toggle the Terminal window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1440"/> + <location filename="UI/UserInterface.py" line="1445"/> <source><b>Toggle the Terminal window</b><p>If the Terminal window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Activate Terminal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Alt+Shift+R</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-&Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1459"/> + <location filename="UI/UserInterface.py" line="1464"/> <source>Toggle the File-Browser window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1460"/> + <location filename="UI/UserInterface.py" line="1465"/> <source><b>Toggle the File-Browser window</b><p>If the File-Browser window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Activate File-Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Alt+Shift+F</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>&Log-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1480"/> + <location filename="UI/UserInterface.py" line="1485"/> <source>Toggle the Log-Viewer window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1481"/> + <location filename="UI/UserInterface.py" line="1486"/> <source><b>Toggle the Log-Viewer window</b><p>If the Log-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Activate Log-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Alt+Shift+G</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>T&ask-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1500"/> + <location filename="UI/UserInterface.py" line="1505"/> <source>Toggle the Task-Viewer window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1501"/> + <location filename="UI/UserInterface.py" line="1506"/> <source><b>Toggle the Task-Viewer window</b><p>If the Task-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Activate Task-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Alt+Shift+T</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Temp&late-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1520"/> + <location filename="UI/UserInterface.py" line="1525"/> <source>Toggle the Template-Viewer window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1522"/> + <location filename="UI/UserInterface.py" line="1527"/> <source><b>Toggle the Template-Viewer window</b><p>If the Template-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Activate Template-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Alt+Shift+A</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>&Vertical Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1541"/> + <location filename="UI/UserInterface.py" line="1546"/> <source>Toggle the Vertical Toolbox window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1542"/> + <location filename="UI/UserInterface.py" line="1547"/> <source><b>Toggle the Vertical Toolbox window</b><p>If the Vertical Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>&Horizontal Toolbox</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1553"/> + <location filename="UI/UserInterface.py" line="1558"/> <source>Toggle the Horizontal Toolbox window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1554"/> + <location filename="UI/UserInterface.py" line="1559"/> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>Left Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>&Left Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1564"/> + <location filename="UI/UserInterface.py" line="1569"/> <source>Toggle the left sidebar window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1565"/> + <location filename="UI/UserInterface.py" line="1570"/> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>Bottom Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>&Bottom Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1576"/> + <location filename="UI/UserInterface.py" line="1581"/> <source>Toggle the bottom sidebar window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1577"/> + <location filename="UI/UserInterface.py" line="1582"/> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>&Cooperation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1587"/> + <location filename="UI/UserInterface.py" line="1592"/> <source>Toggle the Cooperation window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1589"/> + <location filename="UI/UserInterface.py" line="1594"/> <source><b>Toggle the Cooperation window</b><p>If the Cooperation window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Activate Cooperation-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Alt+Shift+O</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>&Symbols</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1609"/> + <location filename="UI/UserInterface.py" line="1614"/> <source>Toggle the Symbols window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1611"/> + <location filename="UI/UserInterface.py" line="1616"/> <source><b>Toggle the Symbols window</b><p>If the Symbols window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Activate Symbols-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Alt+Shift+Y</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>&Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1631"/> + <location filename="UI/UserInterface.py" line="1636"/> <source>Toggle the Numbers window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1633"/> + <location filename="UI/UserInterface.py" line="1638"/> <source><b>Toggle the Numbers window</b><p>If the Numbers window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Activate Numbers-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Alt+Shift+B</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>What's This?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>&What's This?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>Shift+F1</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1656"/> + <source>What's This?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source>&What's This?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source>Shift+F1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1661"/> <source>Context sensitive help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1657"/> + <location filename="UI/UserInterface.py" line="1662"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> + <location filename="UI/UserInterface.py" line="1673"/> <source>Helpviewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> + <location filename="UI/UserInterface.py" line="1673"/> <source>&Helpviewer...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> - <source>F1</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1673"/> + <source>F1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1678"/> <source>Open the helpviewer window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1674"/> + <location filename="UI/UserInterface.py" line="1679"/> <source><b>Helpviewer</b><p>Display the eric5 web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is search in the Qt help collection.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show Versions</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show &Versions</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1693"/> + <location filename="UI/UserInterface.py" line="1698"/> <source>Display version information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1694"/> + <location filename="UI/UserInterface.py" line="1699"/> <source><b>Show Versions</b><p>Display version information.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1703"/> + <location filename="UI/UserInterface.py" line="1708"/> <source>Check for Updates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1701"/> + <location filename="UI/UserInterface.py" line="1706"/> <source>Check for &Updates...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1704"/> + <location filename="UI/UserInterface.py" line="1709"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric5.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show downloadable versions</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> - <source>Show &downloadable versions...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1714"/> - <source>Show the versions available for download</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1716"/> + <source>Show &downloadable versions...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1719"/> + <source>Show the versions available for download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1721"/> <source><b>Show downloadable versions...</b><p>Shows the eric5 versions available for download from the internet.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Report Bug</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1724"/> + <location filename="UI/UserInterface.py" line="1729"/> <source>Report &Bug...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1726"/> + <location filename="UI/UserInterface.py" line="1731"/> <source>Report a bug</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1727"/> + <location filename="UI/UserInterface.py" line="1732"/> <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request Feature</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request &Feature...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1736"/> + <location filename="UI/UserInterface.py" line="1741"/> <source>Send a feature request</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1737"/> + <location filename="UI/UserInterface.py" line="1742"/> <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2450"/> + <location filename="UI/UserInterface.py" line="2455"/> <source>Unittest</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1746"/> - <source>&Unittest...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1750"/> - <source>Start unittest dialog</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1751"/> + <source>&Unittest...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1755"/> + <source>Start unittest dialog</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1756"/> <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> + <location filename="UI/UserInterface.py" line="1764"/> <source>Unittest Restart</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> - <source>&Restart Unittest...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1763"/> - <source>Restart last unittest</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1764"/> + <source>&Restart Unittest...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1768"/> + <source>Restart last unittest</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1769"/> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1786"/> - <source>Unittest Script</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1786"/> - <source>Unittest &Script...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1790"/> - <source>Run unittest with current script</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1791"/> + <source>Unittest Script</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1791"/> + <source>Unittest &Script...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1795"/> + <source>Run unittest with current script</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1796"/> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4052"/> + <location filename="UI/UserInterface.py" line="4057"/> <source>Unittest Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1799"/> - <source>Unittest &Project...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1803"/> - <source>Run unittest with current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1804"/> + <source>Unittest &Project...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1808"/> + <source>Run unittest with current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1809"/> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>Qt-Designer 4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>&Designer 4...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1823"/> + <location filename="UI/UserInterface.py" line="1828"/> <source>Start Qt-Designer 4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1824"/> + <location filename="UI/UserInterface.py" line="1829"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>Qt-Linguist 4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>&Linguist 4...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1843"/> + <location filename="UI/UserInterface.py" line="1848"/> <source>Start Qt-Linguist 4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1844"/> + <location filename="UI/UserInterface.py" line="1849"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>UI Previewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>&UI Previewer...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1856"/> + <location filename="UI/UserInterface.py" line="1861"/> <source>Start the UI Previewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1857"/> + <location filename="UI/UserInterface.py" line="1862"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>Translations Previewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>&Translations Previewer...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1867"/> + <location filename="UI/UserInterface.py" line="1872"/> <source>Start the Translations Previewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1868"/> + <location filename="UI/UserInterface.py" line="1873"/> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>Compare Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>&Compare Files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1890"/> + <location filename="UI/UserInterface.py" line="1895"/> <source>Compare two files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1879"/> + <location filename="UI/UserInterface.py" line="1884"/> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> - <source>Compare Files side by side</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1891"/> + <source>Compare Files side by side</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1896"/> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1899"/> + <location filename="UI/UserInterface.py" line="1904"/> <source>SQL Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1899"/> - <source>SQL &Browser...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1903"/> - <source>Browse a SQL database</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1904"/> + <source>SQL &Browser...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1908"/> + <source>Browse a SQL database</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1909"/> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1915"/> + <location filename="UI/UserInterface.py" line="1920"/> <source>Mini Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1911"/> - <source>Mini &Editor...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1916"/> + <source>Mini &Editor...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1921"/> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1927"/> + <location filename="UI/UserInterface.py" line="1932"/> <source>Start the eric5 Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> + <location filename="UI/UserInterface.py" line="1940"/> <source>Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> - <source>&Icon Editor...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1939"/> - <source>Start the eric5 Icon Editor</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1940"/> + <source>&Icon Editor...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1944"/> + <source>Start the eric5 Icon Editor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1945"/> <source><b>Icon Editor</b><p>Starts the eric5 Icon Editor for editing simple icons.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>&Preferences...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1962"/> + <location filename="UI/UserInterface.py" line="1967"/> <source>Set the prefered configuration</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1963"/> + <location filename="UI/UserInterface.py" line="1968"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>Export Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>E&xport Preferences...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1975"/> + <location filename="UI/UserInterface.py" line="1980"/> <source>Export the current configuration</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1976"/> + <location filename="UI/UserInterface.py" line="1981"/> <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1983"/> + <location filename="UI/UserInterface.py" line="1988"/> <source>Import Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1983"/> - <source>I&mport Preferences...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1986"/> - <source>Import a previously exported configuration</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1988"/> + <source>I&mport Preferences...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1991"/> + <source>Import a previously exported configuration</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1993"/> <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload &APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1997"/> + <location filename="UI/UserInterface.py" line="2002"/> <source>Reload the API information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1998"/> + <location filename="UI/UserInterface.py" line="2003"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2008"/> + <location filename="UI/UserInterface.py" line="2013"/> <source>Show external tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2005"/> + <location filename="UI/UserInterface.py" line="2010"/> <source>Show external &tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2009"/> + <location filename="UI/UserInterface.py" line="2014"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric5.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>View Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>&View Profiles...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2020"/> + <location filename="UI/UserInterface.py" line="2025"/> <source>Configure view profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2021"/> + <location filename="UI/UserInterface.py" line="2026"/> <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Tool&bars...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2033"/> + <location filename="UI/UserInterface.py" line="2038"/> <source>Configure toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2034"/> + <location filename="UI/UserInterface.py" line="2039"/> <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard &Shortcuts...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2046"/> + <location filename="UI/UserInterface.py" line="2051"/> <source>Set the keyboard shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2047"/> + <location filename="UI/UserInterface.py" line="2052"/> <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5127"/> + <location filename="UI/UserInterface.py" line="5132"/> <source>Export Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2055"/> - <source>&Export Keyboard Shortcuts...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2059"/> - <source>Export the keyboard shortcuts</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2060"/> + <source>&Export Keyboard Shortcuts...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2064"/> + <source>Export the keyboard shortcuts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2065"/> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Import Keyboard Shortcuts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2067"/> - <source>&Import Keyboard Shortcuts...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2071"/> - <source>Import the keyboard shortcuts</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2072"/> + <source>&Import Keyboard Shortcuts...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2076"/> + <source>Import the keyboard shortcuts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2077"/> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Activate current editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Alt+Shift+E</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Show next</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Ctrl+Alt+Tab</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Show previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Shift+Ctrl+Alt+Tab</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Switch between tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Ctrl+1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>Plugin Infos</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>&Plugin Infos...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2115"/> + <location filename="UI/UserInterface.py" line="2120"/> <source>Show Plugin Infos</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2116"/> + <location filename="UI/UserInterface.py" line="2121"/> <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2127"/> + <location filename="UI/UserInterface.py" line="2132"/> <source>Install Plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2124"/> + <location filename="UI/UserInterface.py" line="2129"/> <source>&Install Plugins...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2128"/> + <location filename="UI/UserInterface.py" line="2133"/> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2138"/> + <location filename="UI/UserInterface.py" line="2143"/> <source>Uninstall Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2135"/> + <location filename="UI/UserInterface.py" line="2140"/> <source>&Uninstall Plugin...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2139"/> + <location filename="UI/UserInterface.py" line="2144"/> <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2146"/> - <source>Plugin Repository</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2146"/> - <source>Plugin &Repository...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2149"/> - <source>Show Plugins available for download</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2151"/> + <source>Plugin Repository</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2151"/> + <source>Plugin &Repository...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2154"/> + <source>Show Plugins available for download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2156"/> <source><b>Plugin Repository...</b><p>This opens a dialog, that shows a list of plugins available on the Internet.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt&4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2177"/> + <location filename="UI/UserInterface.py" line="2182"/> <source>Open Qt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2178"/> + <location filename="UI/UserInterface.py" line="2183"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>PyQt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>P&yQt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2189"/> + <location filename="UI/UserInterface.py" line="2194"/> <source>Open PyQt4 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2190"/> + <location filename="UI/UserInterface.py" line="2195"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>Eric API Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>&Eric API Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2241"/> + <location filename="UI/UserInterface.py" line="2246"/> <source>Open Eric API Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2242"/> + <location filename="UI/UserInterface.py" line="2247"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric5 installation directory.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>PySide Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>Py&Side Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2258"/> + <location filename="UI/UserInterface.py" line="2263"/> <source>Open PySide Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2259"/> + <location filename="UI/UserInterface.py" line="2264"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2296"/> + <location filename="UI/UserInterface.py" line="2301"/> <source>&Unittest</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2313"/> - <source>E&xtras</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2318"/> + <source>E&xtras</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2323"/> <source>Wi&zards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2325"/> + <location filename="UI/UserInterface.py" line="2330"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2328"/> + <location filename="UI/UserInterface.py" line="2333"/> <source>Select Tool Group</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2334"/> + <location filename="UI/UserInterface.py" line="2339"/> <source>Se&ttings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2352"/> + <location filename="UI/UserInterface.py" line="2357"/> <source>&Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2358"/> + <location filename="UI/UserInterface.py" line="2363"/> <source>&Toolbars</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2369"/> + <location filename="UI/UserInterface.py" line="2374"/> <source>P&lugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2378"/> - <source>Configure...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2383"/> + <source>Configure...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2388"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2449"/> - <source>Tools</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2451"/> - <source>Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="4275"/> - <source>Help</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2453"/> - <source>Profiles</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2454"/> + <source>Tools</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2456"/> + <source>Settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4280"/> + <source>Help</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2458"/> + <source>Profiles</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2459"/> <source>Plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2596"/> + <location filename="UI/UserInterface.py" line="2601"/> <source><p>This part of the status bar displays the current editors language.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2603"/> + <location filename="UI/UserInterface.py" line="2608"/> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2610"/> + <location filename="UI/UserInterface.py" line="2615"/> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2617"/> + <location filename="UI/UserInterface.py" line="2622"/> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2626"/> + <location filename="UI/UserInterface.py" line="2631"/> <source><p>This part of the status bar displays the name of the file of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2633"/> + <location filename="UI/UserInterface.py" line="2638"/> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2640"/> + <location filename="UI/UserInterface.py" line="2645"/> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2697"/> + <location filename="UI/UserInterface.py" line="2702"/> <source>External Tools/{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2783"/> + <location filename="UI/UserInterface.py" line="2788"/> <source><h3>Version Numbers</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5816"/> + <location filename="UI/UserInterface.py" line="5821"/> <source></table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>Restart application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>The application needs to be restarted. Do it now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3108"/> + <location filename="UI/UserInterface.py" line="3113"/> <source>Configure Tool Groups ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3111"/> + <location filename="UI/UserInterface.py" line="3116"/> <source>Configure current Tool Group ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3160"/> + <location filename="UI/UserInterface.py" line="3165"/> <source>&Builtin Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3168"/> + <location filename="UI/UserInterface.py" line="3173"/> <source>&Plugin Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3321"/> + <location filename="UI/UserInterface.py" line="3326"/> <source>&Show all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3323"/> + <location filename="UI/UserInterface.py" line="3328"/> <source>&Hide all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4052"/> + <location filename="UI/UserInterface.py" line="4057"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt v.3 is not supported by eric5.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source>Problem</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4147"/> + <location filename="UI/UserInterface.py" line="4152"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4204"/> + <location filename="UI/UserInterface.py" line="4209"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4248"/> + <location filename="UI/UserInterface.py" line="4253"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4275"/> + <location filename="UI/UserInterface.py" line="4280"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4287"/> + <location filename="UI/UserInterface.py" line="4292"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4306"/> + <location filename="UI/UserInterface.py" line="4311"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4346"/> + <location filename="UI/UserInterface.py" line="4351"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4391"/> + <location filename="UI/UserInterface.py" line="4396"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4410"/> + <location filename="UI/UserInterface.py" line="4415"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>External Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4477"/> + <location filename="UI/UserInterface.py" line="4482"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4519"/> + <location filename="UI/UserInterface.py" line="4524"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4612"/> + <location filename="UI/UserInterface.py" line="4617"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source>Documentation Missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source>Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4781"/> + <location filename="UI/UserInterface.py" line="4786"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source>Save session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source>Read session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5641"/> - <source>&Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="5646"/> + <source>&Cancel</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="5651"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>The update to <b>{0}</b> of eric5 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>Eric5 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>You are using the latest version of eric5</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Error during updates check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Could not perform updates check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5803"/> + <location filename="UI/UserInterface.py" line="5808"/> <source><h3>Available versions</h3><table></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source>SSL Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>First time usage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>eric5 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2205"/> + <location filename="UI/UserInterface.py" line="2210"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2206"/> + <location filename="UI/UserInterface.py" line="2211"/> <source><b>Python 3 Documentation</b><p>Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and <i>/usr/share/doc/packages/python/html</i> on Unix. Set PYTHON3DOCDIR in your environment to override this. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2220"/> + <location filename="UI/UserInterface.py" line="2225"/> <source>Open Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2221"/> + <location filename="UI/UserInterface.py" line="2226"/> <source><b>Python 2 Documentation</b><p>Display the Python 2 documentation. If no documentation directory is configured, the location of the Python 2 documentation is assumed to be the doc directory underneath the location of the configured Python 2 executable on Windows and <i>/usr/share/doc/packages/python/html/python-docs-html</i> on Unix. Set PYTHON2DOCDIR in your environment to override this. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5690"/> + <location filename="UI/UserInterface.py" line="5695"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 Web Browser</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 &Web Browser...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 Web Browser</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 &Web Browser...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1933"/> <source><b>eric5 Web Browser</b><p>Browse the Internet with the eric5 Web Browser.</p></source> <translation type="unfinished"></translation> </message> @@ -48150,78 +48155,78 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New &Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> - <source>Ctrl+Shift+N</source> - <comment>File|New Window</comment> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1313"/> + <source>Ctrl+Shift+N</source> + <comment>File|New Window</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1318"/> <source>Open a new eric5 instance</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1314"/> + <location filename="UI/UserInterface.py" line="1319"/> <source><b>New Window</b><p>This opens a new instance of the eric5 IDE.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1776"/> + <location filename="UI/UserInterface.py" line="1781"/> <source>Rerun failed tests of the last run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1778"/> + <location filename="UI/UserInterface.py" line="1783"/> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare &Files side by side...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>Snapshot</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>&Snapshot...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1951"/> - <source>Take snapshots of a screen region</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1952"/> + <source>Snapshot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1952"/> + <source>&Snapshot...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1956"/> + <source>Take snapshots of a screen region</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1957"/> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4457"/> + <location filename="UI/UserInterface.py" line="4462"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric5_fr.ts Wed May 02 19:10:17 2012 +0200 +++ b/i18n/eric5_fr.ts Fri May 04 20:06:17 2012 +0200 @@ -5170,52 +5170,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="Debugger/DebugViewer.py" line="163"/> + <location filename="Debugger/DebugViewer.py" line="164"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation>Entrer des expressions régulières séparées par ';' pour définir les filtres de variables.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="166"/> + <location filename="Debugger/DebugViewer.py" line="167"/> <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source> <translation>Entrer des expressions régulières séparées par ';' pour définir les filtres de variables. Toutes les variables et attributs de classes répondant à l'un des critères ne sont pas affichés dans la liste ci-dessous.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="171"/> + <location filename="Debugger/DebugViewer.py" line="172"/> <source>Set</source> <translation>Liste</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="149"/> + <location filename="Debugger/DebugViewer.py" line="150"/> <source>Source</source> <translation>Source</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="214"/> + <location filename="Debugger/DebugViewer.py" line="215"/> <source>Threads:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>Name</source> <translation type="unfinished">Nom</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>State</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="413"/> + <location filename="Debugger/DebugViewer.py" line="414"/> <source>waiting at breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="415"/> + <location filename="Debugger/DebugViewer.py" line="416"/> <source>running</source> <translation type="unfinished"></translation> </message> @@ -39246,7 +39246,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/SearchWidget.py" line="160"/> + <location filename="UI/SearchWidget.py" line="163"/> <source>'{0}' was not found.</source> <translation type="unfinished"></translation> </message> @@ -39312,52 +39312,52 @@ <context> <name>Shell</name> <message> - <location filename="QScintilla/Shell.py" line="56"/> + <location filename="QScintilla/Shell.py" line="112"/> <source>Shell - Passive</source> <translation>Shell - Passif</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="58"/> + <location filename="QScintilla/Shell.py" line="114"/> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="127"/> + <location filename="QScintilla/Shell.py" line="183"/> <source>Passive >>> </source> <translation>Passif >>></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="159"/> + <location filename="QScintilla/Shell.py" line="215"/> <source>Copy</source> <translation>Copier</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="160"/> + <location filename="QScintilla/Shell.py" line="216"/> <source>Paste</source> <translation>Coller</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="163"/> + <location filename="QScintilla/Shell.py" line="221"/> <source>Clear</source> <translation>Effacer</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="164"/> + <location filename="QScintilla/Shell.py" line="222"/> <source>Reset</source> <translation>Réinitialiser</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="165"/> + <location filename="QScintilla/Shell.py" line="223"/> <source>Reset and Clear</source> <translation>Effacer et réinitialiser</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="551"/> + <location filename="QScintilla/Shell.py" line="609"/> <source>No.</source> <translation>Non.</translation> </message> @@ -39367,7 +39367,7 @@ <translation type="obsolete"><p><b>%1</b> n'st pas un fichier.</p></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="142"/> + <location filename="QScintilla/Shell.py" line="198"/> <source>Start</source> <translation>Lancer...</translation> </message> @@ -39377,7 +39377,7 @@ <translation type="obsolete">%1 sur %2, %3</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="60"/> + <location filename="QScintilla/Shell.py" line="116"/> <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. Pressing the up or down key after some text has been entered will start an incremental search.</p><p>The shell has some special commands. 'reset' kills the shell and starts a new one. 'clear' clears the display of the shell window. 'start' is used to switch the shell language and must be followed by a supported language. Supported languages are listed by the 'languages' command. These commands (except 'languages') 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 commandline completions. The relevant entry may be selected from this list. If only one entry is available, this will 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 fenêtre Shell</b><p>Il s'agit simplement d'un interpreteur Python affiché dans une fenêtre. L'interpréteur affiché est celui utilisé pour le débogage du programme en cours .Cela signifie qu'on peut exécuter n'importe quelle commande durant le débogage, en utilisant l'environnement de débug en cours.</p><p>On peut utiliser les flèches pour rappeler les commandes enregistrées dans l'historique. En appuyant sur les flèches du haut et du bas, on peut aussi rappeler les commandes qui commencent par le début du mot tapé..</p><p>Le shell possède des commandes spéciales. 'Réinitialiser' tue le shell en cours et en redémarre un nouveau. 'Effacer' efface l'affichage, et 'Lancer...' est utilisé pour basculer d'un langage shell à l'autre ('Python' ou 'Ruby'). Ces commandes sont aussi disponibles via le menu contextuel du shell.</p><p>En appuyant sur la touche Tab après avoir saisi du texte, on affiche la liste des complétions possibles. L'entrée voulue peut être sélectionnée dans la liste. Si une seule entrée est disponible, elle sera sélectionnée automatiquement.</p><p>En mode débogage passif, le shell est disponible uniquement après que le programme débogué connecté à l'IDE a été terminé. Ceci est indiqué par une invite de commande différente et par une indication dans le titre de la fenêtre.</p></translation> </message> @@ -39388,7 +39388,7 @@ <translation type="obsolete">Langage shell "%1" non supporté.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="548"/> + <location filename="QScintilla/Shell.py" line="606"/> <source>Passive Debug Mode</source> <translation>Mode débogueur passif</translation> </message> @@ -39403,72 +39403,77 @@ <translation type="obsolete">StdErr: %1</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="151"/> + <location filename="QScintilla/Shell.py" line="207"/> <source>History</source> <translation>Historique</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="152"/> + <location filename="QScintilla/Shell.py" line="208"/> <source>Select entry</source> <translation>Sélection d'une entrée</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="153"/> + <location filename="QScintilla/Shell.py" line="209"/> <source>Show</source> <translation>Afficher</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <source>Select History</source> <translation>Historique</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <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="549"/> + <location filename="QScintilla/Shell.py" line="607"/> <source> Not connected</source> <translation>Non connexté</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="170"/> + <location filename="QScintilla/Shell.py" line="228"/> <source>Configure...</source> <translation>Configuration...</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="158"/> + <location filename="QScintilla/Shell.py" line="214"/> <source>Cut</source> <translation type="unfinished">Couper</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="553"/> + <location filename="QScintilla/Shell.py" line="611"/> <source>{0} on {1}, {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="614"/> + <location filename="QScintilla/Shell.py" line="672"/> <source>StdOut: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="622"/> + <location filename="QScintilla/Shell.py" line="680"/> <source>StdErr: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1165"/> + <location filename="QScintilla/Shell.py" line="1223"/> <source>Shell language "{0}" not supported. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="QScintilla/Shell.py" line="219"/> + <source>Find</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ShellHistoryDialog</name> @@ -51312,7 +51317,7 @@ <translation type="obsolete">Fenêtre de débogage</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>Log-Viewer</source> <translation>Fenêtre de log</translation> </message> @@ -51357,22 +51362,22 @@ <translation type="obsolete">%1 - %2 - Mode passif</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> + <location filename="UI/UserInterface.py" line="1297"/> <source>Quit</source> <translation>Quitter</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> - <source>&Quit</source> - <translation>&Quitter</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1297"/> + <source>&Quit</source> + <translation>&Quitter</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1302"/> <source>Quit the IDE</source> <translation>Quitter l'IDE</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1298"/> + <location filename="UI/UserInterface.py" line="1303"/> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Quitter l'IDE</b><p>Cette commande fait quitter l'IDE. Toutes les modifications non-enregistrées devraient d'abord être enregistrées. Tous les programmes Python débogués seront stoppés et les préférences seront écrites sur le disque.</p></translation> </message> @@ -51392,52 +51397,52 @@ <translation type="obsolete"><b>Active/Désactive la fenêtre de navigation de débogage</b><p>Affiche ou masque la fenêtre contenant les informations sur le programme débogué.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>&Log-Viewer</source> <translation>Fenêtre de &log</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1480"/> + <location filename="UI/UserInterface.py" line="1485"/> <source>Toggle the Log-Viewer window</source> <translation>Active/Désactive la fenêtre de log</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1481"/> + <location filename="UI/UserInterface.py" line="1486"/> <source><b>Toggle the Log-Viewer window</b><p>If the Log-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Active/Désactive la fenêtre de Log</b><p>Affiche ou masque la fenêtre contenant les sorties standard et d'erreur d'Eric .</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> + <location filename="UI/UserInterface.py" line="1656"/> <source>What's This?</source> <translation>Qu'est-ce que c'est ?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>&What's This?</source> - <translation>&Qu'est-ce que c'est?</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1656"/> + <source>&What's This?</source> + <translation>&Qu'est-ce que c'est?</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1661"/> <source>Context sensitive help</source> <translation>Aide contextuelle</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1657"/> + <location filename="UI/UserInterface.py" line="1662"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Affiche l'aide contextuelle</b><p>Dans le mode "Qu'est-ce que c'est?", la souris est affichée avec un point d'interrogation, et on peut cliquer sur les éléments de l'interface pour obtenir une courte description de l'élément. Cette fonction peut être obtenue avec le bouton d'aide contextuelle de la barre principale.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> - <source>Helpviewer</source> - <translation>Visionneur d'aide</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1668"/> - <source>&Helpviewer...</source> - <translation>Visionneur d'&aide...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1673"/> + <source>Helpviewer</source> + <translation>Visionneur d'aide</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1673"/> + <source>&Helpviewer...</source> + <translation>Visionneur d'&aide...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1678"/> <source>Open the helpviewer window</source> <translation>Ouvre le visualiseur d'aide</translation> </message> @@ -51447,137 +51452,137 @@ <translation type="obsolete"><b>Visionneur d'aide</b><p>Affiche le visualiseur d'aide. Cette fenêtre affiche les fichiers d'aide HTML. On peut alors naviguer entre les liens, définir des signets ou encore imprimer des pages d'aide.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show Versions</source> <translation>Afficher les versions</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show &Versions</source> <translation>Afficher les &versions</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1693"/> + <location filename="UI/UserInterface.py" line="1698"/> <source>Display version information</source> <translation>Affiche les informations sur les versions</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1694"/> + <location filename="UI/UserInterface.py" line="1699"/> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Afficher les versions</b><p>Affiche les informations sur les versions.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Report Bug</source> <translation>Rapport de bogue</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1724"/> + <location filename="UI/UserInterface.py" line="1729"/> <source>Report &Bug...</source> <translation>Rapport de &bogue...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1726"/> + <location filename="UI/UserInterface.py" line="1731"/> <source>Report a bug</source> <translation>Envoyer un rapport de bogue</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1727"/> + <location filename="UI/UserInterface.py" line="1732"/> <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> <translation><b>Rapport de bogue...</b><p>Ouvre une fenêtre pour envoyer un rapport de bogue.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2450"/> + <location filename="UI/UserInterface.py" line="2455"/> <source>Unittest</source> <translation>Tests unitaires</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1746"/> + <location filename="UI/UserInterface.py" line="1751"/> <source>&Unittest...</source> <translation>&Tests unitaires...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1750"/> + <location filename="UI/UserInterface.py" line="1755"/> <source>Start unittest dialog</source> <translation>Ouvre la fenêtre Unitest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>Preferences</source> <translation>Préférences</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>&Preferences...</source> <translation>&Préférences...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1962"/> + <location filename="UI/UserInterface.py" line="1967"/> <source>Set the prefered configuration</source> <translation>Édition des préférences</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1963"/> + <location filename="UI/UserInterface.py" line="1968"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Préférences</b><p>Edite les valeurs souhaitées pour la configuration du logiciel.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard Shortcuts</source> <translation>Raccourcis clavier</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard &Shortcuts...</source> <translation>&Raccourcis claviers...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2046"/> + <location filename="UI/UserInterface.py" line="2051"/> <source>Set the keyboard shortcuts</source> <translation>Définition des raccourcis clavier</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2047"/> + <location filename="UI/UserInterface.py" line="2052"/> <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> <translation><b>Raccourcis claviers</b><p>Edite les raccourcis claviers pour l'application.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5127"/> + <location filename="UI/UserInterface.py" line="5132"/> <source>Export Keyboard Shortcuts</source> <translation>Exporter les raccourcis clavier</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2055"/> - <source>&Export Keyboard Shortcuts...</source> - <translation>&Exporter les raccourcis claviers...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2059"/> - <source>Export the keyboard shortcuts</source> - <translation>Exporte les raccourcis claviers</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2060"/> + <source>&Export Keyboard Shortcuts...</source> + <translation>&Exporter les raccourcis claviers...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2064"/> + <source>Export the keyboard shortcuts</source> + <translation>Exporte les raccourcis claviers</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2065"/> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>Exporter les raccourcis clavier</b><p>Exporte les raccourcis claviers de l'application.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Import Keyboard Shortcuts</source> <translation>Importer des raccourcis clavier</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2067"/> - <source>&Import Keyboard Shortcuts...</source> - <translation>&Importer des raccourcis clavier...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2071"/> - <source>Import the keyboard shortcuts</source> - <translation>Importe des raccourcis clavier</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2072"/> + <source>&Import Keyboard Shortcuts...</source> + <translation>&Importer des raccourcis clavier...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2076"/> + <source>Import the keyboard shortcuts</source> + <translation>Importe des raccourcis clavier</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2077"/> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>Importer des raccourcis clavier</b><p>Importe des raccourcis claviers de l'application.</p></translation> </message> @@ -51612,52 +51617,52 @@ <translation type="obsolete">Lance la documentation Python</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2313"/> + <location filename="UI/UserInterface.py" line="2318"/> <source>E&xtras</source> <translation>E&xtras</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2325"/> + <location filename="UI/UserInterface.py" line="2330"/> <source>&Tools</source> <translation>&Outils</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2352"/> + <location filename="UI/UserInterface.py" line="2357"/> <source>&Window</source> <translation>&Fenêtre</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2383"/> + <location filename="UI/UserInterface.py" line="2388"/> <source>&Help</source> <translation>A&ide</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2449"/> + <location filename="UI/UserInterface.py" line="2454"/> <source>Tools</source> <translation>Outils</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4275"/> + <location filename="UI/UserInterface.py" line="4280"/> <source>Help</source> <translation>Aide</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2451"/> + <location filename="UI/UserInterface.py" line="2456"/> <source>Settings</source> <translation>Configuration</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2358"/> + <location filename="UI/UserInterface.py" line="2363"/> <source>&Toolbars</source> <translation>&Barres d'Outils</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source>Problem</source> <translation>Problème</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source>Process Generation Error</source> <translation>Erreur du processus</translation> </message> @@ -51667,93 +51672,93 @@ <translation>Initialisation du serveur d'application...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1751"/> + <location filename="UI/UserInterface.py" line="1756"/> <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> <translation><b>Tests unitaires</b><p>Effectue les tests d'unitaires. Cette fenêtre permet de sélectionner et de lancer une suite de tests unitaires.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> + <location filename="UI/UserInterface.py" line="1764"/> <source>Unittest Restart</source> <translation>Relancer les tests unitaires</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> - <source>&Restart Unittest...</source> - <translation>&Relancer les tests unitaires...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1763"/> - <source>Restart last unittest</source> - <translation>Relancer le dernier test unitaire</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1764"/> + <source>&Restart Unittest...</source> + <translation>&Relancer les tests unitaires...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1768"/> + <source>Restart last unittest</source> + <translation>Relancer le dernier test unitaire</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1769"/> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation><b>Relancer le dernier test unitaire</b> <p>Relance le dernier test unitaire effectué.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1786"/> + <location filename="UI/UserInterface.py" line="1791"/> <source>Unittest Script</source> <translation>Script de tests unitaires</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1786"/> - <source>Unittest &Script...</source> - <translation>&Script de tests unitaires...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1790"/> - <source>Run unittest with current script</source> - <translation>Lance les tests unitaires sur le script courant</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1791"/> + <source>Unittest &Script...</source> + <translation>&Script de tests unitaires...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1795"/> + <source>Run unittest with current script</source> + <translation>Lance les tests unitaires sur le script courant</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1796"/> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Script de tests unitaires</b><p>Lance les tests unitaires sur le script en cours.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4052"/> + <location filename="UI/UserInterface.py" line="4057"/> <source>Unittest Project</source> <translation>Projet de tests unitaires</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1799"/> - <source>Unittest &Project...</source> - <translation>&Projet de tests unitaires...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1803"/> - <source>Run unittest with current project</source> - <translation>Lance les tests unitaires sur le projet courant</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1804"/> + <source>Unittest &Project...</source> + <translation>&Projet de tests unitaires...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1808"/> + <source>Run unittest with current project</source> + <translation>Lance les tests unitaires sur le projet courant</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1809"/> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Projet de tests unitaires</b><p>Lance les tests unitaires sur le projet en cours.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>Compare Files</source> <translation>Comparaison de fichiers</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>&Compare Files...</source> <translation>&Comparaison de fichiers...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1890"/> + <location filename="UI/UserInterface.py" line="1895"/> <source>Compare two files</source> <translation>Compare deux fichiers</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1879"/> + <location filename="UI/UserInterface.py" line="1884"/> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Comparaison de Fichiers</b><p>Ouvre une fenêtre pour comparer deux fichiers.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare Files side by side</source> <translation>Comparaison de fichiers côte à côte</translation> </message> @@ -51763,27 +51768,27 @@ <translation type="obsolete">Comparaison &côte à côte...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1891"/> + <location filename="UI/UserInterface.py" line="1896"/> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Comparaison de fichiers côte à côte</b><p>Ouvre une fenêtre pour comparer deux fichiers et affiche les différences côte à côte.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2296"/> + <location filename="UI/UserInterface.py" line="2301"/> <source>&Unittest</source> <translation>Tests &unitaires</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4052"/> + <location filename="UI/UserInterface.py" line="4057"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Il n'y a pas de script principal défini dans le projet en cours. Abandon</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-Browser</source> <translation>Navigateur de fichiers</translation> </message> @@ -51793,67 +51798,67 @@ <translation type="obsolete">%1 - %2 - %3 - Mode Passif</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1324"/> + <location filename="UI/UserInterface.py" line="1329"/> <source>Edit Profile</source> <translation>Profil d'Edition</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1329"/> + <location filename="UI/UserInterface.py" line="1334"/> <source>Activate the edit view profile</source> <translation>Active la fenêtre d'édition des profils Edition/Débogage</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1330"/> + <location filename="UI/UserInterface.py" line="1335"/> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Edition des profils</b><p>Active la fenêtre d'édition des profils Edition/Débogage. On peut y configurer les différentes fenêtres devant apparaitre en mode Edition ou Débogage.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1339"/> - <source>Debug Profile</source> - <translation>Profil Débogage</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1344"/> + <source>Debug Profile</source> + <translation>Profil Débogage</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1349"/> <source>Activate the debug view profile</source> <translation>Active le profil Débogage</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1346"/> + <location filename="UI/UserInterface.py" line="1351"/> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Profil Debogage</b><p>Active le profil Bébogage. La fenêtre affichée dans ce mode peut être configurée avec la fenêtre "Edition des profils"</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-&Browser</source> <translation>Navigateur de &Fichier</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1459"/> + <location filename="UI/UserInterface.py" line="1464"/> <source>Toggle the File-Browser window</source> <translation>Active/Désactive la fenêtre de navigation de fichiers</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1460"/> + <location filename="UI/UserInterface.py" line="1465"/> <source><b>Toggle the File-Browser window</b><p>If the File-Browser window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Active/Désactive la fenêtre de navigation de fichiers</b><p>Affiche le navigateur de fichiers s'il est masqué et réciproquement.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>View Profiles</source> <translation>Profils de visualisation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>&View Profiles...</source> <translation>Profils de &Visualisation...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2020"/> + <location filename="UI/UserInterface.py" line="2025"/> <source>Configure view profiles</source> <translation>Configuration des profils de visualisation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2021"/> + <location filename="UI/UserInterface.py" line="2026"/> <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> <translation><b>Profils de Visualisation</b><p>Configure les modes de visualisation de l'éditeur (modes Edition/Débogage). Avec cet fenêtre de configuration, on peut sélectionner les sous-fenêtres actives par défaut pour chacun des mode de visualisation.</p></translation> </message> @@ -51893,42 +51898,42 @@ <translation type="obsolete"><p><b>%1</b> n'est pas un fichier.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>UI Previewer</source> <translation>Visionneur d'UI</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>&UI Previewer...</source> <translation>Visionneur d'&UI...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1856"/> + <location filename="UI/UserInterface.py" line="1861"/> <source>Start the UI Previewer</source> <translation>Démarre le Visionneur d'UI</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1857"/> + <location filename="UI/UserInterface.py" line="1862"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation><b>Visulaiseur d'UI</b><p>Démarre le visualiseur d'UI.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>Translations Previewer</source> <translation>Visionneur de traductions</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>&Translations Previewer...</source> <translation>Visionneur de &Traductions...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1867"/> + <location filename="UI/UserInterface.py" line="1872"/> <source>Start the Translations Previewer</source> <translation>Démarre le visionneur de traductions</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1868"/> + <location filename="UI/UserInterface.py" line="1873"/> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Visionneur de traductions</b><p>Démarre le visionneur de traductions.</p></translation> </message> @@ -51943,67 +51948,67 @@ <translation type="obsolete"><p>Impossible de démarrer le visionneur de traductions.<br>Assurez-vous qu'il est bien ici <b>%1</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>&Shell</source> <translation>&Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1418"/> + <location filename="UI/UserInterface.py" line="1423"/> <source>Toggle the Shell window</source> <translation>Affiche/Masque la fenêtre Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1419"/> + <location filename="UI/UserInterface.py" line="1424"/> <source><b>Toggle the Shell window</b><p>If the Shell window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Affiche/Masque la fenêtre Shell</b><p>Afficher la fenêtre Shell si elle est masquée et réciproquement.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload APIs</source> <translation>Recharger les APIs</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload &APIs</source> <translation>Recharger les &APIs</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1997"/> + <location filename="UI/UserInterface.py" line="2002"/> <source>Reload the API information</source> <translation>Recharger les informations des API</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1998"/> + <location filename="UI/UserInterface.py" line="2003"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation><b>Recharger les APIs</b><p>Recharger les informations des API.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>Task-Viewer</source> <translation>Visualisueur de tâches</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>T&ask-Viewer</source> <translation>Gestionnaire de t&aches</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1500"/> + <location filename="UI/UserInterface.py" line="1505"/> <source>Toggle the Task-Viewer window</source> <translation>Afficher/Masquer la fenêtre des tâches</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1501"/> + <location filename="UI/UserInterface.py" line="1506"/> <source><b>Toggle the Task-Viewer window</b><p>If the Task-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Afficher/Masque la fenêtre des tâches</b><p>Afficher la fenêtre des tâches si elle est masquée et réciproquement..</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source>Save tasks</source> <translation>Enregistrement des tâches</translation> </message> @@ -52013,7 +52018,7 @@ <translation type="obsolete"><p>Impossible d'enregistrer le fichier de tâches <b>%1</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source>Read tasks</source> <translation>Lecture des tâches</translation> </message> @@ -52033,7 +52038,7 @@ <translation type="obsolete"><b>Documentation Python</b><p>Affiche la documentation Python. Si aucun répertoire de documentation n'est configuré, le répertoire de documentation est supposé etre le répertoire doc du répertoire contenant l'executable Python sousWindows et <i>/usr/share/doc/packages/python/html</i> sous Unix. Définir la variable d'environnement PYTHONDOCDIR pour ne pas en tenir compte. </p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4275"/> + <location filename="UI/UserInterface.py" line="4280"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Aucun visualiseur personalisé n'est sélectionné. Prière d'en spécifier un dans les préférences.</translation> </message> @@ -52043,7 +52048,7 @@ <translation type="obsolete"><p>Impossible de démarrer le visualiseur personalisé.<br>Assurez-vous qu'il est bien ici <b>%1</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source>Documentation Missing</source> <translation>Documentation Manquante</translation> </message> @@ -52053,27 +52058,27 @@ <translation type="obsolete"><p>Impossible de trouver le point racine "<b>%1</b>" de la documentation.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>L'adresse mail ou l'adresse du serveur mail est vide. Veuillez configurer vos paramètres mails dans la fenêtre des Préférences.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Template-Viewer</source> <translation>Gestionnaire de gabarits</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1520"/> + <location filename="UI/UserInterface.py" line="1525"/> <source>Toggle the Template-Viewer window</source> <translation>Active/Désactive la fenêtre de gabarits</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1522"/> + <location filename="UI/UserInterface.py" line="1527"/> <source><b>Toggle the Template-Viewer window</b><p>If the Template-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Afficher/Masquer la fenêtre de gabarits</b><p>Affiche la fenêtre de gabarits si elle est masquée, et réciproquement</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> @@ -52083,142 +52088,142 @@ <translation type="obsolete">Activer le navigateur de débogage</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Activate Shell</source> <translation>Activer le Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Activate File-Browser</source> <translation>Activer le navigateur de fichiers</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Activate Log-Viewer</source> <translation>Activer le gestionnaire de log</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Activate Task-Viewer</source> <translation>Activer le gestionnaire de tâches</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Activate Template-Viewer</source> <translation>Activer le gestionnaire de gabarits</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Activate current editor</source> <translation>Activer l'éditeur courant</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>Qt-Designer 4</source> <translation>Qt-Designer 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>Qt-Linguist 4</source> <translation>Qt-Linguist 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1823"/> + <location filename="UI/UserInterface.py" line="1828"/> <source>Start Qt-Designer 4</source> <translation>Lancer Qt-Designer 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1824"/> + <location filename="UI/UserInterface.py" line="1829"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> <translation><b>Qt-Designer 4</b><p>Lancer Qt-Designer 4.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1843"/> + <location filename="UI/UserInterface.py" line="1848"/> <source>Start Qt-Linguist 4</source> <translation>Lancer Qt-Linguist 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1844"/> + <location filename="UI/UserInterface.py" line="1849"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> <translation><b>Qt-Linguist 4</b><p>Lance Qt-Linguist 4.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt4 Documentation</source> <translation>Documentation Qt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt&4 Documentation</source> <translation>Documentation Qt&4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2177"/> + <location filename="UI/UserInterface.py" line="2182"/> <source>Open Qt4 Documentation</source> <translation>Lance la Documentation Qt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>Eric API Documentation</source> <translation>Documentation pour les API Eric</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>&Eric API Documentation</source> <translation>Documentation pour les API &Eric</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2241"/> + <location filename="UI/UserInterface.py" line="2246"/> <source>Open Eric API Documentation</source> <translation>Ouvre la documentation sur les APIs Eric</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4306"/> + <location filename="UI/UserInterface.py" line="4311"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Impossible de démarrer le visualiseur d'aide.<br>Assurez-vous qu'il est bien ici <b>hh</b>.</p></translation> </message> @@ -52228,58 +52233,58 @@ <translation>Enregistrement des objets...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>Project-Viewer</source> <translation>Gestionnaire de projet</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>Debug-Viewer</source> <translation>Gestionnaire de débogage</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> + <location filename="UI/UserInterface.py" line="1297"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>&Project-Viewer</source> <translation>Gestionnaire de &projet</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1357"/> + <location filename="UI/UserInterface.py" line="1362"/> <source>Toggle the Project-Viewer window</source> <translation>Active/désactive la fenêtre de projet</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1358"/> + <location filename="UI/UserInterface.py" line="1363"/> <source><b>Toggle the Project-Viewer window</b><p>If the Project-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Active/Désactive la fenêtre de projet</b><p>Affiche la fenêtre de projet si elle est masqué. La ferme si elle est ouverte.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Activate Project-Viewer</source> <translation>Activer le gestionnaire de projets</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> + <location filename="UI/UserInterface.py" line="1656"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> + <location filename="UI/UserInterface.py" line="1673"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1703"/> + <location filename="UI/UserInterface.py" line="1708"/> <source>Check for Updates</source> <translation>Rechercher des mises à jour</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1701"/> + <location filename="UI/UserInterface.py" line="1706"/> <source>Check for &Updates...</source> <translation>Rechercher des &mises à jour...</translation> </message> @@ -52294,47 +52299,47 @@ <translation type="obsolete"><b>Documentation Qt</b><p>Affiche la documentation Qt. Suivant vos réglages, ceci va afficher l'aide dans le visualiseur interne d'Eric , ou lancer un navigateur web ou Qt Assistant. </p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2178"/> + <location filename="UI/UserInterface.py" line="2183"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentation Qt4</b><p>Affiche la documentation Qt4. Suivant vos réglages, ceci va afficher l'aide dans le visualiseur interne d'Eric , ou lancer un navigateur web ou Qt Assistant. </p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>PyQt4 Documentation</source> <translation> Documentation PyQt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>P&yQt4 Documentation</source> <translation>Documentation P&yQt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2189"/> + <location filename="UI/UserInterface.py" line="2194"/> <source>Open PyQt4 Documentation</source> <translation>Lance la documentation PyQt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2190"/> + <location filename="UI/UserInterface.py" line="2195"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentation Qt4</b><p>Affiche la documentation Qt4. Suivant vos réglages, ceci va afficher l'aide dans le visualiseur interne d'Eric , ou lancer un navigateur web ou Qt Assistant. </p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2328"/> + <location filename="UI/UserInterface.py" line="2333"/> <source>Select Tool Group</source> <translation>Sélection d'un groupe d'outils</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2334"/> + <location filename="UI/UserInterface.py" line="2339"/> <source>Se&ttings</source> <translation>&Configuration</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2453"/> + <location filename="UI/UserInterface.py" line="2458"/> <source>Profiles</source> <translation>Profils</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3160"/> + <location filename="UI/UserInterface.py" line="3165"/> <source>&Builtin Tools</source> <translation>Outils &internes</translation> </message> @@ -52351,12 +52356,12 @@ <translation type="obsolete">Le processus '%1' s'est terminé.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source>Documentation</source> <translation>Documentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4781"/> + <location filename="UI/UserInterface.py" line="4786"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>L'emplacement de la documentation PyQt4 n'a pas été configuré.</p></translation> </message> @@ -52371,7 +52376,7 @@ <translation type="obsolete">fichier de raccourcis eric4 (*.e4k);;fichier de raccourcis eric3 (*.e3k *.e3kz)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Error during updates check</source> <translation>Erreur durant la recherche de mises à jour</translation> </message> @@ -52381,7 +52386,7 @@ <translation type="obsolete">L'utilisation d'un proxy a été activée, mais aucun proxy n'est configuré.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>Update available</source> <translation>Mise à jour disponible</translation> </message> @@ -52406,7 +52411,7 @@ <translation type="obsolete"><b>Documentation de l'API Eric</b><p>Affiche la do. The location for the documentation is the Documentation/Source subdirectory of the eric4 installation directory.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2783"/> + <location filename="UI/UserInterface.py" line="2788"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Numéros de version</h3><table></translation> </message> @@ -52451,17 +52456,17 @@ <translation type="obsolete"><tr><td><b>%1</b></td><td>%2</td></tr></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5816"/> + <location filename="UI/UserInterface.py" line="5821"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Open Browser</source> <translation type="unfinished">Ouverture du navigateur</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Could not start a web browser</source> <translation type="unfinished">Impossible de lancer le navigateur web</translation> </message> @@ -52476,22 +52481,22 @@ <translation type="obsolete"><p>Impossible de lire la feuile de style Qt <b>%1</b>.<br>Raison: %2</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3108"/> + <location filename="UI/UserInterface.py" line="3113"/> <source>Configure Tool Groups ...</source> <translation>Configuration des groupes d'outils...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3111"/> + <location filename="UI/UserInterface.py" line="3116"/> <source>Configure current Tool Group ...</source> <translation>Configuration du groupe d'outils courant...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2008"/> + <location filename="UI/UserInterface.py" line="2013"/> <source>Show external tools</source> <translation>Afficher les outils externes</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2005"/> + <location filename="UI/UserInterface.py" line="2010"/> <source>Show external &tools</source> <translation>Afficher les &outils externes</translation> </message> @@ -52501,7 +52506,7 @@ <translation type="obsolete"><b>Afficher les outils externes</b><p>Ouvre une fenêtre permettant de connaitre les chemins et versions des outils externes utilisés par eric4</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5641"/> + <location filename="UI/UserInterface.py" line="5646"/> <source>&Cancel</source> <translation>&Annuler</translation> </message> @@ -52511,12 +52516,12 @@ <translation type="obsolete">Connexion à l'hote %1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Could not perform updates check.</source> <translation>Impossible de vérifier les mises à jour.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>First time usage</source> <translation>Première utilisation</translation> </message> @@ -52531,52 +52536,52 @@ <translation>Initialisation du gestionnaire de plugins...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2369"/> + <location filename="UI/UserInterface.py" line="2374"/> <source>P&lugins</source> <translation>P&lugins</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2454"/> + <location filename="UI/UserInterface.py" line="2459"/> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>Plugin Infos</source> <translation>Infos Plugins</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2115"/> + <location filename="UI/UserInterface.py" line="2120"/> <source>Show Plugin Infos</source> <translation>Affiche les infos sur les plugins</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2116"/> + <location filename="UI/UserInterface.py" line="2121"/> <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> <translation><b>Infos Plugins...</b><p>Affiche une fenêtre donnant des informations sur les plugins chargés.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>&Plugin Infos...</source> <translation>Infos &Plugins...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3168"/> + <location filename="UI/UserInterface.py" line="3173"/> <source>&Plugin Tools</source> <translation>Outils &plugins</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2138"/> + <location filename="UI/UserInterface.py" line="2143"/> <source>Uninstall Plugin</source> <translation>Désinstaller un plugin</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2135"/> + <location filename="UI/UserInterface.py" line="2140"/> <source>&Uninstall Plugin...</source> <translation>&Désinstaller un plugin...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2139"/> + <location filename="UI/UserInterface.py" line="2144"/> <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> <translation><b>Désinstaller un plugin...</b><p>Ouvre une fenêtre pour désinstaller un plugin.</p></translation> </message> @@ -52586,32 +52591,32 @@ <translation>Activation des plugins...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2318"/> + <location filename="UI/UserInterface.py" line="2323"/> <source>Wi&zards</source> <translation>As&sistants</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3321"/> + <location filename="UI/UserInterface.py" line="3326"/> <source>&Show all</source> <translation>Tout &afficher</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3323"/> + <location filename="UI/UserInterface.py" line="3328"/> <source>&Hide all</source> <translation>Tout &masquer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show downloadable versions</source> <translation>Afficher les versions téléchargeables</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show &downloadable versions...</source> <translation>Afficher les versions &téléchargeables...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1714"/> + <location filename="UI/UserInterface.py" line="1719"/> <source>Show the versions available for download</source> <translation>Affiche les versions disponibles pour le téléchargement</translation> </message> @@ -52631,7 +52636,7 @@ <translation type="obsolete">Impossible de télécharger le fichier de versions.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5803"/> + <location filename="UI/UserInterface.py" line="5808"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versions disponibles</h3><table></translation> </message> @@ -52641,52 +52646,52 @@ <translation type="obsolete"><tr><td>%1</td><td><a href="%2">%3</a></td></tr></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2146"/> + <location filename="UI/UserInterface.py" line="2151"/> <source>Plugin Repository</source> <translation>Référentiel de plugins</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2146"/> - <source>Plugin &Repository...</source> - <translation>&Référentiel de plugins...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2149"/> - <source>Show Plugins available for download</source> - <translation>Affiche les plugins disponibles au téléchargement</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2151"/> + <source>Plugin &Repository...</source> + <translation>&Référentiel de plugins...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2154"/> + <source>Show Plugins available for download</source> + <translation>Affiche les plugins disponibles au téléchargement</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2156"/> <source><b>Plugin Repository...</b><p>This opens a dialog, that shows a list of plugins available on the Internet.</p></source> <translation><b>Référentiel de plugins...</b><p>Affiche une fenêtre donnant la liste des plugins disponibles sur internet.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2127"/> + <location filename="UI/UserInterface.py" line="2132"/> <source>Install Plugins</source> <translation>Installation de plugins</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2124"/> + <location filename="UI/UserInterface.py" line="2129"/> <source>&Install Plugins...</source> <translation>&Installation de plugins...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2128"/> + <location filename="UI/UserInterface.py" line="2133"/> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Installation de plugins...</b><p>Ouvre une fenêtre pour installer ou mettre à jour des plugins.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1915"/> + <location filename="UI/UserInterface.py" line="1920"/> <source>Mini Editor</source> <translation>Mini-éditeur</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1911"/> - <source>Mini &Editor...</source> - <translation>Mini édit&eur...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1916"/> + <source>Mini &Editor...</source> + <translation>Mini édit&eur...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1921"/> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini Editeur</b><p>ouvre une fenêtre avec un éditeur simplifié.</p></translation> </message> @@ -52731,32 +52736,32 @@ <translation type="obsolete"><b>Qt-Linguist 3</b><p>Lance Qt-Linguist 3.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>&Designer 4...</source> <translation>&Designer 4...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>&Linguist 4...</source> <translation>&Linguist 4...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Toolbars</source> <translation>Barres d'outils</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Tool&bars...</source> <translation>&Barres d'outils...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2033"/> + <location filename="UI/UserInterface.py" line="2038"/> <source>Configure toolbars</source> <translation>Configuration des barres d'outils</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2034"/> + <location filename="UI/UserInterface.py" line="2039"/> <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> <translation><b>Barres d'outils</b><p>Configuration des barres d'outils. Avec cette fenêtre vous pouvez modifier les actions des différentes barres affichées et créer vos propres barres d'outils</p></translation> </message> @@ -52766,32 +52771,32 @@ <translation>Restauration des barres d'outils...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>Multiproject-Viewer</source> <translation>Gestionnaire de multi-projets</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>&Multiproject-Viewer</source> <translation>Gestionnaire de &multi-projet</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1378"/> + <location filename="UI/UserInterface.py" line="1383"/> <source>Toggle the Multiproject-Viewer window</source> <translation>Active/désactive le gestionnaire de multi-projet</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1379"/> + <location filename="UI/UserInterface.py" line="1384"/> <source><b>Toggle the Multiproject-Viewer window</b><p>If the Multiproject-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Active/Désactive le gestionnaire de multi-projet</b><p>Affiche le gestionnaire de multi-projet s'il est masqué. Le ferme s'il est ouvert.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Activate Multiproject-Viewer</source> <translation>Active le gestionnaire de multi-projet</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Temp&late-Viewer</source> <translation>Gestionnaire de &gabarits</translation> </message> @@ -52801,7 +52806,7 @@ <translation type="obsolete">Outils externes/%1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>External Tools</source> <translation>Outils externes</translation> </message> @@ -52836,7 +52841,7 @@ <translation type="obsolete"><p>Le répertoire de documentation PyKDE4 n'a pas été configuré.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source>Save session</source> <translation>Enregistrer la session</translation> </message> @@ -52846,7 +52851,7 @@ <translation type="obsolete"><p>Impossible d'écrire le fichier de session <b>%1</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source>Read session</source> <translation>Chargement de session</translation> </message> @@ -52861,12 +52866,12 @@ <translation type="obsolete"><p>Format non reconnu pour le fichier de session <b>%1</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2603"/> + <location filename="UI/UserInterface.py" line="2608"/> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation><p>Cette partie de la barre d'état affiche l'encodage des éditeurs.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2617"/> + <location filename="UI/UserInterface.py" line="2622"/> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>Cette partie de la barre d'état affiche les droits d'écriture des fichiers en cours.</p></translation> </message> @@ -52876,7 +52881,7 @@ <translation type="obsolete"><b>Connexion au proxy '%1' en utilisant:</b></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source>SSL Errors</source> <translation>Erreurs SSL</translation> </message> @@ -52886,277 +52891,277 @@ <translation type="obsolete"><p>Erreurs SSL:</p><p>%1</p><p>Voulez-vous ignorer ces erreurs ?</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request Feature</source> <translation>Suggestion d'amélioration</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request &Feature...</source> <translation>Suggestion d'&amélioration...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1736"/> + <location filename="UI/UserInterface.py" line="1741"/> <source>Send a feature request</source> <translation>Envoyer une suggestion d'amélioration</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1737"/> + <location filename="UI/UserInterface.py" line="1742"/> <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> <translation><b>Demande d'amélioration...</b><p>Ouvre une fenêtre permettant d'envoyer une demande d'amélioration.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2596"/> + <location filename="UI/UserInterface.py" line="2601"/> <source><p>This part of the status bar displays the current editors language.</p></source> <translation><p>Cette zone de la barre d'état affiche le langage de l'éditeur actif.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2626"/> + <location filename="UI/UserInterface.py" line="2631"/> <source><p>This part of the status bar displays the name of the file of the current editor.</p></source> <translation><p>Cette zone de la barre d'état affiche le nom de fichier de l'éditeur actif.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2633"/> + <location filename="UI/UserInterface.py" line="2638"/> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation><p>Cette zone de la barre d'état affiche le numéro de ligne de l'éditeur actif.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2640"/> + <location filename="UI/UserInterface.py" line="2645"/> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>Cette zone de la barre d'état affiche la position du curseur.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Terminal</source> <translation>Terminal</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>Vertical Toolbox</source> <translation>Barre verticale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>Horizontal Toolbox</source> <translation>Barre horizontale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Te&rminal</source> <translation>Te&rminal</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1439"/> + <location filename="UI/UserInterface.py" line="1444"/> <source>Toggle the Terminal window</source> <translation>Afficher/Masque la fenêtre Terminal</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1440"/> + <location filename="UI/UserInterface.py" line="1445"/> <source><b>Toggle the Terminal window</b><p>If the Terminal window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Affiche/Masque la fenêtre Terminal</b><p>Affiche ou masque la fenêtre Terminal, selon.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Activate Terminal</source> <translation>Activer le Terminal</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Alt+Shift+R</source> <translation>Alt+Shift+R</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>&Vertical Toolbox</source> <translation>Barre &verticale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1541"/> + <location filename="UI/UserInterface.py" line="1546"/> <source>Toggle the Vertical Toolbox window</source> <translation>Afficher/Masquer la barre d'outils verticale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1542"/> + <location filename="UI/UserInterface.py" line="1547"/> <source><b>Toggle the Vertical Toolbox window</b><p>If the Vertical Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Afficher/Masquer la barre d'outils verticale</b><p>Affiche ou masque la barre d'outils verticale, selon.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>&Horizontal Toolbox</source> <translation>Barre &horizontale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1553"/> + <location filename="UI/UserInterface.py" line="1558"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Afficher/Masquer la barre d'outils horizontale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1554"/> + <location filename="UI/UserInterface.py" line="1559"/> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Afficher/Masquer la barre d'outils horizontale</b><p>Affiche ou masque la barre d'outils horizontale, selon.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>Restart application</source> <translation>Redémarrage de l'application</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>The application needs to be restarted. Do it now?</source> <translation>L'application a bersoin d'être relancée. Relancer maintenant ?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2378"/> + <location filename="UI/UserInterface.py" line="2383"/> <source>Configure...</source> <translation>Configuration...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2610"/> + <location filename="UI/UserInterface.py" line="2615"/> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation><p>Cette zone de la barre d'état affiche le type de fin de lignes utilisé pour les éditeurs.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Switch between tabs</source> <translation>Intervertir les onglets</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>Export Preferences</source> <translation>Exporte les préférences</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>E&xport Preferences...</source> <translation>E&xporter les préférences...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1975"/> + <location filename="UI/UserInterface.py" line="1980"/> <source>Export the current configuration</source> <translation>Exporte la configuration courante</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1976"/> + <location filename="UI/UserInterface.py" line="1981"/> <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> <translation><b>Exporter les préférences</b><p>Export la configuration courante dans un fichier.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1983"/> - <source>Import Preferences</source> - <translation>Importe les préférences</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1983"/> - <source>I&mport Preferences...</source> - <translation>I&mporter les préférences...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1986"/> - <source>Import a previously exported configuration</source> - <translation>Importe les préférences d'un fichier précédemment exporté</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1988"/> + <source>Import Preferences</source> + <translation>Importe les préférences</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1988"/> + <source>I&mport Preferences...</source> + <translation>I&mporter les préférences...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1991"/> + <source>Import a previously exported configuration</source> + <translation>Importe les préférences d'un fichier précédemment exporté</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1993"/> <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> <translation><b>Importer les préférences</b><p>Importe les préférences d'un fichier précédemment exporté.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Show next</source> <translation>Afficher le suivant</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Show previous</source> <translation>Afficher le précédent</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>Left Sidebar</source> <translation>Barre latérale de gauche</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>&Left Sidebar</source> <translation>Barre latérale de &gauche</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1564"/> + <location filename="UI/UserInterface.py" line="1569"/> <source>Toggle the left sidebar window</source> <translation>Affiche/Masque la barre latérale de gauche</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1565"/> + <location filename="UI/UserInterface.py" line="1570"/> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Affiche/masque la barre latérale de gauche</b><p>Affiche ou maque la barre latérale de gauche.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>Bottom Sidebar</source> <translation>Barre du bas</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>&Bottom Sidebar</source> <translation>&Barre du bas</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1576"/> + <location filename="UI/UserInterface.py" line="1581"/> <source>Toggle the bottom sidebar window</source> <translation>Affiche/Masque la barre du bas</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1577"/> + <location filename="UI/UserInterface.py" line="1582"/> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>A/ffiche/Masque la barre du bas</b><p>Affiche ou masque la barre du bas</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>&Debug-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1398"/> + <location filename="UI/UserInterface.py" line="1403"/> <source>Toggle the Debug-Viewer window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1399"/> + <location filename="UI/UserInterface.py" line="1404"/> <source><b>Toggle the Debug-Viewer window</b><p>If the Debug-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Activate Debug-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1899"/> - <source>SQL Browser</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1899"/> - <source>SQL &Browser...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1903"/> - <source>Browse a SQL database</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1904"/> + <source>SQL Browser</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1904"/> + <source>SQL &Browser...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1908"/> + <source>Browse a SQL database</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1909"/> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation type="unfinished"></translation> </message> @@ -53166,42 +53171,42 @@ <translation type="obsolete">Navigateur Web</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> + <location filename="UI/UserInterface.py" line="1940"/> <source>Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> + <location filename="UI/UserInterface.py" line="1940"/> <source>&Icon Editor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2259"/> + <location filename="UI/UserInterface.py" line="2264"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>PySide Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>Py&Side Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2258"/> + <location filename="UI/UserInterface.py" line="2263"/> <source>Open PySide Documentation</source> <translation type="unfinished"></translation> </message> @@ -53211,359 +53216,359 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1264"/> + <location filename="UI/UserInterface.py" line="1269"/> <source>{0} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1269"/> + <location filename="UI/UserInterface.py" line="1274"/> <source>{0} - {1} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1272"/> + <location filename="UI/UserInterface.py" line="1277"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1674"/> + <location filename="UI/UserInterface.py" line="1679"/> <source><b>Helpviewer</b><p>Display the eric5 web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is search in the Qt help collection.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1704"/> + <location filename="UI/UserInterface.py" line="1709"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric5.</p></source> <translation type="unfinished"><b>Rechercher des mises à jour...</b><p>Recherche des mises à jour pour eric4 sur internet.</p> {5.?}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1716"/> + <location filename="UI/UserInterface.py" line="1721"/> <source><b>Show downloadable versions...</b><p>Shows the eric5 versions available for download from the internet.</p></source> <translation type="unfinished"><b>Affiche les versions téléchargeables...</b><p>Affiche les versions d'eric4 disponibles sur internet.</p> {5 ?}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1927"/> + <location filename="UI/UserInterface.py" line="1932"/> <source>Start the eric5 Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1939"/> + <location filename="UI/UserInterface.py" line="1944"/> <source>Start the eric5 Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1940"/> + <location filename="UI/UserInterface.py" line="1945"/> <source><b>Icon Editor</b><p>Starts the eric5 Icon Editor for editing simple icons.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2009"/> + <location filename="UI/UserInterface.py" line="2014"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric5.</p></source> <translation type="unfinished"><b>Afficher les outils externes</b><p>Ouvre une fenêtre permettant de connaitre les chemins et versions des outils externes utilisés par eric4</p> {5.?}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2242"/> + <location filename="UI/UserInterface.py" line="2247"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric5 installation directory.</p></source> <translation type="unfinished"><b>Documentation de l'API Eric</b><p>Affiche la do. The location for the documentation is the Documentation/Source subdirectory of the eric4 installation directory.</p> {5 ?}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2697"/> + <location filename="UI/UserInterface.py" line="2702"/> <source>External Tools/{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt v.3 is not supported by eric5.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4147"/> + <location filename="UI/UserInterface.py" line="4152"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4204"/> + <location filename="UI/UserInterface.py" line="4209"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4248"/> + <location filename="UI/UserInterface.py" line="4253"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4287"/> + <location filename="UI/UserInterface.py" line="4292"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4346"/> + <location filename="UI/UserInterface.py" line="4351"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4391"/> + <location filename="UI/UserInterface.py" line="4396"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4410"/> + <location filename="UI/UserInterface.py" line="4415"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4477"/> + <location filename="UI/UserInterface.py" line="4482"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4519"/> + <location filename="UI/UserInterface.py" line="4524"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4612"/> + <location filename="UI/UserInterface.py" line="4617"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5646"/> + <location filename="UI/UserInterface.py" line="5651"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>The update to <b>{0}</b> of eric5 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>Eric5 is up to date</source> <translation type="unfinished">Eric4 est à jour {5 ?}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>You are using the latest version of eric5</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>eric5 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">eric4 n'a pas encore été configuré. La fenêtre de configuration va être ouverte. {5 ?}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>Cooperation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>&Cooperation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1587"/> + <location filename="UI/UserInterface.py" line="1592"/> <source>Toggle the Cooperation window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1589"/> + <location filename="UI/UserInterface.py" line="1594"/> <source><b>Toggle the Cooperation window</b><p>If the Cooperation window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Activate Cooperation-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Alt+Shift+O</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>Symbols</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>&Symbols</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1609"/> + <location filename="UI/UserInterface.py" line="1614"/> <source>Toggle the Symbols window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1611"/> + <location filename="UI/UserInterface.py" line="1616"/> <source><b>Toggle the Symbols window</b><p>If the Symbols window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Activate Symbols-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Alt+Shift+Y</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>&Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1631"/> + <location filename="UI/UserInterface.py" line="1636"/> <source>Toggle the Numbers window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1633"/> + <location filename="UI/UserInterface.py" line="1638"/> <source><b>Toggle the Numbers window</b><p>If the Numbers window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Activate Numbers-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Alt+Shift+B</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2205"/> + <location filename="UI/UserInterface.py" line="2210"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2206"/> + <location filename="UI/UserInterface.py" line="2211"/> <source><b>Python 3 Documentation</b><p>Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and <i>/usr/share/doc/packages/python/html</i> on Unix. Set PYTHON3DOCDIR in your environment to override this. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2220"/> + <location filename="UI/UserInterface.py" line="2225"/> <source>Open Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2221"/> + <location filename="UI/UserInterface.py" line="2226"/> <source><b>Python 2 Documentation</b><p>Display the Python 2 documentation. If no documentation directory is configured, the location of the Python 2 documentation is assumed to be the doc directory underneath the location of the configured Python 2 executable on Windows and <i>/usr/share/doc/packages/python/html/python-docs-html</i> on Unix. Set PYTHON2DOCDIR in your environment to override this. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5690"/> + <location filename="UI/UserInterface.py" line="5695"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 Web Browser</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 &Web Browser...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 Web Browser</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 &Web Browser...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1933"/> <source><b>eric5 Web Browser</b><p>Browse the Internet with the eric5 Web Browser.</p></source> <translation type="unfinished"></translation> </message> @@ -53588,78 +53593,78 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New Window</source> <translation type="unfinished">Nouvelle fenêtre</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New &Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> - <source>Ctrl+Shift+N</source> - <comment>File|New Window</comment> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1313"/> + <source>Ctrl+Shift+N</source> + <comment>File|New Window</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1318"/> <source>Open a new eric5 instance</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1314"/> + <location filename="UI/UserInterface.py" line="1319"/> <source><b>New Window</b><p>This opens a new instance of the eric5 IDE.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1776"/> + <location filename="UI/UserInterface.py" line="1781"/> <source>Rerun failed tests of the last run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1778"/> + <location filename="UI/UserInterface.py" line="1783"/> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare &Files side by side...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>Snapshot</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>&Snapshot...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1951"/> - <source>Take snapshots of a screen region</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1952"/> + <source>Snapshot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1952"/> + <source>&Snapshot...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1956"/> + <source>Take snapshots of a screen region</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1957"/> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4457"/> + <location filename="UI/UserInterface.py" line="4462"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric5_it.ts Wed May 02 19:10:17 2012 +0200 +++ b/i18n/eric5_it.ts Fri May 04 20:06:17 2012 +0200 @@ -4859,52 +4859,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="Debugger/DebugViewer.py" line="163"/> + <location filename="Debugger/DebugViewer.py" line="164"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation>Inserisi pattern delle espressioni regolari serate da ';' per definire dei filtri variabili.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="166"/> + <location filename="Debugger/DebugViewer.py" line="167"/> <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source> <translation>Inserisi pattern delle espressioni regolari serate da ';' per definire dei filtri variabili. Tutte le variabili e gli attributi di classe che sono verificati da una di queste espressioni non sono mostrate nella lista sottostante.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="171"/> + <location filename="Debugger/DebugViewer.py" line="172"/> <source>Set</source> <translation>Imposta</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="149"/> + <location filename="Debugger/DebugViewer.py" line="150"/> <source>Source</source> <translation>Sorgente</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="214"/> + <location filename="Debugger/DebugViewer.py" line="215"/> <source>Threads:</source> <translation>Threads:</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>ID</source> <translation>ID</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>Name</source> <translation>Nome</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>State</source> <translation>Stato</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="413"/> + <location filename="Debugger/DebugViewer.py" line="414"/> <source>waiting at breakpoint</source> <translation>in attesa ad un breakpoint</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="415"/> + <location filename="Debugger/DebugViewer.py" line="416"/> <source>running</source> <translation>in esecuzione</translation> </message> @@ -36288,7 +36288,7 @@ <translation>Evidenzia tutti</translation> </message> <message> - <location filename="UI/SearchWidget.py" line="160"/> + <location filename="UI/SearchWidget.py" line="163"/> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' non è stato trovato.</translation> </message> @@ -36354,139 +36354,144 @@ <context> <name>Shell</name> <message> - <location filename="QScintilla/Shell.py" line="56"/> + <location filename="QScintilla/Shell.py" line="112"/> <source>Shell - Passive</source> <translation>Shell - Passive</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="58"/> + <location filename="QScintilla/Shell.py" line="114"/> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="127"/> + <location filename="QScintilla/Shell.py" line="183"/> <source>Passive >>> </source> <translation>Passivo '>>>'</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="159"/> + <location filename="QScintilla/Shell.py" line="215"/> <source>Copy</source> <translation>Copia</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="160"/> + <location filename="QScintilla/Shell.py" line="216"/> <source>Paste</source> <translation>Incolla</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="163"/> + <location filename="QScintilla/Shell.py" line="221"/> <source>Clear</source> <translation>Pulisci</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="164"/> + <location filename="QScintilla/Shell.py" line="222"/> <source>Reset</source> <translation>Resetta</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="165"/> + <location filename="QScintilla/Shell.py" line="223"/> <source>Reset and Clear</source> <translation>Resetta e pulisci</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <source>Drop Error</source> <translation>Drop Error</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="551"/> + <location filename="QScintilla/Shell.py" line="609"/> <source>No.</source> <translation>No.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="142"/> + <location filename="QScintilla/Shell.py" line="198"/> <source>Start</source> <translation>Inizia</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="60"/> + <location filename="QScintilla/Shell.py" line="116"/> <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. Pressing the up or down key after some text has been entered will start an incremental search.</p><p>The shell has some special commands. 'reset' kills the shell and starts a new one. 'clear' clears the display of the shell window. 'start' is used to switch the shell language and must be followed by a supported language. Supported languages are listed by the 'languages' command. These commands (except 'languages') 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 commandline completions. The relevant entry may be selected from this list. If only one entry is available, this will 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 finestra Shell</b><p>Questo è un semplice interprete che viene eseguito in una finestra. L'interprete è quello usato per eseguire il programma sotto debug. Significa che puoi eseguire qualsiasi comando mentre il programma in debug viene eseguito.</p><p>Puoi usare i tasti cursore mentre inserisci i comandi. C'è inoltre una cronologia dei comandi che può essere richiamata usando i tanti su e giù. Premendo i tasti su e giù dopo che del testo è stato inserito verrà avviata una ricerca incrementale.</p><p>La shell ha alcuni comandi speciali. 'reset' uccide la shell e ne avvia una nuova. 'clear' pulisce la finestra della shell. 'start' è usato per cambiare il linguaggio della shell e deve essere seguito da uno dei linguaggi supportati. I linguaggi supportati sono elencati dal comando 'languages'. Questi comandi (eccetto 'languages') sono disponibili tramite un menù contestuale.</p><p>Premendo il tasto Tab dopo aver inserito del testo verrà mostrata una lista di possibili comandi. L'elemento rilevante può essere selezionato dalla lista. Se solo un elemento è disponibile, sarà inserito automaticamente.</p><p>In modalità di debug passiva la shell è disponibile solo dopo che il programma debuggato si è connesso all'IDE fino a quando è terminato. Questo viene indicato da un prompt differente e dal titolo della finestra.</p></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="548"/> + <location filename="QScintilla/Shell.py" line="606"/> <source>Passive Debug Mode</source> <translation>Passive Debug Mode</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="151"/> + <location filename="QScintilla/Shell.py" line="207"/> <source>History</source> <translation>Cronologia</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="152"/> + <location filename="QScintilla/Shell.py" line="208"/> <source>Select entry</source> <translation>Seleziona elemento</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="153"/> + <location filename="QScintilla/Shell.py" line="209"/> <source>Show</source> <translation>Mostra</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <source>Select History</source> <translation>Selezione cronologia</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <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="549"/> + <location filename="QScintilla/Shell.py" line="607"/> <source> Not connected</source> <translation> Non connesso</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="170"/> + <location filename="QScintilla/Shell.py" line="228"/> <source>Configure...</source> <translation>Configura...</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="158"/> + <location filename="QScintilla/Shell.py" line="214"/> <source>Cut</source> <translation>Taglia</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="553"/> + <location filename="QScintilla/Shell.py" line="611"/> <source>{0} on {1}, {2}</source> <translation></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="614"/> + <location filename="QScintilla/Shell.py" line="672"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="622"/> + <location filename="QScintilla/Shell.py" line="680"/> <source>StdErr: {0}</source> <translation>StdErr: {0*</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1165"/> + <location filename="QScintilla/Shell.py" line="1223"/> <source>Shell language "{0}" not supported. </source> <translation>Il linguaggio "{0}" della shell non è supportato. </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <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="219"/> + <source>Find</source> + <translation type="unfinished">Trova</translation> + </message> </context> <context> <name>ShellHistoryDialog</name> @@ -47665,7 +47670,7 @@ <translation>Generazione interfaccia utente principale...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>Log-Viewer</source> <translation>Log-Viewer</translation> </message> @@ -47700,257 +47705,257 @@ <translation>Inizializzazione strumenti...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> + <location filename="UI/UserInterface.py" line="1297"/> <source>Quit</source> <translation>Esci</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> - <source>&Quit</source> - <translation>&Esci</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1297"/> + <source>&Quit</source> + <translation>&Esci</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1302"/> <source>Quit the IDE</source> <translation>Esci dall'IDE</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1298"/> + <location filename="UI/UserInterface.py" line="1303"/> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Esci dall'IDE</b><p>Esci dall'IDE. Ogni cambiamento non salvato dovrebbe essere salvato prima. Ogni programma python in debug verrà fermato e le impostazioni scritte su disco.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>&Log-Viewer</source> <translation>&Log-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1480"/> + <location filename="UI/UserInterface.py" line="1485"/> <source>Toggle the Log-Viewer window</source> <translation>Abilita/Disabilita la finestra del Log-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1481"/> + <location filename="UI/UserInterface.py" line="1486"/> <source><b>Toggle the Log-Viewer window</b><p>If the Log-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra del Log-Viewer</b><p>Se la finestra del Log-Viewer è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>What's This?</source> - <translation>Cos'è questo ?</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>&What's This?</source> - <translation>C&os'è Questo ?</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1656"/> + <source>What's This?</source> + <translation>Cos'è questo ?</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source>&What's This?</source> + <translation>C&os'è Questo ?</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1661"/> <source>Context sensitive help</source> <translation>Help sensibile al contesto</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1657"/> + <location filename="UI/UserInterface.py" line="1662"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Mostra helo sensibile al contesto</b><p>Nella modalità Cos'è Questo, il cursore del mouse mostra una freccia con un punto interrogativo e puoi premere sugli elementi dell'interfaccia per avere una breve descrizione di cosa fanno e come usarli. Nel dialoghi questa funzionalità è accessibile usando il bottone di help contestuale nella fisestra del titolo.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> + <location filename="UI/UserInterface.py" line="1673"/> <source>Helpviewer</source> <translation>Visualizzatore Help</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> - <source>&Helpviewer...</source> - <translation>Visualizzatore &Help...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1673"/> + <source>&Helpviewer...</source> + <translation>Visualizzatore &Help...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1678"/> <source>Open the helpviewer window</source> <translation>Apri il visualizzatore di help</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show Versions</source> <translation>Mostra versione</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show &Versions</source> <translation>Mostra &Versione</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1693"/> + <location filename="UI/UserInterface.py" line="1698"/> <source>Display version information</source> <translation>Mostra informazioni sulla versione</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1694"/> + <location filename="UI/UserInterface.py" line="1699"/> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Mostra versioni</b><p>Mostra delle informazioni sulla versione.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Report Bug</source> <translation>Segnala Bug</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1724"/> + <location filename="UI/UserInterface.py" line="1729"/> <source>Report &Bug...</source> <translation>Segnala &Bug...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1726"/> + <location filename="UI/UserInterface.py" line="1731"/> <source>Report a bug</source> <translation>Segnala un bug</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1727"/> + <location filename="UI/UserInterface.py" line="1732"/> <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> <translation><b>>Segnala Bug...</b><p>Apre un dialogo per segnalare un bug.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2450"/> + <location filename="UI/UserInterface.py" line="2455"/> <source>Unittest</source> <translation>Unittest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1746"/> + <location filename="UI/UserInterface.py" line="1751"/> <source>&Unittest...</source> <translation>&Unittest...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1750"/> + <location filename="UI/UserInterface.py" line="1755"/> <source>Start unittest dialog</source> <translation>Avvia dialogo unittest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>Preferences</source> <translation>Preferenze</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>&Preferences...</source> <translation>&Preferenze...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1962"/> + <location filename="UI/UserInterface.py" line="1967"/> <source>Set the prefered configuration</source> <translation>Imposta la configurazione preferita</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1963"/> + <location filename="UI/UserInterface.py" line="1968"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Preferenze</b><p>Imposta i valori di configurazione dell'applicazione ai valori preferiti</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard Shortcuts</source> <translation>Scorciatoie da tastiera</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard &Shortcuts...</source> <translation>&Scorciatoie da tastiera...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2046"/> + <location filename="UI/UserInterface.py" line="2051"/> <source>Set the keyboard shortcuts</source> <translation>Imposta le scorciatoie da tastiera</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2047"/> + <location filename="UI/UserInterface.py" line="2052"/> <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> <translation><b>Scorciatoie da tastiera</b><p>Imposta le scorciatoie da tastiera dell'applicazione con i valori personalizzati.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5127"/> + <location filename="UI/UserInterface.py" line="5132"/> <source>Export Keyboard Shortcuts</source> <translation>Esporta scorciatoie da tastiera</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2055"/> - <source>&Export Keyboard Shortcuts...</source> - <translation>&Esporta scorciatoie da tastiera...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2059"/> - <source>Export the keyboard shortcuts</source> - <translation>Esporta le scorciatoie da tastiera</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2060"/> + <source>&Export Keyboard Shortcuts...</source> + <translation>&Esporta scorciatoie da tastiera...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2064"/> + <source>Export the keyboard shortcuts</source> + <translation>Esporta le scorciatoie da tastiera</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2065"/> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>Esporta scorciatoie da tastiera</b><p>Esporta le scorciatoie da tastiera dell'applicazione.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Import Keyboard Shortcuts</source> <translation>Importa scorciatoie da tastiera</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2067"/> - <source>&Import Keyboard Shortcuts...</source> - <translation>&Importa scorciatoie da tastiera...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2071"/> - <source>Import the keyboard shortcuts</source> - <translation>Importa le scorciatoie da tastiera</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2072"/> + <source>&Import Keyboard Shortcuts...</source> + <translation>&Importa scorciatoie da tastiera...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2076"/> + <source>Import the keyboard shortcuts</source> + <translation>Importa le scorciatoie da tastiera</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2077"/> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>Importa scorciatoie da tastiera</b><p>Importa le scorciatoie da tastiera dell'applicazione.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2313"/> + <location filename="UI/UserInterface.py" line="2318"/> <source>E&xtras</source> <translation>E&xtra</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2325"/> + <location filename="UI/UserInterface.py" line="2330"/> <source>&Tools</source> <translation>S&trumenti</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2352"/> + <location filename="UI/UserInterface.py" line="2357"/> <source>&Window</source> <translation>&Finestre</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2383"/> + <location filename="UI/UserInterface.py" line="2388"/> <source>&Help</source> <translation>&Help</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2449"/> + <location filename="UI/UserInterface.py" line="2454"/> <source>Tools</source> <translation>Strumenti</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4275"/> + <location filename="UI/UserInterface.py" line="4280"/> <source>Help</source> <translation>Aiuto</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2451"/> + <location filename="UI/UserInterface.py" line="2456"/> <source>Settings</source> <translation>Impostazioni</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2358"/> + <location filename="UI/UserInterface.py" line="2363"/> <source>&Toolbars</source> <translation>&Toolbar</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source>Process Generation Error</source> <translation>Errore Generazione Processo</translation> </message> @@ -47960,92 +47965,92 @@ <translation>Inizializzazione Single Application Server...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1751"/> + <location filename="UI/UserInterface.py" line="1756"/> <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> <translation><b>Unittes</b><p>Esegui unit test. Il dialogo offre la possibilità di selezionare ed eseguire uno unittest.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> + <location filename="UI/UserInterface.py" line="1764"/> <source>Unittest Restart</source> <translation>Riavvia Unittest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> - <source>&Restart Unittest...</source> - <translation>&Riavvia Unittest...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1763"/> - <source>Restart last unittest</source> - <translation>Riavvia l'ultima unittest</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1764"/> + <source>&Restart Unittest...</source> + <translation>&Riavvia Unittest...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1768"/> + <source>Restart last unittest</source> + <translation>Riavvia l'ultima unittest</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1769"/> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation><b>Riavvia Unittest</b><p>Riavvia l'ultima unittest eseguita.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1786"/> + <location filename="UI/UserInterface.py" line="1791"/> <source>Unittest Script</source> <translation>Script unittest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1786"/> - <source>Unittest &Script...</source> - <translation>&Script Unittest...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1790"/> - <source>Run unittest with current script</source> - <translation>Esegui unittest con lo script corrente</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1791"/> + <source>Unittest &Script...</source> + <translation>&Script Unittest...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1795"/> + <source>Run unittest with current script</source> + <translation>Esegui unittest con lo script corrente</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1796"/> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Script Unittest</b><p>Esegui unittest con lo script corrente.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4052"/> + <location filename="UI/UserInterface.py" line="4057"/> <source>Unittest Project</source> <translation>Progetto Unittest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1799"/> - <source>Unittest &Project...</source> - <translation>&Progetto Unittest...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1803"/> - <source>Run unittest with current project</source> - <translation>Esegui unittest con il progetto corrente</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1804"/> + <source>Unittest &Project...</source> + <translation>&Progetto Unittest...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1808"/> + <source>Run unittest with current project</source> + <translation>Esegui unittest con il progetto corrente</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1809"/> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Progetto Unittest</b><p>Esegui unittest con il progetto corrente.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>Compare Files</source> <translation>Confronta file</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>&Compare Files...</source> <translation>&Confronta file...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1890"/> + <location filename="UI/UserInterface.py" line="1895"/> <source>Compare two files</source> <translation>Confronta due file</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1879"/> + <location filename="UI/UserInterface.py" line="1884"/> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Confronta file</b><p>Apre un dialogo per confrontare due file.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare Files side by side</source> <translation>Confronta file affiancati</translation> </message> @@ -48055,377 +48060,377 @@ <translation type="obsolete">Confronta file &affiancati...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1891"/> + <location filename="UI/UserInterface.py" line="1896"/> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Confronta file affiancati</b><p>Apri un dialogo per confrontare due file e mostrare i risultati affiancati.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2296"/> + <location filename="UI/UserInterface.py" line="2301"/> <source>&Unittest</source> <translation>&Unittest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4052"/> + <location filename="UI/UserInterface.py" line="4057"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Non c'è uno script principale definito per il progetto. Esco</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source>Drop Error</source> <translation>Errore Drop</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-Browser</source> <translation>File Browser</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1324"/> - <source>Edit Profile</source> - <translation>Modifica profilo</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1329"/> + <source>Edit Profile</source> + <translation>Modifica profilo</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1334"/> <source>Activate the edit view profile</source> <translation>Attiva il profilo della vista di editing</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1330"/> + <location filename="UI/UserInterface.py" line="1335"/> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Profilo di edit</p><p>Attiva il "Profilo di Edit". Le finestre da mostrare, se il profilo è attivo, possono essere configurate con il dialogo "Configura Profili.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1339"/> - <source>Debug Profile</source> - <translation>Profilo Debug</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1344"/> + <source>Debug Profile</source> + <translation>Profilo Debug</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1349"/> <source>Activate the debug view profile</source> <translation>Attiva profilo Debug</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1346"/> + <location filename="UI/UserInterface.py" line="1351"/> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Profilo di debug</p><p>Attiva il "Profilo di Debug". Le finestre da mostrare, se il profilo è attivo, possono essere configurate con il dialogo "Configura Profili.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-&Browser</source> <translation>File-&Browser</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1459"/> + <location filename="UI/UserInterface.py" line="1464"/> <source>Toggle the File-Browser window</source> <translation>Abilita/Disabilita la finestra del File-Browser</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1460"/> + <location filename="UI/UserInterface.py" line="1465"/> <source><b>Toggle the File-Browser window</b><p>If the File-Browser window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra del File-Browser</b><p>Se la finestra del File-Browser è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>View Profiles</source> <translation>Vista Profili</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>&View Profiles...</source> <translation>&Vista profili...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2020"/> + <location filename="UI/UserInterface.py" line="2025"/> <source>Configure view profiles</source> <translation>Configura i profili</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2021"/> + <location filename="UI/UserInterface.py" line="2026"/> <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> <translation><b>Vista Profili</b><p>Configura la visualizzazione dei profili. Con questo dialogo si possono impostare la visibilità delle varie finestre per i profili predefiniti.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>UI Previewer</source> <translation>Anteprima UI</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>&UI Previewer...</source> <translation>Antreprima &UI...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1856"/> + <location filename="UI/UserInterface.py" line="1861"/> <source>Start the UI Previewer</source> <translation>Avvia UI Previewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1857"/> + <location filename="UI/UserInterface.py" line="1862"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation><b>UI Previewer</b><p>Avvia UI Previewer.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>Translations Previewer</source> <translation>Anteprima traduzioni</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>&Translations Previewer...</source> <translation>Anteprima &Traduzioni...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1867"/> + <location filename="UI/UserInterface.py" line="1872"/> <source>Start the Translations Previewer</source> <translation>Avvia l'anteprima delle traduzioni</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1868"/> + <location filename="UI/UserInterface.py" line="1873"/> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Anteprima traduzioni</b><p>Avvia l'anteprima delle traduzioni.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>&Shell</source> <translation>&Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1418"/> + <location filename="UI/UserInterface.py" line="1423"/> <source>Toggle the Shell window</source> <translation>Abilita/Disabilita una finestra di Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1419"/> + <location filename="UI/UserInterface.py" line="1424"/> <source><b>Toggle the Shell window</b><p>If the Shell window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra della Shell</b><p>Se la finestra del File-Browser è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload APIs</source> <translation>Ricarica APIs</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload &APIs</source> <translation>Ricarica &APIs</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1997"/> + <location filename="UI/UserInterface.py" line="2002"/> <source>Reload the API information</source> <translation>Ricarica le informazioni delle API</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1998"/> + <location filename="UI/UserInterface.py" line="2003"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation><b>Ricarica APIs</b><p>Ricarica le informazioni delle API.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>Task-Viewer</source> <translation>Task-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>T&ask-Viewer</source> <translation>Ta&sk-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1500"/> + <location filename="UI/UserInterface.py" line="1505"/> <source>Toggle the Task-Viewer window</source> <translation>Abilita/Disabilita la finestra del Task-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1501"/> + <location filename="UI/UserInterface.py" line="1506"/> <source><b>Toggle the Task-Viewer window</b><p>If the Task-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra del Task-Viewer</b><p>Se la finestra del Log-Viewer è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source>Save tasks</source> <translation>Salva task</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source>Read tasks</source> <translation>Leggi task</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4275"/> + <location filename="UI/UserInterface.py" line="4280"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Attualmente nessun visualizzatore personalizzato è selezionato. Per favore usa il dialogo delle preferenze per specificarne uno.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source>Documentation Missing</source> <translation>Documentazione mancante</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>L'indirizzo di posta o il server si posta sono vuoti. Per cortesia configura le opzioni per l'Email nel dialogo delle preferenze.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Template-Viewer</source> <translation>Templates-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1520"/> + <location filename="UI/UserInterface.py" line="1525"/> <source>Toggle the Template-Viewer window</source> <translation>Abilita/Disabilita la finestra del Task-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1522"/> + <location filename="UI/UserInterface.py" line="1527"/> <source><b>Toggle the Template-Viewer window</b><p>If the Template-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra del Task-Viewer</b><p>Se la finestra del Log-Viewer è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Activate Shell</source> <translation>Attiva shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Activate File-Browser</source> <translation>Attiva File-Browser</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Alt+Shift+F</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Activate Log-Viewer</source> <translation>Attiva il Log-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Activate Task-Viewer</source> <translation>Attiva il Task-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Activate Template-Viewer</source> <translation>Attiva il Template-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Activate current editor</source> <translation>Attiva editor corrente</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>Qt-Designer 4</source> <translation>Qt-Designer 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>Qt-Linguist 4</source> <translation>Qt-Linguist 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1823"/> + <location filename="UI/UserInterface.py" line="1828"/> <source>Start Qt-Designer 4</source> <translation>Avvia Qt-Designer 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1824"/> + <location filename="UI/UserInterface.py" line="1829"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> <translation><b>Qt-Designer 4</b><p>Avvia Qt-Designer 4.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1843"/> + <location filename="UI/UserInterface.py" line="1848"/> <source>Start Qt-Linguist 4</source> <translation>Avvia Qt-Linguist 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1844"/> + <location filename="UI/UserInterface.py" line="1849"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> <translation><b>Qt-Linguist 4</b><p>Avvia Qt-Linguist 4.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt4 Documentation</source> <translation>Documentazione Qt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt&4 Documentation</source> <translation>Documentazione Qt&4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2177"/> + <location filename="UI/UserInterface.py" line="2182"/> <source>Open Qt4 Documentation</source> <translation>Apri documentazione su Qt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>Eric API Documentation</source> <translation>Documentazione API di Eric</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>&Eric API Documentation</source> <translation>Documentazione API di &Eric</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2241"/> + <location filename="UI/UserInterface.py" line="2246"/> <source>Open Eric API Documentation</source> <translation>Apri documentazione API di Eric</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4306"/> + <location filename="UI/UserInterface.py" line="4311"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Non posso avviare il visualizzatore di help.<br>Assicurarsi che sia disponibile come <b>hh</b>.</p></translation> </message> @@ -48435,133 +48440,133 @@ <translation>Registrazione Oggetti...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>Project-Viewer</source> <translation>Project-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>Debug-Viewer</source> <translation>Debug-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> + <location filename="UI/UserInterface.py" line="1297"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>&Project-Viewer</source> <translation>&Project-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1357"/> + <location filename="UI/UserInterface.py" line="1362"/> <source>Toggle the Project-Viewer window</source> <translation>Abilita/Disabilita la finestra del Project-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1358"/> + <location filename="UI/UserInterface.py" line="1363"/> <source><b>Toggle the Project-Viewer window</b><p>If the Project-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra del Project-Viewer</b><p>Se la finestra del Log-Viewer è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Activate Project-Viewer</source> <translation>Attiva il Project-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> + <location filename="UI/UserInterface.py" line="1656"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> + <location filename="UI/UserInterface.py" line="1673"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1703"/> + <location filename="UI/UserInterface.py" line="1708"/> <source>Check for Updates</source> <translation>Controlla per aggiornamenti</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1701"/> + <location filename="UI/UserInterface.py" line="1706"/> <source>Check for &Updates...</source> <translation>Controlla per &Aggiornamenti...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2178"/> + <location filename="UI/UserInterface.py" line="2183"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentazione Qt4</b><p>Visualizza la documentazione di Qt4. A seconda di come è configurato il tuo sistema, verrà mostrata nel visualizzatore interno di Eric o in un browser web. </p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>PyQt4 Documentation</source> <translation>Documentazione PyQt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>P&yQt4 Documentation</source> <translation>Documentazione P&yQt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2189"/> + <location filename="UI/UserInterface.py" line="2194"/> <source>Open PyQt4 Documentation</source> <translation>Apri documentazione su PyQt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2190"/> + <location filename="UI/UserInterface.py" line="2195"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentazione PyQt4</b><p>Visualizza la documentazione di Qt4. A seconda di come è configurato il tuo sistema, verrà mostrata nel visualizzatore interno di Eric o in un browser web. </p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2328"/> + <location filename="UI/UserInterface.py" line="2333"/> <source>Select Tool Group</source> <translation>Seleziona Tool Group</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2334"/> + <location filename="UI/UserInterface.py" line="2339"/> <source>Se&ttings</source> <translation>Impos&tazioni</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2453"/> + <location filename="UI/UserInterface.py" line="2458"/> <source>Profiles</source> <translation>Profili</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3160"/> + <location filename="UI/UserInterface.py" line="3165"/> <source>&Builtin Tools</source> <translation>Tool &Builtin</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source>Documentation</source> <translation>Documentazione</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4781"/> + <location filename="UI/UserInterface.py" line="4786"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>L'inizio della documentazione di PyQt4 non è stato configurato.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Error during updates check</source> <translation>Errore nel controllo per gli update</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>Update available</source> <translation>Aggiornamento disponibile</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2783"/> + <location filename="UI/UserInterface.py" line="2788"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Numeri di versione</h3><table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5816"/> + <location filename="UI/UserInterface.py" line="5821"/> <source></table></source> <translation></table></translation> </message> @@ -48571,37 +48576,37 @@ <translation>Caricamento Style Sheet</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3108"/> + <location filename="UI/UserInterface.py" line="3113"/> <source>Configure Tool Groups ...</source> <translation>Configura Tools Groups...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3111"/> + <location filename="UI/UserInterface.py" line="3116"/> <source>Configure current Tool Group ...</source> <translation>Configura Tools Groups correnti...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2008"/> + <location filename="UI/UserInterface.py" line="2013"/> <source>Show external tools</source> <translation>Mostra tool esterni</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2005"/> + <location filename="UI/UserInterface.py" line="2010"/> <source>Show external &tools</source> <translation>Mostra toll &esterni</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5641"/> + <location filename="UI/UserInterface.py" line="5646"/> <source>&Cancel</source> <translation>&Cancella</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Could not perform updates check.</source> <translation>Non posso controllare per gli update.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>First time usage</source> <translation>Primo avvio</translation> </message> @@ -48611,52 +48616,52 @@ <translation>Inizializzazione Gestore Plugin...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2369"/> + <location filename="UI/UserInterface.py" line="2374"/> <source>P&lugins</source> <translation>P&lugins</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2454"/> + <location filename="UI/UserInterface.py" line="2459"/> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>Plugin Infos</source> <translation>Informazioni su Plugin</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2115"/> + <location filename="UI/UserInterface.py" line="2120"/> <source>Show Plugin Infos</source> <translation>Mostra informazioni sui Plugin</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2116"/> + <location filename="UI/UserInterface.py" line="2121"/> <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> <translation><b>Informazioni sui Plugin...</b><p>Apre un dialogo per mostrare le informazioni sul plugin caricati.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>&Plugin Infos...</source> <translation>Informazioni su &Plugin...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3168"/> + <location filename="UI/UserInterface.py" line="3173"/> <source>&Plugin Tools</source> <translation>Informazioni sui &Plugin Tools</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2138"/> + <location filename="UI/UserInterface.py" line="2143"/> <source>Uninstall Plugin</source> <translation>Disinstalla Plugin</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2135"/> + <location filename="UI/UserInterface.py" line="2140"/> <source>&Uninstall Plugin...</source> <translation>Disinstalla Pl&ugin...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2139"/> + <location filename="UI/UserInterface.py" line="2144"/> <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> <translation><b>Disinstalla Plugin...</b><p>Apre un dialogo per disinstallare un plugin.</p></translation> </message> @@ -48666,32 +48671,32 @@ <translation>Attivazione Plugin...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2318"/> + <location filename="UI/UserInterface.py" line="2323"/> <source>Wi&zards</source> <translation>Wi&zards</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3321"/> + <location filename="UI/UserInterface.py" line="3326"/> <source>&Show all</source> <translation>Mo&stra tutti</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3323"/> + <location filename="UI/UserInterface.py" line="3328"/> <source>&Hide all</source> <translation>Nascondi &tutti</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show downloadable versions</source> <translation>Mostra versioni scaricabili</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show &downloadable versions...</source> <translation>Mostra &versioni scaricabili...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1714"/> + <location filename="UI/UserInterface.py" line="1719"/> <source>Show the versions available for download</source> <translation>Mostra le versioni disponibili per il download</translation> </message> @@ -48706,87 +48711,87 @@ <translation type="obsolete">Non posso scaricare il file delle versioni.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5803"/> + <location filename="UI/UserInterface.py" line="5808"/> <source><h3>Available versions</h3><table></source> <translation><h3>Versioni disponibili</h3><table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2146"/> + <location filename="UI/UserInterface.py" line="2151"/> <source>Plugin Repository</source> <translation>Repository Plugin</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2146"/> - <source>Plugin &Repository...</source> - <translation>&Repository Plugin...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2149"/> - <source>Show Plugins available for download</source> - <translation>Mostra Plugin disponibili per il download</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2151"/> + <source>Plugin &Repository...</source> + <translation>&Repository Plugin...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2154"/> + <source>Show Plugins available for download</source> + <translation>Mostra Plugin disponibili per il download</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2156"/> <source><b>Plugin Repository...</b><p>This opens a dialog, that shows a list of plugins available on the Internet.</p></source> <translation><b>Repository Plugin...</b><p>Apre un dialogo che mostra i plugin disponibili.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2127"/> + <location filename="UI/UserInterface.py" line="2132"/> <source>Install Plugins</source> <translation>Installa Plugin</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2124"/> + <location filename="UI/UserInterface.py" line="2129"/> <source>&Install Plugins...</source> <translation>&Installa Plugin...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2128"/> + <location filename="UI/UserInterface.py" line="2133"/> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Installa Plugin...<b><p>Apre un dialogo per installare o aggiornare i plugin.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1915"/> + <location filename="UI/UserInterface.py" line="1920"/> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1911"/> - <source>Mini &Editor...</source> - <translation>Mini &Editor...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1916"/> + <source>Mini &Editor...</source> + <translation>Mini &Editor...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1921"/> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini Editor</b><p>Apre un dialogo con un semplice editor.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>&Designer 4...</source> <translation>&Desginer 4...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>&Linguist 4...</source> <translation>&Linguist 4...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Toolbars</source> <translation>Toolbars</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Tool&bars...</source> <translation>Tool&bars...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2033"/> + <location filename="UI/UserInterface.py" line="2038"/> <source>Configure toolbars</source> <translation>Configura toolbars</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2034"/> + <location filename="UI/UserInterface.py" line="2039"/> <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> <translation><b>Toolbars</b><p>Configura le toolbars. Con questo dialogo puoi cambiare le azioni mostrate sulle varie toolbar e definire le tue.</p></translation> </message> @@ -48796,337 +48801,337 @@ <translation>Ripristino toolbarmanager...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>Multiproject-Viewer</source> <translation>Multiproject-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>&Multiproject-Viewer</source> <translation>&Multiproject-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1378"/> + <location filename="UI/UserInterface.py" line="1383"/> <source>Toggle the Multiproject-Viewer window</source> <translation>Abilita/Disabilita la finestra del Multiproject-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1379"/> + <location filename="UI/UserInterface.py" line="1384"/> <source><b>Toggle the Multiproject-Viewer window</b><p>If the Multiproject-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra del Multiproject-Viewer</b><p>Se la finestra del Log-Viewer è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Activate Multiproject-Viewer</source> <translation>Attiva il Multiproject-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Temp&late-Viewer</source> <translation>Temp&late-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>External Tools</source> <translation>Tool esterni</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source>Save session</source> <translation>Salva sessione</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source>Read session</source> <translation>Leggi sessione</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2603"/> + <location filename="UI/UserInterface.py" line="2608"/> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation><p>Questa zona della barra di stato mostra l'encoding usato dall'editor.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2617"/> + <location filename="UI/UserInterface.py" line="2622"/> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>Questa zona della barra di stato mostra la possibilità di scrittura del file.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source>SSL Errors</source> <translation>Errori SSL</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request Feature</source> <translation>Richiedi funzionalità</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request &Feature...</source> <translation>Richiedi &funzionalità...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1736"/> + <location filename="UI/UserInterface.py" line="1741"/> <source>Send a feature request</source> <translation>Invia una richiesta di funzionalità</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1737"/> + <location filename="UI/UserInterface.py" line="1742"/> <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> <translation><b>Richiedi funzionalità...</b><p>Apre un dialogo per mandare una richiesta di funzionalità.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2596"/> + <location filename="UI/UserInterface.py" line="2601"/> <source><p>This part of the status bar displays the current editors language.</p></source> <translation><p>Questa zona della barra di stato mostra il linguaggio usato dall'editor.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2626"/> + <location filename="UI/UserInterface.py" line="2631"/> <source><p>This part of the status bar displays the name of the file of the current editor.</p></source> <translation><p>Questa parte della barra di stato mostra la il nome del file attuale.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2633"/> + <location filename="UI/UserInterface.py" line="2638"/> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation><p>Questa parte della barra di stato mostra il numero di linea.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2640"/> + <location filename="UI/UserInterface.py" line="2645"/> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>Questa parte della barra di stato mostra la posizione del cursore.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Terminal</source> <translation>Terminale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>Vertical Toolbox</source> <translation>Barra dei comandi verticale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>Horizontal Toolbox</source> <translation>Barra dei comandi orizzontale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Te&rminal</source> <translation>Te&rminale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1439"/> + <location filename="UI/UserInterface.py" line="1444"/> <source>Toggle the Terminal window</source> <translation>Abilita/Disabilita una finestra di Terminale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1440"/> + <location filename="UI/UserInterface.py" line="1445"/> <source><b>Toggle the Terminal window</b><p>If the Terminal window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra del Terminale</b><p>Se la finestra del Log-Viewer è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Activate Terminal</source> <translation>Attiva terminale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Alt+Shift+R</source> <translation>Alt+Shift+R</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>&Vertical Toolbox</source> <translation>Toolbox &Verticale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1541"/> + <location filename="UI/UserInterface.py" line="1546"/> <source>Toggle the Vertical Toolbox window</source> <translation>Abilita/Disabilita una finestra la toolbox verticale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1542"/> + <location filename="UI/UserInterface.py" line="1547"/> <source><b>Toggle the Vertical Toolbox window</b><p>If the Vertical Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra della toolbox verticale</b><p>Se la finestra della toolbox Verticale è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>&Horizontal Toolbox</source> <translation>Toolbox &Orizzontale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1553"/> + <location filename="UI/UserInterface.py" line="1558"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Abilita/Disabilita una finestra la toolbox orizzontale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1554"/> + <location filename="UI/UserInterface.py" line="1559"/> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra della toolbox orizzontale</b><p>Se la finestra della toolbox orizzontale è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>Restart application</source> <translation>Riavvia applicazione</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>The application needs to be restarted. Do it now?</source> <translation>L'applicazione necessita di un riavvio. Farlo ora ?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2378"/> + <location filename="UI/UserInterface.py" line="2383"/> <source>Configure...</source> <translation>Configura...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2610"/> + <location filename="UI/UserInterface.py" line="2615"/> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation><p>Questa zona della barra di stato mostra l'eol usato dall'editor.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Switch between tabs</source> <translation>Cicla tra le linguette</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>Export Preferences</source> <translation>Esporta preferenze</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>E&xport Preferences...</source> <translation>E&sporta preferenze...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1975"/> + <location filename="UI/UserInterface.py" line="1980"/> <source>Export the current configuration</source> <translation>Esporta la configurazione attuale</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1976"/> + <location filename="UI/UserInterface.py" line="1981"/> <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> <translation><b>Esporta preferenze</b><p>Esporta la configurazione attuale su un file.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1983"/> - <source>Import Preferences</source> - <translation>Importa preferenze</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1983"/> - <source>I&mport Preferences...</source> - <translation>I&mporta preferenze...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1986"/> - <source>Import a previously exported configuration</source> - <translation>Importa una configurazione precedentemente esportata</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1988"/> + <source>Import Preferences</source> + <translation>Importa preferenze</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1988"/> + <source>I&mport Preferences...</source> + <translation>I&mporta preferenze...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1991"/> + <source>Import a previously exported configuration</source> + <translation>Importa una configurazione precedentemente esportata</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1993"/> <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> <translation><b>Importa preferenze</b><p>Importa una configurazione precedentemente esportata.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Show next</source> <translation>Mostra successivo</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Show previous</source> <translation>Mostra precedente</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>Left Sidebar</source> <translation>Barra laterale sinistra</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>&Left Sidebar</source> <translation>Barra &laterale sinistra</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1564"/> + <location filename="UI/UserInterface.py" line="1569"/> <source>Toggle the left sidebar window</source> <translation>Abilita/Disabilita la finestra della barra laterale sinistra</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1565"/> + <location filename="UI/UserInterface.py" line="1570"/> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra della barra laterale sinistra</b><p>Se la finestra della barra laterale sinistra è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>Bottom Sidebar</source> <translation>Barra in basso</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>&Bottom Sidebar</source> <translation>Barra in &basso</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1576"/> + <location filename="UI/UserInterface.py" line="1581"/> <source>Toggle the bottom sidebar window</source> <translation>Abilita/Disabilita la finestra della barra in basso</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1577"/> + <location filename="UI/UserInterface.py" line="1582"/> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra della barra in basso</b><p>Se la finestra della barra in basso è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>&Debug-Viewer</source> <translation>&Debug-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1398"/> + <location filename="UI/UserInterface.py" line="1403"/> <source>Toggle the Debug-Viewer window</source> <translation>Abilita/Disabilita la finestra del Debug-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1399"/> + <location filename="UI/UserInterface.py" line="1404"/> <source><b>Toggle the Debug-Viewer window</b><p>If the Debug-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra del Debug-Viewer</b><p>Se la finestra del Debug-Viewer è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Activate Debug-Viewer</source> <translation>Attiva Debug-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1899"/> - <source>SQL Browser</source> - <translation>SQL Browser</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1899"/> - <source>SQL &Browser...</source> - <translation>SQL &Browser...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1903"/> - <source>Browse a SQL database</source> - <translation>Naviga un database SQL</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1904"/> + <source>SQL Browser</source> + <translation>SQL Browser</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1904"/> + <source>SQL &Browser...</source> + <translation>SQL &Browser...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1908"/> + <source>Browse a SQL database</source> + <translation>Naviga un database SQL</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1909"/> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>SQL Browser</b><p>Naviga un database SQL.</p></translation> </message> @@ -49166,42 +49171,42 @@ <translation type="obsolete">Browser &Web...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> + <location filename="UI/UserInterface.py" line="1940"/> <source>Icon Editor</source> <translation>Editor di icone</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> + <location filename="UI/UserInterface.py" line="1940"/> <source>&Icon Editor...</source> <translation>Editor di &icone...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt 3 support</source> <translation>Supporto Qt3</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>PySide Documentation</source> <translation>Documentazione PySide</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>Py&Side Documentation</source> <translation>Documentazione Py&Side</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2258"/> + <location filename="UI/UserInterface.py" line="2263"/> <source>Open PySide Documentation</source> <translation>Apri documentazione PySide</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2259"/> + <location filename="UI/UserInterface.py" line="2264"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Documentazione PySide</b><p>Visualizza la documentazione di PySide. A seconda di come è configurato il tuo sistema, verrà mostrata nel visualizzatore interno di Eric o in un browser web o usando Qt Assistant. </p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation><p>L'inizio della documentazione di PySide non è stato configurato.</p></translation> </message> @@ -49211,37 +49216,37 @@ <translation><p>Il file Qt Style Sheet <b>{0}</b> non può essere letto. <br>Motivo: {1}</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1264"/> + <location filename="UI/UserInterface.py" line="1269"/> <source>{0} - Passive Mode</source> <translation>{0} - Passive Debug Mode</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1269"/> + <location filename="UI/UserInterface.py" line="1274"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} -{1} Passive Debug Mode</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1272"/> + <location filename="UI/UserInterface.py" line="1277"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} -{1} - {2} - Passive Debug Mode</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1674"/> + <location filename="UI/UserInterface.py" line="1679"/> <source><b>Helpviewer</b><p>Display the eric5 web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is search in the Qt help collection.</p></source> <translation><b>Helpviewer</b><p>Visualizza il browser web di eric5. Questa finestra mostra file di help HTML e della documentazione Qt. Ha la capacitaà di navigare nei link, impostare segnalibri, stampare l'help visualizzato e alcune altre funzionalità. E' possibile usarlo anche per internet</p><p>Se invocato con una parola selezionata, questa parola viene cercata nella documetazione Qt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1704"/> + <location filename="UI/UserInterface.py" line="1709"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric5.</p></source> <translation><b>Controlla per Update...</b><p>Controlla su internet per aggiornamenti di eric5.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1716"/> + <location filename="UI/UserInterface.py" line="1721"/> <source><b>Show downloadable versions...</b><p>Shows the eric5 versions available for download from the internet.</p></source> <translation><b>Mostra versioni scaricabili...</b><p>Mostra le versioni di eric5 disponibili per il download.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1927"/> + <location filename="UI/UserInterface.py" line="1932"/> <source>Start the eric5 Web Browser</source> <translation>Avvia il Browser Web di eric5</translation> </message> @@ -49251,335 +49256,335 @@ <translation type="obsolete"><b>Browser Web</b><p>Naviga con il browser web di eric5.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1939"/> + <location filename="UI/UserInterface.py" line="1944"/> <source>Start the eric5 Icon Editor</source> <translation>Avvia l'editor di icone di eric5</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1940"/> + <location filename="UI/UserInterface.py" line="1945"/> <source><b>Icon Editor</b><p>Starts the eric5 Icon Editor for editing simple icons.</p></source> <translation><b>Editor di icone</b><p>Avvia l'editor di icone di eric5 per modificare delle icone semplici.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2009"/> + <location filename="UI/UserInterface.py" line="2014"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric5.</p></source> <translation><b>Mostra tool esterni</b><p>Mostra un dialogo con percorso e versione di tutti i tool esterni usati da eric5.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2242"/> + <location filename="UI/UserInterface.py" line="2247"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric5 installation directory.</p></source> <translation><b>Documentazione API Eric</b><p>Mostra la documentazione delle API di Eric. La posizione della documentazione è la subdirectory Documentation/Source della directory in cui è installato eric5.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2697"/> + <location filename="UI/UserInterface.py" line="2702"/> <source>External Tools/{0}</source> <translation>Tool Esterni/{0}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt v.3 is not supported by eric5.</source> <translation>Le Qt v.3 non sono supportate da eric5.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Il file <b>{0}</b> non esiste o ha lunghezza zero.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4147"/> + <location filename="UI/UserInterface.py" line="4152"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare Qt-Designer.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4204"/> + <location filename="UI/UserInterface.py" line="4209"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare Qt-Linguist.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4248"/> + <location filename="UI/UserInterface.py" line="4253"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare Qt-Assistant.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4287"/> + <location filename="UI/UserInterface.py" line="4292"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare il visualizzatore personalizzato.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4346"/> + <location filename="UI/UserInterface.py" line="4351"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare UI Previewer.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4391"/> + <location filename="UI/UserInterface.py" line="4396"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare l'anteprima delle traduzioni.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4410"/> + <location filename="UI/UserInterface.py" line="4415"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare SQL Browser.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4477"/> + <location filename="UI/UserInterface.py" line="4482"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>Nessun elemento per il tool esterno '{0}' trovato nel gruppo '{1}'.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>No toolgroup entry '{0}' found.</source> <translation>Nessun gruppo '{0}' trovato.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4519"/> + <location filename="UI/UserInterface.py" line="4524"/> <source>Starting process '{0} {1}'. </source> <translation>Avvio processo '{0} {1}'. </translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Non posso avviare l'elemento degli strumenti <b>{0}</b>.<br>Assicurarsi che sia disponibile come <b>{1}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4612"/> + <location filename="UI/UserInterface.py" line="4617"/> <source>Process '{0}' has exited. </source> <translation>Il processo '{0}' è terminato.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>L'inizio della documentazione "<b>{0}</b>" non viene trovato.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Il file task <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Il file task <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Il file sessione <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Il file sessione <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> non è un file.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5646"/> + <location filename="UI/UserInterface.py" line="5651"/> <source>Trying host {0}</source> <translation>Tento su host {0}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>The update to <b>{0}</b> of eric5 is available at <b>{1}</b>. Would you like to get it?</source> <translation>L'update alla versione <b>{0}</b> di eric5 è disponibile presso <b>{1}</b>. Vuoi prenderlo ?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>Eric5 is up to date</source> <translation>Eric5 è aggiornato</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>You are using the latest version of eric5</source> <translation>Stai usando l'ultima versione di eric5</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation><p>Errori SSL:</p><p>{0}</p><p>Vuoi ignorare questi errori ?</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>eric5 has not been configured yet. The configuration dialog will be started.</source> <translation>eric5 non è ancora stato configurato. Il dialogo di configurazione verrà avviato.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>Cooperation</source> <translation>Cooperazione</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>&Cooperation</source> <translation>&Cooperazione</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1587"/> + <location filename="UI/UserInterface.py" line="1592"/> <source>Toggle the Cooperation window</source> <translation>Abilita/Disabilita la finestra di cooperazione</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1589"/> + <location filename="UI/UserInterface.py" line="1594"/> <source><b>Toggle the Cooperation window</b><p>If the Cooperation window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra di cooperazione</b><p>Se la finestra di cooperazione è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Activate Cooperation-Viewer</source> <translation>Attiva viewer di cooperazione</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>Symbols</source> <translation>Simboli</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>&Symbols</source> <translation>&Simboli</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1609"/> + <location filename="UI/UserInterface.py" line="1614"/> <source>Toggle the Symbols window</source> <translation>Abilita/Disabilita una finestra dei simboli</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1611"/> + <location filename="UI/UserInterface.py" line="1616"/> <source><b>Toggle the Symbols window</b><p>If the Symbols window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra dei Simboli</b><p>Se la finestra dei Simboli è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Activate Symbols-Viewer</source> <translation>Attiva il Symbols-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>Numbers</source> <translation>Numeri</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>&Numbers</source> <translation>&Numeri</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1631"/> + <location filename="UI/UserInterface.py" line="1636"/> <source>Toggle the Numbers window</source> <translation>Abilita/Disabilita una finestra dei Numeri</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1633"/> + <location filename="UI/UserInterface.py" line="1638"/> <source><b>Toggle the Numbers window</b><p>If the Numbers window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Abilita/Disabilita la finestra dei Numeri</b><p>Se la finestra dei Numeri è nascosta verrà mostrata. Se è mostrata verrà chiusa.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Activate Numbers-Viewer</source> <translation>Attiva Numbers-Viewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>File scorciatoi tastiera (*.e4k)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python 3 Documentation</source> <translation>Documentazione Python 3</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python &3 Documentation</source> <translation>Documentazione Python &3</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2205"/> + <location filename="UI/UserInterface.py" line="2210"/> <source>Open Python 3 Documentation</source> <translation>Apri documentazione Python 3</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2206"/> + <location filename="UI/UserInterface.py" line="2211"/> <source><b>Python 3 Documentation</b><p>Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and <i>/usr/share/doc/packages/python/html</i> on Unix. Set PYTHON3DOCDIR in your environment to override this. </p></source> <translation><b>Documentazione Python 3</b><p>Mostra la documentazione Python 3. Se non è configurata una directory per la documentazione, viene assunto che la posizione della documentazione sia nella directory doc nella locazione dell'eseguibile Python 3 su Windows e <i>/usr/share/doc/packages/python/html</i> su Unix. Imposta PYTHONDOCDIR3 nel tuo ambiente per sovrascrivere questi valori.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python 2 Documentation</source> <translation>Documentazione Python 2</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python &2 Documentation</source> <translation>Documentazione Python &2</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2220"/> + <location filename="UI/UserInterface.py" line="2225"/> <source>Open Python 2 Documentation</source> <translation>Apri documentazione Python 2</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2221"/> + <location filename="UI/UserInterface.py" line="2226"/> <source><b>Python 2 Documentation</b><p>Display the Python 2 documentation. If no documentation directory is configured, the location of the Python 2 documentation is assumed to be the doc directory underneath the location of the configured Python 2 executable on Windows and <i>/usr/share/doc/packages/python/html/python-docs-html</i> on Unix. Set PYTHON2DOCDIR in your environment to override this. </p></source> <translation><b>Documentazione Python 2</b><p>Mostra la documentazione Python 2. Se non è configurata una directory per la documentazione, viene assunto che la posizione della documentazione sia nella directory doc nella locazione dell'eseguibile Python 2 su Windows e <i>/usr/share/doc/packages/python/html</i> su Unix. Imposta PYTHONDOCDIR2 nel tuo ambiente per sovrascrivere questi valori.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5690"/> + <location filename="UI/UserInterface.py" line="5695"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 Web Browser</source> - <translation type="unfinished">Web Browser di eric5</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 &Web Browser...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 Web Browser</source> + <translation type="unfinished">Web Browser di eric5</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 &Web Browser...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1933"/> <source><b>eric5 Web Browser</b><p>Browse the Internet with the eric5 Web Browser.</p></source> <translation type="unfinished"></translation> </message> @@ -49604,78 +49609,78 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New Window</source> <translation type="unfinished">Nuova finestra</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New &Window</source> <translation type="unfinished">Nuova &Finestra</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> - <source>Ctrl+Shift+N</source> - <comment>File|New Window</comment> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1313"/> + <source>Ctrl+Shift+N</source> + <comment>File|New Window</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1318"/> <source>Open a new eric5 instance</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1314"/> + <location filename="UI/UserInterface.py" line="1319"/> <source><b>New Window</b><p>This opens a new instance of the eric5 IDE.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1776"/> + <location filename="UI/UserInterface.py" line="1781"/> <source>Rerun failed tests of the last run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1778"/> + <location filename="UI/UserInterface.py" line="1783"/> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare &Files side by side...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>Snapshot</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>&Snapshot...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1951"/> - <source>Take snapshots of a screen region</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1952"/> + <source>Snapshot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1952"/> + <source>&Snapshot...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1956"/> + <source>Take snapshots of a screen region</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1957"/> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4457"/> + <location filename="UI/UserInterface.py" line="4462"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric5_ru.ts Wed May 02 19:10:17 2012 +0200 +++ b/i18n/eric5_ru.ts Fri May 04 20:06:17 2012 +0200 @@ -4888,52 +4888,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="Debugger/DebugViewer.py" line="163"/> + <location filename="Debugger/DebugViewer.py" line="164"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation>Задайте регулярные выражения, разделённые ';', для фильтров переменных.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="166"/> + <location filename="Debugger/DebugViewer.py" line="167"/> <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source> <translation>Задайте регулярные выражения, разделённые ';', для фильтров переменных. Все переменные и атрибуты классов, совпавшие с одним из этих выражений, не показываются в списке выше.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="171"/> + <location filename="Debugger/DebugViewer.py" line="172"/> <source>Set</source> <translation>Установить</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="149"/> + <location filename="Debugger/DebugViewer.py" line="150"/> <source>Source</source> <translation>Исходный текст</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="214"/> + <location filename="Debugger/DebugViewer.py" line="215"/> <source>Threads:</source> <translation>Потоки:</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>ID</source> <translation></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>Name</source> <translation>Имя</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>State</source> <translation>Состояние</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="413"/> + <location filename="Debugger/DebugViewer.py" line="414"/> <source>waiting at breakpoint</source> <translation>В точке останова</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="415"/> + <location filename="Debugger/DebugViewer.py" line="416"/> <source>running</source> <translation>Выполяется</translation> </message> @@ -36403,7 +36403,7 @@ <translation>Подсвечивать всё</translation> </message> <message> - <location filename="UI/SearchWidget.py" line="160"/> + <location filename="UI/SearchWidget.py" line="163"/> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' не найдено.</translation> </message> @@ -36469,72 +36469,72 @@ <context> <name>Shell</name> <message> - <location filename="QScintilla/Shell.py" line="56"/> + <location filename="QScintilla/Shell.py" line="112"/> <source>Shell - Passive</source> <translation>Пассивная оболочка</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="58"/> + <location filename="QScintilla/Shell.py" line="114"/> <source>Shell</source> <translation>Оболочка</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="127"/> + <location filename="QScintilla/Shell.py" line="183"/> <source>Passive >>> </source> <translation>Пассивная >>></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="159"/> + <location filename="QScintilla/Shell.py" line="215"/> <source>Copy</source> <translation>Копировать</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="160"/> + <location filename="QScintilla/Shell.py" line="216"/> <source>Paste</source> <translation>Вставить</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="163"/> + <location filename="QScintilla/Shell.py" line="221"/> <source>Clear</source> <translation>Очистить</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="164"/> + <location filename="QScintilla/Shell.py" line="222"/> <source>Reset</source> <translation>Перезапустить</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="165"/> + <location filename="QScintilla/Shell.py" line="223"/> <source>Reset and Clear</source> <translation>Переинициализировать и очистить</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="551"/> + <location filename="QScintilla/Shell.py" line="609"/> <source>No.</source> <translation>Нет.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <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="142"/> + <location filename="QScintilla/Shell.py" line="198"/> <source>Start</source> <translation>Начало</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="553"/> + <location filename="QScintilla/Shell.py" line="611"/> <source>{0} on {1}, {2}</source> <translation>{0} в {1}, {2}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="60"/> + <location filename="QScintilla/Shell.py" line="116"/> <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. Pressing the up or down key after some text has been entered will start an incremental search.</p><p>The shell has some special commands. 'reset' kills the shell and starts a new one. 'clear' clears the display of the shell window. 'start' is used to switch the shell language and must be followed by a supported language. Supported languages are listed by the 'languages' command. These commands (except 'languages') 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 commandline completions. The relevant entry may be selected from this list. If only one entry is available, this will 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>Вы можете использовать курсорные клавиши во время ввода команд. Также есть история, которая может прокручиваться с помощью курсора "вверх" и "вниз". Нажатие "вверх" или "вниз" после того, как набрана часть слова, начнёт инкрементальный поиск.</p> @@ -36543,68 +36543,73 @@ <p>В режиме пассивной отладки оболочка доступна только после того, как отлаживаемая программа подключится к IDE и до её завершения. Это отображается иным приглашением и другим заголовком окна.</p></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1165"/> + <location filename="QScintilla/Shell.py" line="1223"/> <source>Shell language "{0}" not supported. </source> <translation>Язык оболочки "{0}" не поддерживается. </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="548"/> + <location filename="QScintilla/Shell.py" line="606"/> <source>Passive Debug Mode</source> <translation>Режим пассивной отладки</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="614"/> + <location filename="QScintilla/Shell.py" line="672"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="622"/> + <location filename="QScintilla/Shell.py" line="680"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="151"/> + <location filename="QScintilla/Shell.py" line="207"/> <source>History</source> <translation>История</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="152"/> + <location filename="QScintilla/Shell.py" line="208"/> <source>Select entry</source> <translation>Выбрать</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="153"/> + <location filename="QScintilla/Shell.py" line="209"/> <source>Show</source> <translation>Показать</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <source>Select History</source> <translation>Выберите историю</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Выберите одну из предыдущих команд для выполнения.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="549"/> + <location filename="QScintilla/Shell.py" line="607"/> <source> Not connected</source> <translation>Нет соединения</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="170"/> + <location filename="QScintilla/Shell.py" line="228"/> <source>Configure...</source> <translation>Настроить...</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="158"/> + <location filename="QScintilla/Shell.py" line="214"/> <source>Cut</source> <translation>Вырезать</translation> </message> + <message> + <location filename="QScintilla/Shell.py" line="219"/> + <source>Find</source> + <translation type="unfinished">Найти</translation> + </message> </context> <context> <name>ShellHistoryDialog</name> @@ -47764,282 +47769,282 @@ <context> <name>UserInterface</name> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>Log-Viewer</source> <translation>Просмотрщик журнала</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1264"/> - <source>{0} - Passive Mode</source> - <translation>{0} - пассивный режим</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1269"/> + <source>{0} - Passive Mode</source> + <translation>{0} - пассивный режим</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1274"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - пассивный режим</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> - <source>Quit</source> - <translation>Выход</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1292"/> - <source>&Quit</source> - <translation>&Выход</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1297"/> + <source>Quit</source> + <translation>Выход</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1297"/> + <source>&Quit</source> + <translation>&Выход</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1302"/> <source>Quit the IDE</source> <translation>Выход из IDE</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1298"/> + <location filename="UI/UserInterface.py" line="1303"/> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Выход из IDE</b> <p>Перед выходом все изменения могут быть сохранены. Отлаживаемая программа (если есть) будет остановлена, и настройки будут сохранены на диск.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>&Log-Viewer</source> <translation>&Журнал</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1480"/> + <location filename="UI/UserInterface.py" line="1485"/> <source>Toggle the Log-Viewer window</source> <translation>Показать/скрыть окно Просмотрщика журнала</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1481"/> + <location filename="UI/UserInterface.py" line="1486"/> <source><b>Toggle the Log-Viewer window</b><p>If the Log-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть Журнал</b> <p>Если окно Журнала скрыто, показать его. Иначе - закрыть.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> + <location filename="UI/UserInterface.py" line="1656"/> <source>What's This?</source> <translation>Что это?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>&What's This?</source> - <translation>&Что это?</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1656"/> + <source>&What's This?</source> + <translation>&Что это?</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1661"/> <source>Context sensitive help</source> <translation>Контекстная помощь</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1657"/> + <location filename="UI/UserInterface.py" line="1662"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Показать контекстную помощь</b> <p>В режиме контекстной помощи курсор мыши выглядит как стрелка со знаком вопроса, и, щёлкнув по элементу интерфейса, Вы можете просмотреть краткую помощь о его роли и его использовании. В диалогах можно воспользоваться кнопкой контекстной помощи в заголовке окна.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> + <location filename="UI/UserInterface.py" line="1673"/> <source>Helpviewer</source> <translation>Просмотрщик помощи</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> - <source>&Helpviewer...</source> - <translation>Просмотрщик помо&щи...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1673"/> + <source>&Helpviewer...</source> + <translation>Просмотрщик помо&щи...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1678"/> <source>Open the helpviewer window</source> <translation>Открыть просмотрщик помощи</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show Versions</source> <translation>Показать версию</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show &Versions</source> <translation>Показать &версию</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1693"/> + <location filename="UI/UserInterface.py" line="1698"/> <source>Display version information</source> <translation>Информация о версии</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1694"/> + <location filename="UI/UserInterface.py" line="1699"/> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Показать версию</b><p>Информация о версии.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2450"/> + <location filename="UI/UserInterface.py" line="2455"/> <source>Unittest</source> <translation>Unittest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1746"/> + <location filename="UI/UserInterface.py" line="1751"/> <source>&Unittest...</source> <translation>&Unittest...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1750"/> + <location filename="UI/UserInterface.py" line="1755"/> <source>Start unittest dialog</source> <translation>Запустить unittest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>Preferences</source> <translation>Предпочтения</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>&Preferences...</source> <translation>&Предпочтения...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1962"/> + <location filename="UI/UserInterface.py" line="1967"/> <source>Set the prefered configuration</source> <translation>Установите предпочтительную конфигурацию</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1963"/> + <location filename="UI/UserInterface.py" line="1968"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Предпочтения</b> <p>Настройте Eric по своему вкусу.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2352"/> + <location filename="UI/UserInterface.py" line="2357"/> <source>&Window</source> <translation>&Окно</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2325"/> + <location filename="UI/UserInterface.py" line="2330"/> <source>&Tools</source> <translation>&Сервис</translation> </message> <message> + <location filename="UI/UserInterface.py" line="2323"/> + <source>Wi&zards</source> + <translation>&Мастера</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2388"/> + <source>&Help</source> + <translation>&Помощь</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2454"/> + <source>Tools</source> + <translation>Сервис</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4280"/> + <source>Help</source> + <translation>Помощь</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2456"/> + <source>Settings</source> + <translation>Настройка</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2363"/> + <source>&Toolbars</source> + <translation>&Панели инструментов</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4388"/> + <source>Problem</source> + <translation>Проблема</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4540"/> + <source>Process Generation Error</source> + <translation>Ошибка процесса генерации</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2048"/> + <source>Keyboard Shortcuts</source> + <translation>Горячие клавиши</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2048"/> + <source>Keyboard &Shortcuts...</source> + <translation>Горячие &клавиши...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2051"/> + <source>Set the keyboard shortcuts</source> + <translation>Задать горячие клавиши</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2052"/> + <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> + <translation><b>Горячие клавиши</b><p>Задайте горячие клавиши на свой вкус.</p></translation> + </message> + <message> <location filename="UI/UserInterface.py" line="2318"/> - <source>Wi&zards</source> - <translation>&Мастера</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2383"/> - <source>&Help</source> - <translation>&Помощь</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2449"/> - <source>Tools</source> - <translation>Сервис</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="4275"/> - <source>Help</source> - <translation>Помощь</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2451"/> - <source>Settings</source> - <translation>Настройка</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2358"/> - <source>&Toolbars</source> - <translation>&Панели инструментов</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="4383"/> - <source>Problem</source> - <translation>Проблема</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="4535"/> - <source>Process Generation Error</source> - <translation>Ошибка процесса генерации</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2043"/> - <source>Keyboard Shortcuts</source> - <translation>Горячие клавиши</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2043"/> - <source>Keyboard &Shortcuts...</source> - <translation>Горячие &клавиши...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2046"/> - <source>Set the keyboard shortcuts</source> - <translation>Задать горячие клавиши</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2047"/> - <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> - <translation><b>Горячие клавиши</b><p>Задайте горячие клавиши на свой вкус.</p></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2313"/> <source>E&xtras</source> <translation>До&полнительно</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Report Bug</source> <translation>Сообщение об ошибке</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1724"/> + <location filename="UI/UserInterface.py" line="1729"/> <source>Report &Bug...</source> <translation>Сообщить об &ошибке...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1726"/> + <location filename="UI/UserInterface.py" line="1731"/> <source>Report a bug</source> <translation>Сообщить об ошибке</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1727"/> + <location filename="UI/UserInterface.py" line="1732"/> <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> <translation><b>Сообщить об ошибке...</b><p>Открывает диалог для сообщения об ошибке.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5127"/> + <location filename="UI/UserInterface.py" line="5132"/> <source>Export Keyboard Shortcuts</source> <translation>Экспортировать горячие клавиши</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2055"/> - <source>&Export Keyboard Shortcuts...</source> - <translation>&Экспортировать горячие клавиши...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2059"/> - <source>Export the keyboard shortcuts</source> - <translation>Экспортировать горячие клавиши</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2060"/> + <source>&Export Keyboard Shortcuts...</source> + <translation>&Экспортировать горячие клавиши...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2064"/> + <source>Export the keyboard shortcuts</source> + <translation>Экспортировать горячие клавиши</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2065"/> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>Экспортировать горячие клавиши</b> <p>Экспортировать горячие клавиши приложения.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Import Keyboard Shortcuts</source> <translation>Импортировать горячие клавиши</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2067"/> - <source>&Import Keyboard Shortcuts...</source> - <translation>&Импортировать горячие клавиши...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2071"/> - <source>Import the keyboard shortcuts</source> - <translation>Импортировать горячие клавиши</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2072"/> + <source>&Import Keyboard Shortcuts...</source> + <translation>&Импортировать горячие клавиши...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2076"/> + <source>Import the keyboard shortcuts</source> + <translation>Импортировать горячие клавиши</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2077"/> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>Импортировать горячие клавиши</b> <p>Импортировать горячие клавиши приложения.</p></translation> @@ -48080,105 +48085,105 @@ <translation>Инициализация инструментов...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1751"/> + <location filename="UI/UserInterface.py" line="1756"/> <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> <translation><b>Unittest</b> <p>Провести тесты. Диалог даёт возможность выбрать и провести набор тестов с помощью Unittest.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> + <location filename="UI/UserInterface.py" line="1764"/> <source>Unittest Restart</source> <translation>Перезапустить Uniitest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1763"/> + <location filename="UI/UserInterface.py" line="1768"/> <source>Restart last unittest</source> <translation>Перезапустить последний Uniitest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1764"/> + <location filename="UI/UserInterface.py" line="1769"/> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation><b>Перезапустить Uniitest</b> <p>Перезапустить последний проведённый тест.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1786"/> + <location filename="UI/UserInterface.py" line="1791"/> <source>Unittest Script</source> <translation>Unittest на сценарии</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1790"/> + <location filename="UI/UserInterface.py" line="1795"/> <source>Run unittest with current script</source> <translation>Выполнить Uniitest с текущим сценарием</translation> </message> <message> + <location filename="UI/UserInterface.py" line="1796"/> + <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> + <translation><b>Сценарий Unittest</b><p>Выполнить Uniitest с текущим сценарием.</p></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4057"/> + <source>Unittest Project</source> + <translation>Uniitest на проекте</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1808"/> + <source>Run unittest with current project</source> + <translation>Выполнить Uniitest с текущим проектом</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1809"/> + <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> + <translation><b>Сценарий Unittest</b><p>Выполнить Uniitest с текущим проектом.</p></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2301"/> + <source>&Unittest</source> + <translation>&Unittest</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4057"/> + <source>There is no main script defined for the current project. Aborting</source> + <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1764"/> + <source>&Restart Unittest...</source> + <translation>&Перезапустить Uniitest...</translation> + </message> + <message> <location filename="UI/UserInterface.py" line="1791"/> - <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> - <translation><b>Сценарий Unittest</b><p>Выполнить Uniitest с текущим сценарием.</p></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="4052"/> - <source>Unittest Project</source> - <translation>Uniitest на проекте</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1803"/> - <source>Run unittest with current project</source> - <translation>Выполнить Uniitest с текущим проектом</translation> + <source>Unittest &Script...</source> + <translation>Unittest на &сценарии...</translation> </message> <message> <location filename="UI/UserInterface.py" line="1804"/> - <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> - <translation><b>Сценарий Unittest</b><p>Выполнить Uniitest с текущим проектом.</p></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2296"/> - <source>&Unittest</source> - <translation>&Unittest</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="4052"/> - <source>There is no main script defined for the current project. Aborting</source> - <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1759"/> - <source>&Restart Unittest...</source> - <translation>&Перезапустить Uniitest...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1786"/> - <source>Unittest &Script...</source> - <translation>Unittest на &сценарии...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1799"/> <source>Unittest &Project...</source> <translation>Uniitest на &проекте...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>Compare Files</source> <translation>Сравнить файлы</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>&Compare Files...</source> <translation>&Сравнить файлы...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1890"/> + <location filename="UI/UserInterface.py" line="1895"/> <source>Compare two files</source> <translation>Сравнить два файла</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1879"/> + <location filename="UI/UserInterface.py" line="1884"/> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Сравнение файлов</b> <p>Открыть диалог для сравнения двух файлов.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare Files side by side</source> <translation>Сравнить файлы с параллальным отображением (side by side)</translation> </message> @@ -48188,13 +48193,13 @@ <translation type="obsolete">Сравнить файлы с &параллальным отображением (side by side)...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1891"/> + <location filename="UI/UserInterface.py" line="1896"/> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Сравнить файлы с параллальным отображением (side by side)</b> <p>Открыть диалог, в котором показаны различия между файлами в две колонки.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> @@ -48204,427 +48209,427 @@ <translation>Инициализируется сервер уникального приложения...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1272"/> + <location filename="UI/UserInterface.py" line="1277"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - пассивный режим</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-Browser</source> <translation>Просмотрщик файлов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1324"/> - <source>Edit Profile</source> - <translation>Профиль редактирования</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1329"/> + <source>Edit Profile</source> + <translation>Профиль редактирования</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1334"/> <source>Activate the edit view profile</source> <translation>Активизировать профиль редактирования</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1330"/> + <location filename="UI/UserInterface.py" line="1335"/> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Профиль редактирования</b><p>Активизировать "профиль редактирования". Окна, отображаемые в этом профиле, можно настроить в диалоге "Конфигурация профилей".</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1339"/> - <source>Debug Profile</source> - <translation>Профиль отладки</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1344"/> + <source>Debug Profile</source> + <translation>Профиль отладки</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1349"/> <source>Activate the debug view profile</source> <translation>Активизировать профиль отладки</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1346"/> + <location filename="UI/UserInterface.py" line="1351"/> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Профиль отладки</b><p>Активизировать "профиль отладки". Окна, отображаемые в этом профиле, можно настроить в диалоге "Конфигурация профилей".</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-&Browser</source> <translation>Просмотрщик &файлов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1459"/> + <location filename="UI/UserInterface.py" line="1464"/> <source>Toggle the File-Browser window</source> <translation>Показать/скрыть окно Просмотрщика файлов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1460"/> + <location filename="UI/UserInterface.py" line="1465"/> <source><b>Toggle the File-Browser window</b><p>If the File-Browser window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть окно просмотра файлов</b> <p>Если окно просмотрщика скрыто, показать его. Иначе - закрыть.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>View Profiles</source> <translation>Профили</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>&View Profiles...</source> <translation>&Профили...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2020"/> + <location filename="UI/UserInterface.py" line="2025"/> <source>Configure view profiles</source> <translation>Конфигурация профилей</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2021"/> + <location filename="UI/UserInterface.py" line="2026"/> <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> <translation><b>Профили</b><p>Конфигурация профилей. С помощью этого диалога вы можете устанавливать видимость разных окон для заданных профилей.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Файл <b>{0}</b> либо не существует, либо нулевой длины.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4147"/> + <location filename="UI/UserInterface.py" line="4152"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Qt-Designer.<br>Убедитесь, что он доступен в <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4204"/> + <location filename="UI/UserInterface.py" line="4209"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Qt-Linguist.<br>Убедитесь, что он доступен в <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4248"/> + <location filename="UI/UserInterface.py" line="4253"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Qt-Assistant.<br>Убедитесь, что он доступен в <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Невозможно запустить инструмент <b>{0}</b>.<br>Убедитесь, что он доступен в <b>{1}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> не является файлом</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>UI Previewer</source> <translation>Педпросмотр UI</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>&UI Previewer...</source> <translation>Педпросмотр &UI...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1856"/> + <location filename="UI/UserInterface.py" line="1861"/> <source>Start the UI Previewer</source> <translation>Запустить UI Previewer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1857"/> + <location filename="UI/UserInterface.py" line="1862"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation><b>UI Previewer</b><p>Запустить the UI Previewer.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4346"/> + <location filename="UI/UserInterface.py" line="4351"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить UI Previewer.<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>Translations Previewer</source> <translation>Предпросмотр переводов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>&Translations Previewer...</source> <translation>&Предпросмотр переводов...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1867"/> + <location filename="UI/UserInterface.py" line="1872"/> <source>Start the Translations Previewer</source> <translation>Запустить предпросмотр переводов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1868"/> + <location filename="UI/UserInterface.py" line="1873"/> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Предпросмотр переводов</b><p>Запустить предпросмотр переводов.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4391"/> + <location filename="UI/UserInterface.py" line="4396"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить предпросмотр переводов.<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>Shell</source> <translation>Оболочка</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>&Shell</source> <translation>&Оболочка</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1418"/> + <location filename="UI/UserInterface.py" line="1423"/> <source>Toggle the Shell window</source> <translation>Показать/скрыть окно Оболочки</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1419"/> + <location filename="UI/UserInterface.py" line="1424"/> <source><b>Toggle the Shell window</b><p>If the Shell window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть Оболочку</b> <p>Если окно Оболочки скрыто, показать его. Иначе - закрыть.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload APIs</source> <translation>Перезагрузить API</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload &APIs</source> <translation>Перезагрузить &API</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1997"/> + <location filename="UI/UserInterface.py" line="2002"/> <source>Reload the API information</source> <translation>Перезагрузить информацию об API</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1998"/> + <location filename="UI/UserInterface.py" line="2003"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation><b>Перезагрузить API</b><p>Перезагрузить информацию об API.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>Task-Viewer</source> <translation>Просмотрщик задач</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>T&ask-Viewer</source> <translation>Просмотрщик з&адач</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1500"/> + <location filename="UI/UserInterface.py" line="1505"/> <source>Toggle the Task-Viewer window</source> <translation>Показать/скрыть окно Просмотрщика задач</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1501"/> + <location filename="UI/UserInterface.py" line="1506"/> <source><b>Toggle the Task-Viewer window</b><p>If the Task-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть Задачи</b> <p>Если окно Задач скрыто, показать его. Иначе - закрыть.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source>Save tasks</source> <translation>Сохранить задачи</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл с задачами: <b>{0}</b></p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source>Read tasks</source> <translation>Прочитать задачи</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл с задачами: <b>{0}</b></p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4275"/> + <location filename="UI/UserInterface.py" line="4280"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Специальный просмотрщик не выбран. Используйте диалог с настройками для его выбора.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4287"/> + <location filename="UI/UserInterface.py" line="4292"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить специальный просмотрщик.<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source>Documentation Missing</source> <translation>Документация отсутствует</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Корень документации "<b>{0}</b>" не найден.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>Почтовый адрес или адрес почтового сервера пуст. Настройте электронную почту в диалоге конфигурации.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Template-Viewer</source> <translation>Просмотрщик шаблонов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1520"/> + <location filename="UI/UserInterface.py" line="1525"/> <source>Toggle the Template-Viewer window</source> <translation>Показать/скрыть окно Просмотрщика шаблонов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1522"/> + <location filename="UI/UserInterface.py" line="1527"/> <source><b>Toggle the Template-Viewer window</b><p>If the Template-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть окно просмотра шаблонов</b> <p>Если окно просмотрщика скрыто, показать его. Иначе - закрыть.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Activate Shell</source> <translation>Активизировать Оболочку</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Activate File-Browser</source> <translation>Активизировать Просмотрщик файлов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Activate Log-Viewer</source> <translation>Активизировать Просмотрщик журнала</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Activate Task-Viewer</source> <translation>Активизировать Просмотрщик задач</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Activate Template-Viewer</source> <translation>Активизировать Просмотрщик шаблонов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Activate current editor</source> <translation>Активизировать текущий редактор</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>Qt-Designer 4</source> <translation>Qt-Дизайнер 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1823"/> + <location filename="UI/UserInterface.py" line="1828"/> <source>Start Qt-Designer 4</source> <translation>Запустить Qt-Дизайнер 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1824"/> + <location filename="UI/UserInterface.py" line="1829"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> <translation><b>Qt-Дизайнер 4</b><p>Запустить Qt-Дизайнер 4.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>Qt-Linguist 4</source> <translation>Qt-Лингвист 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1843"/> + <location filename="UI/UserInterface.py" line="1848"/> <source>Start Qt-Linguist 4</source> <translation>Запустить Qt-Лингвист 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1844"/> + <location filename="UI/UserInterface.py" line="1849"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> <translation><b>Qt-Лингвист 4</b><p>Запустить Qt-Лингвист 4.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt4 Documentation</source> <translation>Документация Qt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt&4 Documentation</source> <translation>Документация Qt&4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2177"/> + <location filename="UI/UserInterface.py" line="2182"/> <source>Open Qt4 Documentation</source> <translation>Открыть документацию Qt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>Eric API Documentation</source> <translation>Документация API Eric</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>&Eric API Documentation</source> <translation>Документация API &Eric</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2241"/> + <location filename="UI/UserInterface.py" line="2246"/> <source>Open Eric API Documentation</source> <translation>Открыть документацию API Eric</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4306"/> + <location filename="UI/UserInterface.py" line="4311"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Невозможно запустить просмотрщик помощи.<br>Убедитесь, что он доступен под именем <b>hh</b>.</p></translation> </message> @@ -48634,149 +48639,149 @@ <translation>Регистрация объектов...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>Project-Viewer</source> <translation>Просмотрщик проекта</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>Debug-Viewer</source> <translation>Просмотрщик отладки</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> + <location filename="UI/UserInterface.py" line="1297"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>&Project-Viewer</source> <translation>&Просмотрщик проекта</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1357"/> + <location filename="UI/UserInterface.py" line="1362"/> <source>Toggle the Project-Viewer window</source> <translation>Показать/скрыть окно Просмотрщика проекта</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1358"/> + <location filename="UI/UserInterface.py" line="1363"/> <source><b>Toggle the Project-Viewer window</b><p>If the Project-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть окно просмотра проекта</b> <p>Если окно просмотрщика скрыто, показать его. Иначе - закрыть.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Activate Project-Viewer</source> <translation>Активизировать Просмотрщик проекта</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> + <location filename="UI/UserInterface.py" line="1656"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> + <location filename="UI/UserInterface.py" line="1673"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1703"/> + <location filename="UI/UserInterface.py" line="1708"/> <source>Check for Updates</source> <translation>Проверить наличие обновлений</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1701"/> + <location filename="UI/UserInterface.py" line="1706"/> <source>Check for &Updates...</source> <translation>Проверить наличие &обновлений...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2178"/> + <location filename="UI/UserInterface.py" line="2183"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация Qt4</b> <p>Отобразить документацию Qt4. В зависимости от настроек, она отобразится либо во встроенном просмотрщике помощи Eric, либо вызовет интернет-браузер, либо Qt Assistant.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>PyQt4 Documentation</source> <translation>Документация PyQt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>P&yQt4 Documentation</source> <translation>Документация P&yQt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2189"/> + <location filename="UI/UserInterface.py" line="2194"/> <source>Open PyQt4 Documentation</source> <translation>Открыть документацию Qt4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2190"/> + <location filename="UI/UserInterface.py" line="2195"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация PyQt4</b> <p>Отобразить документацию PyQt4. В зависимости от настроек, она отобразится либо во встроенном просмотрщике помощи Eric, либо вызовет интернет-браузер, либо Qt Assistant.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2328"/> + <location filename="UI/UserInterface.py" line="2333"/> <source>Select Tool Group</source> <translation>Выберите группу инструментов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2334"/> + <location filename="UI/UserInterface.py" line="2339"/> <source>Se&ttings</source> <translation>&Настройка</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2453"/> + <location filename="UI/UserInterface.py" line="2458"/> <source>Profiles</source> <translation>Профили</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3160"/> + <location filename="UI/UserInterface.py" line="3165"/> <source>&Builtin Tools</source> <translation>&Встроенные инструменты</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4519"/> + <location filename="UI/UserInterface.py" line="4524"/> <source>Starting process '{0} {1}'. </source> <translation>Запускается процесс '{0} {1}'. </translation> </message> <message> - <location filename="UI/UserInterface.py" line="4612"/> + <location filename="UI/UserInterface.py" line="4617"/> <source>Process '{0}' has exited. </source> <translation>Процесс '{0}' завершился.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source>Documentation</source> <translation>Документация</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4781"/> + <location filename="UI/UserInterface.py" line="4786"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>Корень документации PyQt4 не найден.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Error during updates check</source> <translation>Ошибка при проверке обновлений</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>Update available</source> <translation>Обновления доступны</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2783"/> + <location filename="UI/UserInterface.py" line="2788"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Номера версий</h3><table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5816"/> + <location filename="UI/UserInterface.py" line="5821"/> <source></table></source> <translation></table></translation> </message> @@ -48791,42 +48796,42 @@ <translation><p>Невозможно прочитать файл таблиц стилей Qt <b>{0}</b>.<br>{1}</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3108"/> + <location filename="UI/UserInterface.py" line="3113"/> <source>Configure Tool Groups ...</source> <translation>Настроить группы Инструментов...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3111"/> + <location filename="UI/UserInterface.py" line="3116"/> <source>Configure current Tool Group ...</source> <translation>Настроить текущую группу Инструментов...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2008"/> + <location filename="UI/UserInterface.py" line="2013"/> <source>Show external tools</source> <translation>Показать внешние инструменты</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2005"/> + <location filename="UI/UserInterface.py" line="2010"/> <source>Show external &tools</source> <translation>Показать &внешние инструменты</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Could not perform updates check.</source> <translation>Невозможно запустить проверку обновлений.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5641"/> - <source>&Cancel</source> - <translation>От&мена</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="5646"/> + <source>&Cancel</source> + <translation>От&мена</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="5651"/> <source>Trying host {0}</source> <translation>Пробую узел {0}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>First time usage</source> <translation>Первое использование</translation> </message> @@ -48836,63 +48841,63 @@ <translation>Инициализируется менеджер расширений...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2369"/> + <location filename="UI/UserInterface.py" line="2374"/> <source>P&lugins</source> <translation>&Расширения</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2454"/> + <location filename="UI/UserInterface.py" line="2459"/> <source>Plugins</source> <translation>Расширения</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>Plugin Infos</source> <translation>Информация о расширениях</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2115"/> + <location filename="UI/UserInterface.py" line="2120"/> <source>Show Plugin Infos</source> <translation>Показать информацию о расширениях</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2116"/> + <location filename="UI/UserInterface.py" line="2121"/> <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> <translation><b>Информация о расширениях...</b> <p>Открывает диалог, отображающий информацию о загруженных расширениях.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>&Plugin Infos...</source> <translation>Ин&формация о подключаемых модулях...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2138"/> + <location filename="UI/UserInterface.py" line="2143"/> <source>Uninstall Plugin</source> <translation>Убрать подключаемый модуль</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2135"/> + <location filename="UI/UserInterface.py" line="2140"/> <source>&Uninstall Plugin...</source> <translation>У&брать подключаемый модуль...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2139"/> + <location filename="UI/UserInterface.py" line="2144"/> <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> <translation><b>Убрать подключаемый модуль...</b><p>Открывает диалог деинсталляции нового подключаемого модуля.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3168"/> + <location filename="UI/UserInterface.py" line="3173"/> <source>&Plugin Tools</source> <translation>Инструменты для &плагинов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3321"/> + <location filename="UI/UserInterface.py" line="3326"/> <source>&Show all</source> <translation>Показать &всё</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3323"/> + <location filename="UI/UserInterface.py" line="3328"/> <source>&Hide all</source> <translation>Ск&рыть всё</translation> </message> @@ -48902,17 +48907,17 @@ <translation>Активация подключаемых модулей...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show downloadable versions</source> <translation>Показать версии, доступные для загрузки</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show &downloadable versions...</source> <translation>Показать версии, доступные для &загрузки...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1714"/> + <location filename="UI/UserInterface.py" line="1719"/> <source>Show the versions available for download</source> <translation>Показать версии, доступные для загрузки</translation> </message> @@ -48927,87 +48932,87 @@ <translation type="obsolete">Невозможно скачать файл версий.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5803"/> + <location filename="UI/UserInterface.py" line="5808"/> <source><h3>Available versions</h3><table></source> <translation><h3>Доступные версии</h3><table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2146"/> + <location filename="UI/UserInterface.py" line="2151"/> <source>Plugin Repository</source> <translation>Репозиторий плагинов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2146"/> - <source>Plugin &Repository...</source> - <translation>&Репозиторий плагинов...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2149"/> - <source>Show Plugins available for download</source> - <translation>Показать плагины, доступные для загрузки</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2151"/> + <source>Plugin &Repository...</source> + <translation>&Репозиторий плагинов...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2154"/> + <source>Show Plugins available for download</source> + <translation>Показать плагины, доступные для загрузки</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2156"/> <source><b>Plugin Repository...</b><p>This opens a dialog, that shows a list of plugins available on the Internet.</p></source> <translation><b>Репозиторий плагинов...</b><p>Открывает диалог, который показывает список плагинов, доступных для скачивания с интернета.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2127"/> + <location filename="UI/UserInterface.py" line="2132"/> <source>Install Plugins</source> <translation>Установить плагины</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2124"/> + <location filename="UI/UserInterface.py" line="2129"/> <source>&Install Plugins...</source> <translation>&Установить плагины...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2128"/> + <location filename="UI/UserInterface.py" line="2133"/> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Установить плагины...</b><p>Открывает диалог для установки или обновления плагинов.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1915"/> + <location filename="UI/UserInterface.py" line="1920"/> <source>Mini Editor</source> <translation>Мини-редактор</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1911"/> - <source>Mini &Editor...</source> - <translation>Мини-&редактор...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1916"/> + <source>Mini &Editor...</source> + <translation>Мини-&редактор...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1921"/> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Мини-редактор</b><p>Открывает диалог с упрощённым редактором.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>&Designer 4...</source> <translation>&Дизайнер 4...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>&Linguist 4...</source> <translation>&Лингвист 4...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Toolbars</source> <translation>Панели инструментов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Tool&bars...</source> <translation>Панели &инструментов...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2033"/> + <location filename="UI/UserInterface.py" line="2038"/> <source>Configure toolbars</source> <translation>Настроить панели инструментов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2034"/> + <location filename="UI/UserInterface.py" line="2039"/> <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> <translation><b>Панели инструментов</b><p>Настроить панели инструментов. В этом диалоге Вы можете изменить имеющиеся панели инструментов, а так же создать новые.</p></translation> </message> @@ -49017,376 +49022,376 @@ <translation>Восстановление менеджера панелей инструментов...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2697"/> + <location filename="UI/UserInterface.py" line="2702"/> <source>External Tools/{0}</source> <translation>Внешние инструменты/{0}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>External Tools</source> <translation>Внешние инструменты</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4477"/> + <location filename="UI/UserInterface.py" line="4482"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>Запись для внешней программы '{0}' не найдена в группе '{1}'.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>No toolgroup entry '{0}' found.</source> <translation>Запись для группы '{0}' не найдена.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>Multiproject-Viewer</source> <translation>Просмотрщик мултипроекта</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>&Multiproject-Viewer</source> <translation>Просмотрщик &мултипроекта</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1378"/> + <location filename="UI/UserInterface.py" line="1383"/> <source>Toggle the Multiproject-Viewer window</source> <translation>Показать/скрыть окно просмотрщика мултипроектов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1379"/> + <location filename="UI/UserInterface.py" line="1384"/> <source><b>Toggle the Multiproject-Viewer window</b><p>If the Multiproject-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть окно просмотрщика мултипроектов</b><p>Если окно показано, то скрыть, если скрыто, то показать.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Activate Multiproject-Viewer</source> <translation>Активизировать просмотрщик мултипроектов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Temp&late-Viewer</source> <translation>Просмотрщик &шаблонов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source>Save session</source> <translation>Сохранить сессию</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Не могу записать файл сессии <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source>Read session</source> <translation>Загрузить сессию</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Не могу прочитать файл сессии <b>{0}</b>.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2603"/> + <location filename="UI/UserInterface.py" line="2608"/> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation><p>Эта часть строки статуса показывает текущую кодировку редактора.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2617"/> + <location filename="UI/UserInterface.py" line="2622"/> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>Эта часть строки статуса указывает на возможность записи открытого в редакторе файла.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source>SSL Errors</source> <translation>Ошибки SSL</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation><p>Ошибки SSL: </p><p>{0}</p><p>Игнорировать?</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request Feature</source> <translation>Послать запрос</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request &Feature...</source> <translation>Послать &запрос...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1736"/> + <location filename="UI/UserInterface.py" line="1741"/> <source>Send a feature request</source> <translation>Послать запрос</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1737"/> + <location filename="UI/UserInterface.py" line="1742"/> <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> <translation><b>Послать запрос...</b><p>Показать диалог создания запроса.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2596"/> + <location filename="UI/UserInterface.py" line="2601"/> <source><p>This part of the status bar displays the current editors language.</p></source> <translation><p>Эта часть строки статуса показывает язык текущего окна редактора.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2626"/> + <location filename="UI/UserInterface.py" line="2631"/> <source><p>This part of the status bar displays the name of the file of the current editor.</p></source> <translation><p>Эта часть строки статуса показывает имя файла открытого в текущем редакторе.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2633"/> + <location filename="UI/UserInterface.py" line="2638"/> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation><p>Эта часть строки статуса показывает номер текущей строки в редакторе.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2640"/> + <location filename="UI/UserInterface.py" line="2645"/> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>Эта часть строки статуса показывает текущую позицию курсора в редакторе.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>Vertical Toolbox</source> <translation>Вертикальная панель инструментов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>Horizontal Toolbox</source> <translation>Горизонтальная панель инструментов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>&Vertical Toolbox</source> <translation>&Вертикальная панель инструментов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1541"/> + <location filename="UI/UserInterface.py" line="1546"/> <source>Toggle the Vertical Toolbox window</source> <translation>Переключить вертикальную панель инструментов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1542"/> + <location filename="UI/UserInterface.py" line="1547"/> <source><b>Toggle the Vertical Toolbox window</b><p>If the Vertical Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Переключить вертикальную панель инструментов</b><p>Показать/скрыть вертикальную панель инструментов</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>&Horizontal Toolbox</source> <translation>&Горизонтальная панель инструментов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1553"/> + <location filename="UI/UserInterface.py" line="1558"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Переключить горизонтальную панель инструментов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1554"/> + <location filename="UI/UserInterface.py" line="1559"/> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Переключить горизонтальную панель инструментов</b><p>Показать/скрыть горизонтальную панель инструментов</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>Restart application</source> <translation>Перезапустить приложение</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>The application needs to be restarted. Do it now?</source> <translation>Необходимо перезапустить приложение. Сделать это сейчас?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Terminal</source> <translation>Терминал</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Te&rminal</source> <translation>Те&рминал</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1439"/> + <location filename="UI/UserInterface.py" line="1444"/> <source>Toggle the Terminal window</source> <translation>Показать/скрыть окно Оболочки</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1440"/> + <location filename="UI/UserInterface.py" line="1445"/> <source><b>Toggle the Terminal window</b><p>If the Terminal window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть Оболочку</b> <p>Если окно Оболочки скрыто, показать его. Иначе - закрыть.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Activate Terminal</source> <translation>Активизировать Оболочку</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Alt+Shift+R</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Alt+Shift+A</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2378"/> + <location filename="UI/UserInterface.py" line="2383"/> <source>Configure...</source> <translation>Настроить...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2610"/> + <location filename="UI/UserInterface.py" line="2615"/> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation><p>Эта часть строки статуса показывает режим конца строки в текущем редакторе.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Switch between tabs</source> <translation>Переключиться между закладками</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>Export Preferences</source> <translation>Экспорт предпочтений</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>E&xport Preferences...</source> <translation>&Экспорт предпочтений...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1975"/> + <location filename="UI/UserInterface.py" line="1980"/> <source>Export the current configuration</source> <translation>Экспорт текущих настроек</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1976"/> + <location filename="UI/UserInterface.py" line="1981"/> <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> <translation><b>Экспорт предпочтений</b><p>Экспорт текущих предпочтений в файл.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1983"/> + <location filename="UI/UserInterface.py" line="1988"/> <source>Import Preferences</source> <translation>Импорт предпочтений</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1983"/> - <source>I&mport Preferences...</source> - <translation>&Импорт предпочтений...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1986"/> - <source>Import a previously exported configuration</source> - <translation>Импорт сохранённых ранее настроек</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1988"/> + <source>I&mport Preferences...</source> + <translation>&Импорт предпочтений...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1991"/> + <source>Import a previously exported configuration</source> + <translation>Импорт сохранённых ранее настроек</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1993"/> <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> <translation><b>Импорт настроек</b><p>Импорт сохранённых ранее настроек.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Show next</source> <translation>Показать следующую закладку</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Show previous</source> <translation>Показать предыдущую закладку</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>Left Sidebar</source> <translation>Левая док-панель</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>&Left Sidebar</source> <translation>&Левая док-панель</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1564"/> + <location filename="UI/UserInterface.py" line="1569"/> <source>Toggle the left sidebar window</source> <translation>Показать/скрыть левую док-панель</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1565"/> + <location filename="UI/UserInterface.py" line="1570"/> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть левую док-панель</b> <p>Если левая док-панель скрыта, показать её. Иначе - закрыть.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>Bottom Sidebar</source> <translation>Нижняя док-панель</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>&Bottom Sidebar</source> <translation>&Нижняя док-панель</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1576"/> + <location filename="UI/UserInterface.py" line="1581"/> <source>Toggle the bottom sidebar window</source> <translation>Показать/скрыть нижнюю док-панель</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1577"/> + <location filename="UI/UserInterface.py" line="1582"/> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть нижнюю док-панель</b> <p>Если нижняя док-панель скрыта, показать её. Иначе - закрыть.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>&Debug-Viewer</source> <translation>&Просмотрщик отладки</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1398"/> + <location filename="UI/UserInterface.py" line="1403"/> <source>Toggle the Debug-Viewer window</source> <translation>Показать/скрыть окно Просмотрщика отладки</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1399"/> + <location filename="UI/UserInterface.py" line="1404"/> <source><b>Toggle the Debug-Viewer window</b><p>If the Debug-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть окно просмотра отладки</b> <p>Если окно просмотрщика скрыто, показать его. Иначе - закрыть.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Activate Debug-Viewer</source> <translation>Активизировать Просмотрщик отладки</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1899"/> + <location filename="UI/UserInterface.py" line="1904"/> <source>SQL Browser</source> <translation>Просмотрщик SQL</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1899"/> - <source>SQL &Browser...</source> - <translation>&Просмотрщик SQL...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1903"/> - <source>Browse a SQL database</source> - <translation>Просмотреть SQL базу данных</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1904"/> + <source>SQL &Browser...</source> + <translation>&Просмотрщик SQL...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1908"/> + <source>Browse a SQL database</source> + <translation>Просмотреть SQL базу данных</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1909"/> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>Просмотрщик SQL</b><p>Просмотреть SQL базу данных.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4410"/> + <location filename="UI/UserInterface.py" line="4415"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить просмотрщик SQL.<br>Убедитесь, что он доступен как <b>{0}</b>.</p></translation> </message> @@ -49426,62 +49431,62 @@ <translation type="obsolete">Просмотрщик &Web...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> + <location filename="UI/UserInterface.py" line="1940"/> <source>Icon Editor</source> <translation>Редактор иконок</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> + <location filename="UI/UserInterface.py" line="1940"/> <source>&Icon Editor...</source> <translation>Редактор &иконок...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt 3 support</source> <translation>Поддержка Qt3</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2259"/> + <location filename="UI/UserInterface.py" line="2264"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Документация PySide</b><p>Показать документацию PySide. В зависимости от настроек документация будет показана или во внутреннем просмотрщике помощи, в WEB просмотрщике или в Qt Assistant. </p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation><p>Корень документации PySide не найден.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>PySide Documentation</source> <translation>Документация PySide</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>Py&Side Documentation</source> <translation>Документация Py&Side</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2258"/> + <location filename="UI/UserInterface.py" line="2263"/> <source>Open PySide Documentation</source> <translation>Открыть документацию PySide</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1674"/> + <location filename="UI/UserInterface.py" line="1679"/> <source><b>Helpviewer</b><p>Display the eric5 web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is search in the Qt help collection.</p></source> <translation><b>Просмотрщик помощи</b><p>Открыть eric5 просмотрщик Web. Это окно будет показывать HTML файлы помощи. Оно поддерживает навигацию по ссылкам, закладки, печать и некоторые другие функции. Его можно использовать для просмотра интернета.</p><p>Если перед открытием просмотрщика помощи был подсвечен какой-либо текст, то будет произведён поиск этого текста в коллекции помощи Qt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1704"/> + <location filename="UI/UserInterface.py" line="1709"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric5.</p></source> <translation><b>Проверить наличие обновлений...</b><p>Проверить наличие обновлений eric5 в интернет.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1716"/> + <location filename="UI/UserInterface.py" line="1721"/> <source><b>Show downloadable versions...</b><p>Shows the eric5 versions available for download from the internet.</p></source> <translation><b>Показать версии, доступные для загрузки...</b><p>Показывает версии eric5, которые можно скачать с интернета.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1927"/> + <location filename="UI/UserInterface.py" line="1932"/> <source>Start the eric5 Web Browser</source> <translation>Запустить WEB просмотрщик встроенный в Eric5</translation> </message> @@ -49491,224 +49496,224 @@ <translation type="obsolete"><b>Просмотрщик Web</b><p>Запустить WEB просмотрщик встроенный в Eric5.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1939"/> + <location filename="UI/UserInterface.py" line="1944"/> <source>Start the eric5 Icon Editor</source> <translation>Запустить редактор иконок</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1940"/> + <location filename="UI/UserInterface.py" line="1945"/> <source><b>Icon Editor</b><p>Starts the eric5 Icon Editor for editing simple icons.</p></source> <translation><b>Редактор иконок</b><p>Запустить редактор иконок.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2009"/> + <location filename="UI/UserInterface.py" line="2014"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric5.</p></source> <translation><b>Показать внешние инструменты</b><p>Открывает диалог для отображения пути и версий внешних инструментов, используемых eric5.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2242"/> + <location filename="UI/UserInterface.py" line="2247"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric5 installation directory.</p></source> <translation><b>Документация Eric API</b><p>Показать документацию Eric API. Местонахождение документации - каталог Documentation/Source, расположенный в каталоге инсталляции eric5.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt v.3 is not supported by eric5.</source> <translation>Qt3 не поддерживается в eric5.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>The update to <b>{0}</b> of eric5 is available at <b>{1}</b>. Would you like to get it?</source> <translation>На сайте <b>{1}</b> доступно обновление eric5 до версии <b>{0}</b>. Скачать?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>Eric5 is up to date</source> <translation>Eric5 не требует обновлений</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>You are using the latest version of eric5</source> <translation>Вы используете самую последнюю версию eric5</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>eric5 has not been configured yet. The configuration dialog will be started.</source> <translation>eric5 ещё не сконфигурирован. Будет запущен диалог конфигурации.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>Cooperation</source> <translation>Кооперация</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>&Cooperation</source> <translation>&Кооперация</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1587"/> + <location filename="UI/UserInterface.py" line="1592"/> <source>Toggle the Cooperation window</source> <translation>Показать/скрыть окно Коопераци</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1589"/> + <location filename="UI/UserInterface.py" line="1594"/> <source><b>Toggle the Cooperation window</b><p>If the Cooperation window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть окно Коопераци</b><p>Если окно Коопераци скрыто, показать его. Иначе - закрыть.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Activate Cooperation-Viewer</source> <translation>Активизировать Просмотрщик Коопераци</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>Symbols</source> <translation>Символы</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>&Symbols</source> <translation>&Символы</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1609"/> + <location filename="UI/UserInterface.py" line="1614"/> <source>Toggle the Symbols window</source> <translation>Показать/скрыть окно символов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1611"/> + <location filename="UI/UserInterface.py" line="1616"/> <source><b>Toggle the Symbols window</b><p>If the Symbols window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть окно символов</b> <p>Если окно символов скрыто, показать его. Иначе - закрыть.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Activate Symbols-Viewer</source> <translation>Активизировать просмотрщик символов</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>Numbers</source> <translation>Числа</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>&Numbers</source> <translation>&Числа</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1631"/> + <location filename="UI/UserInterface.py" line="1636"/> <source>Toggle the Numbers window</source> <translation>Показать/скрыть окно чисел</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1633"/> + <location filename="UI/UserInterface.py" line="1638"/> <source><b>Toggle the Numbers window</b><p>If the Numbers window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Показать/скрыть окно чисел</b> <p>Если окно чисел скрыто, показать его. Иначе - закрыть.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Activate Numbers-Viewer</source> <translation>Активизировать просмотрщик чисел</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Alt+Shift+B</source> <translation></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Файл горячих клавиш (*.e4k)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python 3 Documentation</source> <translation>Документация Pyton 3</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python &3 Documentation</source> <translation>Документация Pyton &3</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2205"/> + <location filename="UI/UserInterface.py" line="2210"/> <source>Open Python 3 Documentation</source> <translation>Открыть документацию Python 3</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2206"/> + <location filename="UI/UserInterface.py" line="2211"/> <source><b>Python 3 Documentation</b><p>Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and <i>/usr/share/doc/packages/python/html</i> on Unix. Set PYTHON3DOCDIR in your environment to override this. </p></source> <translation><b>Документация Pyton 3</b><p>Показать Pyton 3 документацию. Если местонахождение документации не было настроено, то искать в подкаталоге <i>doc</i> каталога где находится исполняемый файл Python 3 под Windows и в подкаталоге <i>/usr/share/doc/packages/python/html</i> под UNIX. Местонахождение документации можно задать с помощью переменной окружения PYTHON3DOCDIR.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python 2 Documentation</source> <translation>Документация Pyton 2</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python &2 Documentation</source> <translation>Документация Pyton &2</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2220"/> + <location filename="UI/UserInterface.py" line="2225"/> <source>Open Python 2 Documentation</source> <translation>Открыть документацию Python 2</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2221"/> + <location filename="UI/UserInterface.py" line="2226"/> <source><b>Python 2 Documentation</b><p>Display the Python 2 documentation. If no documentation directory is configured, the location of the Python 2 documentation is assumed to be the doc directory underneath the location of the configured Python 2 executable on Windows and <i>/usr/share/doc/packages/python/html/python-docs-html</i> on Unix. Set PYTHON2DOCDIR in your environment to override this. </p></source> <translation><b>Документация Pyton 2</b><p>Показать Pyton 2 документацию. Если местонахождение документации не было настроено, то искать в подкаталоге <i>doc</i> каталога где находится исполняемый файл Python 2 под Windows и в подкаталоге <i>/usr/share/doc/packages/python/html/python-docs-html</i> под UNIX. Местонахождение документации можно задать с помощью переменной окружения PYTHON2DOCDIR.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5690"/> + <location filename="UI/UserInterface.py" line="5695"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 Web Browser</source> - <translation type="unfinished">WEB просмотрщик встроенный в Eric5</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 &Web Browser...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 Web Browser</source> + <translation type="unfinished">WEB просмотрщик встроенный в Eric5</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 &Web Browser...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1933"/> <source><b>eric5 Web Browser</b><p>Browse the Internet with the eric5 Web Browser.</p></source> <translation type="unfinished"></translation> </message> @@ -49733,78 +49738,78 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New Window</source> <translation type="unfinished">Новое окно</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New &Window</source> <translation type="unfinished">&Новое окно</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> - <source>Ctrl+Shift+N</source> - <comment>File|New Window</comment> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1313"/> + <source>Ctrl+Shift+N</source> + <comment>File|New Window</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1318"/> <source>Open a new eric5 instance</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1314"/> + <location filename="UI/UserInterface.py" line="1319"/> <source><b>New Window</b><p>This opens a new instance of the eric5 IDE.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1776"/> + <location filename="UI/UserInterface.py" line="1781"/> <source>Rerun failed tests of the last run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1778"/> + <location filename="UI/UserInterface.py" line="1783"/> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare &Files side by side...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>Snapshot</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>&Snapshot...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1951"/> - <source>Take snapshots of a screen region</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1952"/> + <source>Snapshot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1952"/> + <source>&Snapshot...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1956"/> + <source>Take snapshots of a screen region</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1957"/> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4457"/> + <location filename="UI/UserInterface.py" line="4462"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric5_tr.ts Wed May 02 19:10:17 2012 +0200 +++ b/i18n/eric5_tr.ts Fri May 04 20:06:17 2012 +0200 @@ -4869,52 +4869,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="Debugger/DebugViewer.py" line="163"/> + <location filename="Debugger/DebugViewer.py" line="164"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation>Değişken filtreleri için düzenli ifadelerin şablonlarını ';' ile ayırarak giriniz.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="166"/> + <location filename="Debugger/DebugViewer.py" line="167"/> <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source> <translation>Değişken filtreleri için düzenli ifadelerin şablonlarını ';' ile ayırarak giriniz.Düzenli ifadelerdeki tüm değişkenler ve sınıf nitelikleri listede gösterildiğinden farklı olmamalıdır.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="171"/> + <location filename="Debugger/DebugViewer.py" line="172"/> <source>Set</source> <translation>Ayarla</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="149"/> + <location filename="Debugger/DebugViewer.py" line="150"/> <source>Source</source> <translation>Kaynak</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="214"/> + <location filename="Debugger/DebugViewer.py" line="215"/> <source>Threads:</source> <translation>Bağlantılar:</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>ID</source> <translation>ID</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>Name</source> <translation>Adı</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>State</source> <translation>Durum</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="413"/> + <location filename="Debugger/DebugViewer.py" line="414"/> <source>waiting at breakpoint</source> <translation>Bekleme oktasında bekleniyor</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="415"/> + <location filename="Debugger/DebugViewer.py" line="416"/> <source>running</source> <translation>çalışıyor</translation> </message> @@ -36391,7 +36391,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/SearchWidget.py" line="160"/> + <location filename="UI/SearchWidget.py" line="163"/> <source>'{0}' was not found.</source> <translation type="unfinished">'{0}' bulunamadı.</translation> </message> @@ -36457,139 +36457,144 @@ <context> <name>Shell</name> <message> - <location filename="QScintilla/Shell.py" line="56"/> + <location filename="QScintilla/Shell.py" line="112"/> <source>Shell - Passive</source> <translation>Pasif- Kabuk</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="58"/> + <location filename="QScintilla/Shell.py" line="114"/> <source>Shell</source> <translation>Kabuk</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="60"/> + <location filename="QScintilla/Shell.py" line="116"/> <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. Pressing the up or down key after some text has been entered will start an incremental search.</p><p>The shell has some special commands. 'reset' kills the shell and starts a new one. 'clear' clears the display of the shell window. 'start' is used to switch the shell language and must be followed by a supported language. Supported languages are listed by the 'languages' command. These commands (except 'languages') 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 commandline completions. The relevant entry may be selected from this list. If only one entry is available, this will 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>Kabu Penceresi</b><p>Bu basit bir yorumlayıcı penceresidir. Koşturulan programın hata yakalamasının yapılacağı bir arayüzdür.Bunun anlamı programda hata yakalamaya başladığınızda kabuk üzerinden istediğiniz comutu girebileceğinizdir.</p><p>İmleç tuşları ile daha önceden girilen komutlar arasında dolaşabilirsiniz. Aşağı yada yukarı tuşlarına bastıktan sonra klavyeden gireceğiniz harf ve kelimelere göre arama başlatırsınız.</p><p>Kabuğun bazı özel komutları vardır. 'reset'kabuğu sıfırlar ve yeni bir tane başlatır. 'clear' kabuk penceresini temziler. 'start'kullanılan kabuk dilinden bir sonraki kabuk diline geçirir. Desteklenen diller 'languages' komutu ile listelenir. Bu komutlar (except 'languages') sağ tuş menusü ilede ulaşılabilir.</p><p>Bazı metinleri girdikten sonra tab tuşuna bazarsanız tamamlanabilecek kelimelerin bir listesi gelir. Konuyla ilgili kelimelri bu listede seçebilirsiniz.Eğer girilebilecek tek bir seçenek varsa , bu otomat,k olarak eklenir.</p><p> Pasif hata ayıklama modunda bu tamamlanana kadar IDLE kullanılamaz.Bu durum pencere başlığında farklı çıktılar ile gösterilir.</p></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="127"/> + <location filename="QScintilla/Shell.py" line="183"/> <source>Passive >>> </source> <translation>Pasif >>></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="142"/> + <location filename="QScintilla/Shell.py" line="198"/> <source>Start</source> <translation>Başla</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="151"/> + <location filename="QScintilla/Shell.py" line="207"/> <source>History</source> <translation>Geçmiş</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="152"/> + <location filename="QScintilla/Shell.py" line="208"/> <source>Select entry</source> <translation>Girişi Seç</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="153"/> + <location filename="QScintilla/Shell.py" line="209"/> <source>Show</source> <translation>Göster</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="163"/> + <location filename="QScintilla/Shell.py" line="221"/> <source>Clear</source> <translation>Temizle</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="158"/> + <location filename="QScintilla/Shell.py" line="214"/> <source>Cut</source> <translation>Kes</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="159"/> + <location filename="QScintilla/Shell.py" line="215"/> <source>Copy</source> <translation>Kopyala</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="160"/> + <location filename="QScintilla/Shell.py" line="216"/> <source>Paste</source> <translation>Yapıştır</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="164"/> + <location filename="QScintilla/Shell.py" line="222"/> <source>Reset</source> <translation>Başadön</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="165"/> + <location filename="QScintilla/Shell.py" line="223"/> <source>Reset and Clear</source> <translation>Başadön ve temizle</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="170"/> + <location filename="QScintilla/Shell.py" line="228"/> <source>Configure...</source> <translation>Ayarlanıyor...</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <source>Select History</source> <translation>Geçmişi Seç</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <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="548"/> + <location filename="QScintilla/Shell.py" line="606"/> <source>Passive Debug Mode</source> <translation>Pasif Hata Ayıklama Modu</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="549"/> + <location filename="QScintilla/Shell.py" line="607"/> <source> Not connected</source> <translation> Bağlantı yok</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="551"/> + <location filename="QScintilla/Shell.py" line="609"/> <source>No.</source> <translation>NO.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="553"/> + <location filename="QScintilla/Shell.py" line="611"/> <source>{0} on {1}, {2}</source> <translation>{0} üzerin {1}, {2}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="614"/> + <location filename="QScintilla/Shell.py" line="672"/> <source>StdOut: {0}</source> <translation>Stdçıktı:{0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="622"/> + <location filename="QScintilla/Shell.py" line="680"/> <source>StdErr: {0}</source> <translation>stdhata: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1165"/> + <location filename="QScintilla/Shell.py" line="1223"/> <source>Shell language "{0}" not supported. </source> <translation>Kabuk dili "{0}" desteklenmiyor. </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <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="219"/> + <source>Find</source> + <translation type="unfinished">Bul</translation> + </message> </context> <context> <name>ShellHistoryDialog</name> @@ -47647,783 +47652,783 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>Project-Viewer</source> <translation>Proje-Görüntüleyici</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>Multiproject-Viewer</source> <translation>Çokluproje-Görüntüleyici</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>Debug-Viewer</source> <translation>Hata Ayıklama Göstericisi</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>Cooperation</source> <translation>İşbirliği</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>Log-Viewer</source> <translation>Kayıt-Gösterici</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>Task-Viewer</source> <translation>Görev-Gösterici</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Template-Viewer</source> <translation>Şablon-Gösterici</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Terminal</source> <translation>Terminal</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-Browser</source> <translation>Dosya-Gözatıcısı</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>Shell</source> <translation>Kabuk</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>Vertical Toolbox</source> <translation>Dikey Araçkutusu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>Horizontal Toolbox</source> <translation>Yatay Araçkutusu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1264"/> - <source>{0} - Passive Mode</source> - <translation>{0} - Pasif Mod</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1269"/> + <source>{0} - Passive Mode</source> + <translation>{0} - Pasif Mod</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1274"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} -Pasif Mod</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1272"/> + <location filename="UI/UserInterface.py" line="1277"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - Pasif Mod</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> + <location filename="UI/UserInterface.py" line="1297"/> <source>Quit</source> <translation>Çık</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> + <location filename="UI/UserInterface.py" line="1297"/> <source>&Quit</source> <translation>&Çıkış</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> - <source>Ctrl+Q</source> - <comment>File|Quit</comment> - <translation>Ctrl+Q</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1297"/> + <source>Ctrl+Q</source> + <comment>File|Quit</comment> + <translation>Ctrl+Q</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1302"/> <source>Quit the IDE</source> <translation>IDE den Çık</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1298"/> + <location filename="UI/UserInterface.py" line="1303"/> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1324"/> - <source>Edit Profile</source> - <translation>Düzenleme Kesiti</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1329"/> + <source>Edit Profile</source> + <translation>Düzenleme Kesiti</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1334"/> <source>Activate the edit view profile</source> <translation>Düzenleyici görüntü kesitini aktif yap</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1330"/> + <location filename="UI/UserInterface.py" line="1335"/> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1339"/> - <source>Debug Profile</source> - <translation>Hata Ayıklama Kesiti</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1344"/> + <source>Debug Profile</source> + <translation>Hata Ayıklama Kesiti</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1349"/> <source>Activate the debug view profile</source> <translation>Debug görüntü kesitini aktif et</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1346"/> + <location filename="UI/UserInterface.py" line="1351"/> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>&Project-Viewer</source> <translation>&proje-Görüntüleyici</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1357"/> + <location filename="UI/UserInterface.py" line="1362"/> <source>Toggle the Project-Viewer window</source> <translation>Açkapa Proje-Gözatıcı penceresi</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1358"/> + <location filename="UI/UserInterface.py" line="1363"/> <source><b>Toggle the Project-Viewer window</b><p>If the Project-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Activate Project-Viewer</source> <translation>Proje görüntüleyiciyi aktif yap</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>&Multiproject-Viewer</source> <translation>Çokluproje-Görü&ntüleyici</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1378"/> + <location filename="UI/UserInterface.py" line="1383"/> <source>Toggle the Multiproject-Viewer window</source> <translation>Çokluproje penceresini açkapa</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1379"/> + <location filename="UI/UserInterface.py" line="1384"/> <source><b>Toggle the Multiproject-Viewer window</b><p>If the Multiproject-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Activate Multiproject-Viewer</source> <translation>Çokluproje-Görüntüleyiciyi Etkinleştir</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>&Debug-Viewer</source> <translation>Ha&ta Ayıklama-Göstericisi</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1398"/> + <location filename="UI/UserInterface.py" line="1403"/> <source>Toggle the Debug-Viewer window</source> <translation>Hata ayıklama -Görüntüleyici penceresini Açkapa</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1399"/> + <location filename="UI/UserInterface.py" line="1404"/> <source><b>Toggle the Debug-Viewer window</b><p>If the Debug-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Activate Debug-Viewer</source> <translation>Hata Ayıklama- Görüntüleyiciyi Etkinleştir</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>&Shell</source> <translation>&Kabuk</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1418"/> + <location filename="UI/UserInterface.py" line="1423"/> <source>Toggle the Shell window</source> <translation>Açkapa Kabuk penceresi</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1419"/> + <location filename="UI/UserInterface.py" line="1424"/> <source><b>Toggle the Shell window</b><p>If the Shell window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Activate Shell</source> <translation>Aktif Kabuk</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Te&rminal</source> <translation>Te&rminal</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1439"/> + <location filename="UI/UserInterface.py" line="1444"/> <source>Toggle the Terminal window</source> <translation>Terminal penceresini açkapa</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1440"/> + <location filename="UI/UserInterface.py" line="1445"/> <source><b>Toggle the Terminal window</b><p>If the Terminal window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Activate Terminal</source> <translation>Uçbirimi Etkinleştir</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Alt+Shift+R</source> <translation>Alt+Shift+R</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-&Browser</source> <translation>Dosya-&Gözatıcısı</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1459"/> + <location filename="UI/UserInterface.py" line="1464"/> <source>Toggle the File-Browser window</source> <translation>Açkapa Dosya-Gözatıcı penceresi</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1460"/> + <location filename="UI/UserInterface.py" line="1465"/> <source><b>Toggle the File-Browser window</b><p>If the File-Browser window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Activate File-Browser</source> <translation>Dosya seçiciyi aktif yap</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>&Log-Viewer</source> <translation>Ka&yıt-Gösterici</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1480"/> + <location filename="UI/UserInterface.py" line="1485"/> <source>Toggle the Log-Viewer window</source> <translation>Açkapa Log-Gözatıcı penceresi</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1481"/> + <location filename="UI/UserInterface.py" line="1486"/> <source><b>Toggle the Log-Viewer window</b><p>If the Log-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Activate Log-Viewer</source> <translation>Kayıt-Göstericiyi Aktif Yap</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>T&ask-Viewer</source> <translation>Göre&v-Gösterici</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1500"/> + <location filename="UI/UserInterface.py" line="1505"/> <source>Toggle the Task-Viewer window</source> <translation>Açkapa Görev-Gözatıcı penceresi</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1501"/> + <location filename="UI/UserInterface.py" line="1506"/> <source><b>Toggle the Task-Viewer window</b><p>If the Task-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Activate Task-Viewer</source> <translation>Görevgöstereciyi aktif yap</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Temp&late-Viewer</source> <translation>Şablo&n-Gösterici</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1520"/> + <location filename="UI/UserInterface.py" line="1525"/> <source>Toggle the Template-Viewer window</source> <translation>Açkapa geçici-göster penceresi</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1522"/> + <location filename="UI/UserInterface.py" line="1527"/> <source><b>Toggle the Template-Viewer window</b><p>If the Template-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Activate Template-Viewer</source> <translation>Şablon göstericisini aktif yap</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>&Vertical Toolbox</source> <translation>Dike&y Araçkutusu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1541"/> + <location filename="UI/UserInterface.py" line="1546"/> <source>Toggle the Vertical Toolbox window</source> <translation>Dikey Araçkutusu penceresini açkapa</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1542"/> + <location filename="UI/UserInterface.py" line="1547"/> <source><b>Toggle the Vertical Toolbox window</b><p>If the Vertical Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>&Horizontal Toolbox</source> <translation>Ya&tay Araçkutusu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1553"/> + <location filename="UI/UserInterface.py" line="1558"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Yatay Araçkutusu penceresini açkapa</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1554"/> + <location filename="UI/UserInterface.py" line="1559"/> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>Left Sidebar</source> <translation>Sol Durumçubuğu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>&Left Sidebar</source> <translation>So&l Durumçubuğu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1564"/> + <location filename="UI/UserInterface.py" line="1569"/> <source>Toggle the left sidebar window</source> <translation>Sol Durum çubuğu penceresini açkapa</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1565"/> + <location filename="UI/UserInterface.py" line="1570"/> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Sol durum çubuğu penceresini açkapa</b><p>Eğer sol durum çubuğu penceresi gizli ise onu görünür yap. Eğer görünüyor ise kapat.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>Bottom Sidebar</source> <translation>Alt Durumçubuğu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>&Bottom Sidebar</source> <translation>Alt Durumçu&buğu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1576"/> + <location filename="UI/UserInterface.py" line="1581"/> <source>Toggle the bottom sidebar window</source> <translation>Alt Durum çubuğu penceresini açkapa</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1577"/> + <location filename="UI/UserInterface.py" line="1582"/> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>&Cooperation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1587"/> + <location filename="UI/UserInterface.py" line="1592"/> <source>Toggle the Cooperation window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1589"/> + <location filename="UI/UserInterface.py" line="1594"/> <source><b>Toggle the Cooperation window</b><p>If the Cooperation window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Activate Cooperation-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Alt+Shift+O</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>What's This?</source> - <translation>Bu nedir?</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>&What's This?</source> - <translation>Bu &Nedir?</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>Shift+F1</source> - <translation>Shift+F1</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1656"/> + <source>What's This?</source> + <translation>Bu nedir?</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source>&What's This?</source> + <translation>Bu &Nedir?</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source>Shift+F1</source> + <translation>Shift+F1</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1661"/> <source>Context sensitive help</source> <translation>Duyarlı yardım</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1657"/> + <location filename="UI/UserInterface.py" line="1662"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Duyarlı yardım içeriğini görüntüle</b><p>Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> + <location filename="UI/UserInterface.py" line="1673"/> <source>Helpviewer</source> <translation>Yardımgösterici</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> + <location filename="UI/UserInterface.py" line="1673"/> <source>&Helpviewer...</source> <translation>&Yardım Gösterici...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> - <source>F1</source> - <translation>F1</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1673"/> + <source>F1</source> + <translation>F1</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1678"/> <source>Open the helpviewer window</source> <translation>Yardımgösterici penceresini aç</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1674"/> + <location filename="UI/UserInterface.py" line="1679"/> <source><b>Helpviewer</b><p>Display the eric5 web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is search in the Qt help collection.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show Versions</source> <translation>Sürümü Göster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show &Versions</source> <translation>Sürümü G&öster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1693"/> + <location filename="UI/UserInterface.py" line="1698"/> <source>Display version information</source> <translation>Sürüm bilgisini görüntüle</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1694"/> + <location filename="UI/UserInterface.py" line="1699"/> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Sürümleri Göster</b><p>Sürüm bilgisini göster.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1703"/> + <location filename="UI/UserInterface.py" line="1708"/> <source>Check for Updates</source> <translation>Güncellemeleri kontrol et</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1701"/> + <location filename="UI/UserInterface.py" line="1706"/> <source>Check for &Updates...</source> <translation>G&üncellemeleri kontrol et...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1704"/> + <location filename="UI/UserInterface.py" line="1709"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric5.</p></source> <translation><b>Güncellemeleri kontrol et...</b><p>İnternetten eric5 güncellemesi olup olmadını kontrol et.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show downloadable versions</source> <translation>Yüklenebilir sürümleri göster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> - <source>Show &downloadable versions...</source> - <translation>Yüklenebilir sürümler&i göster...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1714"/> - <source>Show the versions available for download</source> - <translation>İndirmek için mümkün olan sürümü göster</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1716"/> + <source>Show &downloadable versions...</source> + <translation>Yüklenebilir sürümler&i göster...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1719"/> + <source>Show the versions available for download</source> + <translation>İndirmek için mümkün olan sürümü göster</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1721"/> <source><b>Show downloadable versions...</b><p>Shows the eric5 versions available for download from the internet.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Report Bug</source> <translation>Hata Raporu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1724"/> + <location filename="UI/UserInterface.py" line="1729"/> <source>Report &Bug...</source> <translation>Hata &Raporu...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1726"/> + <location filename="UI/UserInterface.py" line="1731"/> <source>Report a bug</source> <translation>Bir hata rapor et</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1727"/> + <location filename="UI/UserInterface.py" line="1732"/> <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request Feature</source> <translation>İhtiyaç Duyulan Özellikler</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request &Feature...</source> <translation>İhtiyaç Duyulan Özellikler &F...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1736"/> + <location filename="UI/UserInterface.py" line="1741"/> <source>Send a feature request</source> <translation>ihtiyaç duyuulan bir özelliği gönder</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1737"/> + <location filename="UI/UserInterface.py" line="1742"/> <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2450"/> + <location filename="UI/UserInterface.py" line="2455"/> <source>Unittest</source> <translation>Birimtest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1746"/> - <source>&Unittest...</source> - <translation>B&irimtest...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1750"/> - <source>Start unittest dialog</source> - <translation>Birimtest diyaloğunu başlat</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1751"/> + <source>&Unittest...</source> + <translation>B&irimtest...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1755"/> + <source>Start unittest dialog</source> + <translation>Birimtest diyaloğunu başlat</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1756"/> <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> + <location filename="UI/UserInterface.py" line="1764"/> <source>Unittest Restart</source> <translation>Birimtestini yeniden başlat</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> - <source>&Restart Unittest...</source> - <translation>Bi&rimtestini Yeniden Başlat...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1763"/> - <source>Restart last unittest</source> - <translation>En son birimtesti yeniden başlat</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1764"/> + <source>&Restart Unittest...</source> + <translation>Bi&rimtestini Yeniden Başlat...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1768"/> + <source>Restart last unittest</source> + <translation>En son birimtesti yeniden başlat</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1769"/> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1786"/> - <source>Unittest Script</source> - <translation>Betik Birimtesti</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1786"/> - <source>Unittest &Script...</source> - <translation>Betik Birimte&sti...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1790"/> - <source>Run unittest with current script</source> - <translation>Geçerli betikle test arabirimini çalıştır</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1791"/> + <source>Unittest Script</source> + <translation>Betik Birimtesti</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1791"/> + <source>Unittest &Script...</source> + <translation>Betik Birimte&sti...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1795"/> + <source>Run unittest with current script</source> + <translation>Geçerli betikle test arabirimini çalıştır</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1796"/> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4052"/> + <location filename="UI/UserInterface.py" line="4057"/> <source>Unittest Project</source> <translation>Proje Birimtesti</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1799"/> - <source>Unittest &Project...</source> - <translation>Birimtest &Proje...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1803"/> - <source>Run unittest with current project</source> - <translation>Geçerli proje ile test arabirimini çalıştır</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1804"/> + <source>Unittest &Project...</source> + <translation>Birimtest &Proje...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1808"/> + <source>Run unittest with current project</source> + <translation>Geçerli proje ile test arabirimini çalıştır</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1809"/> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>Qt-Designer 4</source> <translation>Qt-Designer 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>&Designer 4...</source> <translation>&Designer 4...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1823"/> + <location filename="UI/UserInterface.py" line="1828"/> <source>Start Qt-Designer 4</source> <translation>Qt-Designer 4'ı Başlat</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1824"/> + <location filename="UI/UserInterface.py" line="1829"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> <translation><b>Qt-Designer 4</b><p>Başlat Qt-Designer 4.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>Qt-Linguist 4</source> <translation>Qt-Linguist 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>&Linguist 4...</source> <translation>&Linguist 4...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1843"/> + <location filename="UI/UserInterface.py" line="1848"/> <source>Start Qt-Linguist 4</source> <translation>Qt-Linguist 4'ı Başlat</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1844"/> + <location filename="UI/UserInterface.py" line="1849"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> <translation><b>Qt-Linguist 4</b><p>Başlat Qt-Linguist 4.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>UI Previewer</source> <translation>UI Öngörünümü</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>&UI Previewer...</source> <translation>&UI Öngörünümü...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1856"/> + <location filename="UI/UserInterface.py" line="1861"/> <source>Start the UI Previewer</source> <translation>UI Öngörünümünü Başlat</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1857"/> + <location filename="UI/UserInterface.py" line="1862"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation><b>UI Öngörünümü</b><p>UI Öngörünümünü Başlat.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>Translations Previewer</source> <translation>Çevirilerin Öngörünümleri</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>&Translations Previewer...</source> <translation>Çevirilerin &Öngörünümleri...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1867"/> + <location filename="UI/UserInterface.py" line="1872"/> <source>Start the Translations Previewer</source> <translation>Çevirilerin Öngörünümlerini Başlat</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1868"/> + <location filename="UI/UserInterface.py" line="1873"/> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Çeviri Öngörünümü</b><p>Çeviri Öngörünümünü Başlat.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>Compare Files</source> <translation>Dosyaları Karşılaştır</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>&Compare Files...</source> <translation>D&osyaları Karşılaştır...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1890"/> + <location filename="UI/UserInterface.py" line="1895"/> <source>Compare two files</source> <translation>İki dosyayı karşılaştır</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1879"/> + <location filename="UI/UserInterface.py" line="1884"/> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Dosyaları Karşılaştır</b><p>İki dosyayı karşılaştırmak için diyalog aç.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare Files side by side</source> <translation>Dosyaları yan yana karşılaştır</translation> </message> @@ -48433,42 +48438,42 @@ <translation type="obsolete">Do&syaları yan yana karşılaştır...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1891"/> + <location filename="UI/UserInterface.py" line="1896"/> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Dosyaları biribir karşılaştır</b><p>İki dosyayı karşılaştırmak için bir diyalog aç ve sonuçları yan yana göster.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1899"/> + <location filename="UI/UserInterface.py" line="1904"/> <source>SQL Browser</source> <translation>SQL Gözatıcısı</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1899"/> - <source>SQL &Browser...</source> - <translation>SQL &Gözatıcısı...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1903"/> - <source>Browse a SQL database</source> - <translation>Bir SQL veritabanına gözat</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1904"/> + <source>SQL &Browser...</source> + <translation>SQL &Gözatıcısı...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1908"/> + <source>Browse a SQL database</source> + <translation>Bir SQL veritabanına gözat</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1909"/> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>SQL Gözatıcısı</b><p>Bir SQL veritabanına gözat.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1915"/> + <location filename="UI/UserInterface.py" line="1920"/> <source>Mini Editor</source> <translation>Mini Düzenleyici</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1911"/> - <source>Mini &Editor...</source> - <translation>Mini &Düzenleyici...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1916"/> + <source>Mini &Editor...</source> + <translation>Mini &Düzenleyici...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1921"/> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini Düzenleyici</b><p>Basit bir düzenleyci ile bir diyalog açılır.</p></translation> </message> @@ -48483,7 +48488,7 @@ <translation type="obsolete">&Web Gözatıcısı...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1927"/> + <location filename="UI/UserInterface.py" line="1932"/> <source>Start the eric5 Web Browser</source> <translation>Eric5 Web Gözatıcısınıi başlat</translation> </message> @@ -48493,367 +48498,367 @@ <translation type="obsolete"><b>Web Gözatıcısı</b><p>İnternete eric5 Web Gözatıcısını kullanarak gözatınız.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> + <location filename="UI/UserInterface.py" line="1940"/> <source>Icon Editor</source> <translation>İkon Düzenleyici</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> - <source>&Icon Editor...</source> - <translation>&İkon Düzenleyici...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1939"/> - <source>Start the eric5 Icon Editor</source> - <translation>Eric5 İkon düzenleyiciyi başlat</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1940"/> + <source>&Icon Editor...</source> + <translation>&İkon Düzenleyici...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1944"/> + <source>Start the eric5 Icon Editor</source> + <translation>Eric5 İkon düzenleyiciyi başlat</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1945"/> <source><b>Icon Editor</b><p>Starts the eric5 Icon Editor for editing simple icons.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>Preferences</source> <translation>Seçenekler</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>&Preferences...</source> <translation>&Seçenekler...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1962"/> + <location filename="UI/UserInterface.py" line="1967"/> <source>Set the prefered configuration</source> <translation>tercih edilen ayarları yapınız</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1963"/> + <location filename="UI/UserInterface.py" line="1968"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Tercihler</b><p>Uygulamanın ayarlama maddelerini tercih ettiğiniz değerlerle ayarlayınız.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>Export Preferences</source> <translation>Seçenekleri Dışa Aktar</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>E&xport Preferences...</source> <translation>Tercihleri Dı&şa Aktar...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1975"/> + <location filename="UI/UserInterface.py" line="1980"/> <source>Export the current configuration</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1976"/> + <location filename="UI/UserInterface.py" line="1981"/> <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1983"/> + <location filename="UI/UserInterface.py" line="1988"/> <source>Import Preferences</source> <translation>Seçenekleri İçe Aktar</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1983"/> - <source>I&mport Preferences...</source> - <translation>Tercihleri İ&çeri Aktar...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1986"/> - <source>Import a previously exported configuration</source> - <translation>daha önce dışa aktarılan ayrlamaları içe aktar</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1988"/> + <source>I&mport Preferences...</source> + <translation>Tercihleri İ&çeri Aktar...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1991"/> + <source>Import a previously exported configuration</source> + <translation>daha önce dışa aktarılan ayrlamaları içe aktar</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1993"/> <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload APIs</source> <translation>API'leri yeniden yükle</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload &APIs</source> <translation>&API'leri yeniden yükle</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1997"/> + <location filename="UI/UserInterface.py" line="2002"/> <source>Reload the API information</source> <translation>API bilgisini yeniden yükle</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1998"/> + <location filename="UI/UserInterface.py" line="2003"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2008"/> + <location filename="UI/UserInterface.py" line="2013"/> <source>Show external tools</source> <translation>Harici araçları göster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2005"/> + <location filename="UI/UserInterface.py" line="2010"/> <source>Show external &tools</source> <translation>Karak&ter tablosunu göster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2009"/> + <location filename="UI/UserInterface.py" line="2014"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric5.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>View Profiles</source> <translation>Görünüm Kesiti</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>&View Profiles...</source> <translation>&Görünüm Kesiti...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2020"/> + <location filename="UI/UserInterface.py" line="2025"/> <source>Configure view profiles</source> <translation>Görünüm kesitlerini ayarla</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2021"/> + <location filename="UI/UserInterface.py" line="2026"/> <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Toolbars</source> <translation>Araççubuğu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Tool&bars...</source> <translation>Araççu&buğu...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2033"/> + <location filename="UI/UserInterface.py" line="2038"/> <source>Configure toolbars</source> <translation>Araççubuğunu ayarla</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2034"/> + <location filename="UI/UserInterface.py" line="2039"/> <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard Shortcuts</source> <translation>Klavye Kısayolları</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard &Shortcuts...</source> <translation>Klavye Kı&sayolları...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2046"/> + <location filename="UI/UserInterface.py" line="2051"/> <source>Set the keyboard shortcuts</source> <translation>Klavye kısayollarını ayarla</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2047"/> + <location filename="UI/UserInterface.py" line="2052"/> <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5127"/> + <location filename="UI/UserInterface.py" line="5132"/> <source>Export Keyboard Shortcuts</source> <translation>Kılavye Kısa Yollarını Dışa Aktar</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2055"/> - <source>&Export Keyboard Shortcuts...</source> - <translation>Kılavye Kısa Yo&llarını Dışa Aktar...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2059"/> - <source>Export the keyboard shortcuts</source> - <translation>Kılavye kısa yollarını dışa aktar</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2060"/> + <source>&Export Keyboard Shortcuts...</source> + <translation>Kılavye Kısa Yo&llarını Dışa Aktar...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2064"/> + <source>Export the keyboard shortcuts</source> + <translation>Kılavye kısa yollarını dışa aktar</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2065"/> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Import Keyboard Shortcuts</source> <translation>Klavye kısayollarını İçe Aktar</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2067"/> - <source>&Import Keyboard Shortcuts...</source> - <translation>Klavye K&ısayollarını İçe Aktar...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2071"/> - <source>Import the keyboard shortcuts</source> - <translation>Klavye kısayolları içeri aktarılıyor</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2072"/> + <source>&Import Keyboard Shortcuts...</source> + <translation>Klavye K&ısayollarını İçe Aktar...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2076"/> + <source>Import the keyboard shortcuts</source> + <translation>Klavye kısayolları içeri aktarılıyor</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2077"/> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Activate current editor</source> <translation>Geçerli düzenleyiciyi aktif yap</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Show next</source> <translation>Sonrakini göster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Show previous</source> <translation>Öncekini göster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Switch between tabs</source> <translation>Sekmeler arasında değiştir</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>Plugin Infos</source> <translation>Eklenti Bilgisi</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>&Plugin Infos...</source> <translation>Eklenti Bil&gisi...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2115"/> + <location filename="UI/UserInterface.py" line="2120"/> <source>Show Plugin Infos</source> <translation>Eklenti Bilgisini Göster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2116"/> + <location filename="UI/UserInterface.py" line="2121"/> <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> <translation><b>Eklenti Bilgileri...</b><p>Bu yüklenen eklentiler hakkında bazı bilgileri gösteren bir diyalog açar.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2127"/> + <location filename="UI/UserInterface.py" line="2132"/> <source>Install Plugins</source> <translation>Eklenti Kur</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2124"/> + <location filename="UI/UserInterface.py" line="2129"/> <source>&Install Plugins...</source> <translation>Ekle&nti Kur...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2128"/> + <location filename="UI/UserInterface.py" line="2133"/> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Eklenti Kur...</b><p>Bu eklenti kurmak yada güncellemek için bir diyalog açar.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2138"/> + <location filename="UI/UserInterface.py" line="2143"/> <source>Uninstall Plugin</source> <translation>Eklenti Kaldır</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2135"/> + <location filename="UI/UserInterface.py" line="2140"/> <source>&Uninstall Plugin...</source> <translation>Ekle&nti Kaldır...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2139"/> + <location filename="UI/UserInterface.py" line="2144"/> <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> <translation><b>Eklenti Kaldır...</b><p>Bu bir eklentiyi kaldırmak için bir diyalog açar.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2146"/> - <source>Plugin Repository</source> - <translation>Eklenti Havuzu</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2146"/> - <source>Plugin &Repository...</source> - <translation>Eklenti Hav&uzu...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2149"/> - <source>Show Plugins available for download</source> - <translation>İndirme için uygun olan eklentileri göster</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2151"/> + <source>Plugin Repository</source> + <translation>Eklenti Havuzu</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2151"/> + <source>Plugin &Repository...</source> + <translation>Eklenti Hav&uzu...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2154"/> + <source>Show Plugins available for download</source> + <translation>İndirme için uygun olan eklentileri göster</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2156"/> <source><b>Plugin Repository...</b><p>This opens a dialog, that shows a list of plugins available on the Internet.</p></source> <translation><b>Eklenti Kaynak Havuzu...</b><p>Bu internette hazır olan eklentilerin listelendiği bir diyalog açar.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt4 Documentation</source> <translation>Qt4 Belgeleri</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt&4 Documentation</source> <translation>Qt&4 Belgeleri</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2177"/> + <location filename="UI/UserInterface.py" line="2182"/> <source>Open Qt4 Documentation</source> <translation>QT4 Belgelerini Aç</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2178"/> + <location filename="UI/UserInterface.py" line="2183"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>PyQt4 Documentation</source> <translation>PyQt4 Belgeleri</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>P&yQt4 Documentation</source> <translation>P&yQt4 Belgeleri</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2189"/> + <location filename="UI/UserInterface.py" line="2194"/> <source>Open PyQt4 Documentation</source> <translation>PyQt4 Begelerini aç</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2190"/> + <location filename="UI/UserInterface.py" line="2195"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> @@ -48873,177 +48878,177 @@ <translation type="obsolete">Python belgelerini açın</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>Eric API Documentation</source> <translation>Eric API Belgeleri</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>&Eric API Documentation</source> <translation>&Eric API Dökümanı</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2241"/> + <location filename="UI/UserInterface.py" line="2246"/> <source>Open Eric API Documentation</source> <translation>Eric API Belgelerini Aç</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2242"/> + <location filename="UI/UserInterface.py" line="2247"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric5 installation directory.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>PySide Documentation</source> <translation>PySide Belgeleri</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>Py&Side Documentation</source> <translation>Py&Side Belgeleri</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2258"/> + <location filename="UI/UserInterface.py" line="2263"/> <source>Open PySide Documentation</source> <translation>PySide belgelerini açın</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2259"/> + <location filename="UI/UserInterface.py" line="2264"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2296"/> + <location filename="UI/UserInterface.py" line="2301"/> <source>&Unittest</source> <translation>Bir&imtest</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2313"/> - <source>E&xtras</source> - <translation>İla&veler</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2318"/> + <source>E&xtras</source> + <translation>İla&veler</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2323"/> <source>Wi&zards</source> <translation>Sihirba&z</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2325"/> + <location filename="UI/UserInterface.py" line="2330"/> <source>&Tools</source> <translation>&Araçlar</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2328"/> + <location filename="UI/UserInterface.py" line="2333"/> <source>Select Tool Group</source> <translation>Araç Grubunu Seç</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2334"/> + <location filename="UI/UserInterface.py" line="2339"/> <source>Se&ttings</source> <translation>Ayar&lar</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2352"/> + <location filename="UI/UserInterface.py" line="2357"/> <source>&Window</source> <translation>&Pencere</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2358"/> + <location filename="UI/UserInterface.py" line="2363"/> <source>&Toolbars</source> <translation>&Araççubuğu</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2369"/> + <location filename="UI/UserInterface.py" line="2374"/> <source>P&lugins</source> <translation>Ek&lentiler</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2378"/> - <source>Configure...</source> - <translation>Ayarlanıyor...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2383"/> + <source>Configure...</source> + <translation>Ayarlanıyor...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2388"/> <source>&Help</source> <translation>&Yardım</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2449"/> - <source>Tools</source> - <translation>Araçlar</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2451"/> - <source>Settings</source> - <translation>Ayarlar</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="4275"/> - <source>Help</source> - <translation>Yardım</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2453"/> - <source>Profiles</source> - <translation>Kesitler</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2454"/> + <source>Tools</source> + <translation>Araçlar</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2456"/> + <source>Settings</source> + <translation>Ayarlar</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4280"/> + <source>Help</source> + <translation>Yardım</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2458"/> + <source>Profiles</source> + <translation>Kesitler</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2459"/> <source>Plugins</source> <translation>Eklentiler</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2596"/> + <location filename="UI/UserInterface.py" line="2601"/> <source><p>This part of the status bar displays the current editors language.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2603"/> + <location filename="UI/UserInterface.py" line="2608"/> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2610"/> + <location filename="UI/UserInterface.py" line="2615"/> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2617"/> + <location filename="UI/UserInterface.py" line="2622"/> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2626"/> + <location filename="UI/UserInterface.py" line="2631"/> <source><p>This part of the status bar displays the name of the file of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2633"/> + <location filename="UI/UserInterface.py" line="2638"/> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2640"/> + <location filename="UI/UserInterface.py" line="2645"/> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2697"/> + <location filename="UI/UserInterface.py" line="2702"/> <source>External Tools/{0}</source> <translation>Harici Araçlar/{0}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2783"/> + <location filename="UI/UserInterface.py" line="2788"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Sürüm Numaraları</h3><table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5816"/> + <location filename="UI/UserInterface.py" line="5821"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>E-posta adresi veya posta sunucu adresi boş. Lütfen e-posta ayarlarını özellikler diyaloğundan giriniz.</translation> </message> @@ -49073,234 +49078,234 @@ <translation type="obsolete">Yoksay ama hatırla</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>Restart application</source> <translation>Uygulmayı yeniden başlat</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>The application needs to be restarted. Do it now?</source> <translation>Uygulama yeniden başlatılmaya ihtiyaç duyuyor. Şimdi yapılsın mı?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3108"/> + <location filename="UI/UserInterface.py" line="3113"/> <source>Configure Tool Groups ...</source> <translation>Alet Grupları Ayarlanıyor...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3111"/> + <location filename="UI/UserInterface.py" line="3116"/> <source>Configure current Tool Group ...</source> <translation>Geçerli alet grubunu ayarla...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3160"/> + <location filename="UI/UserInterface.py" line="3165"/> <source>&Builtin Tools</source> <translation>Ya&pılandırma Araçları</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3168"/> + <location filename="UI/UserInterface.py" line="3173"/> <source>&Plugin Tools</source> <translation>Eklen&ti Araçları</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3321"/> + <location filename="UI/UserInterface.py" line="3326"/> <source>&Show all</source> <translation>Hepsini Gö&ster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3323"/> + <location filename="UI/UserInterface.py" line="3328"/> <source>&Hide all</source> <translation>&Hepsini gizle</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4052"/> + <location filename="UI/UserInterface.py" line="4057"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt 3 support</source> <translation>Qt3 Desteği</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt v.3 is not supported by eric5.</source> <translation>Qt v.3 eric5 tarafından desteklenmiyor.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source>Problem</source> <translation>Problem</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source>Process Generation Error</source> <translation>İşlem Üretecinde Hata</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4147"/> + <location filename="UI/UserInterface.py" line="4152"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4204"/> + <location filename="UI/UserInterface.py" line="4209"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4248"/> + <location filename="UI/UserInterface.py" line="4253"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4275"/> + <location filename="UI/UserInterface.py" line="4280"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Hali hazırda kullanıcı göstericisi seçilmedi. Lütfen .birini belirlemek için özellikler diyaloğunu kullanının.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4287"/> + <location filename="UI/UserInterface.py" line="4292"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4306"/> + <location filename="UI/UserInterface.py" line="4311"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4346"/> + <location filename="UI/UserInterface.py" line="4351"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4391"/> + <location filename="UI/UserInterface.py" line="4396"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4410"/> + <location filename="UI/UserInterface.py" line="4415"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>External Tools</source> <translation>Harici Araçlar</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4477"/> + <location filename="UI/UserInterface.py" line="4482"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4519"/> + <location filename="UI/UserInterface.py" line="4524"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4612"/> + <location filename="UI/UserInterface.py" line="4617"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source>Documentation Missing</source> <translation>Eksik Belgeleme</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source>Documentation</source> <translation>Belgeleme</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4781"/> + <location filename="UI/UserInterface.py" line="4786"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>PyQt4 Belgelerinin başlama noktası ayarlanmamış.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source>Save tasks</source> <translation>Görevleri kaydet</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source>Read tasks</source> <translation>Görevler Okunuyor</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source>Save session</source> <translation>Oturumu kaydet</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source>Read session</source> <translation>Oturumu oku</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> bir dosya değil.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5641"/> - <source>&Cancel</source> - <translation>&Vazgeç</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="5646"/> + <source>&Cancel</source> + <translation>&Vazgeç</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="5651"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> @@ -49315,37 +49320,37 @@ <translation type="obsolete">Sürüm dosyası indirilemiyor.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>Update available</source> <translation>Güncelleme mümkün değil</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>The update to <b>{0}</b> of eric5 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>Eric5 is up to date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>You are using the latest version of eric5</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Error during updates check</source> <translation>Güncellemeleri kontrol esnasında hata</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Could not perform updates check.</source> <translation>Güncellemelere ulaşamıyorum.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5803"/> + <location filename="UI/UserInterface.py" line="5808"/> <source><h3>Available versions</h3><table></source> <translation><h3>Mümkün sürümler</h3><table></translation> </message> @@ -49355,167 +49360,167 @@ <translation type="obsolete"><b>'{0}' proxy'sini kullanarak bağlan:</b></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source>SSL Errors</source> <translation>SSL Hataları</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>First time usage</source> <translation>İlk kullanım</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>eric5 has not been configured yet. The configuration dialog will be started.</source> <translation>Eric5 henüz ayarlanmadı. Ayarlar Diyaloğu başlatılıyor.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>Symbols</source> <translation>Semboller</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>&Symbols</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1609"/> + <location filename="UI/UserInterface.py" line="1614"/> <source>Toggle the Symbols window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1611"/> + <location filename="UI/UserInterface.py" line="1616"/> <source><b>Toggle the Symbols window</b><p>If the Symbols window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Activate Symbols-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Alt+Shift+Y</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>&Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1631"/> + <location filename="UI/UserInterface.py" line="1636"/> <source>Toggle the Numbers window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1633"/> + <location filename="UI/UserInterface.py" line="1638"/> <source><b>Toggle the Numbers window</b><p>If the Numbers window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Activate Numbers-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Alt+Shift+B</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2205"/> + <location filename="UI/UserInterface.py" line="2210"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2206"/> + <location filename="UI/UserInterface.py" line="2211"/> <source><b>Python 3 Documentation</b><p>Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and <i>/usr/share/doc/packages/python/html</i> on Unix. Set PYTHON3DOCDIR in your environment to override this. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2220"/> + <location filename="UI/UserInterface.py" line="2225"/> <source>Open Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2221"/> + <location filename="UI/UserInterface.py" line="2226"/> <source><b>Python 2 Documentation</b><p>Display the Python 2 documentation. If no documentation directory is configured, the location of the Python 2 documentation is assumed to be the doc directory underneath the location of the configured Python 2 executable on Windows and <i>/usr/share/doc/packages/python/html/python-docs-html</i> on Unix. Set PYTHON2DOCDIR in your environment to override this. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5690"/> + <location filename="UI/UserInterface.py" line="5695"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Open Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Could not start a web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 Web Browser</source> - <translation type="unfinished">Eric5 Web Gözatıcısı</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 &Web Browser...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 Web Browser</source> + <translation type="unfinished">Eric5 Web Gözatıcısı</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 &Web Browser...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1933"/> <source><b>eric5 Web Browser</b><p>Browse the Internet with the eric5 Web Browser.</p></source> <translation type="unfinished"></translation> </message> @@ -49540,78 +49545,78 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New Window</source> <translation type="unfinished">Yeni Pencere</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New &Window</source> <translation type="unfinished">Yeni &Pencere</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> - <source>Ctrl+Shift+N</source> - <comment>File|New Window</comment> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1313"/> + <source>Ctrl+Shift+N</source> + <comment>File|New Window</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1318"/> <source>Open a new eric5 instance</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1314"/> + <location filename="UI/UserInterface.py" line="1319"/> <source><b>New Window</b><p>This opens a new instance of the eric5 IDE.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1776"/> + <location filename="UI/UserInterface.py" line="1781"/> <source>Rerun failed tests of the last run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1778"/> + <location filename="UI/UserInterface.py" line="1783"/> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare &Files side by side...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>Snapshot</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>&Snapshot...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1951"/> - <source>Take snapshots of a screen region</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1952"/> + <source>Snapshot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1952"/> + <source>&Snapshot...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1956"/> + <source>Take snapshots of a screen region</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1957"/> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4457"/> + <location filename="UI/UserInterface.py" line="4462"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric5_zh_CN.GB2312.ts Wed May 02 19:10:17 2012 +0200 +++ b/i18n/eric5_zh_CN.GB2312.ts Fri May 04 20:06:17 2012 +0200 @@ -5164,52 +5164,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="Debugger/DebugViewer.py" line="163"/> + <location filename="Debugger/DebugViewer.py" line="164"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation>输入正则表达式模块(模块间用“;”分隔)以定义变量过滤器。</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="166"/> + <location filename="Debugger/DebugViewer.py" line="167"/> <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source> <translation>输入正则表达式模块(模块间用“;”分隔)以定义变量过滤器。所有与表达式中的一个模块匹配的变量和类属性不会显示在以上列表中。</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="171"/> + <location filename="Debugger/DebugViewer.py" line="172"/> <source>Set</source> <translation>设置</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="149"/> + <location filename="Debugger/DebugViewer.py" line="150"/> <source>Source</source> <translation>源文件</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="214"/> + <location filename="Debugger/DebugViewer.py" line="215"/> <source>Threads:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>Name</source> <translation type="unfinished">名称</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="216"/> + <location filename="Debugger/DebugViewer.py" line="217"/> <source>State</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="413"/> + <location filename="Debugger/DebugViewer.py" line="414"/> <source>waiting at breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="415"/> + <location filename="Debugger/DebugViewer.py" line="416"/> <source>running</source> <translation type="unfinished"></translation> </message> @@ -39217,7 +39217,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/SearchWidget.py" line="160"/> + <location filename="UI/SearchWidget.py" line="163"/> <source>'{0}' was not found.</source> <translation type="unfinished"></translation> </message> @@ -39283,99 +39283,99 @@ <context> <name>Shell</name> <message> - <location filename="QScintilla/Shell.py" line="56"/> + <location filename="QScintilla/Shell.py" line="112"/> <source>Shell - Passive</source> <translation>命令行 - 被动</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="58"/> + <location filename="QScintilla/Shell.py" line="114"/> <source>Shell</source> <translation>命令行</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="60"/> + <location filename="QScintilla/Shell.py" line="116"/> <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. Pressing the up or down key after some text has been entered will start an incremental search.</p><p>The shell has some special commands. 'reset' kills the shell and starts a new one. 'clear' clears the display of the shell window. 'start' is used to switch the shell language and must be followed by a supported language. Supported languages are listed by the 'languages' command. These commands (except 'languages') 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 commandline completions. The relevant entry may be selected from this list. If only one entry is available, this will 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>在输入命令时可以使用方向键。也可以使用向上或向下键重新调用已运行过的命令。在一些文字后按下向上或向下键将开始增量搜索。</p><p>命令行具有一些特殊命令。“reset”重新开始一个新的命令行。“clear”清除命令行窗口的显示。“start”用于开关命令行语言,其后必须加上一个支持的语言。支持的语言可通过“languages”命令列出。这些命令(“languages”除外)也可以通过上下文菜单进行调用。</p><p>在一些输入的文字后按下 Tab 键将显示一个可用命令行列表。可能通过该列表选择相关的条目。仅有一个条目可用时,将自动插入该条目。</p><p>在被动调试模式中,命令行只在要调试的程序连接到 IDE 以后才有效,直到调试完成。这一点将通过不同的提示符和窗口标题来指示。</p></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="127"/> + <location filename="QScintilla/Shell.py" line="183"/> <source>Passive >>> </source> <translation>被动 >>></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="142"/> + <location filename="QScintilla/Shell.py" line="198"/> <source>Start</source> <translation>开始</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="151"/> + <location filename="QScintilla/Shell.py" line="207"/> <source>History</source> <translation>历史</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="152"/> + <location filename="QScintilla/Shell.py" line="208"/> <source>Select entry</source> <translation>选择条目</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="153"/> + <location filename="QScintilla/Shell.py" line="209"/> <source>Show</source> <translation>显示</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="163"/> + <location filename="QScintilla/Shell.py" line="221"/> <source>Clear</source> <translation>清除</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="159"/> + <location filename="QScintilla/Shell.py" line="215"/> <source>Copy</source> <translation>复制</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="160"/> + <location filename="QScintilla/Shell.py" line="216"/> <source>Paste</source> <translation>粘贴</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="164"/> + <location filename="QScintilla/Shell.py" line="222"/> <source>Reset</source> <translation>重置</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="165"/> + <location filename="QScintilla/Shell.py" line="223"/> <source>Reset and Clear</source> <translation>重置并清除</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="170"/> + <location filename="QScintilla/Shell.py" line="228"/> <source>Configure...</source> <translation>配置……</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <source>Select History</source> <translation>选择历史</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="499"/> + <location filename="QScintilla/Shell.py" line="557"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>选择历史条目以执行(最常用的显示在最后)。</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="548"/> + <location filename="QScintilla/Shell.py" line="606"/> <source>Passive Debug Mode</source> <translation>被动调试模式</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="549"/> + <location filename="QScintilla/Shell.py" line="607"/> <source> Not connected</source> <translation> 没有连接</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="551"/> + <location filename="QScintilla/Shell.py" line="609"/> <source>No.</source> <translation>No.</translation> </message> @@ -39402,7 +39402,7 @@ </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <source>Drop Error</source> <translation>降落误差</translation> </message> @@ -39412,36 +39412,41 @@ <translation type="obsolete"><p><b>%1</b> 不是一个文件。</p></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="158"/> + <location filename="QScintilla/Shell.py" line="214"/> <source>Cut</source> <translation type="unfinished">剪切</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="553"/> + <location filename="QScintilla/Shell.py" line="611"/> <source>{0} on {1}, {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="614"/> + <location filename="QScintilla/Shell.py" line="672"/> <source>StdOut: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="622"/> + <location filename="QScintilla/Shell.py" line="680"/> <source>StdErr: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1165"/> + <location filename="QScintilla/Shell.py" line="1223"/> <source>Shell language "{0}" not supported. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1435"/> + <location filename="QScintilla/Shell.py" line="1493"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="QScintilla/Shell.py" line="219"/> + <source>Find</source> + <translation type="unfinished">查找</translation> + </message> </context> <context> <name>ShellHistoryDialog</name> @@ -51344,57 +51349,57 @@ <translation type="obsolete"><p>无法读取 Qt 样式表文件 <b>%1</b> 。<br>原因: %2</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>Project-Viewer</source> <translation>项目浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>Multiproject-Viewer</source> <translation>多重项目浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>Debug-Viewer</source> <translation>调试浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>Log-Viewer</source> <translation>日志浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>Task-Viewer</source> <translation>任务浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Template-Viewer</source> <translation>模板浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Terminal</source> <translation>终端</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-Browser</source> <translation>文件浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>Shell</source> <translation>命令行</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>Vertical Toolbox</source> <translation>纵向工具箱</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>Horizontal Toolbox</source> <translation>横向工具箱</translation> </message> @@ -51414,108 +51419,108 @@ <translation type="obsolete">%1 - %2 - %3 - 被动模式</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> + <location filename="UI/UserInterface.py" line="1297"/> <source>Quit</source> <translation>退出</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> + <location filename="UI/UserInterface.py" line="1297"/> <source>&Quit</source> <translation>退出(&Q)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1292"/> - <source>Ctrl+Q</source> - <comment>File|Quit</comment> - <translation>Ctrl+Q</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1297"/> + <source>Ctrl+Q</source> + <comment>File|Quit</comment> + <translation>Ctrl+Q</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1302"/> <source>Quit the IDE</source> <translation>退出程序</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1298"/> + <location filename="UI/UserInterface.py" line="1303"/> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>退出程序</b><p>退出本程序。 先保存任何未保存的更改。任何被调试的 Python 程序都将停止,并将选项写入磁盘。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1324"/> - <source>Edit Profile</source> - <translation>编辑模式</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1329"/> + <source>Edit Profile</source> + <translation>编辑模式</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1334"/> <source>Activate the edit view profile</source> <translation>激活编辑视图模式</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1330"/> + <location filename="UI/UserInterface.py" line="1335"/> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>编辑模式</b><p>激活“编辑视图模式”。如果激活了该模式,则显示的窗口将按“视图模式配置”对话框进行配置。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1339"/> - <source>Debug Profile</source> - <translation>调试模式</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1344"/> + <source>Debug Profile</source> + <translation>调试模式</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1349"/> <source>Activate the debug view profile</source> <translation>激活调试模式</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1346"/> + <location filename="UI/UserInterface.py" line="1351"/> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>调试模式</b><p>激活“调试视图模式”。如果激活了该模式,则显示的窗口将按“视图模式配置”对话框进行配置。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1355"/> + <location filename="UI/UserInterface.py" line="1360"/> <source>&Project-Viewer</source> <translation>项目浏览器(&P)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1357"/> + <location filename="UI/UserInterface.py" line="1362"/> <source>Toggle the Project-Viewer window</source> <translation>切换项目浏览器窗口</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1358"/> + <location filename="UI/UserInterface.py" line="1363"/> <source><b>Toggle the Project-Viewer window</b><p>If the Project-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换项目浏览器窗口</b><p>在项目浏览器窗口的显示和隐藏状态间切换。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Activate Project-Viewer</source> <translation>激活项目浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1366"/> + <location filename="UI/UserInterface.py" line="1371"/> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1375"/> + <location filename="UI/UserInterface.py" line="1380"/> <source>&Multiproject-Viewer</source> <translation>多重项目浏览器(&M)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1378"/> + <location filename="UI/UserInterface.py" line="1383"/> <source>Toggle the Multiproject-Viewer window</source> <translation>切换多重项目浏览器窗口</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1379"/> + <location filename="UI/UserInterface.py" line="1384"/> <source><b>Toggle the Multiproject-Viewer window</b><p>If the Multiproject-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换多重项目浏览器窗口</b><p>在多重项目浏览器窗口的显示和隐藏状态间切换。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Activate Multiproject-Viewer</source> <translation>激活多重项目浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1387"/> + <location filename="UI/UserInterface.py" line="1392"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> @@ -51545,232 +51550,232 @@ <translation type="obsolete">激活调试浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1416"/> + <location filename="UI/UserInterface.py" line="1421"/> <source>&Shell</source> <translation>命令行(&S)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1418"/> + <location filename="UI/UserInterface.py" line="1423"/> <source>Toggle the Shell window</source> <translation>切换命令行窗口</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1419"/> + <location filename="UI/UserInterface.py" line="1424"/> <source><b>Toggle the Shell window</b><p>If the Shell window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换命令行窗口</b><p>在命令行窗口的显示和隐藏状态间切换。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Activate Shell</source> <translation>激活命令行</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1428"/> + <location filename="UI/UserInterface.py" line="1433"/> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1437"/> + <location filename="UI/UserInterface.py" line="1442"/> <source>Te&rminal</source> <translation>终端(&r)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1439"/> + <location filename="UI/UserInterface.py" line="1444"/> <source>Toggle the Terminal window</source> <translation>切换终端窗口</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1440"/> + <location filename="UI/UserInterface.py" line="1445"/> <source><b>Toggle the Terminal window</b><p>If the Terminal window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换终端窗口</b><p>在终端窗口的显示和隐藏状态间切换。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Activate Terminal</source> <translation>激活终端</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1448"/> + <location filename="UI/UserInterface.py" line="1453"/> <source>Alt+Shift+R</source> <translation>Alt+Shift+R</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>File-&Browser</source> <translation>文件浏览器(&B)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1459"/> + <location filename="UI/UserInterface.py" line="1464"/> <source>Toggle the File-Browser window</source> <translation>切换文件浏览器窗口</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1460"/> + <location filename="UI/UserInterface.py" line="1465"/> <source><b>Toggle the File-Browser window</b><p>If the File-Browser window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换文件浏览器窗口</b><p>在文件浏览器窗口的显示和隐藏状态间切换。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Activate File-Browser</source> <translation>激活文件浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1469"/> + <location filename="UI/UserInterface.py" line="1474"/> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1478"/> + <location filename="UI/UserInterface.py" line="1483"/> <source>&Log-Viewer</source> <translation>日志浏览器(&L)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1480"/> + <location filename="UI/UserInterface.py" line="1485"/> <source>Toggle the Log-Viewer window</source> <translation>切换日志浏览器窗口</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1481"/> + <location filename="UI/UserInterface.py" line="1486"/> <source><b>Toggle the Log-Viewer window</b><p>If the Log-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换日志浏览器窗口</b><p>在日志浏览器窗口的显示和隐藏状态间切换。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Activate Log-Viewer</source> <translation>激活日志浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1489"/> + <location filename="UI/UserInterface.py" line="1494"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1498"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>T&ask-Viewer</source> <translation>任务浏览器(&a)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1500"/> + <location filename="UI/UserInterface.py" line="1505"/> <source>Toggle the Task-Viewer window</source> <translation>切换任务浏览器窗口</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1501"/> + <location filename="UI/UserInterface.py" line="1506"/> <source><b>Toggle the Task-Viewer window</b><p>If the Task-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换任务浏览器窗口</b><p>在任务浏览器窗口的显示和隐藏状态间切换。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Activate Task-Viewer</source> <translation>激活任务浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1514"/> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1518"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Temp&late-Viewer</source> <translation>模板浏览器(&l)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1520"/> + <location filename="UI/UserInterface.py" line="1525"/> <source>Toggle the Template-Viewer window</source> <translation>切换模板浏览器窗口</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1522"/> + <location filename="UI/UserInterface.py" line="1527"/> <source><b>Toggle the Template-Viewer window</b><p>If the Template-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换模板浏览器窗口</b><p>在模板浏览器窗口的显示和隐藏状态间切换。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Activate Template-Viewer</source> <translation>激活模板浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1530"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1539"/> + <location filename="UI/UserInterface.py" line="1544"/> <source>&Vertical Toolbox</source> <translation>纵向工具箱(&V)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1541"/> + <location filename="UI/UserInterface.py" line="1546"/> <source>Toggle the Vertical Toolbox window</source> <translation>切换纵向工具箱窗口</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1542"/> + <location filename="UI/UserInterface.py" line="1547"/> <source><b>Toggle the Vertical Toolbox window</b><p>If the Vertical Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换纵向工具箱窗口</b><p>在纵向工具箱窗口的显示和隐藏状态间切换。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1550"/> + <location filename="UI/UserInterface.py" line="1555"/> <source>&Horizontal Toolbox</source> <translation>横向工具箱(&H)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1553"/> + <location filename="UI/UserInterface.py" line="1558"/> <source>Toggle the Horizontal Toolbox window</source> <translation>切换横向工具箱窗口</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1554"/> + <location filename="UI/UserInterface.py" line="1559"/> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>切换横向工具箱窗口</b><p>在横向工具箱窗口的显示和隐藏状态间切换。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>What's This?</source> - <translation>这是什么?</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>&What's This?</source> - <translation>这是什么(&W)?</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1651"/> - <source>Shift+F1</source> - <translation>Shift+F1</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1656"/> + <source>What's This?</source> + <translation>这是什么?</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source>&What's This?</source> + <translation>这是什么(&W)?</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source>Shift+F1</source> + <translation>Shift+F1</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1661"/> <source>Context sensitive help</source> <translation>背景帮助</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1657"/> + <location filename="UI/UserInterface.py" line="1662"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>显示背景帮助</b><p>在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1668"/> - <source>Helpviewer</source> - <translation>帮助浏览器</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1668"/> - <source>&Helpviewer...</source> - <translation>帮助浏览器(&H)</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1668"/> - <source>F1</source> - <translation>F1</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1673"/> + <source>Helpviewer</source> + <translation>帮助浏览器</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1673"/> + <source>&Helpviewer...</source> + <translation>帮助浏览器(&H)</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1673"/> + <source>F1</source> + <translation>F1</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1678"/> <source>Open the helpviewer window</source> <translation>打开帮助浏览器窗口</translation> </message> @@ -51780,32 +51785,32 @@ <translation type="obsolete"><b>帮助浏览器</b><p>显示帮助浏览器窗口。该窗口将显示 HTML 帮助文件。具有链接导航、设置书签、打印显示的帮助和其它更多的功能。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show Versions</source> <translation>显示版本</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1691"/> + <location filename="UI/UserInterface.py" line="1696"/> <source>Show &Versions</source> <translation>显示版本(&V)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1693"/> + <location filename="UI/UserInterface.py" line="1698"/> <source>Display version information</source> <translation>显示版本信息</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1694"/> + <location filename="UI/UserInterface.py" line="1699"/> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>显示版本</b><p>显示版本信息。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1703"/> + <location filename="UI/UserInterface.py" line="1708"/> <source>Check for Updates</source> <translation>检查更新</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1701"/> + <location filename="UI/UserInterface.py" line="1706"/> <source>Check for &Updates...</source> <translation>检查更新(&U)……</translation> </message> @@ -51815,17 +51820,17 @@ <translation type="obsolete"><b>检查更新……</b><p>从互联网检查 Eric4 的更新。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show downloadable versions</source> <translation>显示可下载的版本</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Show &downloadable versions...</source> <translation>显示可下载的版本(&d)……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1714"/> + <location filename="UI/UserInterface.py" line="1719"/> <source>Show the versions available for download</source> <translation>显示可以下载的版本</translation> </message> @@ -51835,122 +51840,122 @@ <translation type="obsolete"><b>显示可下载版本……</b><p>显示可以从互联网下载的 Eric4 版本。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Report Bug</source> <translation>报告错误</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1724"/> + <location filename="UI/UserInterface.py" line="1729"/> <source>Report &Bug...</source> <translation>报告错误(&B)……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1726"/> + <location filename="UI/UserInterface.py" line="1731"/> <source>Report a bug</source> <translation>报告一个错误</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1727"/> + <location filename="UI/UserInterface.py" line="1732"/> <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> <translation><b>报告错误……</b><p>打开一个对话框并报告一个错误。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request Feature</source> <translation>请求功能</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1739"/> <source>Request &Feature...</source> <translation>请求功能(&F)……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1736"/> + <location filename="UI/UserInterface.py" line="1741"/> <source>Send a feature request</source> <translation>发送一个功能请求</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1737"/> + <location filename="UI/UserInterface.py" line="1742"/> <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> <translation><b>请求功能……</b><p>打开一个对话框并发送一个功能请求。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2450"/> + <location filename="UI/UserInterface.py" line="2455"/> <source>Unittest</source> <translation>单元测试</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1746"/> - <source>&Unittest...</source> - <translation>单元测试(&U)……</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1750"/> - <source>Start unittest dialog</source> - <translation>打开单元测试对话框</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1751"/> + <source>&Unittest...</source> + <translation>单元测试(&U)……</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1755"/> + <source>Start unittest dialog</source> + <translation>打开单元测试对话框</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1756"/> <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> <translation><b>单元测试</b><p>执行单元测试。通过对话框可以选择和运行一个单元测试组件。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> + <location filename="UI/UserInterface.py" line="1764"/> <source>Unittest Restart</source> <translation>单元测试重启</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> - <source>&Restart Unittest...</source> - <translation>重启单元测试(&R)……</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1763"/> - <source>Restart last unittest</source> - <translation>重启最后的单元测试</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1764"/> + <source>&Restart Unittest...</source> + <translation>重启单元测试(&R)……</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1768"/> + <source>Restart last unittest</source> + <translation>重启最后的单元测试</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1769"/> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation><b>重启单元测试</b><p>重新启动最后执行的单元测试。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1786"/> + <location filename="UI/UserInterface.py" line="1791"/> <source>Unittest Script</source> <translation>脚本单元测试</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1786"/> - <source>Unittest &Script...</source> - <translation>脚本单元测试(&S)……</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1790"/> - <source>Run unittest with current script</source> - <translation>对当前脚本运行单元测试</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1791"/> + <source>Unittest &Script...</source> + <translation>脚本单元测试(&S)……</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1795"/> + <source>Run unittest with current script</source> + <translation>对当前脚本运行单元测试</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1796"/> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>脚本单元测试</b><p>对当前脚本运动单元测试。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4052"/> + <location filename="UI/UserInterface.py" line="4057"/> <source>Unittest Project</source> <translation>项目单元测试</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1799"/> - <source>Unittest &Project...</source> - <translation>项目单元测试(&P)……</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1803"/> - <source>Run unittest with current project</source> - <translation>对当前项目运行单元测试</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1804"/> + <source>Unittest &Project...</source> + <translation>项目单元测试(&P)……</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1808"/> + <source>Run unittest with current project</source> + <translation>对当前项目运行单元测试</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1809"/> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>项目单元测试</b><p>对当前项目运行单元测试。</p></translation> </message> @@ -51995,107 +52000,107 @@ <translation type="obsolete"><b>Qt 语言家 3</b><p>开启 Qt 语言家 3。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>Qt-Designer 4</source> <translation>Qt 设计师 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1820"/> + <location filename="UI/UserInterface.py" line="1825"/> <source>&Designer 4...</source> <translation>设计师(&D) 4……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1823"/> + <location filename="UI/UserInterface.py" line="1828"/> <source>Start Qt-Designer 4</source> <translation>开启 Qt 设计师 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1824"/> + <location filename="UI/UserInterface.py" line="1829"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> <translation><b>Qt 设计师 4</b><p>开启 Qt 设计师 4。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>Qt-Linguist 4</source> <translation>Qt 语言家 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1840"/> + <location filename="UI/UserInterface.py" line="1845"/> <source>&Linguist 4...</source> <translation>语言家(&L) 4……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1843"/> + <location filename="UI/UserInterface.py" line="1848"/> <source>Start Qt-Linguist 4</source> <translation>开启 Qt 语言家 4</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1844"/> + <location filename="UI/UserInterface.py" line="1849"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> <translation><b>Qt 语言家 4</b><p>开启 Qt 语言家 4。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>UI Previewer</source> <translation>用户界面预览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1853"/> + <location filename="UI/UserInterface.py" line="1858"/> <source>&UI Previewer...</source> <translation>用户界面(&U)预览器……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1856"/> + <location filename="UI/UserInterface.py" line="1861"/> <source>Start the UI Previewer</source> <translation>开启用户界面预览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1857"/> + <location filename="UI/UserInterface.py" line="1862"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation><b>助词界面预览器</b><p>开启用户界面预览器。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>Translations Previewer</source> <translation>翻译预览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1864"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>&Translations Previewer...</source> <translation>翻译预览器(&T)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1867"/> + <location filename="UI/UserInterface.py" line="1872"/> <source>Start the Translations Previewer</source> <translation>开启翻译预览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1868"/> + <location filename="UI/UserInterface.py" line="1873"/> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>翻译预览器</b><p>开启翻译预览器。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>Compare Files</source> <translation>比较文件</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1875"/> + <location filename="UI/UserInterface.py" line="1880"/> <source>&Compare Files...</source> <translation>比较文件(&C)……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1890"/> + <location filename="UI/UserInterface.py" line="1895"/> <source>Compare two files</source> <translation>比较两个文件</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1879"/> + <location filename="UI/UserInterface.py" line="1884"/> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>比较文件</b><p>打开对话框比较两个文件。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare Files side by side</source> <translation>并排比较文件</translation> </message> @@ -52105,112 +52110,112 @@ <translation type="obsolete">并排比较文件(&s)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1891"/> + <location filename="UI/UserInterface.py" line="1896"/> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>并排比较文件</b><p>打开对话框比较两个文件,并排显示结果。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1915"/> + <location filename="UI/UserInterface.py" line="1920"/> <source>Mini Editor</source> <translation>小型编辑器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1911"/> - <source>Mini &Editor...</source> - <translation>小型编辑器(&E)……</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1916"/> + <source>Mini &Editor...</source> + <translation>小型编辑器(&E)……</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1921"/> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>小型编辑器</b><p>打开一个具有简化功能编辑器的对话框。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>Preferences</source> <translation>参数选择</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1959"/> + <location filename="UI/UserInterface.py" line="1964"/> <source>&Preferences...</source> <translation>参数选择(&P)……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1962"/> + <location filename="UI/UserInterface.py" line="1967"/> <source>Set the prefered configuration</source> <translation>设定偏好配置</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1963"/> + <location filename="UI/UserInterface.py" line="1968"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>参数选择</b><p>将应用程序的配置项设定为你喜欢的值。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>Export Preferences</source> <translation>导出首选项</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1972"/> + <location filename="UI/UserInterface.py" line="1977"/> <source>E&xport Preferences...</source> <translation>导出首选项(&x)……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1975"/> + <location filename="UI/UserInterface.py" line="1980"/> <source>Export the current configuration</source> <translation>导出当前配置</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1976"/> + <location filename="UI/UserInterface.py" line="1981"/> <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> <translation><b>导出首选项</b><p>将当前配置导出到一个文件中。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1983"/> - <source>Import Preferences</source> - <translation>导入首选项</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1983"/> - <source>I&mport Preferences...</source> - <translation>导入首选项(&m)……</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1986"/> - <source>Import a previously exported configuration</source> - <translation>导入以前导出的配置</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1988"/> + <source>Import Preferences</source> + <translation>导入首选项</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1988"/> + <source>I&mport Preferences...</source> + <translation>导入首选项(&m)……</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1991"/> + <source>Import a previously exported configuration</source> + <translation>导入以前导出的配置</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1993"/> <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> <translation><b>导入首选项</b><p>导入以前导出的配置。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload APIs</source> <translation>重新载入 API</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1995"/> + <location filename="UI/UserInterface.py" line="2000"/> <source>Reload &APIs</source> <translation>重新载入 &API</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1997"/> + <location filename="UI/UserInterface.py" line="2002"/> <source>Reload the API information</source> <translation>重新载入 API 信息</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1998"/> + <location filename="UI/UserInterface.py" line="2003"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation><b>重新载入 API</b><p>重新载入 API 信息。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2008"/> + <location filename="UI/UserInterface.py" line="2013"/> <source>Show external tools</source> <translation>显示外部工具</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2005"/> + <location filename="UI/UserInterface.py" line="2010"/> <source>Show external &tools</source> <translation>显示外部工具(&t)</translation> </message> @@ -52220,212 +52225,212 @@ <translation type="obsolete"><b>显示外部工具</b><p>打开一个对话框显示 Eric4 使用的所有外部工具的路径和版本。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>View Profiles</source> <translation>视图模式</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2017"/> + <location filename="UI/UserInterface.py" line="2022"/> <source>&View Profiles...</source> <translation>视图模式(&V)……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2020"/> + <location filename="UI/UserInterface.py" line="2025"/> <source>Configure view profiles</source> <translation>配置视图模式</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2021"/> + <location filename="UI/UserInterface.py" line="2026"/> <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> <translation><b>视图模式</b><p>配置视图模式。通过该对话框可以为预先确定的视图设置多个窗口的可见性。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Toolbars</source> <translation>工具栏</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2035"/> <source>Tool&bars...</source> <translation>工具栏(&b)……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2033"/> + <location filename="UI/UserInterface.py" line="2038"/> <source>Configure toolbars</source> <translation>配置工具栏</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2034"/> + <location filename="UI/UserInterface.py" line="2039"/> <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> <translation><b>工具栏</b><p>配置工具栏通过该对话框可以改变显示于多个工具栏的动作,还可以自定义工具栏。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard Shortcuts</source> <translation>键盘快捷键</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2043"/> + <location filename="UI/UserInterface.py" line="2048"/> <source>Keyboard &Shortcuts...</source> <translation>键盘快捷键(&S)……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2046"/> + <location filename="UI/UserInterface.py" line="2051"/> <source>Set the keyboard shortcuts</source> <translation>设置键盘快捷键</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2047"/> + <location filename="UI/UserInterface.py" line="2052"/> <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> <translation><b>键盘快捷键</b><p>将程序的键盘快捷键设置成你喜欢的按键。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5127"/> + <location filename="UI/UserInterface.py" line="5132"/> <source>Export Keyboard Shortcuts</source> <translation>导出键盘快捷键</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2055"/> - <source>&Export Keyboard Shortcuts...</source> - <translation>导出键盘快捷键(&E)……</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2059"/> - <source>Export the keyboard shortcuts</source> - <translation>导出键盘快捷键</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2060"/> + <source>&Export Keyboard Shortcuts...</source> + <translation>导出键盘快捷键(&E)……</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2064"/> + <source>Export the keyboard shortcuts</source> + <translation>导出键盘快捷键</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2065"/> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>导出键盘快捷键</b><p>导出程序的键盘快捷键。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Import Keyboard Shortcuts</source> <translation>导入键盘快捷键</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2067"/> - <source>&Import Keyboard Shortcuts...</source> - <translation>导入键盘快捷键(&I)……</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2071"/> - <source>Import the keyboard shortcuts</source> - <translation>导入键盘快捷键</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2072"/> + <source>&Import Keyboard Shortcuts...</source> + <translation>导入键盘快捷键(&I)……</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2076"/> + <source>Import the keyboard shortcuts</source> + <translation>导入键盘快捷键</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2077"/> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>导入键盘快捷键</b><p>导入程序的键盘快捷键。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Activate current editor</source> <translation>激活当前编辑器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2079"/> + <location filename="UI/UserInterface.py" line="2084"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Show next</source> <translation>显示下一个</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2088"/> + <location filename="UI/UserInterface.py" line="2093"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Show previous</source> <translation>显示上一个</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2096"/> + <location filename="UI/UserInterface.py" line="2101"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Switch between tabs</source> <translation>在选项卡间切换</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2104"/> + <location filename="UI/UserInterface.py" line="2109"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>Plugin Infos</source> <translation>插件信息</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2112"/> + <location filename="UI/UserInterface.py" line="2117"/> <source>&Plugin Infos...</source> <translation>插件信息(&P)……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2115"/> + <location filename="UI/UserInterface.py" line="2120"/> <source>Show Plugin Infos</source> <translation>显示插件信息</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2116"/> + <location filename="UI/UserInterface.py" line="2121"/> <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> <translation><b>插件信息……</b><p>打开一个对话框,显示与已载入插件有关的一些信息。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2127"/> + <location filename="UI/UserInterface.py" line="2132"/> <source>Install Plugins</source> <translation>安装插件</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2124"/> + <location filename="UI/UserInterface.py" line="2129"/> <source>&Install Plugins...</source> <translation>安装插件(&I)……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2128"/> + <location filename="UI/UserInterface.py" line="2133"/> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>安装插件……</b><p>打开一个对话框安装或更新插件。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2138"/> + <location filename="UI/UserInterface.py" line="2143"/> <source>Uninstall Plugin</source> <translation>卸载插件</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2135"/> + <location filename="UI/UserInterface.py" line="2140"/> <source>&Uninstall Plugin...</source> <translation>卸载插件(&U)……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2139"/> + <location filename="UI/UserInterface.py" line="2144"/> <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> <translation><b>卸载插件……</b><p>打开一个对话框卸载插件。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2146"/> - <source>Plugin Repository</source> - <translation>插件储存库</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2146"/> - <source>Plugin &Repository...</source> - <translation>插件储存库(&R)……</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2149"/> - <source>Show Plugins available for download</source> - <translation>显示可以下载的插件</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2151"/> + <source>Plugin Repository</source> + <translation>插件储存库</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2151"/> + <source>Plugin &Repository...</source> + <translation>插件储存库(&R)……</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2154"/> + <source>Show Plugins available for download</source> + <translation>显示可以下载的插件</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2156"/> <source><b>Plugin Repository...</b><p>This opens a dialog, that shows a list of plugins available on the Internet.</p></source> <translation><b>插件储存库……</b><p>打开一个对话框,显示互联网上可用的插件列表。</p></translation> </message> @@ -52450,42 +52455,42 @@ <translation type="obsolete"><b>Qt 文档</b><p>显示 Qt 文档。根据你的设置,显示 Eric 的联机帮助浏览器中的帮助,或者执行网络浏览器或 Qt 助手。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt4 Documentation</source> <translation>Qt4 文档</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2175"/> + <location filename="UI/UserInterface.py" line="2180"/> <source>Qt&4 Documentation</source> <translation>Qt&4 文档</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2177"/> + <location filename="UI/UserInterface.py" line="2182"/> <source>Open Qt4 Documentation</source> <translation>打开 Qt4 文档</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2178"/> + <location filename="UI/UserInterface.py" line="2183"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Qt4 文档</b><p>显示 Qt4 文档。根据你的设置,显示 Eric 的联机帮助浏览器中的帮助,或者执行网络浏览器或 Qt 助手。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>PyQt4 Documentation</source> <translation>PyQt4 文档</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2187"/> + <location filename="UI/UserInterface.py" line="2192"/> <source>P&yQt4 Documentation</source> <translation>P&yQt4 文档</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2189"/> + <location filename="UI/UserInterface.py" line="2194"/> <source>Open PyQt4 Documentation</source> <translation>打开 PyQt4 文档</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2190"/> + <location filename="UI/UserInterface.py" line="2195"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>PyQt4 文档</b><p>显示 PyQt4 文档。根据你的设置,显示 Eric 的联机帮助浏览器中的帮助,或者执行网络浏览器或 Qt 助手。</p></translation> </message> @@ -52525,17 +52530,17 @@ <translation type="obsolete"><b>Python 文档</b><p>显示 Python 文档。如果没有配置文档文件夹,则在 Windows 下将 Python 文档位置指定为可执行 Python 下的 doc 文件夹,在 Unix 下为 <i>/usr/share/doc/packages/python/html</i> 。在你的环境中设置 PYTHONDOCDIR 可以进行控制。 </p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>Eric API Documentation</source> <translation>Eric API 文档</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2239"/> + <location filename="UI/UserInterface.py" line="2244"/> <source>&Eric API Documentation</source> <translation>&Eric API 文档</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2241"/> + <location filename="UI/UserInterface.py" line="2246"/> <source>Open Eric API Documentation</source> <translation>打开 Eric API 文档</translation> </message> @@ -52545,117 +52550,117 @@ <translation type="obsolete"><b>Eric API 文档</b><p>显示 Eric API 文档。文档位置为 Eric4 安装文件夹下的文档或源代码子文件夹。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2296"/> + <location filename="UI/UserInterface.py" line="2301"/> <source>&Unittest</source> <translation>单元测试(&U)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2313"/> - <source>E&xtras</source> - <translation>附加程序(&x)</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2318"/> + <source>E&xtras</source> + <translation>附加程序(&x)</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2323"/> <source>Wi&zards</source> <translation>向导(&z)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2325"/> + <location filename="UI/UserInterface.py" line="2330"/> <source>&Tools</source> <translation>工具(&T)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2328"/> + <location filename="UI/UserInterface.py" line="2333"/> <source>Select Tool Group</source> <translation>选择工具组</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2334"/> + <location filename="UI/UserInterface.py" line="2339"/> <source>Se&ttings</source> <translation>设置(&t)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2352"/> + <location filename="UI/UserInterface.py" line="2357"/> <source>&Window</source> <translation>窗口(&W)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2358"/> + <location filename="UI/UserInterface.py" line="2363"/> <source>&Toolbars</source> <translation>工具栏(&T)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2369"/> + <location filename="UI/UserInterface.py" line="2374"/> <source>P&lugins</source> <translation>插件(&l)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2378"/> - <source>Configure...</source> - <translation>配置……</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2383"/> + <source>Configure...</source> + <translation>配置……</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2388"/> <source>&Help</source> <translation>帮助(&H)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2449"/> - <source>Tools</source> - <translation>工具</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2451"/> - <source>Settings</source> - <translation>设置</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="4275"/> - <source>Help</source> - <translation>帮助</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="2453"/> - <source>Profiles</source> - <translation>模式</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2454"/> + <source>Tools</source> + <translation>工具</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2456"/> + <source>Settings</source> + <translation>设置</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4280"/> + <source>Help</source> + <translation>帮助</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2458"/> + <source>Profiles</source> + <translation>模式</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2459"/> <source>Plugins</source> <translation>插件</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2596"/> + <location filename="UI/UserInterface.py" line="2601"/> <source><p>This part of the status bar displays the current editors language.</p></source> <translation><p>状态栏的这一部分显示当前编辑器语言。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2603"/> + <location filename="UI/UserInterface.py" line="2608"/> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation><p>状态栏的这一部分显示当前编辑器编码。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2610"/> + <location filename="UI/UserInterface.py" line="2615"/> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation><p>状态栏的这一部分显示当前编辑器行尾设置。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2617"/> + <location filename="UI/UserInterface.py" line="2622"/> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>状态栏的这一部分显示当前编辑器文件是否可写。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2626"/> + <location filename="UI/UserInterface.py" line="2631"/> <source><p>This part of the status bar displays the name of the file of the current editor.</p></source> <translation><p>状态栏的这一部分显示当前编辑的文件名称。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2633"/> + <location filename="UI/UserInterface.py" line="2638"/> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation><p>状态栏的这一部分显示当前编辑的行号。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2640"/> + <location filename="UI/UserInterface.py" line="2645"/> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>状态栏的这一部分显示当前编辑器的光标位置。</p></translation> </message> @@ -52665,7 +52670,7 @@ <translation type="obsolete">外部工具 / %1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2783"/> + <location filename="UI/UserInterface.py" line="2788"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>版本号</h3><table></translation> </message> @@ -52710,62 +52715,62 @@ <translation type="obsolete"><tr><td><b>%1</b></td><td>%2</td></tr></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5816"/> + <location filename="UI/UserInterface.py" line="5821"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2834"/> + <location filename="UI/UserInterface.py" line="2839"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>电子邮件地址或邮件服务器地址为空。请在参数选择对话框中配置你的电子邮件设置。</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>Restart application</source> <translation>重启程序</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3076"/> + <location filename="UI/UserInterface.py" line="3081"/> <source>The application needs to be restarted. Do it now?</source> <translation>程序需要重启。现在重启?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3108"/> + <location filename="UI/UserInterface.py" line="3113"/> <source>Configure Tool Groups ...</source> <translation>配置工具组……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3111"/> + <location filename="UI/UserInterface.py" line="3116"/> <source>Configure current Tool Group ...</source> <translation>配置当前工具组……</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3160"/> + <location filename="UI/UserInterface.py" line="3165"/> <source>&Builtin Tools</source> <translation>内建工具(&B)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3168"/> + <location filename="UI/UserInterface.py" line="3173"/> <source>&Plugin Tools</source> <translation>插件工具(&P)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3321"/> + <location filename="UI/UserInterface.py" line="3326"/> <source>&Show all</source> <translation>全部显示(&S)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3323"/> + <location filename="UI/UserInterface.py" line="3328"/> <source>&Hide all</source> <translation>全部隐藏(&H)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4052"/> + <location filename="UI/UserInterface.py" line="4057"/> <source>There is no main script defined for the current project. Aborting</source> <translation>当前项目未定义主脚本。终止</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source>Problem</source> <translation>问题</translation> </message> @@ -52775,7 +52780,7 @@ <translation type="obsolete"><p>文件 <b>%1</b> 不存在或长度为零。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source>Process Generation Error</source> <translation>进程生成错误</translation> </message> @@ -52795,17 +52800,17 @@ <translation type="obsolete"><p>无法开启 Qt 助手。<br>确保其有效如 <b>%1</b>。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Open Browser</source> <translation type="unfinished">打开浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4973"/> + <location filename="UI/UserInterface.py" line="4978"/> <source>Could not start a web browser</source> <translation type="unfinished">无法启动网络浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4275"/> + <location filename="UI/UserInterface.py" line="4280"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>目前没有选择自定义浏览器。请使用参数选择对话框指定一个。</translation> </message> @@ -52815,7 +52820,7 @@ <translation type="obsolete"><p>无法开启自定义浏览器。<br>确保其有效如 <b>%1</b>。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4306"/> + <location filename="UI/UserInterface.py" line="4311"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>无法开启帮助浏览器。<br>确保其有效如 <b>%1</b>。</p></translation> </message> @@ -52830,7 +52835,7 @@ <translation type="obsolete"><p>无法开启翻译预览器。<br>确保其有效如 <b>%1</b>。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>External Tools</source> <translation>外部工具</translation> </message> @@ -52864,7 +52869,7 @@ </translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source>Documentation Missing</source> <translation>文档丢失</translation> </message> @@ -52874,12 +52879,12 @@ <translation type="obsolete"><p>未找到文档起点“<b>%1</b>”。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source>Documentation</source> <translation>文档</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4781"/> + <location filename="UI/UserInterface.py" line="4786"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>未配置 PyQt4 文档起点。</p></translation> </message> @@ -52904,7 +52909,7 @@ <translation type="obsolete">Eric4 键盘快捷键文件 (*.e4k *.e4kz);;Eric3 键盘快捷键文件 (*.e3k *.e3kz)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source>Save tasks</source> <translation>保存任务</translation> </message> @@ -52914,7 +52919,7 @@ <translation type="obsolete"><p>无法写入任务文件 <b>%1</b> 。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source>Read tasks</source> <translation>读取任务</translation> </message> @@ -52929,7 +52934,7 @@ <translation type="obsolete"><p>不支持任务文件 <b>%1</b> 的格式。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source>Save session</source> <translation>保存会话</translation> </message> @@ -52939,7 +52944,7 @@ <translation type="obsolete"><p>会话文件 <b>%1</b> 无法写入。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source>Read session</source> <translation>读取会话</translation> </message> @@ -52954,7 +52959,7 @@ <translation type="obsolete"><p>不支持会话文件 <b>%1</b> 的格式。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source>Drop Error</source> <translation>降落误差</translation> </message> @@ -52964,7 +52969,7 @@ <translation type="obsolete"><p><b>%1</b> 不是一个文件。</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Error during updates check</source> <translation>检查更新时出错</translation> </message> @@ -52974,7 +52979,7 @@ <translation type="obsolete">代理使用被激活但是没有配置代理主机。</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5641"/> + <location filename="UI/UserInterface.py" line="5646"/> <source>&Cancel</source> <translation>取消(&C)</translation> </message> @@ -52994,7 +52999,7 @@ <translation type="obsolete">无法下载版本文件。</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>Update available</source> <translation>可用更新</translation> </message> @@ -53014,12 +53019,12 @@ <translation type="obsolete">当前使用的是 Eric4 最新的版本</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5782"/> + <location filename="UI/UserInterface.py" line="5787"/> <source>Could not perform updates check.</source> <translation>无法完成更新检查。</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5803"/> + <location filename="UI/UserInterface.py" line="5808"/> <source><h3>Available versions</h3><table></source> <translation><h3>可用版本</h3><table></translation> </message> @@ -53034,7 +53039,7 @@ <translation type="obsolete"><b>连接到代理 '%1' ,使用:</b></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source>SSL Errors</source> <translation>SSL 错误</translation> </message> @@ -53044,7 +53049,7 @@ <translation type="obsolete"><p>SSL 错误:</p><p>%1</p><p>要忽略这些错误吗?</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>First time usage</source> <translation>第一次使用</translation> </message> @@ -53054,82 +53059,82 @@ <translation type="obsolete">尚未配置 Eric4。将打开配置对话框。</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>Left Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1562"/> + <location filename="UI/UserInterface.py" line="1567"/> <source>&Left Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1564"/> + <location filename="UI/UserInterface.py" line="1569"/> <source>Toggle the left sidebar window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1565"/> + <location filename="UI/UserInterface.py" line="1570"/> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>Bottom Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1578"/> <source>&Bottom Sidebar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1576"/> + <location filename="UI/UserInterface.py" line="1581"/> <source>Toggle the bottom sidebar window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1577"/> + <location filename="UI/UserInterface.py" line="1582"/> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1396"/> + <location filename="UI/UserInterface.py" line="1401"/> <source>&Debug-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1398"/> + <location filename="UI/UserInterface.py" line="1403"/> <source>Toggle the Debug-Viewer window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1399"/> + <location filename="UI/UserInterface.py" line="1404"/> <source><b>Toggle the Debug-Viewer window</b><p>If the Debug-Viewer window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1407"/> + <location filename="UI/UserInterface.py" line="1412"/> <source>Activate Debug-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1899"/> - <source>SQL Browser</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1899"/> - <source>SQL &Browser...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1903"/> - <source>Browse a SQL database</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1904"/> + <source>SQL Browser</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1904"/> + <source>SQL &Browser...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1908"/> + <source>Browse a SQL database</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1909"/> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation type="unfinished"></translation> </message> @@ -53139,42 +53144,42 @@ <translation type="obsolete">网络浏览器</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> + <location filename="UI/UserInterface.py" line="1940"/> <source>Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1935"/> + <location filename="UI/UserInterface.py" line="1940"/> <source>&Icon Editor...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt 3 support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2259"/> + <location filename="UI/UserInterface.py" line="2264"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4872"/> + <location filename="UI/UserInterface.py" line="4877"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>PySide Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2256"/> + <location filename="UI/UserInterface.py" line="2261"/> <source>Py&Side Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2258"/> + <location filename="UI/UserInterface.py" line="2263"/> <source>Open PySide Documentation</source> <translation type="unfinished"></translation> </message> @@ -53184,359 +53189,359 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1264"/> + <location filename="UI/UserInterface.py" line="1269"/> <source>{0} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1269"/> + <location filename="UI/UserInterface.py" line="1274"/> <source>{0} - {1} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1272"/> + <location filename="UI/UserInterface.py" line="1277"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1674"/> + <location filename="UI/UserInterface.py" line="1679"/> <source><b>Helpviewer</b><p>Display the eric5 web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is search in the Qt help collection.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1704"/> + <location filename="UI/UserInterface.py" line="1709"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric5.</p></source> <translation type="unfinished"><b>检查更新……</b><p>从互联网检查 Eric4 的更新。</p> {5.?}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1716"/> + <location filename="UI/UserInterface.py" line="1721"/> <source><b>Show downloadable versions...</b><p>Shows the eric5 versions available for download from the internet.</p></source> <translation type="unfinished"><b>显示可下载版本……</b><p>显示可以从互联网下载的 Eric4 版本。</p> {5 ?}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1927"/> + <location filename="UI/UserInterface.py" line="1932"/> <source>Start the eric5 Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1939"/> + <location filename="UI/UserInterface.py" line="1944"/> <source>Start the eric5 Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1940"/> + <location filename="UI/UserInterface.py" line="1945"/> <source><b>Icon Editor</b><p>Starts the eric5 Icon Editor for editing simple icons.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2009"/> + <location filename="UI/UserInterface.py" line="2014"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric5.</p></source> <translation type="unfinished"><b>显示外部工具</b><p>打开一个对话框显示 Eric4 使用的所有外部工具的路径和版本。</p> {5.?}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2242"/> + <location filename="UI/UserInterface.py" line="2247"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric5 installation directory.</p></source> <translation type="unfinished"><b>Eric API 文档</b><p>显示 Eric API 文档。文档位置为 Eric4 安装文件夹下的文档或源代码子文件夹。</p> {5 ?}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2697"/> + <location filename="UI/UserInterface.py" line="2702"/> <source>External Tools/{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4227"/> + <location filename="UI/UserInterface.py" line="4232"/> <source>Qt v.3 is not supported by eric5.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4383"/> + <location filename="UI/UserInterface.py" line="4388"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4147"/> + <location filename="UI/UserInterface.py" line="4152"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4204"/> + <location filename="UI/UserInterface.py" line="4209"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4248"/> + <location filename="UI/UserInterface.py" line="4253"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4287"/> + <location filename="UI/UserInterface.py" line="4292"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4346"/> + <location filename="UI/UserInterface.py" line="4351"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4391"/> + <location filename="UI/UserInterface.py" line="4396"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4410"/> + <location filename="UI/UserInterface.py" line="4415"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4477"/> + <location filename="UI/UserInterface.py" line="4482"/> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4483"/> + <location filename="UI/UserInterface.py" line="4488"/> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4519"/> + <location filename="UI/UserInterface.py" line="4524"/> <source>Starting process '{0} {1}'. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4535"/> + <location filename="UI/UserInterface.py" line="4540"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4612"/> + <location filename="UI/UserInterface.py" line="4617"/> <source>Process '{0}' has exited. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4887"/> + <location filename="UI/UserInterface.py" line="4892"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5271"/> + <location filename="UI/UserInterface.py" line="5276"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5293"/> + <location filename="UI/UserInterface.py" line="5298"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5313"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5331"/> + <location filename="UI/UserInterface.py" line="5336"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5497"/> + <location filename="UI/UserInterface.py" line="5502"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5646"/> + <location filename="UI/UserInterface.py" line="5651"/> <source>Trying host {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5769"/> + <location filename="UI/UserInterface.py" line="5774"/> <source>The update to <b>{0}</b> of eric5 is available at <b>{1}</b>. Would you like to get it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>Eric5 is up to date</source> <translation type="unfinished">Eric4 已是最新版本 {5 ?}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5778"/> + <location filename="UI/UserInterface.py" line="5783"/> <source>You are using the latest version of eric5</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5831"/> + <location filename="UI/UserInterface.py" line="5836"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5856"/> + <location filename="UI/UserInterface.py" line="5861"/> <source>eric5 has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished">尚未配置 Eric4。将打开配置对话框。 {5 ?}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>Cooperation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1585"/> + <location filename="UI/UserInterface.py" line="1590"/> <source>&Cooperation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1587"/> + <location filename="UI/UserInterface.py" line="1592"/> <source>Toggle the Cooperation window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1589"/> + <location filename="UI/UserInterface.py" line="1594"/> <source><b>Toggle the Cooperation window</b><p>If the Cooperation window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Activate Cooperation-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1597"/> + <location filename="UI/UserInterface.py" line="1602"/> <source>Alt+Shift+O</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>Symbols</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>&Symbols</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1609"/> + <location filename="UI/UserInterface.py" line="1614"/> <source>Toggle the Symbols window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1611"/> + <location filename="UI/UserInterface.py" line="1616"/> <source><b>Toggle the Symbols window</b><p>If the Symbols window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Activate Symbols-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1619"/> + <location filename="UI/UserInterface.py" line="1624"/> <source>Alt+Shift+Y</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1629"/> + <location filename="UI/UserInterface.py" line="1634"/> <source>&Numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1631"/> + <location filename="UI/UserInterface.py" line="1636"/> <source>Toggle the Numbers window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1633"/> + <location filename="UI/UserInterface.py" line="1638"/> <source><b>Toggle the Numbers window</b><p>If the Numbers window is hidden then display it. If it is displayed then close it.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Activate Numbers-Viewer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1641"/> + <location filename="UI/UserInterface.py" line="1646"/> <source>Alt+Shift+B</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5150"/> + <location filename="UI/UserInterface.py" line="5155"/> <source>Keyboard shortcut file (*.e4k)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2203"/> + <location filename="UI/UserInterface.py" line="2208"/> <source>Python &3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2205"/> + <location filename="UI/UserInterface.py" line="2210"/> <source>Open Python 3 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2206"/> + <location filename="UI/UserInterface.py" line="2211"/> <source><b>Python 3 Documentation</b><p>Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and <i>/usr/share/doc/packages/python/html</i> on Unix. Set PYTHON3DOCDIR in your environment to override this. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2218"/> + <location filename="UI/UserInterface.py" line="2223"/> <source>Python &2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2220"/> + <location filename="UI/UserInterface.py" line="2225"/> <source>Open Python 2 Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2221"/> + <location filename="UI/UserInterface.py" line="2226"/> <source><b>Python 2 Documentation</b><p>Display the Python 2 documentation. If no documentation directory is configured, the location of the Python 2 documentation is assumed to be the doc directory underneath the location of the configured Python 2 executable on Windows and <i>/usr/share/doc/packages/python/html/python-docs-html</i> on Unix. Set PYTHON2DOCDIR in your environment to override this. </p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>Error getting versions information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5690"/> + <location filename="UI/UserInterface.py" line="5695"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5696"/> + <location filename="UI/UserInterface.py" line="5701"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 Web Browser</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1923"/> - <source>eric5 &Web Browser...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 Web Browser</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1928"/> + <source>eric5 &Web Browser...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1933"/> <source><b>eric5 Web Browser</b><p>Browse the Internet with the eric5 Web Browser.</p></source> <translation type="unfinished"></translation> </message> @@ -53561,78 +53566,78 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New Window</source> <translation type="unfinished">新建窗口</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> + <location filename="UI/UserInterface.py" line="1313"/> <source>New &Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1308"/> - <source>Ctrl+Shift+N</source> - <comment>File|New Window</comment> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1313"/> + <source>Ctrl+Shift+N</source> + <comment>File|New Window</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1318"/> <source>Open a new eric5 instance</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1314"/> + <location filename="UI/UserInterface.py" line="1319"/> <source><b>New Window</b><p>This opens a new instance of the eric5 IDE.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Unittest Rerun Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1772"/> + <location filename="UI/UserInterface.py" line="1777"/> <source>Rerun Failed Tests...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1776"/> + <location filename="UI/UserInterface.py" line="1781"/> <source>Rerun failed tests of the last run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1778"/> + <location filename="UI/UserInterface.py" line="1783"/> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1891"/> <source>Compare &Files side by side...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>Snapshot</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1947"/> - <source>&Snapshot...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1951"/> - <source>Take snapshots of a screen region</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1952"/> + <source>Snapshot</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1952"/> + <source>&Snapshot...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1956"/> + <source>Take snapshots of a screen region</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1957"/> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4457"/> + <location filename="UI/UserInterface.py" line="4462"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message>